index
int64
0
10k
blob_id
stringlengths
40
40
step-1
stringlengths
0
305k
step-2
stringlengths
6
1.1M
step-3
stringlengths
15
1.23M
step-4
stringlengths
23
1.34M
step-5
stringlengths
55
1.2M
step-ids
sequencelengths
1
5
200
1a7e83fe9528b177246d6374ddaf2a76a0046e83
<mask token> def cos_dist(a, b): if len(a) != len(b): return None part_up = 0.0 a_sq = 0.0 b_sq = 0.0 for a1, b1 in zip(a, b): part_up += a1 * b1 a_sq += a1 ** 2 b_sq += b1 ** 2 part_down = math.sqrt(a_sq * b_sq) if part_down == 0.0: return None else: return part_up / part_down <mask token>
<mask token> reload(sys) sys.setdefaultencoding('utf-8') <mask token> def cos_dist(a, b): if len(a) != len(b): return None part_up = 0.0 a_sq = 0.0 b_sq = 0.0 for a1, b1 in zip(a, b): part_up += a1 * b1 a_sq += a1 ** 2 b_sq += b1 ** 2 part_down = math.sqrt(a_sq * b_sq) if part_down == 0.0: return None else: return part_up / part_down <mask token> for iii in range(len(vex1)): sumdot += vex1[iii] * vex2[iii] <mask token> for index in range(len(vex1)): sum12 += vex1[index] * vex2[index] sum1 += vex1[index] ** 2 sum2 += vex2[index] ** 2 <mask token> res.write('余弦: ' + str(Similarity_Cos) + '\n内积: ' + str(sumdot) + '\nJaccard系数: ' + str(Similarity_Jaccard)) res.close() print('余弦: ' + str(Similarity_Cos) + ' 内积: ' + str(sumdot) + ' Jaccard系数: ' + str(Similarity_Jaccard))
<mask token> reload(sys) sys.setdefaultencoding('utf-8') <mask token> sentence1 = sys.argv[1] sentence2 = sys.argv[2] Divlist1 = jieba.lcut(sentence1, cut_all=True) Divlist2 = jieba.lcut(sentence2, cut_all=True) Sen = [' '.join(Divlist1), ' '.join(Divlist2)] vectorizer = CountVectorizer() transformer = TfidfTransformer() TFIDF_value = vectorizer.fit_transform(Sen) word = vectorizer.get_feature_names() matrix_value = TFIDF_value.toarray() vex1 = list(matrix_value[0]) vex2 = list(matrix_value[1]) def cos_dist(a, b): if len(a) != len(b): return None part_up = 0.0 a_sq = 0.0 b_sq = 0.0 for a1, b1 in zip(a, b): part_up += a1 * b1 a_sq += a1 ** 2 b_sq += b1 ** 2 part_down = math.sqrt(a_sq * b_sq) if part_down == 0.0: return None else: return part_up / part_down Similarity_Cos = cos_dist(vex1, vex2) sumdot = 0.0 for iii in range(len(vex1)): sumdot += vex1[iii] * vex2[iii] Similarity_dot = sumdot sum12 = 0.0 sum1 = 0.0 sum2 = 0.0 for index in range(len(vex1)): sum12 += vex1[index] * vex2[index] sum1 += vex1[index] ** 2 sum2 += vex2[index] ** 2 Similarity_Jaccard = sum12 / (sum1 + sum2 - sum12) res = open('SIMresult.txt', 'w') res.write('余弦: ' + str(Similarity_Cos) + '\n内积: ' + str(sumdot) + '\nJaccard系数: ' + str(Similarity_Jaccard)) res.close() print('余弦: ' + str(Similarity_Cos) + ' 内积: ' + str(sumdot) + ' Jaccard系数: ' + str(Similarity_Jaccard))
import jieba import os import sys import math reload(sys) sys.setdefaultencoding('utf-8') from sklearn import feature_extraction from sklearn.feature_extraction.text import TfidfTransformer from sklearn.feature_extraction.text import CountVectorizer sentence1 = sys.argv[1] sentence2 = sys.argv[2] Divlist1 = jieba.lcut(sentence1, cut_all=True) Divlist2 = jieba.lcut(sentence2, cut_all=True) Sen = [' '.join(Divlist1), ' '.join(Divlist2)] vectorizer = CountVectorizer() transformer = TfidfTransformer() TFIDF_value = vectorizer.fit_transform(Sen) word = vectorizer.get_feature_names() matrix_value = TFIDF_value.toarray() vex1 = list(matrix_value[0]) vex2 = list(matrix_value[1]) def cos_dist(a, b): if len(a) != len(b): return None part_up = 0.0 a_sq = 0.0 b_sq = 0.0 for a1, b1 in zip(a, b): part_up += a1 * b1 a_sq += a1 ** 2 b_sq += b1 ** 2 part_down = math.sqrt(a_sq * b_sq) if part_down == 0.0: return None else: return part_up / part_down Similarity_Cos = cos_dist(vex1, vex2) sumdot = 0.0 for iii in range(len(vex1)): sumdot += vex1[iii] * vex2[iii] Similarity_dot = sumdot sum12 = 0.0 sum1 = 0.0 sum2 = 0.0 for index in range(len(vex1)): sum12 += vex1[index] * vex2[index] sum1 += vex1[index] ** 2 sum2 += vex2[index] ** 2 Similarity_Jaccard = sum12 / (sum1 + sum2 - sum12) res = open('SIMresult.txt', 'w') res.write('余弦: ' + str(Similarity_Cos) + '\n内积: ' + str(sumdot) + '\nJaccard系数: ' + str(Similarity_Jaccard)) res.close() print('余弦: ' + str(Similarity_Cos) + ' 内积: ' + str(sumdot) + ' Jaccard系数: ' + str(Similarity_Jaccard))
# coding:utf-8 import jieba import os import sys import math reload(sys) sys.setdefaultencoding('utf-8') from sklearn import feature_extraction from sklearn.feature_extraction.text import TfidfTransformer from sklearn.feature_extraction.text import CountVectorizer #import csv #import pandas #import numpy sentence1 = sys.argv[1] sentence2 = sys.argv[2] #sentence1 = '他很喜欢玩游戏,也喜欢看小说' #sentence2 = '他喜欢玩游戏,最喜欢看小说' Divlist1 = jieba.lcut(sentence1, cut_all=True) Divlist2 = jieba.lcut(sentence2, cut_all=True) Sen = [" ".join(Divlist1), " ".join(Divlist2)] vectorizer=CountVectorizer()#该类会将文本中的词语转换为词频矩阵 transformer=TfidfTransformer()#该类会统计每个词语的tf-idf权值 TFIDF_value=vectorizer.fit_transform(Sen) word=vectorizer.get_feature_names()#获取词袋模型中的所有词语 matrix_value = TFIDF_value.toarray() vex1 = list(matrix_value[0]) vex2 = list(matrix_value[1]) def cos_dist(a, b): if len(a) != len(b): return None part_up = 0.0 a_sq = 0.0 b_sq = 0.0 for a1, b1 in zip(a,b): part_up += a1*b1 a_sq += a1**2 b_sq += b1**2 part_down = math.sqrt(a_sq*b_sq) if part_down == 0.0: return None else: return part_up / part_down Similarity_Cos = cos_dist(vex1, vex2) #余弦 sumdot = 0.0 for iii in range(len(vex1)): sumdot += vex1[iii] * vex2[iii] Similarity_dot = sumdot #内积 sum12 = 0.0 sum1 = 0.0 sum2 = 0.0 for index in range(len(vex1)): sum12 += vex1[index] *vex2[index] sum1 += vex1[index] ** 2 sum2 += vex2[index] ** 2 Similarity_Jaccard = sum12/(sum1 + sum2 - sum12) #jaccard相似度 res=open("SIMresult.txt", 'w') res.write('余弦: '+str(Similarity_Cos)+'\n内积: '+str(sumdot)+'\nJaccard系数: '+str(Similarity_Jaccard)) res.close() print('余弦: '+str(Similarity_Cos)+' 内积: '+str(sumdot)+' Jaccard系数: '+str(Similarity_Jaccard)) #print(' ') #print(Similarity_dot) #print(' ') #print(Similarity_Jaccard)
[ 1, 2, 3, 4, 5 ]
201
7e7e96fb9377e4dc59a46a46951f5057ecae419a
<mask token>
<mask token> print(np.linalg.norm(mat))
<mask token> a = np.log(2) / 25 apdataX = np.random.random((5, 35)) quarter_way_arr = [False, False, False] quarter_way_arr[0] = True quarter_way_arr[1] = True quarter_way_arr[2] = True mat = np.eye(3) print(np.linalg.norm(mat))
import random import gym import numpy as np from collections import deque from keras.models import Sequential from keras.layers import Dense from keras.optimizers import Adam from simulation_utils import box, simulation from kinematics import pose3D a = np.log(2) / 25 apdataX = np.random.random((5, 35)) quarter_way_arr = [False, False, False] quarter_way_arr[0] = True quarter_way_arr[1] = True quarter_way_arr[2] = True mat = np.eye(3) print(np.linalg.norm(mat))
# -*- coding: utf-8 -*- import random import gym import numpy as np from collections import deque from keras.models import Sequential from keras.layers import Dense from keras.optimizers import Adam from simulation_utils import box, simulation from kinematics import pose3D a = np.log(2)/25 apdataX = np.random.random((5, 35)) quarter_way_arr = [False, False, False] quarter_way_arr[0] = True quarter_way_arr[1] = True quarter_way_arr[2] = True mat = np.eye(3) print(np.linalg.norm(mat))
[ 0, 1, 2, 3, 4 ]
202
b6183daa943cc63fd2959e3e54fc1e6af5d761de
<mask token>
<mask token> print('valor de D: %.4f' % D) print('valor de Rey: %.4f' % Rey) print('valor de k: %.4f' % k)
<mask token> f = float(input('Digite o valor de f: ')) L = float(input('Digite o valor de L: ')) Q = float(input('Digite o valor de Q: ')) DeltaH = float(input('Digite o valor de DeltaH: ')) v = float(input('Digite o valor de v: ')) g = 9.81 e = 2e-06 D = (8 * f * L * Q * Q / (math.pi * math.pi * g * DeltaH)) ** 0.2 Rey = 4 * Q / (math.pi * D * v) k = 0.25 / math.log10(e / (3.7 * D) + 5.74 / Rey ** 0.9) ** 2 print('valor de D: %.4f' % D) print('valor de Rey: %.4f' % Rey) print('valor de k: %.4f' % k)
import math f = float(input('Digite o valor de f: ')) L = float(input('Digite o valor de L: ')) Q = float(input('Digite o valor de Q: ')) DeltaH = float(input('Digite o valor de DeltaH: ')) v = float(input('Digite o valor de v: ')) g = 9.81 e = 2e-06 D = (8 * f * L * Q * Q / (math.pi * math.pi * g * DeltaH)) ** 0.2 Rey = 4 * Q / (math.pi * D * v) k = 0.25 / math.log10(e / (3.7 * D) + 5.74 / Rey ** 0.9) ** 2 print('valor de D: %.4f' % D) print('valor de Rey: %.4f' % Rey) print('valor de k: %.4f' % k)
# -*- coding: utf-8 -*- import math #COMECE SEU CÓDIGO AQUI f = float(input('Digite o valor de f: ')) L = float(input('Digite o valor de L: ')) Q = float(input('Digite o valor de Q: ')) DeltaH = float(input('Digite o valor de DeltaH: ')) v = float(input('Digite o valor de v: ')) g = 9.81 e = 0.000002 #PROCESSAMENTO D = ((8*f*L*Q*Q)/(math.pi*math.pi*g*DeltaH))**(0.2) #CÁLCULO DO Rey Rey = (4*Q)/(math.pi*D*v) #CÁLCULO DO k k = ((0.25)/((math.log10(((e)/(3.7*D)) + ((5.74)/(Rey**0.9))))**2)) #SAÍDA print('valor de D: %.4f' %D) print('valor de Rey: %.4f' %Rey) print('valor de k: %.4f' %k)
[ 0, 1, 2, 3, 4 ]
203
1490fecd6e983c0e3093a45d77d6fb8afdb54718
<mask token> def graph_sketching(args): with open('graphs/graphs_' + args.filename + '.json') as jsonfile: graphs = json.load(jsonfile) print('[ ', len(graphs), ' ] graphs read successfully') sketch = Sketch() sketch_file = sketch.shingle_sketch(graphs, args) print('\n Done Batch Sketching...') return sketch_file <mask token>
<mask token> def graph_sketching(args): with open('graphs/graphs_' + args.filename + '.json') as jsonfile: graphs = json.load(jsonfile) print('[ ', len(graphs), ' ] graphs read successfully') sketch = Sketch() sketch_file = sketch.shingle_sketch(graphs, args) print('\n Done Batch Sketching...') return sketch_file <mask token> def visualize_darpa(): if 1 == 1: anomaly_detection = AnomalyDetection() sketch_file = ( 'sketches/darpa_10min/rdim_64_n_3_k_128p_0.2_l_50p10q5.csv') sh_vector = anomaly_detection.read_sketch(sketch_file) print('Sketch File: ', sketch_file) true_anomalies = np.array(sh_vector['anomaly']) sl_darpa = [0.0, 1.0000000000000004, 1.4200000000000008, 1.620000000000001, 1.8600000000000008, 2.4500000000000015, 2.660000000000001, 2.606666666666668, 2.163333333333334, 3.553333333333335, 4.0166666666666675, 3.8266666666666675, 2.5980000000000016, 2.075, 2.4666666666666677, 2.6790000000000003, 2.6266666666666674, 1.9041666666666677, 2.3625000000000007, 7.323666666666667, 2.3486666666666673, 3.3153333333333337, 3.063134920634921, 2.320262626262627, 5.969333333333335, 4.417166666666666, 6.199833333333332, 7.968666666666665, 3.1812142857142867, 6.162523809523808, 5.600134920634922, 8.386054112554113, 6.047714285714287, 4.551000000000001, 1.7697138972138982, 3.614246031746033, 2.480444444444445, 3.6538547008547004, 3.9801907308377915, 8.834181096681096, 5.261960317460318, 6.4440873015873015, 8.789714285714286, 4.714586219336219, 8.04961821511821, 2.5418132978132983, 7.096460317460318, 7.826078477078476, 2.5750670995671006, 7.68892007992008, 3.289951346039582, 13.420904761904762, 3.4483250670897743, 2.714681762681763, 4.418218118139173, 15.451951465201466, 6.739684550743376, 3.6353293650793663, 3.191541549953315, 4.221762570762571, 2.153847555952819, 3.109875457875458, 3.456950705727022, 2.0999702634677067, 1.7787056255054985, 1.764123928359223, 1.888398291251233, 2.1237179487179496, 2.3554988921579323, 27.04, 1.4998784545456214, 1.8871840829000228, 2.1192714078931822, 2.523507449178502, 2.239671578421579, 2.2529392409483693, 3.0643626177743837, 1.7397439836149518, 3.2541237553342834, 6.007199999999998, 4.979633699633699, 3.022961038961039, 5.0280000000000005, 3.695000000000001, 1.181985185185186, 5.990666666666666, 4.469416666666667, 5.625238095238096, 6.6290714285714305, 5.471904761904761, 8.187222222222223, 6.22639393939394, 5.630380952380951, 3.611518796992482, 3.755980392156863, 4.919714285714287, 5.687798346763989, 8.450095238095239, 13.118333333333334, 10.500526315789475, 5.1608359859095145, 6.445960317460319, 4.468441225441227, 94.62000000000003, 1.849484126984128, 6.652187590187591, 8.298173160173157, 5.727428571428573, 7.41424844720497, 6.326612612612613, 5.260150270781852, 4.67154761904762, 7.080579365079365, 3.9539688184156283, 5.400383394383394, 11.620560606060605, 6.3928064713064705, 7.091154061624651, 4.573704184704185, 6.098405483405483, 8.40033333333333, 8.324523809523805, 5.90677399738653, 9.351690476190479, 9.586746031746031, 4.338500000000001, 11.507795959595956, 6.9307226662226675, 10.670614870509608, 11.878396825396829, 7.195762597052069, 8.516702003878477, 6.877984126984128, 15.88485127629807, 52.858583105272764, 14.575487772812583, 8.832610667626147, 27.922016441891447, 24.288219378700596, 10.230674551488356, 9.96259378212087, 19.37658603966858, 20.71149731984562, 18.11692194476176, 11.720506869377614, 12.556118281296232, 14.40514704971671, 12.711814221023738, 13.611805977546764, 11.695705313453097, 9.0722865139116, 36.89595798259711, 13.599971055244287, 26.120275743359702, 15.813094768258562, 39.845679618163054, 17.78679301417537, 22.838877823016034, 15.62679340936206, 8.283368255660255, 27.842289826596406, 21.127534373749498, 15.221262595608625, 17.381740030622446, 9.146739426050868, 6.846115926499629, 13.071590108441631, 21.923272042996793, 10.317802546379866, 18.425980322620006, 30.234829644481206, 14.531590541059806, 9.573266545302635, 8.987315507648862, 16.427142411584526, 6.38453513760854, 26.95818628296048, 10.9001273295491, 21.382636009368646, 5.6808780355697746, 13.785458700084103, 6.208451253250925, 8.285535876579322, 13.75196263746655, 7.0574740066299375, 12.39048394540935, 24.12781351701881, 14.607803294602528, 5.907120080805687, 9.537022880394684, 28.923416540459883, 18.215603996608586, 26.229191444520392, 26.32272596263386, 26.439771672771684, 21.58314554772714, 11.215849289398824, 5.918494842282637, 8.92842238956368, 8.062072458727261, 27.439653670375037, 10.015162493688404, 29.779922410922403, 22.851694083694085, 9.900029127883176, 6.496280127897179, 31.12283203463203, 4.572369865562637, 5.786272283272283, 5.032613275613277, 17.240070485070483, 21.522490620490622, 25.278413882277693, 21.743482141473194, 14.61895238095238, 12.677347022860179, 8.837439198732305, 15.18930429864253, 7.245868686868688, 4.233264207433517, 7.6578774282402025, 6.6793896789485006, 5.597083333333333, 13.952092231619755, 8.786316017316016, 5.512380952380956, 6.562544733044734, 8.441238095238093, 5.790069675736741, 5.166466193373899, 8.4475087076666, 5.500767930152801, 5.12483543799952, 2.775991635543107, 7.107941169941168, 5.193493470655835, 174.24, 8.673855921855921, 6.023595571095573, 10.485618527671157, 9.90137228268807, 4.409333333333334, 7.986009984639015, 6.630210802269625, 9.920619047619047, 5.533016692801522, 4.587290043290044, 10.208107238392842, 21.54610844710845, 49.65733043769974, 34.89217267877051, 16.117369963369963, 5.2655962046904055, 6.129448051948052, 7.99017165148744, 6.420636392846921, 9.652349697404048, 34.35008129326216, 11.734443974383106, 15.562287938051423, 8.648869408369409, 7.01916688213747, 6.56917771701982, 8.584023549621826, 5.639651986575515, 6.725441919191919, 22.628654168516313, 34.157179059153165, 28.72741929323071, 33.914209571054805, 12.751380342289602, 59.56423990695492, 18.123795261927395, 44.88750797704535, 68.75638313538315, 68.84855960820367, 66.65561532058473, 66.4490010734879, 34.87412711580358, 19.30370496217802, 29.796296196875357, 25.745602983181634, 78.08579198910968, 37.06561628017687, 25.84962146907153, 37.46286858419658, 60.145880896174184, 28.8026926747768, 45.778784564969875, 47.00360624270333, 256.0000000000001, 45.765418059157476, 75.87339742141914, 217.4923333333333, 234.5466666666666, 51.611096143298596, 26.480645471444625, 42.8401704129204, 27.613920094485955, 22.4861896525969, 32.92889432390501, 24.508271045980088, 27.921504458934386, 41.08780572562321, 44.303331464358315, 21.904861023608355, 18.994658952034495, 90.9135948188927, 48.451170071758305, 19.610725088443647, 37.15938147749761, 36.828293539180876, 26.988203625818578, 50.42084675421529, 25.39270676488424, 18.69621855867736, 111.56150768551763, 160.23137468671678, 185.79399999999995, 14.259420460213292, 70.11899432584961, 49.45946264906402, 25.514827977984393, 72.91996915365337, 32.307471982403825, 51.804427351028025, 16.29518208087506, 17.316294907478554, 43.86812487507389, 12.880700724902727, 23.12664894119357, 58.12136223274934, 56.13361634199133, 34.4468547008547, 30.24839194012656, 10.030587700724277, 61.438566137566134, 47.396100807106386, 38.999710879763505, 44.52266685945632, 11.151174297924296, 47.5719480356245, 21.18413364413365, 49.04500356273154, 41.47301824918002, 32.55670766285434, 30.195910524073206, 44.124127381390544, 38.59233230859317, 27.730611357479752, 34.74411389193359, 28.71767957904165, 49.39840476190476, 40.22545850640586, 23.684163225663227, 33.531199134199134, 34.53729659498209, 22.01248595848596, 11.745338458629787, 11.950060425032937, 8.955575773899298, 31.23491965169334, 9.194701528771128, 7.786111214744211, 28.89396745525007, 50.94079412381619, 11.574547174985897, 42.72398173055016, 25.536105230526058, 204.72378787878793, 18.801039543381375, 32.54878533042466, 37.28801171319719, 43.24845238095238, 11.817689806151883, 10.760127602702056, 12.24435586314044, 40.608207749766564, 30.16583633247528, 28.105479831537977, 22.51133900564631, 9.895192528966085, 25.727486017430838, 13.063970993372111, 13.971930547225504, 13.097792429792431, 24.877006418569554, 16.71685317460318, 14.86511111111111, 14.36881007881008, 7.313338102537897, 12.77489438339439, 8.567069697622639, 11.185876971068145, 14.561406151983551, 20.377666666666666, 16.3628883286648, 10.158574296704328, 10.81099677282321, 17.985198646039205, 47.96712306674807, 55.569324188918344, 16.8274467767676, 32.59738213801149, 12.63999184578741, 18.116949928194476, 15.531208607795561, 20.411191059062528, 20.737816107126676, 11.997042372087718, 9.299228086757477, 20.051917924661495, 35.29627484441793, 32.59275738563496, 18.845067176446303, 14.862712375349206, 13.594655351127557, 7.854556982057959, 6.340112949882739, 6.745851567167713, 35.45828157153083, 23.68984778891028, 13.866494697110422, 17.323509087651363, 7.089541919250832, 24.605193639001296, 9.920252427745412, 11.173704926809306, 24.828226930729084, 11.074508891304925, 12.290277469000713, 17.935256229637808, 9.731490470387246, 12.170032960835517, 8.249946614336467, 19.40556474121583, 33.11007454966117, 14.977125397050896, 9.606475982376846, 13.877532562724964, 9.11897674106761, 19.022783928781845, 231.88166666666672, 252.21999999999997, 250.6400000000001, 251.08000000000007, 14.915925316076672, 243.4400000000001, 219.08666666666664, 11.756457822943561, 8.967071892926164, 9.123418816647352, 6.887436335073637, 24.195166753027053, 12.351597325235128, 13.25993005121449, 33.37107629728373, 6.57647696889942, 37.90155886284339, 20.479374785842182, 28.917224224641416, 15.981442890854035, 28.88646547741903, 25.004347948347956, 17.166059612936085, 5.17967965367965, 7.692126984126983, 7.197523632250102, 22.956412698412706, 10.573655844155844, 19.061777777777777, 14.007752348800624, 17.899779331779328, 14.213457070707072, 6.6261707410236825, 16.439956058434323, 11.643660054122122, 10.233145824330942, 9.004788270552977, 13.122549599805968, 8.064404437846893, 5.183224553224552, 8.45267434715822, 4.712257575757575, 6.028017536483403, 8.862937560478738, 5.508625159154571, 10.752853107344633, 9.942634725096026, 2.4791705676620936, 7.2607061923583665, 7.556027733923845, 20.150589043747587, 14.890556077199296, 10.478825356887516, 14.425177738927744, 17.585712121212122, 6.615474053976685, 19.04538993712381, 20.077621123321123, 25.90031818181819, 10.467523096022784, 190.11889822595705, 14.156410714285714, 10.45700432900433, 22.359520923520922, 17.225427664588995, 9.271538265438263, 15.295802780552776, 20.73142701581539, 11.86680782639681, 7.503165846543319, 13.18277736211779, 11.000525530025529, 7.773113730567871, 12.139197390026789, 3.8862393162393167, 5.39544461887319, 6.269925817216839, 4.327121794871796, 5.99380635704165, 5.070264814895251, 3.4309266409266423, 6.864625740160223, 6.93712601616936, 3.040166666666668, 8.388347278041653, 6.406598683891488, 3.3450517241379307, 6.91429093129093, 6.93480130980131, 4.171000000000001, 8.9450771096986, 29.110306369987917, 43.72591595931302, 111.7928724082935, 79.85671435053148, 110.74019321594322, 60.209269102308696, 88.48917355866017, 75.42280436230435, 62.28854612763098, 94.14734997389954, 61.51235318963802, 65.75828907882624, 53.973993251556394, 18.813522818655482, 66.28811877741428, 51.20159017214947, 46.786345268271006, 80.62459858389451, 76.02560145154185, 21.154291399211402, 86.33210830019655, 18.01776968765887, 40.528410248508685, 23.469283139486244, 79.27143470926833, 99.13234715284713, 16.369656907146297, 54.93751904957787, 38.98522029673113, 14.738483666972295, 95.21723905723904, 84.09281428571428, 23.42043289903588, 107.75021212121212, 33.803829021551564, 27.048853504092445, 114.44805555555556, 96.74256997356427, 38.02342926396564, 72.15724647136487, 52.51811760648968, 84.74594380370229, 34.948731891647455, 78.21082332308491, 15.357621461846476, 31.870309769499205, 28.175474900730578, 45.53038031302453, 51.16638156288157, 40.32344079968325, 36.017937011045376, 70.47261035321038, 62.35651626583435, 36.29733821470266, 15.04300261523374, 18.138884147655723, 33.68866407459053, 14.412407826150309, 15.282315831616073, 11.320003048470932, 11.82944183037174, 34.70633660122775, 8.532608323920092, 28.190830292658934, 19.43359308867978, 10.609073248240346, 18.53894442159148, 6.891641025641024, 18.16888622196517, 6.337180935922315, 17.234422258297258, 8.903049190889396, 8.457635870139622, 13.995785976441859, 22.00616017316017, 13.128644467853176, 12.005681045212526, 11.66190885040885, 8.858947496947497, 7.101690845386497, 21.117046641267233, 15.610370395997446, 10.99275240853917, 7.851375308901628, 23.41575885369012, 7.909174147250874, 6.218553111639318, 5.1874809152200445, 5.524517268985459, 10.351315789473684, 5.994930735930735, 8.601683938106135, 4.1046783706489585, 4.372190476190477, 14.452104542516304, 9.079083394675498, 10.998008055350372, 12.792810800310802, 22.805550671550684, 11.923546345879064, 8.911460492535921, 7.196103896103897, 158.6919696969697, 6.45527922077922, 6.287724716202271, 5.36442930741143, 8.585392253816517, 7.082503969759717, 3.9686774891774896, 5.796569976922916, 6.8838412698412705, 5.171501221001222, 7.203989745452569, 4.423616433587496, 5.524345519977098, 7.524333333333332, 5.990616738816737, 5.507054481466247, 6.333813513284103, 10.996441542203925, 5.6163736463736464, 5.120564781254078, 7.361165891165891, 6.721808080808082, 11.050766844266843, 6.050502290107555, 7.611673542144128, 6.4829684350736985, 9.282055555555555, 8.944864756158873, 8.649997557997557, 10.650099694423222, 7.744477370852911, 63.12181224898252, 27.474283792033287, 33.55237243286843, 45.95146159214024, 33.05257731817546, 114.72760807448485, 55.15915289163346, 25.685725570888255, 27.89554380375332, 32.33507761181242, 38.671361970193544, 42.85233940960225, 20.419355629672708, 35.81692369293833, 35.79624871414686, 18.13937556133584, 20.09381451287761, 12.896178332945368, 36.486976964727724, 37.49788894765365, 162.68834593837533, 12.45897715671828, 30.000273203957622, 15.609543464088292, 39.26531127761127, 18.028882178891717, 27.867956026239032, 20.99650399203248, 27.716657902236395, 30.141408922607802, 71.80829292929289, 16.44325065240057, 33.21517973294149, 12.508085430184886, 18.54703855765782, 10.59585138335189, 250.5200000000001, 23.666325985874312, 22.416518988540396, 41.60743682058681, 19.675083298436316, 23.772514832875316, 10.194122033185494, 18.776676244786668, 47.62400269259311, 18.252807390841113, 24.913350657400102, 13.318285935372797, 28.507110274423273, 39.123706206947595, 24.562357192456084, 20.67178882332953, 14.078844261640905, 15.909051792810462, 16.292526734699116, 23.765329727223673, 28.966229178990943, 17.108782970228194, 32.67459987052851, 17.351643348999, 29.121712259111195, 38.96805871274114, 27.686631285818113, 34.22033000822707, 9.381277640982923, 12.124605674687064, 15.224841310736048, 15.094291115420525, 12.124318764603714, 16.373483965393994, 32.522003108003105, 15.716379132265791, 12.266782378991303, 15.310450466200466, 9.529194449218648, 6.402413906559439, 6.1109996171751595, 9.263782505336852, 15.982723221176109, 8.670482097795565, 14.615797959925832, 5.772154410369651, 17.282689942446016, 15.639711935123698, 11.811944497531453, 7.20306615069331, 16.378459234241213, 26.69823532023533, 19.03183694083694, 7.202315992788007, 25.563247540041655, 28.165618159618152, 24.064854134589424, 13.413784682740722, 7.883887358811763, 18.051896901344268, 8.08764250072114, 8.72216583124478, 17.59643599187362, 16.712514221158962, 10.342004802711411, 8.62999381972504, 16.11061122211122, 17.424565130947478, 7.017944912923536, 11.543808611678177, 57.089363985635956, 36.96026713861723, 35.63886074155193, 13.611646312834594, 240.9899999999999, 8.887222342311096, 12.541217985025344, 12.24514227875884, 8.845233261163916, 10.190774457972001, 10.434057438493593, 13.204520430932053, 12.599280560775263, 17.93686290204778, 9.482841101218604, 8.924796733177818, 23.88408301203154, 19.65508189481573, 14.159095791514883, 18.999508569516518, 11.763818765813804, 26.477372426632908, 23.242178889467635, 54.13296071546089, 67.63379567457966, 52.701434232434224, 46.47126798303848, 64.71946942599885, 28.70470992009011, 38.50378204716598, 33.11695995495193, 11.772639328684566, 18.390967210946275, 16.479668850233384, 12.383137923080426, 12.926354091526695, 6.191814801040324, 17.992945878819448, 25.64966950727224, 23.38102163870335, 19.334580776400575, 11.450736169750666, 10.77296489067011, 12.404250567744494, 14.385363836707645, 31.26845829364518, 12.945658030525747, 13.21938605970696, 16.79575154710321, 18.466114861275297, 9.73461389984552, 29.256409245659768, 14.388686145838262, 13.878367082443175, 17.785061313278057, 22.76712259146083, 23.26950981612725, 19.172274250022156, 16.144825623220044, 28.498014011787937, 28.481873057670928, 31.040709590927435, 24.42865331469357, 27.630342598370515, 21.47040584415585, 17.258242035412703, 7.479677970963271, 13.002381891894018, 10.06353927325896, 30.460180708180722, 15.733849368972836, 14.521602318539655, 127.7264592760181, 67.37804381858845, 20.3598954248366, 19.679715727890212, 23.840593864805943, 16.188140382977693, 27.84820977331847, 10.51881406111533, 13.80736587127081, 4.79356200764165, 9.968798013326616, 6.1155441780441775, 6.037872143060122, 6.101244631185808, 5.946574390521757, 9.87301958161169, 11.153905246714068, 7.003413159939477, 7.775180799755799, 154.34385413245758, 7.998084335255388, 8.78329841838987, 4.763890886890887, 5.6696838118022335, 7.306309523809524, 7.203751082251083, 6.849120681605974, 8.968952380952379, 4.236905920922086, 8.378583805083805, 174.37911111111111, 6.930985058800848, 8.058793636188373, 7.71119011707247, 4.320030212462205, 3.318168456065009, 4.47753154849466, 6.954563642240112, 4.781507995925644, 7.028025030525031, 5.625716082392553, 7.937942287244918, 5.25746275946276, 9.006604434567992, 4.0362966305299075, 4.519234982638183, 7.67986404416839, 9.299982966309056, 4.496453432141983, 9.045960439563187, 10.07024156795585, 6.657494040956464, 7.674141971753734, 7.5601091149103326, 5.400342043920991, 5.612054663454114, 4.685338297125242, 7.018114076543423, 6.4317215007215, 12.04717857142857, 65.2564754901961, 47.57563861138863, 54.170948962148955, 25.158312099573035, 11.786538102541943, 12.297619222664009, 145.61323020117138, 7.3243349308793295, 18.748949848626317, 11.673275026369375, 10.051728022077945, 11.413848055105284, 6.97033417253616, 6.951179973152276, 7.310848602557263, 20.6258259233521, 21.23166816784185, 16.894346141209414, 10.685973158787927, 13.116974333484828, 16.14988081643753, 15.009285693677327, 5.86796849735895, 7.298271282866242, 29.694090061183854, 9.252867190471523, 15.815498407845459, 5.248800350634451, 15.386443123553969, 6.593052648074113, 5.924541358775022, 13.198962656796748, 7.09891718310098, 6.258356317945546, 14.786132836999483, 6.634399532985791, 15.587228590280834, 5.1554780452209545, 6.647110997406465, 16.278856417358007, 10.043795636082406, 9.871026783395306, 12.791951417345247, 10.301744460060101, 12.942346980962288, 53.012252487364705, 16.95789814529067, 89.26340905190906, 7.544496735987636, 13.999147289827686, 85.7027992982195, 54.931379290368525, 25.19438269421681, 27.43006695955061, 7.5115820571107905, 44.7806746560076, 17.275173684790108, 23.054579619557817, 37.75922832722833, 9.839630859652473, 16.934517483471023, 23.53676558996559, 7.670305462511345, 15.414912650244489, 10.936148030918094, 17.309181757997607, 15.992502416959736, 25.562446093397487, 14.08057073253544, 23.822601731601733, 141.0358403578403, 11.531176431869929, 14.162926295926297, 3.3081521517697996, 12.986149229232545, 3.9386443441410672, 11.888666454460571, 7.739673114981779, 5.9408126318126335, 14.006225601883495, 3.403572716555476, 3.38627147320034, 3.22352017719123, 4.074230722342793, 10.294681457431455, 4.174608252858253, 3.1072383040935674, 2.3257830261136716, 10.436968580439173, 8.090781763754118, 7.444439603451508, 16.852621745493067, 25.915714962299692, 8.34042751771976, 13.603175277345759, 8.277049293640442, 10.571624206253517, 12.631949456975773, 3.79588888888889, 4.077516339869282, 4.996506571859513, 4.258990052431229, 4.5972868817342505, 3.0576352583586632, 4.535858940649492, 3.210700778775765, 5.745734530175707, 8.397895180147772, 4.717836219336219, 4.490992016242353, 7.667530011265538, 2.9709682539682545, 4.35140876959298, 4.745807724546106, 4.687734739987229, 6.304261373129793, 4.435376162039447, 4.095651233871049, 5.4410939064375565, 5.36324050673808, 4.737084123770967, 9.23438888888889, 13.107914214651949, 11.105187560920369, 13.336247347767474, 30.104619788879855, 83.87077397625718, 81.20823628037574, 79.35238367994864, 89.77634594315427, 113.21479820424675, 72.5103487741933, 96.62027651515152, 90.23040875790875, 93.29369435154214, 89.7344322344322, 85.73326408662271, 84.82433073593073, 78.41589976689977, 48.42747973853712, 49.736491100297556, 76.73436180124223, 99.49315126050419, 67.71181659298539, 66.75177404479578, 55.806834859584846, 63.95115419540674, 94.02797396600278, 85.20255661881977, 48.38483610833612, 48.56257647254708, 64.7065273923523, 66.92286570183626, 112.84414492753623, 121.1408694638695, 47.298463724114136, 51.01297152804129, 29.408901496417656, 56.95806528559158, 70.25029820465129, 59.15171640286613, 88.56380158730161, 79.3584482850483, 62.63867996665778, 56.74702393684747, 75.23016666666668, 36.800279317439255, 58.71865445665446, 49.62617172113657, 58.101805187731664, 37.0013891582274, 53.484463644878225, 76.57571475235291, 66.28678068970754, 76.72343499516477, 58.89532063797282, 56.43946354068636, 55.728109968554676, 35.32652597402597, 62.27199353894481, 44.67383741331133, 55.091881634705175, 51.14136328051035, 59.25529946719948, 51.26011835522201, 32.62970907719582, 34.66946901986902, 75.33435858585858, 48.460432567432555, 10.493692957042958, 72.62858496732028, 46.57846172346173, 47.226715083442635, 39.68308357383357, 75.78681355572533, 62.96989177489177, 47.02605315962864, 75.75947619047622, 74.7656953086996, 59.95492868242868, 39.700184578189834, 60.94585353535354, 47.22959188034189, 53.410501675154116, 63.16333837578918, 44.540760298937386, 44.46919075135392, 47.00045709845711, 51.78621016184251, 26.529230619954753, 55.977142857142866, 59.34356782106782, 61.1691792929293, 44.377713064713056, 58.687858467803714, 38.63292495439979, 52.23369214119216, 60.65892982526342, 34.84249555752275, 58.452163326869226, 56.985016692120126, 41.62634537684538, 40.85975722664433, 65.74328776778776, 48.73435775423407, 52.95062426192733, 25.81150406729445, 39.79419153069152, 49.83476371657019, 43.18010103703174, 51.32846366435498, 42.031444406900285, 57.57648051948051, 45.33148129648129, 44.67683871329909, 33.16088934594817, 38.91234744667098, 48.3921398090214, 36.708893835209615, 41.8645989729225, 39.18689547280676, 35.84412348762349, 37.09969719169719, 25.721697178413216, 37.85942827356681, 34.87763252270605, 37.83895384027737, 37.56585553335553, 26.457909701409704, 22.78355368934471, 32.75492051306182, 29.999366082099506, 29.93116103607435, 47.24407142857142, 30.154439866646772, 26.589568546950133, 23.59526598547651, 49.20916456582633, 21.08763888888889, 34.72143903865387, 37.165773617187405, 28.183664630089552, 31.66283159165396, 71.23513492063493, 19.414290613669092, 25.107425925017786, 23.060075520970255, 28.642792878441153, 22.981016856478398, 23.402590351796807, 25.26766973658151, 31.716680672268907, 20.894511581555694, 21.303514213260524, 23.082222967381725, 17.344890640175322, 25.80493015334353, 18.33925516995082, 51.943547154081536, 64.14254194736928, 33.723571942677204, 5.399108876786296, 3.980147186147187, 5.4719312169312175, 15.471047179784984, 6.697329004329005, 3.8364163059163063, 4.978984612557318, 14.4706075036075, 18.974018913662878, 21.547986067196035, 17.404079596971957, 26.291296092796095, 24.95849850649643, 12.436152675584513, 11.073192705195057, 8.292873508010727, 13.2181435670679, 15.105852882347177, 15.426048535380504, 19.698545882480097, 19.295572382983377, 25.509699226937148, 10.248395431177869, 17.285284027580122, 12.27407818357376, 11.805642651849098, 10.323235316371028, 14.633317099333905, 18.19486527361527, 18.90693191048717, 26.420127350273262, 12.291542451710763, 19.1678121692968, 24.297645258250522, 9.714208126039063, 27.71489566546855, 9.682134736739101, 10.995160533910534, 10.475533778157956, 12.891965181876945, 9.746281623781623, 17.95920389612404, 14.891238095238096, 7.444642526260476, 10.513693330358093, 17.818857142857137, 9.434517316017315, 15.796762077294682, 25.351380952380957, 18.445815295815297, 16.647891152057813, 18.517083916083912, 4.204686257192652, 7.095984487734486, 7.971956971630245, 4.220255411255412, 17.876488687782807, 8.942502800622176, 6.676834249084248, 13.730334776334779, 10.234182853378508, 6.737056267605802, 8.954726107226106, 12.465363581910747, 7.497181615769849, 9.382777777777775, 6.4275333555333525, 4.314549783549785, 2.4680000000000013, 6.320599567099567, 6.660935546722781, 5.09759249084249, 7.918547168855487, 18.81112121212121, 7.168442141715725, 23.73347186147186, 9.429657598440206, 8.583438744262274, 5.285904761904762, 5.197116466866465, 125.85711111111108, 5.168373011046923, 3.786338603425561, 2.752855701036553, 3.0125246798119143, 6.895927990537466, 3.170558867846103, 7.720632756132757, 7.231617243867244, 2.836663596450832, 4.186298924479777, 6.144302099334356, 3.715598925170506, 7.467620629370631, 3.732775410413342, 3.2378542568542574, 4.181693861693862, 4.081260536398467, 3.770039682539683, 6.412923576423576, 6.476769841269842, 4.6841115273615275, 4.04998733454667, 3.466146627881922, 4.142351421789128, 12.09523772609819, 4.517017316017316, 2.508903096903098, 7.905286928104575, 31.620781635117687, 30.26401945440181, 30.72861456125573, 21.361970800867738, 23.26571602245364, 33.2886742146742, 23.114760867152174, 33.58511624514893, 19.74308720825642, 16.76272969187675, 25.87570234607154, 27.715251771683988, 20.82286292191608, 30.062838044933123, 28.450573717948714, 57.88563828184976, 21.314673228646576, 24.583627766259248, 32.883871199835596, 20.95164587944389, 19.307515739604813, 21.206248443476976, 21.998016630426527, 15.875301827784293, 24.137543643712608, 23.963885059145998, 24.795025031719312, 20.041420847704426, 30.081039901737668, 34.241785813099945, 21.382386508099746, 20.465076447025066, 42.6516899278882, 20.81124059167002, 20.013458966604766, 25.00583265865485, 23.353260612658758, 20.79274891022589, 32.54570942035261, 17.373984502052565, 24.673138499181974, 57.823472736076184, 12.665419839891904, 21.158723144850548, 20.709480987810142, 24.257585463863595, 201.48691269841282, 27.649108946608944, 20.516375595565194, 24.593939610389604, 33.14464893439893, 47.41507092907094, 17.772147325481534, 18.00588924666491, 14.74544646464406, 28.52336522717049, 34.24374147519146, 24.359223704400165, 17.309152150091343, 46.247691524677585, 28.277490801547984, 41.22883774367396, 40.18232876905704, 22.55259288393763, 20.19985994560995, 28.939996605132052, 22.883624721967436, 17.66046468465523, 29.28586695450233, 21.810593738235465, 34.94888131729575, 23.51128624903536, 17.52092476165494, 28.862658520040938, 19.15658534619539, 27.18896686156981, 13.485741974258449, 9.17479583065174, 12.541899444318124, 18.820996498149015, 13.068440292321212, 9.66048885507698, 8.957134660565659, 17.59404812859307, 12.516326842722055, 15.466106387129983, 9.654072604174713, 12.775403323390696, 8.441826555106756, 18.47132865113902, 12.73512357826543, 11.541960117951653, 11.473502269972451, 18.08643310209196, 22.43331623801036, 9.656425881784374, 13.56849729365635, 12.388588437264099, 12.534826012166391, 20.489001448006107, 20.0711799523188, 25.066041531067917, 10.321813465064642, 9.734024373226209, 5.964475213779522, 12.917162627861696, 11.54162519087786, 12.7512892556047, 5.810309945664639, 13.178496253746257, 8.294672490650047, 9.556702802013948, 14.881141745367449, 8.655713352007472, 12.619201687201686, 14.631356113831528, 14.39027144750674, 9.098933501683504, 7.016303172782378, 16.971898074148072, 16.722634920634917, 13.247672893680132, 86.33215873015874, 101.03894444444444, 103.5290714285714, 70.98661904761904, 5.379225629791894, 21.04441881548403, 15.79048011442749, 4.473923674364851, 83.76283127058127, 14.154985958485959, 5.078162951507283, 12.490193362193361, 6.701462481962481, 3.402948051948053, 6.896249182190356, 12.161331843595, 2.4165213032581465, 9.313732586233158, 10.306975468975462, 2.2858412698412707, 8.98158371693666, 8.431696995986472, 18.294001307900235, 15.548, 12.026425027586793, 8.422305555555553, 5.013378139919936, 5.293322193073423, 4.160107744107746, 7.618853387373309, 141.92906349206345, 4.930438339438338, 11.728678359652047, 15.699552187925072, 4.477749799661564, 9.659375252908179, 12.537577181596266, 5.48644231911879, 11.784211090496804, 4.985478637671621, 4.430986445917634, 11.486008238749204, 8.685319199177258, 4.019180063794668, 7.220752275502276, 13.762455553735734, 9.367694444444446, 7.880623937311668, 7.223747715030068, 1.1467184466019424, 16.19173791527522, 43.012240106951865, 47.383514332328396, 29.040192607138813, 46.46880586350768, 27.09453042581752, 42.70342486423146, 54.96290675990675, 42.05454621095752, 52.09415155991115, 46.480828848687544, 36.02166553178782, 37.506361920855966, 59.86695695611579, 46.15716788766789, 42.76431368341804, 38.40729780703108, 29.88016286817758, 40.36644280062358, 38.17887185621397, 40.61756992337166, 34.61852823565324, 27.26814435564436, 25.28587917429047, 49.876424444704064, 23.557834099509023, 43.95169215832971, 32.78447840755736, 66.45369885490852, 66.1960253456221, 39.61424932183399, 30.968039853335522, 9.5531437546301, 32.769420265214386, 45.48128354978355, 26.274608033728722, 28.84434849234848, 24.614850162908986, 20.801848155929036, 39.42287590187591, 27.430370400509325, 31.92621545121546, 46.11281315360738, 30.020816447707166, 21.975599415739172, 21.528639342088063, 31.360610336976904, 25.458193471698987, 27.092944099812186, 27.37129953040734, 34.255113275613276, 26.164917701863352, 24.08863508581531, 31.537085410887958, 30.31225933350276, 37.511783466533466, 27.636730411401466, 23.762038023895613, 29.99491693861693, 49.94961262626262, 32.03407215007215, 39.83446029460737, 29.405218999844248, 26.028093400063995, 37.3538836098542, 25.71649677239383, 65.46873015873017, 31.471634750354557, 32.97822996447996, 33.395580811345525, 9.787331890331892, 38.290896205244024, 26.063148384295445, 36.72728715728715, 16.98425950511477, 33.04600602665309, 21.45814029090747, 34.16297494727494, 30.62399808035102, 36.612081049218986, 37.50437506937507, 49.48294769180312, 34.47966606553435, 23.933602064602063, 31.69999428349429, 23.16838261179825, 19.908758817333187, 19.611893467643473, 20.29086706986299, 24.615571751419036, 27.005563112326268, 32.44740569561157, 38.01520961494647, 25.60732380038262, 27.92783658764696, 26.32038111760708, 23.386040049019574, 31.74789599878377, 20.31403219819396, 19.641644490227755, 29.25361283859828, 18.78109224358933, 20.242747803108482, 94.37061789838513, 21.92681286491286, 26.163925436881957, 30.598761682761683, 26.540729903007882, 28.635942102015623, 22.261664485840956, 26.152628091722516, 24.495113783800736, 19.310801987461655, 33.64128754578755, 24.392768035507157, 17.700211643018143, 35.12143374023637, 29.20232280584912, 26.906015890240024, 22.63982787010736, 43.35335536294826, 24.00659973798131, 16.632875583298215, 24.203931348727174, 38.535448370343104, 21.62976486220412, 21.274779864757072, 24.124983458195416, 25.46302148940384, 129.42658585858587, 33.84984446173322, 29.03890037837978, 254.66000000000008, 247.758, 247.76, 254.64000000000007, 231.38000000000005, 244.0133333333334, 17.251110163447642, 21.230596660585316, 73.08525532800532, 38.868570937516594, 22.60561031109414, 200.4112967032967, 32.493682478632486, 24.992143106467278, 26.208069503824916, 13.238566626012444, 26.460503586282996, 22.656516756164038, 36.67948723498724, 28.919488508223797, 18.579515034580787, 17.892794735658864, 30.54139198965287, 30.189167776152313, 21.971318533805384, 23.74420573327638, 19.78026849327568, 16.47058663011918, 24.736762684683736, 21.246527679836504, 23.973217618982314, 13.241479107725658, 20.437864909571566, 23.705191657376442, 23.820107911057406, 18.310933083256618, 30.649220892557736, 16.431876512359327, 23.411983151127448, 44.27308703577124, 30.746792558395505, 19.097788856729494, 22.928768600680364, 18.14233662143956, 16.584760845194925, 20.82039743675657, 16.078383714835887, 22.933882093740454, 32.03494445114568, 23.660402181152183, 18.644091821974644, 39.00311604251156, 17.328139623408358, 18.94904344067189, 12.93559401811019, 24.600620491701335, 23.16060663193016, 12.867837752306169, 15.719621325090461, 15.04566978646854, 29.314373675018892, 14.434184776161722, 15.314974449818445, 19.417324732285255, 14.82518250896613, 14.942085954061794, 21.041320924105136, 18.29682857863932, 19.31267024905431, 20.309164138683588, 11.30997660558653, 21.781030878614445, 235.78461538461542, 251.04000000000002, 209.71, 58.07369473173885, 243.03428571428572, 182.31666666666678, 37.786093795689624, 22.881367518210894, 44.784868838763565, 17.79309132595635, 13.275164583841994, 14.380026058482581, 26.154236378087003, 18.1817489353465, 16.89697816299478, 14.45956382383364, 22.935359947242297, 23.581069358178055, 18.27091620213292, 27.93252991452992, 15.567446332099276, 16.48366038683427, 18.447768030662147, 16.568370490620488, 14.375125943770676, 11.477321479174421, 18.775206547206547, 10.90608544590085, 11.434060077177726, 15.899811231252407, 12.188825006886868, 16.81376767676768, 12.323645361947992, 30.86890975690976, 10.148750890716538, 11.523688880835936, 12.545946302722617, 10.05844699976666, 12.849368620879885, 12.66777966389189, 15.029747474747479, 11.080185405686281, 14.50871579745194, 16.18611027861028, 14.436747365379718, 11.768849364687599, 101.5819998097141, 9.773641735674255, 37.99800745136091, 13.079763205250202, 10.845365782909901, 12.617916064893365, 9.418298370257196, 20.020336681931305, 8.371363844782072, 10.388915858811524, 9.392135775988715, 13.102388213180008, 7.342274929336791, 7.99721671743775, 12.27055832130832, 12.3205860704483, 10.617496575071705, 9.507700687655808, 10.748986711946463, 2.856221466364324, 12.666473001139243, 11.635196916630019, 11.105693231841572, 10.70034620008859, 11.478165943197403, 9.642063480063479, 7.815358151564153, 10.978944246426982, 34.45895651319784, 15.288327415676502, 12.876257474003113, 10.599754407244168, 13.43362373012862, 11.880469900951258, 12.068303659360938, 11.192493659186272, 11.356101756964659, 14.070156904420795, 15.307904374391832, 10.13223949011121, 10.612546917026828, 11.217950959684739, 14.60472148460059, 41.039306928432765, 14.83358585798446, 14.948764639508434, 17.878848601003398, 11.37139088250289, 14.253943707863565, 12.40768541167344, 10.614103747130065, 9.101826839498377, 9.828672216858937, 13.342338479762638, 11.733065421992194, 5.74624045691472, 6.511400258103802, 10.809303604996078, 11.818839239271162, 10.516847240994297, 18.54030699280827, 16.67214109185162, 9.876123301692015, 11.454911092716102, 14.941738888888892, 9.272646826412002, 23.31140908156884, 11.720802118933701, 11.440335052615833, 9.09592597864862, 10.922736854321364, 25.757384345904175, 4.7380373602432435, 10.682787303140866, 10.912596435550714, 14.783997602484073, 9.443663742612873, 12.059086694895523, 12.596542732084853, 12.35239990505972, 22.605029060202643, 14.01970979431122, 3.21721794871795, 9.43678305959873, 11.36497913904694, 9.797993763135503, 9.954137568357865, 10.119131871674004, 43.65614916570885, 10.202283143327262, 49.818861925550216, 17.03336299317733, 9.287211784898195, 17.14164463967406, 10.14423774864726, 26.93103981606628, 32.37973131587904, 10.941549777908138, 11.562043385750817, 10.515171991437162, 12.107195292667427, 11.26033560581074, 8.528767109373952, 9.347270111975993, 11.416326892044257, 9.796587958744897, 6.873981619539124, 10.017093265582526, 8.853800581855417, 10.40758701927587, 9.857082473082473, 9.953800049129018, 9.985919796148126, 15.756614003484312, 12.542389728803176, 9.566772587151707, 10.774990212352176, 28.931862937715888, 6.3717815465216905, 43.56134271284271, 12.286473252431687, 10.079452065668773, 182.69730158730158, 9.090435315561631, 6.471923731169013, 8.887365284058832, 25.908869303806235, 6.4047559250175325, 12.337871886283649, 7.500911669127485, 11.26294277038751, 15.430986497162966, 8.450042430352736, 11.439436125965539, 9.656264720021957, 8.492132841691296, 9.019976190476193, 11.035514071669644, 10.86929598388042, 10.421832791506166, 9.784658722498616, 10.674730182022236, 10.565032702804437, 11.457007486631019, 10.294602232712757, 9.25964329977591, 11.442320088856567, 9.29813425901584, 12.687396456158224, 10.534930398625445, 9.183283699947657, 10.854637426900586, 9.745141404471715, 8.265275125537256, 10.931815201069753, 9.077421001687389, 10.289357964119752, 15.572625196313746, 11.538889266597314, 11.276146032089372, 25.699166240242846, 8.800488451150141, 12.135609140704492, 10.63965869055983, 8.445843358855345, 11.142225833136218, 11.401840310239566, 9.360430500458545, 11.913815730490894, 14.390670656761234, 6.868276436193239, 8.824210985216071, 20.983249611075962, 9.808161729398464, 8.161875658225503, 10.539999835628993, 12.89626239931782, 15.3036329980587, 13.661688307694082, 9.891261790384936, 10.484185888675695, 10.440366458436522, 89.54665294604621, 13.733012048953748, 7.734964557605241, 8.506606884059769, 10.963808453041215, 24.43161269690701, 35.84828228654745, 11.246661289919022, 33.665371641587505, 12.656206161674582, 12.751356061025046, 9.973704751635497, 9.395958387678538, 23.307617569938476, 9.799231724874781, 8.607621720013144, 12.839838739300957, 8.36941796703054, 11.867530050725165, 10.125878740490707, 11.377564554322525, 9.156573761364088, 10.794380351722412, 9.644205595276501, 15.32016765594451, 17.86577262800173, 9.470174840253788, 9.022596189636745, 25.56268748461111, 24.529668545244842, 10.924096714370444, 38.161828236337925, 9.349205724687515, 11.232016670464034, 9.241528172186484, 9.420166285796906, 8.628389171901068, 9.406817561861173, 9.193271102064456, 13.317450943680988, 6.978647084657312, 11.456508144940068, 9.64371315308684, 11.321983707263557, 30.54828376604239, 6.540480345027761, 5.755450584581658, 10.088532089104685, 5.542688271595733, 10.784139714636929, 11.25900492229611, 10.267989436611705, 11.81962584672267, 6.612118607595695, 12.952953237079397, 11.068643311639706, 31.50847379139608, 42.95126095668384, 9.727563501777697, 10.636348556814028, 9.617893358942103, 8.911481341428967, 13.580366054598667, 8.04361814373396, 9.939612613127588, 23.97970731065697, 12.917404368578286, 10.208660815792394, 11.512295681946231, 25.92539149094799, 11.238765575555052, 10.011948051948048, 109.18756483516484, 11.33220326831534, 11.086274680126786, 12.224112188053331, 11.704824313872642, 9.350046072292674, 11.094293981164288, 10.90872857917871, 9.576999856457384, 8.189930269206496, 30.67665860874533, 29.48729885886387, 7.347341675610251, 12.547833270427912, 8.569910533910532, 10.471304024080494, 11.344532148247152, 8.639428466599025, 14.173799928571595, 12.801544298796289, 10.669867357345147, 9.26502652241217, 13.027039475236707, 9.53790065425815, 9.056663642623983, 15.316227089335788, 2.0849247436866487, 5.503220733289698, 29.26741035985986, 24.76876793772247, 18.617943705123555, 17.282968412420235, 11.356300809059428, 16.13628349911183, 71.42385635782409, 9.465129524582737, 22.30941315610193, 18.024075027638204, 10.889514449658973, 12.237643924816304, 10.814661238550611, 16.602563859887386, 11.48212265447794, 7.472644077836821, 250.8600000000001, 249.9, 10.424746940546555, 241.2157142857143, 245.65000000000006, 240.27960784313728, 36.48403704404285, 12.062670133947654, 15.556019905875731, 26.20100284931176, 12.263198871577027, 15.54902265125199, 16.51428803833769, 14.61052770145435, 13.008079752749408, 13.676456511664401, 12.751422970780979, 11.233325811669697, 9.036198098520588, 8.611919951261577, 27.59543251452678, 10.872632420241507, 15.151637532569426, 13.765441195061767, 10.335638754385327, 11.580739329312491, 10.160666261432802, 19.042795036601525, 10.600700201793755, 10.584145628738979, 16.573020023731303, 24.582583566286196, 11.601864193756589, 10.222437510087666, 14.931409802516322, 11.072802535184115, 23.610951786656656, 24.280984139171984, 24.890282925651356, 13.193510289362155, 10.879649073860286, 22.168808977403238, 20.419197016123363, 9.942207035117445, 8.420024268311234, 14.605960380156876, 14.454535564911154, 10.68747338201692, 35.69474634527984, 21.93926446064389, 10.1448069540688, 8.75837685278635, 9.432856245120647, 11.352361619008708, 10.484317934138826, 11.119634209911887, 4.6338208957242575, 13.857949064437454, 11.257179530909408, 14.798186948761389, 10.891657404471221, 9.089522936615518, 11.53762952253616, 8.230168249774184, 10.121511387859245, 8.882061599781293, 10.182605128796768, 10.34045363861026, 13.234324561403504, 7.4538062502998566, 11.102980399516438, 11.656185369085362, 10.046861940342753, 29.976529449363564, 11.526871159423463, 8.655423943376881, 9.162415679095883, 18.330235808968013, 11.912689052250235, 14.103134803105393, 13.505194765332432, 12.513067381501253, 10.680077152259507, 43.66533538030597, 9.760920233142183, 22.499459244869023, 8.392823400737274, 10.112024588449044, 11.305325877460591, 6.760835472233305, 2.0139669738863293, 10.56114268164004, 11.21355080545081, 12.270818502524008, 10.186877316679276, 13.246732792611214, 10.584021836109674, 19.23217114553759, 18.103716312617554, 17.08413377775031, 10.296932141287439, 12.61438453408191, 13.039122290950296, 10.794905175321032, 43.45454502874176, 10.091117291902421, 14.718132984709714, 11.991397787455059, 11.482783208020049, 10.677683000043883, 27.579034748091626, 11.440398560560096, 6.779626468769327, 10.261487427630849, 4.219851445020111, 12.3971874870835, 14.883629273155377, 23.8693616597153, 14.59842753533353, 14.875494128006169, 13.54847542376712, 34.47888607890367, 28.24938481101758, 9.666832032968836, 21.259089990903288, 12.41908177297226, 19.94996860934567, 34.91760928175156, 64.43456694042018, 12.904148904056871, 21.4251358014948, 7.994142655421329, 24.839502122409506, 14.749333391637915, 12.037808106070758, 14.842868348806082, 8.35728969696858, 250.29999999999995, 245.80000000000004, 21.64167901471954, 243.20000000000002, 225.47999999999996, 29.747838060255894, 12.57936769809068, 20.927786312680933, 11.127396511699757, 14.891687292949475, 172.76333333333338, 249.82, 247.22000000000003, 160.33666666666667, 242.23999999999995, 198.35666666666668, 199.7761538461539, 29.47529976251882, 26.115533530933227, 25.025547036606348, 17.357651631323865, 18.55534445326763, 15.302563127019777, 11.715753645744616, 7.992465726558191, 9.709731982739063, 7.867370716105815, 29.769958835523678, 14.595463602250486, 44.853014090689385, 36.484546176331804, 22.35490514248636, 13.850995835590805, 10.192219687589652, 6.617814177188525, 11.938405370762249, 6.820361566778658, 173.63680952380952, 11.626954713792692, 6.707591162460728, 7.064193674319186, 13.60547107735152, 6.669282880968479, 38.876782873874205, 20.159739803749925, 9.057592621319884, 8.672016175581797, 13.984586442320591, 5.705569579571663, 16.954534878826138, 6.654651868756596, 7.9421095327387885, 23.85163578255219, 6.3749118590713065, 6.109995354572254, 13.643388361732361, 6.047078698813766, 8.126596356596474, 7.780819051064544, 8.124474314436855, 5.978175017315639, 8.002827958190188, 6.370630761396448, 6.539542563615227, 8.100864885084103, 10.062502230751875, 17.577141999698036, 7.466160316414261, 15.004574429724656, 6.985744741759502, 10.370895402943628, 24.527620190744372, 7.32515394097265, 18.89471849908667, 23.849337614125215, 9.811889328465442, 10.454948296854536, 5.865154515934177, 4.3016178321988185, 6.630015025273802, 15.307033034675142, 11.84866175252906, 12.409198577611047, 6.100450256243455, 5.552594948061732, 14.849654003040007, 9.01128207037201, 7.656095292355681, 9.996882653437751, 20.301483121575192, 12.447118158794812, 9.560050813562125, 18.021000752231863, 11.417763440349358, 14.186866162714674, 14.033701680176048, 10.736053983053981, 20.21250133703125, 7.9121595152635935, 9.50937613716631, 11.300883457135221, 8.080407160078872, 9.289023461004065, 11.048290422296377, 9.395525170493135, 7.284953089302769, 12.643164170403654, 191.48083333333332, 190.0088888888888, 129.17270995670998, 1.273959726891485, 26.972906216439146, 18.20421461938885, 16.95855288507079, 32.126805843034276, 34.274641016522125, 25.80530266955267, 35.18936158346158, 31.2184666852549, 40.63224511237555, 38.617650323499674, 47.89698633205085, 43.8657264367436, 31.170043898350066, 16.351353055485408, 30.924679301340884, 11.527222500374577, 43.50427723257208, 14.510591384974548, 29.82502875280893, 76.34741409701414, 29.146519927642686, 37.04853403273141, 28.318333610726718, 38.06805946873694, 18.063641244449464, 34.03263256381861, 33.79217713249121, 13.254350903941214, 18.236872220373428, 46.79677920974147, 33.96004231100856, 17.181993367102, 14.279621626553684, 16.02657202536279, 13.204100896958044, 32.31166978238357, 21.39385203181669, 30.073435942898893, 56.77680422283332, 13.607907045166753, 13.702573200481364, 16.084303659008597, 32.72869708573965, 15.607370521252399, 32.18190556138776, 25.044277787464107, 39.511731115375866, 15.10369864459092, 25.010671940807196, 23.112121412861327, 43.876943468296396, 41.55885009435009, 25.62851435781761, 19.05289375627796, 16.280697297256122, 17.10100545395437, 23.844731086970786, 6.974963982367836, 9.807751792724734, 17.10972938325965, 19.631241341991345, 19.529168303690042, 22.063867354147995, 20.848879033797804, 17.36013099147155, 21.206921609973588, 17.12721961956172, 16.45679331111662, 26.97202719789018, 12.233653837643288, 14.089332862479226, 13.748111673241143, 17.189734313456576, 29.165790940947097, 13.921506845006848, 20.724607706592657, 16.82666833550082, 19.254595939191525, 12.966885717579878, 11.324721293988775, 16.547981935532874, 9.224921512507322, 16.419204207639407, 1.3848635033928283, 14.496849084249087, 11.694559329559326, 15.429215155027533, 17.58743219461698, 20.383346965899594, 16.05709046251903, 15.167271593305516, 14.595852580168366, 12.188989204707104, 9.808641700404857, 8.828121986222735, 14.492296882855708, 17.448825670498085, 2.0258333333333343, 15.085652949217963, 20.224809523809526, 14.003280346588397, 15.155954078888577, 15.652199273138283, 18.16567858213911, 17.15549503829504, 18.826494810744816, 15.288272588522586, 12.591063615359753, 16.524828960513172, 16.706166666666665, 11.218332602323674, 15.082628717119764, 2.077605820105821, 13.882094479826103, 10.988833860583863, 8.603796417665023, 14.898100908695824, 15.16605883724071, 11.218098058803943, 14.310444444444446, 10.530126984126987, 13.332600481218135, 9.831791510418173, 14.845590744521182, 15.125351163048844, 15.423592490842484, 20.250729493581154, 13.778203425229743, 18.480245946432035, 12.975534667566814, 10.783044222381461, 13.043214034331683, 4.436666666666667, 6.62778522557658, 9.68260796242696, 21.192926862945928, 157.44122932330833, 10.577675887275452, 15.827115452865568, 7.736804651560958, 7.470651064295774, 11.147497506923374, 7.226782671993389, 5.3704893537765015, 6.152375464629088, 25.27368523293524, 8.551786877324322, 9.70744690127737, 9.060711818606238, 6.856298089454363, 9.32092419324298, 8.681005633058822, 11.646604517461187, 11.224589425793939, 14.755162894754198, 7.848407381219305, 8.29016502077777, 8.821302826813719, 8.61223341284629, 7.533222274460223, 10.331762329288644, 12.329565213527443, 8.336383442301594, 11.064173455072458, 7.190856936981361, 6.615239089844284, 7.255941880874904, 7.257084848832039, 8.094077058931404, 7.017003814317131, 7.396629118055287, 8.12368638311265, 7.008099318442046, 9.047135285689617, 11.60933059214034, 7.81847559248237, 11.000072213075343, 13.93839357083506, 7.824654026114505, 9.370329844825934, 14.84653548118548, 8.791217532642667, 12.302700041974427, 7.571324253545692, 6.817440576154542, 5.151770316391479, 9.12441729474272, 5.889675009078969, 10.239635083326263, 6.693236561604008, 5.623043856870622, 9.364342741345498, 7.9609065076921395, 7.779819499380474, 6.431811271828057, 5.225343669250645, 8.222147976355783, 248.59111111111113, 240.27000000000007, 239.39000000000004, 6.654921525339637, 9.081670846532303, 9.603689427183355, 9.846758670536202, 8.675662309814939, 10.765382130540022, 12.639094276094276, 13.874370751265733, 8.49889313879957, 15.814671471835922, 1.960000000000001, 1.4528571428571437, 12.414666224456546, 9.791373319662794, 7.146884920634921, 6.4499869574275115, 10.222731198685683, 7.882975580002199, 30.185149187968143, 11.769828403954715, 9.956506348038436, 7.319945857105343, 8.299796231250399, 7.201897494526409, 10.543335330355921, 21.410407870384134, 8.056128567039693, 10.85167930380473, 9.111353326709242, 9.829384655990388, 10.523131039967145, 12.808021157468835, 11.178836303407484, 23.09901885470852, 8.362466888725304, 13.213364465775278, 11.352127201391065, 8.226183810030944, 7.876598224195523, 9.316873261062469, 11.256903305611294, 6.396146921078456, 10.2899244196442, 7.418039653331103, 8.8728746520916, 8.598953245381624, 9.260909923377875, 9.11917560119135, 12.245145522290294, 28.765676365140394, 6.562053508064629, 10.889746695828341, 12.618653285960631, 6.733219874546117, 9.983862288865057, 8.591484009138044, 6.653125321940754, 7.465992297235404, 12.290337612228495, 7.8239531243774465, 11.257847587397125, 7.089320169006088, 16.66679145744139, 9.285775199385338, 11.245888310959984, 11.350681508242145, 9.624061916886573, 15.20946157187212, 12.597628550037134, 6.148384325992829, 8.3739303674549, 10.723160978189068, 7.38140923087301, 11.331555164380466, 8.66186611692523, 9.481574562269161, 9.046190132221067, 10.430725220883815, 7.82443659918091, 9.368766379358224, 9.973769590993694, 11.413947252747253, 10.424019567360743, 13.94208135811557, 10.886836488214788, 7.858424171018928, 10.702060611902718, 11.825765675998689, 11.02599688581027, 12.432194642723662, 8.473598989898992, 9.243477188291585, 10.74264448915378, 10.681720541775876, 14.292833333333336, 14.130540051030563, 14.773937747596706, 16.922598112136907, 10.29574832477464, 10.047198675163846, 15.795912022620005, 10.296064890579478, 7.7554025236755795, 11.653587673369799, 11.62434905597951, 10.084555107927596, 11.525389406458055, 13.443302185839318, 12.470775703808192, 11.828642060377721, 14.007137768061229, 8.992740981240981, 12.279253115658289, 15.82676160833827, 14.086699772662689, 17.631444677871144, 16.6858974048827, 82.42333333333335, 12.140341225088363, 14.082800486707265, 9.70708888888889, 4.088333333333335, 12.033549911368087, 12.783537061901663, 15.712921547750494, 11.414682529974147, 10.906551075676694, 13.509788942695716, 10.307549783549785, 10.596681408331651, 9.01104819438592, 10.627780000867336, 8.825824787974375, 12.88938136261528, 16.50790652197868, 13.73861770707423, 10.770652484357509, 12.644857694153696, 11.028149425257508, 5.5548715728715745, 9.452348093105265, 11.439539488803035, 12.438613239073897, 11.15227829985208, 11.94942544134572, 13.122116724110969, 51.50705112168542, 100.24964835164832, 97.77575539946247, 67.61632023619656, 80.63000831352555, 91.483108715817, 58.74979850173466, 72.72984668015371, 59.076687781173064, 75.84228128809714, 43.15740023296825, 57.07867223986882, 71.09032846842817, 217.8625, 36.95172097114122, 11.567528258836733, 55.413162987104386, 52.83149948700108, 76.31360829610257, 31.556757717905263, 22.458843229268822, 46.35023112675735, 29.04239885122358, 43.589561201518265, 30.755827052032934, 31.150637941972203, 61.098987256624206, 35.26282835536159, 50.353002782904895, 36.237670952314005, 48.54241194006171, 51.1946333666334, 32.102029295181474, 43.649683269345054, 41.72337176454089, 11.212408646338805, 31.30438484062314, 15.511343804053412, 32.97482799675958, 7.154274464563769, 59.79485866180603, 41.87682721611522, 26.40985686059283, 30.692191364916912, 38.21143532578123, 64.63081818181816, 51.663973805168546, 28.753430370844885, 31.330421852094258, 11.551497879285606, 51.611102727511245, 12.844515963219347, 11.558465186728016, 8.649910418673242, 7.740055417380442, 21.862325702075704, 18.925721947410537, 12.141613748470627, 8.736374286498966, 11.057590324491978, 10.086380159900711, 8.952717675557288, 11.46695979445391, 10.588084299882482, 8.688299270301442, 11.878931421398812, 12.09578502978503, 10.824156088412625, 7.273690745898903, 16.345002721867548, 7.204630397062812, 12.07626095956724, 11.612654434315072, 12.084846440539163, 29.815746968717562, 12.191503506867845, 14.867575387989088, 9.908827474296201, 11.72500926380121, 10.692762737709998, 18.441992370059666, 22.60608209301681, 15.008970775158085, 8.215707146906023, 10.544974469411587, 15.548940081089704, 10.454150365831714, 15.485512331464466, 21.491942577030823, 19.679659431006574, 9.408994511924194, 18.17901852023012, 9.047221316705034, 12.562167861710433, 14.29265308062352, 34.64426984126984, 54.33138489736069, 10.84274290513488, 11.412760958847912, 9.890481751548469, 13.660467912859266, 11.57728319716092, 46.414690032190045, 7.717509803921566, 30.563645251737263, 12.623922806845677, 5.114588744588744, 10.441199787025191, 12.533472713308235, 10.978340057857084, 20.06329919333283, 11.806410228520383, 16.225386667537002, 19.23844200206449, 23.792604056927992, 25.5239222694471, 18.56298229336585, 26.477740406651677, 22.958525555635774, 17.516056044801278, 15.83238122461736, 14.449927563318445, 13.026316219609697, 11.622340388024547, 10.548310382098196, 8.45360333365462, 7.3632592854131484, 10.890492576782767, 17.839688690290217, 9.936684157973998, 28.222838755493726, 27.690417598565556, 8.914233529603068, 20.747708169496992, 23.234912992029578, 55.44145655294695, 17.12252238681811, 16.031425089114098, 8.487396068645548, 8.932223658297186, 13.415027383999341, 18.861733756391523, 9.516802406637144, 9.452384527149304, 10.960886428486159, 21.46636400820017, 26.958988825828825, 16.660572838802146, 24.737894044917837, 12.164313468245975, 11.203890576298798, 19.095678153891704, 10.073500722368065, 17.249123669610313, 27.651514890906185, 10.327629709144867, 11.203219359805676, 15.242525887386574, 13.515331658692178, 10.482926270614586, 17.52409121053003, 18.290515614370648, 12.613150035077666, 18.54066830720999, 7.3017796631473075, 11.881651024285281, 10.427960645473938, 21.21099271362837, 9.052898154126023, 8.228880672157215, 10.22842761398428, 12.27598614294202, 13.552488573779453, 10.683500229205098, 11.03011030645404, 14.057502839783705, 9.712882808058161, 135.96574578239563, 244.6900000000001, 244.60000000000005, 252.30000000000004, 199.90000000000003, 226.8800000000001, 7.554837711087711, 10.554620088212557, 8.502317766631206, 10.175458715976106, 19.822300865800862, 7.839696164939095, 33.46412103027125, 11.564434908026575, 15.922994902545858, 8.105955816989475, 16.06883356088285, 15.309656096138164, 7.679534976443495, 7.379555541018848, 8.470335788222783, 24.34406041366042, 14.76601127915772, 7.878972914944188, 29.325563770133595, 17.505462518665947, 10.274534186531328, 13.869406556867691, 13.081339184664728, 11.384052377583043, 10.936359608817058, 9.358035382770687, 31.47814419660665, 7.652060563069727, 12.520223196286354, 17.22258147001929, 9.522233830718019, 6.113563179024402, 7.306015390644061, 11.534943206152017, 6.787486404364772, 6.974774457475145, 8.708142707045235, 8.159461600185738, 6.768558716957481, 14.61207493491984, 5.932416716115964, 6.973806606298113, 14.302527637022328, 9.159265724317555, 20.289244114505713, 7.009126631472001, 21.174650943431104, 13.296980057657487, 8.227226611972867, 12.435889361238555, 6.852437059364388, 6.428328551185493, 6.644996381011289, 1.0430226480836242, 2.589738095238096, 7.764411249674188, 7.9467441676792205, 6.728920932218238, 8.279728168169129, 17.854741107485864, 15.273763160722456, 9.141641774109996, 21.04307708530586, 28.836666791020452, 10.166896004744686, 20.10661218273305, 4.951726385567918, 6.954112473101799, 9.629222214191806, 12.332570254603523, 128.72444444444446, 7.306052542482406, 111.80916483516484, 17.439761803393274, 16.299365553964286, 11.918236879062968, 13.887423986797613, 16.298197066247504, 6.18017512423971, 16.86063731934698, 12.782949808078103, 7.106805206429021, 6.692610996473208, 5.4457716497691235, 16.53430173580174, 10.470665243682122, 9.115358220631602, 6.703677481640172, 11.93357167199133, 17.076539470112994, 11.949070187122818, 7.052841899554258, 13.21783654153125, 14.735146239140514, 9.47472920015521, 16.20214572000108, 13.52438516074318, 14.267977828829176, 15.476534437724501, 15.503221893912276, 11.916849772357876, 11.456894867138184, 8.869429223563063, 63.597023243640216, 8.32331092185908, 8.337686573169169, 11.808976553761015, 11.720505556473833, 13.284995060702336, 10.886000278543554, 8.122250966822323, 9.987425857193664, 9.767965985193676, 15.351012755560134, 18.40125113099395, 18.619463171504893, 8.120332367852878, 90.72360531400967, 6.7009731323659745, 7.599976524532345, 6.1927161335523175, 11.1389932769516, 23.2590080805337, 10.0853497355409, 8.966959782605715, 18.124130744604084, 12.131900759760265, 6.02055008438538, 14.401562798493865, 6.944021731810726, 8.025399452573328, 13.7739073378306, 4.536270611826056, 13.07753281375012, 8.236015010411728, 11.441061408698015, 5.094321075083426, 6.014607880461975, 8.905469605873106, 14.132928774287176, 6.95905961593861, 6.672568121132838, 9.405662354896565, 9.30696407323254, 6.134610166469548, 11.667444695504946, 10.09380316267317, 8.443391350197588, 5.657542088271163, 5.434045956675313, 7.683300810399797, 8.140549294528398, 12.199255152994192, 6.251573919163955, 10.293625671952338, 25.021778329601172, 9.106430487885769, 13.884159872806933, 6.456910671075185, 7.885496695289895, 11.009205509399871, 5.807247916484584, 9.812995708223564, 7.010904851736103, 6.295603907603319, 17.163208679963212, 16.042286685359255, 6.447818160109547, 20.497215128282775, 5.517207980922131, 8.36881226015127, 11.793082107859176, 13.680458586436108, 13.556780675176086, 8.079304112326433, 7.470320726904585, 5.024272202354811, 6.46672433847459, 4.591583833236545, 7.129470205438261, 5.516225699623337, 5.131880787766886, 9.57916899566682, 10.73927531074491, 7.153215157188403, 9.886180927131281, 5.690337999635207, 1.698000000000001, 4.830038140304529, 8.94754439872371, 4.413026790392772, 8.772272081856414, 13.744203385785974, 13.811035992979978, 5.455075744674821, 8.58872449076399, 5.814719903592116, 4.987656680539625, 4.672914063261428, 7.9338018353389135, 4.3181891299616755, 4.8798258305735835, 4.658201157885605, 5.712822933689953, 4.47243036052292, 5.667609382377076, 4.248862650697148, 6.363783479232961, 26.08664457819124, 9.888929706112982, 16.167631704579083, 14.758004352920796, 6.4813924092862685, 6.962345982129978, 8.301936505154602, 6.255038800573683, 6.663251914743384, 6.429431343866528, 6.367713405411091, 5.215412641968474, 5.157248483563984, 4.5496130365181155, 5.367557290723344, 5.328711413966634, 5.706869983457237, 3.4430372647319456, 5.513341328776847, 11.371381028717982, 5.091331859005619, 5.93794234021613, 8.85286146049197, 5.157314610287409, 4.951845485308932, 6.618881008885035, 5.245921988729788, 4.318219685765484, 9.285107636934777, 10.642273346102519, 5.392691900436634, 6.6904637680414005, 3.9174316249572736, 5.597079267443968, 9.1506137925332, 6.244417896563201, 4.713474980757235, 8.59176425013017, 21.40585315432632, 8.258471104886201, 14.455435355319858, 12.62639366572125, 7.524762206751921, 11.822070787481184, 7.973149448133353, 10.322817389026522, 10.917894084342743, 6.725812901983994, 14.625318874362351, 16.188519395014755, 9.48650944713825, 6.480202867371733, 8.933462628164673, 6.4344284393504285, 6.761228109029677, 6.919145192468087, 5.56999392252027, 6.043698227717927, 4.80780497069256, 6.327520347878522, 6.5751805575532964, 5.359794362832484, 5.207128511430411, 5.124824653237953, 6.094444319313519, 5.718856359170385, 5.883750496406492, 4.941009856343483, 5.0897439561580535, 5.2358206983010005, 4.815473899885067, 4.373395498456729, 57.495020753756044, 3.917968463635267, 5.338990278131, 4.752015089322453, 4.451048138403338, 4.923464444648928, 8.31411792527149, 6.476077908843451, 5.114810630283379, 5.667084747235964, 4.91310879120879, 5.822543045289707, 6.7008997011581695, 5.098102062010502, 5.503929838846814, 6.4081568305049625, 4.8060328123838705, 5.145858596321395, 5.069545109165399, 6.01099903481599, 4.940704611078683, 2.2802352941176482, 3.642937682472568, 11.79482211554174, 15.8065718145493, 9.131210031758176, 9.582339684226056, 18.442584971638045, 11.834612547918796, 17.52497828145189, 10.817399457055766, 11.281710406660446, 44.11026761007771, 17.501657350878084, 14.64747838939239, 10.816797735637593, 29.66218142494404, 16.719236703248985, 20.646106249140654, 10.632809683462476, 19.785960196632292, 15.551862935434555, 17.486330909668165, 5.545964438315507, 6.303322184921611, 13.526622653073368, 17.30067535652926, 6.3357062830429385, 5.763342214947691, 9.122720270855403, 17.44892421775538, 8.37347175158631, 15.41486383950991, 10.383930156101712, 5.715116024834161, 12.554523853897075, 12.393107005498551, 9.67948176628088, 6.23321815404169, 8.57302430208972, 20.98001450923804, 8.483537521598508, 13.115144208432241, 17.606900477416783, 13.696574028943765, 10.510901565470437, 9.674337389655642, 13.408176315530406, 14.139179583220546, 9.20368423458724, 12.45718206673341, 10.636984209107636, 11.743746040428128, 11.376403668170916, 19.89375357945294, 15.464393996766187, 8.393604293734901, 10.140358073018733, 20.894047180287888, 17.264409238087815, 11.197700748177239, 13.698776612276616, 20.44514371139548, 7.198737422524866, 10.464076238190055, 11.220046421870862, 7.591805466686774, 6.340690434799292, 7.115688005305824, 19.430098469699303, 7.205211457231113, 7.6896175518090315, 17.47003841999877, 6.479054568718951, 6.828225051421738, 10.679747498274669, 5.306090062083319, 8.905220157426813, 9.848772439657385, 5.4537608217544085, 8.692304770127611, 6.2279408594647245, 7.230976080525407, 9.32618366724592, 10.353158844198143, 47.997764340472735, 8.89185270062263, 19.75304097227527, 12.470575224777642, 11.762367027740588, 10.935203238131761, 7.4620647981901795, 8.348203109305723, 7.670632786753478, 18.815083955620576, 14.989857159717005, 9.436966594981271, 7.39778944739471, 44.35088769382278, 17.639388344052843, 6.69997210684053, 7.862831877739597, 10.820542071167468, 12.425248021707668, 22.488675502780765, 39.85922552272078, 16.88896753317974, 12.091558982956046, 9.46881031508301, 6.886254007060232, 8.68364442728574, 15.182667240162507, 7.089458495351333, 27.148801924699026, 13.420768286220145, 20.11102087317528, 9.522615743649979, 8.934637460870123, 14.164457597807152, 8.284157474733421, 26.67016054450935, 7.097252530915241, 7.539267789748608, 17.93966126566462, 13.464222432996255, 9.253602220278312, 7.118842873547744, 21.50560229773715, 7.106935678542001, 7.906402427989796, 11.82260104054753, 6.915191263973182, 6.294608878162631, 16.039265402471926, 22.869426443503105, 1.7801428571428575, 6.630363794445936, 7.863988934372816, 7.202038431822876, 17.890909356479348, 12.669064819905163, 13.606571436025162, 21.37032652350773, 7.061951333784996, 11.692678069748005, 8.681233448743615, 20.448629291553996, 5.325447765814478, 19.341273705191114, 8.976387550185843, 8.94098823538135, 41.997508002866695, 7.963903600712674, 13.626927235088612, 8.378580523292499, 13.945956226423538, 12.841003992093196, 8.409408950880229, 8.800753121482709, 44.06548577510639, 16.13919709306485, 15.305914910602796, 11.36296709101877, 9.416353484907454, 7.731827873877719, 6.81157023351923, 8.01459208435509, 31.350165871593052, 129.21147058823527, 236.4353846153847, 242.08000000000004, 236.29000000000005, 240.56000000000012, 237.4200000000001, 182.59567226890755, 18.229094061339016, 13.923532859484332, 20.42951410479669, 11.90590737381288, 12.403131439197153, 8.015212020745546, 10.61393599944644, 7.42309717699619, 6.324602970646044, 12.199138737887758, 6.4791617407978475, 6.485386398951718, 10.910447808089328, 9.688950782040028, 7.946212254206645, 4.182677381626035, 10.450080514680112, 7.198226469469476, 6.564667403820998, 5.168345198818945, 11.0385557822152, 5.463746020270458, 6.259488676940735, 7.629797937066565, 6.211050064554903, 6.081309295631783, 9.470895623110845, 9.138386335349097, 5.941184017059684, 7.716789140525593, 6.606794840070175, 6.2939879586987555, 4.094368630391136, 4.570213673541791, 11.113589529379004, 11.395234664865415, 8.218604276292162, 10.061302028507974, 9.856972280577413, 7.056336276490379, 46.619900547358185, 4.015776081641936, 75.4809371168792, 55.327003437738725, 44.70712607655504, 4.5510564182194635, 45.245662655971465, 3.5708397360479096, 63.16140788840788, 68.99807171586585, 39.391205648926224, 7.389219864168377, 15.461621522900437, 6.5400987692456125, 12.351924106110692, 7.5381071341134, 6.2701830961057965, 6.7039410192065265, 8.609806178670025, 10.752583136212449, 7.979074528163911, 8.554437374624097, 5.767512920701969, 72.81638461538464, 9.226302034156832, 9.276175911282312, 6.58297033624599, 7.266385711297315, 7.85820949723576, 5.9148679783819755, 11.941318126585987, 9.735151613919943, 6.546211681159984, 7.531534761156246, 7.08349146741189, 6.271992335858577, 7.365474062373169, 5.330791736299477, 6.657341322518883, 7.1930455095527215, 7.368344471633953, 4.823349544072949, 11.30076596488703, 6.2854716761171465, 6.647222346530012, 15.529737582241006, 16.086479118962615, 14.535314487353189, 5.233754710408019, 6.024588283573623, 3.8083550279391805, 8.397804053057923, 5.224061005843059, 1.4809523809523817, 6.825697551285989, 10.311992358617308, 9.734215901558427, 8.175275609142052, 12.096941234313094, 8.592301325029325, 8.021424061023406, 27.7493286242033, 43.471012220000375, 39.373282407434196, 13.927827891830056, 13.078981249336673, 11.69781453385507, 26.381729360296283, 71.35745432900434, 12.498319224092722, 14.004147176305942, 12.360784827140836, 17.532913988862557, 13.030970028778452, 11.675497786571986, 6.191877961557562, 6.4548734328489505, 7.969419993450488, 15.284330653877714, 27.945644447474535, 12.338252997957902, 31.985896082368928, 6.9359640873778154, 18.608036236256268, 33.0736844894315, 13.477599744711624, 9.143097423051973, 10.238493068696997, 20.492472145952966, 20.30220437134593, 23.098261989250602, 13.186929167158112, 13.56893968416078, 11.887071864327002, 37.76914567132766, 18.26567430564781, 16.34364694454306, 19.27194193984795, 10.764048563994587, 21.90077720215929, 7.980558047915876, 18.56359588700493, 7.888457128894203, 16.10854465384952, 20.45434793083494, 30.79893391434482, 11.994047627606523, 14.692139743237771, 16.455195508893596, 13.27843472473763, 8.46538714513623, 8.444208776502084, 8.04567929912198, 15.302185103256528, 11.439488694482554, 11.497575131619177, 6.854457820735245, 7.197151108614215, 8.891029559919902, 12.414550941991875, 9.227398582308943, 18.23114359132825, 10.292063259033588, 18.293343912285888, 13.47338012531227, 6.931913251755714, 10.036250978528292, 9.750028478426167, 14.144359097088515, 10.097257506589198, 17.563099359232098, 13.810631861355581, 20.787713726691983, 24.166215402938697, 20.180453367693055, 16.97860203731842, 7.690083855929017, 8.12961452174112, 8.25635148844359, 13.170717916456535, 10.854176593763498, 19.99765259897336, 8.1545125888697, 14.615335858226942, 6.068109659611498, 6.77174617394177, 7.071596057606198, 19.88993695843528, 17.90886764850318, 24.004181198369828, 8.002251083086328, 11.11108611586656, 40.550016211575034, 6.662482419516786, 7.350766822825659, 16.164051533760357, 10.352221002370744, 9.302565950324379, 13.725356730785782, 9.032164127762256, 8.831419354658426, 9.439852687030656, 14.226907681660759, 12.47067717785505, 11.31995855936146, 8.997184778982218, 7.678806596203891, 6.473876837428955, 9.161998784715522, 11.522001098171879, 8.996762531225226, 7.618870042665259, 11.369935185911096, 9.872220015149317, 27.63644790093024, 17.393950019962613, 9.17482002407313, 11.800903452058408, 9.87869212631924, 6.896950092557289, 6.499123380754841, 17.43747823733551, 12.461221799735867, 6.907273523885078, 8.970662066918589, 8.484278470824572] ss_darpa = [0.0, 1.0000000000000007, 1.370000000000001, 1.480000000000001, 1.590000000000001, 2.479999999999999, 3.2133333333333325, 2.841666666666667, 2.192499999999999, 3.3899999999999992, 1.818333333333334, 2.3178333333333327, 1.8816666666666677, 4.51283333333333, 3.4455, 3.1767142857142856, 3.39935714285714, 4.890000000000003, 4.4642619047619005, 5.215833333333327, 2.2203730158730153, 3.4738333333333324, 2.383388888888889, 4.84099675324675, 4.398749999999996, 4.202912698412696, 3.297258297258296, 4.629690476190473, 2.4776706349206337, 3.9398015873015875, 3.7835746753246755, 3.984190476190473, 3.427429181929181, 4.501248168498167, 3.0603411212970033, 2.8278383838383823, 3.5661758241758226, 2.5414819624819636, 1.868693473193474, 3.703209595959596, 8.400609649122808, 3.6349201680672247, 5.194741702741702, 4.458728406827091, 5.62196681096681, 6.899766782237364, 3.8096919828537463, 5.430405122655123, 3.06800911425176, 4.056868307131465, 3.657538614163613, 2.458401317523056, 2.8229965179112773, 3.5274715007215005, 3.7687158535908525, 3.506609240175028, 4.552747538572536, 2.5520334030434646, 9.34090586537645, 2.9178267704517693, 2.4195636735269086, 4.0488287217168795, 5.510118881118876, 3.0474129791865714, 3.3357444027234022, 1.8931370368864686, 2.6420972129827955, 2.4446213567564192, 5.220454137795467, 3.6998157904187283, 2.173342800516843, 5.11564957264957, 1.903393630677345, 2.804830086580086, 4.206045318472948, 1.4550106686671105, 2.2255112942612953, 3.3395496954026354, 1.4332099437716959, 1.2127050997438384, 2.9346935958020612, 1.1034203454998814, 4.009285714285717, 2.9561428571428556, 2.098677655677657, 2.080904220779222, 2.586464662883141, 1.1895329433208692, 1.1671955253896436, 2.7068452380952372, 0.9369567994355158, 0.8636337884216158, 2.4041469404778226, 0.8137626854437792, 4.000000000000003, 2.5643611111111118, 22.52314393939394, 16.823712158808924, 8.426562499999998, 20.183271478549628, 10.513720845899876, 12.400890025575443, 2.011937321937323, 23.351484848484844, 2.1985162906390348, 1.3746893814997274, 2.999999999999995, 2.1475954247667444, 1.5217004078605834, 1.0585130623532326, 3.1143382352941114, 0.8407826146377257, 0.715427619469435, 2.2073425818247796, 0.6490851001875911, 0.6062647160128907, 2.1176562349610784, 0.600274622676035, 5.99999999999999, 3.085789473684205, 2.999999999999995, 2.000500000000001, 2.1583131090242067, 1.5073475609756075, 1.2173934378629507, 2.082327199255019, 1.0322808794533134, 2.0000000000000013, 2.05634338851202, 1.0290191449377502, 1.026611989459816, 4.011739130434785, 0.6751911600544387, 20.425191023030564, 11.512657880094201, 13.744576999798888, 14.68029850501769, 15.06398289093292, 23.598517276467586, 22.754251565717393, 10.255425962496354, 14.210675553072686, 7.556466067524916, 21.980760009211533, 10.136696530014609, 24.658961071295867, 26.258695294728163, 4.868184865772893, 10.735464534818275, 11.275514282138861, 12.705457473012125, 15.878749938265676, 10.768277342970071, 9.047628451949146, 9.797330511106827, 11.857095896572687, 14.230680280130684, 8.530682189403741, 12.821902723838722, 11.449930413528966, 18.023083213913704, 12.389448346319409, 19.879826978449568, 7.336608469331379, 13.383954857032164, 11.937183521585807, 7.144784808294556, 14.921697024524859, 20.388965119661467, 6.718427882294324, 17.49787838755742, 11.806454267483128, 6.284229536424672, 21.935964491814993, 11.583455783376218, 8.949558240754158, 9.298687622995681, 11.503190188317928, 6.036042963260912, 10.789808247815166, 12.907162030939377, 5.94899601114821, 8.100977064804095, 10.245667510213114, 13.84075436633595, 11.612974760858169, 5.488189573874374, 8.346411387373536, 7.29270129592636, 12.869281862201632, 19.279560234951433, 17.34356319284989, 11.66479577514873, 16.817033513589596, 19.342610753638063, 9.509798551944534, 9.811029936567547, 11.98474343471304, 10.734535088770754, 18.30357181737366, 24.76408865199801, 29.987265241282483, 20.200154517204478, 18.075769230769215, 26.28062316849818, 17.11214671497836, 15.582908293614329, 32.566346664264685, 19.90683333333334, 10.658238095238094, 20.86221302107882, 12.670045249841756, 11.71532490026764, 20.46602272727272, 12.967061057438492, 11.488870333478653, 15.879533242011227, 9.935429571103805, 5.620949253127827, 4.460399542709723, 10.106064806555922, 3.6672397903048792, 3.970233738290836, 35.444999999999986, 2.8352479802275474, 2.5487862445232623, 2.3202898852151113, 2.133473430590183, 28.686450216450226, 2.0297257776104187, 2.02696423636409, 1.8912887752062295, 6.762857142857139, 5.809999999999993, 3.0560256725854162, 2.13503511126521, 35.819001577642574, 3.507414604819809, 3.3051954887218047, 2.669531236637684, 7.924722222222218, 2.5514286233719914, 2.0296648065353478, 2.1775592456295114, 1.815564500990253, 1.9351467667402003, 3.6695387808675752, 1.8811281539868445, 29.094999999999988, 39.58418261511572, 12.762236427083291, 2.1748311120789796, 1.2419141830965874, 1.0600163322562512, 2.1486330336330326, 3.6667619047619064, 18.330833333333324, 45.051663780663766, 37.18191407050623, 22.817741815530262, 1.5412765725608573, 1.7456190694069822, 2.2151605718007765, 1.0358177588849322, 21.559999999999995, 1.9442513893429227, 45.7134001268654, 24.594494881048877, 19.34227178789581, 18.349089366506828, 26.492560511928044, 11.415371745681183, 18.14137010387509, 21.138093804266145, 15.581903015859396, 45.98478369626738, 18.064869305331094, 11.77836078459496, 15.356944205311924, 10.841617738245787, 28.902250486664656, 12.523239127436076, 12.78958232658759, 35.651456916102646, 9.960688594107333, 7.880708420773493, 16.213378820908133, 12.497913111715604, 37.47918272023998, 9.55480658853859, 244.03500000000017, 13.360376730855887, 20.79924524774912, 13.788111988671146, 26.39609057123859, 8.284953790184117, 20.06523464118182, 10.120934685293966, 7.507368228588805, 5.749118158256299, 36.6049032752682, 19.780537685154115, 18.629737488153605, 11.786915170301537, 10.81234815114699, 28.04973915361927, 12.944013722153901, 8.673324030698408, 19.248593739410897, 14.679690649217097, 8.189688196083807, 6.950381331619967, 25.551797846825327, 7.352131765413554, 27.35076299497259, 23.61059398840704, 11.845775719230941, 8.550899103044914, 17.127312716332717, 17.155369985038675, 5.849317089697884, 5.975848247678119, 21.167493935003833, 6.633742629368678, 5.6363184709524345, 5.185046583968273, 5.0283788081503245, 4.952883960626598, 33.42930676415059, 23.386942986897115, 23.302496560478414, 28.753987717702753, 11.771202684839531, 24.763682912119428, 14.325050457912836, 10.713410289679414, 15.95969388068072, 24.464222541635564, 16.520129542594372, 20.132665738481982, 6.887051021614137, 9.146161814097775, 5.720601793900731, 10.865756235761362, 11.373996546586618, 13.342420611611443, 4.546283865079599, 5.981457272605511, 14.033382597439504, 7.20449644724438, 7.73680460434179, 9.651534714447937, 4.559797157589618, 19.05661954898578, 3.4706396960406236, 11.195659477863035, 6.208188317368357, 12.943700046685342, 3.033955944506185, 9.616493811271289, 7.457614652262489, 7.348910829146734, 13.103792248802959, 11.499623324457023, 8.938691198855143, 8.349450224044961, 8.656865900816703, 7.145013478302338, 7.895685281170885, 27.727432967167633, 13.746895189543004, 10.462860547840098, 6.031695461635422, 6.029147390576696, 4.53861696828733, 7.8423781843944385, 9.130002451882612, 6.741542840343842, 2.779968935292475, 5.123017577165726, 4.593717321922908, 13.636623004964967, 21.77844401071493, 5.066349869069471, 5.288846231713043, 4.321438355040963, 20.506782159017455, 9.9044538325286, 13.57008958425475, 12.61443658400535, 8.612826519378684, 8.561299034317122, 12.066318952687679, 9.467474654879688, 6.9880274250534535, 5.9996073570826285, 5.450653581012825, 5.001301166155992, 8.518187510390897, 25.308356502241022, 21.783660658866246, 30.26681229931892, 21.537204240189812, 20.06917537618217, 45.92452902130076, 10.070388524016337, 19.906508795952284, 17.148298320140313, 38.71697469097971, 14.169934223776451, 28.419207719785156, 29.23481779327198, 20.540966602448957, 10.61732599309336, 17.125848461509953, 22.802279918943846, 14.602089212859598, 25.847657014009958, 13.23258512237208, 24.140060564833, 19.661354277607213, 11.310177354623926, 9.329390271024073, 36.92760300457664, 23.278955740206214, 12.41365519769936, 23.215365059473445, 11.560709075962965, 21.1116451236759, 13.620871845604274, 10.342745812249124, 14.881613072654753, 19.328456902305117, 14.767697336762946, 20.139730838332706, 11.387892925572055, 22.746668598656385, 32.97842880579147, 30.69055873619078, 13.278763914003697, 15.031693390750345, 9.326445973658439, 22.859974593117876, 68.41021507929304, 48.0373083463735, 35.69824833589349, 51.47286805293713, 42.9364854924998, 12.327627247193423, 5.496658775120707, 33.25089586222166, 6.791897623911612, 23.11685956720887, 54.98972940927319, 6.096129823593552, 27.73132625348307, 31.18174595224029, 16.286335150450007, 20.31293858382927, 21.618104010194735, 36.03968935450515, 17.33335754994781, 26.414912110893873, 26.3130801975802, 14.119916578966269, 1.0887443702516166, 0.9529948439795366, 31.73418037518036, 23.126618741765473, 19.170272712194922, 24.18228289602554, 21.01687266073192, 11.79546787134047, 29.326537116392387, 34.32353646947279, 10.852152979373566, 13.480916123336128, 10.822904507645926, 1.0050661474469051, 7.285721310044935, 1.011575033324619, 1.0108240754702127, 13.513453573157806, 1.014976243424273, 0.996659566257686, 7.409257977930427, 0.996659566257686, 5.695446029134647, 9.454592445604067, 5.579914440905009, 4.514954914006704, 5.920371397066981, 13.292159277067995, 7.498223149554265, 9.649635903450816, 8.415063001784546, 5.523119047619042, 11.404517388442551, 16.459108895490473, 33.702513452730855, 41.96827939174687, 9.474470284689431, 27.596687465059176, 6.110448336896832, 13.16504098396789, 11.733097010649287, 23.137517272345054, 27.841498293124886, 26.741109217171715, 6.450372948396629, 5.283967755420625, 8.652681128082442, 34.20704106651308, 4.876998608957933, 15.026623586750608, 3.745074961493364, 3.3994762465193484, 1.7969310248208155, 13.780981570864517, 2.2184992826068304, 1.9710058591504909, 1.5140223762472782, 2.813483891733921, 1.432799671307571, 4.258499782958294, 2.21075144390087, 1.3733257567516166, 1.8986544844848976, 1.5496826635863852, 1.3694467590025994, 10.478933606880881, 11.34870707070707, 12.642233471666598, 7.9425259960778165, 12.63870851460842, 15.340439817215163, 9.586457843258406, 13.618131682423993, 48.688479736187425, 9.35273984146961, 12.626524914473089, 15.010805614908477, 10.970843876841048, 23.21213552611503, 10.542430243627813, 12.827185344908553, 11.73021341039272, 5.699770379000489, 10.741800968197971, 14.192465699608361, 16.078168822043033, 17.728148400464164, 23.617333914830056, 17.102934907007604, 15.180549745456936, 42.10749477690236, 14.951302398709329, 12.462447124888275, 15.066860047601667, 12.111703359470711, 7.584498824930837, 12.904043430743396, 12.82061929232923, 17.604521461821225, 8.504182576590093, 11.456022302177535, 11.020784335568772, 11.213571691409609, 5.9794920418919295, 56.71439913454364, 14.68995415680498, 7.346266793721143, 12.913105132728248, 6.605866305559149, 25.362088794098252, 10.953021494913052, 7.612118325016952, 8.03248281575402, 14.443625362240594, 7.355212227967408, 6.869671146449533, 10.541885390210947, 5.8194305317906885, 10.777269887786895, 17.04420848009291, 7.279165570434773, 13.406703969516977, 7.426808734019915, 9.907547749799415, 10.168016872206278, 5.709903659328264, 11.641242637205595, 26.932349493541068, 22.180730867590746, 22.264108460810515, 9.935230916806985, 12.862982934764675, 15.715520241572177, 20.16788906633114, 16.329423131254508, 7.714011892111158, 6.594601318970886, 14.901196969696965, 16.674677088678344, 8.315899221385612, 8.915080089587061, 7.282869699449662, 7.147608312566197, 6.645307565467628, 10.995874948764135, 6.855027025013083, 15.521779571697495, 5.915179201746967, 11.276585468090436, 14.35010595622128, 10.594604905200462, 5.824836309921373, 31.80602164071722, 8.932254726571227, 1.2315129933175413, 2.679958994708991, 18.28790799489079, 6.826970722889062, 1.3318614821943433, 15.819999999999993, 1.6188526929052833, 2.1585926522830716, 12.266063543819916, 8.557907524734896, 10.959474882516995, 9.862073623353822, 18.602314048873836, 9.822155001394503, 7.54406180894566, 4.799437813221521, 16.577353341696945, 1.5205111335408026, 1.6600373005320814, 1.4591574276029395, 8.539160320013407, 4.662951196129701, 1.1623253019954036, 1.930985753643356, 1.3256483232805423, 1.283673323747705, 7.804969433752519, 7.250992471377212, 10.904999999999989, 1.3157431781298692, 1.144683152479865, 0.8425320236054483, 5.965557050105038, 5.581968586155409, 1.8392185036242754, 1.0132537893455118, 0.8191558636077256, 1.8510500285128615, 7.724255049439972, 7.282175186848784, 0.9480295885356235, 0.760967857034902, 1.8609819250871094, 0.904357325331737, 5.909898040166069, 5.453602990602448, 23.772495874724054, 16.59744311160135, 12.693668075093978, 7.340288728120125, 7.291210035966378, 12.038879492529398, 11.858829396882491, 39.298178766112045, 13.10600168021963, 16.49099369923385, 9.419748911147522, 11.810165280771031, 11.956741803940433, 5.735748962666822, 13.479204137021432, 12.517192630890742, 8.92647571647413, 37.43123781835234, 7.114227492019795, 25.119054218319725, 12.580798333958489, 14.137583829280272, 11.320858806370728, 9.639072656194257, 11.936707000769761, 9.217195746201291, 9.77584578110488, 38.65949582137876, 10.223815967051674, 12.142581614209963, 56.04555893551711, 18.54079375322625, 20.088993914304694, 13.82864904050147, 8.979043811973979, 11.468908458876223, 25.802871016749712, 180.9825568086885, 6.101296688310697, 8.761825361842044, 11.87891601442327, 6.783934650174256, 7.215746053015849, 13.100833865539625, 13.372303376647684, 7.876130261165425, 12.783314189423256, 20.782809768802757, 14.641967918569616, 6.625361959817771, 9.06905540664363, 11.517543644590429, 13.004272268544856, 15.643495117143656, 22.619186362351375, 6.917777129552555, 25.059387484260817, 6.790104714133695, 9.91461493133381, 13.332056822204988, 15.15057458975764, 18.13047946858017, 14.16145529709357, 17.713861007311934, 10.102797917964079, 13.954465709294922, 8.571735192611696, 7.769418455891817, 12.026951902325042, 7.21831665799632, 13.458246898628635, 8.816399742348352, 8.904905164015595, 7.262495761459302, 7.3741384990329015, 5.947068401399592, 10.348925798988615, 8.592216986751696, 6.642030532139068, 6.167063388127718, 8.501030698914123, 6.572136352684134, 23.967217670011152, 6.8762586840906, 6.566611499638761, 15.924358720740663, 4.231436389477771, 4.428768095894741, 6.887155406334468, 9.15922832182992, 22.137024614274615, 8.998919600000248, 13.983380254141625, 8.526097223845305, 8.210266962750767, 7.290378668649057, 13.668040507601347, 12.447295726015199, 5.9553998778998745, 6.71061587729277, 9.094790019255177, 4.731232555410073, 5.966675557013197, 11.972010680477622, 4.0779999223966055, 22.712945404064882, 22.20509699949429, 12.25311097730295, 11.977819125952411, 8.182541352318413, 9.559857581666316, 22.318237548222747, 14.034889816871766, 8.3977447551499, 14.766164281448688, 11.949313193286851, 10.307273642480196, 9.420827811552567, 13.452329832087443, 8.280864535666531, 20.560379675136257, 17.04756146180937, 41.38196601335678, 7.0571620933136305, 4.372046760746967, 8.872167815594668, 10.890450872134362, 12.657213168166255, 14.81810671840505, 44.31356690632743, 6.454027091369181, 8.128942797278297, 27.232676289533774, 6.212323667243805, 7.63817024445514, 12.654837531314547, 12.071009481798484, 4.8595436359313355, 17.215619574592342, 9.428215601638724, 8.248950359535723, 10.516057174148676, 6.87589388511499, 23.222280113234582, 5.506608321159418, 12.920775915518746, 9.800113773133182, 7.913940668073627, 10.89601753364319, 9.44881324066347, 8.467634130751584, 26.252642051679594, 11.089944324467705, 20.475170054264666, 4.987966428706756, 4.363050897186688, 6.995878742415861, 8.293172993716826, 17.428446593389218, 7.105926292236005, 10.776638401941272, 10.97005225805469, 9.895152485510463, 6.264892473069576, 8.030335164106763, 6.086575208985127, 17.298724440541857, 12.836324617194714, 15.031030573410925, 6.396712137187184, 14.338565395485121, 5.436827024504259, 8.978311694806147, 10.619938171712167, 8.434095391877893, 9.7194662868619, 5.453591724317822, 9.600779251265589, 4.0807603533234165, 16.42658125225845, 10.506116003945177, 6.054157331179884, 6.187426027094637, 6.249204759957194, 14.184059515023703, 18.695153976312646, 23.92260606192053, 4.522098359507785, 11.123242898452768, 5.3145270754152945, 7.912813254366686, 5.668958690147181, 4.483772192829837, 3.641391912776852, 8.602068158519783, 11.358358966108964, 4.725736652236646, 5.693072845725929, 14.94789612430053, 5.749379488158895, 2.940614152111758, 2.497453487565711, 2.2157165033741815, 2.0253252497653116, 4.955604905878319, 9.027661512277792, 3.6550000000000025, 0.8480476386998623, 3.7841852632499573, 17.68121759581881, 3.2860805172980663, 4.12204165279165, 6.561262561512566, 2.6663776235153787, 1.7689085838780196, 2.3944260884959343, 2.68856043956044, 1.0808575767958963, 4.866192295714912, 1.3285761825311688, 2.238805133694772, 1.9226127502528436, 2.105567337642912, 1.6004479520003583, 2.0054041424094677, 1.4371029699370932, 1.9215577417974545, 1.3023965152321806, 4.308066057886271, 1.7793609548495177, 5.774999999999992, 2.894999999999996, 1.9325000000000008, 1.4504999999999981, 1.1610970873786415, 1.8414156837882927, 1.0047663494744836, 3.996108196609129, 15.136781011624038, 9.173305856288557, 25.769127142603306, 14.763765762882656, 8.726554389224509, 7.067189052988001, 8.22077130654253, 7.7325207323996645, 15.423378875866987, 8.116651543645624, 9.977361623533142, 9.84869609602446, 7.299915421501547, 5.0895403407974955, 13.813640331617703, 20.508674385947, 16.977934095223404, 6.341188242776426, 7.004975300173089, 12.651480588727358, 10.260411334057226, 5.6143699056913805, 7.4355401822705405, 15.73596210874655, 6.618648241875991, 9.44778001932911, 5.218315083118475, 14.646475720375896, 8.463351663652155, 8.192681260178324, 5.38014069419807, 12.411705566331843, 13.404117078447882, 5.723196269428659, 8.254808894213868, 12.101344791977517, 11.710513107443004, 5.4116401532912155, 33.13054071956593, 9.133268473476855, 6.214723860591404, 7.631950164551208, 10.586268052141238, 11.284491874894838, 35.69997785092072, 8.674442355396549, 7.238159048733384, 7.66718628949102, 12.35659032125246, 17.339432170105344, 7.610582211470712, 11.305576478112197, 28.485527478253783, 35.06110573026734, 32.6027045791689, 12.636567874474126, 8.416267725812071, 5.912103415800921, 18.4673401638803, 11.019282232271728, 15.474405452528721, 26.292933675405298, 20.289484198797403, 10.18859837259503, 7.835117984766176, 4.776678213574277, 6.271431935834305, 10.423471227385841, 11.79020349493542, 15.74102501199912, 14.435459589650977, 14.087083132301345, 6.978774520495257, 5.980703588010667, 4.833073068955142, 19.534280114260795, 7.6344497902945525, 13.06792920037644, 13.47125662655253, 22.54022686221825, 5.426312271062264, 3.6996883588833773, 3.5532329950754535, 3.0883504764266783, 5.94999999999999, 11.236579885879232, 6.377714285714286, 2.832176034686392, 2.590816184138952, 8.648935431536316, 11.764346434815106, 12.180124083493894, 12.840934793893137, 11.480358863358862, 24.03889358671704, 9.532327009842298, 7.280763650571108, 18.92557597468413, 14.366770913770926, 2.9811111111111064, 3.941457702935566, 6.841565656565661, 13.799899153149367, 2.347437123565293, 1.9910000000000012, 4.178636363636366, 2.545872991073724, 3.0436172161172186, 14.912645529676498, 2.2683305737050614, 2.4207011847039306, 1.4968181818181794, 2.23636875049901, 1.1996666666666675, 17.196749613667805, 2.4389744394296664, 2.0925292559630937, 1.0049125173676905, 2.0924239338368227, 1.9173027088636356, 11.85962884349734, 2.0160393757870203, 9.508574008616874, 21.452564675543893, 11.430875244568853, 17.62568229551677, 36.84437631738914, 10.95747428026701, 11.50835958032721, 9.282457025474649, 21.807421312295364, 17.70732488202972, 33.991041971532276, 8.286797689930092, 6.76646617225508, 8.553132548523838, 12.46188486465064, 11.086333111256192, 17.515819611523472, 15.908069134525082, 16.91259395974142, 13.356835360514483, 21.086999459203255, 6.543300530201449, 21.393478022267956, 6.909415308609889, 7.756818369456049, 11.347724632878366, 37.324621087832746, 7.070332418400259, 9.717147455523612, 17.70724872919387, 8.053205045664637, 9.851709426007524, 8.297400657616006, 14.569121098658764, 7.594758289180671, 6.447995172101054, 8.589775399865843, 6.912592253107444, 18.376895855529504, 10.528255215229239, 17.804690904791126, 6.602413555148573, 9.670657787384348, 8.417110318567842, 8.01904452560052, 6.542043570310167, 8.499285644207443, 11.961148406557246, 32.73423098068065, 18.264103739141216, 6.184695520964508, 8.043825587028538, 16.576416389861294, 7.351632109152231, 10.737562505675452, 9.753683278849396, 9.897755560035785, 31.463126733927858, 14.762390236679442, 9.628954468296804, 6.096271889167021, 18.666225109567705, 6.570006637069742, 7.586511536905799, 17.219548239495587, 5.868234196671882, 22.122176948642622, 18.99556069619289, 7.695555905205221, 9.202496773489386, 8.913655016157698, 6.354024572433797, 6.978747826149337, 8.855672102738863, 23.792190570664406, 21.301972705224966, 6.690201027666149, 23.575566392525246, 17.944004894553224, 22.94827478147792, 19.786260388504108, 16.835224745812837, 8.582082457764475, 22.69117705881371, 23.12247079711276, 10.18060525554045, 5.183055359802761, 4.532801795193107, 7.360942036892573, 4.54621177356854, 10.188853514193793, 7.553386158213554, 18.562229649619624, 13.017299020858848, 25.418560936401917, 10.79943491702932, 38.10811911695932, 22.149770388746575, 8.297845892142606, 12.507031405123643, 10.690161017701218, 28.042548589407733, 11.145417468089239, 4.574633146258007, 6.353785540989745, 9.585637720050755, 16.485807681873514, 11.83112991879084, 5.356530564350489, 4.6843329185104645, 4.250206455379101, 8.349528745166092, 7.636529539095805, 10.795786376093082, 11.26386285028871, 10.085772673990434, 10.913120136824682, 6.684367746481439, 7.136688540539338, 17.8475491006229, 3.8984931062747994, 3.6135796186713995, 3.8555245234880724, 7.233049000664044, 3.3067479593797344, 3.5639111232425082, 3.6224344029993127, 3.01498121992654, 3.0494214429308486, 2.8610463883439166, 12.993447732822736, 2.810299854538931, 2.9070068152844812, 11.668434052426166, 8.292056002088957, 4.083937337872839, 15.2006929147257, 7.133047697219125, 16.683948350949063, 8.190552548062865, 15.3261811641889, 7.092443469002854, 6.673302238521932, 9.194777078646219, 10.356417986865193, 7.623149433597165, 4.696772978569169, 6.102664204328861, 6.228383878838032, 5.095761519326567, 10.474668228429485, 9.6122299450215, 17.79280168194345, 14.353860464690314, 3.8845320585250684, 14.582875627494003, 5.8667316597431425, 6.695883510042053, 4.460397400813121, 5.309708217244453, 14.112333211828236, 4.454023809523807, 1.7209434364209812, 7.501069927363656, 3.05964727747201, 2.231378187397309, 2.5431320491547384, 8.559906744458777, 6.383738156205445, 8.619651911511994, 7.624509039607413, 33.80794171082916, 9.851030505353668, 10.24045260587055, 6.377835168813295, 8.657103574993737, 10.230835312970683, 8.278184538435854, 15.000794976952509, 26.99597474203567, 6.878866403778402, 12.65544374421609, 28.90349935943891, 17.630297953722533, 6.248574617058403, 10.731499367195468, 6.576691363736465, 5.9328058542357125, 29.496832613139055, 8.250169751378175, 6.297976861827701, 6.111229375109799, 6.308094230795693, 9.26111999629297, 9.500832889659387, 5.7550226455483, 11.236804368945235, 8.633726686418159, 14.169335768475886, 6.937682883337695, 11.400539906767104, 9.75142525057871, 8.068621295661622, 9.336237007739188, 8.654281591779887, 6.243440146201102, 7.410023115439904, 15.19616125541125, 8.620031031555852, 5.279657443828585, 9.646077703272157, 8.349166580917336, 6.471181818181824, 5.58326937031252, 9.601379768425003, 6.888843888686911, 8.613500737451977, 7.549204932314923, 9.47740650863462, 12.529583333333342, 15.049434005802656, 5.208561720407792, 9.240626815879278, 11.86314863511695, 6.622361664364129, 12.328611405164038, 4.6841319979455545, 2.0753041081116934, 1.7667315835807766, 3.4333325311883867, 4.066464927971371, 2.602324175824177, 10.1296350209826, 3.6093971951896666, 6.324147667127754, 8.060816184212262, 13.50932923772135, 15.604202270381842, 5.693356227106221, 2.0000000000000013, 18.633877079944586, 7.5522787051472395, 1.219566148527356, 2.1400451733110866, 0.9912835873577488, 2.8346126717261866, 1.5565652740276128, 2.726849247605899, 2.4494587877759524, 1.3665793457040114, 3.5140895023827596, 1.0684437445592712, 1.3012180860486338, 4.236669184186701, 0.9971325024052778, 1.3111347400700004, 0.9368538844029584, 3.9937612467005144, 2.467940878207274, 3.398511509239516, 2.498924366138273, 1.6211580392436031, 3.517219775274675, 0.9623241266824347, 1.4245386849340758, 4.354576708523679, 0.944635696126249, 5.909020202020203, 9.119999999999994, 4.020610933082907, 6.812669238905441, 8.723590524832693, 12.776180226938799, 8.104408166432988, 7.267930989327815, 10.284980153119365, 26.06467693158475, 11.626460009746335, 12.667067648804334, 9.248669178955524, 16.234247064484613, 27.867679222945576, 7.277121003002296, 34.871195146765004, 8.595432306714894, 13.850441173900641, 8.052987397970467, 7.334885224697135, 4.339423350272662, 8.778586704722054, 7.884190740795349, 5.627314429947791, 5.068789259416521, 18.74713172353898, 11.769643893290844, 12.663629726265077, 11.320225998079126, 12.899885551533469, 30.279074130247118, 32.99648169934642, 22.993628154294708, 26.5824482412975, 7.575868337696808, 5.9725125482592825, 20.322052087224836, 8.004834246688866, 10.049146294468946, 10.091925988984205, 15.447615463916211, 7.234857261332721, 9.528379756598556, 20.756068812047744, 10.62250171175205, 9.361374897060749, 5.719047267652582, 169.5790175438597, 7.740466789492054, 15.179659228059293, 8.62040445620497, 5.055436164285702, 24.910863142549506, 13.911141040452963, 14.955275846742996, 5.439272489635966, 17.095496717734562, 13.954592288287904, 9.641495559855526, 16.44962043629882, 32.4586463742135, 4.955569031901872, 11.520149517328795, 12.420469988652737, 19.127264644600668, 14.486158651311706, 18.346018284844455, 10.10486218500212, 10.38263651372912, 12.842028614383485, 6.633485509658847, 23.43487567014159, 16.876727241667716, 19.124946440207662, 10.201100406166434, 18.929055023428774, 10.717727141946236, 16.66135867280753, 5.632800359416001, 11.608564885857549, 7.486091220422492, 9.8693816042649, 7.7048210115296145, 5.304883938613756, 11.884402204879269, 4.823050161127715, 5.3043386086344615, 9.711096062720852, 9.077079823974987, 9.51887552759523, 28.166928291228142, 5.362804991217006, 5.09348218961488, 6.9518550275329005, 5.623881745091006, 7.358864164967655, 7.061304083651485, 10.22716438209695, 5.590383081514885, 19.222769909078384, 5.925293076972356, 7.263163238322194, 12.23818984126581, 8.98910656861015, 9.249962701584984, 9.042781610165344, 9.396497383201131, 6.422211046471483, 4.663843017511887, 6.381670647972469, 10.682653025521885, 6.023147816887465, 10.454872088773435, 6.835593422833074, 19.376181149452986, 6.504879293833486, 14.896689195111511, 23.33951632265734, 6.985246515949638, 8.384601748759756, 10.754712923141337, 9.613310401941746, 11.071776245579949, 10.543305095961829, 18.709706907787552, 14.988187982375994, 12.07252631092087, 2.4851953467119183, 31.163410015018265, 13.107781143306294, 2.1055192829480385, 11.713160296769093, 13.714121496399153, 10.489999999999998, 13.948628549786513, 7.556466354975901, 1.910828900487617, 4.197942475878274, 17.91858145723743, 2.1515119348013036, 12.908987955940168, 15.37803552885486, 1.5049989420080403, 7.356786283161277, 16.262052904380134, 10.80983073081638, 9.428523145746794, 9.940534180301979, 4.57833333333333, 7.560422533349002, 5.398782873148676, 1.5809990453818223, 8.97572966497781, 9.933022518495795, 1.338711978752055, 4.280781610266481, 4.829751953375635, 3.7827687142435593, 18.796974958949097, 7.619462318807719, 8.329757575757577, 6.445674255055621, 3.570894096991985, 1.654516082673085, 11.192477060429503, 5.938803509756304, 1.4347003157219222, 4.207443924762071, 5.985091576619338, 4.568872549019606, 13.271238095238111, 7.0602180386663145, 12.956153846153837, 12.572908818713715, 11.19818236425992, 7.662345422650591, 22.462550607697175, 5.749124250839707, 14.748066962344831, 36.926568233316225, 16.800931396177138, 9.77928476147765, 22.449159712343626, 11.232733881045174, 9.020993991398988, 15.713307401331564, 17.579980105124317, 26.697581038218992, 8.51404613214475, 6.438445351781923, 21.54248125545025, 18.218163668212114, 8.227966101676124, 21.891083397439395, 5.982322383887943, 7.352045286531772, 20.46649352472384, 11.393490585513934, 5.152677992356305, 36.32259404261136, 9.976073039383099, 8.530964374104526, 14.689039250550332, 13.01107052937015, 13.904201175978855, 6.874346762912311, 5.700486999147892, 11.251651011051617, 6.854471312267238, 6.338923491940402, 11.037279295038234, 13.983823592616254, 12.517301728767459, 8.230771581995096, 16.929348226904963, 4.3109768300328914, 8.078904589591541, 4.801812812088941, 9.355025186341773, 14.842521711885043, 5.145808051535352, 5.415686478297753, 7.49337161482619, 5.107383838401341, 5.101639078273275, 8.618964047922729, 10.880244460599615, 6.577112013465215, 4.532501473123066, 13.273268087455175, 5.357280408164965, 7.604798551768908, 6.725441651455861, 14.875814896179266, 14.78074309504367, 18.623540435971307, 14.672815967437142, 16.56341009925747, 9.239550299068487, 9.335636478625123, 10.361800495994604, 11.371027040331205, 10.980188937951981, 7.3149092133963345, 9.132921479253707, 6.2419373893845025, 8.275819370814977, 8.53742897268321, 6.55096244666536, 7.757044431981772, 5.575749288504826, 6.4181669043754415, 5.6627161636290255, 6.03812640885157, 5.12812056094929, 6.517963193728795, 5.937629871052503, 4.41811995892527, 4.981339411431388, 5.056023067328601, 4.198298516217178, 15.866758150986444, 4.475382334625151, 4.743183267910339, 9.258685698027367, 6.450249516062447, 5.533300493220226, 13.63379787832325, 9.200417100643946, 6.084099367143544, 6.701353088672744, 11.26121829085309, 5.164527759490797, 5.109033496649392, 7.974143157619374, 4.645838172751554, 5.690035984080689, 23.09629212231959, 10.275066064103264, 11.505831157963126, 2.783925598937501, 5.623251372906096, 8.633957332212818, 3.968354674307569, 6.48829495703361, 7.918232579887456, 9.784409783236308, 5.667395957245646, 6.189573210745179, 2.8733253268564964, 6.021786354326675, 12.696971500721505, 16.489928300729773, 15.183534133604711, 41.611041844712126, 12.429679090345514, 12.230605873295861, 14.191148422866176, 8.480960733428377, 11.60613735530176, 13.330608160925927, 11.748346606151644, 5.738335629255058, 22.743830717945013, 6.178034055436292, 41.400039253967556, 53.66065898461756, 70.95619520593651, 44.559862154526165, 45.23678575050709, 21.299026257370155, 7.1894214325324475, 9.704788429976231, 6.547328175771124, 5.582541683104852, 18.302542099803674, 167.71200746965468, 8.433992091507916, 5.945571354627371, 10.040191917653294, 9.097666474997748, 30.987578991772022, 6.160199299905887, 5.120993382850251, 15.22172778651788, 6.884275366100314, 5.843040026557467, 9.330000125648887, 6.259061919354404, 5.315805484663967, 13.242743465830372, 21.685203347750676, 14.338426626951703, 7.573702729374941, 6.260718543922484, 11.113780468882434, 6.0962022983436, 8.667754953404812, 5.6916100996245405, 8.389544954802039, 7.291736981327285, 12.41359264731847, 3.9371035287408933, 10.146304567313912, 17.78933126466492, 8.45440358915145, 5.233436490197918, 7.159977051074606, 8.957131616743258, 4.95480171894381, 4.913772826681673, 4.615022849137175, 10.770022091437147, 9.575794590965247, 7.723103002283248, 11.862407982979263, 7.777699746405494, 12.552273160496426, 15.845507360908018, 13.19135209447192, 37.63984132458915, 8.910555547425412, 7.63974460011164, 5.258033843962162, 27.795957890390397, 6.372743869898959, 5.196570304225371, 16.913718600967993, 11.603993747292602, 5.419383694343092, 7.120426062776444, 5.73175244534996, 10.285720892361041, 13.46836176397692, 7.704002379252475, 26.683509331548816, 9.490236225218649, 18.619952256019502, 52.88997108191936, 28.48749936191104, 57.79837390215028, 28.671180544945244, 23.143804898932302, 5.381687778421392, 3.229918627126736, 2.024042353963638, 7.614357475656025, 3.110451134051778, 4.912278080313405, 3.2433969297700744, 1.851696784594836, 5.037557004629338, 8.999889086114871, 16.818224855918942, 1.993990744756215, 10.168980305212507, 9.518048463723934, 1.6189545843349302, 5.591023200580956, 2.760793680655093, 9.152871555429904, 3.5129036225752137, 1.359456787970062, 3.7931155097262295, 5.473491380083567, 3.0017882039705572, 1.998867431144395, 2.8365796172037, 2.6426935472407234, 8.270706951935267, 7.82818558563891, 2.7211159101816054, 1.079265767890602, 5.323572552813698, 7.382855093699112, 7.429514269065404, 4.236440674460824, 2.2859090307468657, 1.1156284069924605, 4.3122223303317275, 6.1242975978270096, 0.9590917186906874, 7.271026690518274, 17.111841269841275, 2.1663684941199506, 1.7642182373894886, 0.8820782488439947, 3.577694444444446, 3.46564167351781, 0.851379153335151, 2.5863483365949103, 1.8381588020329018, 3.2242666666666686, 4.03565277002681, 3.320230301105643, 2.0245827555529052, 1.7985913806778622, 6.492983377556906, 1.3391051844750381, 6.550565857709081, 7.511192980489227, 21.271017678164654, 9.960459071649607, 5.635327350980949, 6.5792231480262195, 12.225398030554238, 7.23144304401316, 13.85661810375354, 13.267752914815494, 10.710619172939497, 7.129247023704163, 14.42875685984467, 9.218578905804986, 5.999261061821078, 6.708107523529279, 10.03997334858824, 7.1572668775115895, 16.287366013230915, 6.8679722426952114, 12.62852369701326, 7.619172100121367, 10.107538732413587, 15.639391890535666, 14.179184650185992, 8.008559149639224, 7.578848352225508, 9.126013931539926, 10.63517046971326, 9.168468874215751, 7.104288225860554, 6.287679491197369, 5.215043184072159, 21.920076053647993, 6.607650762740127, 4.436111191262302, 7.425721513086364, 5.603893972733182, 10.596921764551944, 5.0441726597023155, 24.44512639900699, 4.277235294102018, 9.728553819585274, 6.110427341155391, 7.456770231655718, 5.590920420425098, 5.466956554163294, 9.206571010045595, 9.841322351397807, 20.284510120843088, 13.531488054197883, 4.638196202295079, 6.099779461185651, 20.112849334821572, 9.860386990918995, 4.564890471364061, 13.32940466461222, 9.014571947482628, 4.666325645341869, 5.187441140677924, 7.332652366817342, 8.734958263962906, 5.420620076577967, 7.63769296250151, 6.425509400047916, 5.882782634906421, 9.581908694151021, 7.651941874519256, 14.11352061620258, 7.373305900228924, 5.716787701897023, 7.131122820274349, 6.165760858945727, 16.817708826358825, 9.010733617077268, 5.73252218013411, 6.926886860925194, 20.69969945697576, 8.945267757164093, 8.180924339549337, 3.601216392395823, 7.334277040653785, 6.607876248529296, 1.2564370336941015, 6.304974515780387, 3.2817249886777655, 8.181069867930447, 6.707792169755086, 8.135806004298884, 3.3807376715440287, 4.24461880767093, 9.848286652537759, 1.1469060863422005, 4.137507009144462, 2.9173053235259903, 3.5706254758204197, 4.198171860090595, 2.7292777897190343, 9.80255330330331, 10.332395905213502, 40.022613141558175, 7.184391683694597, 8.563608758218326, 7.141519720455057, 21.551770024254687, 5.326671538655241, 11.610693718422807, 6.825296683044609, 8.24493837237972, 6.531609324009323, 23.269452380952362, 10.393895128082567, 6.178313916028932, 7.40985192585193, 2.971937766118082, 14.978984848484842, 8.214493462226859, 4.556522940516736, 4.061147968367015, 21.827523809523804, 3.754389080000841, 5.818317280758458, 4.634954186613354, 5.199969073193626, 20.05947596779637, 14.800869047619047, 3.1731280419293566, 8.551285901929884, 13.633273809523809, 7.055904364177999, 12.485658730158725, 16.262290452745823, 4.543796098582951, 6.828238967358807, 19.72983333333334, 9.804343650014431, 8.474991427180633, 12.144382760212265, 6.778560222822424, 7.214256700528151, 11.104648874771932, 28.48272877253308, 6.64209996100313, 10.936644984658159, 8.240347753029683, 13.177912622725344, 5.629310770223021, 5.8342417860728535, 14.16113930430928, 9.549059860676465, 20.840886283736733, 6.315193015428528, 5.17653595283868, 14.905716545730591, 6.083457044368166, 5.422995634017306, 10.487616177031454, 9.694444768914355, 25.063450083746535, 23.760608787720084, 9.788645125808115, 12.425960095674604, 9.902465180487944, 5.5172020366012315, 11.108201010532165, 13.78929866191572, 8.711195918085998, 9.324227951508565, 7.5412762564160625, 15.444905478093355, 14.57529633828912, 8.224082638903486, 21.26151002122774, 11.56318448493262, 16.7518753000946, 21.298629831533425, 9.915738557063214, 7.659782370335707, 7.674401566688261, 23.24633874806736, 7.680008293298091, 11.93645721962922, 10.20286500099306, 9.087762294933208, 8.350137555433811, 5.5984550889874765, 11.580182856669554, 6.803489220384097, 4.794777253902561, 10.491721919186025, 9.490293550554663, 7.997662727182262, 15.067080684673874, 10.012627222491513, 7.642008617081111, 14.330345312094321, 8.018818857760952, 10.244069875794139, 7.2365756391128295, 10.956208939975214, 13.140541988829796, 7.027517396934523, 10.794596747629846, 6.876207180556908, 9.903927897133368, 9.895592608088897, 17.451998651863164, 8.984094400349706, 8.011820216601809, 11.410773072278765, 2.132079396417198, 5.701638301962775, 10.799901834987939, 4.809254701547463, 10.21794849345409, 10.139760677300046, 4.428071319610493, 7.329526820345531, 22.656152288167018, 9.120342533272984, 3.717996021544667, 7.30465564801128, 5.153756525151262, 15.02896195625939, 10.90850104537463, 6.650369876684233, 8.151220396315871, 17.22659720336424, 13.283539359189781, 12.015881900917618, 10.590354414436902, 5.585479529290055, 10.356864144046082, 9.476275247451802, 2.713093974269389, 7.350085528398733, 8.751046896099332, 6.44770443108653, 7.126145542406689, 6.278071479885384, 2.3204549478626797, 7.58098949254046, 6.349034227830024, 10.375889930562572, 5.345524412755648, 4.848805309794623, 1.8823784730301043, 4.999115297527821, 4.279036347017509, 5.770062065691933, 4.145431510880027, 3.8641850074153203, 1.627666239589116, 4.0253214119326675, 5.171446846756604, 5.053542566295214, 6.830859315752386, 3.4246208768897843, 1.2847139134277228, 3.5365084068658756, 7.074799856309, 4.601656668414506, 3.3094927233179225, 4.216430501487308, 13.805972228676, 7.062810676666099, 9.414113967599498, 5.719786764482382, 13.44268634735589, 9.068606334914863, 28.25433162300206, 7.530178616079311, 17.578907705445957, 7.871806337829766, 6.025404352435461, 5.711395317742683, 7.541437485305778, 7.5385921906189175, 6.798201587396214, 7.594834319613782, 7.144509438509646, 6.025612753309718, 69.73185541754353, 71.26090554186992, 56.562189568256635, 32.276684886392296, 28.431164528333504, 13.281904945252709, 12.164671323957656, 8.603846334918444, 5.819867843188194, 10.506560185183144, 20.42886116370878, 6.5057412602702644, 8.9567813129554, 9.904009048246952, 17.28605909273622, 26.037448059107824, 5.789512466416196, 8.885484184876654, 10.385939600641715, 9.89269717498774, 22.67062075503305, 5.637294403799072, 11.427639534641862, 7.098951778185018, 24.631312451942758, 6.761135018084243, 7.637847053332772, 55.42082785775766, 11.5207028745584, 22.43250342625224, 6.109354648700006, 12.010352777390557, 5.831661945676182, 18.777249217948853, 9.899627135131409, 12.336584335092626, 6.2215473487794775, 5.370389707331727, 6.6484349345510525, 5.272133503232331, 8.561644020547039, 6.591583084735985, 11.914920474088172, 6.3700575696941995, 7.104132977948303, 7.239938556841704, 6.24911583972129, 14.686228727238685, 5.515065563782337, 4.648505502117114, 8.967724081309811, 4.944053500289756, 4.821518572658303, 5.292498720085185, 9.92271156592692, 6.599535357202323, 8.636254606851844, 8.214676548372525, 7.555334257257515, 4.561051045676849, 4.299307840812057, 3.2487432636522824, 4.060591265746189, 4.722668294709034, 3.1308853144005755, 10.740801278033107, 3.5905497442311587, 3.1822148204347913, 3.462082471635332, 8.159912825615187, 2.50636418153036, 2.766558742903572, 5.776133253658636, 2.6685953906495614, 5.062219981876959, 2.2548301763736496, 4.777165499251212, 5.090659635671366, 2.7407785661761728, 5.833020228745429, 6.612088661185529, 5.115827146085677, 3.102345820114629, 5.382466372786258, 3.8071378006572703, 2.0954957256821096, 5.7269257550677635, 5.827550676911902, 5.188963885290612, 3.6430744756045006, 4.399445039327679, 2.2750769962324218, 2.328110396606602, 10.218613794082033, 7.408254205550546, 5.402413328572535, 3.439716907293191, 4.180681181563535, 2.8040002045645456, 2.783932660133061, 4.587319612184144, 7.288533346955048, 3.5760239225594153, 1.7565531366971048, 2.452610709551491, 2.268221171629144, 1.5570906431882783, 5.233994343828577, 10.852905256464714, 6.4342866340530795, 7.553448853176555, 3.3496634199134196, 14.171627545741389, 4.6309328522881, 24.003827956303898, 8.95275935502112, 15.165839623340169, 12.759283280398773, 36.65910303409184, 24.77353254388714, 4.622428718190056, 11.109557737660387, 19.660808638926362, 12.821130978847021, 6.100994257261718, 13.155799803435896, 7.858492006851243, 7.760165461310355, 15.071647349430812, 9.989024123305244, 5.365635321167172, 9.520582081312988, 8.730620524269936, 8.093584204080608, 11.014011945890518, 4.3166453129220965, 21.23400868003503, 34.77647037358452, 30.59094264989095, 23.151256371599118, 40.60075144669198, 19.499098759676606, 4.913285683449075, 20.362950950448848, 4.4923328912483, 8.225960664956249, 18.363179280192863, 11.156735205724896, 25.433862404362834, 12.902703859380598, 16.45333904853114, 9.64800504803738, 20.502771860589824, 8.814477861440851, 15.57837002999013, 13.744042969360223, 14.693750326946612, 4.407877294636769, 11.606397861677266, 16.528473355847154, 25.08402188090535, 19.34263916148175, 7.389303088455874, 5.498142089140075, 5.087045293023595, 4.044728135287111, 5.302289137407386, 14.680858658244182, 4.107581699743906, 4.600160316933593, 11.764179999892702, 8.485005842229164, 7.7292305543125455, 4.6160005052573245, 181.53555555555562, 4.818772687242227, 8.57740363716283, 28.75213696324792, 5.8155580372935, 9.504648097490776, 18.79896277677915, 6.18138938131895, 11.476887088105638, 6.097943025998387, 4.023626926626025, 4.476407355660779, 17.769478666388217, 6.621305372339423, 17.89253296241203, 3.8947563773919662, 4.867885663310377, 15.367658379001414, 4.426852419480644, 11.364974335585758, 39.258487819488025, 5.83435926666747, 12.43626683838033, 17.10573278656928, 3.9071446293174636, 3.6265773102743504, 16.30092183127922, 4.635517290509161, 3.282516357162191, 6.422200245435246, 12.799308773171692, 17.817502506355083, 10.503261772991193, 17.781685544714435, 7.54595736917479, 4.761277240491276, 3.7941225701508623, 9.603461165925093, 8.300487304876322, 5.522018386209546, 4.267560308367401, 5.36902404568602, 4.465979380310985, 16.08017812857003, 6.1496446255491435, 7.023965443569442, 6.959041151794746, 2.9679060476742625, 4.361502873166984, 6.95210084529789, 18.009090857126843, 9.063083665021098, 5.247228992109215, 4.817669056963745, 35.987727283329356, 6.730025946483744, 9.292057075085776, 3.8442583803743324, 6.460063763733612, 6.182817362444349, 17.294867451777428, 7.56145715159314, 3.4442344054894956, 4.911568476142524, 9.970703797795162, 3.6646474316719146, 4.269361679678415, 6.1975044952882445, 6.44095532652872, 8.587562996732329, 30.145230630480622, 24.735738666573283, 13.265103335140235, 5.572727125920672, 15.630263789105324, 11.32182099498316, 23.270118065764372, 49.897186617304264, 21.153210554956377, 31.085890135162103, 7.208935032342443, 12.5526167339272, 12.883423289737651, 18.643746203910613, 8.542818824283021, 29.46537509832423, 15.511131699727658, 8.393653388410872, 33.79417220586014, 8.791144358553819, 15.970524377232596, 18.78818959410153, 6.725434191343424, 10.712654101620327, 6.316040349584967, 11.024150141978247, 20.434015967857647, 4.739752994464972, 9.581232946768438, 9.382068200985955, 12.436598977353624, 11.556730044554794, 5.411785089897249, 14.087233806989893, 9.169374611156863, 5.7270060177572315, 9.59690401856593, 6.273811139479868, 6.073835922030636, 16.79355616303489, 10.660580085006016, 11.309450657114288, 8.083510713319598, 15.152068337390942, 7.9816995084893, 7.729462720693473, 6.384288370940956, 14.604181713514162, 7.914770063645139, 13.874081173424933, 3.1910726409665857, 38.21837161531278, 6.148488325098923, 2.8741504814013843, 3.6208692600557346, 28.297380570625904, 8.806912946468948, 5.2017035894752155, 10.860560730380156, 4.009166773209791, 5.167442016812408, 15.481394834958449, 6.056114780604548, 3.052090818031354, 3.137395506730824, 4.122054399179749, 9.604330134359978, 6.520841522171524, 2.9040897277278037, 9.702985706034427, 6.5967370789614845, 2.7242191183050752, 6.309113747781694, 8.744891792237317, 5.414186638562849, 2.2538274106251035, 3.3048844312701147, 3.946746023565528, 3.6106925726586514, 3.148781729883571, 3.6417609549648637, 4.256350089524002, 4.180165585070654, 2.9540970333012826, 2.8063561882468697, 2.9806801333104045, 2.8869436771217503, 2.395024702078488, 1.9953017199617828, 2.051450829506407, 2.225940700573051, 4.35617796951976, 1.7226057879654655, 1.908092615522604, 1.7997273418310962, 2.66558082581861, 13.129401547384214, 1.443104350526821, 1.3745749950845016, 9.787379713281881, 1.308355367631344, 1.2840900533416706, 1.6914100668554073, 1.22799618905713, 1.2138399714680597, 2.2224664451817193, 16.936905457498717, 1.5604992824118018, 1.1867728629757628, 6.892486657464917, 1.4157628238652777, 1.1344855153424342, 1.5727051825354603, 1.7795118176992066, 1.1306433783396712, 1.5181439426090932, 1.4599585882200417, 4.365934387034105, 1.1585375301310774, 8.195114443573155, 1.1149868510742937, 2.3183252707995616, 5.355579861723243, 1.3108128836013988, 4.65397983959526, 1.8438397392708514, 4.961632485359516, 1.6170806418879764, 1.9893016045402414, 2.982663903566374, 1.521496220058828, 1.5630806881970065, 4.259904631702383, 2.8372910771942346, 1.3535776086176043, 3.340000000000002, 18.771701659451658, 4.59048380893915, 10.452256335475017, 4.806758579575216, 14.997696813056605, 18.229546809309202, 7.4918249065453555, 11.1188510134853, 4.455954711021868, 13.154018321560892, 25.17621613659958, 11.40625635207502, 10.525146010799299, 9.217143650173, 8.93513006461676, 8.718343526876215, 5.131168425210141, 13.219782882681528, 7.4450664622822105, 10.86618768107976, 5.861611755266879, 4.527213583272224, 15.975329742898637, 7.841038482411999, 3.903215720150246, 3.453681368090777, 10.308549802799593, 21.728176037135086, 13.578086413338214, 9.692895682820934, 5.610519843930981, 13.380924297449464, 8.375679808145279, 4.051988869075818, 15.182274592575148, 10.3034312880087, 8.30394963426996, 9.946690206435477, 9.201934416655767, 13.905686630866004, 12.654498158910291, 9.724719046490124, 7.87792337453512, 11.85827565153211, 12.438063009058366, 6.230016685401587, 7.69011655011662, 18.189075439625373, 7.500376581601705, 3.262344596587958, 9.197569978190225, 16.6724801073322, 13.574858080933385, 7.658175003894835, 10.743666529740244, 29.10812555517162, 15.157681701018006, 11.907223862102018, 10.226989354029257, 10.441126059445747, 3.3916962170630205, 17.64931681071201, 40.35767864251257, 56.339674094397786, 37.82469585480929, 27.05886992043756, 26.07839830783253, 17.248180203240704, 10.809237919620333, 2.871057977234632, 12.229015854633666, 43.8389841101563, 11.23965098790099, 8.128628979085326, 9.941069945641809, 10.990188169667666, 7.133745499186806, 8.125377988239832, 18.30434029579563, 23.191935195295667, 8.812221735973852, 14.772656520143942, 11.685282605583028, 10.761358339777232, 17.349314149139772, 8.62039752163555, 9.994440703553774, 8.848954050309331, 4.617399980322515, 14.057557983864603, 8.902804860414657, 8.996727428459874, 5.89164261471753, 14.887701389569607, 5.909859776015726, 5.1498952466536405, 11.53309195532743, 24.775948705651484, 10.474698167551006, 10.267223970162469, 8.959884032722963, 9.899621140933796, 9.709642039879157, 18.070940026679835, 15.144357264792424, 5.418505251454563, 7.096322188558108, 22.552616137920314, 4.806880028329342, 9.146282945716004, 11.529080919045988, 8.368385319801737, 7.630417144822308, 30.808036253467765, 11.241109000736794, 8.648825335753676, 12.611016699337046, 11.852450447005372, 8.04920714703299, 8.70884309602332, 7.388926284844245, 11.247671795413334, 8.863405491555506, 6.656801639732145, 7.241700405986191, 22.475259903262288, 6.961039794455407, 5.823166454741345, 3.8146235709569627, 5.809500101553023, 9.020549299611048, 3.699288621769647, 8.63089966962821, 7.964379388535887, 4.745855825948188, 4.700064137218269, 11.43949652983212, 3.6903015553752923, 14.77170440965062, 15.387397636697242, 11.038353882642795, 14.05712398817362, 9.089928534276588, 21.657492348040883, 8.97634448803931, 7.290598587293488, 18.08974469985275, 6.322063529577529, 11.4990947925277, 15.468394402043483, 14.638256660305146, 9.674598930765358, 10.991313695181455, 13.433803532302141, 9.511176608483318, 22.062535236541482, 7.330403852911868, 7.100914436841544, 14.74752909883692, 8.58392343815394, 10.478358930431428, 10.46313654701747, 6.6034010752097965, 10.870452606688907, 10.943449195727814, 8.447977494195774, 12.689791471591986, 8.371660906529709, 4.747314356481977, 5.298110095260533, 6.914880752122063, 6.503686919805759, 14.24168279483076, 6.484032448572616, 10.612630512508263, 6.962997641437676, 4.909476274898618, 3.8491344382066677, 16.253506699821916, 19.489400196612443, 11.158762263646198, 5.079549887757641, 6.08461863030262, 6.970489633225376, 3.6727772059225314, 7.271180528924823, 5.292125963302353, 2.845010144559267, 5.751357705204894, 20.81475266762223, 30.98177105196143, 3.368831336371174, 6.358058455533732, 7.290528420698208, 5.795819699392866, 12.33464285714285, 5.682098519197355, 4.936548083685401, 12.797680480739304, 11.315629891864488, 7.483916982251137, 8.045925423513443, 7.011606723123255, 17.93979120320045, 10.928923410265602, 4.574931784937476, 7.80935397669706, 18.658615079365067, 9.589403663246305, 7.862300065646971, 6.89530548906252, 6.153411965725089, 5.777547370967876, 23.012173268429496, 17.964830341250778, 15.314075809330072, 15.279617987085347, 5.796520197501803, 8.360375472067775, 13.68730965200369, 9.811793862692419, 9.110809814658692, 13.059826089539923, 13.927032956618085, 11.991167534930446, 20.146452694879436, 36.18588135030573, 11.749573205754158, 25.251543340882495, 5.252376268314221, 18.379403285126063, 11.159071088040454, 5.149674317729189, 7.826789673905207, 6.976370949503522, 36.233569555079484, 21.98342672733882, 5.996670588041931, 23.28087551793901, 17.01739794705618, 13.969886987337752, 11.804918552329134, 3.999783766088679, 3.7019483431161024, 18.45510380227663, 7.196263089530596, 9.797325118533909, 8.626053190105461, 12.542793144093313, 16.02487252023428, 55.72663455576464, 6.165100606709687, 14.925925012040693, 4.356768615275296, 5.19231124460907, 24.069678565784624, 8.879957607072718, 6.59005759646033, 3.6074426506215014, 12.563428700636234, 12.937199219548518, 4.290675473289347, 3.4410441470065964, 3.5084481732181154, 3.222792590256687, 9.390429981384655, 5.577623432017288, 4.533915126467342, 10.317875754359452, 8.5791518858494, 4.187512612616065, 4.484566979504624, 4.816209401811706, 7.090664261632885, 4.128148813618696, 4.212589440149441, 5.680452746024246, 3.5753919722262237, 2.5669539625453943, 2.121704905111291, 4.24827001194743, 4.270286903897745, 3.4428665419412696, 4.106328339575756, 7.210720905221198, 4.202215015885603, 5.049265385049362, 8.34484255025003, 3.7751295655813784, 2.8417376944160626, 14.088868025356998, 7.241588197749961, 9.764532488159855, 1.5939674548540765, 3.264732192359415, 4.1561126855600525, 19.305982259570484, 14.77584213649636, 5.70111172367364, 11.470199495961948, 3.9130484657668143, 2.36465532484297, 2.4332400432900423, 9.674352707749767, 8.99861035708899, 12.614830810345241, 5.649269460540484, 14.844166517236978, 1.6481532150819354, 1.3419157306335783, 6.054034662453236, 8.695559973686398, 4.551479685190895, 4.7258952414889075, 1.9869558823529425, 2.8017445390866453, 4.071938084940682, 4.559238095238098, 6.28648809523809, 8.571533228738328, 9.351042066602073, 23.926472605937708, 6.108338056104581, 4.384695340201269, 14.395848879532455, 19.13674988993558, 8.65902900718964, 13.293210933729807, 12.05785450967042, 30.152559536148996, 13.231582951673843, 13.001939380048716, 7.855876671489433, 10.671965236680935, 14.365627268315782, 34.192903737540966, 6.963998972216899, 12.205337561524598, 17.89839042945114, 5.198646726064298, 11.816178132891581, 10.423856698903753, 9.650279287905027, 5.296896822558803, 6.906925865979049, 9.009362340717223, 12.079188409533128, 6.260650511243087, 22.461453429086685, 14.650977729621214, 7.712316850254102, 14.24772685263484, 15.829715558034632, 6.005694118001093, 18.94966800963967, 14.571554761906915, 6.047495275154955, 7.267054002193215, 8.76974060974398, 6.292371842870529, 5.401705813315239, 15.604378928515844, 9.942356092606522, 29.725426248669628, 5.525121629097206, 12.550360263880835, 12.880993780553554, 16.3966466724803, 7.044784175566117, 17.559834231168555, 8.914702791947102, 9.979196712485464, 11.544672609113318, 8.780066307119185, 4.144713685550562, 10.57055282704815, 11.944137187508897, 6.954218292997434, 3.724798411128583, 5.98774587104745, 6.620779327619388, 8.070776526391228, 7.448505485886942, 7.153783060420084, 6.249802050838473, 9.084569592456418, 7.6341960194528715, 1.136052018856637, 7.359047915735322, 15.705250601309219, 5.308721414629833, 13.664263517798771, 102.87484848484847, 51.431289682539706, 54.09645354645355, 36.069523993955414, 27.488660630588054, 7.336938090673436, 3.6301574886945396, 6.305117487986096, 11.063813045847695, 3.808933097562423, 4.616168609186931, 4.823016803898102, 3.8434748575432103, 3.5121584888363953, 3.319735390002278, 13.297020287000818, 7.2960590231280085, 4.4555100572931075, 2.6945160329916553, 4.023861001361, 2.7782428719986574, 2.5170624074649317, 2.668979714533103, 2.0892569399544874, 1.9017302182939417, 7.485, 3.9149381528120264, 3.258968253968254, 1.485575335429635, 1.383370640290214, 2.597941176470587, 4.338766630225033, 1.7182719837803486, 1.5366863264805704, 1.1572555381048828, 2.0255000000000014, 1.0862445556139388, 1.0101987089012239, 2.020666666666668, 1.0110164228205496, 1.5071021349666223, 0.972767415657441, 0.8742023900803036, 1.9366071428571425, 0.9175962458252696, 0.813210376217557, 1.944583333333335, 0.8721233321250934, 1.4458415498266246, 8.392150735294114, 6.334550151972212, 0.8314777059815583, 0.6584978193612284, 0.6295888935334333, 2.4095454545454533, 1.0191155788198543, 1.4656811594202903, 1.2753907520920311, 36.29676879699249, 52.988226817042616, 8.954259696176027, 12.441399352998376, 7.097260863349882, 3.532920758445527, 9.93361252303435, 8.648160092645057, 4.9414207746407035, 6.77139675577662, 30.25046415941433, 7.321922683644073, 17.964614941273094, 35.1143358586702, 10.961320566159479, 11.610096310124508, 11.029412900953648, 141.11916666666667, 22.878530767577086, 16.54992290954257, 10.230088827965886, 16.308731303849587, 10.098791820102395, 4.333101705342148, 4.940182024374896, 13.899803773177437, 7.397737294452648, 3.7942365847185653, 11.013719533515498, 12.308906218283818, 3.600756736633612, 21.050437027635677, 5.923268988106542, 15.541012466870887, 9.340339142563897, 5.592199879412295, 7.548420066693145, 19.6312258399312, 7.113971209950831, 6.759137238053617, 6.721358038813849, 9.070479723680261, 8.866558596171204, 3.541098917660215, 5.293112702453673, 37.68758076749098, 6.991820200928997, 6.6626856916469315, 3.9477406404981252, 5.387352931157758, 3.8198991316087296, 4.593071679277402, 5.495123774278751, 9.9798790828764, 4.667389827518293, 6.233006834554762, 7.095889102409309, 9.533413959375757, 4.629436040210859, 9.13291183237899, 7.413078303715396, 5.706084397542397, 4.6606065116401085, 8.669111897305434, 13.06325017023462, 31.202132352941174, 26.421217846481014, 17.468077439322787, 28.84526763484101, 15.60646932966097, 19.283573817493277, 23.096675759798064, 25.98153619039854, 31.08794444444445, 10.62130845803795, 26.75850561884833, 1.2227139018847166, 17.214639844708987, 23.135000000000005, 11.798833333333336, 12.52466666666666, 3.0635655737704877, 2.3963521680244995, 7.152380952380944, 5.733238095238098, 1.5439750080768064, 1.3629053934652207, 1.2366290937034723, 5.202361111111111, 1.0588289733399996, 0.9896661310169749, 0.9303589629497943, 46.24189416876747, 17.765859499653725, 72.93777596818387, 4.46954761904762, 18.334230898283312, 22.17596355863934, 11.405581539558236, 16.370707343825767, 43.42074070450099, 13.44465924985963, 0.9008991941563188, 0.7929814300754505, 16.439648511218035, 3.809075757575759, 6.626373626373632, 3.172294927294927, 4.071047619047622, 2.85191575091575, 2.6097835497835487, 2.8005416666666676, 2.813488733488732, 2.489816176470588, 2.5045694444444466, 15.59937075677339, 2.2695751633986943, 2.2939290905235556, 10.152111547808918, 2.3633333333333315, 2.3391885713615577, 2.1320760233918117, 31.625087962586704, 1.1215384615384623, 13.020438080287338, 2.1678282924505834, 1.9338157894736832, 1.988336946077962, 1.2641666666666669, 0.9817692307692311, 0.8550212510136169, 11.67729014970482, 0.7886818908645533, 15.354393573797097, 50.83265085731264, 28.653621587873054, 12.900672919700376, 12.376606447155767, 11.426431270923993, 35.410176182203415, 17.791596515405537, 7.317806641088378, 6.8480932191399315, 20.25837586734612, 12.834685747566152, 20.04260658685664, 7.69280932962693, 11.75786424673094, 5.806293994175715, 17.66714170919522, 12.99822478893809, 13.959532572489941, 5.402547202591308, 5.903320078833551, 6.1745725428399165, 15.811302073441498, 5.672003905568485, 11.644948412751503, 22.778596000492065, 20.672890499161017, 34.39494536598179, 9.498007834678848, 4.495281252518852, 24.73321322987212, 9.011814760385787, 18.363131943172434, 35.31403869805898, 23.679220183219524, 13.026091197781305, 7.258643626429537, 19.206809980181276, 7.768549708664633, 12.679493641727365, 37.1349451125878, 10.688822635851235, 15.483367713945936, 20.416741711265676, 28.434235365043172, 21.523528999332772, 37.34061057090518, 12.283054787797365, 10.756690351415184, 12.023714029876627, 11.612650983578446, 14.883302864247966, 11.048161480355846, 14.990282542657857, 27.824190626089173, 5.711058025892226, 40.098524106706634, 4.2377944634027145, 6.873265882332481, 8.410440435762824, 29.313457091161894, 5.012773728474209, 20.87771186889536, 12.464218002780592, 4.414800193022371, 24.906882685350634, 23.50407465707506, 23.097764522849914, 48.301861233568914, 26.936864341710383, 15.339963905966858, 20.930262248254074, 43.86323637253724, 7.89227378611237, 30.78225200064155, 8.244207573681742, 25.015976260021326, 13.46624431986462, 17.909189598097086, 24.41702522844186, 35.94154502976548, 29.190823862413115, 20.110722027972027, 15.212088484407229, 12.380054526087095, 20.20436071484916, 34.14488649616339, 21.68006487574504, 34.311841463414616, 27.392637202164465, 17.274271559149373, 13.844185717670634, 17.634322572779226, 25.137056785234986, 26.397750542528314, 16.3794261075748, 12.364631147851997, 10.567092148177545, 25.89443700404634, 5.956996274740228, 11.871815840584715, 9.064511310325626, 15.768198229390261, 8.37097859403725, 13.823517327461994, 13.150670884075765, 10.639412451321927, 6.67712151361763, 6.392514030968676, 5.511523114431658, 8.075698904175216, 7.707080880834303, 6.359904720371754, 8.446730980186716, 4.9097084465803675, 12.558904137047113, 21.501935649819295, 6.478345902119823, 4.982040658947886, 8.695159344305415, 4.221356361639095, 9.693800301225219, 6.2137990713040105, 6.156912389614252, 4.82426315467434, 10.865972211920866, 4.508191948127981, 6.745785255992372, 21.995361014986266, 4.311845631079713, 11.28550122382938, 11.609450468090078, 9.590990921562748, 31.43659754207836, 10.223854815711777, 7.738308817367905, 15.63778921178028, 19.917399731547633, 4.64909896062254, 9.74012409652731, 20.467493574750293, 10.347544945580642, 15.333992347464083, 17.272914560123002, 7.995698209331934, 4.620121574745688, 4.875063746466592, 12.31048061844551, 6.793920940781019, 7.7518395538376375, 12.070601535421329, 12.207899560843465, 12.608696713422574, 7.913850251787228, 7.255401143921998, 5.1487119745217536, 6.34202947126203, 8.265676172776653, 8.291596041100586, 8.12595661198403, 5.42275411400905, 6.420395410609927, 5.883701788750361, 5.1287619670636335, 7.461573131299129, 14.537457434611593, 4.344618466952883, 7.126178497699982, 13.632088526010458, 3.8778561052746574, 4.5394327717427085, 4.726146701763509, 3.7234854618013524, 3.423687536675494, 11.031585867440752, 4.691157461986144, 16.273219546193737, 4.687925190710548, 7.119600243753179, 11.556040874707607, 11.313767272729855, 12.768608966682795, 6.469662569908769, 20.652547570105618, 12.093313994667497, 5.330303786107955, 9.720069613991873, 5.343171826605977, 9.23510665262684, 4.961773845615778, 5.471300804367885, 4.785454544571983, 5.226421264637623, 6.381625641721743, 4.5461396627206945, 3.5975948774968423, 5.426537549741299, 4.740558284788148, 7.80265704119724, 3.6679760317860315, 4.185237137008114, 3.0848080984890296, 5.738424205641783, 9.743041360021785, 15.387867383707453, 24.089403625810665, 12.356384303324566, 5.758476226459295, 9.683731096011487, 15.267923137722498, 19.704578683166854, 10.179233505048892, 17.060247854461792, 6.883516840372773, 6.473014072433618, 5.037466461473054, 5.483812811055586, 11.277301701416063, 11.545632988759744, 10.182221083458135, 8.38367891667156, 10.018694495627235, 6.493801506880381, 6.974626925265648, 7.019014610583688, 5.494500524294594, 6.732589945745465, 3.454492476892031, 5.331047146751623, 6.2809131107235725, 3.0729912182313592, 1.02992185825591, 8.410085802270443, 5.919671605500172, 8.476704285683057, 3.7991940423953077, 10.382317276114694, 4.92244571605848, 19.024368341275895, 4.846827224919979, 7.863456137334699, 5.0333520184710805, 4.96009008818284, 3.291468018293296, 2.4550666399282832, 6.238978956228954, 1.9820992063492062, 1.6586052724788938, 8.19702087277271, 17.494425182000594, 4.837342349368857, 21.925086549398433, 8.45119008254587, 5.563925582237154, 9.29500501147059, 17.985748132109464, 8.315480718867624, 6.866598932149092, 4.731257631962359, 10.21426933512506, 5.866484083495402, 8.85307932489558, 8.157639722720752, 13.332144142788355, 6.710016714188515, 5.892138438653019, 10.84643216940724, 14.053585700729295, 16.439312583049148, 14.299298614294075, 7.8931879050449965, 6.6712215066335325, 10.296758870182526, 35.9412435329193, 17.10181032597235, 8.247522808722781, 14.504167821667684, 4.213820638063769, 13.080408676136381, 30.258970191320838, 3.460924795032958, 13.535064738171474, 13.145820684302567, 53.54204573707443, 44.50864678365314, 44.51098049240758, 25.17916889489346, 22.7627328201917, 11.802244706621273, 6.692587886653308, 8.079779173575876, 27.911448652516075, 11.05715279327298, 6.319521045827586, 9.55799098982932, 8.68485664502342, 25.94319729834212, 17.94954224434472, 3.4898307334722567, 5.0311902107315145, 6.983507930998317, 10.768174493642281, 17.0774588318517, 4.045390185321974, 6.503116030087162, 5.0814971324299885, 5.013612059232401, 7.183332693414658, 11.71384258262563, 13.021910527095304, 8.240549688927494, 14.219597870323415, 8.515274153571614, 4.0704233016633475, 3.064421045229184, 5.32907638754605, 3.2145228441787723, 4.586687287297177, 10.584873047623624, 3.8618576822131, 4.460493638142745, 2.721891434805997, 25.232483300079938, 8.62378802993794, 3.975588771869712, 5.287113377942767, 7.614645463479219, 11.451367632307024, 30.45287770562772, 4.153126052557081, 12.37492179783696, 4.210680723725836, 5.947735524652819, 2.764387890668955, 7.8298845591251744, 5.810184878527267, 9.568875648765045, 16.009438639759924, 13.012647291804408, 4.131233710170228, 2.525046351950099, 19.354617043481994, 4.85694502743641, 4.2205473651793515, 6.7789904879819485, 14.10248602750665, 3.6868461717628875, 3.432089829010169, 4.008485272060237, 3.8978196288105655, 4.8189881132237575, 6.499553395437163, 4.699512680080049, 5.317292802834877, 2.706122198736529, 5.1383673948290784, 4.685286634469393, 22.063028506066395, 4.4596866778659106, 6.7714114945831945, 15.639597138002042, 42.81198240811477, 34.31154741226515, 25.500909312909307, 45.15456084313005, 22.23808374270675, 16.748790836356633, 36.00175919342095, 16.428421682634536, 23.001429121352544, 19.946559771557688, 18.34625445397786, 11.149032054692068, 4.024693396392563, 4.155208284256238, 5.731277761082405, 3.885413968438369, 2.840776083192195, 5.199380613073656, 5.1019643659048, 4.1558998697711775, 8.78720422506652, 11.119380999117846, 5.121475234371085, 10.81304104272723, 11.767575460766528, 15.480671424223623, 24.11243709095552, 15.646976246684565, 7.357586795241217, 23.177553898878898, 20.385327194394513, 25.22517414512726, 13.37400708391706, 29.007525020227988, 14.27575893071851, 8.392738355278253, 9.740672770531107, 7.523811901797325, 7.065362736370635, 4.339270955790387, 7.911632060975681, 7.434641266901803, 13.703594834829346, 17.12808045298226, 9.35191840137004, 6.819185890394815, 18.10091422630373, 9.210399498148362, 6.070657740624884, 10.65975345571015, 9.44106074986706, 7.0814737756122454, 14.71019828935632, 8.590704606509542, 7.303559194192596, 5.786662625139241, 7.17226528191349, 9.645496773081295, 7.956788197752481, 9.12488697135823, 14.212925134841928, 15.316029606355558, 14.918354290816687, 7.022098820180295, 6.0882842419308, 9.391956117688991, 8.618552691465629, 9.173592158152799, 14.619698625754754, 9.42396229061828, 13.262218501867435, 8.137279734464833, 8.749766394613578, 13.91934533927471, 7.236629087950007, 20.425596193691522, 10.449047941488997, 7.2499822035933565, 7.68234159738692, 6.970166840429135, 10.55201735177062, 5.139253811860414, 5.071729783861045, 5.750411979055963, 13.684533302690824, 8.179525883012916, 9.815167781564838, 7.885377371373967, 5.8849196018120145, 2.3299386922744025, 4.620441622340927, 3.3845858173967494, 4.268952347224587, 5.185314453466995, 5.982417622963162, 4.658553108422951, 3.8199333729912976, 3.7756268600600515, 2.915024479896921, 5.064811155984935, 5.837087847675806, 1.1849462688275512, 6.063606364913379, 14.935863064219463, 4.718808895549375, 7.076081873715713, 6.857071310840358, 4.819131298237799, 3.525029591075802, 7.175024639463178, 4.301571428571426, 3.606102228085924, 1.0119150494671265, 0.9410903852612074, 2.696692962321722, 1.2006680454500809, 5.157018711491839, 5.189983010948515, 4.936381052354831, 2.612019589181387, 7.647395338648276, 2.600532383466206, 1.3465001662044973, 0.8561132173760728, 2.4161822801445747, 1.2479710451862795, 6.926347178381616, 2.4902383091318345, 3.775657894736845, 6.877545915191617, 2.570064771331361, 10.430072361131401, 2.02503998894067, 7.748687347686732, 1.6591374253225608, 1.2521835129431846, 1.2130025158624613, 1.183229708867639, 1.122629091115248, 1.9207670454545467, 2.4874448616862264, 1.3347567471954578, 6.052482327576494, 10.045942792810903, 6.029999999999993, 1.5154728383234908, 6.899511092732654, 7.67256070114319, 2.673272924007253, 1.8571804873868571, 1.4513470564965025, 1.2149828691068838, 1.0737280286319202, 8.93506967177587] hash_d32_k256_l50_n3 = [0.0, 1.0000000000000007, 1.0900000000000007, 2.12, 1.5150000000000008, 1.1500000000000008, 2.3133333333333326, 1.539999999999999, 1.9308333333333323, 3.528333333333334, 3.0426666666666664, 5.404666666666662, 1.3908333333333343, 1.461500000000001, 1.393333333333334, 1.6815000000000007, 2.677333333333333, 1.8240952380952393, 3.070666666666666, 2.7575119047619054, 1.746250000000001, 3.4634801587301567, 2.4395158730158717, 3.7325725108225094, 3.1082777777777757, 2.672607503607504, 2.6084130591630603, 6.116404761904758, 3.713297619047617, 5.946948273948272, 3.3615191197691177, 7.236096264846267, 3.2555013042513035, 2.736054168054167, 2.4410222832722823, 1.9497837301587313, 2.211550420168068, 3.98787554112554, 3.330204545454544, 5.542714285714287, 6.287928196158848, 3.0089963525037042, 7.465478864272982, 3.8842025197025203, 4.290253685856625, 2.1120412014885694, 3.561309523809523, 10.9217132034632, 3.87459453046953, 5.515537878787877, 2.5761971785524427, 5.31799386792744, 3.0506058108558096, 2.400618067433083, 3.042607614607613, 6.330860315827962, 2.3758198125403993, 4.256863671175246, 2.72490723530855, 3.4156214847244257, 2.7423578454225495, 2.323466477966479, 3.8282845035940993, 15.55679440785131, 8.241096286563675, 6.070402377739217, 4.718858436852999, 4.599965304303538, 3.651288453213452, 18.513767399267397, 3.7878288644695703, 3.462804239133185, 3.56905432560271, 3.4497387539996227, 3.5124505661999272, 2.7349476560337855, 2.4268977148688817, 3.2830779220779203, 2.701842942732647, 2.801322869019026, 2.3353071672829815, 3.0528692654095124, 2.600513768593224, 2.0675959110309203, 2.5878429390381523, 3.4249816872042254, 2.3740248914648316, 2.4128429261559696, 3.0185413752913752, 2.06526989672968, 3.6415627928696397, 2.786576225431878, 2.1491209451316986, 3.034941758690618, 2.9276476821603294, 2.7009921966137447, 9.31148096315449, 7.281802765947504, 9.645760767010769, 7.789106003645476, 6.728564978215871, 5.884561137072639, 2.8327318657219975, 75.92744631185812, 2.1063682770588104, 2.30213945082695, 5.183125396825395, 3.0842684001207736, 3.1034482535600945, 3.481621207011233, 2.163027892410292, 5.3071259946949585, 3.0845245493167512, 2.1757340666784644, 3.313481229726585, 4.241571789321788, 2.147932125900908, 3.010497720770806, 3.1302817870255097, 2.3668549039905815, 3.2946081848820774, 3.5843101445274774, 3.8437660560895828, 4.636506625835166, 5.5840450060626985, 2.213394139194139, 4.359924990332247, 6.157937756370763, 4.17332104332449, 5.087113537301749, 5.2229260926712175, 2.7906086785353588, 3.1640325928965636, 10.409626238040323, 13.500071857222105, 8.231517836431042, 7.963635907174485, 9.58904314009004, 3.9487769247431617, 7.7451080280603595, 5.835807951380003, 8.386338437363051, 9.190936793917913, 4.809838707020381, 6.308538618166415, 6.59034021470321, 6.073359023383169, 5.830616879482815, 9.264214699894934, 8.214274303607633, 4.4122402951078135, 20.321892203988114, 5.887172595757688, 15.881573820382517, 13.23433628800445, 6.938677776313332, 6.758637100383564, 9.454535780318148, 6.802352546454964, 8.897534718244096, 6.107307207013783, 5.792191087707041, 6.986019866575817, 5.921704129787615, 5.129418967749392, 7.858646817369826, 5.4743946204889475, 4.525158554746769, 7.773086288662804, 11.586885745159028, 6.8060612293410685, 3.7533380789081017, 10.6400946460998, 7.10823674438025, 5.6181329146983545, 6.686938106681445, 5.225702500479567, 8.041965311961166, 5.781212269327482, 21.612965645465646, 6.011119202168527, 6.389750929074009, 4.614934554747455, 6.446101528359554, 5.488968686212186, 4.66101032456373, 6.396098266709312, 6.720184844934191, 7.122370560424079, 9.997597970338541, 6.4424095120021585, 18.080731884128937, 9.52248810193638, 12.556815448484054, 10.491999472749473, 5.573627797014157, 5.65480943047385, 6.875427191049356, 8.538536570618925, 6.309548866654973, 4.584430845732961, 7.779686346895999, 9.663873511035126, 13.90498269389861, 14.954710895342465, 15.027827624017473, 17.20651397393456, 6.870119971870441, 2.3054808452940474, 2.010040462501942, 11.162309491549038, 13.147649721631781, 5.60554958044742, 8.418049561291024, 6.61859306699398, 9.094469056219221, 9.934259397572374, 11.643320845820847, 4.054548945408198, 3.347500755012935, 8.58530876551303, 3.1392476260249853, 3.477869278818238, 5.757909431100606, 3.0361289956238675, 2.962109517168835, 2.7733086234577025, 3.2767702681964392, 5.263268798216974, 4.400990965174859, 2.483022536527896, 2.8282889804987494, 2.5423161010444506, 3.3694652057341017, 2.3090393367312223, 3.387519913325568, 123.54542452033257, 2.732242341203102, 2.810439416248068, 2.5320613578129723, 3.958028911987414, 3.141219334759006, 3.3507957041111065, 2.769549167822666, 2.9977491485123053, 2.155926314245318, 2.5672323652223317, 3.35899876087105, 7.34752330856278, 11.631442025602508, 11.432554173936204, 3.5425767822219054, 3.2265346330402083, 2.6840264988531555, 3.991888269151629, 2.723950580767692, 5.38386456006611, 6.870601851815863, 10.085694469025993, 8.113039016443379, 2.586308271614407, 3.695321083678225, 2.574673029156054, 2.8321443512552333, 8.782149175940326, 2.574158106884529, 13.41555438890634, 24.91114639302072, 27.566879308982802, 20.068027970829586, 5.786701450653047, 72.14147240130848, 12.76879892504724, 67.2050710394678, 54.508259187207464, 32.90181042355477, 41.19365139255308, 27.696734362447938, 22.582060233706287, 9.273705803121135, 19.069210884816428, 18.289597072991388, 27.90701026448713, 16.794773516344378, 8.817114307868025, 11.667518188037608, 15.295696917807355, 14.680290131321996, 18.62906574732756, 9.568222889096234, 233.79662500000018, 11.332809042310803, 67.17982211651965, 9.702173214844835, 7.725283589838928, 11.416393241900213, 8.19988993386491, 19.310536849460846, 10.501035168979842, 10.61379666886361, 16.08775207096861, 6.675055082632892, 7.81068196613812, 6.112732980667522, 8.36745516723859, 8.28559724506679, 10.58645375968507, 9.70010458024163, 21.414790408629493, 8.294013820223784, 18.649873955646576, 8.21489163169185, 7.627587212351086, 13.483091989207436, 8.66239159936907, 6.396185771688206, 30.90805064527597, 92.48019712859389, 99.56062854440019, 21.377314093447588, 13.072957513937043, 7.6899384478541934, 6.140084097363058, 12.159776786537734, 6.570857435568309, 6.811588155154275, 6.163012962902497, 33.51741148124895, 15.22324024517986, 20.98306236144245, 9.427740608450021, 27.09913380021096, 10.222624289364981, 13.665077005714997, 28.171261008750253, 19.07399662296859, 15.722031847392172, 29.396767468444253, 16.21970851896929, 22.91454552370574, 19.350503288804216, 11.933472421404966, 17.925828776345124, 25.88115370542156, 7.92269840471226, 9.778649257188782, 14.274121208318732, 19.984971037416685, 14.616335396989975, 7.187336544027468, 10.447439425490565, 11.68356737418804, 23.062158248335653, 14.183480571451732, 19.04502595258418, 19.021618277642435, 7.6226943776574, 14.980094690369464, 19.50109545379273, 14.800665591202746, 11.632893520184002, 12.074857019278923, 16.17079563492063, 9.02314810560466, 8.2708294958033, 12.770132100226911, 7.606308639553889, 11.977129060482001, 4.8591875360669405, 127.80611351611351, 22.493755821089973, 11.681731665158798, 4.844992849418231, 11.399781815968039, 8.53375966792321, 12.018093184593187, 5.381955308312314, 12.366034889033825, 12.244516663132746, 7.657643018582722, 4.170483849732326, 4.376954607159505, 4.665354276628274, 3.201764630274014, 3.8442245114985223, 5.942413778420069, 5.277799965397511, 3.081726890989027, 11.389728899499982, 6.137074295769859, 12.846503512010866, 5.626971994379889, 4.271443175168175, 4.442894241775588, 4.83999096325542, 6.010689218444599, 11.000158317282636, 5.787332611832611, 4.062041481572417, 4.985831190969444, 7.720923132964633, 8.121002472850984, 5.988733061127187, 16.953759930803795, 5.902815260723822, 7.01359496351146, 5.865788091115435, 11.772904777076715, 18.678569773466535, 19.43201500057373, 7.080059889767329, 5.925417516351763, 8.02466720366998, 5.591432717752751, 7.29441951632053, 10.286956613762275, 6.451996006584997, 9.478325229452837, 16.80325132755086, 15.254687493227392, 16.80496073770103, 5.309570383831242, 8.37359300796242, 7.156966745469001, 12.146875303049606, 7.453063562779806, 11.53988956598734, 5.763919677083507, 6.951042317068228, 16.46551926896633, 15.03784200586136, 14.534596848483345, 5.335755195986518, 12.214351975918957, 4.822442581714842, 14.499146305951514, 6.733163664954866, 6.614007241648431, 7.941293568571039, 8.261490461880895, 22.69682778588411, 4.9785624823380035, 179.41711111111118, 226.80780303030318, 218.43583333333353, 161.80669230769243, 152.10940476190473, 142.55014285714293, 99.29511904761905, 13.9476152277854, 12.606594307809525, 6.247703765296349, 12.02767482913357, 11.795999521762948, 8.337244109663814, 9.668409826534651, 8.107450680945147, 10.035558943679048, 13.312910252330534, 13.265834623671639, 4.314055150404484, 4.175965980270432, 9.134288520863047, 6.470958892114324, 7.367834001363331, 2.756716426595084, 2.960205127048068, 5.599413440024306, 7.817351748522224, 8.061941590227843, 4.4392279261569, 3.2702046001946656, 4.500586907256879, 4.707080422534173, 6.937968308750015, 3.496398196610151, 7.361263896016987, 3.750012821662614, 2.5244765215596625, 6.77318533126401, 2.572056112220501, 2.996938593930573, 3.8767688201783597, 2.2680341670979236, 3.4115138660390563, 4.66296648103906, 2.7883662351417375, 4.77709138870191, 4.92561215791817, 1.9929078632352504, 3.7478735021788414, 5.836272701316732, 12.368252087811863, 11.164063290293281, 6.621229301175821, 10.894632027903205, 5.58007560466469, 3.575972595404564, 5.422764353598787, 4.058762500911988, 4.310528063564384, 3.7538112698375983, 109.43433606731426, 3.144708631235968, 4.7975853101564665, 5.298212207308926, 7.206858441292485, 4.5932782088093775, 5.892259545084066, 8.81678213749931, 4.438365366814858, 3.9738754184491847, 2.8814414352092212, 4.940899349773031, 3.84609787656598, 4.874052387026457, 2.346325434827407, 4.139489667403588, 2.595308606160809, 2.605600777910915, 2.8542368734246435, 2.942288476222172, 2.196964256862092, 2.8558941763202026, 3.2173300047534044, 2.1817307760057907, 2.9989385868319416, 2.6085018045162003, 2.953779171463602, 3.474341279181449, 5.405669034425291, 2.1017793397707853, 3.633535912728738, 19.921797473189567, 27.24553664578078, 10.160093998098661, 13.57622098991915, 6.482088262117104, 10.894227477864282, 17.195017394059658, 9.495698680545074, 40.682585049418925, 7.910280655905923, 14.533108771938583, 5.6132510265862035, 12.121457790896274, 12.732643648830765, 25.51317248723799, 11.775293371936483, 22.582811938066197, 6.510880472170697, 20.73428183103195, 16.649999686325014, 5.780773101379461, 15.771809180121444, 5.847362900209909, 5.85606523138643, 16.362340900749327, 27.804967833294217, 6.196654390555582, 11.288212297671045, 6.803701414829073, 7.436343182395267, 31.82724429334371, 12.815674821448141, 19.34450839519202, 13.939263924719148, 17.377409753804645, 13.155574046525086, 5.373188682987699, 4.315722725015533, 5.3027197863632605, 8.903940038209079, 9.052299272667657, 11.755063267212922, 7.468723263802141, 9.794939566816177, 8.602719699026856, 10.434472946241256, 21.508700095478407, 11.715782961821395, 11.10485655103387, 8.048543518088257, 8.69948640088955, 10.158368092299632, 10.454991362094963, 8.070549833470345, 26.304049125129783, 9.534293848061274, 13.170628343083488, 20.049273425738377, 9.229522482740544, 5.246205904787879, 3.344617653860643, 39.6756565934066, 6.3341779817862385, 7.5002118546795, 3.6389491445814333, 5.912730904232282, 5.480672698787158, 10.170869615828787, 9.961845238095234, 5.008078310970912, 3.5463556824184486, 3.426625196178491, 3.7323549360429586, 8.594524505987739, 6.233728946863771, 3.3874086452288887, 3.678057872597882, 3.9541622443232245, 5.386149194062449, 2.8829585146312486, 20.87034505309505, 4.042827767076848, 4.0821004912544385, 3.9363931615109715, 8.091529961713022, 4.638652552348142, 2.4640678652885764, 2.264179471442502, 4.216581697858328, 3.3856669398627255, 2.3971809047538586, 2.8128696546831833, 2.5476535380696586, 3.1878597678774674, 3.730543918754636, 4.6225370800990495, 3.803473965095569, 4.714519225657435, 9.672788297778805, 5.452693770289524, 4.799651826291699, 3.839889933365682, 52.41792485243523, 2.289834483244712, 3.3180843057407836, 2.009341818358488, 3.556996955342741, 3.0527114680327605, 2.0963996481812, 2.630641817895791, 1.9203529344726307, 3.283556565063935, 4.240973884583912, 3.720453840223627, 2.5716293075942604, 2.3794248760565435, 4.663171544824877, 3.897500657994821, 4.037679675219406, 4.998341277421363, 2.475486065986171, 3.8117751875368686, 2.9119450068855297, 2.290676585109843, 4.3425207516883955, 10.721299539170506, 3.0347188062833106, 3.7195688925480948, 2.4133831092729765, 2.774923682526624, 4.82789640694995, 5.451662469012432, 3.6463043075695833, 10.602574820694212, 17.180714081729842, 10.632488371036304, 6.672991165059031, 23.564427650882987, 11.815618116764146, 11.664138543474877, 10.51445003696698, 24.24164961883746, 6.8183297426875, 6.19683962677287, 7.273477526773572, 6.074777186480598, 11.093381905581579, 5.8922497084670065, 10.471341372868812, 8.180075390850819, 6.354275548767677, 6.884372910063017, 9.333808780731687, 97.47073362722588, 6.039111853587412, 8.990142721836186, 7.220545298971335, 15.413822794868397, 6.63352615620337, 6.648112892729566, 7.5988295394367285, 6.956285976253027, 5.384479408839082, 38.40079766305894, 6.111762410689039, 6.5018692672424665, 13.09921743280576, 11.001620655542565, 4.735228821273517, 203.1066666666669, 5.732108110428765, 9.268205059345641, 14.824266375743878, 4.600945089807059, 5.442897269029907, 5.750837026842455, 11.793564466971173, 8.85089836973203, 4.563834615752229, 6.374454281450483, 12.751568360307706, 15.910690045814773, 33.83714364119474, 8.518897327451782, 7.754835325252568, 5.811568204986643, 6.584679262506831, 9.217640914321677, 13.11679817013827, 8.42262661995569, 7.383528054200256, 13.559911059984397, 22.949885077939264, 13.460750719143142, 25.032720927367897, 27.482302223295562, 12.078561193246532, 6.368366575255996, 3.9243163748796497, 6.977791663268173, 6.688005555106815, 7.946405012886238, 6.207762838343015, 8.335218745128012, 8.916073423605898, 8.194086639447043, 5.627754264015842, 5.859503524215254, 8.326773546010909, 4.2825393946033445, 6.9280435505290185, 6.482970468982888, 6.577970713926596, 6.0657887159177974, 4.397076040474696, 6.238733878725647, 6.1595602879388975, 4.117535035784895, 4.2495758763343865, 4.989773752405597, 11.772085883283033, 6.044233386671459, 4.806252389868208, 4.997479259870924, 7.695442539082232, 7.324479898265445, 5.287093328857359, 6.922726869402004, 5.256760610449449, 7.070288637806358, 3.7010998383640725, 5.114386941994365, 5.6931687136038125, 5.390778901684122, 4.952481032478715, 57.3173642135642, 7.415354707696811, 5.274525438282471, 3.501772096610471, 13.798790489289434, 15.76749574148038, 12.108464439595554, 6.021213809959071, 197.5833333333336, 14.162078669802774, 13.784751986009146, 6.729945728265238, 11.967946829851138, 15.78238387813957, 6.175720454393972, 6.806860092939293, 12.79947132100359, 7.253803769825364, 7.888371270804771, 12.682688777739454, 9.794674639103588, 11.832056451544899, 5.672888200327971, 4.930104149854885, 5.772295475829161, 7.186845050476549, 5.033569923078307, 12.252891646152367, 25.912767744578577, 16.764062904774743, 8.331660644673377, 13.144510132350277, 6.6329343723816185, 11.726637620671545, 6.72461323172834, 9.493614955967425, 5.740691724249418, 8.252192549323027, 7.0456293777052466, 12.76455197528353, 7.326304215050757, 6.2272896856494455, 9.872481531539103, 9.170770954360096, 3.516742686069265, 4.027501682062187, 4.33420753887344, 8.007853570696419, 8.320979457728969, 5.388129122528906, 5.560541692379456, 7.190292011760706, 5.316419262548455, 5.879687602950022, 7.551832909565586, 5.7835154443409555, 15.776693353746905, 7.387327116147989, 6.088165471028899, 7.016254406329624, 13.480646943876943, 9.895780914668027, 13.883621120480608, 9.004187008790163, 10.868238680352528, 10.975186291244116, 8.549907367901405, 9.675466654551414, 6.180710791862003, 5.598023673031035, 6.079065323200192, 5.915416468902675, 8.638147433515563, 8.554562689576924, 6.233387345438505, 6.956922369095511, 114.85765059940066, 16.772650328898496, 5.863221157193661, 9.013725731835123, 9.29743036959563, 6.577041390678465, 10.184986240067117, 7.5776679194230745, 5.586876288946867, 3.3657366232420762, 3.9078079879677503, 6.733511562004715, 6.200802149549672, 4.03329468212808, 8.186833259735398, 3.2691160126722107, 3.978729961409662, 4.380228297828483, 3.535521072069051, 63.7372151924652, 5.356039174477171, 3.311198886701477, 4.461024262065566, 3.618102382367243, 5.13014871759351, 4.4113815963992415, 4.216675618639779, 3.271960874053684, 2.7640731135023957, 3.3465663685823586, 63.18750761330174, 3.721243084076732, 5.010748443290978, 3.814592872472566, 3.0676932773132006, 2.2425243045068117, 2.96860145853792, 5.857140464930785, 2.6628003421499327, 4.987650264801555, 2.610558186051085, 2.7732701051534976, 6.11099155507759, 4.118658655419748, 3.047625225413282, 3.5317440609499426, 5.041092771789769, 7.491730010185892, 4.08322763215651, 3.458904954641373, 8.05096741788456, 3.0824863416775004, 3.948954726856201, 4.377198531747033, 5.880178198570688, 4.176131292892275, 3.448411196382824, 3.002174130319669, 6.146641571331208, 6.274239154791482, 16.890363197867313, 25.911282991491365, 11.475863902125774, 24.869950406283742, 6.943011853197707, 6.682489692702467, 32.25389852782129, 7.569447720110227, 6.596486863247998, 6.441094001254892, 5.180998119413391, 16.529528673216884, 6.550369470730935, 8.490837985732583, 5.308739521300887, 24.571468481708607, 6.558543120047906, 7.1761439259304645, 5.921763502779809, 6.2770458779607985, 6.271642639516986, 6.08237219168299, 7.219566852693674, 6.415664442061481, 24.436594310897753, 4.806115542601821, 5.5882301387937385, 4.731762053720882, 7.382627134869248, 5.572424457887996, 5.002239517507644, 4.559660606301763, 4.7490847211685585, 4.774004234871994, 5.84774250889285, 5.758467471074455, 6.08877731013904, 6.188729138203112, 4.981258170485328, 7.048637587105919, 6.820745712150434, 4.570764487517316, 8.044867590164174, 5.748187942506993, 8.110318360819582, 8.835648185455767, 27.258500022707693, 12.516087733099715, 21.390863689153797, 10.000686637822456, 20.280390561992927, 32.9343419294703, 11.241213382995367, 9.999595613348362, 10.265370481283943, 6.591512689258242, 9.95555385581848, 6.694289954928112, 9.138611483789115, 11.534191123220893, 11.209596067383709, 8.516326667984861, 10.967376863006276, 10.079719260290174, 8.65257935169119, 6.340987888942622, 10.749896334254315, 13.225090798090799, 7.134012187764156, 8.186059359098135, 80.79203794843502, 6.544321774775726, 8.108343705232334, 2.6253085043001185, 8.85359595055716, 5.379291636012763, 6.708782488987305, 6.862652862116748, 6.186452383691935, 6.798816902503241, 2.629913434792413, 2.6897125863622553, 2.710550576159876, 3.23627481511483, 5.634795453299574, 2.6896113024113193, 3.2368780343034778, 2.785606825851121, 7.515777015990425, 5.698198548468469, 4.174123732701123, 6.145087793609592, 11.181180078159615, 4.905148253610176, 5.119767657286932, 7.265956063829009, 6.558699581196834, 6.704795878741109, 3.028641247573605, 2.840136591937915, 5.021798603605082, 76.16657290405094, 2.4730415828363275, 3.432819925874183, 3.0345649881342327, 2.405077058331528, 4.811592048474399, 7.069786769503516, 2.482975002573922, 2.7611514318066637, 4.376712225548706, 2.6506698540429223, 3.487718716886084, 4.614093041741872, 2.8253963348905917, 2.967792713766195, 4.155089163597258, 2.6028585661869714, 3.9476298111418844, 6.073711921636041, 3.059993674312621, 9.21888947777966, 8.889517442794487, 7.953475502425969, 6.467136464896114, 14.082822508006885, 32.003501466511466, 90.08327493696534, 30.682235674942213, 18.829790294212373, 21.114640894267282, 21.898883879278436, 19.914317487182583, 25.972661937052276, 14.438532623170984, 9.687283605658804, 18.32004030912631, 38.16345798779091, 19.00066794048715, 33.74088947160223, 30.052423637502386, 20.878223947166834, 15.835501411751288, 17.757188974521, 14.107168077033476, 12.375129390725458, 9.87542071457629, 10.95112967201085, 15.49571900984812, 14.166737853557526, 28.540337954898014, 16.33385603938332, 35.20428602822693, 35.27047428298351, 23.944285528601892, 24.000751350347777, 18.797155334445918, 18.864693708333878, 20.912114997402742, 12.382416492515796, 10.598818458613849, 11.956527112313932, 23.101725344591568, 25.77582398557077, 10.916245859607262, 17.51086893931934, 16.882995322846952, 14.027230517867638, 11.681388695311055, 10.152517793180268, 12.81533292674176, 10.58954607342579, 11.331332948706917, 8.514766084740877, 17.92593388519835, 9.697688789083896, 8.79384857973685, 25.125577567042562, 12.71487154186888, 12.865502987631675, 19.67528407011034, 13.84070801813835, 13.407124445590634, 14.850140226646584, 11.366372632007756, 10.306864099562127, 25.54957025879706, 12.370031622061681, 42.92106339448072, 20.6501804037904, 22.418791501465368, 31.323814577330147, 12.915753304149652, 19.496226737501733, 29.428727664475627, 9.440295894706315, 28.01552230167924, 32.71266008771719, 32.19404831722947, 27.123749627187397, 32.13566705710439, 12.67365848983596, 14.346567628654128, 28.868001591872932, 23.449566894407383, 12.519522718053675, 15.217396674191484, 19.837161566277356, 8.340822772987451, 7.972587270357597, 20.119873979210723, 11.578569830595846, 17.7705427167529, 19.591265952218322, 13.342387448095705, 9.366572241987802, 23.563791931009597, 14.534476076239084, 13.581490913602167, 30.49221692850134, 10.26953002975096, 21.916700030729515, 14.38681103443776, 17.860586930604484, 10.15542328395617, 8.37650591161743, 9.088941038645325, 19.641075105669852, 44.654367650060784, 17.426735674048174, 12.940251336278443, 19.622563821534545, 21.115862841556144, 21.70216363464578, 20.5841792883043, 21.903068629866876, 19.62668922522163, 17.594754921806782, 19.00479029548833, 16.70540726616347, 11.274369410345415, 8.672990797464609, 10.370414238075405, 14.69723180201494, 17.304231930449955, 14.682895117951979, 14.708310909733465, 13.811722864624352, 10.083429073960152, 10.010328957681145, 12.05437161038771, 11.02361302943965, 14.922322517760014, 14.002305917276448, 9.41621378650608, 13.601558107217754, 12.621931447801384, 9.530969465732118, 4.82558892384705, 11.658946370398137, 7.770748728763732, 14.900098450783558, 17.88988524139722, 8.320707122393287, 9.116418426010846, 7.56016101644848, 10.538061621670721, 18.576108661539646, 11.772512415482899, 16.113053438756538, 13.255818821345136, 27.245029385699794, 6.604299255357088, 9.185349212167663, 9.042363560137224, 6.803329432891379, 12.8165909234586, 8.651697692648561, 6.421548394013397, 4.957771634421631, 4.324435796764297, 3.269503023332442, 2.9540849590491893, 4.21516533116348, 7.719949310178413, 3.049098928036362, 2.5351845399958095, 3.71688933761996, 2.9878399923619052, 4.2970866979704265, 8.246420413542287, 3.7881652547935825, 6.270911423214458, 4.3986074055537046, 3.8779147716602647, 7.353668702215594, 3.99395922131253, 3.9500020431368954, 4.786449494370856, 4.372117073714009, 4.284942340996653, 5.387576379298405, 4.852397731548879, 4.72926878128611, 4.358561935081263, 5.846464411755635, 4.290790037811862, 6.46045163245191, 6.1605102073541245, 4.730866756625559, 4.5230091646007615, 4.898646462954619, 3.9795464517832166, 7.411139291659188, 5.474883085909899, 4.262991891767048, 4.7857770144756895, 4.780879052102178, 7.667363052487999, 4.758049566138661, 5.18014802480716, 4.617007966318448, 4.0635614316155655, 7.162834315903396, 5.253957999148226, 3.5570655438940917, 4.458166026664168, 7.027856091955111, 4.9210440359891425, 8.983084296527839, 4.095378921108821, 4.491909978011833, 3.762078004900625, 4.035071829387172, 5.703208535329113, 5.24888371231277, 6.241369372406646, 4.47678804512481, 6.922625746350806, 4.329321858861424, 7.032304714456122, 3.270492621651343, 5.310004193390026, 4.071216906296317, 3.205022333471395, 4.050269776057215, 3.7830571666416777, 3.7449316971626967, 3.4597727780616796, 3.8395126056048965, 4.648942460238199, 3.7481367870567857, 3.8224082521835125, 5.147144388318815, 3.589938187724625, 7.019829616807324, 7.30341609970489, 7.978060570951242, 5.050048252092467, 2.8084259335007156, 2.697095682340985, 44.12541282682419, 4.160524154586383, 4.92033763772865, 4.508773368241311, 4.430001144390256, 3.8534072824963195, 4.604089157702555, 4.424604055706047, 3.9619200255626716, 4.419174289095233, 3.6503794149168387, 3.5725137736101966, 3.7119637388688576, 5.353081730919576, 3.2510015884406123, 4.5875066429666465, 3.5053937707527867, 3.5860483587533283, 3.9613956525028304, 4.381980236609789, 4.343163823230176, 3.419186676999532, 3.746788046088264, 4.584552000488004, 3.8966853085891975, 2.890472264491855, 3.7865880596858843, 3.036297384681519, 3.68600808497936, 7.316171450360225, 5.915286657128802, 15.685471766915741, 7.231970252381743, 10.167263096385218, 21.97212523638704, 19.12210684070766, 11.853028739381884, 12.537191591766286, 6.155930833069234, 10.163760258619925, 24.284193297525306, 11.868038072164495, 8.747265919752076, 223.36125000000015, 11.306446358056867, 10.694668510965661, 6.094918885759873, 6.738650693535411, 14.902987191697134, 11.71213360047007, 20.63931095103713, 13.636307840661697, 7.781999426927651, 10.945085164831863, 7.985677622070796, 16.88720478136853, 14.791143778968657, 19.367748602897, 8.60622089054008, 7.743168568137454, 21.99676790658625, 13.55897447491703, 9.00631057340899, 12.241783963784961, 17.593469541594132, 10.23787925565746, 9.212067026477577, 14.365417863894608, 9.230147012586205, 6.968483539604391, 8.988932249911525, 20.713480640364548, 12.162684550887661, 17.001709969318025, 11.25478884997821, 22.701908101190735, 7.11232869581734, 11.744391255555984, 9.998207214095867, 50.368967203864685, 7.049066843472592, 10.916998400190229, 12.377079463332532, 5.732505291589879, 13.167218394425987, 28.84521390962693, 7.880899610963003, 10.357146483700589, 7.390902055285741, 11.142020497634558, 8.49721510627337, 10.390750656556499, 6.4143565279431245, 5.9854338960412035, 12.351300636519586, 7.393081955125382, 7.760250921503331, 8.551598066978114, 6.29653707163525, 10.246828737302478, 12.095265205868643, 11.498303790632752, 12.958439560363045, 16.269153646044135, 22.669354490729184, 4.502834934191804, 3.741932454817376, 4.2632239330157615, 5.063055631854469, 4.540292814451961, 4.916972169372544, 4.195643281163075, 4.290937149428429, 4.871638413786152, 5.170397621108421, 7.114914853465746, 5.2047457729776125, 5.069516819837095, 5.025026168516579, 6.288675115054021, 7.7027413776780245, 4.404684478780423, 4.716727339384338, 5.072006437389995, 4.685114058160734, 7.458567800108031, 5.067846878015054, 5.09029585962284, 4.6051108470552435, 5.986183067472016, 3.5003817886669433, 5.032355603384957, 6.65477930484451, 3.6474405379647195, 5.8851551657249, 4.907383231149409, 4.470375169215793, 4.60927567756645, 8.649660590871113, 8.749689515311946, 7.12610801936674, 8.150272689121179, 4.699453565347093, 11.605152097902097, 6.876158851613502, 6.26126575044285, 8.025118292191824, 8.83777531711993, 5.730732236768383, 4.71843282512712, 8.129697663136616, 42.31273694283399, 18.39631955710286, 34.96316522312529, 38.821894603934076, 3.830895131461708, 7.221831863016, 12.366410524719672, 4.624963887315761, 146.591105691057, 6.649986443693244, 3.9404984363303086, 5.491749149878694, 5.256415040740655, 3.3855612253939675, 4.869539563440509, 6.310713187209718, 3.8183854721594526, 3.4196795914973896, 5.292104202203803, 5.796295298312061, 3.9813734421623312, 8.26294229744612, 9.567169299450546, 4.934248888402734, 6.096810855600761, 4.117665982569486, 5.169025987397542, 5.338034715558123, 4.566208581744491, 4.162106682254184, 57.665507288176116, 3.240298520850816, 5.658311354777015, 5.575745294185428, 4.574997783899191, 4.435926112389183, 7.743761764086538, 4.976039285802804, 7.275434884559882, 5.631162731660489, 3.1456415680982226, 3.6274651961962725, 5.724936185680569, 4.2725866951396405, 3.951516333613694, 7.73862035162905, 4.565706003381747, 4.480053795556665, 5.890820908052811, 3.793180307054729, 17.867805842033786, 10.661811456742116, 13.145748236308501, 9.021746044612822, 6.683091641698841, 7.546672251763415, 14.336882099526074, 9.103304489752201, 8.72863804195202, 16.126916048313845, 10.979730034559056, 10.179161791853938, 6.2108187226476375, 7.139119554987791, 5.5552935846382345, 8.436841165634435, 7.2040122913049665, 9.960754289591915, 6.820435442819974, 6.089223467068272, 10.555053141741995, 14.378494210756815, 8.80862249785018, 16.05984597856786, 7.919937760982691, 31.307558553095003, 10.228272458692473, 7.69515378865866, 24.506901043929414, 31.029086608905978, 9.497007182052531, 5.397152041006707, 12.699677382491474, 5.122788652350761, 10.387710152713332, 6.872197485359169, 9.106249480619379, 6.789040479818622, 8.253736562527887, 6.346645818396101, 31.741958258830905, 10.221624772225912, 10.412291265357695, 7.033308077017564, 8.689243409395562, 5.463402945201767, 10.734933383230631, 6.896173756416257, 6.049686895040139, 7.7095029800235375, 13.224065384533581, 8.419870227435979, 11.69694175054588, 6.8734537498119845, 6.317708001108031, 4.896877077288795, 11.404308586262305, 4.826513751990153, 6.400123539242891, 5.957506483557939, 11.478326227676993, 7.428494174391517, 33.641971361971365, 23.396533700973357, 13.568638063816888, 23.768173641173643, 14.167260591366798, 14.94168772528684, 25.415105380730374, 21.341154970760236, 23.721138808041417, 14.689714305891114, 9.000343656640231, 11.983957325169715, 18.296390075567707, 24.013525857475862, 24.76047435897436, 23.892130880504574, 18.713945317083642, 18.399135975941967, 7.912676707515004, 10.220714486711543, 11.571053697343245, 18.605444934694937, 8.894453602298045, 14.294110339222176, 16.9618300571977, 15.981732575757574, 13.090305287713127, 16.523330196741963, 8.695812432651008, 8.818395451197695, 14.29975810446863, 13.754567539135124, 8.520002842639032, 12.431818435541777, 8.16990411171393, 6.09464349497923, 9.338573618006027, 10.489792229626191, 7.387501007330388, 10.714017329892329, 6.462012777617921, 18.129468502035014, 5.768113743782155, 9.6877504245898, 17.948380876469002, 19.064038475942297, 8.187947164642685, 17.93100031699617, 13.750185827258594, 8.384952292875438, 14.050150515566303, 6.865227982052255, 8.074953152267023, 7.283473370129209, 11.548895584674991, 14.82474632099971, 12.734981220095893, 11.209561804810251, 85.72837945557568, 12.568544018640047, 5.520168381165457, 6.7176848741876825, 13.039389709261219, 7.248508500464896, 18.516951923935792, 9.465803878805893, 18.482587509735005, 48.301360914511946, 13.31772898054154, 8.279393375745638, 247.66472222222237, 214.21344444444472, 187.12833333333353, 167.30583333333334, 140.164, 152.2803174603175, 6.030201416284934, 5.8525770628139275, 17.1263962433719, 10.50140153467346, 42.01710216538204, 14.309418554638064, 16.39968011308502, 10.779592626611366, 8.70519496494143, 8.273649960193067, 8.102851549978256, 7.148838110011866, 6.126925377587145, 8.80594273569149, 13.060517594892142, 13.864456678393662, 8.926648559368779, 5.846487862268191, 12.459030814524093, 11.495212579948053, 7.845050225937455, 10.483350631268506, 4.906852878497209, 17.705148101500487, 6.80171446525095, 5.602809817105409, 11.084846759297635, 6.352623663524468, 9.456535445382745, 23.76409623733806, 8.462120102331115, 12.433719086819806, 6.565894748156921, 8.251072849356566, 11.650873470054497, 10.365594010962736, 6.533732164880438, 11.425607084303238, 5.781990923937627, 5.126761066105651, 10.777218386245853, 9.012488750042843, 6.338748150742646, 5.431264532285955, 7.455758390215146, 7.95338507637643, 5.903243124807929, 5.125115933706565, 8.961253880883323, 8.058556491931688, 4.64002199096903, 6.073783446585532, 6.10565921078502, 5.572757544548368, 6.227478702587231, 11.273873287207646, 20.23908528881496, 8.028138810001034, 4.98423512466601, 6.071293671306709, 7.937522902516347, 5.821099028529066, 7.593683225095866, 5.49646895152608, 12.050509406496067, 12.85398873494601, 172.0692777777778, 171.33083333333332, 108.45188095238092, 154.19526190476188, 97.09909523809533, 168.75037987012996, 5.604443267392848, 7.682934760798269, 11.608955870763229, 6.396593788102003, 8.769266671458158, 13.685079832156148, 11.03898500738739, 9.777596362637503, 9.41977039285326, 6.767757721184571, 10.84128541211539, 8.732681757471957, 6.811138686899082, 5.542591733693314, 11.794153419942559, 6.306746862904272, 6.457326903262756, 7.12634113237771, 5.481556690328511, 5.405249969541137, 6.649075151941633, 7.797487346651895, 7.825401549519901, 5.318202390071343, 5.221573255010345, 4.88632304231307, 8.020740615004318, 6.43130712772593, 6.325521099557768, 7.349446168820114, 4.338660737485779, 5.505581612808025, 5.592970485999587, 8.798615529132201, 5.237488171939554, 10.594394254379795, 5.715052002169179, 4.6735682607013, 7.971257679358926, 7.299894049586885, 38.96972603731875, 5.2758315269479645, 5.113696491333731, 3.775044336533402, 8.129893101893854, 3.820313125790203, 4.959963451963028, 5.422482183571869, 3.2832248950255165, 5.740543190422645, 5.477462346394553, 5.473570871538589, 5.525645878343525, 3.752185864031703, 3.751303740123063, 3.721124692714532, 5.023321186625007, 8.38031717073673, 5.1239579926038505, 2.3302023390879705, 7.139790699074246, 21.497616555017643, 5.435556203781176, 5.176704985070293, 7.79787573150244, 4.521028767808105, 6.080250132000086, 5.332420007993175, 8.073383086088317, 13.205637867566988, 8.62767093861025, 5.72578698180353, 6.510668389427813, 10.585065838338648, 7.731353463486937, 8.431699284517634, 10.708520369621576, 7.400033816155474, 7.178219704631183, 8.252403717019654, 6.466241408983419, 5.094641239546449, 10.940621880670212, 4.7717347003681825, 7.057511568118749, 6.243025713333175, 10.815670232812794, 6.445672890405285, 4.338675771582244, 5.573754608090131, 4.141132673965423, 5.578290624459162, 4.141191668018304, 5.5807272220010224, 8.606967775941062, 3.352881717310315, 12.34555557487485, 9.148914662246261, 10.069355594803437, 8.09918144976223, 6.402456587091932, 7.431200404505195, 8.047753895722975, 18.372468871486298, 6.410343208403737, 8.057221458798864, 15.855149216926774, 7.989389885904581, 6.803059975369297, 4.4490729313668504, 3.6689024396572627, 14.24416018026874, 9.174549815789373, 5.198942431311214, 3.491802792045457, 6.552701023258865, 10.424259320581374, 7.017421884202655, 4.655753154517935, 9.116476755041768, 4.965540868309055, 5.222416035877895, 5.5669832206279635, 7.928447909286744, 9.752439553475725, 3.333323865637405, 3.440471024610877, 9.848322252008526, 11.322589860942504, 6.622933242241829, 7.739201342859861, 7.441235451247298, 5.447584126984307, 2.922190054879237, 3.266316450725862, 5.180977989438754, 3.4747686030916434, 2.5953064902926064, 5.063822741968306, 5.216970679606191, 6.206596174355607, 8.210767434990066, 3.0612060894656934, 4.97718771361783, 3.5990685393194384, 6.132849509817357, 4.3594577162426535, 6.270430509032529, 5.045501106378803, 5.687561575822431, 4.5990693292369915, 5.301520376195356, 3.8465944621686394, 3.1952908387559025, 6.17872891697288, 7.206003015011361, 5.33219901924592, 5.125502643404859, 4.013108074130903, 5.408381165923801, 5.328608362804302, 4.8643319926157575, 69.97567128076525, 5.020728071382927, 5.90346907076299, 6.314686155219047, 3.1352149227871524, 4.335771816160311, 4.83665937334335, 4.412063602220974, 3.9862611681672733, 3.5320534530248056, 4.254514718215669, 5.18721414695336, 5.546434613566887, 3.8988005302208246, 5.485022773404583, 3.055870449598201, 4.8652803963691476, 3.999057284034997, 2.5881765725538566, 3.457435730550485, 3.7856900545836307, 4.892889477258373, 2.6839215596568775, 5.9512203459012065, 3.5718743496009124, 3.8213842670853233, 3.1819029473625196, 4.854887878944636, 4.309661084994767, 4.175656338195486, 12.949804951716176, 6.354889247072918, 6.543181582582334, 7.19335784466424, 9.388788563968404, 14.97740344885974, 16.892605938728405, 8.566144039158381, 9.593850224020096, 16.659741846566554, 9.5332122577889, 18.59297657483312, 6.343985855349266, 7.664385902657768, 13.429336245347786, 21.04457118633304, 12.425932590369221, 11.253927292499318, 7.127007056497561, 6.6183031216854715, 10.230118106449188, 6.690107133771127, 6.992670766942032, 6.372388355639056, 9.054091257468885, 15.147685228818741, 19.64111026546567, 13.407916449866319, 10.529233078700312, 6.02703178534992, 68.37841325819045, 15.746161195469416, 11.318529934769119, 7.520203147263901, 9.79394886182841, 54.27159020410608, 55.37275464891348, 49.1753245966022, 37.13249235282617, 5.036607987573001, 9.353776700465168, 13.777048128461017, 3.981793554055116, 4.785296084612525, 7.181126003177115, 5.821891508098447, 7.3375509975815785, 10.672802493446195, 3.8904143416234884, 4.8189974177564965, 4.675413078580307, 5.743129340865768, 13.767144939917122, 6.989909912614704, 5.482152972353993, 5.473627151510064, 6.372093455824315, 7.815715711867862, 5.593071850968957, 8.672519055159528, 7.6821360393875215, 3.668896400632437, 8.069400883922238, 4.374437826595982, 4.193957053766486, 3.9213243132850497, 5.5518153909155945, 5.237634008822946, 4.21318648023036, 4.305443695802259, 3.539922895175314, 5.225275952410977, 5.121095383397375, 2.5754988605061486, 5.171356702558336, 5.793349242456746, 4.5434069762159774, 3.249420435531869, 3.6657587018387923, 4.696498891631528, 4.983930552104648, 3.249515751366358, 3.9282674509601, 4.439586799941747, 6.959543777777067, 3.8209504777971737, 4.712580619928632, 3.6963174389491398, 4.136943299998896, 4.316806738415252, 4.579892551729492, 11.25035961797148, 4.695545898932849, 4.107822281594559, 6.216084330785867, 6.17234018234669, 5.070082638087224, 4.20629863593882, 4.251946125582162, 5.608428526582481, 5.593186178830122, 4.658552400030285, 36.52780105176415, 5.822389373612233, 3.9699763770944054, 6.769635566640022, 3.5963078822464953, 4.462315444506626, 4.203630410804237, 4.679617695279191, 7.1926589959803895, 4.5574629352470755, 3.621468553455248, 3.120024733065069, 3.849604304292078, 4.008462398699999, 5.399464017322001, 3.305041631335219, 6.7241764121278225, 3.6458668762679998, 4.190093205762452, 5.769389900872443, 5.480339060517135, 4.205841154572831, 4.61832100410438, 5.629249374475891, 4.053490984331943, 5.859672516218879, 3.495980491137702, 2.406727125967814, 7.5627673640618545, 10.786589110008562, 4.904344561204071, 14.492014235203735, 31.162196066886686, 24.873965940316808, 3.9919253443618423, 13.657148052439231, 19.739248660862234, 10.844922183298504, 16.336664267058687, 6.621628138995919, 9.264069955219732, 18.970892076759977, 12.534349401754952, 51.20200661595508, 238.96734668109684, 206.1292222222225, 166.18646969696977, 164.72330303030307, 126.46633333333332, 175.59820113220107, 8.14338190779164, 5.40671948770456, 14.453162763408265, 10.263234173943172, 8.39846659926822, 8.174418601420973, 11.47341993287651, 66.75675360086011, 23.010530628596833, 8.73939135006478, 17.00221982291195, 10.00725145595183, 8.922250507144952, 6.243260151817996, 8.054778514949838, 23.223610665851012, 18.687412389297002, 9.468097268040982, 10.39405373811908, 7.57371475979725, 7.306450172718368, 12.996504869823386, 10.648469408584047, 12.411249629914325, 10.515591140534289, 12.600606584898506, 11.369184417546784, 14.645405201110044, 13.221088425299767, 8.145341082695557, 27.88616811122805, 8.544831462803256, 12.497791466066785, 5.941467314775969, 5.137408057982936, 9.42043273334496, 10.55502312864641, 7.706204693928652, 6.752586537093491, 9.333839202544635, 7.373830146877218, 5.733545453577934, 13.300935739702854, 5.641926216267806, 7.9783401244321865, 5.93934421886191, 5.9457581160043445, 5.513100165112332, 3.872503904192466, 5.136166646699429, 5.497922765407763, 7.6584810327899175, 4.6756815837064964, 11.238840476888335, 5.692188415480397, 3.7394097122789813, 5.051107637204209, 6.165176632876984, 7.386586996176825, 3.267550328108379, 4.941104089912499, 5.23752227544473, 6.727581434851075, 3.02853922772128, 6.596054811429378, 4.106486614988763, 5.786412271471265, 5.050655481854669, 4.327574812470192, 4.363318805852612, 4.26031603281384, 4.374826934757717, 10.425779824362786, 10.69934631019027, 9.734180780978013, 5.49008505883864, 3.188995651098278, 3.343047818837243, 3.8117119183448107, 5.3349644784246095, 30.66149724430343, 3.3432359425399922, 7.019954016466048, 7.474048740571071, 7.30210725078571, 4.353030097547015, 5.204864173721678, 3.5813965245336092, 4.396858983550919, 6.485273080207415, 4.8946363804775626, 3.884388755681554, 6.011428968214125, 15.877220482238242, 12.2650386719862, 7.101111909534336, 3.9406837356840962, 3.0206013976364376, 4.6321089987771185, 5.41828952952325, 4.342993132917415, 6.366184798371488, 4.031179526631096, 3.877723544757697, 2.823098693923612, 4.625309828015401, 7.025085034738171, 3.8838532776744246, 2.5806702019753014, 12.661151761635438, 7.836437108014144, 5.524638505462288, 7.593910211139057, 7.638955211884339, 9.863162065401774, 18.75751871244282, 10.261955221551466, 5.3549743903548785, 17.513054487563227, 21.785737111088142, 22.021498056949497, 75.3172675750176, 35.13135373306178, 23.805621340182224, 5.8288951959490785, 7.656862968764077, 10.592034583300432, 9.285565098843204, 5.185322132007925, 9.142714945163181, 137.6185833333334, 118.55473809523815, 112.541208994709, 160.3425317460317, 132.7115357142857, 119.0502817460317, 7.404307886604974, 5.289719177846302, 16.35605407013466, 9.857506519824325, 12.064548741780198, 64.80410044325619, 103.168097041847, 88.9997435064935, 76.0662803030303, 77.59188603063602, 101.5443149350649, 99.14150022425022, 7.339542988151691, 11.186135239493309, 10.061453348702482, 15.762293282709178, 12.534529381699109, 8.579298737036977, 11.170823682325109, 10.095378306069012, 5.688374928486233, 6.722472677159275, 5.787850154164311, 8.526613554980603, 11.22254204221487, 18.569698280861136, 9.4879307034661, 11.381825205485665, 8.243717644759657, 6.8265912344403645, 5.085417118017792, 6.445935124109242, 6.167298555764424, 6.592815140545183, 1.8838770958921378, 3.078942055600466, 11.385843104735013, 7.402468550954435, 7.0326799678868674, 7.746781331878381, 7.391480569007925, 10.762760223059834, 15.144499974672526, 8.140405100763704, 8.881829973998542, 4.344133372835268, 6.33053357278889, 13.927760501553502, 6.005478269960106, 5.58627885368289, 4.845822034968127, 5.044558789423421, 5.412224309516779, 4.295663568760374, 3.915763936712913, 3.864913875631648, 3.4720198670617695, 4.906333315031386, 3.2381561160528807, 8.8821767081607, 6.370444316825648, 7.8464598812016835, 5.190323769628619, 5.51585971139337, 4.5952510948197265, 9.170839706960857, 11.151212157267334, 5.298693655229908, 13.841627072461677, 4.610810945930906, 4.40751012004225, 5.4817044425882395, 4.039400616827162, 3.792410724682243, 3.5396205027235053, 4.803632456442182, 4.155877352960046, 4.4932685289923375, 3.964544159183673, 4.209244779636499, 6.5832263899323635, 6.845459366270227, 7.127115000086069, 5.750371485376712, 4.960917158523064, 6.418957852446203, 8.655672286138913, 10.359167770023523, 5.650682053646579, 7.367996413323354, 8.290494236963479, 6.582075397496303, 6.407377169820949, 3.8645030454487275, 5.952889831186337, 5.178693364089291, 5.462017175167031, 6.419405489926731, 4.231554971894761, 5.069341355118497, 5.099801815647349, 5.466672919260731, 6.23807454153886, 7.902530235149029, 2.7984531834213544, 2.937107645167194, 7.742039563304638, 10.363230784867758, 8.110095737908463, 10.29514035119353, 11.749763893318427, 15.261875718336237, 15.0748771408564, 35.7088690395218, 59.5541599310651, 56.383630679720966, 24.67864909496703, 34.40459398649703, 23.817184582909025, 19.036967773034704, 20.26753516457527, 19.934951872960102, 18.221473063086762, 10.905336890586481, 14.919653421970587, 41.23489413005012, 17.060376665334136, 15.232148416550308, 9.221784302785231, 10.885030342960773, 7.641585720860638, 44.72109179202254, 14.279654234034195, 12.336569987989545, 10.683465596391846, 13.066826083261553, 12.981977533796325, 8.4836569473972, 10.423347141851034, 11.08272795548724, 6.922802597967104, 9.906411092901672, 12.335889881576374, 21.412366741928054, 13.886462020124963, 8.413287793499446, 14.534225386657043, 7.983422225765939, 6.680810314869713, 8.517449027380728, 10.744861570314589, 8.454352712727365, 11.220760957747672, 9.087848950048503, 16.92934696066687, 6.782251744953979, 32.75885516965288, 25.42752638571558, 5.8708486049275255, 6.612938920433801, 10.367185204799222, 10.431729180164426, 11.43058988435953, 6.474019732831972, 6.424098368068947, 8.155846297024516, 7.217617917677934, 9.481724809638138, 12.726083265744291, 9.345533112293468, 7.595404680095196, 15.261880104112114, 6.803335199313136, 9.177214322714324, 12.708878404854001, 11.617015507374505, 6.03426575870882, 9.774453815454324, 7.329209819676519, 11.606107386322243, 5.812012995438438, 8.64421835053323, 4.570941870900777, 5.683995262388088, 11.28848133807535, 6.438988051985274, 7.585886315778548, 10.892481843525166, 6.0668057049361686, 7.29318562211209, 3.871123693526602, 6.40346129478116, 7.061078455887569, 6.8549624339199156, 6.842827737731378, 6.867880098550411, 4.053628045270882, 7.326056621146524, 7.462051141616106, 6.192339947689972, 6.763830918377863, 8.239570618233591, 9.914001522893974, 2.5341035136091805, 7.069210306829952, 7.423896125131674, 5.466380611526971, 4.6494784608287985, 27.707856949423114, 5.653742098442932, 4.506516714561241, 5.442143970818307, 4.736461013685397, 10.186837395162977, 4.332313895009306, 6.478311344093995, 9.094547750381295, 4.068412282963074, 4.858386848292428, 4.856099807142947, 3.7441771782970408, 6.222344088225211, 5.258172213234786, 4.236691580306826, 4.678333170805382, 4.185487773240894, 4.113606478545456, 4.527645868665279, 4.3426413409526585, 3.92817023414344, 6.585189714829989, 3.459940585045429, 7.012607974435922, 4.673233859166301, 4.832714992539404, 3.1559884642036438, 5.499744014078985, 4.398242484069108, 2.3161504116343616, 4.422472939023358, 5.532335944281389, 7.3357765216668165, 79.08068975869165, 4.553393284680665, 5.1907846212765305, 5.285464914422061, 5.249851700024495, 3.9850691206347415, 3.849576551288411, 6.328451027878917, 3.3004002754436224, 6.073218824741718, 7.7617557523688685, 4.926552227549255, 4.863736618550895, 4.29810519784524, 6.177960429281441, 4.817350772284129, 4.43637860721463, 4.809761605248855, 6.7635356450585, 4.193444243155064, 6.511990601098459, 5.608397861313777, 4.832888131497881, 3.7142483463234948, 4.85204868212348, 10.704424638011606, 4.857699129505945, 6.4612426977012944, 3.979409873254493, 5.777089487687668, 7.056151239879632, 5.5775520705642005, 5.035541227116865, 4.095068607821258, 5.438799115104688, 6.688885883876658, 3.7629577873781983, 6.430272066636639, 6.1386743533188595, 5.7943590992382354, 5.81171344571375, 7.442659906329555, 4.888809446569755, 4.891485083790895, 5.588248175112152, 5.625363330606618, 3.276454040226192, 3.362718759146332, 4.792045313170912, 3.5642384667741096, 5.222036925840905, 6.678134921849818, 4.47913919887025, 5.399375489575312, 4.126831085581087, 4.369255554915312, 5.677034537365792, 4.81682274608234, 218.35852380952397, 206.5821666666668, 208.95358974358996, 179.1167391304348, 186.22128205128217, 146.7733874458875, 4.376538700254749, 3.8768085993144172, 3.0197995185983486, 3.0021043968942047, 3.155425926902732, 3.6609180402205777, 3.3034975938577538, 3.4714995327632647, 3.222189773542454, 3.1599010988413414, 3.371314330166429, 3.0693896364703495, 2.921741265145744, 2.81308167759716, 2.076208557970526, 8.720651554245, 7.611670052930053, 5.259527943385375, 9.960868900957628, 7.980329308567723, 6.942200302404903, 3.969584897358349, 6.137327624938821, 5.213342019809207, 5.21208932417499, 13.111535766641516, 5.048652044087668, 6.480524672279307, 4.516584434088353, 5.365486532175825, 4.540975321060202, 4.6874232953502055, 9.748219865941572, 8.810235946061654, 3.878474458664686, 6.283862094862914, 6.767781900607578, 4.279832056442697, 5.585559393422246, 5.040441962835234, 4.46377877899698, 4.795504228271616, 3.6206107216678265, 5.531187275114516, 4.400178824453123, 3.8116151841450976, 5.608649107555274, 6.92537208122339, 4.430047463339452, 7.851116149741821, 6.5944066187058565, 3.130053205727156, 4.577628494761939, 5.922231302637891, 5.220745965093164, 5.401166020062352, 3.527875441896294, 4.81439087095123, 3.505294550670403, 5.430134045068089, 5.482004880554167, 7.9957491357475, 4.981592416743155, 4.127447644106359, 6.562144571420116, 5.684761604288757, 4.650484521230898, 3.957088970086996, 4.65594436450163, 6.4118313172490575, 6.01822173354415, 4.9710455474818245, 3.757625785100091, 3.3919816421291262, 5.179047672818953, 4.364023326398385, 4.374783331558208, 5.673773315914151, 4.038129923151515, 5.632973891068678, 4.295148561201164, 5.526659618980658, 3.421356114032078, 3.0884793713832925, 4.834093442080917, 4.6022347225314055, 4.743721430660236, 2.6927867786722013, 3.3070593960483676, 3.0247760585543837, 3.5676333173268606, 4.286590569272959, 3.1090576936566974, 2.772591483609037, 2.928405170357631, 3.241133023008519, 5.332977374432476, 9.334521650957342, 3.881427437614446, 3.4371721930859342, 5.007993275323155, 5.093311920832459, 3.2819750428507963, 4.154357513871347, 3.547962804097917, 6.003434406020806, 3.65319449707933, 4.463180630180465, 5.661182190481607, 5.40024131872868, 3.7617975981843643, 4.139120092808402, 3.0222699794012815, 3.1363028809930698, 3.3905841099161917, 3.4232559826940845, 2.9220815532732587, 21.563519625666686, 3.2500873622324775, 4.110306398278555, 3.076757285791605, 3.5046575309860484, 8.662850158481879, 7.338807305496129, 4.482055084257708, 5.685204084400623, 4.979854680735245, 4.143850674301986, 2.769056629082749, 4.017197204028433, 5.658696513216321, 2.6437570474258694, 6.156957186923596, 6.902068558908078, 9.712034380533673, 5.594575019758864, 4.968348718188674, 7.577857103472515, 3.5495994151237995, 2.1952134297514956, 4.8801029586729285, 10.503278227561216, 4.214859602235089, 6.19777621999339, 6.01437521836503, 6.790416569520446, 18.96773600521582, 37.785235430500684, 26.50912363840866, 28.674956785496583, 19.925710943195536, 50.224889885918245, 21.22426551216737, 27.341765804486457, 24.26669324051999, 14.185060336740024, 23.461134401583774, 24.63414817182951, 20.158779065700074, 126.11930982905982, 11.32209174127141, 12.534804014365553, 13.1507059548753, 17.209231567136946, 19.347143836844722, 12.467854839737278, 19.494512271069652, 13.096996559766223, 8.97847204254372, 6.124038709249851, 8.356056396987679, 8.38708416147423, 15.378079735206898, 8.928945020566626, 11.12270449126897, 8.673738111724576, 22.18799627496624, 7.410716339953183, 10.189619901902464, 7.736607160782966, 9.628825648234807, 8.423344681972571, 20.601150932400923, 8.892496747244012, 19.37987912195202, 12.455195703685689, 16.348561518043518, 10.800604681461877, 10.788007129169841, 10.05989505655786, 6.497367697014268, 8.127550586147828, 12.003075622126255, 10.045189972937939, 15.99679439294145, 8.882654343940105, 9.473398624027467, 4.982992503424196, 3.9270214325034516, 4.607234030913851, 8.708672950029568, 9.62871536977376, 9.218374583110984, 4.364080964936677, 4.7850854530065545, 5.222321044283309, 4.789776520579367, 5.631724661707162, 4.18250963577026, 4.936330291167477, 4.697888861395247, 5.713102704387951, 4.947847467001633, 5.028089650726552, 5.039472684625706, 9.836358205907652, 6.424936698292128, 6.605096239819287, 7.81363234959748, 4.8807347997562465, 6.695105552836781, 6.613925481729699, 7.683051102098462, 3.4464456323778, 4.244629188630048, 3.4726764905470833, 5.44185773047426, 6.548101939588838, 7.222206686138513, 4.225122722876184, 6.508217065350194, 5.980770013660026, 8.737359884911971, 6.363532735434026, 7.359872470642529, 6.432783151638745, 8.472710097371488, 5.667329063152154, 4.559126615418614, 5.752346636484123, 5.716159499660547, 5.481675432223609, 21.76559082252289, 8.675473046869381, 3.2913733977557027, 6.558432586617058, 7.0450972517768795, 4.809108124710867, 10.53502408687489, 8.218767513631386, 5.3044414781722935, 6.2463778192896156, 2.152002537967664, 5.117949614945949, 4.63996127082877, 6.0544511586115775, 5.114115151363564, 5.940591786339223, 5.684139440887796, 4.385536226847577, 5.6195978415850885, 5.809081543135491, 4.634404965650457, 6.248393128701957, 7.753025164835028, 5.248005281610571, 4.358469931195056, 3.5160391410042124, 3.6590957110092317, 4.438047818722609, 8.0966413583226, 5.661617038987753, 4.602820261392384, 4.780807428521827, 4.448153493217712, 4.296208913201179, 9.903052849887137, 4.925095275566317, 6.669543233804666, 3.6682790654824857, 6.660258288749244, 23.032626194468296, 5.336100295388685, 5.303085770572825, 4.533392653661858, 4.379005249069849, 4.204307087639605, 4.901171027501358, 5.3816067212766265, 4.647182081925036, 7.761249413813634, 5.103924533571479, 4.714544286231303, 6.394042754911794, 11.48824783047947, 5.000905935795615, 6.536964582853039, 6.186713924468249, 2.7399852239765616, 5.819407866420563, 5.081652532799661, 4.415863549366519, 3.861975633799454, 4.3832170269037665, 6.220306025441812, 5.982634351683464, 8.783880797532417, 4.570419628822651, 4.917317516923176, 10.016769368344233, 11.611812427826825, 8.471423838463915, 5.452989152903055, 6.769368585191962, 8.343653612272256, 5.793012831210797, 7.110971173203675, 4.628558488117489, 8.28079364102589, 8.320323312308322, 5.550867675022271, 4.832366611949255, 3.9870700722005865, 84.48786904761904, 219.83702380952406, 202.68450000000013, 186.42101914751922, 165.77350000000013, 172.61750000000004, 73.38107506382508, 6.487516100284548, 6.554573354991113, 5.8585452825503905, 6.728999312215679, 6.566745701660236, 5.143606368686115, 4.72445075046082, 8.576160050524704, 4.537362428861952, 5.68424547416101, 8.086447289182768, 7.371425402662372, 4.060931868590075, 7.704951208848413, 5.065986961842033, 5.372306848785276, 5.437935032650924, 3.497644133846128, 5.572007185189273, 6.466897632059084, 4.92397222743075, 4.167928158466366, 6.04633331635832, 5.868569631486716, 4.816448391823814, 17.779295971688715, 4.0697181265094935, 4.535109868914777, 4.3749976818858105, 6.851790579229252, 5.404510159126377, 4.34085124013932, 4.688167251482704, 5.835636131721985, 5.130186632709612, 3.417765565044499, 4.280350218537009, 4.200079062753962, 4.050384054133689, 4.650869682050058, 5.460720511871702, 3.84659223498649, 5.588322205643356, 4.3892417878363, 6.852363122725877, 7.207750285061191, 4.900387541958653, 4.767765226727861, 4.661940288407933, 4.322637176083917, 3.8817557920385344, 4.724528948082356, 3.7164206845579137, 2.752938916517456, 5.138039458615386, 7.006093611433393, 5.337193835624486, 8.900996156594655, 6.962096981501022, 4.383745485174384, 3.6311114881149766, 14.306560094867935, 9.68996789389448, 2.9601461558764166, 5.342200074127408, 4.63438019176508, 4.868352183400017, 4.948910349721234, 11.479035284350585, 4.007391386723003, 5.31062698309354, 117.16286309523811, 5.10732592182512, 3.6129583950460176, 4.789435884893134, 6.070804366618554, 4.504334867786612, 5.162390096611438, 7.775229524771851, 7.491341313665413, 4.0449037427257135, 3.6483879158198684, 4.994175078379385, 9.548259464843294, 6.074817579543514, 5.4036996889668885, 4.536805198168346, 4.598242038392694, 5.732135414827015, 4.33711849013644, 5.532704903681365, 13.026387789340637, 5.8096293445464795, 9.712454763594707, 7.515129244526408, 15.006596311590975, 75.07343733842002, 18.122125031627505, 9.838865947967555, 8.591706926237961, 20.500398909772596, 6.145868394121073, 24.891804902295593, 3.373626431798618, 5.04146067792253, 4.934386125969001, 8.988867961576085, 8.592411528664561, 8.200137881466684, 5.701684599344961, 3.58718052591054, 5.277911481327346, 5.116757821845833, 7.194383374535509, 8.971421438361409, 8.291731762304153, 68.48588247863249, 3.4739153186612675, 4.357731939111566, 4.367663293385389, 4.249585873998627, 7.989954023254616, 4.623485057727464, 5.325410853801597, 3.7812124066948476, 3.04140290060138, 4.860416774071578, 5.097396789927202, 5.361917673745581, 4.447465937104515, 4.476737926052443, 5.7554620341037666, 4.92098168708346, 8.12572868924877, 7.12851191467921, 5.600115043942985, 4.795849615326582, 4.797395199246665, 5.948907705257704, 7.00962806538106, 3.7843797475360312, 4.820267109381289, 4.179000090213575, 5.289062418850961, 4.3179155403690554, 5.3105873646206465, 4.903709766873073, 3.965499812272341, 4.113466699238756, 5.2403037462398565, 6.295107709323769, 7.726268845068843, 4.6089293248557075, 6.660394060459772, 5.052886567538741, 4.155527114235507, 33.65527946338163, 5.868542246732696, 4.255840736618292, 3.4790249065603644, 5.763977933403856, 3.9693045573773214, 3.172224245707057, 7.529729024893505, 3.126247519959159, 4.152315953138338, 5.134434093165695, 3.1108305912804433, 6.256779080385478, 4.819925617721681, 3.3707995620112445, 4.819799153818008, 4.617701202277706, 2.7091196153184525, 3.8870493926830476, 4.994511095636187, 4.268826412369437, 4.102785083650716, 5.176703870956702, 3.2652936024543027, 4.15962600829941, 6.441361933091701, 4.713772252639414, 3.5446035387045445, 3.465921327321887, 3.388498284196346, 2.955398879305364, 2.2637233793920517, 6.001470609338387, 6.676722126062487, 5.743057699387367, 25.94000711406841, 5.915220692075659, 6.743147819345343, 8.389892566092685, 5.078817596447274, 3.9137588965961942, 4.9080656249373975, 4.222632744039062, 4.6212502882775235, 5.4477859535960045, 7.682398450921999, 4.153659529237868, 5.1014076665985675, 4.682092091166956, 6.988289138251694, 4.408699930880105, 8.675054860916239, 6.781246764378361, 7.73535908828579, 12.985937877515022, 6.178367586294833, 5.3591531968026995, 3.6564614990640316, 11.252211139312658, 5.531582134598387, 4.6620717750431195, 6.41073998678833, 7.303141906151505, 4.244911812323229, 4.577685169394554, 6.324744081747589, 7.537124693928224, 5.536126635000493, 2.744409564235298, 3.3834206415697525, 4.437308107452022, 5.682851183363937, 6.041576111905919, 4.9464218830579325, 144.331354978355, 4.571294285698769, 4.897143244899071, 5.819224903363524, 5.904650768920392, 4.005705315476611, 4.21957511062605, 5.933079950491446, 4.855811475525967, 3.975045174312898, 4.214096851963972, 5.3950529442621535, 4.746958421357167, 7.082095467959102, 3.8042366036875115, 5.677910144666414, 4.546549457447023, 8.733683260851032, 6.25286035728082, 5.78225712320043, 4.731152168531744, 6.068439212738564, 6.0451850566695855, 4.737861474007129, 5.189485561395836, 5.365229829460232, 4.2949670605014525, 4.631821938390036, 4.4620311582285055, 4.063574008497383, 3.775761870418909, 3.3807237649784003, 5.0631240611355235, 4.382940145610893, 3.9933715744900358, 2.2296674143473907, 2.9227561240858164, 4.274956792132211, 3.5222050289249154, 3.188298058581771, 4.614441135478097, 4.148899179871974, 4.933136471527569, 4.5583142799781315, 4.944385591931345, 5.719798047757227, 3.593018001542468, 3.3306437553381745, 3.911716740770196, 11.066757380095963, 4.962464499913326, 5.660449678093702, 3.620996641328459, 3.812185338059194, 3.9393336392946634, 3.882826231915113, 4.492482490872637, 5.163030485154284, 2.748757128315187, 4.469573061593563, 2.8813407903838337, 4.045810684170835, 3.9011783380870684, 4.02990734684801, 3.748561814756459, 3.446595923925401, 5.357052727967645, 3.163480337843698, 4.977157904878782, 3.386894502169805, 2.906990892774877, 2.9296441964504756, 6.894288785456072, 9.193200144638784, 6.43895076438326, 8.020449968453963, 10.20882966294847, 8.769678527524848, 5.476589489965349, 7.670175180756946, 8.567456228745286, 9.09667322133229, 9.683603024412369, 6.166103336740152, 7.234869175492318, 7.227348613538913, 6.41031188269522, 5.497940721580049, 4.799188464307484, 8.123596282635896, 8.275714661865157, 5.085546726736202, 5.484624479216519, 7.258964281690984, 6.399275765249909, 5.828081972568728, 7.038935962970752, 5.341002682407411, 4.25169038010282, 7.3629414170597185, 6.163122345010431, 5.458258245773535, 4.541773017078752, 4.80291709189454, 5.711915193749337, 10.915496491271327, 5.067006994572138, 3.794872941100412, 5.496807847626472, 6.314841204953191, 6.28042477210364, 6.2537313484143, 7.201399004934563, 9.788399523729954, 10.218866981402272, 6.2941167122190365, 5.622346283418998, 8.025219718689996, 9.415819377709639, 6.5674747532700675, 8.147543379251745, 5.829650192866668, 9.583210491191398, 6.979190645994466, 7.702344880691204, 10.630518105133268, 6.088790258415359, 7.98617751449587, 6.6573058848412385, 8.491497932021366, 7.965821518529802, 6.127746784434482, 15.161804540426866, 8.910608679058068, 6.043205436134983, 12.142389035096798, 5.520444791582938, 6.791824521097053, 6.683751117838138, 4.691487862617105, 6.869906417971962, 7.890086566695883, 6.294278927765735, 5.154076255954143, 3.936938727736448, 4.0559441066173605, 3.6342230180357533, 3.497406363203469, 3.085556052684679, 3.3757482071168554, 3.723047624837195, 3.648164260727993, 2.964070045372543, 3.8456302272654694, 5.916362386207724, 4.375387817480799, 13.75068201470357, 6.4459005843719055, 5.071817452672373, 9.640158935212424, 4.178893511730254, 5.430790434641988, 4.716118116923257, 6.062925764837212, 3.279320900178542, 8.654941770020194, 4.327854068472271, 5.046236367694734, 4.786912281382617, 4.878969788881279, 7.575927344294496, 5.696537230378698, 6.304952338676334, 5.785846368407887, 19.894809733947966, 5.500590605062678, 4.257352363896287, 9.85666821154714, 3.7960267598967032, 4.474762618368569, 9.340911533404281, 8.466952939254858, 3.7272750946739603, 4.960246461984477, 6.804536603809988, 6.47581360073332, 4.541454345587819, 6.821960963969014, 5.026666936908318, 7.650804223927731, 6.070323906957918, 6.398825166081818, 5.436056390259267, 5.985872625022739, 5.387411297423195, 4.320329874655879, 5.645930464736331, 3.651507487099243, 9.004343281808701, 5.2228031096492735, 9.389341757065537, 8.73658663718762, 6.869560313880642, 4.872895935572831, 5.612127912151569, 3.9390129480782137, 5.913168233394416, 6.222144046831312, 10.93638973758776, 6.536288028955786, 5.459677676988502, 15.298887791231826, 5.420658329628991, 6.10986355896022, 5.5053554632982, 7.89412472203697, 5.55846931377092, 7.0171985782839865, 5.716477020387305, 6.155341033548288, 13.65988637791191, 5.216843386558789, 8.873153160030098, 5.966416393170936, 4.622922113894504, 6.123424682689856, 4.642882043951349, 8.1919273529404, 51.462205773343314, 14.574631989051158, 5.0486661167788185, 9.70540962115909, 6.689916102080351, 5.493259626063649, 5.961290760457304, 4.4938947085456915, 13.174720210596188, 140.2224826954092, 235.61166666666682, 205.49083333333357, 195.09249999999997, 149.93166666666667, 160.12550000000002, 136.90277372627372, 14.502040992890636, 10.156387175705616, 37.85819844902654, 11.081328682655597, 9.067567383591296, 5.802311549376016, 8.165811687770368, 4.406505233945343, 7.980607047575861, 9.200117998579712, 5.871104783242988, 5.408412288677813, 7.66388629131851, 4.887843274276236, 4.06995965007721, 4.4719523078457915, 8.583301517755524, 5.290175879887891, 4.490673847732631, 4.450142356666214, 5.724249339451169, 7.290852735412077, 3.4929570957785963, 4.214314888344227, 3.6328506601416555, 4.854753882119326, 4.741243290000104, 3.9706371115475, 4.958328943660623, 3.429006764341695, 4.680884348757502, 4.295832458263375, 6.939000066208228, 3.963629356482264, 7.051990281354536, 9.781483301683707, 4.910238558402753, 8.02729643794455, 4.968159819742636, 3.4039314965982763, 13.003085127875273, 17.312361459796243, 17.343166302779338, 21.66526630130096, 19.207033839228263, 18.03053481403237, 12.15604231061364, 24.97175404820497, 18.473688515406156, 18.502267042614214, 17.492388186976427, 4.408874815811053, 5.200589882497892, 3.265344486413436, 4.150205494500041, 5.281596512908808, 4.479181499995422, 4.006109995126432, 7.160447631207469, 7.593311050644461, 4.431686278382602, 5.026216939435095, 4.254749426938451, 13.922276414349254, 3.049180234551613, 4.085301908769142, 5.968804800758321, 6.813244445813855, 3.65149012870023, 4.6164394577998795, 3.569418602577581, 2.9652115270081016, 2.835090530465346, 3.239599625431157, 3.425301545718303, 3.3127203484514403, 2.9712992141191727, 3.4563069760553446, 2.663376250131092, 3.0486732283030644, 3.5275584680881913, 3.2208149368057177, 3.0556215256879455, 4.558594063512832, 3.6782322833324095, 3.3559484485983, 4.010501623163429, 2.8227569578161527, 3.4838547461951057, 3.662218710017806, 4.4051016142509605, 2.9622620446894614, 2.330621540215717, 3.5230654889028243, 8.32374025043715, 8.266939635591855, 6.817671644969853, 6.027419416071854, 6.145058314204303, 5.68825880123285, 7.496106354029265, 42.85311043322936, 26.88556291193702, 19.582625738021864, 8.805217887117376, 8.9438727957838, 8.918308470261223, 6.072689587601431, 77.87095670207191, 5.4278428080685694, 4.3882077908135715, 6.972848568978416, 6.924102406533673, 5.543972754469504, 6.923641238481456, 5.0961509783367225, 6.208831655257487, 6.395603749640776, 8.144561193599788, 11.522885542765705, 5.357551478463659, 5.955465578286734, 5.6287327820522375, 5.96206582466672, 10.392651684162496, 6.941321213212771, 9.8008112121853, 10.681465352504297, 12.295806333607143, 7.591064237274143, 7.846024303288662, 6.623518603208976, 8.258418208489896, 5.815849965935775, 33.60416467317729, 16.48740484663924, 5.040320019427036, 6.917819810292486, 20.67409451291932, 5.9262819003356055, 6.440648175492485, 7.018051515111125, 5.779721611610097, 4.596640305655321, 15.317106104712078, 4.106799285489253, 6.1988851447184965, 8.861418961269536, 6.329264093546425, 7.257397760353697, 7.54727145906178, 4.9977720618195685, 7.773899091402463, 8.048672923842657, 7.031910121621609, 6.8498945982953705, 7.312547277412293, 5.103051254904868, 5.727031288250965, 5.495417644862869, 6.860323794899096, 6.300685539381282, 4.799981488764055, 5.580369411070357, 6.306975465141236, 5.070357780820191, 5.314552521590089, 7.52590399244792, 6.374319270153411, 8.488825066168028, 6.048069389450377, 7.964899508992109, 12.765877246637398, 4.342085106923692, 6.386198641998517, 5.851335481577497, 5.868841369010625, 6.393225940271619, 7.1554677813350365, 4.711811903744689, 6.168342299943242, 4.802043461540359, 4.925973320260932, 7.7588464603268, 5.97918403626026, 6.50545032856234, 6.550616957799576, 5.432761989489803, 7.442159913296844, 8.166599538265649, 5.77051803927483, 6.351370336183148, 17.688610946541385, 7.313678695388547, 7.408610392023436, 5.683732000127858, 5.838299667918339, 4.798486309770971, 7.481401597474912, 5.599150059968961, 5.778182426687393, 6.263167171073398, 7.7238762930216955, 5.066952696755973, 5.692679128275217, 4.538931788770879, 4.937629204925281, 4.5512244834873306, 4.707590392575256, 4.511255675867455, 6.311139814656299, 5.187668627631042, 7.336669679565349, 3.82012140702786, 5.217009683409349, 6.990486685512676, 5.527204324540577, 5.631161510049979, 5.3118561623231555, 4.309586434428101, 10.780502608039106, 5.487369452312763, 4.426581812160327, 6.949076497637695, 3.635886059882932] disp = [0.0, 1.0000000000000007, 1.0100000000000007, 2.12, 1.4350000000000007, 1.340000000000001, 2.321666666666666, 2.0316666666666676, 2.3683333333333323, 2.879166666666667, 3.3273333333333337, 5.083999999999999, 2.140333333333334, 1.2429999999999997, 1.4397619047619055, 1.7491666666666679, 2.538452380952381, 2.0658333333333334, 3.079214285714285, 2.8474285714285705, 1.9941666666666673, 4.450083333333333, 2.9205277777777745, 3.702979437229435, 2.658137085137084, 4.4726746031746005, 3.839746031746031, 3.3189678099678095, 2.9636269841269827, 5.377579365079363, 4.0060285825285815, 7.563063492063491, 6.33301154401154, 3.0978079143079134, 2.1000019841269846, 2.9141785714285713, 2.6998888888888892, 2.765611000111, 2.911739014253721, 4.560448763225076, 6.077493629908105, 3.1657896642830856, 6.34390017825312, 4.3405988455988425, 5.9032899877899885, 2.5092222222222222, 3.5923152578415736, 9.48864069264069, 3.723676926101075, 3.4131574259074227, 2.4298333333333333, 7.095606906981908, 3.318797312704346, 2.502650338791642, 5.239124216524215, 5.329671356421357, 2.4957206127206124, 3.901994633144634, 2.6237625635234334, 3.3191588689088682, 3.1193805418719207, 2.3415858669108673, 6.390380480630475, 19.819916666666668, 10.497490989402754, 7.974378787878786, 6.125751165501163, 5.37339701498691, 4.091125056724318, 21.338111111111104, 5.196860838507897, 4.012080182072829, 4.649537130705548, 4.144909038673744, 3.2136560789060775, 4.689596625596623, 3.4554180541680526, 3.761752390725216, 3.284190681867152, 3.2677080550168776, 2.8911378953004334, 2.7785666193112, 3.0365682737025605, 2.385907166005076, 4.005372493734337, 3.586768616204543, 2.4893388439128508, 3.114365979913804, 3.454159901476605, 3.071876349978523, 2.7089364598225907, 3.274852206733239, 3.5293426204604987, 4.553636157360012, 4.3378359704026055, 3.428910328852433, 10.707112637362638, 6.861177493802492, 8.977926003734824, 9.983915376290375, 8.485586633138105, 9.271412143412144, 4.057765794084062, 80.99969841269848, 2.940905045947728, 3.352953396217204, 4.569377649263704, 2.62182867515626, 4.076285077325775, 4.048624883286645, 2.467870608748917, 3.9066555788982242, 3.7706131368201796, 3.2171583800186734, 4.543045221118748, 3.6940825741442014, 2.7093083630688826, 3.801072982572982, 4.001140316801005, 2.7984827491680426, 6.416973532358593, 3.9279119654854933, 2.351920061476884, 3.7966856000989626, 3.6806493438594488, 3.5346784615640088, 4.346462938377898, 3.9628355895281433, 4.067373707573528, 3.807650377199289, 3.5915294812342786, 3.0644267993058305, 3.8449709608176574, 6.445341132615198, 9.117715569555429, 9.168892127543549, 5.601292842707085, 5.204427758016948, 4.849566972391554, 5.829847360854443, 6.616381426765248, 8.17082959604683, 5.487870759740769, 6.633301477517841, 12.200131799503113, 6.590492281977394, 6.033636128818065, 4.565165520573958, 7.615716499813639, 6.936568745882851, 4.693561068696723, 18.409496614671617, 6.286702590774688, 20.48398024221641, 8.515179967673069, 7.914320025706911, 4.980796006270561, 8.016138345969718, 8.249904537232315, 7.157535114038616, 5.92453456403986, 7.825909778050105, 6.057816589891257, 4.939155515490114, 6.659040927295695, 4.640145620893997, 9.51305630907159, 5.820224496627461, 4.695524791700048, 8.390174459204399, 6.166350877532012, 8.126117020607618, 8.832385731582502, 5.25281072797616, 5.433196415512034, 5.50478409123169, 7.387212175378047, 12.358660244507192, 4.865626469842916, 10.620090799085178, 6.499388724669466, 4.992530852229127, 9.624549280375433, 4.753426687027803, 5.849393758507873, 4.9189051358147635, 3.940366603241273, 6.654747258120298, 8.255036497404397, 10.557001044821266, 7.374377088067876, 13.146336057416924, 8.013378932429365, 10.171746561192103, 4.178323767825831, 12.213974484996577, 8.537859578330162, 4.050170992196061, 5.898043388460396, 4.2595716008566535, 4.022330576075131, 9.098268993647197, 10.625533394599739, 21.761220134784374, 16.051792429649552, 13.504932726156357, 18.952940031480303, 5.579513863169351, 2.5568192780913352, 3.470871406226239, 11.756179359710664, 10.582706162144241, 7.477628862583557, 10.485123999792474, 12.151402688241507, 7.9746148151959915, 13.662280405052465, 13.624257316571802, 3.26432983910447, 4.278895825289147, 7.556711574392341, 3.1446682692630636, 4.091989389210855, 6.820217194594627, 3.031116473683492, 2.989269384744144, 3.8190672401786943, 2.7824239033042724, 7.832412588722024, 3.8981390828894686, 3.057921903744181, 3.496352460608245, 3.784810208487976, 3.3969000993667593, 2.923712578321182, 3.6113856890737535, 119.18435073260068, 2.9224225227628575, 3.00636124175227, 3.181104694924858, 5.039719669030694, 3.278984100245013, 3.104015432874386, 3.5243414156962736, 3.1184358391984555, 3.3173942136286487, 2.6132135915050188, 3.045159984279027, 4.994257751065591, 20.82522359280424, 17.881683830067413, 4.3609208789948335, 2.6955310334818767, 3.1629537454910555, 5.546474951010437, 2.7217295700261945, 9.835830234782879, 9.203495903138386, 11.333334290134172, 12.30469632771173, 3.289994159451941, 4.188647434323345, 3.493871748870853, 3.7394547801504268, 5.699874917284373, 3.103165934930237, 8.842440803598501, 29.48229105873595, 30.75227841325503, 14.043731171930247, 14.829508222918088, 73.42750101528824, 15.28924310625149, 64.37372658822659, 73.91791001591002, 34.480747981246324, 48.235858153317544, 29.238639377674883, 15.505320481661604, 8.176852670601125, 16.789735300036284, 15.115631872589368, 30.389418516279573, 18.068763978156873, 8.348273478659806, 14.000375998393066, 9.648494291193707, 16.722473813291323, 21.418748795613396, 16.155778691530283, 224.22144230769246, 7.907681282146575, 38.679912398009705, 11.054111154007796, 8.732575951106925, 12.027991336192136, 9.356316547937437, 20.777812327485623, 8.525382916823638, 11.66546148222659, 20.567304294328245, 6.023899753654691, 10.01124212294589, 17.077189211331092, 12.238774189408087, 9.052240266694064, 17.21415613368684, 10.556501480103083, 9.676102703785235, 9.059978022569078, 13.937803499952258, 10.356029476480083, 4.548590096150444, 13.150422045266314, 12.885372091813492, 11.986898245661436, 47.11944300969206, 95.49076163092968, 103.98198030201243, 28.798982505389958, 12.286932468610374, 11.5252691008222, 9.825920742602811, 22.949949873646272, 11.650690309263956, 9.048402821358508, 10.174191476951213, 8.060653291185128, 10.583649309188267, 13.141566168669499, 15.495154512144527, 37.49713350684403, 8.99174921470266, 23.079601699901193, 25.979537891214697, 27.01484446153404, 17.601127394293055, 26.11275618825619, 9.965902378141868, 7.6334828302872415, 16.19020759387397, 19.49910203699577, 21.615329577475865, 34.36845177045176, 13.886356844964991, 18.535542886770997, 17.313655871281313, 14.580883865200773, 18.901203421260544, 10.59825480061842, 10.466832780146243, 10.916946588500409, 13.66849403520456, 16.28730167673457, 18.27446627713434, 23.183496687952562, 6.8940772698251775, 14.779958906764598, 16.977841547439088, 8.697503495589224, 12.041712662534847, 8.377980134020275, 20.714420714987153, 10.427549738301044, 14.476087169706172, 12.255199083210172, 10.465268391345722, 11.667094870948588, 6.549266289736414, 113.85838891663889, 8.951614540689823, 7.983875518785952, 14.94057514420187, 13.182309666597591, 6.591576996472799, 13.339618704870931, 15.208083168913577, 15.419261740497014, 10.618062789934168, 9.205429889408949, 9.560569631757128, 4.806027472588513, 7.073773320511576, 10.315338668821438, 5.153313604451102, 7.995099927849927, 16.065993309983728, 5.243860640434675, 8.36800292092108, 7.093546142088389, 8.564920574293918, 5.698189947341429, 3.4190394124096417, 5.55220999751905, 7.482928545482728, 7.717652876058804, 7.614513402526215, 5.432688511909487, 3.9489175609207456, 6.2887543119032685, 11.208513732863668, 7.468387018586056, 8.349956601703184, 6.393429026651977, 7.792728317681036, 5.410745626622264, 7.322594181970172, 7.294464373515521, 11.75176969133084, 9.647583321757564, 7.218893236912896, 16.11340515879059, 10.344745695407875, 17.323405108160507, 5.949041943217985, 6.556981112943162, 5.963870293333078, 18.609535925693717, 9.66986703289606, 9.11594541183732, 15.910876949755696, 7.567020461321217, 11.989306584387483, 6.786333113583848, 11.60810723506178, 7.9067112261395005, 11.98364393655603, 14.150471807670334, 6.474297259611242, 8.966874007763524, 11.550396425617851, 8.747061523822214, 7.479351035782078, 9.036093044233864, 9.562185319377235, 9.162058134434366, 10.090352503031475, 5.973097868873344, 5.378980424365781, 6.612545228110539, 8.028991556716253, 5.396686534300143, 174.60416666666683, 233.99833333333348, 211.06916666666686, 193.32907575757582, 161.34950000000003, 163.04399999999998, 127.08589787989784, 11.731863125193629, 9.278985072483527, 7.71525532477089, 8.510697395402095, 8.059310396234395, 7.6278882795651315, 7.214830226035958, 6.626663217880604, 4.69528932819548, 12.69116392688826, 7.983962287100063, 5.177940688687798, 5.390041365037046, 9.466299420901931, 6.1987300170362625, 7.838244667530535, 3.1138225150550194, 5.255175584978303, 9.49707987773806, 7.18340774761326, 7.962680175569181, 4.385991860958862, 4.283513477659387, 5.3639121131168706, 4.960532577626408, 7.264199760389467, 4.310614532449741, 11.768175361240068, 6.068427976530445, 3.334576897223187, 4.312950536283448, 3.036041048212959, 3.2189515498317354, 5.602416648213551, 3.5130813898343316, 3.2434658812420296, 4.159592388049567, 3.1400443091781556, 4.244874576505413, 6.345194468704714, 2.4802230296910723, 3.88714469555972, 7.74000744204858, 12.725290751363325, 7.9105525991895975, 5.717120265212897, 10.69337493715435, 5.942013310200381, 11.939233040911716, 10.254928532449245, 6.25723041158955, 6.873202575356712, 3.537656919361941, 106.66536796536792, 4.87976275448326, 5.519435174460163, 6.8897659724802205, 8.902118019258678, 8.27936679722023, 7.574631303441873, 6.48602722885929, 4.91815939433602, 3.6753903629045857, 4.556307595636024, 5.571888063420655, 4.790645772026531, 6.04982695376114, 2.795937135479801, 3.8357295436243364, 3.887659753727131, 2.8506886024037557, 2.8049814706817657, 3.5589308784457345, 2.9748695974554353, 3.5827764220986063, 4.909773086855466, 2.6673383377662008, 3.3417585802100302, 3.0585400874418998, 2.788051336483399, 3.7589124435710635, 4.007270972363271, 2.632801953644354, 3.4042253612400657, 10.751045152196443, 11.776324827948633, 6.056502260722329, 44.28372798474263, 6.317793250641538, 21.706107263191303, 31.59047779029027, 9.277544231813938, 37.83220377222659, 10.27503827756777, 21.574379385841166, 6.958970940511594, 20.478715830754865, 11.04133823573891, 16.29816010380373, 12.911721157890607, 16.035972946228235, 17.66144355966106, 36.843208577813265, 7.53762406274531, 5.948818360091065, 42.40473286088036, 7.70974207182962, 10.478497015141699, 16.734233732511147, 28.802092504241074, 7.209381362655812, 14.461281517170596, 6.423906846119424, 7.787250565788069, 22.981382999682033, 11.629693433904244, 9.417115562093406, 18.561957966574195, 10.05553436938225, 7.128400960184572, 6.594705804025538, 5.901843930067372, 8.291545604475266, 11.489924282206577, 11.815867867340716, 4.725248978286095, 8.08951810032382, 9.241853233993242, 7.045258832298833, 7.687330479781722, 23.956221016272274, 10.471478479487503, 18.098240352209846, 17.606449204410143, 10.105379482014845, 12.854775290108332, 9.23744172213421, 8.74557144325356, 9.177644114004902, 5.519705191011467, 7.418741752977381, 7.083466883663506, 12.507629688329828, 5.017471938902172, 4.873328187391246, 12.683889344330774, 6.8227906903032665, 10.731085781884595, 3.929468263871377, 7.192409029632221, 5.161941626540998, 9.724777033416622, 5.585253284297401, 6.01998224450474, 4.201729885535191, 4.856309691854194, 4.22971227822807, 4.738050940605287, 4.7996818226631035, 4.2465234180383975, 4.11535693572394, 6.459025929739846, 5.903123411411382, 3.9842252998151637, 10.184273660805879, 3.697998730697491, 6.083719533055416, 6.269044316902865, 15.435081059328327, 5.451978730589507, 2.9262692506272363, 2.844004516488011, 4.237481186788659, 6.719286979268829, 3.2650973328087365, 2.9830267445080723, 2.7522368626112295, 2.3694866555061482, 3.82050971974113, 5.224707199661411, 5.275222222161594, 6.297104071317178, 10.760669259035542, 9.127398914606266, 6.682219520334646, 5.320801239949274, 86.44477329215042, 2.728577537732659, 2.4399822864104603, 2.8619097125861344, 3.7178549135260246, 4.5301096189388765, 2.5011719092168136, 3.1844194389806413, 2.2602009097374096, 2.905813362768929, 6.307919222199576, 4.54401540479738, 3.1178216874369094, 2.580119368655104, 2.8272986845762254, 4.533803572336353, 6.092012797157732, 7.285000386309595, 2.855519278048042, 3.5933724051610616, 3.811131503289191, 2.643038415611756, 4.544020623603709, 6.0839966374317545, 2.8553501664818013, 5.013653535545096, 2.5350008281484704, 4.281968560768198, 5.89305111534756, 4.81498719737968, 4.8096861492089635, 17.787806327368862, 17.269353346373947, 14.339885364701644, 7.652279397533429, 10.613502256497075, 36.9823029254661, 15.80334006921537, 7.755692410933149, 6.526167175365253, 7.397099681996608, 5.6869296127776465, 6.757532378852131, 7.036142237929958, 9.78278478163688, 6.055405432521043, 17.177247129353926, 20.031476832142662, 5.284856086292684, 7.2721728587408325, 11.054992749383283, 85.86094444116216, 4.732734624638791, 8.600055861242845, 7.235651758517294, 21.589361592716095, 6.938368929631895, 5.963587975227928, 7.242225995847706, 6.650178557083184, 8.814987573654752, 45.45012269568681, 6.28941324827764, 4.906824701076254, 5.027108773521397, 7.605908873479863, 5.154766170174055, 207.24857142857167, 4.3832119627356265, 6.820098772105746, 8.593816318581613, 4.663941747014286, 5.3937566804969315, 4.962318758298156, 21.52985657691151, 19.00416079146971, 8.746350750777108, 6.728449084251894, 14.180746097736057, 17.805778045594362, 15.308148571005283, 5.117893226240918, 15.344771563964324, 5.009530729017968, 7.211479539109727, 5.826710120507227, 12.0084344700577, 5.075022251477723, 11.03078511513014, 4.535244667402616, 12.049199674269682, 13.360466596197849, 28.27823378240379, 13.22570160979011, 12.769833567957281, 6.320170583321049, 6.799616462132539, 7.343327054232161, 9.868130713223845, 5.316975981959326, 11.782964573422385, 10.609216348870692, 7.135440175172777, 5.660533966579967, 5.315280366304335, 5.027558666021856, 6.775364728144659, 6.911611167341429, 4.99473686640424, 8.927424747886265, 5.45059877388294, 7.458237893951594, 4.484594534438785, 5.201641075109224, 5.7388350273910165, 4.489316270664919, 7.6354090952906715, 5.3856067109503405, 12.317352942700124, 11.55519753914778, 4.806257733701911, 9.887769719944139, 11.722258802512117, 17.98275127730811, 8.973036732609316, 5.371710770546132, 9.631009473742672, 4.999715084000609, 4.392798549778114, 5.107856688869572, 4.8848528243444225, 5.9504239335226154, 4.745806018078514, 70.50863974152679, 6.314547171817081, 7.361286650136629, 6.505760048161702, 10.855209373688972, 14.858344317786912, 4.341375653927538, 5.353678017262332, 192.11583333333357, 12.191602289103285, 15.012329694173077, 4.483257065593122, 9.191527303896704, 10.135231559805389, 6.808395770873636, 4.7954129269161845, 15.901689499477227, 10.210545776994504, 10.967293183641893, 14.83202577474089, 8.955137518375993, 13.682544260489905, 5.024137321696226, 5.307730807717704, 6.255581084954538, 6.953287039172173, 6.536041012427412, 36.45846862383677, 22.14916212005339, 22.21496744135189, 17.299278028480284, 22.217594690809033, 8.635782847805729, 6.376740672160792, 12.410337319726926, 10.616256126650184, 8.381642422134433, 4.789633817292436, 9.609150468274366, 7.052109467740046, 8.54556732583827, 5.658435890650165, 11.3602102282793, 5.313768388856593, 4.410850997260456, 4.737559839173567, 4.939455158665866, 9.756721970029501, 15.92476161324036, 6.247549780231525, 6.315176410681648, 10.577133276397022, 6.001289266090632, 5.969019697545047, 8.841448309237522, 8.701971665077815, 6.887276954247722, 7.379809076986754, 3.8878635082460935, 7.407172866143153, 9.855034440087133, 7.641830141434693, 7.973394087941875, 9.752399642582477, 6.653192409323272, 7.983414485255315, 14.502774194537349, 7.713188694327764, 8.193441878537206, 5.616424758020552, 9.573251749231158, 5.31392062344488, 9.503195780914973, 10.09380876068376, 6.809963203691074, 7.895760936774893, 85.95865649701182, 27.861245697107176, 7.809730221482813, 6.21453075094728, 8.051327927530462, 6.564348771326711, 14.494951122664737, 11.268625717063102, 8.81744151273563, 3.829658819267387, 5.383144046667849, 4.486495586870536, 4.246756679541481, 4.099847516133981, 4.505532531418106, 5.0854158268202365, 5.477803857404459, 6.222142813670679, 5.532162191130481, 41.711740863729, 5.3955406221273865, 3.7868360311198797, 5.125758637514396, 4.74489830304576, 3.396863632513766, 6.146510185959777, 5.898421769500341, 3.7862011592261964, 2.6751046997762127, 4.7586517729817706, 78.13646374458875, 4.2260379743769905, 4.2423749736748295, 5.326989157655968, 4.900963978344367, 3.3607534168714657, 4.100530162890816, 4.8238037828629725, 2.7835957233174398, 5.481948472945847, 2.884258254179045, 5.82711815961816, 5.063818185130225, 6.376686700504812, 3.3657553835834007, 6.208762453008086, 4.758648465386951, 4.167962867522723, 4.3001273262636275, 5.807674823563494, 5.1544329453359055, 5.069954353605283, 5.1861000000825515, 3.3219024499107723, 4.133047997302835, 2.9758294585770524, 4.986101421110709, 2.9822641352960817, 5.068838548406195, 6.313806343421532, 31.06252845320563, 12.884454843599064, 18.837108815363585, 22.57707631843599, 6.498494003004896, 4.764243266805258, 19.87595616368327, 4.764830078879035, 4.785668510620933, 5.815338113677249, 5.601307084742271, 6.371128074404287, 6.469696297073851, 7.745283148076854, 5.928116924576861, 8.401547271073584, 4.882982157160762, 5.041060121810648, 5.329884837754451, 5.682900072430275, 8.484177956971221, 5.110940161898405, 4.695785130712322, 11.037107071389364, 10.808731344907866, 10.683380406754665, 11.698017462132302, 14.310485953206351, 8.312278572249067, 6.383036963504773, 6.092733629317994, 7.297224093173497, 4.116681949494658, 5.574779242800103, 4.327714775546863, 5.652705408847884, 4.401940919904315, 5.286934006313398, 5.534318443030572, 5.173131664319197, 3.792704050928543, 5.495916485747067, 7.015615236095931, 6.2035251350360605, 7.763961763122783, 7.9850910169448, 10.14656541696114, 13.731195522364397, 23.887347875833296, 11.546169565453278, 22.544538351294896, 20.459941957372845, 8.491328760642938, 7.959242192666889, 9.063442990519352, 4.6982235045350835, 9.007038552399539, 6.875822950857446, 13.746153638821776, 12.52472501188352, 10.869135269776615, 8.42284411895649, 7.421280179411891, 8.990523411743716, 11.196356266396629, 6.309910409475075, 10.280718120759534, 15.858711095921622, 9.408312169811461, 7.068336589446655, 82.35165035674359, 5.853219790036188, 7.844276393143162, 2.9030442590298393, 5.883211977910142, 7.406071678581094, 5.691690812739746, 5.1492087335058985, 6.024565100485499, 9.535732892924068, 2.768025148266114, 3.8721901349488754, 3.8757381293403013, 4.098562192469141, 6.492402486865218, 2.875082108544467, 3.2998795644293053, 3.352055773331482, 7.380465244179654, 6.643368475075974, 6.946712938503714, 6.976396891279791, 7.970754721174082, 7.51889213583527, 7.650683945200266, 4.434370016041782, 7.473575168280813, 8.078957687937194, 4.889029609001486, 3.6610775048363053, 4.15725363440641, 85.91843956904286, 2.9970653284686195, 3.803896703376146, 5.314097800891918, 3.033088450952837, 4.515946934474492, 7.244644981867926, 3.637630057652427, 4.455844608520595, 6.589046318105902, 2.601882800171455, 5.68385565699021, 5.198262391054714, 2.7452327967699124, 3.635046542468327, 5.09446792109648, 2.9448230377419278, 6.232880035196209, 9.517586067520668, 2.492025467153987, 7.204252634744612, 8.402733650243253, 6.3188117870913665, 7.450456643915745, 21.228212393698758, 27.65201934359858, 69.41046260653694, 17.460998460461905, 23.969705158857927, 20.612399594657415, 19.77806583894271, 28.951271449278252, 32.665310912935695, 31.633149320368137, 17.25230523663994, 12.937577429786968, 15.012049161108042, 16.522237031991473, 34.72715516090487, 34.32610310959488, 20.220653194270024, 16.813313900078416, 18.314466679026662, 40.481713631606375, 15.46658770850093, 21.78128917165306, 16.99448412032879, 22.659363157218642, 32.19862752990673, 27.451397801250078, 25.161200200878508, 40.7567494700226, 35.405446682975196, 29.004613583399376, 25.687752979265305, 18.388114513392708, 19.755145466400187, 29.796895314001983, 13.274972754731794, 10.748618527967341, 14.514907576286273, 23.920158991461324, 13.699378258955022, 14.02454508048001, 14.733661250721338, 12.742211558139154, 20.121078597330566, 27.11368053371162, 12.0982981521399, 14.57925437035633, 11.20260270100645, 12.529192405330171, 25.824285732469782, 18.531191473851116, 9.326912738512464, 13.805483407073748, 30.597128981373366, 9.959156514310957, 12.161014445072393, 18.269756833357416, 10.666920491175008, 24.161787592500705, 29.20846922860577, 11.846845416923657, 14.956254273049826, 14.590170573677891, 12.033126820719433, 15.44830886257407, 25.501834296273902, 38.710183425058425, 14.324325578988296, 11.931017964930666, 28.737387556720336, 12.521188119666567, 33.155434585489715, 22.824151589423654, 30.228221009483885, 28.929460587917845, 11.041686989379704, 12.864729729246083, 36.941001176096755, 18.319845709021468, 24.85046711129952, 9.351899095351518, 19.04663787717987, 8.171122725843276, 4.795499051018983, 6.480576561376909, 7.847812400631713, 19.726226029792937, 17.30615970517074, 14.892369417222403, 17.590230650233877, 13.225780955095852, 19.293138942635835, 30.631544434157934, 18.541155883964063, 15.886184787877756, 20.3636211892464, 23.830972784880586, 12.861282472850142, 7.988906769615277, 12.170256401271306, 14.27675711225324, 20.955242680778436, 15.73053066677182, 17.258652411031687, 56.32444993907061, 20.715458918283694, 18.62721072982863, 20.951555072383847, 14.245186824008785, 22.8175617357524, 11.159098565171076, 10.372252578092825, 15.400671564020282, 20.03552171492114, 13.522203250365127, 9.180334545958697, 9.719530877622345, 21.00766362513813, 12.928938090903358, 20.026445106276952, 8.786441664529805, 16.40285405855866, 12.89553989228425, 10.228254522762843, 7.117835597229963, 18.912704816100998, 14.198025483292968, 15.678418479006071, 19.850069787163292, 9.922674300789328, 14.72504693416725, 11.062148249725924, 15.392970869245131, 17.41671109030749, 8.507120709918734, 10.283072384079011, 22.445202525284998, 14.880285675122863, 15.688844035788279, 11.915692608874322, 9.150154688418596, 14.399120042627873, 7.622939091675897, 19.952218554073117, 15.731634620864813, 16.024575999652665, 7.120383808580711, 29.33335715326459, 9.732978421239942, 15.96000041489482, 6.889724528018969, 8.656036955604042, 6.381191758072826, 6.639740957669218, 11.220161247488791, 7.807937117457534, 3.7472305722850345, 5.46342538156194, 3.5980085626221547, 4.3371529191693705, 11.752805922857794, 3.997415195873556, 2.748948845587517, 4.416444744936113, 6.002532267055867, 4.792572436457036, 4.791677119440476, 5.830053398806986, 3.980317653227027, 5.694097386200492, 3.559399903897698, 6.221259685192509, 3.1326810183078946, 4.048747893431011, 3.6681029988425227, 2.9620219538358614, 3.197481843263406, 4.706580328860185, 5.330726342862648, 4.271637729449952, 3.38943131291187, 7.427043710052156, 5.010776562576419, 4.802265504718187, 3.265784408963647, 4.9026338968891485, 4.774739403563253, 6.278602387611153, 3.0889332694984755, 9.824036184467616, 6.700735580284102, 11.64322019919284, 3.946369003267132, 5.861940480563817, 7.790156658035372, 6.166092980625899, 7.430669057068111, 4.033311083563229, 6.02126816335602, 7.359535922110224, 7.397828597443568, 5.735947582556544, 4.963952914362524, 6.94970514089063, 8.533991295098927, 9.828385494786902, 5.3462432738554115, 5.22261517152438, 3.018738000777243, 5.251878561910211, 5.48543575603286, 6.281423520923521, 5.5589231787040365, 5.11056613705817, 10.949595256595256, 5.026461914300439, 9.2063054162323, 3.419267385114642, 5.076027764414702, 5.369906868373171, 4.242043997110972, 4.698956280762255, 4.5818937573986345, 4.138763970135195, 2.9329758304523863, 3.5303592176063137, 4.663909529313907, 5.0405758710843465, 5.086687655406171, 4.686602130396025, 5.743366015841629, 6.977049046364261, 5.81288074462457, 8.71574818237318, 5.871897045012378, 3.540181282014484, 3.5475045629814783, 55.49055260295262, 4.93796564217461, 3.3117285682416773, 4.267764901622784, 4.256829526686692, 4.1792518076518075, 3.6314352983872977, 6.025192810121987, 10.789301157066344, 4.895457000326201, 3.6144813476081734, 3.203895212961628, 8.749729086319523, 5.871975800265569, 3.601774453745742, 7.464726387991095, 3.4550000342708325, 2.9822691190973765, 5.472827946111192, 4.124372065340215, 4.133740410810374, 5.189419916057336, 3.8134206333662903, 3.9513817631359607, 3.6949298445978607, 3.6593282738953974, 3.696719908899104, 5.456829538393866, 3.2702263655781003, 5.436773165408229, 12.574665929482581, 36.08440675329343, 9.536504357323299, 16.139877670125664, 16.094948509065144, 13.150609432123193, 18.2529809083882, 11.062168687687468, 6.016373466230063, 21.530993511188253, 13.966824175282913, 9.667385863062103, 13.845275555581123, 231.12783333333346, 14.504016873605893, 14.895281923062331, 9.172010534455385, 6.004784195063942, 15.118308713329267, 8.667979448251245, 12.847817489066857, 12.61740546984497, 4.5607752796886345, 12.739318713093605, 9.671930720845014, 10.14904370644511, 18.246609552604184, 8.36286708521098, 9.590307264300538, 9.129937254868668, 8.276410816328635, 9.924821721645504, 7.809416581353825, 14.627884457927395, 18.20801588730113, 7.257817061997727, 8.884082428380447, 27.51105490207699, 12.72955896055782, 6.981646706521227, 7.981344360687739, 10.717441962369675, 11.537708344938435, 6.477079459351396, 29.610430005476786, 15.618854754881426, 6.855017764319527, 7.05708413714686, 5.697766542204221, 31.688980631268464, 7.8647773471004285, 11.558353650392478, 22.339895777443115, 6.905848759535345, 14.757163752494343, 22.966245480338515, 6.529142083327775, 6.182870196715846, 8.098645410019968, 25.371063922553784, 6.98884033671575, 17.373953994496155, 7.494330500979239, 6.276450897277936, 13.189680077436897, 4.912077061435557, 5.626722833684789, 13.374769021688532, 6.090116007404748, 15.192021932320909, 7.753112964574612, 4.949663343560488, 12.348034729649982, 13.59809992266094, 23.62080063135963, 3.837045673493719, 4.100139658100758, 3.8058474815447654, 3.8404018701143348, 8.037568140399749, 6.315388069906108, 4.4125980582360205, 3.570162123039489, 8.235877160910334, 7.676510851712697, 5.9717183057428525, 4.912456132871542, 4.035412136984671, 3.9536965447492824, 4.910009882356421, 3.9133553164678476, 4.184598714890173, 5.719956987536923, 4.155728810515334, 3.185406477739916, 3.7308010460355288, 4.053613660914155, 4.70024147853429, 4.2046617923919465, 11.407445368228263, 4.58897276452101, 5.508694803302415, 3.849864301508455, 6.600086052808551, 4.2669616888685065, 14.12130557325058, 5.362508095375828, 4.2192353854386395, 11.264666599310564, 9.376268226988055, 8.845185437547627, 7.591191345925117, 7.137532608149098, 12.463541585829626, 7.464319699107961, 11.419774591894171, 9.587923489187602, 9.224179366610402, 5.738459283276558, 5.656340842397265, 6.947397281593022, 39.76368239930346, 41.51379679660112, 20.57201282095437, 18.58326938150665, 4.99913738041403, 9.018615914681122, 13.719743824802647, 3.6092815685881154, 114.90377370230385, 6.03237000732592, 4.665051974819864, 4.670246654503685, 5.548203927996158, 4.088789925282117, 7.0703305383982284, 7.9969676414408495, 5.490301787257862, 3.692000753644594, 8.37148354042472, 3.6943196869279347, 4.378507955369709, 9.050797884004536, 9.577137234680379, 4.294311958389274, 7.142784384819958, 4.030901441983261, 5.833381228325439, 6.072461276835184, 4.009292942008807, 2.952122511393627, 55.931945061044935, 4.473455986117161, 6.8825357399629565, 5.7863517247694665, 6.420672938413026, 5.461207393572898, 6.902359416963325, 6.302230626943865, 6.768281039735241, 6.580665928006562, 3.7309593372674557, 4.294469159993695, 7.277149625958967, 3.8923525622623183, 5.737714000052233, 7.8157055978360495, 5.100137852165442, 5.812072418679392, 6.830082941593623, 5.16149112171929, 18.136785931904353, 18.96301875590581, 8.987551183131503, 9.984260892567214, 12.76509645251481, 8.304716518427368, 8.82006675539103, 10.381976041432406, 8.65789479312985, 11.420167868601093, 17.19502696226809, 18.887570281402603, 10.451594796839693, 10.63545804943572, 10.627188807873429, 8.50382098267099, 10.358275090735264, 8.802459600303951, 11.52095081628963, 9.811037095758651, 14.206838200173022, 8.947011603321595, 9.254647452041215, 11.765651369885495, 9.485352687909119, 13.089004379987301, 18.6512494683466, 7.194155567921229, 12.7336669939773, 16.980141523716153, 7.05764671923699, 9.08360583762742, 7.706354160462838, 7.631881118357648, 13.1250741838562, 9.441500982031416, 8.795220165687248, 8.060765935689897, 14.26663465971611, 16.826573409744846, 7.475134822412603, 13.327707734498226, 10.320115362146575, 6.678101389386362, 5.326350446260217, 5.816756016401963, 8.516737104503312, 7.014651286239747, 6.947332381527456, 9.55800130770412, 6.5519511466374585, 7.2522800681771376, 7.196655385536653, 9.297604692595904, 5.792099403061914, 12.360942782634604, 8.846700092234522, 15.261799054210746, 15.3758658449892, 7.051100364262488, 7.988615732924656, 13.711110791703467, 14.920999375133931, 8.847348539744562, 10.741849441300557, 14.744676818810618, 14.034518828688343, 15.63841513709291, 14.521371994370558, 12.97113890136707, 28.30490653420065, 8.370804653033407, 8.54883290812131, 20.384875993524034, 17.913807867371528, 9.457289031383572, 18.85393683873274, 14.95624653854325, 15.20873347528866, 17.041196621852286, 9.308662922575941, 14.304427467405407, 8.985212330635926, 12.412159206631635, 7.140991042952411, 11.867530841863971, 13.17082834948138, 12.795784145319512, 12.812971547179911, 10.324921894621701, 12.070881284597693, 15.372151820712698, 9.872049011167332, 13.094513596058672, 13.85873950022151, 12.55373208619726, 15.51902651487945, 13.242332136383702, 6.799482320376393, 6.302471564817802, 13.84807777799368, 6.467015698898051, 14.924051649250872, 59.56580565200642, 6.875880050781962, 13.335587450640489, 13.285300482550397, 15.135214549396824, 11.573528501001068, 14.010629512394779, 11.346212388637092, 6.216759147956003, 5.652742167801645, 9.648681813028585, 14.804507852921866, 14.135932550640849, 12.187588648203363, 13.12050709579324, 15.264102160770552, 11.594126197778829, 56.900130575862974, 5.4622901208054255, 6.103087241393949, 5.6268657398399835, 6.5170361044085965, 10.593368880853632, 16.02984158146144, 6.830032446020816, 7.455133315373135, 53.75897951350702, 20.488835967586787, 9.20297884433244, 245.51000000000016, 207.16000000000022, 166.39000000000004, 178.71966666666674, 134.7498333333333, 160.90614285714284, 6.521313808480789, 6.312448068354514, 24.1025880725797, 26.096945891625264, 50.62560880604179, 9.6165096116931, 14.318459110796615, 8.268780002732537, 4.809619837468791, 6.997332909958415, 21.909236977521175, 9.460880242678114, 7.193828733516039, 5.3119284569418665, 9.141300874386225, 11.606845761379358, 8.441803513044896, 7.28621482499728, 11.229954289809482, 9.12176246071826, 5.8398919156604885, 6.912744486248208, 10.194131012421945, 9.270814108284727, 9.376391450516998, 5.737971101191109, 11.723914635342384, 12.069620640958087, 8.88925368077068, 20.550673185676963, 12.818704502657678, 8.807176072664081, 8.76059498318382, 5.976921446111227, 9.915417495082194, 18.388303251893067, 8.697770218455227, 7.17464487222659, 8.552717523758458, 5.806735497115197, 7.7362665464090155, 14.243865450916182, 8.428986024603226, 10.01026178769947, 7.7105211152147675, 6.185703062029569, 9.020396790912528, 5.499479986311345, 8.778293218915335, 7.804232069166573, 4.916460984887366, 4.317597721513025, 7.002276610511558, 5.726492268489881, 5.260613408559491, 7.949019703166623, 23.789822539514812, 7.505686856420496, 5.483409523860529, 8.035940381137028, 6.980247247790862, 4.974418715429227, 13.93623298558178, 6.606955893806666, 5.902612491683687, 4.173343930546143, 199.1778809523809, 156.05745238095233, 140.76654761904766, 145.31109523809528, 96.15434523809527, 132.406253968254, 4.546945810803764, 7.604861243938357, 6.651521392569965, 5.313631963323299, 13.438369731905526, 8.278553765200382, 7.958163584693934, 8.801820409958761, 9.513287266706708, 4.6939803890176135, 10.368859479598921, 6.648681721955291, 5.942337412853516, 4.981073167589529, 12.184241512302185, 7.534463344132258, 5.5213691633544295, 8.670774831502456, 6.941609599415629, 8.117546396184995, 7.8167079870287886, 4.605726511128813, 5.56303981257848, 5.73295870174839, 5.62473462896743, 4.444125423075091, 6.115760575661585, 4.173958458190214, 7.202463069553899, 5.290415664103062, 7.521827662225995, 8.578610143384486, 3.765543415228271, 5.518594308659715, 4.970791981027588, 8.06387206005768, 5.606253347054144, 6.3724248627866675, 5.478209727012219, 3.903391817682364, 70.08182871203347, 5.647882187354204, 6.877918353876198, 4.499691780712422, 5.849765387778316, 5.000890115286671, 4.730481451781483, 5.449155689165661, 4.986688342440864, 4.103319018424327, 3.9651981018670033, 5.8154351761714365, 4.826255847680297, 3.922273591520893, 4.217906027204777, 4.661063576578933, 5.474574047868501, 3.8352874029155215, 4.329380945545786, 2.7401927894480087, 12.237700004363157, 17.17046200040527, 3.9315630845511325, 7.870804619121759, 5.608909077171252, 4.809914354909922, 5.939784547115151, 5.8170336790381345, 7.889106690105133, 14.138849442040028, 6.09147620362813, 6.200534525396306, 9.381807841502567, 10.858841908607117, 6.77957427925902, 8.433888152946587, 5.7096457403975664, 5.333771590229652, 3.8279477286371857, 5.43646430186814, 11.053555963123275, 5.567630762532168, 7.2898834147657645, 4.883466600702538, 17.314727294524534, 4.950876484917814, 6.685249409332021, 5.662886342939262, 5.035928712439429, 5.152241992851125, 5.037195509864916, 5.352519510713615, 5.1748873065239565, 5.340951737733052, 6.32568491964243, 4.434497452883136, 5.209817511706602, 11.729101685830967, 5.115043929561402, 6.982052606155355, 7.593882323921653, 5.458759620632386, 7.429724728923538, 16.42899448256588, 6.597589466142282, 9.494964171870969, 16.223272634405884, 3.734421148931529, 4.250993385373457, 5.582462331785197, 4.305742879189223, 14.876047660430286, 6.730987883854819, 4.0878454496902386, 6.877499642938601, 5.522175522799538, 5.179448763792479, 5.621620754648373, 4.285419741422317, 4.972321628129387, 14.27395438572907, 6.30018527234611, 6.8095293301941595, 4.4621126678360215, 7.822308781028251, 3.6355720335120387, 4.436254829413467, 5.480734642503719, 12.42702611244684, 15.152610075248498, 9.323401890094269, 10.454866505091212, 5.9543357750803985, 4.646613573792523, 4.468422589308365, 4.496112894837845, 4.907622424357729, 4.7631255359664255, 4.027905049350698, 4.573734118878306, 4.460551315196972, 6.161700369936195, 3.8030847084603985, 3.7209764461695194, 4.090768042849539, 3.9073277210510513, 3.6622975816054115, 4.828971516407746, 3.881866157650396, 3.729232303035124, 4.066635529453027, 4.078728936453487, 4.568464400232157, 4.321142359915337, 4.878490967293151, 5.302133460729409, 5.2485268424033045, 4.010106723381178, 3.5823557637973247, 4.411934975919118, 3.7882716305109003, 3.7396936256809865, 99.58583358429013, 4.194112201978076, 4.111086618233202, 6.259218360713184, 4.691521404956913, 4.547869024694673, 4.308561026987282, 4.091100356009347, 4.058983439544088, 4.005562863986277, 5.452036559101432, 3.426032579919276, 5.235562989184705, 3.212401615957983, 5.1385920221838735, 4.240708934717563, 5.192595738711976, 4.4958648299418495, 4.909505047177454, 4.943235754150679, 4.137147745366307, 3.843779634829676, 3.0285445154597133, 4.49399295242466, 5.167148795606665, 3.868184383151465, 5.3518339254401255, 3.9929256156577337, 3.5148811975715866, 2.7646392742033212, 7.943140663488485, 5.414074605434755, 10.20295968795539, 6.311577036338511, 21.90534693059927, 32.32314828964542, 16.27551753864166, 11.27428005786981, 11.193182653483674, 22.00549794291707, 10.783964801267276, 13.535675424758841, 4.622582418314804, 12.913025618118972, 15.164256839681707, 14.81375064615883, 4.36266976307684, 8.263413186298031, 5.717692059005406, 5.214847188415511, 5.695888213602553, 4.383993866999551, 3.4879347999169394, 9.620551603216816, 15.306613588706632, 12.833053104249723, 12.187935815091063, 8.715080620074295, 13.748724362540885, 3.9283717275294827, 82.17496521668299, 7.67937771546094, 4.634578615080698, 9.532548824580422, 4.016072266959366, 43.25448761188694, 67.14624699397609, 43.690538968205786, 30.254642332786617, 4.166389629721689, 7.749183647010689, 9.224166001714284, 6.542495732200674, 11.468249382901618, 5.772522641706445, 9.711540047361924, 4.2686922121051705, 5.9687343965648445, 5.332083621277382, 5.2623493596962865, 5.3559092818847605, 4.357799731276428, 4.363475302748524, 5.969172280205301, 7.694107569583953, 4.866839127762501, 3.3714160640068043, 4.502214310692157, 5.7086716377856, 8.434443905364104, 4.326433102053603, 5.390549170062666, 4.959264330574553, 3.3595013102135565, 4.111546075892299, 4.33374451566718, 4.834885456918688, 5.369300146758181, 4.896995330822123, 4.375738694035254, 4.120686481830668, 3.7115437733527523, 3.9802247199797165, 4.1173894839000225, 4.417024357264723, 4.706100862990225, 4.539211605421338, 3.898462697885364, 3.576221328813198, 3.402544351227215, 3.760333125404725, 4.810616118256099, 4.101266189733862, 3.7357517151541155, 4.299730344762453, 4.031065169844201, 3.880824425698938, 3.9007768290623885, 4.32486709052714, 5.280238230921209, 4.198186180602885, 5.155036373978218, 3.6547199487445923, 3.9296205878372117, 4.3456505759758395, 4.926965630714708, 3.9003173603562225, 5.553640114780322, 4.781536996509006, 4.69023738915575, 4.853222660056009, 5.9923724681423, 30.18829539058293, 7.22066071225333, 4.388576743569918, 4.720758259211756, 4.410999047608285, 3.729286483886712, 4.247512631454097, 4.327054579831874, 3.8018324750584274, 5.429258433103481, 4.239225548934292, 4.1755727396250535, 5.155843403928322, 4.406174553612317, 4.461203829697586, 5.189612121152049, 3.907498229971504, 4.2411102032139345, 5.183120552612007, 3.7826183630668972, 4.0986947960601485, 4.681636695389745, 4.722276001341373, 5.953607420663158, 4.496621479112582, 5.9631562680305645, 3.1873946061781937, 1.9757103309423514, 6.884527567740872, 8.183526479397836, 5.635899133050053, 21.374155777055147, 46.24341143424518, 45.81439951407757, 8.154910080186099, 26.768099920706515, 39.070941150968245, 18.687671958421095, 18.325699493435064, 10.884467806347049, 11.415003976084053, 24.715411454031788, 10.208186453557646, 64.91185379901877, 248.43566666666683, 197.67500000000024, 196.02000000000015, 142.64964285714288, 128.4738611111111, 190.47538238573014, 18.02332261704912, 6.428085995658248, 15.541077355577691, 17.521795185617773, 16.787156270528495, 8.424830738406362, 12.746700046231739, 61.58211745399431, 38.67255598622067, 10.993645588087483, 23.943296774315595, 14.098797325635356, 11.211587217958241, 9.423277499330096, 9.185132378023573, 24.998996021459078, 29.46663212418705, 10.880124778755304, 8.542206061661942, 14.805568195955393, 6.2537947126607785, 18.30789413430418, 13.392372074543477, 13.771419742976041, 10.692910546870651, 18.63603497334196, 8.816075318420532, 16.73142541199117, 16.75842131304348, 18.174897831205712, 26.359321893949694, 11.276367190069584, 20.206819460470587, 12.699148866311175, 10.602984056988625, 17.344423704369017, 9.105370948642664, 7.343146638779239, 5.809412326210951, 12.20965682477563, 3.7240635315516535, 9.899437425211346, 14.563485464828373, 11.556910623519428, 9.802462632390869, 4.566898609203232, 6.6498070960463265, 8.59804014132208, 4.087193073146369, 6.814301508831757, 7.860846903003112, 5.6267372665123325, 6.0734121686517195, 5.621452501925991, 3.3906391575691504, 4.584012896394144, 5.691916558222447, 7.551206360441224, 8.005389794420552, 3.5975958480194787, 7.035357686846851, 4.434313803056962, 5.710414909237177, 4.329927187739086, 7.8612439380995, 3.167532868677518, 6.92758955280633, 7.128442417476414, 4.806322945845004, 5.337132973360593, 4.914058160243415, 4.891433107640825, 6.2085238558381075, 6.878141487021484, 8.168877102881734, 4.687823367356229, 4.117864357901979, 4.83948642548758, 3.8520784508916295, 3.6971957755388503, 25.916397523325898, 5.387041205310776, 6.385583114116214, 5.181602353335486, 4.72275344535799, 3.0730667872580515, 6.2308304509345085, 4.034346503063437, 3.194474524301364, 5.859014911204655, 5.091877992293219, 4.55570327580203, 5.188797239365949, 8.098959250671781, 7.099464664312136, 4.446252200356445, 4.638221008820396, 4.0230269585203775, 4.655066949124952, 3.9170323183465383, 5.332815472651938, 4.404865511523616, 3.811534727993893, 4.277654633427459, 3.7502654695914113, 3.7581464382511593, 4.213795889233735, 4.445875559529852, 2.8083375033557303, 8.177857640772467, 6.470413173892479, 4.657547060157868, 8.714212730626372, 9.460559466280515, 9.390899252723464, 15.065038328620481, 7.364905309464587, 7.932773004004596, 17.939180488863467, 26.177341042508495, 14.173393046421186, 35.21428814312007, 18.474470299188358, 23.991379284652087, 7.023916729014699, 6.762867543872902, 19.814757655101534, 8.119360978485785, 7.086561909785052, 15.0002510365045, 169.3683333333333, 148.55501282051287, 124.76635714285722, 117.3008571428572, 120.82744444444448, 164.2431336580086, 8.204597680383388, 8.034960782070119, 13.768516281007011, 10.583777554471084, 13.633008078330167, 100.16994632283425, 115.73129898610162, 133.21207539682536, 91.16882431457434, 104.24747591297591, 108.5919473304473, 113.22915190365184, 10.377364576131894, 21.397583852085955, 14.104610666577292, 16.096456010473915, 10.516831450710297, 10.380651426983922, 3.4581740934389527, 5.523587161893247, 7.9590133027041965, 7.28723777391059, 5.60806315276187, 6.794135944129047, 8.262538655383386, 28.759201154219593, 14.788826960415399, 11.48541856636214, 8.42149894138159, 12.773951049051407, 9.087770201551466, 6.012809173594068, 4.90345219843988, 4.760928779137691, 1.8525637336134373, 2.159310138528267, 7.909250920793098, 5.476459467819761, 8.372588970515954, 7.637715019769619, 6.392048344868596, 6.063698943543206, 19.190697817138023, 7.753603334579302, 9.341209682772124, 4.0556547239332295, 5.861750417822382, 15.356020971449803, 7.1897323671225735, 9.005410084116983, 5.7948996949061575, 3.761541705744688, 3.601835885223653, 4.68483852380921, 2.7274719571924764, 4.148308808898211, 2.6434256750788983, 4.655600942140653, 4.45597770432807, 7.319851758313416, 10.437630856789207, 9.96176676939144, 7.7056589914497975, 7.645800940773918, 4.302152926855991, 9.016894945619814, 13.81916502286078, 6.652389821173878, 15.053469384522785, 5.113294924689463, 6.002793046391722, 4.098583232094816, 4.3601542073493835, 3.5075399917930015, 3.937539722674169, 6.915248348315801, 6.220723834538119, 6.973461569423749, 3.7807976960652887, 8.290254172238107, 7.8479541077564265, 10.723810855944388, 8.289853131846918, 6.680334460082997, 4.410784385863643, 7.49036963615788, 5.477879812919266, 8.074638560377915, 6.430516388795352, 7.201647102707202, 9.276707220190676, 4.184310003650056, 5.469353506133916, 7.301570497920154, 5.065912727125112, 7.344734524790326, 5.017063166994349, 8.105753640134678, 5.329120297308202, 4.9454815657004625, 5.008495217415015, 4.709411861566587, 4.026249160249587, 4.367452457526715, 3.280710476529963, 3.6554300752684235, 8.02096005877616, 10.384339161620604, 14.094061407547565, 10.72197030763917, 11.428768834985366, 15.03201263770617, 31.83969650998029, 37.55030122863717, 57.956204958341246, 45.73132833237056, 27.830892686992907, 29.867962919542272, 21.669734529642863, 19.247929578489565, 35.87299571766281, 27.905845479791065, 22.213340217447065, 13.931144773803261, 21.442441055053877, 32.06723171805841, 22.447553788567472, 16.840498590392183, 12.739671206348154, 13.649776274730566, 9.95962946761241, 44.43775796603415, 12.706968545380333, 15.21706994568804, 12.489166036036309, 10.297819059591824, 13.026284450459926, 12.406721824293378, 8.046419806758351, 13.604413107801015, 9.249747948244845, 14.629484325639387, 14.96197361189009, 14.999414053703806, 13.415416051733454, 16.094025266565684, 17.946741872883518, 8.023641855841012, 9.13004245013428, 8.878254290760475, 9.381957289400834, 9.402709227934967, 20.37079184076637, 7.724305717689861, 10.65465757676841, 9.160142534523368, 19.546892138066184, 21.540422763180494, 5.879483863074938, 11.465790480597656, 6.430205019754371, 8.39117442032443, 9.921001105407942, 8.246435112938386, 12.15786731189814, 8.370384251631375, 9.538952160627094, 9.296138364330313, 10.173354524856705, 8.360060996963233, 7.304840845288663, 7.813746832804977, 8.206904118873075, 7.493067544207349, 8.590720692892319, 5.532660157920176, 5.76384637965316, 9.87145542697954, 8.501846845469823, 10.812138868091418, 7.589039628495152, 8.041452680652188, 6.671554998211752, 10.399694416121179, 6.010057613366525, 5.411633739684361, 7.321491439317467, 7.160391982725175, 6.716905173379995, 7.845705951735621, 8.032414587641174, 6.696044678195599, 8.468847016482577, 7.294318629561757, 5.481828398853379, 5.953684469042262, 6.595452954061132, 6.952628115538943, 9.858883363754552, 5.654362527930104, 7.283883119276497, 5.3892032927971565, 6.207336368591147, 3.2023333392811946, 8.109688516053835, 6.4731969436644645, 7.593324597729064, 5.713546266431266, 31.233537223239313, 5.035546262758793, 5.371566727894184, 5.949818108341938, 7.564963512748365, 6.896998922355291, 5.66775923955611, 7.326995654183135, 6.759255806150986, 6.562791734570519, 5.779732212364291, 4.309325246228433, 5.1728627614747165, 4.5081563220188565, 4.914804327299553, 5.139354252179462, 5.246848901267857, 5.459409076282856, 8.837789571577261, 5.768099134583211, 4.168917183276448, 4.4090612208099245, 4.703047218728415, 5.251909953729756, 3.257468346220334, 7.474357826475114, 4.015037470040375, 8.490568151513163, 5.2356832405824525, 3.954716684954216, 2.755226279203541, 4.424305978039673, 5.7783232533945545, 6.711506441042078, 101.53226107226112, 4.505402412328188, 4.641202650068557, 5.3755376587169215, 5.378011831802958, 8.086865480702846, 4.509472197117966, 4.244326561475575, 4.549463818222691, 7.064043631846368, 7.624659355391141, 6.715453629338648, 4.285892043265806, 5.140921636117781, 5.722480038108939, 4.4316825785977825, 6.672457218760285, 5.221174064395486, 7.7289016079972885, 5.117519343389709, 5.085888681695087, 9.908871605867915, 6.492965751028469, 5.857626038640993, 4.393384519093164, 8.149756463839465, 4.508163703538417, 7.959069522007447, 4.609728057714577, 6.21232057658441, 6.641920923192055, 5.557134203402187, 7.226187763789337, 6.803030317777596, 5.8446426806611935, 7.5387835201352855, 4.632116512604557, 7.082377042789908, 6.1345409331119995, 4.95517756262347, 4.443417670497044, 4.40808625729068, 5.479645868058717, 6.476509143986676, 7.753245870473614, 4.958875905345539, 5.101704618231828, 4.387973110861878, 3.4338394545934197, 4.255888112168871, 3.5664308973541066, 5.64756921443589, 5.303330958181509, 5.104092334622829, 3.814852764478822, 6.304880375817015, 4.028467707785796, 3.8778303549151083, 221.94316666666677, 226.35750000000013, 181.02816666666678, 174.81519841269852, 160.8590555555556, 143.1420380730381, 3.5976602834860114, 4.887583402451307, 3.262649271666266, 3.456639073231192, 3.3397377463592783, 3.3560493356512935, 4.027482449216827, 3.5627898582889075, 3.6836495710485244, 3.1473042897035044, 3.3617779103929792, 2.9959943600074457, 3.240958497595118, 3.188753568873098, 2.419623082960103, 5.268171361282044, 3.68181178743375, 5.675517109894987, 9.450974863104538, 9.099053554181955, 6.067956394133581, 3.7809555089861613, 6.437189000577782, 3.9528630450434035, 6.552443060763108, 10.34697484063466, 6.593607783644395, 4.4000849588271524, 4.260654738936517, 4.053546721829861, 5.861545236776798, 4.822270026123517, 8.086581597434419, 12.568520348166505, 5.17746873106399, 7.033190476407709, 3.6468225155001286, 4.242386929208355, 4.083419123536025, 3.8746554180768134, 4.751771648931759, 5.712602443694162, 9.5372516043142, 3.588164889608072, 4.927782465900114, 5.0739270801204945, 6.5295982226827425, 4.4214541936355936, 6.217462457142907, 8.809570534102702, 5.694816729186258, 5.548174023273038, 7.455845386278406, 7.4185648143409, 6.040314550992807, 7.1739153874838495, 5.688261969163595, 4.893238293812932, 4.807988471885125, 3.758373879857993, 4.923393695259479, 4.720300033791359, 4.376867513617876, 5.601276191679953, 4.154056172178196, 7.136216709584937, 5.0772387699607195, 4.589627568916857, 5.541504276751689, 5.74202711335971, 5.162954488625847, 5.075874429536846, 3.640937150259763, 2.9921403080578606, 3.122080057961025, 3.865562800195128, 6.238331977796354, 3.7786217300339735, 3.4892119121261937, 4.195810190508626, 4.512708574635114, 3.2191225211460353, 3.057808213099567, 3.404069210548294, 2.947127581667707, 3.6051144899036056, 3.8143398345607102, 3.4380568084389425, 3.6729517021489406, 3.8718481353123777, 3.3384583022493497, 3.8245291779242314, 3.2978838674739075, 3.2348677034009534, 2.7707462209890807, 3.0726238043311658, 4.601016617174159, 5.365962252049741, 3.2642634003765485, 3.122615429279102, 7.716511653770846, 5.827742658500167, 4.5399991479979445, 3.0417547107572527, 4.3265519706278175, 4.382963910116796, 3.014227734587631, 4.141959883723813, 5.312283028967911, 5.581958448403267, 5.96473945662181, 3.2079745938818296, 3.384029075999236, 3.1018064504143377, 3.5897722787329633, 3.2563215743987244, 3.6007880694218257, 19.60445270452413, 2.999198201120002, 3.248467803040732, 2.867732152592248, 3.03075700988954, 5.321366312525098, 10.37530824997575, 6.320811367637184, 6.409307935653578, 5.69051913404231, 3.4037589789384617, 3.4995002007964575, 2.9745748659503533, 4.494500435730674, 2.2994951676566378, 7.162423574047884, 4.847708602024715, 5.619251287782694, 5.478394806360853, 5.002260669869951, 6.3578919884463385, 4.454090767416599, 2.492528913287987, 3.6450534127204812, 7.011689369075222, 5.505608102084136, 5.5609450360942665, 5.208829895156286, 5.984757279246182, 32.9432371384552, 36.36598558372894, 26.519188953733234, 47.223461445893044, 20.45614755317306, 40.51701247800303, 43.775863223405025, 30.457056651788438, 24.705218887552242, 25.02825161401271, 28.89859725093018, 27.532603214536053, 23.57753543327386, 136.03431277056276, 19.936884705947946, 12.623338800547916, 12.914601151935898, 18.873144233601952, 15.201360975230594, 12.807388539205819, 22.065438766867576, 16.737837517018423, 15.12938662474893, 19.413855781736075, 17.535640251645695, 16.156048050029653, 12.228974274665262, 8.169775520536595, 16.871438409781284, 13.99469529998882, 16.365320519212815, 15.835266764429944, 15.865360845379076, 13.293093309987501, 15.468496375697653, 11.64885347289618, 15.525930591878513, 11.247816230290141, 13.696238273179258, 11.052913342577435, 18.54925637323219, 9.92586977146489, 9.573547125101971, 18.913586002948524, 10.9616194384665, 7.583743958077912, 13.107355208309857, 9.700014329204345, 18.02640134449729, 15.323831167485446, 12.720181838811813, 4.6650984243469615, 5.80826003203835, 5.0187078479311955, 4.8032352511622385, 7.641506266619416, 8.244249359747878, 6.807488423056612, 4.735410718237729, 5.3093176539588685, 4.387236570310225, 4.670684858677268, 5.599506641200821, 4.6243131082482485, 5.4222647657714855, 5.572492772271009, 4.301614691093764, 4.235454287359457, 4.712564723018225, 7.67291047484507, 6.186749685611261, 4.696182351252307, 5.409922512886487, 8.680176516869553, 7.70359818975167, 4.8745516569181015, 5.969100771249529, 3.9282811242037066, 4.080629305918835, 4.342392640087377, 5.832576534181942, 8.627520747542453, 8.391242354821959, 6.67714682897467, 7.875283082974259, 8.09330706229779, 7.118059624046741, 6.443993201478765, 11.180882596199138, 7.463413825278657, 7.089018328028873, 4.432840963634259, 8.710797285436355, 9.23190720012279, 5.171260726196079, 6.220365921004284, 16.105032829368476, 7.900763011906418, 8.176824261842865, 4.862510208185426, 8.534180894114352, 5.385853141980466, 5.5737653965524006, 7.641952172405183, 3.983516866880059, 8.705419901317315, 2.9720609206946, 4.781971279449901, 6.092250187445486, 9.128095423671269, 5.761974528248407, 7.426135842542855, 4.833661511265938, 7.416538804196535, 7.488437144369765, 7.19272009654708, 5.602015771653689, 6.106062237617905, 6.769945934230228, 5.61923842672157, 4.9463288174208895, 4.735095659991153, 5.401678257493035, 4.7973375555484665, 5.936862003096092, 5.437768369493108, 5.875029680440486, 6.8138081134862, 5.880355942228313, 6.146553909960866, 7.528385170863073, 4.824795999661771, 4.699075744621269, 5.273136070425795, 6.047741060964877, 20.432511003720947, 5.162193778587399, 5.240935924924238, 5.582313602120557, 5.8420922998967635, 6.658120978875509, 6.484110896550633, 5.821419436753962, 7.0641928088076, 7.73807292313412, 5.246387296703885, 6.276157755154419, 6.737488424892651, 9.750721585803765, 5.37074748058095, 6.853384102281252, 7.133054820555293, 3.8048333382884705, 6.578483986398816, 5.550644660519988, 4.8148033351363235, 5.751321514159929, 6.5472865025091105, 5.609631131569292, 5.986626670411301, 5.982581591389333, 4.991010785587278, 9.193596152184947, 6.874580773383665, 9.607104459708305, 4.994208089439109, 6.293915193912415, 5.203900761900552, 6.627536644551854, 8.739905888136343, 5.666783821481768, 8.445364420757343, 5.789416089802685, 5.718683650814087, 4.254886146086638, 7.756727084666912, 6.335728273687423, 113.80340631707475, 228.8238744588747, 218.70545454545473, 179.8617857142858, 173.5766666666667, 154.64733333333334, 84.25355879496321, 7.030623394216796, 5.11897097727147, 6.06765581812945, 10.204211285195838, 5.885230377888406, 6.351067560143754, 6.007427363501885, 6.80631676316368, 5.970164014259195, 10.600050577597258, 8.070777890436224, 4.606459128071155, 9.944122285909827, 4.686105295758665, 6.482236293799896, 4.368393741387879, 5.283264425934961, 6.002400038801354, 4.180103557467164, 4.080218730556763, 6.441387343370433, 7.442189399127445, 7.319568507632937, 5.060384574961323, 6.589299577626785, 14.289241271672278, 5.8688678960297604, 5.367504804650483, 4.255733359521195, 5.675067188033582, 3.2051203186132353, 4.692528043292103, 5.554990610644686, 6.34066576802616, 5.501410680018846, 4.967691197219813, 6.930114771901689, 5.229721638853527, 5.564334176398098, 5.410569095350478, 4.529986956864591, 4.403300151711581, 4.759731180778725, 3.8647711922423826, 4.52486865057547, 4.735425311893816, 4.3766034558610825, 5.376900842334256, 4.598131294879514, 4.918490029782868, 6.8371626596129795, 4.872169305513437, 4.684251242900676, 3.900512214229233, 5.996606557125084, 8.125151359367539, 5.566181711213374, 6.706634458649089, 10.850682954591893, 6.714473010399906, 7.331497413578059, 11.67780166028143, 9.67575322696743, 6.061205995232639, 11.478172696462309, 2.8375823568536784, 7.2203224357780496, 5.827028671733267, 10.34326759433489, 4.613139081243259, 5.600291476154875, 128.48646356421358, 5.431000942003862, 5.252513633446825, 6.459847890055741, 7.054729151679627, 7.181252791962743, 7.020181744535614, 9.149252142468331, 7.202210062684409, 5.289929895431647, 4.978751045657459, 5.1388747450026955, 9.244788349370854, 5.821791588399578, 6.332825897812735, 8.065304498284418, 5.623134671978156, 5.606629774563818, 5.959237434979469, 11.578071332882597, 15.861222367167823, 6.35393810998111, 9.708331144289511, 6.086696291441945, 6.60053741394559, 54.515837398562795, 15.722434045737577, 10.008315374023312, 8.871021522689247, 21.624317628878106, 5.510329519067824, 32.98018634539461, 6.5999589321865955, 7.008401906117017, 4.1099600045486335, 14.444457634734126, 6.976358128572093, 6.592256761786417, 4.56624033723737, 5.016476183002307, 5.275973886626345, 5.35416504193835, 5.0154421733598085, 7.643538606180645, 6.426146969627452, 70.9972372994873, 4.944319241953642, 4.254748914038041, 4.017000491954552, 6.44844498867864, 7.206294774953469, 6.101646891772082, 7.653781086698148, 4.665751861402859, 6.58556643054661, 5.124590487527063, 6.566412057987424, 4.298708348059356, 3.9596742948064167, 3.6421459858208105, 7.20798796444913, 4.07718460824313, 6.46364410921741, 4.465138275249043, 5.879813150340306, 5.729058121734161, 4.879975242683147, 5.330568246724576, 4.727129096983263, 4.848036166386231, 5.181462852533911, 6.186087822947503, 4.85524473846445, 4.769768375894187, 3.8615481043443918, 3.0964197658115866, 5.617317189252712, 6.544208296224914, 4.72165616252538, 5.663674226215649, 5.151223525665638, 6.844958460518033, 4.6606074862637366, 4.836656592795673, 5.835568968476858, 41.70920706123569, 4.767507378784265, 7.818055897959608, 4.005250282176474, 3.763766359618647, 4.355001502474292, 4.8969936115093535, 5.332185065415433, 4.8338121738424675, 4.443237484385046, 4.178636084601197, 4.478867207700504, 5.230675826560404, 4.86893144603137, 5.014008311882265, 3.9752538379863585, 4.677860514738256, 4.433250031182235, 4.008829351110571, 4.792801804284789, 5.780030247779091, 4.086399741558739, 4.436430833005144, 3.871321992353297, 5.085489331037448, 4.005438109263738, 6.2592342729710335, 5.807582598757327, 4.713140096652398, 2.7267060487149677, 4.175702773840273, 2.9905042544548923, 6.167552621710821, 7.203140746969696, 5.013685769078192, 32.1875041825278, 6.940993693927512, 4.479328216611605, 6.402351834727751, 5.1451157789810695, 2.7965580965085053, 7.320230125431492, 5.033472190450266, 4.0344106435058835, 6.0311233765278764, 4.908887522951813, 4.122736115502366, 4.721776054478353, 5.110335422566141, 5.457618141563391, 5.75670224040943, 14.886885463878246, 10.221891437058687, 7.813015729211129, 8.2715536339262, 4.811977618422307, 4.869194728365406, 7.9011026794363595, 9.046350981968367, 4.404884700885976, 7.743818024916072, 4.134901942672659, 6.5317586107045855, 4.895086314701115, 6.247884759958221, 5.037790118606422, 5.0859762237638355, 4.664874368094808, 2.4733913530990366, 3.797824852441488, 7.2911169200458685, 3.1927109719170383, 4.329637119775794, 4.469469560493093, 151.80679166666664, 4.7499367714751255, 6.1767339798406935, 4.416326012580518, 5.2695722177955, 8.047562555431387, 4.431262565263395, 5.249558983157615, 4.577808670715448, 6.407353709939479, 4.972916468712027, 7.802963965783831, 3.8860603333858834, 3.928728780339955, 3.6769457069605833, 5.425274564468319, 3.9902681004521807, 8.594185420061525, 5.285789325433516, 4.827162128381098, 5.237624604302334, 4.215993039482868, 4.598739204843459, 5.402611484467485, 6.671780950016793, 5.030508424912956, 4.686833788599542, 4.162046282549573, 5.522113135966277, 3.629783194609431, 6.305956427880355, 5.409909120016655, 5.139258186361698, 5.827743123593672, 3.6918481176852085, 4.139091932815936, 5.388556533656358, 4.289286030062015, 3.4625849116503202, 3.3636027729364186, 3.437616390122559, 3.6943902811799836, 3.286999923280424, 3.907688532216298, 3.912678082613576, 3.7650547140830746, 3.7166117300415635, 4.241771708412309, 3.3134866392162055, 16.480731141101415, 3.7120814983911408, 3.502942580881363, 4.333483640989162, 4.348967293415747, 3.5224189300967175, 4.366389810529792, 4.005746168390999, 3.416781106488308, 3.1141564846127494, 2.925638543580092, 3.1571328648828407, 4.741723956800506, 3.311316758629223, 3.9040029512762966, 4.417526151247758, 3.9516035421129945, 2.9713646739563107, 4.2613893980050985, 3.0225042084584923, 3.852412736177483, 4.82234623475484, 4.6771850667963175, 7.2064289554480006, 8.451851693325798, 5.378651714349072, 10.378371153611406, 8.591846990337334, 8.628776768114083, 7.450583564783365, 7.951145130557014, 8.608923572731879, 16.38713260606374, 11.295415933138566, 10.131944488060856, 7.267458124548903, 9.966697921253065, 7.644225146452233, 6.824782137039566, 7.291170093238506, 7.345905891781853, 7.227252315568842, 6.341705869734229, 5.186770810346664, 8.177501166088557, 11.143009661358514, 7.045935039819131, 5.823058390619455, 8.230306748717004, 6.323413163783719, 13.992886626374753, 5.426350286828656, 5.89685412943534, 5.626669744701722, 6.455971261087143, 6.586258555782774, 7.073786775889847, 5.117954665304739, 7.197341362589045, 6.742441778672439, 7.218528026328704, 4.9720180457408345, 5.06067986044219, 12.372573547400428, 11.787884617450242, 9.471721328854983, 6.896140283671081, 9.837847335632839, 5.944317504981653, 6.771258342057394, 8.971725246958941, 7.955791815132692, 4.820432389754627, 11.967569401248786, 13.079975246263096, 6.5813124687873845, 6.726533531061057, 6.836431700029519, 6.920583377506266, 8.814982227333777, 8.897623800324572, 8.421348478544118, 13.567743988055893, 16.213814339915977, 7.5981070393279415, 20.559047937714894, 10.529720567433506, 7.89163459494797, 7.204729947803644, 8.353697321835694, 6.434465401552552, 6.539655086789874, 12.279861731272286, 5.1666505155780404, 5.295889304480655, 5.944718003322571, 4.145790071475841, 5.808263920013532, 3.719977460310492, 3.356935851491742, 4.641838317102404, 5.507657754439067, 3.408166930590262, 5.433240607016858, 6.072029820566021, 7.137200625428808, 7.475588840278538, 8.798189912805457, 7.263185565684637, 6.53674557682283, 7.838920815189002, 5.934159590354037, 7.962016591515269, 6.9974606552769485, 7.327765271677789, 9.565263116518993, 8.117502670179539, 6.550459363693736, 6.969116542775713, 6.330751978892521, 5.27681953546291, 6.878871714781645, 7.75957010760448, 5.212777184593145, 5.818471122868557, 29.17933267942936, 5.491198367001468, 6.145534714281291, 7.542096160444845, 9.475012348742567, 7.570856502946661, 7.728812344226875, 5.420917515548322, 6.5089045202296445, 7.942533341111784, 8.181560232395094, 8.309765634975992, 8.630290358394548, 7.327637146325995, 6.828941333544249, 5.879913322385453, 10.800569276473654, 9.378383133335527, 9.957710870677726, 6.921627806017991, 7.489791972628446, 5.8552076368492205, 6.8399297181239325, 6.3549898299788, 6.688408327153296, 12.059044615546984, 5.748941440951698, 6.884646229756494, 9.400261679936984, 6.052826108887397, 7.187975520358613, 4.940287376699257, 5.427202175834721, 4.661110017144526, 7.138958882096568, 5.730438432438063, 8.028055628960143, 20.909747695561542, 9.28433670777088, 8.641705775732527, 6.244071519947334, 20.568172934992482, 5.187876218499282, 6.348197552297058, 7.364689388288148, 10.912815053361573, 23.431347178464698, 7.826647777077516, 14.80460131114221, 6.060105235732271, 9.537434712428098, 5.474382703171666, 6.140056764849204, 4.179456189663782, 20.634122970460215, 12.774240214941466, 4.827698091198126, 6.93240828824991, 6.434585204167808, 5.939755052440748, 4.898306294793826, 6.162771302106341, 14.172903971460471, 168.87063393421892, 237.37000000000026, 199.07200000000014, 179.67333333333337, 184.6490000000001, 163.80233333333337, 130.4204372405373, 19.46801316117082, 15.192308756343374, 34.20477756957798, 7.372710324977523, 8.148285913326967, 6.15012854479911, 4.340034819359692, 4.689536482827476, 5.402717808388374, 5.872866609012086, 4.102834987651392, 8.541709311429534, 6.849109348320388, 5.090925582995589, 5.350790231382896, 4.9847414641041565, 6.353496366590833, 4.164712311981808, 4.993348809751632, 5.072246832953704, 5.227149205373926, 7.428399182988344, 4.995780169172565, 4.984792859662108, 4.680655846065624, 6.559046443108163, 6.024103546906881, 4.273367924699345, 4.944780843202242, 4.418063207027579, 4.758902528412509, 4.407852152144423, 4.307244378520254, 3.760777003213636, 5.143770190081977, 9.73445764297778, 6.9474394611917125, 7.4888280316313764, 8.233662165597716, 5.60401733406029, 12.550582378915623, 14.942956773566799, 23.174882832647224, 20.02162097824465, 23.66280503191029, 16.403792124542125, 17.15405504686043, 22.610207935394556, 17.010586910472426, 20.290111762970575, 20.03127490668623, 4.956097746282726, 4.918310550839017, 3.8824843663219792, 3.7425728822219786, 6.564283382486792, 3.9803420946978934, 4.5363764099171195, 7.514933982294955, 5.678323321412732, 4.735698087492399, 5.543298153827893, 4.302258542041373, 20.048797266903154, 3.6578781198583656, 4.562044214387566, 6.086009839396536, 6.949717664221121, 5.9569980821323405, 4.791959668225559, 5.683663481030626, 3.0383386401806747, 4.734706626750323, 5.3884728535232345, 4.267781092035992, 3.025192794714916, 3.0069229104806485, 3.4920541283128514, 2.803092424329961, 3.449125718833545, 4.047419820000714, 3.495211617900202, 3.137751951323503, 4.078090606199659, 4.077435505060176, 5.2160359937424, 4.8074115488243345, 4.604037685343379, 4.996908906650311, 4.539803828104704, 3.5338922775672184, 4.823305868933567, 4.228161377852135, 3.9129818364529103, 10.588495373877244, 5.272565738889914, 7.798209848286381, 5.436529674226188, 5.066943325612405, 7.787481774822503, 10.191956840917008, 35.07420451744297, 26.566789050023143, 20.074649774725525, 11.733322219449764, 6.772244452058734, 9.047012164329804, 7.598105724768269, 80.38359488212099, 5.790025754236513, 6.11193515748542, 7.911940128458676, 7.04417085404567, 5.415872510086622, 6.15011516603868, 5.907509201815567, 9.901025446954954, 7.014242574992935, 7.898658887767696, 19.625230630850997, 5.6190295890363515, 8.724152538964779, 13.79839626669689, 7.07189342182275, 14.908638453973465, 10.00707229609724, 8.628499334176121, 9.086245736995089, 13.02640797936521, 15.811316803455282, 14.36100254240862, 7.123728747433187, 6.8094696471805305, 6.80274296212756, 29.473624470345495, 15.56606551266405, 7.078460954121151, 6.286097749191182, 12.628836460727305, 10.972910341827081, 11.337576300187877, 7.422547695231272, 8.680527590503962, 6.889134126599722, 14.961641388964562, 5.150865483309711, 6.967325186233745, 9.387068315114968, 5.75737566739241, 6.781292729905152, 4.69866902216877, 7.959441085432782, 8.57698861669268, 7.41365315761497, 5.453339832300251, 6.829218190523225, 6.003049986883954, 5.787279372322578, 8.104651324118597, 7.035932273619949, 6.960746972199602, 6.190104177474828, 5.9656362159819185, 5.587974267291152, 5.3952485672350265, 5.197358799521997, 6.308841168814804, 5.770520133765092, 5.666563787417696, 5.093133769213094, 5.620794216200692, 9.48351513090556, 22.154731319580215, 8.720164931933521, 6.389975210089296, 6.489522864391742, 7.7234483024300875, 5.710480576425025, 6.896474243977068, 5.180801289778272, 7.52683689345378, 4.98790536383273, 8.279486809575708, 6.344842982575445, 6.346708427145821, 6.745636448046193, 4.367145081438637, 6.590269749096828, 4.597364100275982, 5.9114601906893425, 5.453606129566568, 6.310062388520356, 16.37593008385219, 6.8909111783528, 6.541159931285981, 7.579169159506998, 6.611496405315438, 5.696461729995997, 5.368917672172203, 6.402189145161245, 5.447100570432933, 6.681779511838211, 4.8794976690336656, 6.001353602118534, 6.335285287275466, 6.057808551901731, 6.145533480834151, 6.217694757019613, 7.650887840345928, 5.4401990060049075, 6.129073793095342, 5.1257031592254085, 6.292930805002428, 6.633253172305618, 5.363553301783041, 4.867259352477574, 4.433547601958522, 4.531206989778651, 6.425923090973049, 5.396312884886771, 4.468438094370893, 5.7340328755205165, 6.114518945165014, 6.47533299450849, 5.4559618597991975] d1 = pd.Series([s for s in disp]) sorted_d1 = d1.sort_values(ascending=False) N = 361 pred_rrcf = d1 > d1.quantile(0.9) print('Displacement: ', d1.tolist()) for k in [100, 200, 300, 400]: top_k_real = anomaly_detection.get_top_k_anomalies(sh_vector, k) top_k_disp = anomaly_detection.get_top_k_displacement(sorted_d1, k) anomaly_detection.get_top_k_performance(top_k_real, top_k_disp, true_anomalies, pred_rrcf, N) real = [] for index, row in sh_vector.iterrows(): if row['anom_count'] > 5000: real.append(int(row['anom_count']) * 0.004) else: real.append(int(row['anom_count']) * 0.05) fig, (ax1, ax2, ax3) = plt.subplots(nrows=3, sharex=True, sharey=True, figsize=(10, 6)) ax1.plot(real, color='blue', linewidth=0.7) ax1.plot(np.array(disp) * 0.5, color='red', linewidth=1) ax1.set_title('SnapSketch', fontweight='bold', fontsize=8) ax1.tick_params(axis='both', labelsize=6) ax2.plot(real, color='blue', linewidth=0.7) ax2.plot(np.array(sl_darpa) * 0.5, color='red', linewidth=1) ax2.set_title('SpotLight', fontweight='bold', fontsize=8) ax2.tick_params(axis='both', labelsize=6) ax3.plot(real, color='blue', linewidth=0.7) ax3.plot(np.array(ss_darpa) * 0.5, color='red', linewidth=1) ax3.set_title('StreamSpot', fontweight='bold', fontsize=8) ax3.tick_params(axis='both', labelsize=6) plt.xlim([1200, 2600]) plt.ylim([0, 200]) plt.xlabel('Time', fontweight='bold', fontsize=6) plt.ylabel('Anomaly Score', fontweight='bold', fontsize=6) plt.tight_layout() plt.savefig('results/darpaplot.pdf') plt.show() <mask token>
<mask token> def parse_args(): """ Usual pythonic way of parsing command line arguments :return: all command line arguments read """ args = argparse.ArgumentParser('GODIT') args.add_argument('-d', '--sketch_size', default=256, type=int, help= 'Sketch Vector Size') args.add_argument('-k', '--disc_shingle', default=32, type=int, help= '# of Discriminative Shingle') args.add_argument('-p', '--prob', default=0.2, type=int, help= 'Random Probability') args.add_argument('--directed', dest='directed', action='store_true', help='Graph is (un)directed. Default is undirected.') args.add_argument('--undirected', dest='undirected', action='store_false') args.add_argument('-l', '--walk_len', default=50, type=int, help= 'Length of random walk ') args.add_argument('-n', '--n_shingle', default=3, type=int, help= 'Length of a shingle') args.add_argument('-f', '--filename', default='vast', help= 'Dataset filename') return args.parse_args() def graph_sketching(args): with open('graphs/graphs_' + args.filename + '.json') as jsonfile: graphs = json.load(jsonfile) print('[ ', len(graphs), ' ] graphs read successfully') sketch = Sketch() sketch_file = sketch.shingle_sketch(graphs, args) print('\n Done Batch Sketching...') return sketch_file def main(args): ad = AnomalyDetection() files = ['graph2vec_mutag187_dim_128.csv'] for f in files: print('\n\nFile: ', f) sh_vector = ad.read_sketch_baseline('sketches/baseline/' + f) ad.anomaly_detection(sh_vector, args) <mask token> def visualize_vast(): anomaly_detection = AnomalyDetection() sketch_file = 'sketches/vast/dim_64_n_3_k_16p_0.2_l_50p10q5.csv' sh_vector = anomaly_detection.read_sketch(sketch_file) true_anomalies = np.array(sh_vector['anomaly']) sl_vast_full = [0.0, 1.0000000000000007, 1.490000000000001, 1.7100000000000013, 1.7800000000000002, 1.455000000000001, 2.203333333333333, 2.5816666666666648, 3.0725000000000007, 2.468333333333332, 2.618333333333333, 3.1201666666666648, 4.885000000000001, 2.832666666666665, 2.8755952380952374, 2.147166666666667, 3.6497857142857155, 1.838214285714286, 5.315777777777774, 2.812238095238095, 3.2381547619047613, 3.078515873015871, 4.529853174603175, 3.7458189033189018, 4.538138888888887, 2.3045234487734487, 3.9079166666666647, 1.9696340603840605, 3.7305703463203455, 2.6001663336663334, 5.102301587301583, 4.11497619047619, 6.937190170940167, 3.3317508602508594, 5.671685637891517, 2.6808455139631597, 4.393103174603173, 3.5497279942279936, 3.46266989443305, 3.0899802741118507, 4.084215673215671, 3.6542838827838815, 9.099530483405484, 3.1833452870658756, 4.91520404432169, 3.5223060689310683, 3.513890062551827, 3.4316554556554526, 7.361717046238782, 3.034030247530244, 3.5310568729516087, 2.922128819280134, 7.7212221455445125, 4.079142108730322, 9.254576312576315, 2.432390327305543, 5.455857618301886, 2.1478042199748724, 5.717154465904462, 3.8056670117322278, 4.421209786945079, 8.25086314289575, 3.9806453075648105, 5.727092564298445, 2.2562179417804407, 4.726554874616326, 2.677858543417364, 4.647202617322312, 3.7667160478410473, 8.502338286713286, 5.371667172696582, 3.7220769479058933, 3.576872840746761, 5.672282716738598, 2.5096632245168564, 9.910175995573049, 3.7785037460976065, 4.679637417536024, 2.716194069819068, 8.629652946976746, 5.139533376711007, 5.80293475274725, 5.964897491397492, 4.9442456430043356, 2.580831972780479, 4.06149549146569, 2.8358605887099064, 7.453780982905984, 8.303637507045242, 8.939271899668952, 3.1272130815419152, 7.212484656361171, 6.0686778583559535, 6.4849147969677405, 1.9282294054311582, 9.1355835577466, 3.6393741215011333, 46.1344817251462, 10.535195634920635, 3.517713645901447, 13.903026048895066, 10.986628982128975, 46.87568816110287, 4.502153165109742, 2.3054975305856416, 3.9902068301925087, 67.18650000000004, 6.436401108076753, 2.9037945225053585, 26.276562895437905, 38.22192063492066, 7.659223675028898, 2.522062522103756, 39.35848469994057, 23.99845426824637, 29.993268808533507, 2.6173386692584395, 4.040253601184814, 69.4936666666667, 3.0327631390127134, 29.84829747540043, 50.814211376858445, 4.523049856432983, 43.74888023088023, 8.065274023338803, 2.5897766484663363, 9.986485255924695, 7.6404389382547295, 32.95801323340515, 26.934599137222552, 2.122800695507033, 22.719991302526008, 2.531943126662511, 2.1558683074106626, 2.5708741409260822, 1.9434624011492079, 2.0757465872643626, 2.112191638790354, 2.1096226232500697, 2.877354582108181, 2.018921542056945, 2.3010023212314104, 3.468095728869127, 2.9194415187548293, 2.192044953956719, 2.656430041857208, 2.247205654490438, 38.94106878306877, 23.100060904008263, 4.288507682349105, 22.36149772449771, 45.40354273504275, 39.483467352092354, 4.040192685218999, 2.062892591069062, 2.6459853032547698, 2.3301549219464825, 4.53012095596005, 2.9772097452807142, 2.8574584285347373, 2.548702471322061, 2.65944699872955, 2.3178856199551947, 3.534616098190533, 3.73302985152985, 1.515600041087059, 2.5456805194805203, 6.110558996558996, 4.519910499042486, 2.2248168402956487, 2.8929118477498887, 4.901385737844415, 3.0371780894668152, 1.8101252678667985, 4.101566830031821, 2.369464362967107, 3.3470473701906855, 2.427038507535658, 1.5092799924770854, 2.2393657326208065, 3.0204576584312086, 4.952721740884551, 4.545370277585918, 3.924783566704709, 5.679710899880955, 2.07507759482395, 3.689693986577186, 4.410048364585616, 2.395058360658565, 3.6105811351207198, 2.115178011484056, 2.8206351638239213, 3.853601344470662, 5.629191429184849, 2.688231487467939, 2.0287039034873398, 5.847567952148525, 2.335106430051789, 5.12541678257092, 3.117835198159749, 5.275337101555593, 4.574242697844625, 7.278482289017314, 7.196986561756102, 7.387243180155941, 5.759555818450555, 2.608319026470451, 4.323878181497967, 2.435695102799575, 2.5092351455577186, 2.4582267426944915, 2.5584739131116807, 4.855368125535241, 4.865108087486137, 4.122068797191757, 3.4873005866257736, 3.0433521286770286, 8.639741025911903, 2.201531830484797, 5.025303611525683, 3.755774402366179, 3.555147106457937, 2.5364964085130333, 3.722142841228145, 2.48247885796658, 4.271447546666749, 6.776819864615641, 4.277098861935588, 3.709109123203335, 7.183871606420256, 7.806880290238749, 5.138150428165338, 5.030142926030408, 2.7982305694827194, 7.09283679668314, 7.6988370345551225, 2.881321122862117, 4.163881733806376, 2.556985623498055, 3.528237524678694, 5.852479341137831, 4.109318090561147, 6.1545703356341805, 12.344342507710156, 4.131945865247535, 3.9870180327335487, 3.1779193852350267, 3.472430132464246, 7.8153322360666735, 3.620740995335953, 3.323551554097161, 10.810294973000854, 8.63308429742397, 3.632960134708154, 8.11147760808906, 4.336612368661363, 6.89291983150511, 5.82210924531265, 14.330259048456808, 3.494165167016899, 9.573348636018238, 3.7180761212323588, 11.202624465320335, 3.5557115359266405, 4.172923984092086, 4.500268075284338, 9.687788267998425, 4.140257106161449, 4.8787484102923475, 6.211739463108268, 7.372484195237485, 4.1178916374103975, 8.89759647073753, 11.326268564376145, 6.9458143337417075, 6.106456541856061, 9.170521105019516, 9.42727084425986, 8.40229245145132, 2.802653113145537, 4.141863946771091, 7.182149471621556, 3.7302128901799922, 7.247612138486243, 6.658189470038223, 5.815450303923129, 9.073282476112974, 3.5132360508852547, 8.799354414422949, 3.996735892005669, 5.791928514455155, 17.375807236064585, 5.716573824007423, 6.040451151859592, 13.252769128390991, 4.459342597781656, 8.304756656212426, 1.6980046914404392, 5.252022282785437, 2.697608278171014, 9.525614042146932, 9.649622163790943, 12.597816726256198, 12.087499700462937, 17.26588324235, 5.416809380839663, 6.744729129692225, 11.52585637934218, 9.038647712028743, 5.55738532923505, 7.148217616449185, 14.971559308625604, 5.484246597550578, 6.604505788028619, 4.706706504272274, 6.056393192282342, 14.422203111007722, 5.968753545314402, 8.43818908331422, 6.739394866846011, 8.70991038247342, 15.882690106243881, 9.519841064185808, 3.6689399466244503, 5.374653857232868, 7.285325948650889, 7.708996100034014, 5.522543807038958, 3.8149253799356084, 15.373093136038582, 6.125296988550094, 9.776068773617684, 15.77058670162355, 13.82363960521091, 247.6191666666668, 241.33333333333354, 234.42900000000017, 232.09750000000017, 210.64066666666673, 221.72516666666675, 232.2900000000001, 222.12333333333342, 195.435, 188.7107051282052, 212.0550000000001, 184.82833333333338, 174.603, 197.49654761904753, 201.08250000000007, 188.2996666666667, 168.91083333333341, 140.90283333333332, 182.10469047619037, 167.76266666666666, 201.27583333333334, 128.51128571428575, 163.6542142857143, 144.93942857142858, 165.571619047619, 126.74703968253968, 132.71890476190472, 132.64626190476187, 120.56686111111115, 133.08200000000002, 124.06377380952382, 109.44774603174604, 119.52338888888892, 132.30933333333337, 133.28711904761911, 123.43590476190475, 122.62227380952382, 119.69415476190476, 124.21578968253968, 101.97053427128431, 121.55083333333337, 97.77622222222222, 118.32983333333335, 85.58539105339106, 93.25142857142859, 92.86189430014429, 148.130974025974, 107.23876082251078, 99.64868109668106, 106.35083347208347, 124.41839774114771, 92.82343434343429, 79.42896667221666, 115.31892857142856, 102.09249603174604, 97.60596031746032, 98.39762049062051, 97.84232029082025, 74.7981453823954, 117.20717460317464, 82.88765778665778, 116.06709235209233, 112.63099350649348, 77.57687301587299, 68.50434188034187, 68.74346683871683, 66.55115656565658, 57.29339610389609, 82.01547757797759, 78.97707052669553, 59.293463203463205, 80.68080203130204, 68.20699583749587, 93.13353715728715, 82.54827380952378, 71.05218829373243, 94.86532683982684, 81.07937770562769, 58.239944319569325, 78.67548490398492, 77.73863247863247, 89.3007863158084, 60.59544094794097, 63.535196311858066, 54.066168898911535, 58.69705555555553, 62.112702227511036, 82.83547150072157, 76.60754390054392, 66.45232736707737, 69.87924711399714, 95.8731394993895, 60.590718475968465, 64.98781875580559, 40.28886784925603, 42.83568489190547, 63.44847224413014, 44.71849708624707, 57.9525066045066, 64.72960320480175, 53.59518587784764, 66.21941450216451, 56.599784756909735, 44.74083139199121, 53.34800285825286, 83.39110589410589, 61.71693729881226, 49.89878665044107, 45.469751470751476, 38.22292039496449, 63.3234285812227, 51.26063616397362, 48.50249020320923, 47.96220337995338, 41.76456023388377, 60.32749657042304, 78.21711122374357, 43.71192171218873, 74.69666076957098, 49.90576030376571, 39.539820534943225, 37.679378791057594, 40.80346641185612, 37.977084683290585, 32.41200153114859, 32.30609088602318, 45.93041749418451, 58.983918257009606, 61.89522984939897, 49.95603525567998, 52.72657009167304, 59.49734652748351, 45.7758046158348, 35.79614894337689, 56.338855168077544, 51.79309429154439, 50.17492246423167, 49.45681448535126, 94.87377564102566, 5.583283140835772, 3.9162921604302654, 59.28472619047617, 11.883705882494882, 6.915702521893311, 10.396591880341882, 6.91654627381261, 6.546112079441025, 11.451208101470254, 5.696588820477437, 11.162068886832122, 9.775125576986621, 6.667897129916862, 4.07249083943068, 3.427912597767718, 6.855468166852067, 5.262775517441072, 4.217759079737734, 8.438877241038531, 6.139497244793982, 4.155880007939896, 11.924343073593072, 4.112602314098305, 11.264307262182264, 5.586391976444605, 13.835801871822309, 10.366778818403816, 5.224708357337165, 13.664748223998217, 5.775802314352313, 3.7491118402825703, 12.640176046176046, 13.278944583194585, 10.60006447997059, 4.545913295038295, 4.137727793507116, 5.322219585969587, 4.137522028506548, 3.6467037770963953, 15.298778345837171, 19.10643365330322, 20.12315502144914, 16.2593566017316, 22.72560515873016, 13.387081353115406, 25.970498168498164, 7.15262736315175, 4.508708978752147, 23.648555707337977, 10.06831043895718, 22.33236464266728, 33.119184820081884, 8.204233006990385, 7.612921109806563, 21.478803054377366, 17.0805397935398, 6.8324731088767665, 15.51072815107598, 11.11415237452606, 19.32150271950271, 14.106476608187137, 16.141752961950328, 27.431247585747595, 12.988704068154068, 3.38169460598815, 4.0732080205394565, 10.804547558922552, 5.12622014341008, 17.40577338674397, 20.495269896769898, 22.278985181485194, 5.649780350182326, 15.86570876637982, 10.942273236567345, 14.617256521256516, 10.849919946599298, 16.393261994541408, 10.034207796451916, 5.222813611645463, 6.966476149667325, 18.843976190476184, 24.03774325674326, 7.157834376715055, 6.605692477654003, 12.482704532881002, 21.278275432900422, 9.492165812129052, 6.7409658798752705, 27.940258731464613, 5.186259425952376, 5.821990818508626, 14.840411772536765, 27.982968364968364, 7.2517002109144055, 26.41445592571679, 3.2213331698750385, 14.973314234511003, 5.891178387583598, 14.134004470202997, 15.104925575632095, 24.396750000000004, 18.53616784121676, 13.568361705545916, 6.126727585666205, 8.451839101716809, 22.887695669526547, 3.0808813504708805, 8.127122518909283, 12.862281399521528, 10.648651695526691, 10.34753681318681, 8.152438186209926, 14.650473216524126, 11.638633667956539, 5.927901170149454, 11.733014675520558, 7.434446923446925, 6.409333236938498, 19.368656813602644, 9.17803330796629, 10.765351883665227, 14.477716356107656, 13.71163424702459, 8.444197508947507, 5.251662244890185, 4.697624808198339, 4.8688349170587815, 5.3173791223396485, 9.202607416219262, 15.353170601650431, 18.94445810014359, 16.71226147670699, 12.653465651995052, 8.256661825103, 12.731945883743107, 11.498063149384548, 8.055364233332435, 8.451854445354789, 8.111012981159027, 15.732954315555835, 11.457314212642716, 11.153882807232547, 4.313494070269162, 8.952838488202627, 7.666871714714594, 5.964522730308335, 4.554589636001515, 8.313256336370884, 14.495610997786484, 16.115692661203532, 6.56816189202954, 13.195922991288455, 16.706598361820493, 5.705755287893645, 7.860273627688101, 2.475742251547555, 19.636313081703747, 6.293349770440286, 9.97330286380286, 13.916166379370408, 11.36112190907819, 12.218882859010904, 4.45602520842071, 2.9430648885164987, 9.025770072486543, 4.874773443840634, 3.8403056188378226, 2.8356793287432316, 2.855574242612899, 6.488899660764235, 4.486395485812943, 5.247979789309864, 8.037945376377852, 4.061050134918251, 4.754734366596591, 9.506047402509525, 3.6984312289018173, 4.560583411510789, 7.581555760018381, 27.29878766869413, 4.21898278916216, 10.802250230150907, 5.322705895268154, 13.011138349157132, 5.120299777237376, 2.5404489153808196, 4.138665206832909, 4.523924983014456, 10.399930040607897, 3.690950834342338, 7.718602409380349, 7.190240054659171, 9.394291920669092, 4.56354511183656, 7.22336542326033, 6.963257201059073, 4.663388387611124, 6.463243831952779, 4.957760749908201, 2.5029190324668145, 6.1018353564735905, 6.895868406921364, 4.432062112051939, 4.932937399202103, 2.6209314302551325, 7.091240085829241, 2.7871860363765397, 4.988536916009182, 12.238069121170813, 5.902388181856735, 2.6744604526694373, 7.069325425637308, 11.389871317161333, 2.4032967990235172, 3.187427619233651, 6.212646670287652, 4.425432562138935, 4.888203613274407, 6.156376357212045, 4.130593305332705, 4.145753257068871, 4.472086153368514, 3.406484848962027, 8.105159937284936, 9.513209739638093, 5.830413010819851, 4.5679915077027635, 9.370917975053096, 6.474360043387983, 5.161303263360733, 9.393186871476933, 9.212958309655408, 6.362967118111655, 5.4360638814985105, 5.37057641965138, 9.402097665722074, 6.2496566006257215, 6.718457246261504, 4.779065757174989, 5.801093469590185, 6.938687223226251, 6.641724404459532, 5.910398084692218, 5.8420188830094535, 13.003173856654671, 7.488764560626808, 6.499377551469278, 5.0326612993215925, 13.501693734180861, 14.79726454147782, 7.3638314988559666, 8.136374053949105, 10.157367763170786, 8.648649934721831, 8.964934614807692, 4.590364661220342, 10.598533660024756, 4.000223090379563, 7.573014177807931, 7.6784310654014485, 7.9139903781846055, 8.142755867503777, 7.142233541675048, 5.878573375073361, 5.670243636775541, 8.813096891169259, 6.734255940838059, 3.3130886984740853, 12.202141468242083, 6.387797699321444, 6.811708665110413, 5.554487659992712, 18.393146091997103, 2.994229282708331, 2.9695969357744114, 4.640360104551808, 3.682165193500811, 4.979289774586387, 8.858425964827523, 7.046054002189139, 7.98036349179714, 8.699491386212072, 4.419739449154545, 3.4725895947005783, 5.1913184024041055, 12.522598765542384, 6.117596536944922, 5.410794590563778, 9.785013886997014, 5.410251095625295, 10.010762259104451, 9.724111506361838, 4.967477974468255, 10.478704672652107, 7.491293348879519, 10.084161043651182, 4.4765761536025614, 3.466113433732224, 5.764284346867644, 5.4375955369737765, 3.5091357996576655, 12.567910943578498, 9.082663640804247, 6.690770057321501, 3.8115607700336396, 3.766753484055016, 3.9775284856755677, 4.575929096227209, 5.748117873545612, 9.337037842258484, 4.279955245147894, 9.681489324680681, 6.202011384519112, 2.8053369264758663, 8.31513280555846, 10.272768843193841, 10.65789559682535, 10.475383805206182, 11.034965760957187, 4.675316935859336, 10.865258550832438, 4.07388252496779, 7.572939770995434, 3.8085544510567124, 7.623991132603425, 5.137287340440001, 11.193981948159058, 5.909353753935898, 9.268760260913087, 8.955359571864085, 4.014580026441012, 5.783108316173687, 4.522790867868221, 14.196439538739313, 70.34369737484737, 4.420739714417686, 4.192648929054516, 6.755636028781819, 18.299101852543046, 6.009912819777623, 11.608528403857347, 4.613083979706875, 7.052186105893475, 5.89841834432738, 5.917525188891852, 9.759138943460524, 11.894002594812457, 5.318167697946567, 5.002751115447399, 5.667061495095006, 12.657578149992789, 12.893289230021516, 4.905139305470335, 7.804551722924032, 7.579083475601618, 9.737115593973188, 10.330092413671368, 4.150206989499608, 9.621892645473329, 6.212767623817634, 5.371412395802045, 3.574867981327862, 10.225843296967698, 17.79178735153735, 5.66193372729291, 3.2262970764499475, 6.691210613076483, 33.61721026522496, 5.279902660377963, 21.597245922115, 7.942735948378962, 9.820111805843547, 6.288531092731508, 5.483464801507197, 14.24396571374063, 12.288671587069855, 7.648183652162015, 4.49184730808679, 10.78408653406847, 7.916047563553965, 10.489721257899507, 8.630210177791842, 5.133489688377472, 4.988057771710349, 4.965948976407311, 14.906004091384158, 6.066853482418141, 8.04587416598969, 6.680791732941142, 6.748698835823832, 6.311640957253616, 14.772305215167336, 10.797241173152855, 12.925805755288334, 4.264731259403715, 4.991710649380493, 5.009271174146117, 12.21672969666499, 7.414331358072427, 18.424103042046973, 4.51772492030994, 6.626874183507175, 12.62415436255304, 5.653644402834151, 9.546078996439292, 13.699696013716462, 11.89458706164477, 3.754389272346343, 17.32610468760255, 8.754448698915068, 6.4897363681927045, 4.04352252024941, 4.868542880223281, 3.2102328729105993, 5.283628285627627, 10.524642258119613, 6.773285703419255, 10.674523287396676, 19.420218140122646, 9.998369183603351, 13.609883437712076, 19.3932482464248, 4.487370887609186, 12.986820797565757, 2.5420520660560784, 2.8856621144412378, 6.116537736021501, 19.096490651249862, 5.027251285024823, 6.9718180403904055, 6.762863513717259, 4.907092191807456, 10.60909334840158, 4.613728050760086, 19.275985998144694, 3.647090180360135, 4.3343234094174905, 2.689343739718656, 14.944138794692185, 3.13080891025279, 5.330096755819715, 6.594407900866148, 6.719093609901944, 7.8524017565607585, 7.661996043790779, 5.603077628357012, 15.323181350793758, 16.612217106495326, 5.317194150079851, 6.5429150108163245, 4.38369888326027, 7.362772733118935, 10.940129646980385, 10.129733702899857, 13.561220853097494, 12.09612063750999, 3.2941071755403044, 9.146874310570814, 8.589547131858351, 7.533941865535475, 12.262955331347356, 6.174453733217691, 6.005145247834839, 4.100829624985816, 4.520033545194874, 7.875817455035052, 7.5598141326959425, 5.5256151602266135, 4.046506117565845, 6.460446272804329, 27.27896449332679, 6.487522879099003, 3.9962592754433506, 31.77882415184669, 7.075552676673064, 37.480402163388526, 6.564832671603695, 8.896854961386197, 21.364714674876634, 5.869871578320369, 5.958813637728498, 10.04284395869471, 14.726459474163036, 13.88743471369218, 8.370435062561826, 7.433452116490029, 4.253337067935477, 8.09878282349033, 7.78021399438485, 3.6298005266318336, 18.366575469804783, 22.398342227584962, 11.723666172558136, 6.24254031316392, 22.157740779265975, 10.445440048082961, 28.038730907980895, 5.544169911164545, 4.132413440108247, 4.333925061289477, 12.321951254145775, 10.316776464854128, 7.064362815795455, 8.424710328641895, 7.274401335638768, 3.772645744903738, 13.009179776200051, 10.232214528192872, 23.46117859498315, 12.875558268580404, 7.751365183680181, 12.52365987585898, 5.746000489335289, 11.151511647605007, 39.982383726739364, 9.76667280764577, 2.2735913244954267, 18.72279609627788, 33.143790393816715, 27.495152314849886, 11.684390394787442, 11.081526872949073, 19.127169768495992, 5.60331921434815, 18.37432462460853, 6.308808108682307, 8.150610756048675, 4.810981873543789, 16.32845226995227, 14.588555401603227, 19.28176605836574, 6.641807450843539, 6.136436046634811, 17.107405655646225, 25.123840676627562, 21.66451049667179, 24.61830414389326, 5.7046207232732735, 12.614526194505343, 13.59728276884813, 9.548434354622666, 13.554886281398204, 15.673559487403196, 15.9552585371285, 6.98932740803902, 5.817134993957514, 18.214144216267194, 5.798175249169598, 4.267671729131833, 13.262312208170547, 19.079132412769603, 7.125461867838604, 11.754135321990475, 22.148579125977342, 8.578574070727024, 10.276744372853672, 5.0502720120293905, 5.970507084011388, 3.130244919722136, 28.954526055405868, 5.62301064926638, 11.800487685924763, 3.345262480736936, 10.498201817171141, 9.56996193246838, 46.461462121212115, 21.69526041785871, 10.496582672079382, 23.88074521047069, 34.12727716063756, 16.68236225009041, 5.424904862625608, 20.898953132033814, 4.2312944680765865, 6.822008221286105, 4.371855701402526, 15.466577961461379, 3.663659159889427, 13.40868321243321, 9.754579851915203, 12.230988984788594, 6.258843613642201, 20.425590798479472, 4.872608515828295, 11.608897620934158, 5.118909876293218, 26.443981681967042, 12.278645721378409, 24.478124463795957, 5.500293925321154, 8.570961797334416, 7.52108321541819, 8.436497916989225, 6.419179465365417, 6.191619571948149, 5.642184287412434, 4.957901731992718, 6.4396313507970175, 4.791422746133915, 8.335201034995388, 8.025210720019958, 10.407089202574634, 24.312817079643562, 16.371659443808397, 6.772955871663006, 7.362698837039819, 11.305929357452744, 8.335691214445319, 19.663817688936682, 8.938002928507967, 17.037557076026683, 6.91425867280519, 26.539163483397818, 15.456143633007251, 18.432423683302165, 11.709296604751223, 16.219493586637483, 4.8865261714593045, 3.904912929185273, 4.77389779272011, 10.510798262794212, 14.29571332611589, 2.8963376280319237, 5.34906045121291, 5.297092034154884, 22.39875627324412, 3.897874229247449, 6.835601243574589, 6.502496588728675, 8.385041421199093, 6.476506668947719, 5.759031957040077, 9.852994228479085, 6.360295947005669, 5.135699164288796, 4.827434262824485, 3.687625113906477, 3.7985735228951114, 4.021726966027275, 5.444005340334725, 12.586068381269467, 5.550495358840311, 6.355901085780496, 4.759641440345736, 8.76004449580553, 2.8724083724278984, 7.282940685468586, 4.8968816118504455, 7.719817990095814, 4.5890498179825565, 2.6559463205846385, 9.358873394742984, 4.175046510961847, 6.121327319435993, 4.562476303178764, 7.769590196730136, 5.909757838769212, 8.166563986768635, 8.2715977300226, 5.765039009248197, 2.258992826352867, 8.780992427426527, 6.46267635776547, 8.07447649697314, 3.8912436130581356, 3.501094355448997, 4.583656199797027, 4.1693054762106465, 5.11838193362818, 5.177908139084728, 7.093736384865986, 4.383821612983267, 4.7417069914377095, 9.059579397334968, 15.056223185365495, 2.9903823476123894, 4.909923070806315, 6.044758151816731, 4.222712232560273, 5.4325999447868405, 4.3142043339961065, 4.41020587769659, 7.3948189693364155, 3.315013380168869, 4.950332516900091, 6.950534350883, 4.234082173937385, 4.593613975909927, 9.140618025705814, 4.17786657976753, 3.6590805254829353, 3.6562201238404715, 12.025285635006938, 5.3577289609182435, 2.764185272894862, 3.175876506374693, 4.5695279008655545, 1.5224232307542054, 4.034824772179724, 6.514772292658305, 9.39556613721005, 5.825124048397003, 4.912957356835825, 10.84936886232347, 16.806353810305893, 4.6671401341821594, 5.706686362546352, 5.620026685449318, 7.639066208116213, 3.8196507348109363, 9.549884120119895, 9.436067701768419, 2.381261943040097, 4.637575193357027, 5.824513493286397, 22.635317069403225, 20.286803263566277, 12.021027908873934, 5.399289416914467, 5.293309410762931, 11.66791629146699, 4.236889959007673, 3.932433283342532, 22.637998234715727, 3.3856957442414544, 6.225912840656325, 7.44990595158409, 5.920706718390405, 5.068278923675923, 6.741666787554045, 6.4117694367435, 5.1423954258701645, 13.340009955977699, 4.100491163027525, 42.4583556204164, 7.158175050441313, 6.316560454090386, 3.075419187067377, 5.781655678983319, 21.368297872095738, 6.911367842580244, 5.521236040398778, 4.150402179361338, 10.608082403630666, 8.961739539247823, 7.0128981065233225, 5.270643591038622, 4.8272914582481095, 21.513526867807595, 19.24524848868969, 13.08883750445682, 11.106315259549739, 22.485291365678687, 8.400316426476722, 4.213453174001138, 8.609830977322915, 6.349807490335054, 5.753819203768615, 6.754217337087104, 17.77277854622577, 8.739618149763867, 8.923116544699507, 23.526541449001165, 3.904753301366436, 25.81270803959474, 4.495805725801664, 7.879876250567199, 5.055846679665509, 3.8629918221454633, 3.3866294834700468, 6.545951996260416, 5.066935391801311, 9.953089509213722, 5.094357421074281, 6.742167295252234, 8.260326991523595, 9.35903277515232, 6.869527782948236, 18.999408835283397, 8.691836882367857, 4.740870593380876, 6.431252208649583, 17.94370960902315, 16.56120962357321, 4.852514005930007, 4.906361867989892, 3.8661173277535643, 3.6293981138280653, 12.87857334235837, 5.248298415230963, 3.269042024250639, 4.0244484483722465, 3.1992859181527926, 7.6212804806996015, 6.346689388908598, 11.850165464391743, 4.81584099947576, 12.882745133632804, 5.024954851664175, 21.141225286229822, 7.31816996213415, 14.057575932939116, 13.328513053641041, 13.319237238922303, 5.604037968461136, 16.33455539132995, 27.793965565802612, 4.28885866319966, 3.6356025477868816, 17.644601468082243, 6.921641095977537, 7.571173729375573, 15.058266237628379, 6.467898201808389, 4.779795241345447, 4.440845161786979, 6.697790669353766, 3.6779568665665603, 6.950859181350681, 3.646611598909862, 7.398004789939606, 9.882421608286853, 6.643880222494823, 6.471825580854626, 10.769653287234302, 10.565460379285454, 4.066041671047592, 8.39445761564493, 6.524423605275287, 11.451637844445798, 13.674422424021476, 17.797956848890323, 11.129609651869954, 7.494167240463715, 3.174917423945621, 3.5210026706233686, 4.988267461785916, 5.32019474841897, 4.264214093455234, 11.49934044093448, 9.272824544085418, 7.213943182857975, 6.42674762586472, 11.376023458802905, 4.16110100495977, 6.8814588111891934, 11.96614367261914, 3.315691363796779, 12.770327244033606, 10.69638424927644, 7.581041855058365, 9.901148412295525, 8.708700396825398, 6.209075822606015, 20.57490986215866, 6.239979752144355, 9.149753816992488, 3.813186595081301, 5.797123902988166, 3.1112190817689807, 10.491925437480374, 6.264145432488714, 6.304395122052313, 2.953762353056263, 3.6580223939863177, 7.053397784057207, 3.1683782325110466, 9.933754230177188, 10.211928141722659, 7.846197633091597, 4.299921326071041, 5.034308358598116, 24.9167307706424, 5.2614090389264065, 1.6965423108907323, 3.4979671830326278, 2.830371914775606, 2.382483641764512, 5.321921248937085, 8.079326513057161, 6.196294018071383, 2.8648131684483378, 19.040185351988605, 5.013113261262615, 5.120040083550557, 9.35556047283063, 4.6169863390409445, 8.462181120905331, 3.9794556815810975, 10.261177510426695, 5.065160297506375, 5.739174864380309, 3.657911040389759, 7.094503693422968, 8.4646729378028, 4.816889630975927, 3.9956209853767337, 6.115604430803648, 9.727023029487064, 9.13341305225004, 4.436192745254049, 7.723617892806342, 13.023882466916847, 11.702058365873032, 5.479499483649542, 2.0663483286523237, 6.2324153761425185, 2.3922840575388546, 4.876915447520157, 9.389428843277122, 15.703787821568639, 12.692224113553975, 8.05781357836058, 4.518006900667411, 6.51671089291499, 7.606699256496376, 5.002354629337845, 2.9527939250116653, 7.57930867453637, 20.052117836187104, 5.327184792013411, 6.739023326082021, 16.20881996914667, 20.53829714500149, 10.292291613201021, 7.154396095772808, 6.204974243052325, 8.390521360408563, 4.468496146937139, 31.8862381893469, 9.23281614442116, 8.552268015627577, 3.954238497238485, 19.731812007709056, 11.153800119916141, 10.179487379477933, 7.21443919857401, 5.730680655393299, 7.177315966744833, 5.010006364998353, 6.7325330397615915, 15.071427229660314, 10.861593021585124, 2.4631703500240985, 8.144476313789712, 6.002946504112475, 3.850788306302886, 7.9960873552549225, 6.1567175197005035, 5.521919416404644, 4.17249006724567, 9.483908652147068, 19.71314559333581, 11.139693935009154, 12.408991928712858, 5.912648161443951, 10.622397016357613, 11.012450738724873, 12.611876673891105, 8.6310357968322, 4.931290955895879, 5.4569163371521725, 9.346391428109335, 3.7028743654227854, 7.215036715515788, 75.92712186663915, 5.826102330559747, 1.9988100172765526, 4.839004293137091, 54.799213274506144, 7.117459729008697, 8.444333906921493, 6.149922469219011, 3.1743569757705825, 14.835260830963767, 4.686197610147247, 2.5920873864697387, 9.281874567950343, 6.051469835719837, 12.148308680680964, 7.55670268241166, 5.930223001753931, 5.932242042572403, 4.096824978123931, 4.678265807437728, 17.334617952375503, 6.210568749208691, 3.0489205645827004, 16.238976708010494, 6.710454483972813, 27.39898107579571, 11.018166743144631, 19.97467744480371, 7.844345272805788, 5.596868694149338, 4.253798868871739, 4.792923286546565, 2.2758321908541705, 7.029245350735423, 19.16703093685938, 5.333349780147723, 4.941629590612227, 8.538756267680842, 18.957519909485075, 7.82926497897766, 6.37587615676167, 5.553522612563944, 7.055656100497035, 3.177637158504278, 3.8695127105660485, 4.816158196593598, 10.541696349703912, 6.502089135912557, 9.598871132816825, 3.954581710508178, 11.6595303043984, 17.411504633308073, 5.811574361519297, 8.017156103333656, 16.082199296660107, 7.001072307632092, 11.151115114145487, 11.992966476780976, 7.414089286997061, 3.5792677813487574, 16.402860625305333, 3.2071630975161822, 3.7789662711536627, 8.663576217343621, 14.922280747328212, 5.630570076172603, 12.395673385913726, 8.464426639438031, 15.12930621153679, 15.20708183578615, 5.46607894619787, 5.997729615613641, 12.808098998479492, 14.77616432713397, 4.209865560794379, 24.84612419588782, 7.233928525833469, 11.378960867602594, 8.157116370980559, 19.628730537776995, 4.653725463127432, 4.094516612939164, 5.7956446916190645, 21.45407006877558, 4.892724202502492, 4.495300586614007, 12.200338431201212, 17.09875693081339, 6.550018415465836, 5.069237105544719, 6.210888040127815, 2.9874262366658866, 3.3468639171820005, 5.598039154211833, 13.688221685506486, 19.69138489269868, 5.747165664896292, 9.249634695354027, 4.651562388907897, 22.537294377812085, 3.611300576766086, 18.070437780669206, 4.249528007988983, 26.100475664203955, 4.4129928112257, 3.738363181033513, 9.172547465662577, 5.506908125668041, 11.633118092814637, 3.9625176270199267, 4.78558646254703, 3.1874065051097697, 18.04297207271067, 12.93286323464707, 5.387761700179083, 7.993462048179355, 9.091343341372063, 15.785258626647021, 6.967481125406733, 6.806599701924643, 5.908750193953117, 8.04388289564685, 4.281447117257351, 8.353068074011805, 5.9411235823945585, 10.318198096420193, 4.030022867106396, 10.00963693739524, 6.951152541429556, 6.855974793769826, 7.646496213823191, 10.971262435383599, 10.429542227572995, 18.622066372353142, 8.182477960182272, 16.5037290954536, 11.865863504201593, 2.587937721340759, 6.418813156808198, 6.486269691406053, 8.607651056314795, 8.232549477668618, 9.6648803515112, 12.6593210486812, 13.514734110292954, 9.806547891775969, 10.312070650719265, 24.550412052214448, 12.244491017200804, 5.814318581461162, 4.565518382037574, 4.425117446860761, 5.37475143030316, 6.365054196796288, 3.043442710143448, 6.0605912030243525, 28.74066804376455, 11.462687461312168, 5.181234190112623, 8.907548307799447, 3.2676313328722717, 2.7723237553962656, 3.887633769902192, 8.984905534948211, 6.559384729349868, 8.503925283308302, 23.547916063979994, 6.568812242515167, 17.126703584043877, 6.927006719547506, 9.726996474682444, 10.537010639108884, 7.083189347200626, 10.312845085719793, 4.9232063967973625, 7.644425961651089, 4.912174888954818, 27.23269085836264, 8.266921915337194, 8.852272940510696, 6.0751498822422025, 5.150600576434679, 6.723720791679342, 8.29194302801152, 7.3520003413869945, 11.336141348117806, 14.395780546006423, 4.479157793426355, 8.263916490090605, 8.585589741323405, 9.939123866088792, 16.024930245772374, 4.175380909458602, 7.0542094678418765, 21.99593776474689, 9.5528256727881, 11.064200042520351, 3.8609889909442683, 12.247833244166213, 3.8541804992514876, 9.919220302554054, 3.725314260672789, 13.861237641310778, 31.759412303506835, 8.514254930372248, 5.710483212787123, 4.242388352699626, 48.17469222582218, 10.606267301371208, 4.721979838062604, 8.32525960546342, 9.178193455387111, 16.892396261804933, 5.0258828190504055, 8.549911168593665, 5.887956304604292, 7.4806286154249655, 3.354009953915761, 61.94569298245614, 12.22576094389498, 3.8997547124350187, 8.857999711613111, 34.243424224496486, 48.796215140629066, 5.775442544318576, 20.46144494881336, 12.392209164149431, 16.4153783189969, 11.60707559186728, 11.933736377650463, 10.712611595530811, 23.991659565698306, 5.400807227458303, 21.26896142965458, 9.446843266830967, 10.981981311824745, 5.823905827262828, 27.911417636037616, 5.22802853209439, 4.427500451887293, 4.3568432262619305, 2.717481826658528, 2.393851292440523, 5.200637159826839, 9.519963346643094, 12.226697016272523, 8.588218815053516, 5.9492524626597305, 4.6551175918210905, 5.697546148539092, 13.022301532211678, 7.2223572676321215, 6.927677470890193, 15.196334401742835, 4.540811967120863, 21.43143455764161, 23.46210749522669, 4.832723831229602, 12.348584337718798, 5.401110642495526, 7.808905531880198, 3.880963414274634, 8.130302763332434, 5.941628034348454, 23.388220168791882, 11.068107631143024, 3.725549509701481, 18.897976292093578, 4.511449404102183, 3.738415078002015, 6.174905580036896, 6.606117499239378, 3.918728215360966, 11.009465304248582, 14.156085373138904, 15.536950062364532, 9.279120621482091, 9.08980162865324, 7.209381907982097, 15.190120021187045, 10.510898940101127, 5.31014776366279, 8.502027930165506, 9.787254519608359, 8.492530951011593, 7.073948650515989, 14.174882425418373, 4.674037003587778, 15.209358082226077, 3.983136726888404, 9.180197517281554, 6.139450475945979, 9.699438714919996, 22.229111218846505, 17.218274607993603, 38.49296447789937, 13.040214230196632, 6.27266873929869, 6.090271443922233, 7.86081108485591, 3.192555046906884, 9.806178411168032, 3.986162235310443, 5.4550852597359025, 6.47120976088684, 34.06629851957666, 5.755276798609125, 12.017574714758931, 7.353045550203165, 7.983952459067948, 8.205851137512427, 5.4772053918232855, 7.852225657482755, 9.310157809393482, 3.9377279255762345, 5.4340465195629815, 6.464358122084535, 7.304705912819562, 39.692705091326786, 11.293657488572757, 8.408318105930496, 5.041438636836622, 7.555393198357362, 10.829700468330664, 7.584648735227397, 5.535492523448054, 10.751273384215832, 7.388212593061557, 9.221565004070484, 3.9867649404931362, 10.316049956209072, 3.6355689513343785, 5.877493943193312, 5.076311209805827, 10.41743698707375, 15.753995338335303, 12.755807875060432, 7.623567403572548, 8.144733896187173, 19.133214777361154, 6.374029751261652, 4.744631789227512, 9.197443350443514, 19.66775173630057, 12.452341176927385, 12.935189966218202, 12.89301532981893, 6.983275299915448, 10.956805715201266, 15.282838154925063, 3.2040025301291597, 6.8192532082464385, 8.191832221887001, 7.927495772114315, 8.933716608151645, 6.261496811999613, 7.672866109474354, 15.48031926270327, 9.831560370190726, 4.02088719871801, 5.788456539913445, 6.404147444123141, 6.04154162474451, 8.234889114787542, 8.947127174661942, 6.941855597450226, 24.104596785282318, 13.27215582517136, 5.787065417371858, 5.4140397149836454, 7.737850256030146, 6.89415441128471, 8.292782844501831, 12.190591164972599, 4.390802025972559, 6.834657092366682, 5.8999214386348005, 3.2107798358005053, 11.098796353457343, 9.350735531333639, 13.88779152589756, 7.9377232458186855, 7.068023126547957, 10.85458878615111, 9.688772014926636, 3.938327261333751, 10.117317198625253, 10.37078552520714, 8.850131887578176, 3.486804354858702, 3.0875919909464518, 3.0237270499380315, 3.914244550002287, 11.15170802456127, 27.95138892489144, 4.2312173305480405, 20.114182231091572, 13.04391566952999, 12.645683596496097, 21.547374175426175, 7.2876674754722455, 7.4924888264054035, 7.704364950875452, 20.805509138282105, 5.411602765324307, 5.132325457456683, 7.881179871598986, 6.993544139632175, 6.789931201975646, 5.3013680362067435, 13.92460257209149, 7.310486988225737, 13.921655089854884, 4.3881374366380115, 27.977488028053, 18.676168130086307, 6.2584970005771465, 9.501170200465591, 8.438881833944729, 23.1662568627126, 2.233322870547618, 6.815704632119698, 4.005799738979591, 6.538631022824141, 14.632775232645502, 25.83692542825887, 21.73803330038257, 45.20799618850171, 3.917856978015019, 7.981508268181463, 3.1974831103558534, 26.58530753637822, 4.074504704480598, 15.741650488861456, 4.016434105023951, 10.134856914926505, 10.075090168466772, 5.741821509593228, 83.77561038961036, 16.254242892489764, 8.473630529428227, 6.7179136146116685, 18.1876447563874, 9.593567667703226, 16.541027253547604, 4.1717618868450845, 9.191806290365246, 11.569957921576073, 8.820152268968084, 13.426664818868076, 4.337966404075075, 3.417813054170824, 4.048703339956507, 10.037448845386779, 19.051444688021355, 11.951901560397825, 10.868107902990259, 5.874626453858863, 5.9039602695602165, 15.462766535097414, 5.6697692360718825, 7.055221852015359, 4.7845798530106105, 8.022482106973579, 4.696510480607568, 3.153499796387361, 9.965040458055176, 5.008322864887911, 5.17887182087257, 4.931479814878407, 16.877208772522074, 4.868236509723786, 6.981298950177241, 10.679169870932483, 9.491140168589961, 3.3978154450468674, 7.891841076681302, 9.119563827902702, 14.617082052020779, 3.881856246139176, 3.71220154907418, 2.990326304495647, 3.9290766558739105, 4.300100602398586, 10.919730875119741, 39.68478769031121, 3.995688113948439, 7.8959238317900695, 4.501093756191927, 5.978342919051536, 9.761428843846636, 4.147962510656495, 4.934014350265355, 7.901970452489504, 5.47358591673653, 6.086457736518798, 12.306512264036986, 8.090444261255117, 10.081915330108322, 7.370675504001194, 8.084204790975837, 3.3925643224242807, 7.186564733706643, 26.059801373350563, 9.330492091483018, 4.920972192663959, 7.077298746649848, 2.5140251794854676, 5.050244060923549, 4.3186523139125805, 5.488990217924306, 6.0119131565131685, 10.545761172204594, 4.664999041378637, 4.395972096694571, 13.482387032834016, 7.31650928968859, 5.884840881960686, 3.749113650094172, 3.8486278555587154, 5.2685278698717335, 39.344286882682546, 14.575966670833154, 12.911559313350537, 4.113172852890344, 4.3993961031572075, 6.861969821442276, 3.4541934704648414, 7.492970487346816, 8.141401147934605, 9.922443104156764, 8.091826396382, 7.250741781009178, 10.974869572068698, 10.032059723210082, 9.171750545347233, 3.590774641202003, 10.766217945349409, 13.315394506511382, 4.3089048569065405, 4.561989498490873, 12.956994229111105, 3.7113032745521837, 8.372959816012147, 17.439457390957397, 11.460425211404756, 4.310601565553097, 2.420807561498785, 5.607384965692218, 18.62242689499595, 14.016143276981659, 10.959263651678983, 4.234544638306588, 23.100607284314588, 20.665077717451297, 5.047362263985754, 6.580098072221818, 9.837113307197837, 9.49899082191888, 11.059953129457607, 11.151821676500028, 10.019770423527914, 10.022862899459707, 15.002289361945657, 11.998671597813583, 3.3268674830453233, 8.947137475149196, 14.24396220560522, 5.847556738510811, 5.757338678753938, 13.198478732254221, 4.3908203276227065, 8.979980706934125, 14.049629944605336, 21.344707411829813, 8.405436787224605, 3.5085474606066054, 22.397256094909416, 4.629801871898122, 6.9730466337669395, 9.10011163899167, 7.745283756416652, 7.343959278969712, 7.354535666557634, 17.760070282230476, 6.167347150549566, 10.137723420575718, 25.415382079262812, 7.895646356549281, 6.4434960886898285, 10.5141159127874, 6.901465001327911, 8.16896764852834, 9.279863997113997, 14.222862196988578, 3.9827050066312464, 10.283559727328978, 13.551294781134668, 12.475378871213476, 7.239567663466878, 4.812448040778229, 8.819537888135962, 8.58786275759184, 6.756180193438427, 17.840272370508416, 26.201372231827342, 6.7738388316476525, 7.658232646882646, 15.794613837428697, 18.83204674524234, 10.965805051264354, 13.54880548993682, 56.74566537833081, 4.347975368591587, 10.617703925292055, 7.906352675198575, 25.7780005755961, 7.6417043817603965, 4.715220541192695, 5.973950666969344, 8.843369587805986, 8.104552142177939, 7.243107498036564, 28.931420845596573, 5.791462668052331, 4.852764400900038, 21.97749306411775, 11.704692297269627, 7.657812734461681, 5.401130585518517, 6.490177723548177, 4.138706992914091, 4.019431268929987, 10.135339848797974, 17.48651841622407, 5.8072323003111, 19.086667999256335, 9.186889503995785, 28.854248776310275, 6.985466715120929, 4.634561305818927, 7.600916313914842, 16.574248960433223, 8.839250131562359, 4.691588184051666, 15.087182204732848, 12.299354563953559, 5.653897261643733, 9.33595379736235, 21.948183918637064, 5.428317550401152, 6.108281323728257, 10.511189548623419, 19.013656373541814, 22.812263791604366, 6.689820088235208, 8.133607810732503, 12.56888188582364, 12.444039904732685, 4.424598538183805, 4.773567696055602, 6.192304810866182, 3.6551816494906917, 5.755123691224868, 11.83555656081329, 12.070227185598128, 3.6729694608684, 30.094650098058242, 7.386322715287205, 14.262172297181836, 8.87494903754826, 4.447710280713821, 30.7061796743013, 12.560810283924452, 4.609459614798261, 11.708846935019793, 6.9980124841594336, 5.131984153197703, 7.860782395960912, 5.583299881280569, 8.519661209396528, 7.194644419191028, 4.82742952146236, 7.402045787911461, 5.4123310997833425, 6.53166433776548, 19.728496153563224, 7.472040293500193, 7.652353429376844, 3.7798853033901754, 7.339384184352598, 3.29482090119315, 7.692107323317127, 9.459431949730622, 28.423530731859366, 18.879592931259847, 6.7603990945173305, 13.776086012057883, 2.913651887154564, 14.187327699471634, 7.4973093531057, 3.416322444279233, 12.363219952808967, 12.275322493137669, 5.209665796366865, 2.247310146858424, 16.399704745220973, 7.297765565064022, 7.28882913214119, 7.138919273998935, 13.582190846808075, 5.196705225333775, 8.291592789933635, 6.8956536964940485, 15.79680419524698, 8.615094123506411, 9.44922691056078, 9.946534191484067, 6.518781322898558, 6.750563160135847, 15.493193684684037, 3.511396255755573, 5.112747566258074, 4.982724125649725, 13.891798214246863, 3.703361263440025, 6.5936466528866235, 5.199978466423328, 4.74570960169367, 16.52361359617242, 5.342901741260504, 5.3104986711550515, 3.9591326728414002, 10.18167256878019, 7.345238613462263, 10.270781942441104, 26.982509703531772, 18.576702235100196, 6.933386473293249, 5.907316570425173, 9.56943673560273, 11.407653838148402, 19.00553982978202, 11.20264982948567, 19.21010894225597, 8.9601328834412, 10.51205869139164, 14.110108132939086, 12.489609850243275, 11.065914640359265, 9.258941098497834, 5.429679578910079, 6.166871722451963, 8.430040339123218, 11.308583305105959, 16.546140897746167, 15.546374696611387, 7.27413687080053, 8.676449029523425, 5.580483074891191, 7.10243025052904, 6.5054236822146505, 16.035822420863713, 13.268579012450841, 5.8095924722606815, 4.774484401833607, 14.828447574605736, 5.932375720647418, 10.098545741137933, 9.067991566665942, 6.992206505133068, 6.332384822335955, 8.541913151788359, 15.599370248163174, 8.434714564923073, 8.311275360871612, 6.938177956130223, 8.27859765345483, 8.290922054816859, 8.26854869717614, 16.663786674964356, 5.862367406446742, 14.09179517363459, 4.9407654655485205, 13.064098543064778, 10.025809868626878, 7.669656043026568, 6.545843674736865, 5.067451727272577, 10.062647454145266, 5.916450395681582, 10.634941497240526, 6.397495860292902, 6.123027446042261, 9.548024737822175, 9.678072952995509, 15.246276599707489, 4.788679375020072, 6.369885689609286, 9.80021621492874, 9.169049239662334, 5.028730397321919, 4.6026784643348035, 12.767159143507973, 6.410295960338068, 6.437744461618016, 21.022515010920827, 5.041271984276267, 4.306784247455186, 6.542596716108062, 3.158579515116257, 8.07214547678405, 5.826453323349181, 6.999913913513847, 27.61748894140193, 16.023873456351215, 15.130505544901338, 18.931435603436547, 21.397004817078347, 13.904505460317878, 10.91146365069484, 7.858682070790505, 7.020505855029726, 16.306014960530938, 7.608936501847312, 8.181750167710234, 13.326081579090713, 12.665350559245656, 10.762486680552085, 14.934992819022503, 10.396663968468806, 6.616849616106926, 7.432704808917247, 3.7174894936584337, 5.101503780963642, 7.69712764465926, 7.059063755246728, 8.847988858876661, 5.411818003774829, 7.111789825620757, 3.551903878399639, 7.707738609756108, 4.901642513071194, 6.28169922401591, 16.01019789427943, 7.67931168693082, 8.540494396876564, 11.153177945137953, 6.195544776838442, 53.84183851650141, 6.175681915870547, 6.249154910090326, 4.74867819938777, 26.189212552724868, 5.319818205528572, 5.250762575773292, 6.645202775537235, 7.096125389428218, 26.477237672050173, 9.178818351419922, 3.936784527425826, 7.075522982436399, 4.839792912454828, 8.216424269806078, 17.46182847847835, 9.579861340220969, 7.662116344086812, 10.710757136495326, 4.487963690546854, 5.9119342523703535, 5.730608758798746, 6.886853883360552, 9.060403967973668, 5.30409515891038, 6.185598451454303, 13.37431732230928, 6.611144399910029, 9.914311219313078, 5.6790567352809935, 13.743888482876926, 4.550676156778085, 4.819878987651913, 11.469036002138548, 11.656487268431926, 10.12058568885091, 3.4643386430096865, 5.482478481651011, 4.572219985320612, 5.602833328854698, 4.9190338968633665, 10.66818993647742, 15.77054189814369, 4.7642578851546356, 12.093648797949886, 26.074850853059083, 8.318916785724431, 6.285503805450807, 7.167544272232638, 8.441893647309511, 4.783344934807822, 4.563012186019585, 3.6683621661028862, 7.354225353996698, 3.4116797977572153, 14.857025486989555, 8.334715803919961, 4.758060352249258, 7.166219743312315, 6.088429734186327, 25.431853625711064, 24.69067632145921, 9.309890328045174, 5.029801352294837, 17.31094728866328, 8.261707076616718, 5.135652113659637, 5.0651885366412515, 3.999905395215885, 7.385658547165633, 6.373992112439257, 4.644263043783147, 5.684864625259941, 7.5666199661029125, 11.940447161191397, 9.493549775701666, 4.196912658810758, 7.049508066006666, 7.65282698913018, 10.841743692768471, 3.657592915762696, 4.1276679789167465, 5.869004090491986, 11.154436272892408, 10.083940442267084, 16.81099792841313, 16.467845972280745, 6.142442269426564, 4.8720381278946645, 5.067153461239785, 14.380016700599858, 8.600405149758643, 11.446022963424955, 7.447582167417332, 6.673288813988872, 10.510021899258074, 9.535914366009788, 15.454509571684383, 6.689210777874944, 9.969077479082662, 7.341148706012817, 2.9671887250470435, 9.943260416296381, 4.8538557041290655, 8.458246276655844, 21.040828757330978, 3.6756979175737143, 10.5486167998668, 4.741291142522634, 7.205071131160896, 3.632251837622062, 5.299991566221829, 8.076747639006273, 4.961304104799081, 6.700997852943775, 9.058147889331059, 17.660380030625976, 28.708090891263886, 9.014444723334138, 7.662274112393614, 3.0027971307301167, 10.24826173137117, 5.483013743407209, 3.116102963187991, 6.225447557852249, 5.780640059268157, 4.72388796895102, 6.226398814225451, 3.171465440731145, 3.7785193785333973, 4.958210648619986, 6.47552322903748, 5.502130621039259, 9.284580404148691, 5.26838211993714, 38.08753681417679, 4.64947612295916, 7.853894115579653, 8.958705229466865, 6.852447058237661, 3.6468494782007506, 4.317749955690622, 6.276197037286591, 3.9428940645349315, 7.2256173102390795, 24.38765535853037, 8.96838076132095, 7.27801264896112, 4.725124172661822, 8.288910073488095, 17.95289219420837, 5.9677093876280125, 4.959524744184077, 7.567669017752461, 7.898698634574335, 7.223105688972204, 4.177825669082097, 42.89719558113099, 3.208395286018363, 4.363676466603786, 3.7850105536661123, 2.9880180308349185, 7.663107235617991, 9.006054273083269, 12.179302161614292, 4.805373384518153, 5.496891394808283, 16.131245194220877, 10.031205637919845, 4.705926715306426, 4.920105794894221, 4.7509568340386865, 5.265232380331265, 6.92829056413591, 5.295117448571836, 44.04787726872449, 15.30897619609246, 5.977263685034859, 12.422705924891277, 7.969063772908903, 22.84043278227501, 8.96011439138579, 6.022578898261145, 6.131658223389956, 4.746592364131122, 7.132407372648792, 11.182220492539841, 6.640837769991687, 5.199065787408646, 19.858310829312913, 59.54167634697685, 5.5470872590135265, 6.183490228319156, 10.160110609793614, 57.50669304785251, 54.79375517374631, 8.08324023214306, 6.564344401022343, 24.80546706284502, 12.538940428520261, 4.219328803213051, 36.83689928453626, 8.068145052176327, 8.425262570177342, 26.767431408022617, 16.728028140996106, 10.463975854791556, 4.845757718114527, 10.616477048888282, 6.843165233098705, 12.173363778647861, 6.409442164134019, 4.993615778271519, 4.772058694298475, 10.086664325552702, 8.474035277280427, 9.37301235368842, 11.744534273563026, 5.397528473336163, 16.961199574526773, 6.153328507282435, 9.451244455858038, 3.9462265252399717, 4.7479565244929915, 3.364581172841034, 15.20204609314095, 8.073840757178843, 22.053427100962548, 9.986048844593656, 10.636992259278319, 4.040917076614769, 2.9174226793832534, 7.173900817514712, 11.0256010489216, 6.9628367263880415, 7.991917447181942, 30.0761965336812, 4.990856805761688, 6.041366850805293, 3.8509491867660564, 18.003937702914115, 17.985743671289725, 6.8827876446770215, 6.698229965740028, 8.355211622198496, 5.495774555537023, 11.207675645371792, 16.79798091644153, 13.281822904890344, 7.593630288851235, 3.749839251781833, 9.261658398541327, 7.802597909290156, 8.336017468764044, 5.139425327425365, 21.30644381759486, 8.045065690245444, 4.930693067013283, 15.569059684652201, 2.9713913910261205, 4.474129282628867, 5.4605342992694705, 3.049499287490356, 4.348440290127113, 3.633348575457624, 8.734476328195798, 7.486353083976629, 4.752753421112131, 10.446931654160617, 9.212948472299589, 15.38985054194367, 11.812706729330325, 4.810341734752247, 6.691115695407101, 3.8905247516476065, 13.30204438572077, 17.267658039287628, 14.682634388852609, 7.2082140922327165, 7.489523545927584, 6.438988446149295, 10.709616561452583, 6.580838651015501, 3.9951831916053204, 9.304278884995487, 14.995361431650892, 12.045727232903316, 5.295121567813516, 11.18229922765287, 5.360902447430085, 22.835305533365293, 3.9212683307609626, 7.999393116325372, 7.873529144970675, 7.177800512552967, 23.07287258982726, 10.184604978004414, 12.854042818169797, 6.090077734380018, 7.131849328092789, 14.494928793202162, 12.416376689659524, 2.9429062728713595, 9.290216372656865, 14.972420156173552, 8.964955415590955, 9.188377598129254, 4.452237356249441, 4.953965327781026, 12.767618122152447, 11.877689009196086, 13.814344420715162, 6.101470358060409, 8.207655244529278, 12.151816293859756, 8.123055369176337, 4.4798119777732754, 17.418805230234476, 12.050763232948414, 4.836222111905063, 4.270585841015363, 11.082068422340722, 5.077630123387898, 7.743345722633846, 8.651882327788943, 15.119487477700705, 15.700708556914853, 12.962049893301268, 8.856459952351225, 15.875326293388051, 9.416066025836686, 11.376590030003536, 3.7808039978042474, 14.727845822345575, 5.58481269928982, 4.870030346494157, 14.292611024101795, 17.475206823177892, 4.892870438610866, 9.922989522698213, 4.260445048907693, 17.67619235719401, 5.8622008150764096, 7.620731777156808, 19.363222937344162, 5.1287944653919135, 5.855927411360027, 6.111220289855072, 11.37222828809051, 4.76916202900799, 8.127034538232765, 12.248668829281293, 4.858131422073862, 2.470477882835571, 8.797942452544744, 8.169734598514731, 16.7361061763314, 19.86129404806301, 19.957034955788917, 4.303043890110557, 11.709020913592711, 6.673997972002217, 5.152787242432608, 5.561741211220309, 5.947823644437439, 5.7815927168360846, 6.248810987537355, 27.469366175099594, 4.196898533579739, 15.036539528703694, 5.0690714158403924, 5.590576307958039, 13.506110811676612, 9.822109766566426, 5.6312296570062506, 10.36339740729332, 4.32430039662294, 11.234395953387654, 6.958346754452864, 5.138775771095086, 5.081248803998748, 5.3393722580085505, 6.004653270917271, 5.513504854581473, 11.47597159305693, 70.48402143058179, 8.32558832249315, 6.536462684608457, 12.383816401871796, 14.712069017795532, 13.20046276815131, 10.967497412502654, 7.800972284208743, 17.860646355312078, 15.215635033386675, 7.721736826745279, 30.0528694271426, 29.551761718772607, 4.7462287392963605, 22.22571945550721, 12.857561463057028, 22.016587841566828, 5.077851178505586, 6.026872495039591, 14.6769815538291, 18.355290018307763, 6.437778178662763, 9.984232599424297, 21.701144888082275, 7.312228737120376, 4.396296877005828, 4.171387585561038, 14.304608277767159, 3.671248757187105, 4.406314999332337, 11.591604178803848, 38.15418285551255, 6.9040721493905854, 11.434279567071128, 20.13112585785077, 21.39099884331916, 11.348004013168719, 18.223794412600785, 9.726201360880664, 2.8960243357271573, 6.928887138694854, 7.64942873280316, 9.225547708308676, 6.793648553235593, 6.135238812041799, 5.874010155834435, 7.29742061930561, 6.628084630253089, 3.6183676604917845, 15.92377664844926, 14.701607813243308, 23.751142785913885, 11.699499898969785, 8.685407283935294, 5.87393200615692, 6.90929285443166, 3.3816956987535693, 6.208006850304838, 10.975773505211157, 7.3645448154570134, 6.816868814311902, 10.51684822546287, 8.153164338454928, 13.633537437618973, 11.436635642860463, 7.670893644445047, 19.099193643754276, 5.359833382706686, 4.231170428372198, 8.38060325777437, 18.567685828092515, 6.75990181034858, 30.658215003764482, 6.654991028251202, 15.059205847630864, 25.76100144462819, 15.748223831047584, 13.61473474003137, 4.683349172872582, 11.307666296747538, 19.770999746461236, 2.1478753633485765, 10.280177198428657, 8.623464154771979, 28.738893426794494, 7.601086981063902, 6.268588457281112, 4.818955449000079, 10.02409203678383, 211.08416666666682, 238.88000000000022, 223.2891666666668, 208.6516666666668, 192.51250000000007, 165.39916666666667, 74.3100210698536, 207.28500000000014, 177.13404761904766, 79.95185998856196, 180.72450000000006, 206.47733333333346, 131.58951515151517, 4.006734431834675] ss_vast_full = [0.0, 1.0000000000000007, 1.610000000000001, 1.350000000000001, 1.7350000000000003, 1.545000000000001, 2.1266666666666674, 2.043333333333334, 1.9366666666666665, 1.787500000000001, 1.633666666666667, 1.7291666666666676, 2.6831666666666663, 1.7413333333333345, 2.184047619047619, 2.6536666666666657, 3.017607142857141, 3.5431666666666657, 2.223972222222222, 2.721591269841269, 2.4456666666666655, 2.501591269841269, 2.2428084415584415, 2.595282106782105, 2.563206349206348, 3.6822792207792188, 4.090297008547008, 3.1897428959928944, 2.503088744588745, 3.3329585414585403, 3.6262044067044035, 4.535511904761905, 5.754773809523808, 5.230098290598289, 3.1477431759417045, 4.381201465201464, 4.526019758019756, 3.629815476190476, 5.3852813283208, 3.530430097680097, 3.7079058704453423, 2.089884615169831, 3.480077943298531, 4.3206568022620635, 3.074368593953346, 2.6074047831253715, 2.8101329257687615, 2.316904402786755, 2.097452622925601, 2.517491247314776, 3.8955429244668376, 3.005391070362685, 4.035090774722353, 4.077996520387823, 3.588200439660696, 3.962928066378064, 3.514162524101882, 3.1681044102955873, 3.7835892313000996, 2.5344028070835867, 6.523561050061047, 9.405019841269842, 5.917159408319877, 7.030597473301169, 6.265939054409642, 5.717573529411763, 4.2021984126984115, 6.565499999999999, 3.1704352869352856, 5.933319979856748, 4.088169866365517, 5.21350974025974, 7.661133123412536, 4.893430562532554, 4.006962726569133, 6.050474858474858, 3.777503945571337, 4.319855688429218, 2.50214072039072, 11.35328646963258, 3.914229825729827, 5.1598691761454925, 4.176439393973758, 2.8794218761630535, 9.644536514835796, 4.547099905458526, 3.858818568600301, 3.257425422326986, 4.460229893468802, 6.244460146826373, 5.935232754718047, 3.862399941402765, 4.550704302402577, 5.271911114484643, 5.524398091159044, 5.152712881433689, 12.40983254245754, 53.88163888888888, 19.41338815319378, 18.188429902721854, 23.5880811965812, 25.57162806637806, 40.413129037629055, 26.347939227439223, 17.47032500832501, 28.773504710975303, 35.78372402597401, 14.505976495726497, 15.176151631825643, 13.423378558575928, 17.098711596728005, 9.948780428721603, 9.311170417037095, 14.304828330424309, 13.21492194730557, 10.401243753798957, 6.987455443885322, 7.65499889885998, 45.55698596286754, 6.3971096665053295, 10.83585114926017, 13.19807457102285, 7.948615266636368, 13.189130560260999, 9.841313558003291, 5.686140685970303, 5.9678041569535365, 6.212143835707632, 10.236074814621844, 7.820182617218663, 7.021783942931789, 6.80636292554697, 6.481279839465633, 6.081589681645849, 5.343069449962749, 7.060440498437066, 7.036945391944243, 11.467710352706831, 5.1284644282497345, 4.896903032488303, 4.187982943728577, 4.5087252738003505, 6.845671976325315, 3.38189069927783, 4.809042556201204, 6.777229155862521, 3.7964116468409204, 11.104032019923658, 11.479308371953111, 6.222597658609701, 7.4007098038091, 11.328810997696488, 11.390515020201661, 6.827678037688418, 5.155339582032291, 4.216758828799619, 5.836526397678142, 5.724225751162181, 4.784789819355283, 6.951005267890081, 5.355720129990177, 5.296425216947378, 3.961170065377181, 4.729046703135839, 8.109865202913022, 7.705903839736798, 5.239328442484015, 6.4411745792712845, 4.423962743087215, 5.510129530243154, 5.62525934017285, 4.246525595953542, 4.363529931697539, 5.183307184570041, 3.9729676778250576, 3.464146991531922, 4.9844110404215645, 3.8271011412136327, 5.940224129265269, 4.188283369133097, 3.59672357406764, 3.8685618188485247, 4.6288781214223675, 3.227808380584662, 2.887948404227081, 2.963739425779569, 2.7607397603388217, 2.7763589512641578, 3.3943760538694017, 3.4381434774527406, 3.6499260879517745, 4.250855635064442, 3.056492426769624, 3.3737998740787662, 6.279345517722414, 3.300716631373041, 4.275117686603405, 4.054278154290544, 7.214489660194196, 3.8594524349432238, 7.916694330080086, 7.218914673046253, 4.151134562794706, 6.854801884281384, 3.096161143823969, 7.747189827480196, 7.14216284250748, 4.666146124771757, 4.377830960373329, 2.8874431043016995, 6.4451528600753445, 2.344819788824938, 4.577319511044511, 3.5229178953289932, 1.8741888352890748, 2.9795282633455296, 4.463073379488837, 5.95032818316874, 3.7920714974635605, 6.204140314916242, 3.5720571917875774, 7.530421735077666, 2.588298380493065, 2.7191843593381604, 4.5295402363850545, 4.63684546890158, 5.448846461348201, 7.105374313173218, 3.3267144820998062, 5.34825298484723, 6.173868569641863, 3.939992627372442, 7.989554643188245, 5.133562866449007, 2.4141612480458536, 3.730491487402097, 4.631595290532387, 11.290146331938478, 6.600367706902804, 5.372490814740812, 3.361935750316196, 3.542716110150347, 7.658179521977373, 5.5783800487804704, 6.177897943785554, 6.8413325438270505, 6.686933744953177, 5.028956356758634, 6.311990206967954, 2.7147863332455633, 7.568474936298765, 5.661845496565516, 6.3283105393693155, 3.485388968917179, 6.266688427879682, 7.3377550537680465, 5.925291045119596, 5.5474245555024115, 8.161870774245683, 15.710492628197022, 15.174715867465865, 3.2885000147027275, 8.970193914745382, 3.8613475976770344, 15.35009227813631, 6.172777790558765, 15.052837344542771, 6.277445650048603, 10.372782724986278, 2.5593512205668034, 2.8676770059160015, 3.5835447135621306, 5.823279434224117, 7.551516325779483, 5.22393027243342, 7.130527680951507, 13.339591329079102, 8.358987465019633, 4.294492946035177, 6.861808524992659, 8.324893640876363, 8.362880987655876, 6.950714354820872, 15.732880403227, 4.205150250588607, 5.237235381348363, 3.756558637796797, 4.954204726203783, 20.060138584921145, 4.7727168140966265, 4.330846105804302, 6.353190268223107, 13.128868010098266, 6.9800661380960465, 9.53928435952194, 7.279895726254519, 7.931857840457585, 32.137074820604234, 10.65449569805019, 4.911883514097227, 10.398901879705463, 3.3570910875080915, 2.318265205978205, 8.13259487734424, 5.8282850417295515, 7.548158472320214, 15.29943818637275, 5.945498302035301, 6.9253911507340185, 7.201474101889934, 15.402258341984412, 14.94764504368192, 14.230504365774435, 5.365915075664811, 13.76135081321216, 9.33620768382364, 9.209969921657596, 3.318232529101634, 8.141777835386607, 9.581241887629417, 6.786182312813318, 6.862194222574507, 6.127414252903815, 6.119411793567267, 3.0148255174351064, 12.504629846408355, 9.6937996356682, 7.157820205478446, 13.860355831848006, 23.77414152187566, 7.726572457577576, 3.168676546086535, 6.621839081443347, 10.42031041398029, 243.22923809523823, 190.50916666666686, 111.4131666666667, 81.37416666666658, 58.496309523809494, 48.31958333333335, 39.84426984126985, 34.49076190476193, 30.47272763347766, 28.973611111111126, 24.43203069153067, 21.93387012987012, 20.20577680652681, 20.1052706043956, 17.792001256913014, 16.17832142857142, 15.014621189568933, 15.015656671759599, 13.251853843052375, 12.493227692500136, 13.216078568774222, 11.968701630412943, 10.76889827929508, 10.37213107944687, 9.871954005374658, 9.31295424624396, 13.097196020642276, 8.745779655529656, 8.424420247196775, 8.040078833827122, 7.60162257350908, 8.077461794607492, 7.741731166543884, 6.831942837267171, 6.703315261989779, 6.836571857969582, 6.935180334494725, 6.563032886640078, 6.493473854421221, 6.992756634602977, 7.5333723811168705, 5.469592410231103, 5.635060514358018, 5.931116829067011, 5.210256647226523, 5.1231242132126, 6.818829309384225, 5.969532029123706, 5.644087474479095, 5.81235098986963, 8.589672776517174, 4.302042506736659, 6.826684354244847, 13.717074361806997, 5.1166572494218086, 3.936571045199097, 8.836524365313839, 9.957153375437574, 4.579200405184814, 4.627755063166853, 4.043092815761099, 3.59706337514975, 4.237837204567095, 3.757850768795513, 4.378696685485488, 4.44780122041701, 11.603212121212128, 3.3867642715138175, 3.2434630894702257, 10.618807692307701, 4.249503155238177, 3.3567879037510107, 4.6216350232956795, 6.523690400365582, 14.415628881344404, 4.3401815670243, 3.2613139202258856, 3.557351336694193, 4.513551713284332, 7.342239236780844, 3.2492163280619124, 3.0387278114750327, 4.0944925528844704, 4.058253663282277, 3.8746589826924294, 11.748854341736697, 2.584819480158512, 2.9098332964585105, 4.3784952086892215, 4.8940442428472695, 4.211011736685196, 5.385077011134268, 4.058407666152808, 5.557302763794536, 2.984991994253381, 3.959108505910351, 3.024482809571943, 3.9294525386078116, 20.372147186147192, 9.460837702115569, 2.9340251384310116, 2.788867781088396, 2.8733729216821446, 2.783979190080347, 2.7281556551556565, 9.876465741709387, 12.219202380952375, 5.234439662631313, 4.671139084350273, 3.9210595389044247, 3.0147692956266097, 3.852693304302882, 10.939170634920641, 6.599271078544725, 6.437528460574512, 4.484890872827372, 10.145000610500608, 3.284217609901817, 5.007512356025198, 2.665893938434698, 3.423528619819705, 7.932354029702195, 4.224605527846579, 5.267479159892263, 7.948358710607335, 3.7461439722494627, 4.288761325115727, 3.6120582359220457, 3.3543502391405706, 6.10718067930354, 5.936209138861903, 2.3195387098733287, 3.009217726126701, 4.275738616043249, 4.4577216575465135, 4.148175382424991, 9.02693765464439, 55.97848190583716, 99.55500000000018, 6.79725387376034, 5.59863919761349, 64.4183239556692, 5.778419138743524, 6.117692655022729, 5.171557685232345, 4.417776676208052, 2.754996257196058, 3.990732979011123, 6.6066350089518195, 9.980008634463145, 13.383311738983481, 10.079784956402083, 12.030061488148938, 15.309821947269835, 3.2803010581784755, 6.596664386195156, 3.091968621315326, 3.377043480058105, 5.240849544870486, 6.808335006357992, 3.123559543036389, 2.6106245146510085, 5.496308140309005, 3.7494064287325677, 21.105405997869227, 7.017750060033023, 6.411037402033501, 8.292643577437055, 12.528176520290614, 3.8691097470520828, 9.240819639179607, 5.573905641532098, 6.940823624280668, 5.657274816552426, 4.898395258741228, 3.6670584901677974, 10.091320331173257, 4.378322414422638, 11.89508333012033, 6.668272289350616, 17.806672129319956, 20.569766992186562, 10.34346531609145, 20.584071733821737, 21.062909947070484, 13.668658202908201, 12.30592987543645, 11.745685955384479, 15.971637445887435, 22.705868854421983, 20.71653890407837, 27.532179377854675, 6.606968595087406, 15.111406658482151, 8.516692959530596, 12.309389929693959, 21.879765569397915, 7.536893948337523, 17.08356378339248, 7.301879639115206, 6.386914526993475, 17.571528041403038, 5.677004941335877, 3.9692172381705704, 3.831236812853309, 5.2342456758429305, 3.8036813451878375, 7.747037870094438, 15.440072149518576, 7.679148228382251, 6.4869993082230595, 11.364830964816345, 7.295633030566124, 6.992579347045234, 8.699648521762175, 4.638216659862833, 8.621463223324229, 7.99266025259776, 11.942828430882845, 6.227238652929987, 5.88610603886522, 5.915757217576025, 12.676094680572321, 4.9195555452791355, 6.0790730926158005, 3.6024884700297393, 4.380442164789533, 4.70222858014315, 9.310414959665675, 5.006202184651085, 3.1486366726260346, 7.889669223242012, 7.88693800952466, 14.027499923468898, 3.5833564249209098, 12.198652884152883, 6.50205599526507, 5.880408860727798, 4.247556865504819, 3.396621006134396, 6.387786201883059, 5.352498665900178, 12.307598562993087, 5.533781199240986, 19.465821428485516, 8.502202663419123, 12.516734826362521, 6.407883300279255, 5.83886360402001, 16.865851012506965, 16.558954822954824, 8.120675518925518, 14.121467543961252, 9.104379034816438, 13.973004165877049, 4.940104523716085, 6.830400866433764, 8.228400618853081, 18.10012815044432, 16.99368507536621, 8.624231133815847, 5.227232738616281, 9.830061162040574, 7.925663626766888, 10.457191888391991, 8.933785296674099, 3.718596617665995, 6.03241328625508, 7.637286956235482, 10.636477230695716, 17.144018556933265, 9.554165568129003, 7.51483785689533, 6.057566833966419, 8.772401775872574, 8.243013722299404, 6.256134072693854, 4.8705504559995125, 7.718848879769474, 14.313492416132942, 9.321739506109388, 9.257836160730987, 4.140804511528155, 10.43343573786946, 5.660000424288618, 6.75797390872303, 7.439718019644709, 8.022038146693342, 4.631597479498286, 7.4955830927952425, 7.628649075273906, 5.080952946352518, 4.240342499230491, 2.7056172733598283, 6.019768681095304, 13.396298481640356, 10.424955461918278, 5.16237829727658, 9.17519807009078, 5.408892758914686, 6.891807607962035, 5.535550479445962, 7.1548600889697855, 18.702623773871853, 4.361950929408542, 2.992402173202204, 2.5054608091873445, 2.4118077599931196, 5.331332514668973, 21.083712612078326, 5.972298865622393, 12.666106159126047, 4.982676445824328, 2.4730280317153737, 4.762413478191338, 2.473206858646153, 5.2335013534820884, 4.586842040732939, 15.102406991838574, 3.71256521034785, 3.0261606788779623, 4.5896874363195685, 6.927182654114193, 6.399581420832942, 7.175478124680878, 3.8146244337350894, 2.982767838796117, 4.112230917385933, 5.100311074207667, 4.426977843219568, 4.4860797418974885, 5.584909114240602, 6.82576171259913, 3.149480907291949, 2.5745418061212937, 4.9146789940877005, 5.1257545693737825, 3.8796410417537746, 3.1260687235805222, 3.367656387782178, 5.3443581315646, 4.067109834742056, 4.749351440299679, 3.8158112312734773, 2.555942019097123, 3.289782952787176, 9.140238841919208, 2.945699675163197, 4.000783811954023, 4.8840071291456555, 4.72118355128622, 2.752803204316909, 8.760275705349406, 9.073673070440295, 7.1700719740893915, 3.188280692441329, 6.2981524489748875, 4.290475922120275, 2.879340093437189, 3.9095127484015957, 4.7760010359971945, 4.681505283439204, 3.8167810643169346, 7.757913407188154, 2.860378166582211, 4.4522204815193245, 4.125171117038529, 7.639892160614413, 4.9233538521168905, 4.923717141780811, 5.654760023795314, 17.477251145906152, 8.357578191971086, 5.068493905346498, 6.967708078402978, 4.512212038578024, 4.7092841972205735, 5.635650163798511, 5.932193651614615, 3.781987871411093, 4.031381392196628, 3.487383225316296, 5.623170493327339, 14.284380007053885, 8.800071212995807, 4.166696787163318, 6.330041010689251, 5.402281562690499, 7.326884310258575, 16.656900170981775, 9.147818307297218, 12.68165403933439, 19.07799701577826, 6.746613748901975, 6.453294722406516, 4.052513105291304, 2.979908808660571, 5.022558361978486, 8.257876729431086, 5.6343533227994875, 6.720304222016208, 6.95281551267529, 5.941495473880956, 5.185750797581147, 3.4959380783102154, 10.80457912583637, 3.3456053858361896, 6.651655419922411, 8.042106681287999, 5.3660254745207325, 4.814160473088147, 7.689731892217304, 14.46057270206813, 5.9452595354608055, 3.352173226044365, 1.8519009073109975, 3.692003837227918, 7.887469452036401, 8.53037279010612, 3.9616760886507065, 15.138957304290948, 22.700676152394163, 3.092124678187194, 28.46860481695573, 4.5684261877788614, 10.313815512683632, 5.729049084626475, 3.7572060010052044, 4.661860760593103, 4.28429002771392, 5.167915305776376, 4.088706159765366, 4.611967874501532, 3.3174165074268704, 2.5641274682708612, 5.7746827976925825, 9.045055040092786, 7.111971768012014, 3.811525330694016, 11.049101405259883, 5.10617403694337, 4.88018840116837, 5.735195111956566, 3.5596580694432682, 5.036496214832601, 5.1970163954720325, 13.00423948450189, 5.774208667709625, 3.3351362017910406, 2.16919284923644, 7.786915429197889, 7.174143482052082, 3.177843009900516, 4.607499996505623, 12.769136816030061, 3.6526902078691377, 7.778444300473401, 6.960822713570406, 5.327996488319122, 3.9652018868968786, 4.320371126970474, 5.3653181816598075, 5.441417818200018, 3.728832918070757, 3.090939062344042, 6.134020910256342, 4.462337550509075, 18.5543045558309, 5.871070669772459, 3.123801692023508, 6.5923862825154895, 4.146384299114528, 5.036395844929764, 17.08820357514986, 4.494519717246817, 5.442481103338771, 3.1917483697071094, 8.34924930174096, 3.348453788757699, 7.292693967450897, 6.337286849755709, 4.103445809210521, 4.5850392642119395, 5.057093364349607, 3.848750333523377, 5.277807360693435, 5.26642247112902, 2.7459855877286943, 6.1905732170312735, 8.19519694311251, 5.913966730383516, 10.3634388279603, 5.581984033026646, 5.324437847697102, 8.850163349900948, 9.420653429468436, 3.322069421896923, 26.73559643319518, 5.309486924847618, 7.034494093328716, 6.304838373610757, 3.097524931907907, 24.110261720985978, 4.430587635356009, 5.089718028512845, 2.6840771703988633, 9.184380828937627, 9.199986534292288, 12.89444546856519, 4.955951078348218, 11.78599281725232, 5.201082678231846, 3.8321568826394463, 6.278557064015495, 13.213911030775822, 4.027052052597246, 3.475633034408614, 7.25712327490598, 2.7344558502882124, 16.369680498805128, 7.773808322818547, 4.511892769306728, 26.711762394525838, 5.3360106300708745, 5.402252003443662, 7.203141510313486, 4.9167718694129805, 4.526270027813033, 7.118627881765672, 3.8938936048068387, 21.14483835007833, 8.96750679858855, 9.580843230589972, 3.9041098951357185, 4.375196788035029, 4.052054795003316, 43.25566561325284, 7.776162932919076, 25.13106182853175, 5.075131259225567, 17.42804849001524, 7.317415968142205, 3.417094079140668, 4.498596761671743, 10.083490695652184, 12.096849426107198, 10.66516510691251, 29.5066450935713, 12.761536665860028, 10.645006122366475, 6.860220812063789, 6.255475946269228, 12.924897152552525, 6.241158773303134, 3.9376845685550173, 3.977905739503266, 6.510770371980226, 12.138420993369513, 11.66967942473257, 3.2417079782816933, 10.523678262111787, 8.52338736196433, 12.285514187160734, 11.279616197924804, 2.7339890563300355, 3.583850968556231, 5.475270531481759, 3.745124128517835, 6.55976431491149, 5.197534105364151, 8.547213043355226, 8.238709736561358, 14.910379629014008, 6.619170032038475, 3.9338035322237563, 4.384117224507015, 3.4467602043543253, 6.542081796095856, 7.723185871266737, 5.318637143656267, 4.69175099109687, 5.777133652532866, 5.217904422409642, 18.147205528166, 7.130852313993208, 3.3937842887048677, 6.5603016322925765, 5.686140413265776, 46.2376565730832, 6.747898026063194, 5.673728770559225, 8.92718217871695, 6.45406469422689, 5.993648090206872, 6.822350610542726, 8.604153830918737, 6.288087726394491, 3.8769504771190606, 12.751484423639262, 10.393771777635887, 5.15736966296133, 6.291662593391402, 3.7263883830312214, 6.237152887892637, 10.838961912276742, 5.1268369285561555, 6.776077814489963, 5.948727321983139, 13.614790099467866, 6.113245996077964, 9.057805845652746, 39.14970152872764, 17.028760434010426, 11.013588927289513, 16.72046375538583, 3.5076055452037886, 12.889542953307942, 15.226993845112087, 17.910950847174608, 3.137323212845872, 11.268374887912577, 9.479696796950083, 8.872780047102596, 11.076063522808324, 19.394076099666993, 9.067493977020982, 19.82616906082624, 15.469501780091251, 7.128820755086305, 11.780252065628519, 13.743464256824733, 23.2325870747096, 5.8858704495524545, 16.96321060817066, 9.510217721166226, 13.363439628998638, 7.060765038127701, 5.119585685079844, 6.791820955473384, 9.053102615993875, 8.144057337116406, 9.27741495300746, 9.124336723297427, 6.371676444412296, 9.680990542210175, 11.882422897301995, 12.623794137868405, 8.467287827934882, 18.671343587775237, 2.7062835446705233, 9.039925001168882, 14.35125579839841, 8.002664440894966, 35.779763542885746, 6.993036196371506, 3.303743512265181, 8.89828112870831, 8.89426779172843, 18.842263280381527, 7.593673354335515, 28.45931413228492, 16.276360868942255, 10.067105782474153, 6.157146826217997, 8.47414539466703, 10.028817960490976, 8.036670415836511, 5.993490693233814, 27.388456901748064, 8.118412909995754, 9.081482850916505, 10.140066729004749, 6.577513419559202, 10.141723788654014, 6.58118242681813, 14.204994569839322, 8.818138669030082, 14.216916272647765, 7.406351478467742, 8.886114448265774, 6.666573922281396, 8.361220587823947, 6.926579040023649, 9.09824200917709, 12.46697106918378, 4.397040903634903, 9.771492206671025, 19.763888602550782, 8.71165168044092, 10.300240897749006, 6.978460342871235, 17.872146754123644, 7.657668235698957, 15.96865122516248, 7.703179611336996, 19.49029751348308, 4.173124048102969, 13.181294675879842, 10.781401349736377, 37.654679863077575, 30.51192969188814, 4.320555913000756, 9.572503608113715, 16.48202391358939, 19.98177606807094, 14.724308043840416, 8.707708764234228, 13.132119767768497, 21.660039749185227, 9.294022479744708, 6.393875105292177, 23.52628970379635, 19.016750546647376, 11.093476713656646, 6.779677293276037, 10.176643267473139, 51.47065109257878, 8.204547867549296, 41.283406778937014, 10.282406786705492, 36.52265974545545, 13.173583293626418, 20.255692334958358, 17.26661793864983, 14.967408943423603, 21.608296961112114, 11.53137480052082, 27.907257395597565, 36.55986503537169, 19.63685170024146, 11.281921390451128, 14.473831704901011, 19.052612224434114, 22.046560940637203, 10.89252769138805, 13.111076033017948, 9.364753040207814, 17.35064198275633, 23.395167577312495, 15.678137141519468, 7.7552977504892935, 8.74544230450943, 10.134651387024455, 12.223826715276038, 37.315773024579705, 6.464012467560361, 8.26856813927038, 7.440591251831878, 12.4252736341444, 18.814923139384852, 32.210464498729436, 17.700268067095998, 12.68773153327073, 16.828272890613476, 32.2900751290484, 17.094743012763463, 8.606771881317101, 6.483289532043372, 8.03660356369249, 17.28982197399157, 5.488688861189077, 8.704904447456878, 6.509744328133466, 7.026530571095089, 10.447082686170887, 6.3467420462966135, 10.721752287869624, 8.73045246996459, 5.002415090529427, 6.075042983773206, 6.4147737702587255, 7.479546939791197, 6.775784960130278, 5.456702567676142, 3.8532262582377257, 5.640225965374088, 7.959916082898032, 3.9456026148457943, 4.965896908321996, 12.306195507250507, 12.851135868906896, 9.76384694433652, 4.165441977496339, 6.613730064002306, 4.780881636766679, 8.207950114756512, 4.874199047764359, 4.680417980942588, 3.9249436697319835, 3.847237624134633, 5.423318082853923, 2.7629406229297815, 3.382066404716585, 5.958379037035155, 3.39853517933313, 3.3753046481083753, 3.0914789249588033, 3.8225767012673364, 3.167727324219464, 2.627308235339734, 19.676288821766473, 4.4800738275356, 2.554240310567391, 5.532626314668199, 4.1653628716735, 10.065378813463278, 7.165311573740336, 3.8617132682461257, 3.493479197422221, 8.652230321679486, 3.538048160720788, 5.744494421853457, 9.715211559138968, 7.326262167444052, 4.8538827048497, 3.6119755756422767, 7.583064267850052, 3.218456037038131, 3.612656545319661, 5.382627562547582, 2.2128384578686497, 4.420621288294859, 3.20302651104651, 9.167560735209824, 6.952236587728966, 2.880690356892287, 4.057671854240752, 11.890092419646507, 6.12007843804101, 3.3814330170196456, 3.4539819574903534, 3.3236493136851877, 5.222286464419832, 3.311300698234595, 9.657309389688137, 9.625317180931765, 8.573191340793434, 3.450154285855794, 2.4304678428567206, 4.207668477614224, 7.241252348966884, 4.270599239963729, 5.157049918530046, 5.986585770098808, 3.616271382817115, 2.979678480880911, 6.48499361583548, 3.6230568917804042, 2.5571335766626486, 5.390724119036219, 4.647078913078448, 3.912148175864558, 4.218310507480991, 3.6487868527292595, 5.973087655213438, 3.622246251395038, 6.265799711184742, 3.5048043486672746, 4.034004187119578, 4.636681001214305, 3.6049859001528732, 4.251388167754712, 4.476468026837329, 2.16147966648599, 7.2322466338125455, 5.695090813447923, 4.603266670973452, 9.6654553045587, 10.73989264787193, 7.412548076138782, 6.458444870520282, 6.787847277584561, 9.267586458981855, 36.12265180768666, 5.845707416480068, 10.941516407126192, 7.079011313417018, 6.814471174894802, 16.40565095126998, 3.6442916380794044, 6.61579896476365, 4.747083102969033, 13.908498051939246, 6.645425601098268, 11.5511666932219, 6.463696745503451, 3.8516826271656956, 3.086950273139932, 7.4745722368692356, 18.95818175372258, 6.396176892177969, 12.328424856234244, 6.736743967730758, 7.100125927021454, 16.577167036323548, 5.036557687806332, 21.341899397164344, 5.702191124454367, 15.676448537377718, 7.202797297064319, 3.695149166588638, 12.594927686363931, 5.17410326383264, 7.718522056062632, 7.769844533872699, 8.342283191069571, 9.823018031704951, 2.9764469988131435, 3.9994684290137053, 8.33073679053682, 5.5787356739905425, 8.821933773920318, 5.31340880362229, 7.451736791391655, 5.838585598767442, 15.134969777106248, 3.6292269823430066, 6.542477202238461, 9.509603548704462, 14.717157519368145, 6.092455209762424, 6.755790127295222, 7.1158961210438525, 5.9876850931311285, 10.665146420197507, 6.333592013237682, 10.173974583513598, 5.33159975202019, 9.986459329659834, 3.876484225527051, 5.981540110126046, 4.981556606007947, 10.176411287374064, 9.341667601772155, 4.378028123087903, 6.675870037991941, 7.622210261393323, 5.731589705722979, 11.44511222316974, 13.043594692862795, 11.132771348595993, 6.555752853396203, 15.498543750528118, 7.190704749343894, 8.47967387189988, 6.555781499319016, 6.98539918944281, 4.655536980112358, 4.9673036500156815, 12.968910486838924, 6.475426867286256, 7.97400636953182, 6.228230812460336, 7.476282028621267, 4.2402868374955265, 8.04852399381347, 5.210179048965863, 3.850842323431837, 3.7399414208508994, 8.36409781043932, 3.949973936108111, 11.934978402751499, 5.001281890078899, 13.376203004896235, 5.532414175067969, 11.823118887787452, 8.87405256689522, 8.582257910339253, 4.404735496817864, 13.131773864739715, 8.521265655069183, 12.600991425892957, 4.854676014817793, 16.035898300575713, 14.464085992048272, 2.3832439470912394, 9.028082535396152, 3.565785444723366, 5.873823991802777, 21.57824041308795, 11.366025758435422, 11.989111019742676, 9.454255352890081, 21.38694247180469, 5.5060602036064425, 12.683172738615188, 3.4785728941476366, 8.072697912411051, 15.624136906013124, 5.393740322387761, 7.625798789007849, 11.47271942706272, 20.728974669233406, 7.767518079241093, 6.915503523178395, 4.508273865024383, 5.920949528706234, 5.709263278000951, 3.5886080269853258, 3.48223346036427, 6.110229095018159, 4.139365258443038, 4.120707081843783, 5.652357381984099, 3.710046597159165, 4.7384556679362655, 4.349196340196067, 3.8245841653684622, 3.8246657068917957, 3.3105963123669193, 4.120241511538982, 7.358338328240398, 8.047685086332224, 7.500481664460933, 3.4413513726654226, 4.678487100033714, 3.870505091173514, 7.612695975889445, 4.184560131247796, 4.875164159562264, 2.8039070017773917, 5.111413189394434, 13.131622843351701, 4.931715142838431, 5.292720863447, 3.0653798458828176, 8.676127034742008, 5.747317851736019, 4.868712521212098, 3.681049426015205, 4.964182914693074, 4.39272019777068, 8.927725181130977, 16.181123911921695, 6.08173045814988, 5.5442603427071475, 7.328481415436079, 6.821112139702579, 4.235242727732831, 6.467076548168842, 5.32218209384725, 5.833875111773006, 14.146616785316532, 6.22104972611593, 5.78680293592279, 4.819491707932415, 4.0800273772914615, 4.492361076173556, 6.073414245364855, 5.296972538148999, 7.8034314734583665, 6.022971242118372, 2.2258766438845807, 11.675379869893613, 8.372450504136085, 5.644163429630762, 3.835951524430439, 6.284846891784312, 6.689039110788817, 5.06546068804733, 3.8066832444622336, 3.6381613787129528, 5.2182895569571945, 16.647726923021704, 5.06834782989106, 3.956002215184598, 3.540319482432098, 6.5157802129778855, 13.740782464440231, 24.596432453281512, 15.1296814199627, 7.0842453958114655, 6.549279460650761, 10.750129082562493, 12.020284818124335, 4.262741857471925, 5.0161985151936594, 5.037200979411362, 4.834829718549365, 5.194360949091123, 24.495180631653877, 4.2551919827757745, 3.4458285388408507, 4.618171513921044, 7.047458998292819, 4.387099939234511, 12.632425144053602, 23.433777020098038, 15.581155492710176, 6.507318902452752, 5.617078737339156, 6.083229071897519, 9.150885149602342, 4.740935567923931, 12.814153880458935, 4.573322355563096, 4.418350080793259, 3.73938167640638, 3.5906598322108048, 3.841629565286016, 7.08768746240661, 5.69971567831054, 11.593573872846074, 5.141178002123109, 32.03809337443889, 2.8790828838863547, 4.872624782719695, 3.131061979993798, 10.152281543292906, 5.031033792602787, 5.21980469789965, 6.932776026145645, 3.1278094045224694, 7.917374431877509, 6.267355663915088, 3.3199629433411983, 5.87251416389103, 3.9987079961824508, 3.3488726212095514, 5.146334657956826, 2.283506642117731, 2.7727282294044615, 3.828297450396821, 6.520096758301603, 5.731531846015899, 25.190289130531788, 3.1904075554791373, 3.534207633823991, 8.746023801116936, 11.517368103898088, 3.631854872587607, 7.925176192232579, 4.809131656014299, 4.939615245320029, 12.646621709949708, 20.11354083526589, 3.102440274933981, 7.24328964699423, 4.407507152281575, 11.683033670709149, 5.439726996761711, 4.046951474345454, 8.781488855910888, 5.099059157363012, 23.354735238873, 3.532044392416472, 9.88564213514775, 2.7977268987009736, 2.834049551197628, 4.443272852634789, 9.836617561959194, 6.452712347284199, 4.805401179662565, 4.958897461983098, 24.653043064693787, 4.284235437215048, 6.821849945419262, 17.931653921694235, 9.264198113531037, 4.121355789560243, 6.763015971736628, 11.317670515486462, 6.7524597171679215, 4.556068867667423, 10.150717606422056, 3.846345031686042, 11.826510904472663, 5.038091480781996, 2.8209559128702604, 3.7067984189194605, 3.581891294212323, 4.583996667027102, 5.017071241710025, 14.997340265498625, 4.479339779582827, 49.13744834328455, 6.472258618511641, 12.896789881291008, 7.536161542204167, 13.97863325563324, 5.839796405186311, 8.025937939269202, 8.256077227790291, 13.063847326991743, 10.890200884771195, 5.071747570709869, 9.47677268351764, 6.383100720594805, 13.426634815919982, 9.384943892909893, 4.976995147044789, 7.024942887101395, 5.068876152919323, 19.267869247912156, 4.560116019847054, 5.343700221894241, 6.2838022614384075, 2.251427701668152, 7.1452151812950495, 14.332281535161266, 9.18610349476785, 5.660320770938009, 8.38394411443446, 11.730334434979214, 3.900042966061245, 29.545255140049566, 3.76632984516461, 21.526516219133498, 6.586360572932944, 4.500304174663307, 13.61592319837913, 6.399282286632547, 27.583853970202334, 14.510492409300339, 15.532380913434626, 3.0395860323422537, 4.801350124548441, 9.84566472368985, 8.85702715649108, 9.135525777742949, 13.767505237901183, 8.691041150271847, 18.610765105546914, 7.338611566770299, 8.466887706677566, 6.431208614119904, 8.749681837747, 2.692891224263522, 11.414253653671773, 5.9823325859408465, 27.72787164011109, 8.421318787077992, 8.498677382250989, 25.631924427703527, 8.246619281177757, 5.406952332565256, 4.45423468281841, 12.15125270733268, 5.978825132429761, 4.736833603867829, 5.834997267883182, 5.417743053428507, 4.879643775225897, 5.781682471419344, 5.310432070870112, 4.975716371651636, 2.9225588419449684, 4.091217156262695, 6.455471080933543, 4.993628555328171, 8.265302896133443, 6.283275315813516, 9.63218176034456, 61.5537136844637, 3.9583811018764328, 3.3893691851707004, 21.770023675973615, 7.03819670089834, 3.8428313083633556, 17.62177992838991, 3.5384462992217633, 4.278284141857476, 3.1380836047159972, 3.9821145370339996, 6.407437884138632, 3.12946534904629, 8.325510664270684, 7.0955535788931074, 7.929687802991112, 5.527767229228098, 8.251841609033335, 4.311315691354549, 10.766402266883619, 14.869278142825472, 55.87182364837243, 18.524855471387355, 13.541213648170425, 12.561793361355484, 4.325651851832371, 4.631397884167498, 3.8784794059607077, 10.508633640650633, 3.4302114005184166, 12.12784335711767, 34.696104324736325, 4.141523197592549, 9.82009594775072, 37.900827274109744, 6.835975815229517, 3.327493494184536, 9.761708637367846, 13.607057029395964, 5.125028840542606, 6.47499139586107, 5.822184627656128, 14.45721544439392, 7.9673142795635945, 3.4829031510133306, 5.40247293782755, 10.260085114056261, 5.138043770693206, 3.8517847753135013, 4.672681826364149, 4.751984828303473, 5.892391617668507, 5.814904592917355, 3.192902016681597, 10.473837640046247, 4.912748357395075, 5.305519307453694, 5.30005221506584, 9.970609534892192, 5.952143256351046, 6.193688751204839, 7.851370946526063, 7.587463059400362, 15.27348094711069, 5.453960628374414, 5.709547517329282, 2.7761759520474065, 10.64154873475998, 3.6495144306973604, 30.58537698412698, 4.271077232306083, 3.5654846924412955, 4.78077889707243, 16.62457745515524, 20.985671131331372, 2.8285935391570995, 5.365326781435876, 9.187108153811034, 13.244631008454776, 5.078409595648318, 14.311964124484756, 6.521718028121231, 9.666011553094798, 8.455052969530543, 4.680351722105738, 5.861418102348017, 7.124079522516078, 5.818683593117469, 5.947027579565568, 5.206666901889421, 6.8934449938758, 4.088593761556058, 6.302262219409214, 3.702818153830435, 9.767266645173308, 2.8835559847911805, 4.151126357061434, 3.8495359317157307, 6.949545755505983, 14.319916851349182, 3.2867355075454725, 2.7568802351474586, 5.842716074656195, 3.507575040035684, 8.51401447986039, 3.363823605446613, 14.380943024771435, 8.758647239059275, 4.097830660695419, 6.055461352981475, 8.611442092142568, 6.194479936169286, 2.7358556512715353, 2.8324678395077862, 6.556976431522063, 9.87876204952551, 3.312603736566109, 3.341397846077514, 4.8628637033289515, 2.939671380572769, 11.439700606749703, 3.875049007076098, 14.487769116767627, 11.647495395022803, 10.51052766454881, 12.225088015058885, 3.224551884079638, 26.06288342995986, 14.779324061010863, 12.308516631054099, 7.0497152031938235, 7.956833984861025, 8.304701803490321, 10.822188708169387, 6.112340990764525, 3.6253090708841222, 3.200749142598753, 6.194112942836478, 4.124176115184951, 6.470584938088354, 12.01287220817132, 7.661737417805864, 4.680749535965232, 5.275846735128513, 3.949176925586444, 3.045737262002232, 6.054275724407181, 6.928093595077071, 19.47311815838989, 29.733456400640296, 8.228710184568603, 3.379348925856311, 8.461889337556855, 15.241547668456343, 28.64125294313529, 23.604844863917446, 7.8893614645879655, 5.256432178711735, 6.472911551901184, 15.849713818573617, 12.583325694146398, 5.596474216565164, 3.353656334642691, 6.699418530030366, 9.0139529690792, 6.574229331863982, 9.611347202401966, 7.906698925184202, 4.43800805061992, 9.217523508382778, 10.364137705873425, 10.51396090988328, 9.729312461794152, 7.879427047372615, 6.068305750505947, 4.554542071984087, 3.3885417681299588, 10.938050409917631, 9.232367872603508, 16.930945206229104, 16.251415973031197, 25.797694916752445, 3.7691211370948987, 7.178609893627522, 29.353684687871954, 4.610575780537476, 11.054074805234125, 5.81034810654052, 18.74683757783045, 19.426504406016143, 4.143334752707501, 9.305929550666349, 6.233813492078981, 25.01945566163582, 32.38979668837489, 29.573567530012763, 6.300440947215322, 15.84541476436188, 7.481601120589138, 32.29788409244281, 8.913665009825056, 8.220999205944524, 5.473339151834446, 4.221147004334737, 5.943616383647505, 3.2450847346145544, 15.08663726260984, 17.113450957542597, 8.68206154802608, 14.138509981089692, 4.991524900322029, 14.251764038276713, 12.171798636252184, 7.446419448574121, 2.829308434312948, 6.9386949354199, 7.946528314226442, 10.829356959844183, 28.031737952535945, 9.257472628720974, 16.18882842823983, 23.027375314717958, 10.613765157912834, 5.842483141848829, 4.673771033226173, 3.8576817642096968, 3.2647623015234846, 4.1139153940894015, 7.863734574697982, 5.77966379998555, 5.1272247473929635, 6.003109049181816, 11.035475480834604, 11.208172100105957, 5.50364629173854, 6.315670891148708, 5.383622587992693, 6.763453460741172, 5.824023008501006, 10.690986283409199, 6.294448856336544, 3.7949472505914206, 2.7671811153426753, 3.191996761298318, 6.141363156251724, 8.675998620925565, 2.5504579335444473, 3.6224048236914728, 5.114267685204321, 6.1261206923107245, 11.721438799763435, 3.996872287361375, 6.347368309864664, 13.454211064605532, 14.682894785332149, 3.646083243953446, 11.612125995674244, 9.941433915753848, 3.507537934170463, 4.191801435157826, 6.831370943584352, 4.712231754023648, 3.2856697443748666, 11.858094934345116, 10.371178584258088, 5.215954056050952, 6.576549285138021, 7.956802009315452, 18.327133605284285, 19.485736025369484, 8.906047967053698, 9.975015809183354, 4.848521621251858, 7.734719994992088, 4.99963833531677, 9.853493256503459, 5.997737447863766, 6.756141618101834, 31.701173095854404, 3.8871328913935863, 2.7420670350756295, 4.182913072218974, 12.650448309103822, 4.670626969465878, 6.102077686354625, 3.474862883157778, 9.601012748770062, 9.377102566569418, 5.508916349931226, 24.640213732389032, 4.404074396257511, 18.55504125553261, 6.520622349742245, 17.295827703125457, 6.979522764397399, 7.332738562102261, 9.306076721948113, 4.36923722731561, 5.757165751984068, 5.0064294847763176, 7.512533001618251, 4.581522419796865, 10.241805413055248, 5.183324868501838, 6.390505490355763, 8.089732268381493, 6.272143672243181, 5.781886978973144, 7.160228727670387, 5.619320695338206, 8.918628153618737, 2.671643459151879, 6.240538428635606, 4.125798162184652, 8.063215505885664, 6.087189078432615, 9.10741759661721, 16.900536700970274, 11.202838257014209, 5.116528470162036, 4.1268800445673355, 7.277239439439798, 12.792657945601798, 3.632957553766786, 10.84594026843452, 57.81035706606784, 7.779257743676468, 9.007281374921057, 4.631533226460808, 5.197413214834803, 8.681490316301906, 6.174160973841399, 3.9585437935575274, 4.640846369781558, 3.496549276757766, 5.285078392685345, 5.369636728815393, 8.722626911264236, 17.696735492247058, 7.514218747862719, 10.143051416960924, 5.187803789147636, 4.610814974715186, 2.5032540729053725, 4.603269442511095, 6.058648683407153, 3.3024537564869143, 3.6889719748717735, 4.758460938522728, 4.6496097458399985, 2.9792840871585216, 4.363964542353639, 3.2484870372077963, 3.869220132221478, 3.7338149123005744, 6.606451330254179, 4.365106542394324, 5.667890942643846, 3.6023815022321615, 5.846397071147915, 11.425200396235116, 7.068742633999578, 3.786393140364495, 19.495026807219237, 3.791355362823042, 3.424990682417127, 32.26879582117495, 7.625625001833563, 6.80883688379913, 5.887367143266095, 8.836845447384206, 4.8526983544451445, 5.149519788318905, 6.216773460510728, 16.39454980928639, 3.848440186900523, 3.0255124544500367, 6.22465344337033, 3.3652116524098337, 4.605036587475218, 5.726873476419084, 4.803454057764471, 7.711514104357305, 7.1262161385116425, 5.757649097460818, 7.48565270349451, 9.80134450693411, 2.521161508813635, 8.10340314487977, 4.775418242727904, 9.017944670116407, 3.0477478565221996, 9.596220808120995, 4.319719046957329, 3.9851870069587334, 3.5105085623833485, 5.41483909058945, 4.376101925889554, 5.655132501302446, 2.9612793737217062, 5.679236275052477, 31.741144596580494, 6.354260546598431, 5.175239536264615, 10.693877956691585, 42.86289089188874, 8.086463703186848, 11.572391457157307, 4.656079254847969, 11.934286566567156, 13.598586183856975, 9.368844460081442, 16.341360837239403, 7.153003834477214, 8.124090393447743, 7.778971490968056, 12.602175705671879, 4.5437354660625004, 7.381937177992689, 10.71846937731057, 10.216151587942115, 29.588471163449515, 8.571575986306225, 7.03963754159075, 11.934279199737029, 5.789800377346494, 4.904035601963038, 6.128594550790093, 6.448848545516938, 6.665659431461182, 8.821076588240112, 4.767468124068839, 7.67704834867366, 9.943954615521319, 6.453818740861246, 35.932271466165, 5.423073048610366, 4.3357710847389335, 12.545833089511113, 33.88122247319955, 7.315885254087242, 4.623775204041511, 4.115871647546105, 3.3469838191091887, 7.195579435196836, 9.01992026601854, 7.532389771600525, 12.747340781900162, 18.506510104830117, 26.769264095838782, 8.34316012030257, 16.793271779921934, 12.164486046259926, 8.971787672817396, 10.143447655062896, 6.817736889045322, 7.852768380739106, 22.07212566629275, 6.645292379115008, 20.149394176120154, 19.874955961366663, 9.675282845760956, 29.074629316831793, 27.271903607013904, 6.114757724188924, 5.281799789815672, 3.14933744549059, 15.318678614031553, 4.146328460116972, 3.4135922552353066, 9.019771585163369, 3.3970817434807126, 5.151078644354292, 5.5596517513816925, 6.782424084847141, 15.048344673491291, 6.749357373797587, 5.137972817542476, 7.658473656562194, 4.111973101907997, 11.927033495310281, 11.705158423592874, 5.603902967964662, 4.7899387437330425, 3.335648136548961, 11.705398451049302, 6.9112134884978635, 3.892708704843425, 38.68750107945889, 28.2582972657005, 4.498475915666721, 4.171905515327453, 5.751282508704645, 9.036417647370849, 8.507107167055871, 5.587324433165266, 6.760912854118121, 4.506960309456234, 5.541222520443668, 3.135582078380013, 6.25568606792513, 4.959340455321014, 3.6693773206081226, 3.002549595253874, 11.935589938362508, 4.762335884384007, 5.7023635300271085, 5.845222937204753, 9.990675957776014, 12.792786640086781, 3.7235826690364098, 6.481872259056407, 6.16941694798728, 6.701784294877861, 4.162015529320613, 3.29925855906149, 4.925981726959877, 4.691951176910097, 3.914296067029885, 3.315575050926989, 4.749606750386784, 7.365086936488375, 6.597623535160247, 8.115675162626026, 5.873308796036664, 6.315925264911377, 4.723161181784616, 10.026435958912153, 4.403845911846353, 6.446129270359189, 3.762866278951812, 4.554552739174263, 4.959692961678571, 4.751826765860811, 4.541836995848003, 5.6325262262140035, 3.891834501183026, 3.960997984983092, 4.808872127319778, 6.094131668037797, 4.3745422354220365, 5.2434685771620835, 5.508507671681498, 10.355698480710434, 5.100927708528482, 5.574528488205751, 4.873176255039511, 3.889839398299324, 3.0797652971484375, 4.449252801187311, 4.435141662519876, 5.961549757998014, 6.707787055425346, 4.832711166314533, 5.241573516930189, 6.539412534272725, 5.930681589560717, 4.018364596992657, 3.6267135154079724, 7.476212128221307, 2.271833227922319, 14.462475584213134, 4.77337060788102, 4.987043237082845, 7.806994932496761, 14.14076668863377, 7.597802546495483, 8.27590561891807, 3.985230228424694, 7.119736021650193, 6.363396055303706, 7.426104583929951, 3.832898735750548, 6.956974990841678, 19.18784090570974, 5.981297999922699, 6.158134387814199, 4.020305488371199, 17.345877853076683, 7.308461290078046, 4.408841407492331, 8.397816559665236, 5.657071592515379, 8.430754523438814, 7.073038344323704, 8.745393392353563, 3.233124560756208, 4.330708578892487, 8.502070331069751, 3.7830786296409884, 8.417588802665458, 17.82798104480124, 5.131361591339746, 6.768039319149854, 8.700183587858595, 4.613263688418212, 6.615441980052778, 16.560262390304757, 5.649528840524336, 4.440174998744167, 9.198814016968631, 7.315832778432175, 4.50189069989324, 17.60802397912227, 15.097214804284306, 4.637628398837419, 18.039185774180925, 4.04729351703526, 9.07588687141271, 4.2806894815143925, 13.23875992493225, 2.9800268234337053, 2.9908020084504114, 9.144543060186063, 5.834400921760536, 6.958294093178832, 10.84836660493784, 5.746069757605405, 5.171056895593867, 5.004854887493789, 5.056825482816804, 6.6059798669405, 4.55035686498018, 9.846816298968921, 3.095451566197688, 5.4801607255685205, 5.903843858872448, 15.328024875081914, 33.5811917525683, 11.949759385884642, 5.144280151242698, 6.497321391221139, 9.866790687191028, 10.736395803866593, 5.46282697828372, 5.785629551282477, 5.542764180305799, 9.728096977526716, 4.854435828564403, 3.4834091795011015, 10.193289776161622, 8.338691815733814, 6.697812524424513, 5.283177983761645, 3.1357124012010624, 13.7340797557679, 7.634332134326042, 9.999349603126985, 10.158096906769106, 6.950784900710087, 3.3130579079825364, 9.693648285621617, 3.00103791769962, 7.943308745793474, 12.486109826352937, 9.235056978614958, 18.30010460322807, 6.370663082185829, 8.30804014033368, 3.923264163054067, 18.78725901160268, 6.664019650186005, 7.577561828313528, 5.56203234325541, 3.9513821417603308, 23.90161589832541, 7.4406730190778685, 5.467088924338255, 5.432163037397449, 11.173743934706675, 16.8444616883641, 5.3450212663095105, 8.99568389251761, 26.121562097419286, 22.39026775743601, 7.769289311794607, 27.17356390946862, 5.183348557588493, 17.7332280323427, 11.190582416211088, 12.297890350868375, 4.4837853876352805, 2.5950552696742837, 4.945659152063762, 3.8661612700640324, 9.540363173850421, 5.394788040187463, 4.571458343714551, 10.533878202852872, 10.463080985182799, 17.221488665132856, 5.474929106085753, 16.896879158836168, 13.728286690998718, 36.49892302416531, 5.576451784261432, 5.456703090487443, 3.991744213934253, 22.96500525368793, 26.482705915435236, 80.352206377769, 4.96374036887337, 19.879856019075945, 10.537448889199519, 11.105236313513993, 6.75006556257471, 3.902300187216403, 4.028645507693791, 4.478399681795918, 5.303735520091472, 20.553835888289132, 4.094223908081453, 4.059095358099321, 7.923648938822544, 21.343536179955386, 5.424480753945943, 11.099488161619663, 3.4453011088443892, 10.69705633332862, 3.125297144304181, 5.527412503727933, 5.312450217987057, 7.641870247969587, 8.197199220735365, 2.8075972956565765, 5.294998198525077, 4.855955975829562, 4.37341648005169, 25.35215362791962, 3.721638817212205, 10.353897663175102, 10.165660292878428, 3.8011976784004324, 14.293478048070815, 7.878062280627568, 17.416262257507995, 4.1920247013226275, 6.571346034428551, 3.3032993211610804, 2.8673016213524454, 4.326910300776788, 5.701585750289625, 6.995192021646759, 3.917232956151616, 7.089492294160853, 6.898856812354332, 17.02995606056707, 3.4933645413243064, 30.127605195319514, 9.219346140020326, 6.863065303485863, 10.733078962171067, 41.207708193323015, 4.591158968988751, 4.515083551529023, 4.507537291144586, 4.688979081293415, 3.298582559373227, 4.631178970700603, 5.346534190003381, 5.417715992773585, 4.982206372792216, 9.517984562520665, 4.217139857768305, 4.7958749437851536, 3.7690198035538884, 3.2183723622396068, 6.8613569209881495, 4.891860532807078, 6.317018631219338, 3.865235272783267, 3.7700321425382413, 4.77385910836939, 10.373835548754963, 4.311410040167134, 6.219007554598962, 7.712085022692014, 6.180325925666361, 9.025154824902957, 5.6866167348696095, 2.813325799022762, 3.386188712289489, 3.7465321825498448, 3.446653799305904, 4.543655637612946, 3.696469951991111, 16.1879954849923, 6.600892941158291, 4.940933619044217, 6.953243601891233, 7.799068046813703, 4.186258192472536, 5.978112032882579, 3.6573255525544712, 7.231014945787176, 7.5976203986787265, 9.78972949748075, 4.66986212970157, 4.718327884180999, 8.521220891392456, 6.307716063257928, 4.038192504399238, 7.198386265624158, 10.43484333913709, 7.685324888957897, 5.060781362822875, 3.124603523108737, 4.254602649567519, 3.5977695974528987, 4.56060399614951, 7.802865976301906, 4.744322152322994, 5.290050514248599, 5.085429655704539, 7.671908347824095, 8.832736293041432, 3.6906725966218943, 11.812376500132142, 5.45336510351925, 4.1836539963909845, 23.171734686516373, 9.195458809916401, 12.871644616025177, 4.444944936406545, 2.902802557870095, 3.8984579581367638, 5.424336120138798, 3.0471480598463376, 5.325866278373315, 3.8859340549498667, 30.03653647647151, 31.307870209529213, 14.30308021588102, 4.942419222427668, 7.115629356754355, 5.478705973581337, 2.7840675054993547, 3.910226859295189, 23.376838160732618, 3.5861200178460884, 4.640094082683826, 3.2141744537292904, 4.593282735087466, 3.5833596962804473, 13.896271846828505, 22.1552425940073, 5.430873597692535, 5.259315856439655, 33.769686629576796, 8.952953730588014, 4.577878749847645, 9.699162791844316, 2.639965229334251, 3.986631424535483, 3.0148411923765166, 7.093295937946718, 4.744774633416941, 5.848714359798775, 3.700273018560549, 7.49923424850588, 7.942055074181912, 5.610012029856253, 3.577589583915895, 9.209167069494873, 11.030617747755992, 5.720704811430163, 7.870863043434015, 13.256050848658704, 5.475774369071188, 7.836124866814362, 4.712245523433429, 7.918808483563229, 11.198552130283693, 7.6390400946279975, 8.48782885665498, 6.14943216008, 5.373908476778614, 5.103115304744701, 5.325357259992283, 4.573029300075507, 6.596884201245451, 8.264814962330233, 4.967699583280098, 4.028371325019063, 10.180444668130784, 6.125593920851535, 11.417145047956808, 6.37768696383657, 11.933085247720083, 6.089189330091174, 36.60068797026233, 7.537439756601175, 6.722219202132156, 16.76477901505109, 11.940318901434862, 13.052454511818956, 5.409651831463152, 15.78959024801856, 9.959055165986612, 7.813444335262989, 4.2935975996076605, 24.85243269079527, 10.491800121116574, 21.845259439909743, 9.645793164539882, 36.633603173482584, 4.630317286889535, 3.5974870019172585, 5.442316783557465, 17.139173867622453, 6.7547056867503805, 5.897265450731509, 4.236642127596219, 5.327373896705648, 9.456804442130966, 13.1280248703945, 21.413665352878013, 10.70003040162215, 3.712978172038231, 9.70927232990385, 4.708011109882146, 13.11807240188373, 3.4879884788040245, 3.5230215910003033, 12.444551927421342, 5.7310830907196175, 9.190271926632258, 4.504117686705615, 7.985641911022094, 5.438554964691417, 9.064139766076707, 9.024772969215494, 4.3244556213185605, 7.161776540625287, 6.786423332689946, 6.430156591602907, 4.604520115056411, 13.158173316265074, 19.515252965481377, 9.055337643791674, 6.296033827863806, 31.17866817146097, 13.548339140331478, 16.598643644531812, 4.054575798854779, 4.15933908357578, 8.119008313552726, 5.668235026975534, 13.832912886961632, 5.609850932546354, 16.202756996142245, 4.3560441519454045, 3.6323183657166727, 5.2166541593907825, 5.533726823410904, 5.107063705556773, 3.485045664896496, 3.5798792599257085, 3.3653737576289364, 5.167664118476599, 3.9353763137811293, 9.773828993548742, 4.564924782763457, 8.281956017227389, 6.435402302668965, 4.421232305340476, 2.7953677962404506, 3.71919971228111, 4.017090058369151, 12.520485688497493, 5.061314809665785, 5.026103150849356, 3.926708224449853, 3.6835486498348344, 5.465930035459657, 5.00776287549737, 6.257817874764033, 3.9998029266969484, 3.891073454773397, 7.312617771020319, 4.784182960586324, 5.927280564507869, 3.371366028913933, 8.03573922401726, 3.5621793504354047, 4.3109266803293815, 2.9792396791613784, 6.062371761080185, 3.4995581683380386, 4.202620167574864, 10.435584948650689, 7.7667402064453706, 9.238851399823, 21.398384201852938, 5.546060975178506, 4.998096937610588, 6.596826215057189, 10.392124790918816, 4.963045289644483, 6.46222159544622, 6.2688612938352835, 5.539792610647881, 3.55584275849333, 5.9325014104766245, 4.924031932862491, 4.529632960609362, 4.617217342786777, 6.9642496954259485, 4.477881375504603, 6.274923482220143, 2.9581882896045637, 4.708180981661648, 13.226787739432035, 7.363914742984098, 17.055413050619862, 5.937770444632421, 7.115507022936839, 5.9177030751794, 12.312366452431533, 4.213455319353664, 3.4151652358750284, 3.313370433922311, 6.82117389447937, 5.1179058761328005, 6.609138816464878, 7.097012203375249, 3.8190127146618065, 7.443728281470853, 22.18217847058376, 5.625624389943032, 20.548237934439914, 6.3722342394156035, 4.22341584552549, 5.384151571479134, 3.4748501455871135, 6.869661779916626, 5.336252539787203, 5.785025227856389, 3.0145626733443263, 5.561684328045606, 4.31214235434573, 5.61618408756758, 7.255011293183203, 7.922038066631852, 6.474334974301879, 12.470340010312636, 4.388950007025997, 2.722056950933836, 3.4584804662466366, 5.017295508427172, 4.312787450238429, 3.1357084532026733, 5.378364899986384, 3.033146138258301, 11.686070101444347, 5.512990816221309, 4.0460717363560965, 10.959177026976544, 5.048634887506822, 3.43490520310483, 6.407265364405028, 3.946320362621253, 6.809133687176401, 7.132418913652385, 3.1527887880830505, 4.74984119543506, 10.721130914576566, 4.878926940958672, 2.206135393085696, 8.585076376950346, 16.956724458177177, 3.203569346948641, 5.032535400355347, 3.424450732543473, 3.607108770046668, 7.649639713394501, 4.91923777477829, 5.710652464981575, 6.231354351298216, 3.9899065073084814, 22.88391081792106, 6.060100895618763, 13.554831932282983, 8.908266064654145, 16.32534251229476, 25.47711101573754, 7.395065206866156, 9.868054288435724, 4.652781467761203, 14.470255138481097, 12.723603452344605, 5.6358363029190635, 36.88919565347702, 7.1458454291252265, 5.604416131105586, 8.418831819053647, 24.356143714591834, 5.176303604785377, 2.9343866831277245, 7.01597049574644, 8.823693989674425, 11.152532646772684, 5.793274213296902, 6.464461998861531, 5.741066172203698, 18.30747758426046, 3.1637309897142694, 14.51809320917205, 14.882594643291267, 5.34441527910203, 5.708282351102021, 5.024275697667294, 8.84455284105679, 4.748333096628725, 10.018230432118166, 8.847400224502035, 5.818123260372329, 11.273005312319714, 2.7885651287507267, 3.371497018828274, 13.535684275033741, 4.294224977107795, 5.353828216035466, 9.06390869437302, 3.6102214458736315, 7.1749955596631905, 7.9994557941000055, 5.33754161659642, 5.4846933840725605, 8.286917630773422, 10.607836995624528, 35.22697374536671, 17.416908181687585, 14.843755450668498, 22.567716653490304, 4.752250860723012, 23.121292419617642, 5.795907305820576, 4.816601006069565, 9.645698154692667, 6.557487986434411, 4.708974953067092, 4.200804705876116, 10.499303929245162, 6.9758216795993695, 11.890492648109648, 9.7033925972866, 2.9726335359651164, 6.056978721052131, 6.172042097585656, 7.233728977651893, 8.363207887456303, 8.165516015346183, 7.313420896185071, 36.996648901004995, 18.30429184612562, 7.880660907286411, 16.65201630227358, 3.6278455291092007, 13.71563502976439, 29.403488606994788, 21.40287670937027, 10.748602564687282, 2.637156995527578, 5.031258871569934, 7.698883264232863, 2.746005947831717, 5.302684848487314, 4.202988029329397, 50.26924553889957, 22.18070040205025, 6.903931325358423, 4.985716359355113, 6.751081292328291, 194.4214124649861, 219.87355555555575, 161.43200000000004, 144.63296969696967, 97.65705555555554, 97.01960379094592, 133.66688619713622, 122.03943754313322, 89.25500595238097, 122.0256563240681, 76.61718636363639, 53.611720783602365, 63.32708716478454, 12.508229455427305] hash_d64_k16 = [0.0, 1.0000000000000007, 1.380000000000001, 1.5600000000000012, 1.684999999999999, 1.830000000000001, 2.0850000000000004, 1.9466666666666674, 2.1975000000000002, 2.955, 2.8928333333333325, 2.397166666666666, 2.7390000000000008, 2.7524999999999977, 3.1905952380952356, 2.7048333333333305, 2.8171547619047597, 2.8150476190476175, 2.855559523809523, 3.0081269841269846, 3.0618452380952363, 2.9779166666666677, 3.279576118326115, 2.807281746031744, 4.479670634920633, 3.5455873015872994, 3.599864718614716, 3.17834163059163, 2.9124267399267385, 4.918124819624817, 2.7582105117105113, 4.2992856587856565, 2.7435873570873555, 6.09244444444444, 3.1532694943944914, 3.839006493506493, 3.3833313075813067, 3.8623630421865696, 3.648791292041291, 5.684544955044952, 2.740150920158272, 3.0090841658341665, 4.162438117438114, 4.635921101774041, 2.9413738206238196, 4.525793575619425, 3.6020656383090572, 6.3997579365079345, 3.5403714522491616, 4.622477799977802, 3.5784554954961125, 6.282277629233513, 4.112729116351484, 3.7773949938949953, 2.633717888106047, 3.1632118698295164, 3.2263816378989003, 4.688184274875449, 3.110607659446937, 4.9180332641215, 5.430401368626212, 3.3572225609974278, 6.39829102674445, 5.646405582979111, 4.219616081716702, 6.848138874713179, 3.826576628207198, 3.579621975399378, 5.976289612511671, 4.687845753919284, 3.98477725645814, 6.2368180708180665, 5.421206003405914, 5.106302438890133, 9.425979574773045, 3.3730919448687673, 5.36467384004884, 4.210500000000001, 3.5123889060363314, 6.567789562948227, 6.19618021804773, 4.093686184366209, 3.8252129021911623, 3.54000480597658, 4.488469702629612, 4.928181562008605, 4.529177801338158, 3.038990014155817, 61.24139285714291, 3.0126051519509405, 6.043039362001694, 3.3213602506616495, 30.901519385585168, 3.8868836048703326, 4.657450002790363, 4.106119720676204, 7.2461696636105195, 40.81965151515152, 4.018822605384156, 4.021843202798979, 33.174642743221696, 8.737379332259072, 36.615600427350444, 6.601705478776723, 4.519466224233635, 12.407898096885194, 36.536307236623024, 21.61928705499294, 4.766309323062993, 21.144017178083363, 19.406318542568542, 4.96205827349465, 13.211305686702358, 43.98135607959291, 27.106148281950606, 20.744022515904287, 5.461497782624, 4.244601711061268, 32.57459962259964, 4.710403162903162, 23.836733755375075, 26.22471500014146, 3.9264195151296213, 29.314475371656954, 4.892083806114623, 8.427751857361763, 12.390216761454095, 12.362554628421119, 19.872883462942283, 18.498082115792926, 4.463715750315821, 25.452839329903288, 6.051522877706348, 3.387040415663894, 3.0645374640836103, 3.4214982257485858, 4.475165717038744, 4.534136404233257, 3.8631626449281633, 3.4614186494895582, 4.158542913607383, 4.813015320169574, 9.513014725137845, 3.2216517666807807, 3.2949415409903717, 4.784823942363612, 7.9917681086886985, 28.31197003618352, 30.713398198035197, 4.553949252623011, 24.38238899470942, 24.32970751113014, 23.00888687023508, 2.904761458149336, 4.488661190141801, 4.667956880520622, 5.548232173508052, 11.28143342346509, 4.149601894915022, 3.143443184700261, 4.973604156305296, 3.9426541968026187, 3.594159475999211, 4.6946097404955545, 5.874376107808128, 4.728038593344501, 4.61204258865266, 46.68629473450527, 4.536174603893877, 4.088266549339534, 3.3820746086530877, 23.105692015955054, 5.726787564772249, 4.742733140413696, 4.172160134086354, 3.6395531511212553, 4.570981614840745, 4.617211796782356, 5.9582009501943105, 3.9754055051036405, 4.705646054425398, 4.660186320453835, 3.448418077064677, 5.190516443857579, 3.3785039648913906, 5.220906341047645, 4.041367728240402, 4.216220550373914, 4.427311008828882, 4.977942145722972, 4.022866816345856, 4.2567556302531155, 3.9801209305985275, 6.4113756386804575, 4.753248101296979, 3.818906470724643, 5.042585039983472, 3.1547373971737174, 4.742072662389099, 3.8700822814282687, 4.575833735693393, 3.687332880012333, 4.191728516356183, 7.098814557887826, 4.919821467744433, 4.760060267644871, 4.051854485162256, 4.961768452982834, 5.630974303831769, 3.447102910576475, 4.904441097734193, 3.292002816176007, 4.324805893323714, 3.605550303631862, 4.945530087810879, 4.871373356954013, 6.066859699962059, 6.354385103501081, 3.1061243838117534, 7.2040404386620285, 6.252545986790944, 7.965212210181691, 3.957741246345329, 5.211243122687875, 3.9790045960242626, 3.4380266423154064, 6.47236308206559, 3.6671087949495194, 4.18822188792178, 5.813029689874007, 5.841601293049146, 3.843480588900359, 3.540864046279373, 5.516761742563303, 3.8888605821175863, 5.1693605846756645, 5.688094912759984, 6.220577198794681, 4.6828514566709725, 3.2122395767552296, 4.637384751410522, 4.301536512873919, 3.775837911570016, 4.026253028125037, 7.462610515233246, 3.384427754968601, 3.1058339121992202, 4.045306180655183, 5.0156311119855586, 4.047296464424852, 3.182878794331547, 4.527621259941916, 6.347344630560056, 6.3838802629824025, 8.25112170890559, 3.415445960873646, 5.752543094397615, 5.621912593039154, 3.624969729403404, 5.2478065532676705, 4.119364794135799, 3.8173560222332434, 8.246317009522286, 2.4420319479831742, 5.696156857276708, 6.382658243543114, 5.073698544514499, 8.003143166716185, 5.302507052840072, 4.270982404586025, 6.487440114716659, 3.425050064776935, 9.200642125871704, 6.860852754350688, 4.078374126989185, 7.517995931313244, 11.785243886348155, 4.48491285443017, 5.144374602817137, 3.6612823401210908, 9.162060063409399, 3.801476395088532, 3.8700952361553735, 4.94351821069566, 6.34164277340846, 4.593843758338161, 4.919096311877926, 3.790094345807487, 52.38341981639641, 7.257619545913024, 5.750638878257577, 6.119915881615413, 32.78842457047687, 4.588550945241049, 14.205879428582161, 7.070169834878364, 4.4544690641944085, 4.1650910101012615, 3.8172525092247263, 6.129879019941336, 5.105825911865695, 5.880203923614348, 3.4775225528810725, 3.963758230480601, 5.168025052945455, 5.365020157998925, 6.979504319475095, 3.5606498071090815, 3.679545192464918, 7.898649550123077, 9.589857333550144, 6.883097929768899, 5.171332332318216, 5.304426375058862, 4.969832256587819, 5.199307742946105, 9.124681574050303, 3.7652301557855794, 6.157385436237178, 6.725118096593249, 2.94008937507364, 6.047097823997014, 4.950991933651789, 3.367224544518757, 5.619865928572133, 6.092077026846566, 5.230338597516927, 4.95167278303011, 7.085365381034621, 5.825037700612022, 9.034156221541805, 5.63628981951455, 5.9588518445362775, 6.192747122390419, 253.3535714285716, 222.2113333333336, 194.16166666666683, 163.26583333333338, 132.021, 141.26787499999998, 123.65216666666664, 122.88492857142857, 115.46036904761908, 107.2412887488329, 99.22940476190479, 99.39775396825394, 90.53080591630587, 81.04327561327563, 101.68389057871953, 78.56215337440341, 69.7724671162171, 69.23227189477188, 79.50743248418247, 74.42570826395827, 63.166856740481734, 72.9854080747684, 68.41684677658942, 54.20995695511057, 65.9691852761102, 42.633399395768805, 53.966370119560516, 42.94965658945456, 51.45441226420266, 38.4943532174269, 52.056721852245126, 46.297085193699075, 44.919487871422604, 51.853008826721414, 36.209185574257326, 41.34793207679084, 50.82109691638969, 35.18485035094837, 49.57839972086074, 43.317239255150255, 31.125491743701005, 30.67934063616667, 31.2945135489635, 32.46969200957355, 42.37360271143078, 33.243745366284834, 26.903400129506984, 30.930233817917355, 41.8251285547405, 28.404654141348686, 30.81698981422551, 36.698994668503175, 32.634475504248805, 51.4387759516308, 27.416690357456165, 36.813140605368105, 19.536448583013044, 45.85981860727764, 38.274271733513196, 28.11413743343678, 35.16631191617051, 34.34090876086539, 26.334632893659922, 33.590835685903976, 21.298205748559546, 30.059847805991375, 16.538603788318976, 20.120438023178778, 36.371168949581794, 35.57311544321137, 27.87200317901737, 33.63302343029623, 29.53310704003906, 24.148555436438297, 22.931990315075762, 31.385744148538805, 25.11438041460531, 26.046321001451194, 22.277063956959708, 21.31325293518181, 30.51054619382644, 19.189904995852626, 22.42777631147613, 24.939640559163333, 20.297058991803524, 23.68993189117389, 17.478530224597176, 46.321052652028726, 17.433684804912897, 18.732153164916536, 17.571584482310733, 21.08618674811509, 12.876662489870712, 14.395896502922687, 14.943222823709952, 23.680896289927826, 24.11789498373879, 19.716975969604665, 21.004783838972713, 15.204684364703553, 14.305726892470679, 25.115972569411404, 16.51905985266357, 15.35132179746887, 13.834740002307987, 16.90145506097357, 12.29754494924142, 11.283974857860043, 13.86879368596928, 20.37954365302613, 12.789154160185925, 13.66538109561941, 18.559179320223294, 15.475145555364861, 21.408368042355374, 20.19320009548891, 11.714789030758078, 46.06684414059545, 16.039837533510013, 20.471155245001345, 16.64663649352662, 13.093687257621076, 17.15531372346817, 9.448324670028496, 12.091577185521361, 14.219176507475806, 21.063208242487743, 18.942977858468936, 7.900881500874676, 9.29439914600382, 19.213099229992196, 10.040265272471302, 16.94754458191024, 9.577918582874421, 10.732501471720946, 18.824922908430135, 12.899070033378168, 18.99421329499996, 12.791015584603663, 3.9495528877263046, 8.706655497803323, 81.76535056136274, 8.62837336770867, 5.116371875436389, 7.281322505112635, 4.140145933084819, 4.862392603664709, 4.109600823719489, 2.4938319807581717, 6.178531941075942, 5.727764369240042, 5.941122989025078, 4.026884871797637, 3.608180679174043, 3.8943477492564718, 3.5339919059114777, 4.001422433111459, 2.9522383580357268, 3.2649347498901493, 10.99744369806096, 4.882198223532907, 5.248299187534383, 7.492231851367548, 6.08377224070804, 54.96571367521366, 6.97312580788284, 4.252509325219589, 4.373106185344951, 45.43225225968857, 5.866233783130011, 9.37954187659993, 10.51472779106858, 6.479689073493621, 4.72547400786784, 9.11176624489548, 4.560651312779645, 4.758522286536992, 4.527488752584916, 4.633751031880057, 5.002635496650199, 6.820655701029101, 3.9551366382196944, 5.375555813864502, 6.495916618253846, 7.583727714838007, 4.006715143769907, 4.86924245025737, 4.287360960576516, 2.595719976867515, 18.426982978374284, 11.119405951406897, 25.70790013771242, 4.005010302224261, 5.225529046638488, 10.872603011883609, 17.21405518492664, 3.918337985183624, 3.3627954398713906, 6.024612691173063, 5.826323919525763, 3.742824681922231, 18.196355356002847, 9.935669091708876, 5.302947093043465, 5.956027448083297, 6.20531098068598, 12.245004863727099, 6.253124405830144, 3.797200842531638, 4.081134244901724, 4.448617734888462, 4.675046825552188, 5.051709973879562, 5.029750251982916, 4.369787941449349, 3.78926631271373, 4.262377227603313, 3.684748859226017, 5.397673435961397, 4.573689788294448, 12.10536350084015, 7.808586640211639, 3.913627054064934, 3.8094540974949767, 4.809303058968351, 3.8272073383740586, 3.377217235384358, 5.0755599970205205, 3.0772787911574193, 5.051282688222292, 4.714161326017749, 7.498816892073166, 5.046746253572686, 43.11288658175843, 3.2940132565867817, 9.2040687716423, 4.3466746215641185, 19.021299393174235, 7.598726108948225, 6.048088128105836, 6.7702107909571305, 6.198385894741769, 38.71054587969718, 7.574705009369711, 7.2121455953168, 5.893397732128689, 13.15881565824526, 4.65246840187203, 17.451174325347857, 4.894476325373551, 6.498392401127534, 4.240385607603683, 6.554602499047408, 7.194130462831462, 3.950528350754461, 4.519539489387186, 7.736608247077988, 4.391562317943581, 15.223643280067886, 4.585687793865083, 5.7795724669220006, 4.258800013083161, 9.20870505360343, 4.520669882832344, 4.532206302414678, 6.705358178043526, 11.959261331480468, 10.761187861802659, 4.624506206981328, 8.295034553795238, 5.672418023070101, 6.801402508693354, 4.233672389604216, 8.399925313329726, 7.111609463197102, 5.973606432357573, 4.0769930283730025, 7.586947271627778, 5.923456378997382, 5.089932631384575, 5.099114352443143, 4.980623637382984, 6.2981367882701145, 14.534879107004103, 4.557490828037145, 4.322404277016606, 4.294119704192764, 5.7057709397643555, 4.134526951367136, 6.473346970046266, 4.4602914547512205, 6.607501664456959, 6.57186635042488, 3.9825712256921655, 3.8648969455296016, 5.837981852270468, 4.510217524689041, 5.335768671161923, 15.595150125365368, 6.448556762506432, 37.856313852813855, 3.526398354418198, 4.3054927183262475, 4.452255928833646, 6.9101870978673405, 3.3730728552298457, 4.220171142108538, 3.4359222853170057, 4.7404530378328085, 4.29700596169826, 4.103316384937175, 5.7823275607915114, 3.2864808699690284, 4.610849711762641, 5.627874807231791, 4.5207473596760375, 4.923807780574207, 6.449909010305686, 64.4294350298824, 3.8231464327463045, 4.035400337441707, 2.956328722464208, 55.01515748194228, 3.3972009895413664, 3.4778141627535293, 3.7100157770261557, 5.0012686062884795, 4.528261406261089, 3.812081673486147, 3.8664982660411997, 4.434950921129585, 3.8300302800847774, 4.27952258980596, 4.018635468625593, 4.948406815325217, 4.569542573634014, 5.756027207617354, 4.957711341270261, 4.8341660109778, 3.292664017077823, 4.93695268407577, 3.996737537629296, 3.7050746309580864, 4.088761881519161, 6.238146377375166, 4.298651131259823, 10.900546451027358, 4.7732679873041475, 4.768583183481773, 4.33868885998219, 6.3539714562821805, 3.825749138789539, 4.234546183074665, 3.9946547418842413, 6.0084436547526145, 3.9574676643892186, 4.9597244975101535, 4.768911906019775, 4.108857508485613, 7.349604301207851, 3.97649591893114, 4.433121363947868, 3.4037619994624873, 3.4433628175719853, 5.013769032116486, 4.0691984880688326, 12.830657746802, 3.7258289242277565, 4.36741407918891, 3.2206256421010675, 5.925071682371936, 5.287736570819048, 7.788200030388506, 5.948493780962625, 5.3157940646903326, 8.008696171711696, 3.120602939363422, 4.0823318523509675, 4.135979360007195, 4.176078877487195, 4.948849103519435, 3.7177452951405425, 7.222971916202278, 19.536383265997287, 3.8313844313077454, 4.353305180871888, 8.206219248393587, 5.1357157889718215, 5.38429927440598, 6.9583333084903565, 4.7765902123908965, 10.630580274000986, 6.0156434995059795, 4.271320443328613, 4.199396832085865, 12.124318888122371, 3.9790107091391382, 6.632428529585515, 3.5883478033367586, 7.123184008059706, 4.749932145136451, 5.074863393146203, 9.954480979356472, 4.672102906366967, 4.909878549901924, 6.0054819611998695, 4.402497297505343, 7.37440909355196, 5.6518303390144595, 4.192517805195282, 4.2222987355914565, 5.308303848992029, 6.415783129752548, 4.676056247785585, 3.456076054875811, 3.431675816413403, 5.377254349253488, 8.68008901779966, 9.756988066204713, 4.276450209211423, 4.218987344376318, 8.641515520028658, 6.309095213878649, 4.875120382390565, 5.2027705966498194, 4.5666827695215, 3.410751428844372, 5.472052873827526, 4.140752110698307, 6.186760495887669, 6.068236928502007, 3.863006176348991, 4.988738094959887, 4.511650722075897, 5.322480692468325, 7.014590726615224, 5.4732842101126495, 5.097430472946419, 3.6852469817989157, 5.443520752797291, 10.560965198357806, 5.932097205255977, 6.094039386757542, 4.578603587508579, 4.475843256809096, 4.199227156514666, 9.41641056408922, 3.5859490234097002, 5.2767589917787, 5.027503455885986, 4.272210759772436, 10.93302009260659, 6.475425174185372, 5.3564991546761345, 4.814983235166664, 10.854252641864578, 11.516435196284009, 5.334671508242384, 3.7685945691315363, 3.46787213760456, 3.9230116196658953, 3.2962722415829275, 5.519941249619518, 4.927356001844554, 7.807543233721472, 3.4251658766512496, 10.454426534829619, 5.868787268844258, 5.874406909638669, 3.5778862012180594, 5.146057203514086, 5.513395779963328, 5.349694927740676, 117.32450306637809, 9.486420592308045, 3.187528917472293, 5.184854001004473, 81.99055345471523, 4.2509444320512175, 5.146936407424559, 4.048341317946439, 3.973233029482906, 6.992132770566766, 3.694850098445229, 6.137014907412307, 5.73134319248439, 6.387772034671311, 4.400733055484912, 9.18534175650478, 6.010467013529879, 9.11145512662386, 4.673813861971811, 7.084939773471615, 3.2668478812150195, 16.89713387385662, 5.031806529454641, 4.52883581322346, 3.635962151965087, 2.8995430148995633, 5.233594815263489, 7.536881479451256, 4.658069461069737, 82.13938477902812, 4.062225652894502, 3.6653359471484595, 6.835069950063075, 67.85043134411882, 3.580788752868208, 3.927801532805478, 9.460659032475405, 11.59018723785984, 7.0723498538404685, 6.422317684419081, 2.7743230545902082, 9.068497624817308, 6.887561431105427, 7.8073074722348705, 3.7840392730412997, 3.67751758292826, 7.772284547940904, 6.707275562325838, 3.2388101112602548, 4.686844896825149, 8.161649750040878, 3.3806181859041082, 4.510287370388402, 3.247905697608337, 4.690030741683099, 4.073605052594782, 7.20552751388578, 12.172675851733587, 6.73280885776306, 5.87785847431231, 4.5731545153803514, 4.492559870117857, 4.508125549506411, 9.5231094314824, 5.169327425809325, 4.491675319048568, 4.970416199927924, 5.873208593451313, 11.50350400092757, 6.150727443725811, 5.889308805634453, 5.90258197630872, 33.669245698068046, 3.9546220081039847, 4.672718121342066, 10.191227438473456, 5.901462625541473, 4.921032581817656, 4.267315135235156, 12.752342073213768, 4.567272715897558, 3.9675635883720233, 5.066144918194302, 13.964338043325279, 18.87898761719268, 19.45697072728804, 6.143610206991126, 12.001030107561657, 5.578187579928824, 10.452571265549786, 4.28796606547593, 4.969653879638903, 3.5479455913974487, 15.814860779183075, 4.014009080955706, 8.541255331550815, 6.71769363645259, 4.555469187073753, 5.554141596488823, 3.8179884570945775, 28.20582550195979, 3.8093031404568025, 3.6407361321121, 4.791576966307805, 11.11296091259354, 5.31795724343949, 4.52202000424276, 4.662489370916568, 5.373297158384177, 7.782564075149989, 21.02092813383294, 4.407898075725379, 5.879064103928036, 6.957808532785323, 5.678667039930207, 6.855726622772152, 6.355875311401285, 6.4029696679137835, 5.50116722963601, 18.197678713276133, 9.033195650227213, 13.014886431584015, 3.5107711797746832, 12.590935521614583, 4.698539193306021, 4.987938214698731, 9.626680394092983, 5.625926417006723, 4.173395259087993, 5.053166081555947, 3.809360792533341, 5.159344552037937, 5.343669873190661, 13.557504998045223, 3.2140852422742054, 5.073308010608321, 5.486280182269641, 5.1522909402736765, 4.996149982189293, 24.517070400387997, 6.941386025814103, 6.730868197706553, 7.023084325104663, 4.007324485861022, 10.773286895326699, 13.41641977746099, 5.253394675213449, 9.32930704167193, 6.151456620093904, 3.964222035530309, 3.833211318317877, 4.42300798652835, 5.772546846953493, 10.877593542698465, 12.185307547163465, 3.6465377493889393, 7.091373667315063, 4.235799358860073, 7.465102320572203, 6.694161355097706, 13.229958261983212, 3.7882662766912087, 8.864248131391042, 15.668405150314003, 7.1035394741524875, 4.047331240745043, 5.658215968182944, 5.803362042514713, 23.22998714926473, 4.690085030852736, 3.755957362217163, 4.233910306049663, 7.003024052237756, 7.476929822620332, 4.975416511173395, 10.696464311061147, 3.7624031041141963, 5.166006259780815, 5.338084188385034, 15.563342880061528, 100.11749179415358, 11.478665479296243, 4.624575295001733, 7.633678164165454, 57.5313534410615, 8.748870545589106, 6.747813370558742, 6.40002695918707, 25.394275024883722, 3.160543054718841, 4.985597895334965, 5.549280159217666, 16.235645904925835, 6.6113213956173364, 4.739283247596806, 6.127623840308204, 12.091242904626077, 8.230014274788623, 5.302579175903191, 8.298754562237297, 25.898051327641323, 4.5584274387036325, 19.145440290559574, 9.444211959722676, 19.210100103431188, 6.4507880336867975, 10.869711672131048, 6.960538890586698, 6.364299666379223, 5.238905620220971, 6.405453417771934, 8.596166108170232, 15.49777687433142, 8.154009183295928, 4.163033078790138, 4.366006239013703, 6.523351699806144, 8.010208290559298, 10.781548762397199, 5.645791913737846, 5.8498134282732375, 20.435446577710973, 2.862997588749532, 20.75314167604415, 4.819879172433078, 9.072147723765585, 4.767043416589563, 10.347310953548579, 4.03242508078129, 11.313318132829728, 11.161152839701, 87.81763482705841, 29.801708593581, 7.158187671999367, 6.712768100177855, 57.55855209235381, 8.96028465491732, 5.782040252498856, 9.357135449130551, 3.3106401887205323, 10.2087194733962, 14.23342907804055, 10.670467400092166, 5.215078326891438, 10.287950590784503, 3.84618271557314, 7.440741919082424, 4.771618227317023, 9.929170024142866, 9.51516440427155, 11.219519088177861, 3.9353114380316256, 10.465453158441449, 14.382345362757196, 4.716405469405042, 5.047570504791744, 18.96685460340566, 5.082897078503178, 12.792836280720387, 5.244366506430007, 5.1116424407384535, 4.788078043891969, 4.661658043768249, 6.994872465867988, 3.8520987844586547, 5.054418194451167, 10.033196525171665, 7.779976838639389, 8.388220083063494, 32.53871939594034, 8.231720332371635, 4.368889760308863, 13.475634299336221, 4.9874073251113105, 13.24230164849433, 5.637841227996441, 4.787090318567689, 6.346298430293311, 10.48041334921366, 5.636208553939759, 11.893730548190728, 5.451887257096928, 9.711447729964403, 3.912191391260718, 4.956926779459748, 4.249039424529107, 3.3448563788633785, 4.664480179045106, 3.502776310517483, 5.943804141314044, 5.817065453689742, 4.7824057175577686, 4.612822726282896, 5.731496474792715, 4.5136269595703435, 4.640692707934831, 3.638935239003426, 3.125737780242337, 2.8997550504675713, 4.5806916306947345, 3.6451296682460494, 6.847038117650234, 2.9146224874757567, 4.338547034761181, 4.984530931258522, 4.230333344705208, 5.396348342714061, 3.825875721298842, 4.127091089266542, 6.3652265304694176, 3.803678045332679, 3.621946943936245, 6.4008343817419195, 7.995863461036908, 3.3068175844476264, 7.085712507243291, 5.525262236284755, 3.745847147544945, 5.328010312965102, 5.971584411395176, 4.0835395502217855, 2.9319766080589957, 6.584199510860627, 6.346457611179587, 3.941602026423623, 5.079407700829298, 3.9324082907852524, 8.518444997433376, 4.563208052957809, 10.57269446391646, 4.140379523180657, 5.305842503411829, 4.373159747052065, 8.073089838657824, 3.2741192106720525, 3.440504568189366, 9.063768642634976, 4.026470138758419, 4.314947377509836, 57.447190760062206, 7.371674708637624, 4.318980377241584, 3.8865714507773066, 4.673563097100287, 4.297893651906997, 7.804574491192801, 4.1900688695417, 3.6089916227200622, 5.322198640627838, 7.432415154777939, 6.410779787178536, 4.328278783166354, 5.634624755114558, 3.33964705241533, 4.631248941532958, 3.4229182012689807, 8.20254168217372, 4.230568964129573, 5.744865408477235, 5.736403547218008, 5.271866707932465, 5.598472880857904, 4.599285352899097, 5.029733372966707, 5.626695205868036, 4.571187210923358, 6.544135919912354, 4.2448067027796474, 6.218735653729263, 12.872325838441178, 4.846782384826498, 6.644067033185977, 5.114996646443623, 8.494036338868279, 6.799205513834225, 4.630584319131715, 9.12469232565397, 11.836599200394526, 4.865630324421395, 8.515744636680623, 4.264215752902743, 14.03486452104578, 3.840671781574434, 10.490850994251609, 3.6268541247073403, 6.07981087925745, 5.367146430284468, 3.8826829736770243, 3.7739538347333466, 4.317311970272641, 3.8808172044941216, 5.119409199336183, 19.37286509813916, 5.305854282249385, 3.3105483643640787, 5.735867926536909, 4.876291479890379, 3.5845570475957564, 8.90543713654488, 6.234660645569407, 86.6488444277944, 3.711624251941669, 11.867855680739757, 4.821129456461794, 26.603319402599823, 6.70636571568083, 6.715533746102769, 6.232081542687894, 4.147005413923967, 6.898875607424889, 3.5018257949967815, 4.57332907465186, 5.527164858428656, 6.22315652629415, 5.935184442813478, 4.722278353734514, 4.74088729363582, 7.4914439911281425, 5.788033413984336, 5.12535784113553, 6.686110092586525, 7.477203338782415, 3.2256317177963596, 3.849360424303821, 5.31888196393741, 5.066191153913051, 9.83681499413907, 6.864752555572173, 44.2994778264115, 3.2045784579082257, 3.894670905596922, 8.494698941524936, 4.653933555405478, 4.843729452067801, 4.13719630160643, 4.285469730597592, 8.214605491294776, 6.710854669537004, 5.035937973200938, 4.733695208608097, 4.710400514539009, 3.645088919396292, 9.41104387158643, 4.537441918211587, 7.436578486812259, 7.207104461289823, 4.705843936068644, 7.839429349204351, 4.101827616096886, 5.718886244398414, 5.400941665790989, 4.9706346098608005, 3.981212543753104, 3.1412759592564754, 3.8529710160134987, 4.523115061614346, 4.188428295239213, 4.35858672381184, 4.7590175121273575, 3.3822409126012336, 5.180901526427113, 3.5846002954695217, 4.556614347071929, 5.84424132209223, 7.509648393804657, 8.331557195168719, 6.39241459869115, 34.32182838793344, 42.84735349062664, 6.974062868038511, 5.308487491583456, 4.101253405712823, 45.67153977350121, 4.170245328366604, 3.5907014950825693, 4.8087080845872485, 8.51947990339692, 4.642685074964303, 5.996551871331986, 6.213095863118397, 4.864728322611435, 4.62965266069655, 5.254161349092297, 4.1169563675795935, 10.72309066845607, 4.041328490481162, 5.667226021058598, 5.4945906922864385, 10.015186671145157, 9.082148656249707, 9.07814634743601, 5.604098708206957, 6.285100285127696, 6.489917153717737, 8.84918215860843, 4.354470590933004, 5.739020992889553, 4.551098523453433, 9.400091112086645, 4.582075247597539, 4.087561594002276, 2.9625693837279057, 3.755460211336087, 5.128858676720836, 6.8445024276213235, 6.636796718116405, 9.548994296683087, 11.405771573252855, 4.715977036142946, 3.904447134499188, 6.039938059185575, 7.222011063444944, 4.435678182709681, 4.854138906380048, 21.905178262145956, 4.939029969728931, 6.0742236386079185, 7.848973848591119, 10.072328019054458, 3.96714889995823, 5.135663970916455, 4.624247811279557, 13.64552593380891, 5.910822628651783, 4.128933416313667, 5.825806656954034, 11.343252434662176, 4.7094023936671325, 3.9649882905103904, 4.405225037575543, 4.540989636179267, 4.401791666138643, 4.249559603766745, 4.57026505333286, 4.735284924601945, 4.203451175822993, 6.201102587826277, 4.9052798434764915, 4.855708434990895, 3.85114186822219, 4.355346489097752, 4.16818278038852, 5.020377502211314, 6.024330811066152, 4.32556924827692, 4.124496675450922, 4.283592815798169, 4.026939318620315, 3.6733485590914485, 7.2748776628138945, 4.541822417632991, 9.88080643906299, 4.40557869833084, 9.13165850602582, 4.1463674835916215, 6.5655989250131706, 3.9898291174659897, 6.249448941324927, 6.558603302752992, 3.793324076850173, 4.176383275273717, 5.229699609351755, 3.011376876961345, 3.0157762298231847, 21.1432920499511, 4.527810415879351, 5.77109581117, 3.9529696322596872, 7.642409458783628, 11.570501367856036, 7.919756382875755, 3.415839890021782, 3.9415542820881426, 5.443110941263357, 15.222112293076488, 5.0655877831374205, 6.480974449476074, 7.210221344575724, 5.864280563653123, 4.077141801249079, 3.60373403499765, 6.043052053187474, 5.900648691743049, 4.1608211578190115, 4.68517799680854, 8.160447612578835, 3.5812520003877846, 4.423548605029885, 7.944020943023386, 11.422385082290276, 5.46258343769722, 3.872879756675663, 5.36434408604376, 4.205721454131917, 5.547809705998751, 4.85162398620493, 9.914702292124366, 5.071783652590853, 3.179145505376703, 6.31435745750361, 10.336746456788138, 8.438740927758563, 5.719941686742195, 4.96939098949475, 4.440794063108836, 4.021362469564175, 4.230272629773342, 4.078057478011621, 5.784058405349274, 4.624104368250979, 7.733516419856946, 3.677594210081542, 6.524768143212142, 7.066374074487176, 5.143447270639973, 22.440995587575134, 4.229688175915656, 5.0752793516411865, 11.993992744867843, 4.268123348023843, 6.798146204944138, 4.634578232000967, 7.5198140580153305, 4.4876266633495945, 3.8989156586308873, 4.601249353657101, 4.996028051666647, 13.470575018258891, 4.4796399717274165, 5.400347469197467, 12.713326340357966, 97.30145060855062, 3.46263236581296, 3.8906105059499883, 4.369294851290587, 61.41476879349774, 15.157002714942557, 4.4045778091289876, 5.680090522510075, 4.693316210711594, 6.553564444563638, 3.501747396295945, 3.5450137342635686, 5.48979203067526, 4.273106938909612, 6.427995147789099, 5.6563920821344675, 3.992117127668658, 6.003342560074616, 3.582772106546129, 4.493487050095118, 4.180082961107665, 81.01447239941805, 5.061015524338627, 3.896189913625548, 4.82103830738019, 51.077838001616065, 17.288887251021674, 5.845819873893094, 7.003882753440541, 9.583183624149628, 4.426987521192454, 3.0132054478214605, 4.649102600009726, 3.830027021278617, 5.827128025194808, 4.697873439950875, 4.043771210661222, 3.6195032226011725, 4.500837211504956, 5.270657516036255, 3.5389609091188143, 3.8645323079041702, 8.92058558506467, 4.346278824685438, 4.92931858023679, 6.984804689401747, 4.718640966604109, 8.707615881435732, 4.203473159488001, 6.299972717588432, 4.173827468748365, 7.59155375061731, 4.437008912136734, 5.469878790985787, 4.912087134007971, 5.9699566982944425, 8.586962999208332, 3.581340171487345, 9.772536255258402, 3.4125044259542103, 4.308990206038409, 4.712768047936717, 6.362780594624093, 6.545155998574394, 8.081610641877887, 5.187987303244811, 5.010259380413237, 9.061963603126307, 5.696048975381467, 4.965162743767697, 7.962555372026547, 7.062147796945563, 11.061092418896013, 6.473767833080628, 9.613079846605991, 5.491381545065283, 4.413812424114696, 6.123180261856331, 4.026090687521655, 15.584569118929442, 9.296366203139886, 6.249179883724336, 4.238540702356132, 7.130319017985013, 7.483750627083126, 5.222070314588011, 7.833576985611429, 4.780236882306156, 9.609208594319181, 8.830539124153656, 13.391624401573027, 7.3899831369868805, 6.432511324691714, 3.711724675691236, 4.763137995803572, 7.4449849984248475, 4.015123659103607, 7.162961646923322, 4.032477713065998, 7.052348870811501, 10.348060560091536, 4.279800232070412, 4.328793450564379, 10.800440668036977, 5.309561978374725, 6.079144392609833, 6.060111063929426, 3.2671086501458415, 6.478118768374161, 5.777677445349716, 4.872496173054208, 4.1287038539714, 6.026276551334028, 6.279040376673887, 5.848468250083247, 4.9517713302681186, 9.76825003748939, 4.217907382582055, 3.833993390103513, 9.440618981458282, 11.942066745374609, 9.690050269125994, 5.315451173758536, 5.4393494956478445, 19.011115603801333, 11.11859343443306, 4.08544724419464, 4.318310594741711, 9.188190703984333, 6.124518527171524, 7.085864044704064, 5.904904459492124, 6.843707058809332, 36.85998200230058, 5.226126872216242, 5.79935860767464, 5.510729521114107, 3.4922220169569846, 3.9574188373460686, 7.573795665684751, 4.255370705899032, 6.384541040298559, 4.0164337617672805, 5.492217842157691, 4.95043917125404, 4.63023521364397, 12.03780207482615, 7.893219250710325, 4.350959749532263, 8.107577016727594, 4.689287971082338, 6.53954235163071, 5.005927197035518, 3.7834061880829912, 7.006777093976195, 3.8157821990929053, 17.036802175233234, 4.416585126302539, 8.712968476044312, 3.454852738347294, 5.70372870622193, 4.305901427642266, 4.5898614645166305, 4.428448414343846, 8.024727402655087, 4.855421749635699, 9.540789206692033, 3.7585510337929677, 5.957112147155145, 10.193981913003539, 3.7089405905387944, 9.11903129448991, 3.846747195888775, 30.824499300491613, 6.634383305283439, 6.708600434346098, 4.747702602816254, 7.6492030218518146, 7.532437251787794, 7.215172512332695, 4.525065817235199, 4.041665622779477, 7.831380532109241, 3.459394082494076, 6.073321072733902, 4.807624064325001, 9.488655866214522, 3.591192401532257, 11.791380954878415, 11.621881815107981, 4.916791511235199, 6.3602197265156155, 3.7469125009510145, 4.773138565529527, 8.262824374106833, 6.409736483179723, 5.255376613728241, 4.263707460833194, 5.885906020108325, 3.788652057339292, 5.721141648581647, 4.20392500664583, 5.0763623885129885, 6.312560599605449, 6.321929493345352, 7.433960626938249, 4.681874776046969, 8.628409327332609, 10.345453392789414, 10.648538133025808, 8.336371201277172, 4.673542294485675, 6.2215282218211065, 5.461591852244218, 4.903543067284811, 4.667504141669467, 5.628386909492049, 2.7848425738928873, 74.71155059268212, 9.853037839532398, 4.389975341555492, 4.443525874420843, 78.0367441933795, 79.90598358585855, 4.481149762902938, 6.607647175286152, 7.605733732876104, 56.07756881525337, 3.62117641585723, 4.1168425235921555, 3.9171549243649433, 8.466822797529097, 3.693598359007282, 7.616385641436109, 4.962652871655363, 6.197816554324354, 4.388756651834837, 6.089992981731396, 4.741807785837885, 4.03481462652021, 3.7817158136250826, 4.1745434363506995, 4.232058148256014, 6.097097496224208, 3.7488270992702426, 11.700398565873149, 6.281088359936362, 3.9211730288511055, 6.083397376715437, 6.257893700269734, 5.663518614705044, 6.049773454808169, 9.13330784173635, 8.32490975321935, 3.8967345994203737, 8.504030314454575, 4.868888484763653, 4.153562263587045, 6.656528242611954, 6.053672906499471, 4.490187875181513, 4.444054118683632, 4.22862577149739, 5.9709292511208085, 6.443455882483703, 10.884872402017457, 4.142371819044738, 4.640390205717368, 3.5611256017905535, 4.027009117617833, 5.395943253892097, 10.453947425140438, 5.468238045480743, 4.6804193965328675, 7.076125496095378, 4.315999136628655, 7.7119153845908714, 3.138882300132296, 19.11512783494011, 7.170986604939493, 19.798402797008134, 3.3394272102799483, 5.613343384062103, 16.066807890678614, 5.888184866322412, 5.5881138509899975, 7.0508011065837115, 5.150266052860032, 4.503684703994943, 5.1636419592312155, 5.237754607875664, 5.019462305960814, 7.519838289108709, 8.074847104933475, 7.911339309901398, 11.643645484111387, 5.773705895760619, 7.139743919508444, 5.228079145084267, 5.834440445291204, 4.222654965427714, 9.146632902432318, 4.659777636226883, 3.7000973923426566, 5.337100748032939, 4.7731330304105555, 7.830731743971186, 3.6769934812482776, 5.057136295684619, 19.793700107931233, 8.07426523766116, 4.058605652609193, 4.500640884969426, 5.533924831842904, 3.6722605844788303, 4.788993177141626, 4.726002880896287, 11.623697122239149, 13.42541693514147, 6.966453825818134, 4.529649074700707, 14.372261605545955, 4.719277903118388, 6.36823824374302, 3.796677232260053, 4.016846336969032, 9.600911616470059, 4.448622164698111, 4.234132438130352, 6.625064346894625, 6.4596403846718236, 5.35684877317826, 5.244840709688381, 4.492275835582461, 7.661584343292342, 7.113438610217785, 8.362745166994838, 5.650032468530412, 8.621492859184077, 4.852051010514424, 6.624888055869182, 5.18555122102833, 20.21185987095237, 9.97190579207576, 17.435244794068545, 6.8551572766741184, 10.63014639121177, 4.316948946544505, 7.892116084060777, 18.055059153351333, 4.54507034336949, 4.948613420310915, 7.16646352920542, 4.01816617407955, 7.04339852251297, 7.1015337001073995, 9.215886216017275, 9.74521288260765, 5.6745322411599615, 5.174913178402194, 8.18776683072722, 5.943722668351503, 5.3280932350755785, 5.529679701228951, 27.91886359107246, 3.39147347297507, 12.461537943095728, 4.492999998688725, 5.608605988775144, 6.272325650217502, 4.325273271284277, 5.247819285728877, 6.379726559013119, 5.412685604772375, 4.45715210092852, 5.634231524798324, 9.524270288517853, 3.9710412582562666, 11.024532292144785, 5.426147006254066, 19.4590161072569, 7.914158600351719, 6.719869717519387, 5.350797535756458, 3.986593857234563, 4.675378269200718, 9.808597418746604, 3.3064581809112443, 7.926954110447761, 6.205469380132573, 4.7158632186855085, 3.791894852387377, 4.256961127408792, 4.990668277838074, 4.928809003822286, 4.4346376555035745, 5.350858899681473, 7.227314659645908, 5.353333256451478, 5.669107954565869, 9.694818121575532, 9.504298070491204, 7.199129352941574, 12.114636836531638, 3.892024284423771, 9.252644650444275, 4.7585781169715995, 4.775142449436908, 8.89412195873714, 13.547555335878751, 5.65588885840728, 4.795169065971136, 3.8825092515811916, 5.0392005723694036, 4.966965772167838, 17.704552914761788, 9.487804946356565, 7.254390053647155, 4.481347770053769, 20.661517358037592, 3.1972705562576698, 3.8620245053514535, 29.271705674049088, 4.339500428820203, 3.5512395262932803, 3.6495962841487155, 6.348097826660865, 96.39141797584116, 4.344582263600271, 6.6597184286629565, 4.346861806335845, 46.985908876709566, 4.4626901841578235, 5.3413768055558615, 4.499713087987705, 4.782361535467278, 5.0889190059898555, 6.893504415087577, 106.39455613106274, 9.732839734951233, 4.079561538871624, 3.984081201927759, 60.19564745410154, 4.2670948296752504, 4.933385736748947, 6.359109755562769, 6.074809859788866, 6.491214079217952, 6.57935814071693, 10.457523777907399, 5.810216388282369, 6.857495365350347, 4.800212897748511, 7.73894116142715, 4.942875908828293, 7.0147188320204, 7.256962076394831, 4.22387998668078, 5.478080489878519, 4.219313710283973, 3.6575689961294318, 5.315639348149862, 6.213080760955669, 12.796126770279837, 4.578873469700271, 4.739701809234731, 5.9824341650104484, 5.055801847824093, 8.704860057583433, 5.02530012776716, 25.581879528249296, 4.714798370235959, 6.1827481709002825, 4.535743653772277, 4.849245014266849, 4.507821072173681, 7.167099217362901, 4.523725242187399, 7.492717906749569, 4.366702293659084, 10.621957608620885, 3.8922915999189076, 6.940050574265407, 3.8054490368687706, 20.002736597349447, 12.608064070743946, 6.4261550737196735, 12.973849948433397, 3.81763023871588, 4.579211308475125, 8.017931959582732, 4.758507892327098, 6.2798165108781845, 7.3604062665852235, 4.617255313830386, 6.333988187997394, 3.8362517915611445, 4.788385649090258, 7.7995966173534, 4.342878748321515, 5.606745024564772, 3.9840646881637727, 4.815499368957855, 5.246201928211123, 4.289224515277654, 5.663411273391354, 8.480100521656224, 5.071252735607, 5.160127213764547, 4.53624053244735, 10.58681619345704, 5.209329932522391, 5.369305444705475, 4.173447549846968, 4.038379326479908, 18.458799366894336, 7.01827369872429, 31.089323285588268, 3.7926589258484737, 4.673081241888267, 5.379553503435119, 5.060093679521548, 4.574115291095061, 10.745941991778293, 4.742908808649098, 3.735449362256459, 6.412221658497908, 3.6629670564529717, 6.778038255288373, 4.862063374872832, 9.743430744762845, 7.721993778458546, 12.192976788810702, 8.868736052709298, 3.6291384436701626, 5.94674670050698, 3.288543432187872, 7.411632498495848, 9.12045246633228, 6.659162228044054, 4.115906216748908, 24.21532870917519, 3.951975547687561, 5.74539973857174, 8.429737884798515, 6.006669802900052, 4.187970190313094, 6.08889093690921, 5.376420484795904, 6.3935641213023615, 10.904596132407457, 9.204757842236951, 3.9172711047970594, 5.528851448075698, 13.891355556775126, 4.746953981927097, 3.865065277164962, 5.805905357304684, 6.931340594117201, 12.029615564984518, 8.425371024529602, 5.085184457950282, 3.280609489693107, 8.205840203416141, 6.431918192143181, 5.1438579797414, 6.237966310639673, 4.7217009943862, 6.044580194465542, 8.112861610882568, 4.468604122083538, 4.941038027236907, 8.653643012419089, 6.85859557102304, 5.589608007996393, 5.321441726080196, 3.407308324305435, 4.115526908037804, 5.319017978527499, 4.371558167167956, 8.534515601376901, 7.793445252564381, 13.170515109445383, 12.940050176941833, 13.876621907427365, 4.210255029958452, 4.949766828721009, 8.744333088793061, 5.338644674058964, 5.930230548591903, 4.298277313804668, 5.339493884931879, 5.4377146791473745, 5.218984930986356, 8.423420014688961, 3.0110084263655064, 5.654685177165838, 17.07034085764611, 4.6351295588841, 6.045744136072352, 13.36158620860923, 8.759215900211307, 4.248885286520975, 7.30974021181997, 32.63274189204161, 5.156316528050113, 3.2152397848718364, 5.493284229334652, 6.658415758378075, 9.949410185075989, 12.557949837894705, 14.270039948835203, 96.47247763347765, 4.4546491009725315, 5.32917615657373, 4.076866201063356, 48.057929650991916, 4.214839976030131, 4.053433501905146, 5.660294345311738, 5.367432174303512, 6.960233511726815, 9.922608858470506, 6.213648839420147, 5.814721512943981, 3.5693835177417115, 4.350409998547591, 3.736180684351418, 5.231794568133515, 8.91431915719982, 9.470174401222394, 4.696216490915048, 3.9808891463034386, 5.138015959660937, 5.753859611633492, 5.050128131800863, 5.1235060891007045, 7.7062240703113, 71.48784454292752, 6.825803450636586, 5.100129220835478, 10.925549297112228, 38.12541664137584, 5.449964011118487, 5.3063753492859576, 4.6111919923762965, 16.483474089218557, 4.893046658787131, 5.87044342679265, 14.078419470957442, 6.692102532227791, 3.9990680915229064, 4.37574441769043, 6.926845212947712, 8.385377026131087, 5.880953043258881, 3.8110233866388024, 6.662585556216499, 10.3619983497534, 4.1628384509555945, 11.457539470274272, 28.74406940473319, 4.635177899331946, 5.254809065853005, 5.721574647686535, 8.017944633481154, 4.325918718994144, 13.460829506376832, 4.633505602214586, 8.693285724460967, 6.174374616296545, 8.448419203654886, 8.010910774984154, 7.1421747626892325, 4.705500900602683, 4.843092735462783, 4.54363217387585, 4.582397111947013, 9.382505146080929, 6.0759973743049445, 16.5515373470651, 15.288657637130626, 4.486265478458969, 4.862151021455249, 4.897859905334749, 5.431506975610722, 11.533116238931333, 3.666482573822144, 9.191574166403944, 3.7886896922061744, 6.613417574053774, 4.4631429469123844, 4.678086087873755, 6.862152225472449, 18.421655949072548, 5.07356880442428, 5.016872471168126, 4.664865423562431, 4.920880840924658, 7.738996946616494, 12.027150039407031, 5.648425493558797, 14.548022686188835, 18.1697463147409, 9.091437380847163, 3.7965075426581287, 5.19359377289507, 4.983347581840493, 5.022134110728351, 4.445498014852892, 8.680529108879307, 4.961389181595413, 6.595963899387285, 5.638385485226645, 8.658172394755681, 8.240082384797514, 4.566208646141089, 5.023432571290552, 5.240936840604281, 5.689323245963404, 8.19835468249718, 5.1558570777971875, 3.8506315877027397, 3.762193812880188, 9.257686879362911, 3.732168077560872, 4.453574547405246, 5.824650497405196, 4.38313720726955, 21.48589025007454, 4.235621940781383, 7.925705465277665, 3.5420255693497635, 5.139841413987035, 4.178271340909672, 30.83129583449978, 7.470639907605776, 6.119095288614959, 4.461094672255623, 5.329738392180714, 10.196535247138582, 6.579685254458529, 12.04773379704316, 4.981008797506586, 7.440865157022765, 10.572615176505991, 4.776204575971024, 3.844241956249167, 7.575950748952726, 16.846836501786374, 22.094932925858664, 4.843832760395906, 15.027926658906145, 8.639954892147877, 8.585711797096746, 15.533737882656224, 7.980053756063187, 6.82459375820547, 7.309205841634009, 6.838541069804603, 5.200923876418877, 4.636014006111041, 2.5526625191549526, 7.504703714333534, 7.10452098214158, 3.7750078401702827, 5.010918743105055, 6.593636676962553, 3.785170967037593, 4.080565576720883, 4.923011123568876, 4.437741203761117, 35.58729442780021, 3.931989409241744, 4.382251528268847, 7.964636688325425, 11.514145804674087, 3.445798139507279, 13.20805836043085, 16.861905242723086, 8.814593175115936, 3.896392969094484, 12.79224812186171, 3.3456327711851186, 5.06889046774407, 8.19637748494281, 4.270746491008874, 4.4445793527267154, 3.694935603972859, 15.347315564003553, 20.377787974701786, 9.438302728175412, 8.854074122627217, 5.513549449515017, 9.518138007551933, 5.416236021482268, 17.83675358714541, 4.693326730433356, 5.719923773849992, 6.9959841397489235, 7.5484651695100995, 4.138223177250136, 5.9703640899850345, 6.265982512558192, 3.346046515467288, 6.5728485789935895, 6.958124879801262, 3.0151226623005303, 7.053528424914303, 6.52032465676714, 3.700722746283858, 5.84479369466134, 5.384910186842543, 4.594555668911704, 89.32372979797982, 7.3184630542856155, 7.0826346582337605, 5.268022394952462, 53.81057865818388, 7.987862588992585, 4.412528567818481, 5.423719897378626, 6.524999786626248, 11.898727155120145, 4.757906126296604, 8.203651948192617, 12.337721955671459, 7.750752672183431, 6.698997972003267, 18.80425671624694, 11.069676907678167, 5.493928476417855, 4.408443853041393, 4.997196853630912, 5.865467748429236, 4.274692409823381, 5.467460556619783, 5.714741005345589, 6.284847000006847, 7.504307218645388, 6.075751790782945, 5.691890431818707, 7.494434090915378, 7.988721670790352, 8.824553424416592, 3.920469412050295, 4.197949941923195, 6.617548121873491, 7.276486726927269, 106.24683783173353, 3.5891690056591337, 5.17529283283749, 5.69073562392182, 74.0923241466136, 4.31415127282138, 18.331079593072953, 4.884144118999509, 4.3431219780202595, 6.707639548174727, 4.286779978469495, 3.375343433936151, 4.444215372844148, 2.8991830236508673, 6.491415546579535, 4.736286076603143, 14.448132865952553, 4.708927223752809, 6.061057335153116, 3.802702841750057, 5.911293668565118, 10.097951139099003, 4.711973927040004, 6.712553459192512, 4.983884163967108, 4.123336896511393, 4.4746077369970765, 8.870701146545013, 5.102364124225052, 6.238455479805944, 6.604833668846406, 6.851027321042884, 5.414851570282144, 6.132331500484442, 5.792227881349751, 10.383213680817855, 4.586490470415602, 4.588039023927166, 7.366478402006874, 5.319050140142637, 4.881157575928772, 4.418079002117587, 5.2751736414096495, 3.1512106434078455, 12.85589105193198, 4.473216179632033, 5.029226226138273, 4.130620564768121, 3.1296011181659624, 7.495322716249779, 5.0616695521133614, 3.8240312811561066, 4.539220353793917, 20.878494957389343, 4.341434624731889, 5.663774039095819, 4.971268190988804, 4.454873646628871, 7.133919914293835, 4.3247519469400295, 4.078670252765944, 11.392840777507866, 5.1785573286172815, 3.6531664491514673, 9.702959925220206, 4.253151331463266, 6.052924680837613, 5.514666049286846, 4.088058245820178, 5.178157891208398, 4.071490397210668, 4.380542442191832, 5.304980445599756, 4.748449510668847, 4.6087084506889795, 4.845283853934818, 5.232120277655134, 4.942451544284616, 3.8114406261204437, 6.47061152474121, 6.10287732384041, 4.7421062116282435, 3.7418445213672764, 4.672418543037096, 5.652149197833138, 3.819485988434009, 7.226234281232544, 12.898882968896372, 3.389469928474437, 5.208582299929198, 4.37347058472928, 3.070137165380015, 5.468294140409445, 6.484221858881405, 8.383541645711917, 7.494251500443652, 4.247053544710369, 3.4247638761383006, 3.94025299343362, 10.982276741994422, 7.400441784066865, 4.756987414628638, 5.744419358924994, 4.559860932386488, 6.291628903592943, 7.592068390793693, 4.551027462674331, 5.541364972994601, 4.647094506209214, 3.935881926604759, 3.890443257792303, 10.28910987676883, 8.93890139903397, 5.064015105199889, 3.3172598216100484, 4.1332652973098565, 3.9122253610391846, 8.169228036820567, 5.663687420287502, 4.682269201610077, 5.146887174733895, 5.562195278346267, 6.558643746025055, 3.426451247249198, 5.037236039224802, 5.354866938672836, 5.911013947393742, 3.713013202719885, 5.041145523001034, 6.066281513917537, 4.726193639646821, 5.29454504482428, 3.0357904616653415, 3.8552864093591532, 5.129494493390832, 7.100354763100173, 4.13637374114932, 4.091764492762668, 8.046202815190185, 4.389489283929181, 7.233481715497053, 4.830340833444482, 3.700334878569339, 4.7447342565937625, 7.438086433530066, 4.2645690091195005, 4.450526861031847, 5.15409992945452, 4.529839652907426, 11.396014556411922, 6.935017118348567, 4.666557859319071, 5.71820065577343, 4.1389015257098904, 3.8521951359801188, 7.414426756180776, 5.5293306360535714, 5.109297313674496, 3.8512496566712016, 4.170284639853617, 4.485310252987355, 3.923376333439818, 14.781754185451081, 17.07818954695582, 5.891850827581667, 7.662196323862342, 3.9921504279160307, 17.530625493919285, 6.255460169044325, 15.154404354080242, 5.032593085373171, 9.012802943992801, 4.379994929544328, 4.010316403188316, 6.118614854775042, 10.206521785948357, 5.169978380181049, 6.2732290923958205, 5.997743753781235, 8.675525763149992, 6.80000471825454, 3.336519832081901, 3.6245429943139618, 4.351133256180397, 3.98855353835253, 5.540531238429681, 4.898114156544732, 3.3909106632763764, 6.724361925869456, 9.280109744453908, 90.98158394383394, 3.5435526494303717, 6.238779203315486, 7.154373895817096, 51.96964146147972, 6.455506249527327, 6.060167910186619, 9.672663082836667, 7.578215806109628, 10.345417648108997, 5.157577358009241, 68.67602107833686, 4.596868983150261, 5.289617753948291, 4.267092636195443, 53.31936804670552, 4.346481549904992, 5.704993000443485, 4.9447038101964, 6.273575022075576, 12.815555907433415, 9.878782935949957, 5.442716075069811, 4.302360175781767, 6.773115692142414, 12.329037285485686, 9.409616426007991, 12.485208744564904, 5.96139923693845, 9.03276465517973, 3.6363921240025596, 11.137802801386618, 5.343887113514807, 3.7509485329042493, 6.586234043379925, 3.440946510791815, 4.784711601478, 10.35266818732416, 6.665347414405268, 14.945789119274226, 4.359410674061038, 4.2441757961924615, 4.022063862654319, 5.243362805735359, 4.357364800738818, 5.985273142488592, 5.517780793492746, 4.61296417193103, 5.572827416846629, 5.694451086003136, 6.341996351625966, 5.446074726609395, 8.500301393046556, 13.03329274744092, 11.496410179907038, 4.204502406661319, 15.082194518253692, 5.463190655673827, 5.864543949702261, 4.401393573178707, 4.01559714460999, 6.469176246357146, 7.102570377160952, 4.507245566323382, 5.67774429669077, 5.535460114473451, 8.402005779401476, 4.549831464332064, 5.204590849354795, 7.86586866865239, 4.473354382368581, 7.718949212155101, 3.992178266079432, 4.553065926045751, 4.489391642790594, 4.119201351721222, 5.070552336715513, 3.6940571094273613, 5.103685581368194, 5.629042626106282, 4.827201955213366, 6.357577613410335, 5.618315862429423, 3.8283524715852297, 4.493340644174309, 7.933194682855006, 5.349495458346115, 5.002451111719425, 6.6034694351283445, 3.752872117729314, 5.0809557757556165, 5.490364553729335, 7.0488714068475335, 3.500272992086024, 4.594350314047062, 10.064148313290252, 4.395987717469432, 8.018787546387507, 4.999416695911521, 5.457312234067203, 20.036073569706858, 7.0451121257428175, 15.735689052241797, 5.431357858327, 7.356403732198251, 4.8735780340207056, 6.458713345722017, 19.062922482956374, 3.923284203442875, 8.407322659269198, 5.4275323423177735, 7.566951082785211, 3.0605766573099076, 6.313793288754308, 4.374346561063539, 7.653598119248807, 6.26316517224047, 5.5585099151606, 14.660605378142902, 5.48256618384375, 4.224145152240332, 4.823383351186576, 6.267866596109082, 5.8267522910758345, 8.794350005945956, 4.546099958403632, 4.789392605553063, 5.445800730265066, 19.85649132480237, 4.480652110690157, 4.694551331423652, 5.416387084252549, 24.00014885536387, 5.280013322705469, 7.183756362838304, 6.0539170669191185, 6.162627160828433, 8.860593841795659, 3.6508035946834534, 5.536919207616954, 4.229190533569512, 9.593880179909734, 5.393514307700737, 5.298205442213041, 4.221195824073728, 4.319647194151816, 5.935815648366723, 3.937524754872264, 5.2687926114155985, 4.175420514176529, 6.791009954035219, 4.214317412007233, 4.783562559498678, 4.382220636077555, 7.186023709928945, 3.8101691502496147, 4.170050189740205, 4.656222631912055, 5.182360623148151, 3.6704790562491523, 4.704678647174085, 5.423172206561201, 5.4585155278904045, 4.022163627490244, 7.27729592041331, 3.1917806245356735, 5.223467722309978, 54.05799180355065, 8.806076232088042, 5.321424285991631, 7.530577934991345, 4.325440796106714, 4.494142395129428, 4.503712293152162, 4.787721446306103, 4.805335187114755, 5.286394524056076, 4.114565024157908, 4.84634938523383, 8.287898441944941, 3.550966916293093, 4.489734263730584, 4.740123837418329, 4.215939187429979, 7.584062698782617, 6.758790784939823, 3.484655733494167, 5.266119653622785, 4.063540078105357, 3.911872514001788, 6.811297764271617, 7.089170001110997, 6.944550608246189, 11.870103167753333, 7.534969356436415, 95.03692090317092, 3.280283229780598, 6.888340265073104, 4.382451945847729, 16.79981921519696, 22.21617025466301, 8.658456203127592, 66.31422651149816, 7.554545455820509, 6.414425967555687, 5.8397248394077925, 57.17700365137866, 4.850437396270492, 3.3641484472894776, 4.853834239797295, 4.455878927723499, 12.167640252949122, 3.3824276544358236, 10.899007702264312, 4.920564082566869, 7.1933566164809015, 5.0031878394032026, 6.026098185001474, 16.337197033268147, 4.0060566069929155, 5.019364482142843, 4.294086383175312, 6.99424299832918, 5.422639018020572, 9.748197970159408, 5.516794668670503, 5.0351036763950825, 4.756959660313524, 5.009131792778426, 4.711952656506742, 4.0539185412321945, 14.694755432224378, 12.478996429500498, 7.081815331114763, 4.603579218997312, 5.882212096853533, 7.247889453009348, 6.430912837956567, 5.345386910438969, 5.295440426935573, 6.452357458557856, 5.2182439500746245, 7.918400871457242, 3.3909678743246285, 6.814595197874945, 6.286240359423917, 12.138022049332204, 4.079368658531858, 9.822643017740281, 3.4400144737482936, 8.454516543070689, 4.285817957164266, 5.275949583417665, 19.158778408130754, 3.743532936281448, 5.394816600035037, 5.478942168424618, 4.750166564438174, 3.5158941215221975, 22.81217891434468, 4.5404289252186585, 8.84706474396011, 5.269676306156845, 3.4818148218984386, 4.252892557738076, 5.990617372177311, 5.270814317980557, 6.542075480198961, 3.839421349220167, 7.881098371221939, 6.074923673670978, 7.996994826174421, 4.6230999888793765, 4.350915675237615, 4.828605458332533, 3.097526700727491, 3.8373491782390055, 8.896256570217373, 7.91317649118198, 9.742374635484941, 5.913793393796919, 14.367247743791681, 4.451204775308458, 7.22232590686502, 153.2765665771011, 142.6251917562724, 106.57551785714288, 38.35177037084983, 42.15812837120763, 23.89646246763309, 5.8546481851499275, 105.80587229437229, 92.45917452186059, 3.050450196504593, 71.60443894993895, 76.05857395382402, 48.67401159963142] hash_total = [0.0, 1.0000000000000007, 1.370000000000001, 1.480000000000001, 1.5400000000000005, 1.5150000000000006, 1.5450000000000008, 1.9283333333333346, 2.6275, 2.3708333333333322, 4.436833333333331, 2.5891666666666655, 2.345166666666666, 2.0541666666666663, 2.887666666666665, 3.0416190476190454, 3.335928571428569, 3.13297619047619, 2.789976190476189, 2.6104285714285713, 4.321916666666667, 3.3618095238095216, 3.0660555555555544, 3.046063492063491, 3.7963769841269843, 3.136785714285711, 3.6055981240981234, 2.898527639027639, 3.316326118326118, 5.345642857142855, 2.377603701853701, 5.5427561327561286, 2.7614300976800963, 4.891527777777778, 3.128548733129614, 4.92867496392496, 4.770721819846819, 4.519309357309355, 3.6516469261732394, 4.63085187035187, 3.0794931179931164, 2.617604150751208, 3.2066953185703175, 5.091088516746408, 2.6908068043068027, 4.347160760807816, 3.8107554896794027, 5.179540200138026, 3.3254698471463175, 3.0936308136308135, 2.7597177267177253, 4.430002490629426, 3.5005616157148665, 6.1161093220504945, 2.7428019994281594, 5.216418211905053, 3.272062590187589, 3.8437909590409602, 2.7577418268006504, 3.5392025818384503, 7.296163856568271, 7.220718116034292, 4.0377045671219065, 5.449168467752189, 3.184595178063943, 4.997976546114704, 5.269072966961923, 3.740358318968612, 4.628531198686372, 5.971318620992534, 6.879275242280818, 4.8046163478017005, 3.8574880118555375, 3.341905969597997, 5.371752898572017, 5.779727022994206, 5.347512574382137, 4.173584424633336, 4.695841497246875, 4.453745412818007, 5.340867946381103, 5.345200098210965, 6.578836985691202, 4.308112807943691, 5.946055363219156, 3.15356547064047, 4.338007105874399, 3.0486007656161136, 55.680031746031766, 3.345044424796398, 2.8817170932167158, 3.8318769761059306, 29.750252062550974, 3.912754125447035, 3.712328218255384, 6.078671820955102, 4.593785282205062, 32.605773448773455, 4.524485792562566, 6.5172087133275864, 29.829859279609288, 15.813620668284461, 26.616475930931802, 3.446981501157077, 5.34559567150743, 17.853489329384068, 29.01935155122656, 17.39361060508119, 3.6011181988507883, 17.24020196537881, 14.600713847555951, 3.4344154940246456, 5.112650034688494, 28.510584665334676, 23.301322982572977, 27.361794670607175, 5.756550957737914, 4.944926630603637, 17.112726529026535, 5.447868409368411, 15.660429194726541, 11.017437099546134, 3.6587961829414657, 20.114800434644476, 7.318447663447659, 7.149026994083102, 10.244183318446915, 11.089980800841243, 18.03152468542627, 19.84193617575502, 4.602386796182308, 11.759328516905986, 3.456858028045741, 5.339943957716154, 3.622143311031125, 4.10047082917083, 6.947706017672773, 2.89044004656924, 4.8507075477885815, 4.203221775265099, 6.164354545192569, 4.021954052710275, 17.479796320917647, 7.858442436043904, 4.608196276892795, 4.753762280014237, 5.175352552518802, 33.50072208407535, 33.859732854234394, 4.814521169446285, 20.137925663664223, 27.480219504351865, 29.49867861965203, 6.85399068546552, 2.774933753269552, 3.5438718866640033, 7.723537691237746, 13.96513242128645, 3.6691071325383606, 4.466778995450812, 4.196546916538465, 4.5246168285900366, 4.295684852211096, 3.3864602099751058, 5.010407563168896, 6.3697114284248055, 3.6802356870192434, 36.22190476455089, 5.311817170690737, 4.101441978596438, 6.581971338978733, 26.095092566927168, 5.437794870811646, 3.6414734433419533, 3.2513682581356873, 5.248974967082237, 5.526143609949429, 4.120736136959752, 3.6894299241408244, 6.040114280936402, 5.847077030983218, 6.409954164527981, 4.092860200338839, 4.3023643482026355, 3.6333603675983115, 3.525799161276523, 5.347597901625286, 3.5790794215375423, 3.526744829259409, 5.911561200715774, 3.8789691430885567, 4.44996875886121, 4.3188848480746636, 3.6336423075847044, 3.2842547644493543, 4.851637291573674, 4.329119040920045, 3.2388364381193844, 3.418037728642145, 2.7549817240068, 4.258297749962227, 2.7276299660964267, 8.873005844479326, 5.124731414367305, 3.8085879639374536, 5.4346108868570715, 3.828563754904701, 4.2788102435280795, 7.16046246599874, 4.869242980187677, 5.286800829236123, 3.694699130821793, 5.229704113033511, 2.9924794460757678, 4.804161235964438, 4.6319133959603676, 6.936922182127253, 10.258215589598217, 3.4728458083398284, 3.5646972896032434, 5.678827453650639, 4.239343137840533, 4.041486363033127, 3.9847149776649538, 3.290269685892484, 6.194987127666591, 9.570265003209308, 4.889929007951815, 3.8480749721757443, 12.797580468934886, 6.866735014269158, 3.834316024276235, 3.195395397906302, 4.2644815520765915, 5.842922260721511, 2.9466675010333447, 4.583710931773336, 5.6109644968704195, 6.120615622904864, 3.027295976524202, 6.494514396866862, 2.9001390052679916, 4.2771731980299315, 6.14850173583913, 4.139811117360308, 4.253711206118185, 3.4569419186393153, 4.737197990292212, 4.726963082009917, 10.603573092731274, 6.36647672822481, 4.700024159928488, 4.572963393341579, 6.774468622490044, 6.073102715211463, 4.67601732219726, 5.912915443144219, 3.9278442412343653, 4.737408293615949, 4.462808870699439, 7.001330203459879, 3.721745476657147, 15.678806580459934, 3.4960323986301596, 6.02559442165706, 6.053541944357682, 4.0023120265136845, 4.595141095397793, 5.107577808778385, 4.329189906482331, 6.793055190039062, 2.7935224362162985, 5.542319873291132, 11.145571210190795, 3.90821505834543, 9.917700798039109, 5.347142849375628, 5.9777261073187065, 4.165452331280944, 5.295799816448592, 7.045790192467125, 6.603974517998712, 4.162709275443324, 11.974491427064859, 5.137688523564575, 4.655118812349199, 4.913187657394458, 3.32385088102379, 48.34320237744516, 6.2048949870398, 7.045804924230284, 4.204907775171661, 14.958632945677989, 3.9346151463059353, 8.363089858064274, 13.92104731927803, 6.4949914750655, 3.844515983249122, 3.6728702475745503, 4.435206893084193, 6.347260847555153, 5.305730336123152, 4.579898796434006, 5.960849180786521, 4.511321735376219, 9.255241895729629, 7.312844194155281, 12.18619191520712, 6.249220565892574, 6.478348129262939, 5.528169473926321, 5.203972513643349, 10.993169623441927, 5.832821794857073, 3.641885701269975, 10.252885173629151, 7.01418301261511, 2.969084025530879, 4.562532374477739, 9.692820210975272, 4.115537013929998, 19.412608920551918, 4.011890810257433, 4.682626401077979, 4.726089121172255, 5.1469508857126804, 9.72305400282241, 4.34073572304049, 5.72300559173256, 6.130884034150061, 10.170063534387005, 5.161735805165327, 4.52635925538217, 12.847627418236872, 256.00000000000017, 206.60333333333364, 173.45000000000016, 189.01499999999996, 142.3478333333333, 161.8728333333333, 95.4618333333333, 107.06003623188408, 112.66694047619045, 89.82233333333336, 85.21278571428569, 116.38327813852813, 82.58558838383836, 94.2065235042735, 97.84561202686209, 69.1951612831613, 45.9307011044511, 78.69003626928625, 54.319138320013316, 55.02407005168032, 60.33871499415616, 47.24183176034494, 60.43372064863239, 56.8904927918688, 48.35422062376048, 35.14489440938041, 59.1210749042624, 50.87443496304175, 79.00043656699448, 47.683756708428184, 57.95635194117699, 43.790416732054254, 48.04163357662139, 48.624886367475554, 45.20110705072875, 42.94233190738644, 33.80064376496544, 27.028638697082837, 49.11952914749669, 24.54271056600699, 43.20164763427416, 36.23512917133807, 22.32940478064256, 33.70623194282591, 49.09644640698212, 43.24190004413066, 25.30534947176471, 71.69365946472345, 26.624910456756858, 23.832067024218794, 23.738683244971146, 30.41995517747168, 20.62962736005726, 78.27540139766847, 18.178889098697635, 51.633368095449036, 53.39163023610123, 48.435073755391834, 31.70642333352148, 17.380023788154762, 24.502663696533656, 35.084277719423646, 20.372545261367755, 18.740446140633583, 13.895596080175165, 23.38809231909508, 22.525589156710396, 15.570400817636317, 33.63387773283659, 21.179010234032223, 44.62096338294047, 15.647453411639155, 9.990425075744467, 20.038917749820335, 50.37810222769657, 25.352745070499974, 17.130067366465465, 29.466511279418544, 24.311717473872932, 18.50742502982995, 25.69091894475654, 13.81675887892718, 84.57528307216303, 33.20869029111403, 34.04531251187813, 24.199478026154306, 15.73940163541811, 39.55697027841076, 13.288827600095798, 19.244020247408205, 16.89203108363686, 13.587053481837527, 14.888557827724625, 8.0156621640645, 16.62222633491103, 11.334914126462301, 14.841287905351848, 8.594662785251284, 17.809784677155402, 27.203402211955794, 10.410479287020058, 20.089683012594467, 22.082046960779664, 11.404345123174004, 13.126248218652846, 8.337339146088025, 15.618139063552912, 10.288512070114336, 28.991959191696175, 10.404020381430316, 16.936247041378152, 8.670081207251055, 9.594434050070955, 16.42933629547147, 14.851434023097848, 19.96846761732323, 10.297930092017028, 53.84387718584273, 7.886537925605216, 22.770360287111853, 14.882486598719913, 13.839518007851325, 8.718690322505438, 16.328833796498603, 8.907139816034768, 12.503438931576332, 13.59024669921626, 21.301715036641962, 28.250217019652258, 17.392989984450164, 13.38232450288639, 9.463761154112202, 17.649868921752443, 5.188432714288377, 12.653304567618072, 18.795831373132412, 7.397639416645063, 17.590149494689097, 14.683725723787177, 6.916155737911229, 6.444824630018432, 89.95999618473896, 5.306602966633537, 10.505985956572157, 8.265974250108153, 4.752938683423392, 3.6228163302458705, 3.5518858525156163, 3.837889991373686, 10.293663555685617, 6.1751189865653915, 7.842416670824878, 4.675004831576213, 2.5298732491358717, 3.7535837149666236, 5.302180514136674, 5.38909239586956, 3.6526612614529066, 3.2617458125938374, 12.207637460827783, 9.576619743864002, 3.628619726033935, 5.999246225910309, 4.478414177708443, 47.82661904761904, 3.38820539347084, 4.5815661975569855, 3.7060557873499054, 38.23304722401779, 5.682986580611023, 8.405750199839478, 7.514439967737497, 6.350069399807935, 5.176205221927073, 8.062260159401397, 3.6829494376786487, 7.174294327033255, 3.4273226719745677, 8.804948199838297, 7.073814179229044, 7.715857059953725, 3.984036834510519, 6.023444435273737, 6.665973980139616, 5.979913184682535, 7.750364691229752, 4.393229810500844, 6.508401079252702, 4.596190757332169, 21.917481949629327, 5.4567491009377616, 22.538919415194123, 4.079561722956395, 5.230299877779971, 19.889418185760583, 5.061170122951232, 5.395844021402013, 3.0956135420696786, 6.266333172608005, 4.001268974297183, 3.4953870054952145, 9.102869479067545, 17.329446698081764, 4.814283407066452, 6.461083009775159, 4.641459949873304, 9.100701508494344, 4.3736697364025305, 4.022239817182738, 5.686152171450339, 6.123619735723342, 5.461840979860761, 4.575998364868959, 12.842423715428005, 5.276137795308757, 4.158697578780757, 4.295014585277955, 5.77085241912613, 3.5628194943719813, 4.187200399343336, 13.983498817230297, 4.083027079136625, 5.16219510000041, 4.781558978734831, 3.6723243760115487, 6.359837636909196, 3.4993147230449853, 5.590087070399095, 6.897926215252303, 4.757189672873912, 4.446342995588054, 4.441515544288207, 4.942140970942722, 35.44342986467921, 4.998921499381251, 10.370423659021908, 3.804046660927447, 22.525540293040297, 5.1152273172530744, 4.3621283528562955, 6.883927686862568, 5.130721610500324, 42.671852130325796, 3.4122222525644887, 4.706243836694735, 5.3801052437398, 13.506814249273184, 7.836259759041777, 10.49480924931401, 4.320942566519635, 15.476265831476184, 5.698813640263034, 6.129510239760237, 8.069742280380433, 3.9599112705096657, 6.453447852700025, 7.055306133081075, 7.3720857172472325, 7.3637040005368055, 6.882253522054403, 6.694117987535629, 4.240118055675241, 4.256359138003636, 8.062573851039774, 3.067837552956854, 4.320422994421556, 12.060789761901372, 3.44734424721506, 3.6683021367821396, 6.331045948639088, 2.728672169290717, 5.060517695033613, 3.768295549555026, 7.995517245936932, 10.014788192902445, 5.183106110636513, 6.569656301962519, 5.061565209087587, 6.866831903989197, 9.10686280948378, 8.119892039502993, 5.545161439702863, 6.464989848283602, 8.399691404860462, 3.5972933493192283, 3.7432750011641103, 5.129048008896491, 4.794537773694604, 3.13699083420132, 5.943789710253744, 19.88966596435202, 3.796608753802116, 6.909604558351847, 3.18740674962348, 2.984326146855458, 6.425435193935855, 5.789343880196343, 8.390353176744144, 4.994333002300126, 6.053990155312521, 15.583647274789103, 4.2236817768871635, 5.5907680139458416, 9.987760633443312, 4.484258958316696, 4.733549663193328, 5.076770160000369, 3.966232713933023, 4.297286663670954, 4.041770760639577, 9.702697717859483, 10.114113608150591, 3.7884739257578244, 4.876675276767032, 4.876442389039969, 5.443860989563759, 7.934715403532671, 6.848369249343281, 69.69566783543257, 4.451195155789844, 5.8320990274738245, 3.8225967304778865, 31.67483871239641, 5.631409801516175, 2.6774410263035278, 4.3522915207444415, 6.728306132066129, 7.266739054367251, 4.685138318901717, 3.552499270220073, 6.025940459970185, 2.9424031285208416, 3.551475749789613, 3.276524230496021, 7.331556469409709, 4.171156700953663, 4.187346753522795, 3.084871882049099, 4.260468026131223, 4.340730338667255, 5.660504891428682, 6.146334007483103, 3.1543491511462047, 3.8245951993995306, 4.27662949046205, 5.181996233834794, 6.107927791203277, 3.5862976644278164, 5.98396341530145, 3.127451249928977, 4.637029399145075, 3.8736641787885353, 6.497628092671161, 6.588205098802152, 13.952642085192172, 4.555666853574389, 5.239151514136963, 4.026075679631959, 4.0261277525867225, 6.495141228501427, 3.927841183175814, 3.1478914592796126, 4.56276558970257, 4.655820023275554, 4.492343798714695, 3.8737285283299308, 8.641958369108583, 3.7745315272968427, 3.5086048425454828, 3.1102558906893383, 7.220768678169501, 4.910007861254338, 13.157959892068359, 3.4185065446925336, 3.9787334162411567, 13.724860629033818, 4.0103763958663325, 2.6170190725179223, 5.031825382617378, 4.547090413178191, 6.568084241586703, 3.813607161583265, 3.7114222996590254, 12.499371801938125, 7.1561543911983225, 4.486373458487356, 3.045015263003888, 7.310697394041053, 7.577400315092797, 8.334914874541022, 10.553584679296728, 14.710373956650969, 5.8560055105888, 7.527950516286462, 5.528693996383563, 10.508229121257711, 3.1428009452109587, 3.9831739171266842, 6.220450950021309, 6.736380256972243, 6.652295332073811, 6.456076379618568, 4.695412258781951, 4.696029325447591, 4.536196031778883, 6.028537577285266, 4.872823254995748, 4.981787902575128, 7.5100928422389925, 3.1758556911896743, 4.573618639443587, 7.4583680738603535, 3.3862787059683788, 3.9306613961239343, 3.9088131911338873, 5.64700616038372, 3.680134138450972, 5.061450196976852, 8.29142415391136, 6.1472658873252835, 9.781731833891781, 3.526837235443678, 4.747605028507521, 4.350241282721064, 6.854911863247151, 3.513980531485211, 2.9759813372094266, 3.848659360571672, 7.850726305049896, 20.2991216591771, 4.448635584091286, 5.381649354464277, 5.981904310501906, 5.222604305910701, 4.402814997100649, 7.187051970060694, 3.963098275402184, 3.5957869603387373, 6.873660218275245, 8.411280468568393, 6.5461698488375974, 4.128991603926784, 5.101001822369728, 4.930960932709185, 5.876846810677089, 3.7535102252279895, 13.962944719007956, 6.1050212974795715, 3.6884127893585874, 4.43584267287276, 4.322736502293988, 36.11816632366736, 4.325502362043059, 4.950054966219912, 7.151150861390332, 17.283052773770287, 10.443726720870728, 5.226291381459381, 3.9480875826063118, 3.787560456289948, 3.9645631463936906, 5.957233283274457, 5.16996612683911, 5.407538867698903, 4.541603815727541, 5.729777348384016, 7.399371236220614, 4.939299358671694, 3.9330108787590685, 3.569777284883416, 9.735944822932858, 4.588543904672138, 4.1722121397259295, 99.26132305496438, 3.937956876420951, 5.605274392020021, 4.711369803634715, 46.13735164895304, 4.872635166850594, 4.187942157842644, 3.049395633644281, 6.398821391127863, 4.222453500657748, 6.529875592962625, 4.654894775429039, 20.088219169609552, 10.84890005483155, 3.896464563715543, 5.928450000959421, 14.127810871026766, 22.513873053313834, 4.561604239071968, 14.38520246081283, 6.177264413573306, 11.740774493450216, 5.462799676127402, 5.728231376481865, 5.193167354268336, 3.9755308652220394, 7.659524558398329, 4.199003314968515, 3.5553518480098605, 92.42705468866129, 5.312275558164018, 5.227823904337602, 6.364804848334145, 45.25516246601437, 3.1150790852627925, 4.8256617651930585, 5.90858656354247, 6.836282647304256, 8.029886033239258, 4.769285489393938, 4.085643118236332, 5.3799543256053965, 8.396422896718505, 5.651121940345203, 3.3965020244503115, 4.488716829465371, 8.685476286687814, 18.02420737623831, 4.7439058875746705, 4.317629531057453, 8.192161412199157, 4.263324786064531, 4.949295981477808, 4.244549199905214, 3.4331295811245464, 4.654131715034195, 6.88487935035846, 7.590644287786345, 6.3567291143737075, 8.193533237981997, 4.919037137410376, 4.592715734065193, 6.899807402920119, 6.222640745037287, 3.2824245585832417, 2.6336521598182214, 4.356346610061301, 5.456647972880106, 18.833514964166945, 2.757035908037126, 9.855498248722755, 3.8095409271571645, 10.938811639700093, 3.9982489945473425, 5.608572408073678, 15.02067289209583, 3.7637471296971965, 5.253773160701345, 4.67908797337093, 5.702393798483723, 4.36576132728234, 5.616161256964726, 4.846402861593178, 33.88330685979818, 8.02804883139122, 17.740647992316944, 4.344454881543151, 9.948507400837709, 10.93546303098698, 12.893043564054846, 4.390677009260528, 7.82240612033427, 3.4430985626280517, 11.066831068784905, 5.241480806594505, 7.6515799029155644, 8.207376900343496, 6.0359189682257455, 5.989294065228926, 5.265435787115834, 16.630691556278816, 3.2108509513297783, 6.115327883334297, 3.8900445267670016, 20.146703073224554, 13.289535794289343, 5.613912666194342, 4.904351336805561, 6.940933983725276, 7.377922006210218, 19.05931586594452, 4.606435005593459, 9.767593704326465, 14.821091111558797, 4.137704725169842, 7.214790707896992, 21.261092824290735, 4.125311135616368, 4.2734249020877275, 4.866406088502753, 5.26006244682358, 24.148545563831238, 6.446244245061676, 5.958345710325573, 5.016253857196133, 3.119643703969434, 11.89580847786905, 4.554196052071564, 3.4720881861872583, 9.560006506467793, 3.9379441419203904, 6.907871629354886, 5.0567942786003615, 8.483486020310268, 4.831252281020245, 3.875378410394877, 11.769055947603283, 6.354553744940638, 4.838910989288118, 17.5496031534373, 5.994388401743654, 3.472355030441222, 6.351187032683942, 5.369454079490605, 11.868449183044353, 7.832136817485156, 3.4254248054910654, 7.613634153101604, 18.849964089910614, 26.201565960321886, 6.25863024352835, 9.805596967242385, 7.58192646903941, 7.4704699665768795, 11.532172024948622, 4.267587278723473, 10.379244631678036, 5.310446445659429, 6.789628197755238, 13.661087573212022, 13.355214063619469, 5.460171068970346, 7.474152097033268, 10.632439402399163, 4.751425559905089, 5.573599815159975, 4.588477508178735, 4.954787036552212, 17.099140468691925, 4.857234050652183, 6.022188144718213, 4.213370397221638, 5.233134782240719, 12.224154730453366, 3.708863003743581, 18.57748680825134, 5.473604887298035, 3.9827518036113583, 6.204918622660923, 14.919116694148919, 102.05367348671625, 6.825680722593352, 5.390881068622671, 7.62104519893122, 57.53412363458358, 8.701282351043808, 14.171277348436512, 3.6403085640374666, 25.613157806465722, 3.780985214830239, 8.963280411782877, 8.005083491829893, 29.505700079203564, 8.512021685049302, 4.973477887615543, 6.4729138015043235, 6.060828590819323, 5.282039416385146, 7.840982794326656, 4.50887321133584, 16.057263935294095, 7.667785756450459, 14.064612379605279, 14.902602444464291, 5.376693585095885, 15.287070199622104, 9.247613123290629, 9.29315016032691, 4.408476695210489, 5.65546299733656, 5.820931845403107, 16.865842787431014, 18.06565902472134, 7.746742699527189, 4.552997902051323, 5.57732590212564, 9.235726067711107, 4.597612870754241, 7.5725698423740955, 5.591734090892379, 5.793448304859187, 15.27201455246912, 4.854337045873139, 19.502173747621505, 4.237021229557576, 31.035035951011697, 3.888384379782468, 5.330468750783977, 6.302177210048079, 11.579319846917898, 17.316735354546786, 97.7236661627846, 12.122504075765052, 7.400152487080239, 9.294712920038851, 58.22042094715605, 11.537978270860588, 6.440003981963902, 8.291681648500594, 8.778467631651948, 4.125408732095308, 10.068323351377893, 11.130583887367942, 4.851232971794322, 7.968985577588044, 5.245029325225454, 4.533606048623678, 7.3792056403953, 10.967367157297867, 8.229497925172138, 17.263487327635147, 2.8137626251629655, 4.73258070605688, 17.77215887818718, 7.333224112817215, 12.717329079989225, 10.688201994223615, 4.259880717722104, 8.365080846677785, 5.186442597217552, 4.730261913888361, 4.859887677130571, 5.114492330636918, 4.891838226149551, 5.778042639269554, 8.298916031369544, 21.959295507316142, 9.94340075741442, 5.856220112505582, 28.33886876242726, 4.390772102904992, 3.895897027200591, 16.364457618533848, 5.418554978578287, 26.942301289918582, 5.93232600980445, 6.853853155820662, 6.876204780824719, 5.8313973198597875, 6.1022908566014875, 17.24039441442388, 3.882493676393313, 13.14245364132226, 7.115615994980958, 7.138959579858204, 3.5113786468928287, 6.4674066312380125, 4.741126345646311, 4.736977984763538, 4.166621113394453, 13.42385800449998, 4.396239388165861, 3.9655013502367367, 4.588721833562313, 5.812971293267103, 6.254822507486526, 6.5024398918201785, 4.565409624786817, 4.098308366136023, 5.522148420294746, 5.227262741250819, 4.127652960847887, 3.142174194495657, 4.709687287671841, 4.025166807475409, 3.510912864172782, 5.766589701024391, 4.970157088235254, 3.316228036833793, 4.402237877985659, 4.280569306874725, 3.6304641455795195, 4.2654879134163135, 24.318432441833934, 4.591288233243504, 6.413133292207735, 4.584397166217185, 5.6740721244935495, 3.41376452528423, 3.6515477845036997, 5.636079415915172, 2.8806584736136474, 5.128853124515669, 5.068515973357416, 3.2859267294882746, 4.298781590234928, 4.13908993697116, 6.250822633691704, 3.8511784931355377, 11.029527340330826, 4.604584217829853, 2.405657913964714, 3.8652679126208147, 7.460449680058358, 3.2840128439198724, 4.105877231225552, 4.61213993922648, 2.90759122293461, 4.2554583182743215, 44.84339144567137, 5.506200616943247, 4.287970794641107, 4.684794096126822, 3.2422174880382806, 3.70995620283021, 5.396731612133346, 3.8956632821195276, 3.7867177939921293, 5.444673492616526, 10.489697737417188, 5.113670454369369, 4.0319037695584585, 7.309768116572641, 6.840444895212542, 3.3083322499024654, 4.405267737403501, 5.858645744098564, 3.7686103347482214, 4.484952241393195, 3.4973898105173085, 5.30609584087853, 14.329204360025495, 4.827580489897377, 4.77175766707501, 4.7963539996221956, 3.4526067582868896, 4.459816131490887, 4.646192277932853, 3.477548066016266, 15.678553782568835, 5.5008151126365545, 5.584668597457272, 5.2219403373190705, 4.815134665329988, 4.0921947572445685, 6.815024462541278, 12.232085427551658, 15.90729687788431, 5.148572028704057, 8.479912265099577, 3.5820329221408516, 6.927788995336828, 15.481987135158736, 8.37135644553301, 4.488881511786259, 4.614286213925998, 6.021751254248534, 12.663085296647795, 3.8880563063338944, 7.624689220380631, 3.5477426906033007, 3.8598978661796908, 15.967586093789878, 4.4640088031594205, 3.5376400554400815, 3.3610887260577162, 4.404287511577387, 3.768712081317265, 4.459268119825021, 3.699281574605993, 62.49823088023086, 4.888568257555104, 5.48240246756454, 3.750071666422767, 39.32923292992607, 8.276239140501744, 2.8301247220975854, 3.6559844642215418, 3.3763808382430014, 7.044081624589563, 7.1742036827339986, 5.480130860513483, 5.832544080704338, 5.469933464067111, 6.955259595387718, 6.621711125141992, 12.348445677974636, 11.375971844177485, 5.506978704677663, 5.682973873132405, 3.5173265791529054, 7.310730915301997, 5.012942838294337, 7.15487343330488, 7.607122734324938, 4.171576137696724, 8.572057688781044, 4.237175726159628, 34.29599407827331, 2.1943905774702035, 9.124358263856246, 3.5053297996976513, 6.689218814339734, 4.878347527661905, 4.4781130290572735, 5.902239561566548, 4.197297880194242, 4.318954385771064, 6.653152341715105, 5.4440673905331165, 15.436848150634605, 7.1933331589047915, 5.935911056448459, 2.71872354410436, 5.327739288386457, 3.8438748417239967, 10.62215856907254, 4.98132123976279, 4.460182388909975, 6.860601131611273, 4.853872347497453, 6.400893876324572, 4.8408659276927795, 9.386110464266483, 4.674058983527797, 4.815540636260423, 4.4218013402548895, 7.279686685317376, 5.048731471775273, 4.303141118348247, 5.788845807967062, 8.214906916851053, 3.643541165786069, 2.95404808460754, 11.540091095162081, 10.214625783914364, 5.122847091060183, 38.230228562383765, 32.546506933371894, 6.982416517721017, 4.437252274084765, 4.259775620799406, 53.22649592076762, 4.216676654571481, 3.862633967756919, 10.361116926699298, 4.528605863828611, 6.4384048025725695, 5.393288553146349, 2.8209255525827457, 8.987794624796493, 3.860501461888144, 5.9369545607184975, 5.22342458420442, 11.603491478272357, 3.7365588617196015, 4.066156546380156, 4.172660093221739, 15.649255457248758, 7.682379672200265, 13.025901955480004, 3.3818369476728143, 9.769270831798, 7.61379971669336, 8.140954046707847, 13.998900111887712, 7.341685469795024, 4.03075501474508, 9.333551674590435, 4.640489442845953, 4.644032463202681, 3.7213811183674164, 4.6431649362149034, 5.250796246357576, 4.549055891520474, 5.8364567924510835, 3.892422197480882, 6.050251309861904, 11.754626929341336, 4.423599594857783, 3.90145791233042, 5.404489275330774, 4.207393009710961, 5.402985440875136, 9.205143648067317, 2.721979110999525, 5.874898255656085, 4.405111093830713, 7.805800662279701, 4.501576221043738, 4.7369219683130614, 4.883838053567372, 4.897873991472897, 6.354126224679604, 3.883849869771697, 4.601955167138035, 11.452688961210407, 4.998362034017084, 4.205751390151167, 3.85172256159781, 7.0256396302182225, 3.8297866687179574, 3.951859634181461, 4.354093848346477, 3.4113905490688032, 3.6379483533893473, 6.146761490762079, 3.7985471443362964, 7.323022683530335, 4.1730595866396065, 3.580198546100938, 5.26987668097862, 4.016789814017285, 5.20297741524512, 5.842393628005731, 5.200044113693369, 4.239512745963366, 3.542584189832903, 4.7694654085602055, 5.053745429741391, 4.620780713981803, 4.980564562241774, 4.4566918285802055, 9.591669529914274, 2.841769997417686, 7.008816956333041, 3.6548828828829123, 3.849892419647106, 5.488099201341627, 2.916226958564236, 2.8337192967851568, 5.98904878835684, 5.306479504195258, 3.96465287251003, 41.81124000538494, 5.262835827235809, 5.2963589048090896, 6.349949730141675, 4.826735039874237, 10.169996564486505, 21.305180362781453, 5.028475219801622, 5.866270769524567, 3.1297213884794908, 10.898671259554321, 5.443555003044572, 9.917442177566903, 4.448923465734941, 3.7699154353650552, 6.022948112456969, 4.55682340254982, 3.7128337176653354, 4.6597725616091505, 5.507647642635927, 7.396519400294355, 9.956735649337979, 4.383625205846445, 6.590859606109844, 7.866471798276061, 6.124986913200773, 5.509584894126776, 4.989652959548868, 6.513819998001558, 4.739144880559427, 8.163177525631813, 8.414452228625313, 4.091240785798429, 6.031672986991259, 3.1070790045777086, 15.474033897599869, 7.517426271614827, 14.234779167676827, 13.380495770545348, 5.5089466271216105, 4.541528165340181, 3.3234602690527986, 3.537894095375288, 7.445221471432106, 7.490622910593649, 4.665934274128824, 6.5054638341037005, 4.887875353323235, 5.774989081669614, 5.084878209107116, 2.6941362284846786, 6.267890114702725, 3.570140518844968, 15.066071636801308, 6.082936984245938, 5.490055174654937, 11.611759010525251, 4.679552378621431, 12.152886603441333, 4.088536861116428, 2.9905486991730235, 4.218101373796461, 3.921099475197462, 4.590987895269859, 5.298755774985243, 3.8190966433425375, 9.480548226500513, 131.59373105111266, 4.245352731110115, 5.188666072088949, 4.123933174108046, 87.52241999125745, 5.294788354982236, 9.211251122615256, 7.639964711756565, 4.371026939380054, 3.9062788746204355, 5.403512534355155, 5.829883511550545, 8.214140967803983, 5.1237158790288655, 6.850599934112565, 8.553541224413632, 5.339672368401139, 5.280029812512434, 4.720740783847467, 7.151140679042664, 3.5692460026843498, 72.10244665571672, 3.7782284198992846, 3.257631155993482, 5.20661669555853, 63.19723868383078, 9.55101964362503, 5.453311247931178, 7.376279300332299, 12.611775500563068, 4.328418135141026, 5.7280664118106985, 4.160804318391321, 3.2392199776614072, 5.419788676376491, 3.8250096592277747, 4.2622752948110465, 6.378180507316691, 4.486356453990332, 4.233814523637621, 7.033420600491364, 2.313753384308622, 5.286334625748784, 4.309233460627237, 3.5927774109811215, 8.421414323858402, 3.796640078658833, 5.869167606916584, 4.827080685106284, 3.9175037644255464, 4.111949635808487, 12.291102047593842, 3.86222075366621, 8.966359491130717, 5.42124381985609, 6.482219031640723, 7.60757447934623, 3.8526101019451304, 11.694828100379016, 5.447362793063194, 5.902953740923306, 4.856357651296925, 15.278873928142444, 5.199413842615459, 6.774970323136335, 3.8792481062630073, 6.1564080896232936, 8.44025258731929, 5.512389590129986, 4.57842509773945, 7.0472841832704995, 5.171502157525633, 8.292887120064982, 4.743250450757501, 7.300397582957623, 5.813019144550904, 5.925828238666093, 8.5286667296458, 4.895156115124268, 16.27475993104781, 5.440867482955448, 8.383876794813395, 4.7452238192395, 10.108963331331296, 5.118371575553545, 9.980422461094216, 12.6267193624127, 6.225576075134423, 5.637487148904361, 9.177911272574779, 10.327267066317992, 10.97361387380749, 4.697808629118397, 3.624756771049135, 5.825214352307738, 10.44912137549208, 5.6449985094732416, 11.85509198747683, 6.062101085589202, 7.777732430715205, 4.6634431638743585, 7.7162106195635936, 3.3644313467359477, 5.626918515286708, 8.368033855836048, 5.731423795179883, 6.876067175977994, 9.465104709523374, 7.1239679147279045, 4.767575127224403, 10.34271086225646, 3.7614674290871646, 4.583223876754537, 3.3750184733220334, 3.980784546336138, 5.945256309706154, 12.705597389556923, 3.9340769649693756, 7.146489320455318, 9.405998662571252, 12.208811509697908, 10.456053276004631, 5.76596722971689, 3.9894609378898633, 9.211337876739483, 7.329606261534579, 5.3370120045552305, 4.699031002775291, 7.204321241606614, 3.9068940209294905, 16.396951107259717, 4.450219416636335, 4.698018691794827, 42.06990323802811, 6.405129324389397, 5.748794011038786, 5.09795740541239, 4.195335514871742, 4.663944745003203, 7.504891454736678, 4.208102465382809, 9.5250212197276, 4.484021987866008, 8.45016904640983, 4.518350639535859, 5.27038544873167, 40.534927347391815, 3.660963393506159, 3.9160221026353117, 8.264051903355158, 6.571357150608214, 3.5647621063662327, 5.07160900900285, 4.006141401060041, 3.302689927025634, 4.167588475731783, 10.093936860304323, 8.68559802547767, 14.427909125138068, 4.490132678233234, 9.798331920748351, 9.841737840342685, 7.2728739798349205, 5.791512500886614, 11.602919890828971, 5.766501495863139, 21.72156279780156, 4.559468287568835, 4.175500195474266, 23.31130511584226, 4.103828833109712, 17.720810080927578, 3.694139180245995, 10.913097215795016, 4.900265868465838, 5.222943418121083, 5.109640673651168, 4.327089923470661, 7.007841431656327, 12.774093490364404, 3.5679851669015097, 5.294336117342144, 5.696206011631795, 4.51273849460311, 7.068168294037622, 3.5406071977616427, 11.874148365073172, 4.1192029034541715, 4.792689799329113, 5.361411620351601, 7.472296761863833, 5.303666541691023, 4.113028296449898, 8.033873993377393, 6.359376343749499, 10.69554330418645, 9.081978536798267, 5.200082077420122, 5.202725389691531, 3.573670726143055, 6.760854933768728, 3.8400790597370573, 9.472461146669525, 7.988844589531036, 5.166338303582664, 8.973374399071105, 3.4146498627978255, 5.470810951401419, 22.2259802518781, 11.078359208010164, 8.308629488845312, 5.646939696612294, 5.043543373632838, 3.8843187203650276, 6.098757671389597, 4.858090119340502, 6.8467460109141935, 4.603781209200034, 96.00624170692434, 7.718097433938, 3.9729139921429426, 6.119316847241977, 65.05857773092718, 63.22244372294371, 7.647860540928002, 8.284220524544097, 8.659030191140667, 51.9528919217575, 3.192360076652562, 4.603383972347622, 6.465074074572228, 6.3447378079996275, 6.940269481685841, 8.726227197394257, 6.480407389359918, 11.71250112252665, 3.5417737840388086, 8.641220596099224, 6.422100057222647, 3.265607816751588, 6.759388361319697, 3.136587980283251, 4.909153542534759, 5.175421238791225, 4.658497283883559, 8.110828801341452, 5.329149419569796, 4.140472386688593, 7.590124886326516, 10.141227946663715, 4.889189805297605, 7.631710824249511, 5.099957739717213, 5.6539647388792575, 4.0678899914981645, 5.428926225773284, 3.7253035378066586, 3.430647957928786, 5.200372635860873, 5.007082043574847, 5.225682452880235, 4.551780702634472, 5.095768982840321, 6.00432054438245, 5.589366103007318, 7.077897768825921, 3.9593967263981744, 4.5395606891855, 3.734771811627123, 4.973523881185686, 5.491631246245759, 12.121074133226315, 7.31839042458422, 4.252450567587272, 11.892353646599343, 2.979253262486367, 8.75097678663233, 4.4015778308768265, 8.327419682565335, 7.09110614668492, 3.55123257251956, 5.204222443356319, 5.936216421288402, 23.305295544691695, 6.312714937616763, 4.0417543901707145, 4.912101488934159, 4.197571714180728, 9.143466555721565, 7.1822457601265, 8.033816593355816, 6.000071151457264, 4.579920314405342, 13.135490183391049, 13.172610529152115, 8.365478257295559, 6.081107395657352, 4.390743652250078, 5.214720021359267, 5.001278158894381, 4.886973030590809, 15.399745102879987, 4.882686357548205, 6.373142982944433, 5.030911788608857, 3.5072929286229484, 6.4957636292989775, 4.539598474931286, 7.283493414529499, 10.721045767391228, 7.913102454540966, 5.53278806663368, 5.301260543756994, 6.8568037139094296, 2.752039387265085, 7.01494094911633, 6.240928086125125, 8.332023405730627, 10.156703931942044, 6.0102601421798605, 5.055206188081637, 5.586269092037571, 5.048509724830527, 6.654258746270198, 3.419504268580273, 4.554322772960764, 7.223818418559933, 5.163158332658719, 6.880207924606838, 3.843815222526138, 5.861940600152432, 4.489159293608596, 3.5722329589962385, 3.5510325342954454, 9.67499643882283, 4.805583755762179, 7.105837743740491, 6.032968745114878, 5.4794538587285375, 5.864655663721316, 7.183662209975655, 6.119344458686845, 20.243645266066434, 6.359542436039817, 6.982163335525998, 3.9257152532884474, 6.170558869424338, 4.731107712181197, 5.1164414144698815, 23.319750041032982, 4.054748063938281, 3.4244213310567604, 5.10626416799627, 3.512311422102732, 6.966975448207064, 5.415640412352574, 4.559851792491192, 13.27231864253539, 7.179911559645389, 5.043302560564653, 20.388293540581568, 5.8706026562661835, 6.660786814068004, 5.942419339825402, 23.3858431066483, 4.585752296113456, 22.98528742070065, 3.8862896380695666, 5.158290564487303, 3.7280972572632334, 2.9458972712434006, 6.395531338202309, 13.60890399704756, 9.079554512406183, 4.858192041955569, 5.403257927532903, 5.287307525625407, 7.210899557313705, 7.2951151492055715, 5.483233029584732, 8.104306764523244, 7.273493648715359, 12.72823065686173, 3.3017387150835225, 4.164243826015761, 3.422720378286983, 11.01029334596668, 4.281087763024371, 8.071536288085529, 5.366323013023987, 3.8257384776828514, 4.834583785517996, 5.123204914861237, 9.030365157207303, 10.265271802172775, 4.082884916753802, 4.4054801434875275, 19.665331293190086, 4.818700942613985, 6.900810523315638, 5.577548457174949, 9.36090639975608, 9.405572927051521, 9.71338404054257, 4.815908323802247, 4.632858540773106, 6.537704509789054, 4.5163954935694255, 7.0285491451840185, 22.462025834836076, 3.8607145222184376, 8.313848093765081, 5.188704739427533, 4.047149619072533, 7.465848368956567, 13.704585680637935, 4.475183489702379, 5.069810005170972, 3.2909067122965405, 42.85868084097638, 3.8824992218445376, 4.565978598535458, 15.208764944017938, 3.79756654967484, 12.187769629203286, 4.896186384304875, 14.65586906220956, 88.99087527207094, 6.206036432998477, 2.98853288230209, 3.8972076840944436, 77.8985664613164, 5.340575965369772, 7.672666545681466, 6.451731364271385, 8.43414976857891, 3.5888417051986052, 6.970916605998342, 89.25170306654127, 5.24131570952794, 4.545980295476669, 4.443652487198706, 70.76748043623041, 6.658750271077607, 3.4257554306588807, 11.820224075988195, 3.5561688354778322, 5.110309901261683, 4.225028731458688, 19.099156319096625, 4.556853514691344, 6.9432079680615875, 5.069820843544164, 7.307037198780643, 5.28551581654005, 8.925045874871731, 15.55229802577759, 3.6856525306998535, 3.368913484237385, 8.617568762254898, 6.50938632553973, 3.120556336673061, 3.432731763672828, 21.05755827815139, 4.880811242988837, 5.620387618576774, 5.63922538956532, 5.038649255061763, 5.090506831711359, 5.433485412583556, 13.978845144665302, 3.5760948080392563, 6.094275097436794, 7.092143363211757, 4.308243660021323, 4.171962630827852, 7.311495568836342, 5.746516805510507, 10.912361364201809, 5.599755340439134, 6.2645732875256845, 5.056471161903876, 7.07230591633663, 4.078568781918347, 12.412162591298666, 11.445338299186057, 7.802842811473111, 4.858485734996276, 4.097023828853436, 4.629436405631504, 6.43849632214457, 4.363767614896927, 6.5547404200047525, 6.848230615680141, 2.70190045419373, 3.997951194069021, 4.848295458471198, 4.206879915684403, 6.521018309851089, 4.978842383826835, 3.80561570043989, 3.693937650187517, 4.17815513832992, 3.633893128764766, 5.256620073926068, 4.9282942741045, 10.797305493052091, 6.429627979128444, 3.798673097526656, 3.53742492050943, 5.157536641787977, 4.125707347246439, 9.076511050165513, 4.169785740658422, 6.239205287662089, 15.009723964653826, 6.6812092448391684, 17.944895987364642, 5.4235269423884365, 7.466008928052885, 5.623557099464735, 4.857587463768638, 4.257230903648065, 14.829669778972338, 3.286547563180595, 4.220859308803869, 6.40358281501158, 4.96307604175722, 4.490492324983599, 5.381763681097021, 14.784463795534597, 9.284703668771314, 10.238913535168276, 6.6848791526073725, 4.4043587802485575, 5.91852011370633, 3.120631283153217, 8.381667603674753, 7.7080553923825805, 6.3107616064218615, 5.057347560803695, 10.932972718798885, 3.992552607117055, 6.2203172520038335, 6.279019162573704, 8.912448640460768, 3.365269822043902, 5.089793896851523, 7.27940144827608, 3.7562736508561154, 28.000564316259474, 24.52189887800224, 6.088332881292748, 7.78954387241658, 6.372164079908193, 4.440632287446253, 9.039782678122315, 7.579755818900054, 4.419159961740572, 11.651867198172768, 5.132862793909565, 9.439037607480072, 6.1837292208077725, 8.279572153038652, 5.325471771460893, 3.723649903762889, 10.041131858386063, 8.485986338894485, 5.298864257216539, 4.778591982037458, 17.43265652811241, 4.049951462630827, 4.678332043943729, 14.311494219701926, 7.792042488787917, 3.7565142311932656, 2.6398113269440833, 5.008698303725858, 5.9308447983139, 4.957516005177335, 9.270650193983732, 14.18811945988825, 8.40353407222558, 7.668418898456487, 9.390597098894826, 3.842920773310571, 5.679796357076892, 19.49159840996966, 4.4324575422770405, 6.976183745476914, 3.9817966277715215, 5.08085910708289, 6.15885056999312, 3.58905711957294, 6.716360912647122, 5.072748546974682, 8.45323338000317, 16.10135518332838, 10.19643250727491, 4.870705129764351, 9.798415861185312, 4.88827792050047, 5.957337160429, 7.550357620952303, 20.92654345219328, 5.548154714200907, 3.1369581942091216, 4.015521766744323, 5.75547266282326, 8.350018029465648, 5.339205651370688, 17.997690573281986, 101.74103030303031, 4.1976015196051275, 7.309726114311267, 6.100844111143235, 41.687435406549625, 7.017490426412561, 4.07549262287961, 9.076406115217326, 5.044534072227583, 13.824923702548714, 8.295126485619546, 6.229638327932235, 10.84677862878515, 4.525871022223804, 8.074281943258926, 4.168498885787336, 5.992895478504521, 3.6433173320627446, 9.609745094347339, 4.600174686513494, 3.5138932091427804, 4.563893693526982, 3.796421191451038, 5.112549383782337, 16.468040730621045, 12.6942502425257, 110.52506652240035, 5.556189446830952, 5.192824422138159, 4.947116773912166, 44.6218759237103, 5.576326293477241, 6.377682842629314, 4.117157560588073, 19.893232066908944, 4.152309265080854, 6.580658362822054, 8.277401603049498, 4.6144632242065216, 5.28564346842367, 5.24698434586251, 4.463097816419789, 4.04297914723992, 4.9293079123009775, 3.8221164850440643, 10.145082821639633, 4.9677077813494614, 4.831740391670801, 7.944837185440968, 11.691100917332568, 6.835843530127028, 8.6767802559385, 4.119527314378831, 10.970125639848149, 3.5785986925202398, 5.919534525269331, 4.997246038027469, 12.140029212390004, 13.098407467194935, 7.178100405283027, 4.511602396615941, 3.972681069243441, 5.454397890610897, 5.234220886752167, 4.844225021442568, 10.22630209361536, 13.667978067777485, 3.7215825613442792, 9.384574302635365, 7.155418877697582, 5.689618647295254, 2.999992927959471, 6.213141719328204, 6.3484486897646955, 10.604959252472096, 4.925915118342775, 5.140211568088658, 3.8056505795363966, 7.49768792504455, 4.898939730092987, 8.94547391611354, 4.7096210889185794, 8.102599913411463, 3.687669959805206, 2.6556883811120646, 5.767741714240629, 5.002847596518113, 5.645947277064139, 14.416605908723346, 5.759299924145805, 8.300718831392524, 8.53781846373953, 4.074919947707334, 2.8273961399962686, 4.091206864365489, 11.36277172877854, 4.69069806063981, 5.503011297192813, 4.169436937792529, 3.227335979709522, 10.927397428988128, 4.651809062350412, 6.211176037265824, 8.202651425644643, 4.55140013939773, 9.276112935862553, 5.5793640821497394, 4.831738821825663, 14.335556364312636, 4.712004413959613, 4.131850094024241, 8.949034427005735, 15.09767539248144, 4.164010107842091, 3.0351288980277173, 3.7635277145792667, 3.9334441347729334, 8.1229969913426, 4.174933364580936, 5.469444242529065, 4.655265407435733, 5.115089494246537, 4.007535387839185, 11.038425542901994, 5.052376649140364, 6.011985646886391, 4.230650474998805, 4.713020261479946, 14.135825727913803, 4.524033167224263, 6.140640957898205, 3.367054764394021, 4.287068656591268, 33.50391164706565, 5.343432514636487, 3.2072694974904623, 9.46351477530971, 25.732486606692383, 6.6559933754946625, 5.326949710270922, 7.700448098163023, 9.623377196222025, 5.290016867006781, 10.318246630593064, 11.461276614000688, 4.899730136709521, 17.243929889510806, 5.7655490003853025, 7.7093964293703285, 6.71122268352426, 2.5904513597126537, 13.880125472166585, 11.93779872188574, 3.400180280000814, 16.709364926945955, 11.670224942230467, 4.184842382679839, 4.578218045197121, 4.582884649021197, 3.565759073710494, 14.524317514839522, 5.503138145637034, 6.238196683461711, 17.37220878781065, 20.434154485381526, 4.566787029804762, 13.975145735053681, 17.913545608559325, 6.3088131710986035, 12.210554128084466, 30.40746068494728, 4.827447692311119, 3.633284278162139, 4.1032110844421315, 3.31797008148174, 6.297678215654514, 3.2712620464394053, 3.709872068504734, 13.873046561745232, 7.323835385770356, 10.267732963177622, 5.524188548523757, 5.252260678752115, 4.010954034334723, 17.849252202690668, 2.717428598022562, 4.845309784015924, 3.588150991968713, 4.062358245225303, 6.5451953011362916, 4.594650998117036, 7.357212954984582, 3.1389851765506864, 8.155599887712313, 7.5305434677793395, 3.562559704028589, 3.8256866984521336, 4.161672991140334, 4.358439659411398, 8.175806749715456, 8.44925733109829, 2.5451409691372886, 124.2448057791355, 6.845275731725891, 10.342140409947344, 10.15561884780337, 46.86358071867744, 8.109758283078275, 4.728823941209188, 6.5954769007178395, 5.545256914810451, 9.85326934406742, 3.2157393937969823, 15.900778423566141, 3.1982417792285345, 4.289854078347183, 5.86527659162743, 11.544927404551617, 16.232418734444074, 3.057898031868858, 4.471957014796953, 5.206936491738273, 5.726270752686892, 5.8858024662886645, 8.990660740619703, 5.500586508383595, 5.264817521065193, 7.22545243886128, 4.265435581878583, 5.024075399314687, 4.382873514107971, 8.054286033925383, 8.365286052084514, 5.386371349005402, 4.84627035084442, 6.86109107089569, 3.9800194154174964, 120.42264703918288, 4.6910315210670435, 3.2779600617017404, 14.77103677143258, 76.04951159951159, 5.59717835438087, 7.208146610489702, 4.115273771682239, 4.921884396557897, 5.944808606025899, 4.195200296705362, 3.670358767437835, 5.145863145184387, 4.920670527026277, 6.279200579818427, 3.1012904123187117, 11.506139651028507, 3.1104296686970043, 6.245975221716039, 3.2316056706776695, 5.10035819455401, 7.53061693883638, 4.036234470283838, 14.563349377517, 5.267779411195879, 7.455462003840974, 4.430637090879873, 7.198560549183444, 5.248775198236952, 3.96895648524596, 3.6584862914483423, 5.650463593927018, 5.859260864850698, 9.108980264210008, 5.18051072642452, 17.305737697529732, 4.799317794891999, 3.1582815182487654, 2.7953608548807933, 7.240296823391461, 2.538957497910281, 6.651304218238559, 3.8882431343575825, 3.4505486491072968, 9.380542240066298, 3.369689205012699, 8.14420812869237, 3.8052677352809234, 3.0425601236589497, 5.702359888527926, 3.745680507246183, 7.0939399596565815, 4.84335022560825, 9.121713443449174, 6.793573370647204, 4.345075986194123, 4.524873022018129, 4.0978728158818996, 5.4709592216601335, 8.338998142586695, 5.264880013842203, 7.77800374494665, 4.711759300454508, 5.068280326085494, 5.293671002599666, 4.374937369959342, 4.283035196306944, 3.8280191538738966, 6.533628143028695, 4.324673648552489, 4.235564836752248, 3.5131775799173313, 9.465234097938572, 3.9624449844199057, 4.6570092578875855, 6.959980708774088, 5.199644453454408, 19.803562894236325, 4.375925742805079, 4.536184098255125, 4.586034209720847, 4.888118385738485, 5.23974726073579, 4.30720644872254, 7.320601213526189, 4.368802208014962, 7.7519187909365606, 4.762790099172769, 3.8753593657313172, 5.891853897183487, 4.722583725953089, 3.5466093412511914, 7.408643241285464, 6.82693110152808, 7.093303126162585, 4.680594262712849, 6.996386627101509, 7.327804297679037, 6.3415822151148316, 14.193108432314082, 4.030173909364596, 3.692230363050654, 7.8293511292817195, 5.784738608944195, 7.5889063293245655, 5.096278295534232, 3.746101786049061, 2.9919821734121177, 3.142188622251834, 7.358230595368869, 3.240346718412382, 9.11863385135738, 8.389137504029517, 3.4402517213808435, 4.702650682895258, 5.220843459233053, 4.517220453364481, 5.963155954281133, 28.550421333647698, 4.93714057863691, 4.670914274794189, 5.168806153082114, 7.16870761324864, 4.696063945402791, 6.584637115393755, 7.00269918912026, 5.130960764181455, 4.977492376617347, 3.251515420370515, 4.431062428217242, 7.682700802723183, 4.903494185488425, 3.528851521220606, 9.217290458047831, 4.18534470381575, 5.972318373472608, 5.2591364515332515, 3.8178467839019588, 7.679290012410782, 4.359930866965013, 6.209749921398044, 4.466098667334301, 4.35074835214217, 2.7613444616833083, 16.72524458456286, 4.402241542753284, 6.939970546380042, 8.297240870435441, 5.113116523281707, 4.740540751528764, 5.055747741686464, 4.022745917816791, 13.137256514943573, 3.6483731117599323, 3.4867979453521665, 10.222849232826183, 5.44526926404446, 7.77423201905466, 5.547698119559078, 4.52162109234846, 5.907769337511224, 5.722592273811731, 6.28274803071215, 20.23952127790497, 4.8575536643632775, 10.331131260798982, 5.279849215915478, 16.00043084572449, 6.899476437081788, 11.589425614503213, 4.242925522194997, 7.40819338515186, 3.5890713444554123, 4.9573216588424005, 3.7955871849022333, 6.141974232660044, 9.482789969172872, 5.143808107975955, 5.410408748598575, 11.67620107953851, 6.41779523791449, 3.4759992594037974, 4.635741323861855, 3.374276497853453, 3.076952914917783, 14.243249453802962, 8.550107804092484, 3.1644690646107003, 25.206608112607398, 8.514678531337816, 81.88144648208934, 4.03838253706934, 19.475949996762978, 8.69298425905638, 77.56302804140309, 16.99154529318515, 10.175701490182261, 12.235323949128562, 8.701438394142096, 7.053474190324598, 7.028903240835134, 98.16008881118881, 8.653968498412384, 6.140220718979678, 9.392051484642222, 78.7086210250804, 4.219458400907928, 8.090563413398275, 6.539354312376947, 6.993096866252306, 9.44147941190532, 9.376022306012919, 4.082741040407863, 4.496323206213832, 8.735737060263741, 4.855110825391274, 11.811151523313283, 10.798512248497625, 5.995242823780354, 9.667205604741838, 4.929436918620809, 8.012349600660778, 8.380470202977959, 4.895274133462526, 8.43796258605483, 4.6980071313934495, 5.605537416329118, 7.111768909317338, 4.837426710667193, 13.723565095581806, 4.237476278478476, 6.232069502267665, 6.95843319647167, 7.572192876082414, 3.8535901506152963, 8.945383848896428, 10.245353052702225, 5.773679264449326, 8.851156486611767, 5.18358587317758, 4.078695453583622, 5.926389033694539, 7.775306778288269, 14.701262168140024, 31.5559349203141, 6.3370981943614995, 6.084286502398295, 6.893686192349407, 5.85039978071514, 4.656068571549489, 3.9907279163162577, 5.803049172498916, 10.213612403392116, 8.802149038368533, 5.647589627061451, 5.682574509081085, 4.505895602651871, 4.7771723610001136, 4.954884489633116, 5.836035482551557, 8.48432459799846, 8.559520785689646, 5.080092088075714, 4.5143400922111, 3.2356411377139414, 4.35688397520755, 6.253646493330805, 3.2347681213577486, 4.1754490246288665, 4.246795169513299, 4.733331017365892, 5.399544811523383, 5.564378633087008, 3.451288489085621, 10.636772497444479, 14.134963848272129, 5.005722705038961, 4.15806604719205, 4.492440743943638, 5.057863665878178, 4.393856821746158, 5.811550332979167, 4.515961379221338, 2.7044037280266755, 3.586674866045954, 4.287671374082517, 4.519391614296786, 8.004253910390199, 4.383391110861225, 4.701812993778778, 25.22901575499826, 7.755497824386054, 4.959664943655632, 9.023873726302574, 4.227017026859467, 4.948121041718659, 5.353329291249265, 45.090020826509196, 3.566175953104494, 4.168202371194286, 3.0692349633064686, 7.960869020094999, 4.934509720541848, 6.410213167243775, 4.618053499871165, 9.478127760723714, 5.582944487523082, 5.704867829297357, 6.436000431445338, 6.841917236307939, 5.098072070748721, 6.3370368707862275, 4.553119367302885, 3.568697390609944, 28.031856254136947, 7.376789245554716, 5.038374893830336, 4.699700891705708, 16.019589659760044, 4.859629634401877, 4.41675014903738, 8.615531047423676, 33.254254357222635, 4.498705690337913, 4.209408988413425, 5.021513877849141, 6.154495252187022, 10.815950733178827, 4.898975986689111, 4.333347371161432, 3.3367879496291195, 11.119366957403923, 5.693470390689326, 10.093331611511582, 6.523024329671994, 5.313127910334534, 11.544399088207319, 4.640768235343204, 4.5906811013686735, 5.876647878104949, 10.032781710217716, 8.088181877012058, 5.007062806082465, 4.990841982428381, 10.381334674380781, 4.754486767388873, 5.145434397668821, 4.794402961816045, 4.5416664656796035, 5.497493323034263, 4.4240593880308, 10.072639246648427, 4.906330108661817, 3.9836192514115245, 5.573675306878233, 4.528693703895169, 7.15291368889014, 33.498251879291544, 6.056764760041608, 3.9349567796730116, 8.344128789379441, 4.233632936608567, 4.582922179948601, 4.363669173458646, 5.126811748713679, 8.053325017469811, 5.859751112097018, 3.6037688539479253, 5.018232307906261, 4.36824743891563, 4.074755624405861, 4.918462130933962, 6.8921597392245655, 5.631109247577801, 10.6405356300439, 5.74792698232398, 3.8744329683339616, 4.2451243679476285, 3.2206254165411092, 5.43161280107861, 8.272784850294613, 11.262044192385067, 13.34790269536158, 21.03973311226588, 6.637256912837035, 76.21368415356572, 4.170519658185719, 5.444735857901127, 3.511291366583334, 27.44086109313028, 17.2284553864111, 6.238288480830508, 93.42825235875235, 14.205268146312594, 9.370470424869858, 7.653869205092988, 84.90812245952397, 18.335954489820647, 3.9874612834410734, 24.94872355388109, 5.095030325030941, 6.2853069584719234, 2.8534773175150914, 4.067674711093241, 7.236127532729077, 12.702672836470757, 4.6294997878213815, 6.400526259198397, 7.002304109704079, 3.0079846147731684, 5.696283408470379, 9.285548003755759, 16.307335573979923, 4.79250981128249, 5.183219557314282, 4.271489314808509, 3.9649293523118487, 5.228027125352108, 7.931367896307529, 3.760562952298764, 4.9239291742590385, 21.847992503034092, 5.687764155336558, 6.7854367574116115, 4.053687054325117, 7.990017579965818, 13.541966545771945, 5.950335295074856, 4.898379498353713, 9.968785831023773, 7.319323979110153, 8.291096485429346, 6.019688618312564, 4.619755723667158, 6.037966108078858, 3.9786416038839345, 8.437999418080933, 5.066295655281356, 6.438209005367972, 3.614588178036152, 4.974102026431111, 7.513271924658028, 6.380559616320375, 6.214457905935818, 3.2273805194580456, 7.663188007219167, 7.38182560730083, 4.3737251770211305, 3.2269914229057757, 9.331663455275287, 4.815515498812364, 9.981319539439731, 3.003137153642821, 3.612970945213923, 2.9715983174974947, 4.978909250156718, 3.7546670177483916, 23.829626776856447, 4.80472166109154, 9.427197564202189, 6.893852204128162, 6.280011759944602, 3.672835019092789, 3.920436811705465, 4.904409218746314, 3.8965303558259428, 5.30437154108258, 4.519105958933951, 5.279126737501654, 10.447126806795405, 8.001379886800319, 5.479163464529284, 3.558483633961946, 20.173462483825126, 160.86820411935744, 141.5939125457876, 93.51120535836706, 68.51066008419684, 56.261066969213424, 25.035994011964995, 7.47022731347819, 89.10613414608267, 81.13326291417468, 3.959350977193689, 84.96572565811383, 77.96401073001466, 51.48801459792998] disp = hash_d64_k16 d1 = pd.Series([s for s in disp]) sorted_d1 = d1.sort_values(ascending=False) N = 140 pred_rrcf = d1 > d1.quantile(0.9) print('Displacement: ', d1.tolist()) for k in [100, 200]: top_k_real = anomaly_detection.get_top_k_anomalies(sh_vector, k) top_k_disp = anomaly_detection.get_top_k_displacement(sorted_d1, k) anomaly_detection.get_top_k_performance(top_k_real, top_k_disp, true_anomalies, pred_rrcf, N) real = [] for index, row in sh_vector.iterrows(): if row['anom_count'] > 100: real.append(100) else: real.append(int(row['anom_count'])) fig, (ax1, ax2, ax3) = plt.subplots(nrows=3, sharex=True, sharey=True, figsize=(8, 5)) ax1.plot(real, color='blue', linewidth=0.5) ax1.plot(hash_d64_k16, color='red', linewidth=1) ax1.set_title('SnapSketch', fontweight='bold', fontsize=8) ax1.tick_params(axis='both', labelsize=6) ax2.plot(real, color='blue', linewidth=0.5) ax2.plot(sl_vast_full, color='red', linewidth=1) ax2.set_title('SpotLight', fontweight='bold', fontsize=8) ax2.tick_params(axis='both', labelsize=6) ax3.plot(real, color='blue', linewidth=0.5) ax3.plot(ss_vast_full, color='red', linewidth=1) ax3.set_title('StreamSpot', fontweight='bold', fontsize=8) ax3.tick_params(axis='both', labelsize=6) plt.xlim([0, 1500]) plt.xlabel('Time', fontweight='bold', fontsize=6) plt.ylabel('Anomaly Score', fontweight='bold', fontsize=6) plt.tight_layout() plt.savefig('results/vastplot.pdf') plt.show() def visualize_darpa(): if 1 == 1: anomaly_detection = AnomalyDetection() sketch_file = ( 'sketches/darpa_10min/rdim_64_n_3_k_128p_0.2_l_50p10q5.csv') sh_vector = anomaly_detection.read_sketch(sketch_file) print('Sketch File: ', sketch_file) true_anomalies = np.array(sh_vector['anomaly']) sl_darpa = [0.0, 1.0000000000000004, 1.4200000000000008, 1.620000000000001, 1.8600000000000008, 2.4500000000000015, 2.660000000000001, 2.606666666666668, 2.163333333333334, 3.553333333333335, 4.0166666666666675, 3.8266666666666675, 2.5980000000000016, 2.075, 2.4666666666666677, 2.6790000000000003, 2.6266666666666674, 1.9041666666666677, 2.3625000000000007, 7.323666666666667, 2.3486666666666673, 3.3153333333333337, 3.063134920634921, 2.320262626262627, 5.969333333333335, 4.417166666666666, 6.199833333333332, 7.968666666666665, 3.1812142857142867, 6.162523809523808, 5.600134920634922, 8.386054112554113, 6.047714285714287, 4.551000000000001, 1.7697138972138982, 3.614246031746033, 2.480444444444445, 3.6538547008547004, 3.9801907308377915, 8.834181096681096, 5.261960317460318, 6.4440873015873015, 8.789714285714286, 4.714586219336219, 8.04961821511821, 2.5418132978132983, 7.096460317460318, 7.826078477078476, 2.5750670995671006, 7.68892007992008, 3.289951346039582, 13.420904761904762, 3.4483250670897743, 2.714681762681763, 4.418218118139173, 15.451951465201466, 6.739684550743376, 3.6353293650793663, 3.191541549953315, 4.221762570762571, 2.153847555952819, 3.109875457875458, 3.456950705727022, 2.0999702634677067, 1.7787056255054985, 1.764123928359223, 1.888398291251233, 2.1237179487179496, 2.3554988921579323, 27.04, 1.4998784545456214, 1.8871840829000228, 2.1192714078931822, 2.523507449178502, 2.239671578421579, 2.2529392409483693, 3.0643626177743837, 1.7397439836149518, 3.2541237553342834, 6.007199999999998, 4.979633699633699, 3.022961038961039, 5.0280000000000005, 3.695000000000001, 1.181985185185186, 5.990666666666666, 4.469416666666667, 5.625238095238096, 6.6290714285714305, 5.471904761904761, 8.187222222222223, 6.22639393939394, 5.630380952380951, 3.611518796992482, 3.755980392156863, 4.919714285714287, 5.687798346763989, 8.450095238095239, 13.118333333333334, 10.500526315789475, 5.1608359859095145, 6.445960317460319, 4.468441225441227, 94.62000000000003, 1.849484126984128, 6.652187590187591, 8.298173160173157, 5.727428571428573, 7.41424844720497, 6.326612612612613, 5.260150270781852, 4.67154761904762, 7.080579365079365, 3.9539688184156283, 5.400383394383394, 11.620560606060605, 6.3928064713064705, 7.091154061624651, 4.573704184704185, 6.098405483405483, 8.40033333333333, 8.324523809523805, 5.90677399738653, 9.351690476190479, 9.586746031746031, 4.338500000000001, 11.507795959595956, 6.9307226662226675, 10.670614870509608, 11.878396825396829, 7.195762597052069, 8.516702003878477, 6.877984126984128, 15.88485127629807, 52.858583105272764, 14.575487772812583, 8.832610667626147, 27.922016441891447, 24.288219378700596, 10.230674551488356, 9.96259378212087, 19.37658603966858, 20.71149731984562, 18.11692194476176, 11.720506869377614, 12.556118281296232, 14.40514704971671, 12.711814221023738, 13.611805977546764, 11.695705313453097, 9.0722865139116, 36.89595798259711, 13.599971055244287, 26.120275743359702, 15.813094768258562, 39.845679618163054, 17.78679301417537, 22.838877823016034, 15.62679340936206, 8.283368255660255, 27.842289826596406, 21.127534373749498, 15.221262595608625, 17.381740030622446, 9.146739426050868, 6.846115926499629, 13.071590108441631, 21.923272042996793, 10.317802546379866, 18.425980322620006, 30.234829644481206, 14.531590541059806, 9.573266545302635, 8.987315507648862, 16.427142411584526, 6.38453513760854, 26.95818628296048, 10.9001273295491, 21.382636009368646, 5.6808780355697746, 13.785458700084103, 6.208451253250925, 8.285535876579322, 13.75196263746655, 7.0574740066299375, 12.39048394540935, 24.12781351701881, 14.607803294602528, 5.907120080805687, 9.537022880394684, 28.923416540459883, 18.215603996608586, 26.229191444520392, 26.32272596263386, 26.439771672771684, 21.58314554772714, 11.215849289398824, 5.918494842282637, 8.92842238956368, 8.062072458727261, 27.439653670375037, 10.015162493688404, 29.779922410922403, 22.851694083694085, 9.900029127883176, 6.496280127897179, 31.12283203463203, 4.572369865562637, 5.786272283272283, 5.032613275613277, 17.240070485070483, 21.522490620490622, 25.278413882277693, 21.743482141473194, 14.61895238095238, 12.677347022860179, 8.837439198732305, 15.18930429864253, 7.245868686868688, 4.233264207433517, 7.6578774282402025, 6.6793896789485006, 5.597083333333333, 13.952092231619755, 8.786316017316016, 5.512380952380956, 6.562544733044734, 8.441238095238093, 5.790069675736741, 5.166466193373899, 8.4475087076666, 5.500767930152801, 5.12483543799952, 2.775991635543107, 7.107941169941168, 5.193493470655835, 174.24, 8.673855921855921, 6.023595571095573, 10.485618527671157, 9.90137228268807, 4.409333333333334, 7.986009984639015, 6.630210802269625, 9.920619047619047, 5.533016692801522, 4.587290043290044, 10.208107238392842, 21.54610844710845, 49.65733043769974, 34.89217267877051, 16.117369963369963, 5.2655962046904055, 6.129448051948052, 7.99017165148744, 6.420636392846921, 9.652349697404048, 34.35008129326216, 11.734443974383106, 15.562287938051423, 8.648869408369409, 7.01916688213747, 6.56917771701982, 8.584023549621826, 5.639651986575515, 6.725441919191919, 22.628654168516313, 34.157179059153165, 28.72741929323071, 33.914209571054805, 12.751380342289602, 59.56423990695492, 18.123795261927395, 44.88750797704535, 68.75638313538315, 68.84855960820367, 66.65561532058473, 66.4490010734879, 34.87412711580358, 19.30370496217802, 29.796296196875357, 25.745602983181634, 78.08579198910968, 37.06561628017687, 25.84962146907153, 37.46286858419658, 60.145880896174184, 28.8026926747768, 45.778784564969875, 47.00360624270333, 256.0000000000001, 45.765418059157476, 75.87339742141914, 217.4923333333333, 234.5466666666666, 51.611096143298596, 26.480645471444625, 42.8401704129204, 27.613920094485955, 22.4861896525969, 32.92889432390501, 24.508271045980088, 27.921504458934386, 41.08780572562321, 44.303331464358315, 21.904861023608355, 18.994658952034495, 90.9135948188927, 48.451170071758305, 19.610725088443647, 37.15938147749761, 36.828293539180876, 26.988203625818578, 50.42084675421529, 25.39270676488424, 18.69621855867736, 111.56150768551763, 160.23137468671678, 185.79399999999995, 14.259420460213292, 70.11899432584961, 49.45946264906402, 25.514827977984393, 72.91996915365337, 32.307471982403825, 51.804427351028025, 16.29518208087506, 17.316294907478554, 43.86812487507389, 12.880700724902727, 23.12664894119357, 58.12136223274934, 56.13361634199133, 34.4468547008547, 30.24839194012656, 10.030587700724277, 61.438566137566134, 47.396100807106386, 38.999710879763505, 44.52266685945632, 11.151174297924296, 47.5719480356245, 21.18413364413365, 49.04500356273154, 41.47301824918002, 32.55670766285434, 30.195910524073206, 44.124127381390544, 38.59233230859317, 27.730611357479752, 34.74411389193359, 28.71767957904165, 49.39840476190476, 40.22545850640586, 23.684163225663227, 33.531199134199134, 34.53729659498209, 22.01248595848596, 11.745338458629787, 11.950060425032937, 8.955575773899298, 31.23491965169334, 9.194701528771128, 7.786111214744211, 28.89396745525007, 50.94079412381619, 11.574547174985897, 42.72398173055016, 25.536105230526058, 204.72378787878793, 18.801039543381375, 32.54878533042466, 37.28801171319719, 43.24845238095238, 11.817689806151883, 10.760127602702056, 12.24435586314044, 40.608207749766564, 30.16583633247528, 28.105479831537977, 22.51133900564631, 9.895192528966085, 25.727486017430838, 13.063970993372111, 13.971930547225504, 13.097792429792431, 24.877006418569554, 16.71685317460318, 14.86511111111111, 14.36881007881008, 7.313338102537897, 12.77489438339439, 8.567069697622639, 11.185876971068145, 14.561406151983551, 20.377666666666666, 16.3628883286648, 10.158574296704328, 10.81099677282321, 17.985198646039205, 47.96712306674807, 55.569324188918344, 16.8274467767676, 32.59738213801149, 12.63999184578741, 18.116949928194476, 15.531208607795561, 20.411191059062528, 20.737816107126676, 11.997042372087718, 9.299228086757477, 20.051917924661495, 35.29627484441793, 32.59275738563496, 18.845067176446303, 14.862712375349206, 13.594655351127557, 7.854556982057959, 6.340112949882739, 6.745851567167713, 35.45828157153083, 23.68984778891028, 13.866494697110422, 17.323509087651363, 7.089541919250832, 24.605193639001296, 9.920252427745412, 11.173704926809306, 24.828226930729084, 11.074508891304925, 12.290277469000713, 17.935256229637808, 9.731490470387246, 12.170032960835517, 8.249946614336467, 19.40556474121583, 33.11007454966117, 14.977125397050896, 9.606475982376846, 13.877532562724964, 9.11897674106761, 19.022783928781845, 231.88166666666672, 252.21999999999997, 250.6400000000001, 251.08000000000007, 14.915925316076672, 243.4400000000001, 219.08666666666664, 11.756457822943561, 8.967071892926164, 9.123418816647352, 6.887436335073637, 24.195166753027053, 12.351597325235128, 13.25993005121449, 33.37107629728373, 6.57647696889942, 37.90155886284339, 20.479374785842182, 28.917224224641416, 15.981442890854035, 28.88646547741903, 25.004347948347956, 17.166059612936085, 5.17967965367965, 7.692126984126983, 7.197523632250102, 22.956412698412706, 10.573655844155844, 19.061777777777777, 14.007752348800624, 17.899779331779328, 14.213457070707072, 6.6261707410236825, 16.439956058434323, 11.643660054122122, 10.233145824330942, 9.004788270552977, 13.122549599805968, 8.064404437846893, 5.183224553224552, 8.45267434715822, 4.712257575757575, 6.028017536483403, 8.862937560478738, 5.508625159154571, 10.752853107344633, 9.942634725096026, 2.4791705676620936, 7.2607061923583665, 7.556027733923845, 20.150589043747587, 14.890556077199296, 10.478825356887516, 14.425177738927744, 17.585712121212122, 6.615474053976685, 19.04538993712381, 20.077621123321123, 25.90031818181819, 10.467523096022784, 190.11889822595705, 14.156410714285714, 10.45700432900433, 22.359520923520922, 17.225427664588995, 9.271538265438263, 15.295802780552776, 20.73142701581539, 11.86680782639681, 7.503165846543319, 13.18277736211779, 11.000525530025529, 7.773113730567871, 12.139197390026789, 3.8862393162393167, 5.39544461887319, 6.269925817216839, 4.327121794871796, 5.99380635704165, 5.070264814895251, 3.4309266409266423, 6.864625740160223, 6.93712601616936, 3.040166666666668, 8.388347278041653, 6.406598683891488, 3.3450517241379307, 6.91429093129093, 6.93480130980131, 4.171000000000001, 8.9450771096986, 29.110306369987917, 43.72591595931302, 111.7928724082935, 79.85671435053148, 110.74019321594322, 60.209269102308696, 88.48917355866017, 75.42280436230435, 62.28854612763098, 94.14734997389954, 61.51235318963802, 65.75828907882624, 53.973993251556394, 18.813522818655482, 66.28811877741428, 51.20159017214947, 46.786345268271006, 80.62459858389451, 76.02560145154185, 21.154291399211402, 86.33210830019655, 18.01776968765887, 40.528410248508685, 23.469283139486244, 79.27143470926833, 99.13234715284713, 16.369656907146297, 54.93751904957787, 38.98522029673113, 14.738483666972295, 95.21723905723904, 84.09281428571428, 23.42043289903588, 107.75021212121212, 33.803829021551564, 27.048853504092445, 114.44805555555556, 96.74256997356427, 38.02342926396564, 72.15724647136487, 52.51811760648968, 84.74594380370229, 34.948731891647455, 78.21082332308491, 15.357621461846476, 31.870309769499205, 28.175474900730578, 45.53038031302453, 51.16638156288157, 40.32344079968325, 36.017937011045376, 70.47261035321038, 62.35651626583435, 36.29733821470266, 15.04300261523374, 18.138884147655723, 33.68866407459053, 14.412407826150309, 15.282315831616073, 11.320003048470932, 11.82944183037174, 34.70633660122775, 8.532608323920092, 28.190830292658934, 19.43359308867978, 10.609073248240346, 18.53894442159148, 6.891641025641024, 18.16888622196517, 6.337180935922315, 17.234422258297258, 8.903049190889396, 8.457635870139622, 13.995785976441859, 22.00616017316017, 13.128644467853176, 12.005681045212526, 11.66190885040885, 8.858947496947497, 7.101690845386497, 21.117046641267233, 15.610370395997446, 10.99275240853917, 7.851375308901628, 23.41575885369012, 7.909174147250874, 6.218553111639318, 5.1874809152200445, 5.524517268985459, 10.351315789473684, 5.994930735930735, 8.601683938106135, 4.1046783706489585, 4.372190476190477, 14.452104542516304, 9.079083394675498, 10.998008055350372, 12.792810800310802, 22.805550671550684, 11.923546345879064, 8.911460492535921, 7.196103896103897, 158.6919696969697, 6.45527922077922, 6.287724716202271, 5.36442930741143, 8.585392253816517, 7.082503969759717, 3.9686774891774896, 5.796569976922916, 6.8838412698412705, 5.171501221001222, 7.203989745452569, 4.423616433587496, 5.524345519977098, 7.524333333333332, 5.990616738816737, 5.507054481466247, 6.333813513284103, 10.996441542203925, 5.6163736463736464, 5.120564781254078, 7.361165891165891, 6.721808080808082, 11.050766844266843, 6.050502290107555, 7.611673542144128, 6.4829684350736985, 9.282055555555555, 8.944864756158873, 8.649997557997557, 10.650099694423222, 7.744477370852911, 63.12181224898252, 27.474283792033287, 33.55237243286843, 45.95146159214024, 33.05257731817546, 114.72760807448485, 55.15915289163346, 25.685725570888255, 27.89554380375332, 32.33507761181242, 38.671361970193544, 42.85233940960225, 20.419355629672708, 35.81692369293833, 35.79624871414686, 18.13937556133584, 20.09381451287761, 12.896178332945368, 36.486976964727724, 37.49788894765365, 162.68834593837533, 12.45897715671828, 30.000273203957622, 15.609543464088292, 39.26531127761127, 18.028882178891717, 27.867956026239032, 20.99650399203248, 27.716657902236395, 30.141408922607802, 71.80829292929289, 16.44325065240057, 33.21517973294149, 12.508085430184886, 18.54703855765782, 10.59585138335189, 250.5200000000001, 23.666325985874312, 22.416518988540396, 41.60743682058681, 19.675083298436316, 23.772514832875316, 10.194122033185494, 18.776676244786668, 47.62400269259311, 18.252807390841113, 24.913350657400102, 13.318285935372797, 28.507110274423273, 39.123706206947595, 24.562357192456084, 20.67178882332953, 14.078844261640905, 15.909051792810462, 16.292526734699116, 23.765329727223673, 28.966229178990943, 17.108782970228194, 32.67459987052851, 17.351643348999, 29.121712259111195, 38.96805871274114, 27.686631285818113, 34.22033000822707, 9.381277640982923, 12.124605674687064, 15.224841310736048, 15.094291115420525, 12.124318764603714, 16.373483965393994, 32.522003108003105, 15.716379132265791, 12.266782378991303, 15.310450466200466, 9.529194449218648, 6.402413906559439, 6.1109996171751595, 9.263782505336852, 15.982723221176109, 8.670482097795565, 14.615797959925832, 5.772154410369651, 17.282689942446016, 15.639711935123698, 11.811944497531453, 7.20306615069331, 16.378459234241213, 26.69823532023533, 19.03183694083694, 7.202315992788007, 25.563247540041655, 28.165618159618152, 24.064854134589424, 13.413784682740722, 7.883887358811763, 18.051896901344268, 8.08764250072114, 8.72216583124478, 17.59643599187362, 16.712514221158962, 10.342004802711411, 8.62999381972504, 16.11061122211122, 17.424565130947478, 7.017944912923536, 11.543808611678177, 57.089363985635956, 36.96026713861723, 35.63886074155193, 13.611646312834594, 240.9899999999999, 8.887222342311096, 12.541217985025344, 12.24514227875884, 8.845233261163916, 10.190774457972001, 10.434057438493593, 13.204520430932053, 12.599280560775263, 17.93686290204778, 9.482841101218604, 8.924796733177818, 23.88408301203154, 19.65508189481573, 14.159095791514883, 18.999508569516518, 11.763818765813804, 26.477372426632908, 23.242178889467635, 54.13296071546089, 67.63379567457966, 52.701434232434224, 46.47126798303848, 64.71946942599885, 28.70470992009011, 38.50378204716598, 33.11695995495193, 11.772639328684566, 18.390967210946275, 16.479668850233384, 12.383137923080426, 12.926354091526695, 6.191814801040324, 17.992945878819448, 25.64966950727224, 23.38102163870335, 19.334580776400575, 11.450736169750666, 10.77296489067011, 12.404250567744494, 14.385363836707645, 31.26845829364518, 12.945658030525747, 13.21938605970696, 16.79575154710321, 18.466114861275297, 9.73461389984552, 29.256409245659768, 14.388686145838262, 13.878367082443175, 17.785061313278057, 22.76712259146083, 23.26950981612725, 19.172274250022156, 16.144825623220044, 28.498014011787937, 28.481873057670928, 31.040709590927435, 24.42865331469357, 27.630342598370515, 21.47040584415585, 17.258242035412703, 7.479677970963271, 13.002381891894018, 10.06353927325896, 30.460180708180722, 15.733849368972836, 14.521602318539655, 127.7264592760181, 67.37804381858845, 20.3598954248366, 19.679715727890212, 23.840593864805943, 16.188140382977693, 27.84820977331847, 10.51881406111533, 13.80736587127081, 4.79356200764165, 9.968798013326616, 6.1155441780441775, 6.037872143060122, 6.101244631185808, 5.946574390521757, 9.87301958161169, 11.153905246714068, 7.003413159939477, 7.775180799755799, 154.34385413245758, 7.998084335255388, 8.78329841838987, 4.763890886890887, 5.6696838118022335, 7.306309523809524, 7.203751082251083, 6.849120681605974, 8.968952380952379, 4.236905920922086, 8.378583805083805, 174.37911111111111, 6.930985058800848, 8.058793636188373, 7.71119011707247, 4.320030212462205, 3.318168456065009, 4.47753154849466, 6.954563642240112, 4.781507995925644, 7.028025030525031, 5.625716082392553, 7.937942287244918, 5.25746275946276, 9.006604434567992, 4.0362966305299075, 4.519234982638183, 7.67986404416839, 9.299982966309056, 4.496453432141983, 9.045960439563187, 10.07024156795585, 6.657494040956464, 7.674141971753734, 7.5601091149103326, 5.400342043920991, 5.612054663454114, 4.685338297125242, 7.018114076543423, 6.4317215007215, 12.04717857142857, 65.2564754901961, 47.57563861138863, 54.170948962148955, 25.158312099573035, 11.786538102541943, 12.297619222664009, 145.61323020117138, 7.3243349308793295, 18.748949848626317, 11.673275026369375, 10.051728022077945, 11.413848055105284, 6.97033417253616, 6.951179973152276, 7.310848602557263, 20.6258259233521, 21.23166816784185, 16.894346141209414, 10.685973158787927, 13.116974333484828, 16.14988081643753, 15.009285693677327, 5.86796849735895, 7.298271282866242, 29.694090061183854, 9.252867190471523, 15.815498407845459, 5.248800350634451, 15.386443123553969, 6.593052648074113, 5.924541358775022, 13.198962656796748, 7.09891718310098, 6.258356317945546, 14.786132836999483, 6.634399532985791, 15.587228590280834, 5.1554780452209545, 6.647110997406465, 16.278856417358007, 10.043795636082406, 9.871026783395306, 12.791951417345247, 10.301744460060101, 12.942346980962288, 53.012252487364705, 16.95789814529067, 89.26340905190906, 7.544496735987636, 13.999147289827686, 85.7027992982195, 54.931379290368525, 25.19438269421681, 27.43006695955061, 7.5115820571107905, 44.7806746560076, 17.275173684790108, 23.054579619557817, 37.75922832722833, 9.839630859652473, 16.934517483471023, 23.53676558996559, 7.670305462511345, 15.414912650244489, 10.936148030918094, 17.309181757997607, 15.992502416959736, 25.562446093397487, 14.08057073253544, 23.822601731601733, 141.0358403578403, 11.531176431869929, 14.162926295926297, 3.3081521517697996, 12.986149229232545, 3.9386443441410672, 11.888666454460571, 7.739673114981779, 5.9408126318126335, 14.006225601883495, 3.403572716555476, 3.38627147320034, 3.22352017719123, 4.074230722342793, 10.294681457431455, 4.174608252858253, 3.1072383040935674, 2.3257830261136716, 10.436968580439173, 8.090781763754118, 7.444439603451508, 16.852621745493067, 25.915714962299692, 8.34042751771976, 13.603175277345759, 8.277049293640442, 10.571624206253517, 12.631949456975773, 3.79588888888889, 4.077516339869282, 4.996506571859513, 4.258990052431229, 4.5972868817342505, 3.0576352583586632, 4.535858940649492, 3.210700778775765, 5.745734530175707, 8.397895180147772, 4.717836219336219, 4.490992016242353, 7.667530011265538, 2.9709682539682545, 4.35140876959298, 4.745807724546106, 4.687734739987229, 6.304261373129793, 4.435376162039447, 4.095651233871049, 5.4410939064375565, 5.36324050673808, 4.737084123770967, 9.23438888888889, 13.107914214651949, 11.105187560920369, 13.336247347767474, 30.104619788879855, 83.87077397625718, 81.20823628037574, 79.35238367994864, 89.77634594315427, 113.21479820424675, 72.5103487741933, 96.62027651515152, 90.23040875790875, 93.29369435154214, 89.7344322344322, 85.73326408662271, 84.82433073593073, 78.41589976689977, 48.42747973853712, 49.736491100297556, 76.73436180124223, 99.49315126050419, 67.71181659298539, 66.75177404479578, 55.806834859584846, 63.95115419540674, 94.02797396600278, 85.20255661881977, 48.38483610833612, 48.56257647254708, 64.7065273923523, 66.92286570183626, 112.84414492753623, 121.1408694638695, 47.298463724114136, 51.01297152804129, 29.408901496417656, 56.95806528559158, 70.25029820465129, 59.15171640286613, 88.56380158730161, 79.3584482850483, 62.63867996665778, 56.74702393684747, 75.23016666666668, 36.800279317439255, 58.71865445665446, 49.62617172113657, 58.101805187731664, 37.0013891582274, 53.484463644878225, 76.57571475235291, 66.28678068970754, 76.72343499516477, 58.89532063797282, 56.43946354068636, 55.728109968554676, 35.32652597402597, 62.27199353894481, 44.67383741331133, 55.091881634705175, 51.14136328051035, 59.25529946719948, 51.26011835522201, 32.62970907719582, 34.66946901986902, 75.33435858585858, 48.460432567432555, 10.493692957042958, 72.62858496732028, 46.57846172346173, 47.226715083442635, 39.68308357383357, 75.78681355572533, 62.96989177489177, 47.02605315962864, 75.75947619047622, 74.7656953086996, 59.95492868242868, 39.700184578189834, 60.94585353535354, 47.22959188034189, 53.410501675154116, 63.16333837578918, 44.540760298937386, 44.46919075135392, 47.00045709845711, 51.78621016184251, 26.529230619954753, 55.977142857142866, 59.34356782106782, 61.1691792929293, 44.377713064713056, 58.687858467803714, 38.63292495439979, 52.23369214119216, 60.65892982526342, 34.84249555752275, 58.452163326869226, 56.985016692120126, 41.62634537684538, 40.85975722664433, 65.74328776778776, 48.73435775423407, 52.95062426192733, 25.81150406729445, 39.79419153069152, 49.83476371657019, 43.18010103703174, 51.32846366435498, 42.031444406900285, 57.57648051948051, 45.33148129648129, 44.67683871329909, 33.16088934594817, 38.91234744667098, 48.3921398090214, 36.708893835209615, 41.8645989729225, 39.18689547280676, 35.84412348762349, 37.09969719169719, 25.721697178413216, 37.85942827356681, 34.87763252270605, 37.83895384027737, 37.56585553335553, 26.457909701409704, 22.78355368934471, 32.75492051306182, 29.999366082099506, 29.93116103607435, 47.24407142857142, 30.154439866646772, 26.589568546950133, 23.59526598547651, 49.20916456582633, 21.08763888888889, 34.72143903865387, 37.165773617187405, 28.183664630089552, 31.66283159165396, 71.23513492063493, 19.414290613669092, 25.107425925017786, 23.060075520970255, 28.642792878441153, 22.981016856478398, 23.402590351796807, 25.26766973658151, 31.716680672268907, 20.894511581555694, 21.303514213260524, 23.082222967381725, 17.344890640175322, 25.80493015334353, 18.33925516995082, 51.943547154081536, 64.14254194736928, 33.723571942677204, 5.399108876786296, 3.980147186147187, 5.4719312169312175, 15.471047179784984, 6.697329004329005, 3.8364163059163063, 4.978984612557318, 14.4706075036075, 18.974018913662878, 21.547986067196035, 17.404079596971957, 26.291296092796095, 24.95849850649643, 12.436152675584513, 11.073192705195057, 8.292873508010727, 13.2181435670679, 15.105852882347177, 15.426048535380504, 19.698545882480097, 19.295572382983377, 25.509699226937148, 10.248395431177869, 17.285284027580122, 12.27407818357376, 11.805642651849098, 10.323235316371028, 14.633317099333905, 18.19486527361527, 18.90693191048717, 26.420127350273262, 12.291542451710763, 19.1678121692968, 24.297645258250522, 9.714208126039063, 27.71489566546855, 9.682134736739101, 10.995160533910534, 10.475533778157956, 12.891965181876945, 9.746281623781623, 17.95920389612404, 14.891238095238096, 7.444642526260476, 10.513693330358093, 17.818857142857137, 9.434517316017315, 15.796762077294682, 25.351380952380957, 18.445815295815297, 16.647891152057813, 18.517083916083912, 4.204686257192652, 7.095984487734486, 7.971956971630245, 4.220255411255412, 17.876488687782807, 8.942502800622176, 6.676834249084248, 13.730334776334779, 10.234182853378508, 6.737056267605802, 8.954726107226106, 12.465363581910747, 7.497181615769849, 9.382777777777775, 6.4275333555333525, 4.314549783549785, 2.4680000000000013, 6.320599567099567, 6.660935546722781, 5.09759249084249, 7.918547168855487, 18.81112121212121, 7.168442141715725, 23.73347186147186, 9.429657598440206, 8.583438744262274, 5.285904761904762, 5.197116466866465, 125.85711111111108, 5.168373011046923, 3.786338603425561, 2.752855701036553, 3.0125246798119143, 6.895927990537466, 3.170558867846103, 7.720632756132757, 7.231617243867244, 2.836663596450832, 4.186298924479777, 6.144302099334356, 3.715598925170506, 7.467620629370631, 3.732775410413342, 3.2378542568542574, 4.181693861693862, 4.081260536398467, 3.770039682539683, 6.412923576423576, 6.476769841269842, 4.6841115273615275, 4.04998733454667, 3.466146627881922, 4.142351421789128, 12.09523772609819, 4.517017316017316, 2.508903096903098, 7.905286928104575, 31.620781635117687, 30.26401945440181, 30.72861456125573, 21.361970800867738, 23.26571602245364, 33.2886742146742, 23.114760867152174, 33.58511624514893, 19.74308720825642, 16.76272969187675, 25.87570234607154, 27.715251771683988, 20.82286292191608, 30.062838044933123, 28.450573717948714, 57.88563828184976, 21.314673228646576, 24.583627766259248, 32.883871199835596, 20.95164587944389, 19.307515739604813, 21.206248443476976, 21.998016630426527, 15.875301827784293, 24.137543643712608, 23.963885059145998, 24.795025031719312, 20.041420847704426, 30.081039901737668, 34.241785813099945, 21.382386508099746, 20.465076447025066, 42.6516899278882, 20.81124059167002, 20.013458966604766, 25.00583265865485, 23.353260612658758, 20.79274891022589, 32.54570942035261, 17.373984502052565, 24.673138499181974, 57.823472736076184, 12.665419839891904, 21.158723144850548, 20.709480987810142, 24.257585463863595, 201.48691269841282, 27.649108946608944, 20.516375595565194, 24.593939610389604, 33.14464893439893, 47.41507092907094, 17.772147325481534, 18.00588924666491, 14.74544646464406, 28.52336522717049, 34.24374147519146, 24.359223704400165, 17.309152150091343, 46.247691524677585, 28.277490801547984, 41.22883774367396, 40.18232876905704, 22.55259288393763, 20.19985994560995, 28.939996605132052, 22.883624721967436, 17.66046468465523, 29.28586695450233, 21.810593738235465, 34.94888131729575, 23.51128624903536, 17.52092476165494, 28.862658520040938, 19.15658534619539, 27.18896686156981, 13.485741974258449, 9.17479583065174, 12.541899444318124, 18.820996498149015, 13.068440292321212, 9.66048885507698, 8.957134660565659, 17.59404812859307, 12.516326842722055, 15.466106387129983, 9.654072604174713, 12.775403323390696, 8.441826555106756, 18.47132865113902, 12.73512357826543, 11.541960117951653, 11.473502269972451, 18.08643310209196, 22.43331623801036, 9.656425881784374, 13.56849729365635, 12.388588437264099, 12.534826012166391, 20.489001448006107, 20.0711799523188, 25.066041531067917, 10.321813465064642, 9.734024373226209, 5.964475213779522, 12.917162627861696, 11.54162519087786, 12.7512892556047, 5.810309945664639, 13.178496253746257, 8.294672490650047, 9.556702802013948, 14.881141745367449, 8.655713352007472, 12.619201687201686, 14.631356113831528, 14.39027144750674, 9.098933501683504, 7.016303172782378, 16.971898074148072, 16.722634920634917, 13.247672893680132, 86.33215873015874, 101.03894444444444, 103.5290714285714, 70.98661904761904, 5.379225629791894, 21.04441881548403, 15.79048011442749, 4.473923674364851, 83.76283127058127, 14.154985958485959, 5.078162951507283, 12.490193362193361, 6.701462481962481, 3.402948051948053, 6.896249182190356, 12.161331843595, 2.4165213032581465, 9.313732586233158, 10.306975468975462, 2.2858412698412707, 8.98158371693666, 8.431696995986472, 18.294001307900235, 15.548, 12.026425027586793, 8.422305555555553, 5.013378139919936, 5.293322193073423, 4.160107744107746, 7.618853387373309, 141.92906349206345, 4.930438339438338, 11.728678359652047, 15.699552187925072, 4.477749799661564, 9.659375252908179, 12.537577181596266, 5.48644231911879, 11.784211090496804, 4.985478637671621, 4.430986445917634, 11.486008238749204, 8.685319199177258, 4.019180063794668, 7.220752275502276, 13.762455553735734, 9.367694444444446, 7.880623937311668, 7.223747715030068, 1.1467184466019424, 16.19173791527522, 43.012240106951865, 47.383514332328396, 29.040192607138813, 46.46880586350768, 27.09453042581752, 42.70342486423146, 54.96290675990675, 42.05454621095752, 52.09415155991115, 46.480828848687544, 36.02166553178782, 37.506361920855966, 59.86695695611579, 46.15716788766789, 42.76431368341804, 38.40729780703108, 29.88016286817758, 40.36644280062358, 38.17887185621397, 40.61756992337166, 34.61852823565324, 27.26814435564436, 25.28587917429047, 49.876424444704064, 23.557834099509023, 43.95169215832971, 32.78447840755736, 66.45369885490852, 66.1960253456221, 39.61424932183399, 30.968039853335522, 9.5531437546301, 32.769420265214386, 45.48128354978355, 26.274608033728722, 28.84434849234848, 24.614850162908986, 20.801848155929036, 39.42287590187591, 27.430370400509325, 31.92621545121546, 46.11281315360738, 30.020816447707166, 21.975599415739172, 21.528639342088063, 31.360610336976904, 25.458193471698987, 27.092944099812186, 27.37129953040734, 34.255113275613276, 26.164917701863352, 24.08863508581531, 31.537085410887958, 30.31225933350276, 37.511783466533466, 27.636730411401466, 23.762038023895613, 29.99491693861693, 49.94961262626262, 32.03407215007215, 39.83446029460737, 29.405218999844248, 26.028093400063995, 37.3538836098542, 25.71649677239383, 65.46873015873017, 31.471634750354557, 32.97822996447996, 33.395580811345525, 9.787331890331892, 38.290896205244024, 26.063148384295445, 36.72728715728715, 16.98425950511477, 33.04600602665309, 21.45814029090747, 34.16297494727494, 30.62399808035102, 36.612081049218986, 37.50437506937507, 49.48294769180312, 34.47966606553435, 23.933602064602063, 31.69999428349429, 23.16838261179825, 19.908758817333187, 19.611893467643473, 20.29086706986299, 24.615571751419036, 27.005563112326268, 32.44740569561157, 38.01520961494647, 25.60732380038262, 27.92783658764696, 26.32038111760708, 23.386040049019574, 31.74789599878377, 20.31403219819396, 19.641644490227755, 29.25361283859828, 18.78109224358933, 20.242747803108482, 94.37061789838513, 21.92681286491286, 26.163925436881957, 30.598761682761683, 26.540729903007882, 28.635942102015623, 22.261664485840956, 26.152628091722516, 24.495113783800736, 19.310801987461655, 33.64128754578755, 24.392768035507157, 17.700211643018143, 35.12143374023637, 29.20232280584912, 26.906015890240024, 22.63982787010736, 43.35335536294826, 24.00659973798131, 16.632875583298215, 24.203931348727174, 38.535448370343104, 21.62976486220412, 21.274779864757072, 24.124983458195416, 25.46302148940384, 129.42658585858587, 33.84984446173322, 29.03890037837978, 254.66000000000008, 247.758, 247.76, 254.64000000000007, 231.38000000000005, 244.0133333333334, 17.251110163447642, 21.230596660585316, 73.08525532800532, 38.868570937516594, 22.60561031109414, 200.4112967032967, 32.493682478632486, 24.992143106467278, 26.208069503824916, 13.238566626012444, 26.460503586282996, 22.656516756164038, 36.67948723498724, 28.919488508223797, 18.579515034580787, 17.892794735658864, 30.54139198965287, 30.189167776152313, 21.971318533805384, 23.74420573327638, 19.78026849327568, 16.47058663011918, 24.736762684683736, 21.246527679836504, 23.973217618982314, 13.241479107725658, 20.437864909571566, 23.705191657376442, 23.820107911057406, 18.310933083256618, 30.649220892557736, 16.431876512359327, 23.411983151127448, 44.27308703577124, 30.746792558395505, 19.097788856729494, 22.928768600680364, 18.14233662143956, 16.584760845194925, 20.82039743675657, 16.078383714835887, 22.933882093740454, 32.03494445114568, 23.660402181152183, 18.644091821974644, 39.00311604251156, 17.328139623408358, 18.94904344067189, 12.93559401811019, 24.600620491701335, 23.16060663193016, 12.867837752306169, 15.719621325090461, 15.04566978646854, 29.314373675018892, 14.434184776161722, 15.314974449818445, 19.417324732285255, 14.82518250896613, 14.942085954061794, 21.041320924105136, 18.29682857863932, 19.31267024905431, 20.309164138683588, 11.30997660558653, 21.781030878614445, 235.78461538461542, 251.04000000000002, 209.71, 58.07369473173885, 243.03428571428572, 182.31666666666678, 37.786093795689624, 22.881367518210894, 44.784868838763565, 17.79309132595635, 13.275164583841994, 14.380026058482581, 26.154236378087003, 18.1817489353465, 16.89697816299478, 14.45956382383364, 22.935359947242297, 23.581069358178055, 18.27091620213292, 27.93252991452992, 15.567446332099276, 16.48366038683427, 18.447768030662147, 16.568370490620488, 14.375125943770676, 11.477321479174421, 18.775206547206547, 10.90608544590085, 11.434060077177726, 15.899811231252407, 12.188825006886868, 16.81376767676768, 12.323645361947992, 30.86890975690976, 10.148750890716538, 11.523688880835936, 12.545946302722617, 10.05844699976666, 12.849368620879885, 12.66777966389189, 15.029747474747479, 11.080185405686281, 14.50871579745194, 16.18611027861028, 14.436747365379718, 11.768849364687599, 101.5819998097141, 9.773641735674255, 37.99800745136091, 13.079763205250202, 10.845365782909901, 12.617916064893365, 9.418298370257196, 20.020336681931305, 8.371363844782072, 10.388915858811524, 9.392135775988715, 13.102388213180008, 7.342274929336791, 7.99721671743775, 12.27055832130832, 12.3205860704483, 10.617496575071705, 9.507700687655808, 10.748986711946463, 2.856221466364324, 12.666473001139243, 11.635196916630019, 11.105693231841572, 10.70034620008859, 11.478165943197403, 9.642063480063479, 7.815358151564153, 10.978944246426982, 34.45895651319784, 15.288327415676502, 12.876257474003113, 10.599754407244168, 13.43362373012862, 11.880469900951258, 12.068303659360938, 11.192493659186272, 11.356101756964659, 14.070156904420795, 15.307904374391832, 10.13223949011121, 10.612546917026828, 11.217950959684739, 14.60472148460059, 41.039306928432765, 14.83358585798446, 14.948764639508434, 17.878848601003398, 11.37139088250289, 14.253943707863565, 12.40768541167344, 10.614103747130065, 9.101826839498377, 9.828672216858937, 13.342338479762638, 11.733065421992194, 5.74624045691472, 6.511400258103802, 10.809303604996078, 11.818839239271162, 10.516847240994297, 18.54030699280827, 16.67214109185162, 9.876123301692015, 11.454911092716102, 14.941738888888892, 9.272646826412002, 23.31140908156884, 11.720802118933701, 11.440335052615833, 9.09592597864862, 10.922736854321364, 25.757384345904175, 4.7380373602432435, 10.682787303140866, 10.912596435550714, 14.783997602484073, 9.443663742612873, 12.059086694895523, 12.596542732084853, 12.35239990505972, 22.605029060202643, 14.01970979431122, 3.21721794871795, 9.43678305959873, 11.36497913904694, 9.797993763135503, 9.954137568357865, 10.119131871674004, 43.65614916570885, 10.202283143327262, 49.818861925550216, 17.03336299317733, 9.287211784898195, 17.14164463967406, 10.14423774864726, 26.93103981606628, 32.37973131587904, 10.941549777908138, 11.562043385750817, 10.515171991437162, 12.107195292667427, 11.26033560581074, 8.528767109373952, 9.347270111975993, 11.416326892044257, 9.796587958744897, 6.873981619539124, 10.017093265582526, 8.853800581855417, 10.40758701927587, 9.857082473082473, 9.953800049129018, 9.985919796148126, 15.756614003484312, 12.542389728803176, 9.566772587151707, 10.774990212352176, 28.931862937715888, 6.3717815465216905, 43.56134271284271, 12.286473252431687, 10.079452065668773, 182.69730158730158, 9.090435315561631, 6.471923731169013, 8.887365284058832, 25.908869303806235, 6.4047559250175325, 12.337871886283649, 7.500911669127485, 11.26294277038751, 15.430986497162966, 8.450042430352736, 11.439436125965539, 9.656264720021957, 8.492132841691296, 9.019976190476193, 11.035514071669644, 10.86929598388042, 10.421832791506166, 9.784658722498616, 10.674730182022236, 10.565032702804437, 11.457007486631019, 10.294602232712757, 9.25964329977591, 11.442320088856567, 9.29813425901584, 12.687396456158224, 10.534930398625445, 9.183283699947657, 10.854637426900586, 9.745141404471715, 8.265275125537256, 10.931815201069753, 9.077421001687389, 10.289357964119752, 15.572625196313746, 11.538889266597314, 11.276146032089372, 25.699166240242846, 8.800488451150141, 12.135609140704492, 10.63965869055983, 8.445843358855345, 11.142225833136218, 11.401840310239566, 9.360430500458545, 11.913815730490894, 14.390670656761234, 6.868276436193239, 8.824210985216071, 20.983249611075962, 9.808161729398464, 8.161875658225503, 10.539999835628993, 12.89626239931782, 15.3036329980587, 13.661688307694082, 9.891261790384936, 10.484185888675695, 10.440366458436522, 89.54665294604621, 13.733012048953748, 7.734964557605241, 8.506606884059769, 10.963808453041215, 24.43161269690701, 35.84828228654745, 11.246661289919022, 33.665371641587505, 12.656206161674582, 12.751356061025046, 9.973704751635497, 9.395958387678538, 23.307617569938476, 9.799231724874781, 8.607621720013144, 12.839838739300957, 8.36941796703054, 11.867530050725165, 10.125878740490707, 11.377564554322525, 9.156573761364088, 10.794380351722412, 9.644205595276501, 15.32016765594451, 17.86577262800173, 9.470174840253788, 9.022596189636745, 25.56268748461111, 24.529668545244842, 10.924096714370444, 38.161828236337925, 9.349205724687515, 11.232016670464034, 9.241528172186484, 9.420166285796906, 8.628389171901068, 9.406817561861173, 9.193271102064456, 13.317450943680988, 6.978647084657312, 11.456508144940068, 9.64371315308684, 11.321983707263557, 30.54828376604239, 6.540480345027761, 5.755450584581658, 10.088532089104685, 5.542688271595733, 10.784139714636929, 11.25900492229611, 10.267989436611705, 11.81962584672267, 6.612118607595695, 12.952953237079397, 11.068643311639706, 31.50847379139608, 42.95126095668384, 9.727563501777697, 10.636348556814028, 9.617893358942103, 8.911481341428967, 13.580366054598667, 8.04361814373396, 9.939612613127588, 23.97970731065697, 12.917404368578286, 10.208660815792394, 11.512295681946231, 25.92539149094799, 11.238765575555052, 10.011948051948048, 109.18756483516484, 11.33220326831534, 11.086274680126786, 12.224112188053331, 11.704824313872642, 9.350046072292674, 11.094293981164288, 10.90872857917871, 9.576999856457384, 8.189930269206496, 30.67665860874533, 29.48729885886387, 7.347341675610251, 12.547833270427912, 8.569910533910532, 10.471304024080494, 11.344532148247152, 8.639428466599025, 14.173799928571595, 12.801544298796289, 10.669867357345147, 9.26502652241217, 13.027039475236707, 9.53790065425815, 9.056663642623983, 15.316227089335788, 2.0849247436866487, 5.503220733289698, 29.26741035985986, 24.76876793772247, 18.617943705123555, 17.282968412420235, 11.356300809059428, 16.13628349911183, 71.42385635782409, 9.465129524582737, 22.30941315610193, 18.024075027638204, 10.889514449658973, 12.237643924816304, 10.814661238550611, 16.602563859887386, 11.48212265447794, 7.472644077836821, 250.8600000000001, 249.9, 10.424746940546555, 241.2157142857143, 245.65000000000006, 240.27960784313728, 36.48403704404285, 12.062670133947654, 15.556019905875731, 26.20100284931176, 12.263198871577027, 15.54902265125199, 16.51428803833769, 14.61052770145435, 13.008079752749408, 13.676456511664401, 12.751422970780979, 11.233325811669697, 9.036198098520588, 8.611919951261577, 27.59543251452678, 10.872632420241507, 15.151637532569426, 13.765441195061767, 10.335638754385327, 11.580739329312491, 10.160666261432802, 19.042795036601525, 10.600700201793755, 10.584145628738979, 16.573020023731303, 24.582583566286196, 11.601864193756589, 10.222437510087666, 14.931409802516322, 11.072802535184115, 23.610951786656656, 24.280984139171984, 24.890282925651356, 13.193510289362155, 10.879649073860286, 22.168808977403238, 20.419197016123363, 9.942207035117445, 8.420024268311234, 14.605960380156876, 14.454535564911154, 10.68747338201692, 35.69474634527984, 21.93926446064389, 10.1448069540688, 8.75837685278635, 9.432856245120647, 11.352361619008708, 10.484317934138826, 11.119634209911887, 4.6338208957242575, 13.857949064437454, 11.257179530909408, 14.798186948761389, 10.891657404471221, 9.089522936615518, 11.53762952253616, 8.230168249774184, 10.121511387859245, 8.882061599781293, 10.182605128796768, 10.34045363861026, 13.234324561403504, 7.4538062502998566, 11.102980399516438, 11.656185369085362, 10.046861940342753, 29.976529449363564, 11.526871159423463, 8.655423943376881, 9.162415679095883, 18.330235808968013, 11.912689052250235, 14.103134803105393, 13.505194765332432, 12.513067381501253, 10.680077152259507, 43.66533538030597, 9.760920233142183, 22.499459244869023, 8.392823400737274, 10.112024588449044, 11.305325877460591, 6.760835472233305, 2.0139669738863293, 10.56114268164004, 11.21355080545081, 12.270818502524008, 10.186877316679276, 13.246732792611214, 10.584021836109674, 19.23217114553759, 18.103716312617554, 17.08413377775031, 10.296932141287439, 12.61438453408191, 13.039122290950296, 10.794905175321032, 43.45454502874176, 10.091117291902421, 14.718132984709714, 11.991397787455059, 11.482783208020049, 10.677683000043883, 27.579034748091626, 11.440398560560096, 6.779626468769327, 10.261487427630849, 4.219851445020111, 12.3971874870835, 14.883629273155377, 23.8693616597153, 14.59842753533353, 14.875494128006169, 13.54847542376712, 34.47888607890367, 28.24938481101758, 9.666832032968836, 21.259089990903288, 12.41908177297226, 19.94996860934567, 34.91760928175156, 64.43456694042018, 12.904148904056871, 21.4251358014948, 7.994142655421329, 24.839502122409506, 14.749333391637915, 12.037808106070758, 14.842868348806082, 8.35728969696858, 250.29999999999995, 245.80000000000004, 21.64167901471954, 243.20000000000002, 225.47999999999996, 29.747838060255894, 12.57936769809068, 20.927786312680933, 11.127396511699757, 14.891687292949475, 172.76333333333338, 249.82, 247.22000000000003, 160.33666666666667, 242.23999999999995, 198.35666666666668, 199.7761538461539, 29.47529976251882, 26.115533530933227, 25.025547036606348, 17.357651631323865, 18.55534445326763, 15.302563127019777, 11.715753645744616, 7.992465726558191, 9.709731982739063, 7.867370716105815, 29.769958835523678, 14.595463602250486, 44.853014090689385, 36.484546176331804, 22.35490514248636, 13.850995835590805, 10.192219687589652, 6.617814177188525, 11.938405370762249, 6.820361566778658, 173.63680952380952, 11.626954713792692, 6.707591162460728, 7.064193674319186, 13.60547107735152, 6.669282880968479, 38.876782873874205, 20.159739803749925, 9.057592621319884, 8.672016175581797, 13.984586442320591, 5.705569579571663, 16.954534878826138, 6.654651868756596, 7.9421095327387885, 23.85163578255219, 6.3749118590713065, 6.109995354572254, 13.643388361732361, 6.047078698813766, 8.126596356596474, 7.780819051064544, 8.124474314436855, 5.978175017315639, 8.002827958190188, 6.370630761396448, 6.539542563615227, 8.100864885084103, 10.062502230751875, 17.577141999698036, 7.466160316414261, 15.004574429724656, 6.985744741759502, 10.370895402943628, 24.527620190744372, 7.32515394097265, 18.89471849908667, 23.849337614125215, 9.811889328465442, 10.454948296854536, 5.865154515934177, 4.3016178321988185, 6.630015025273802, 15.307033034675142, 11.84866175252906, 12.409198577611047, 6.100450256243455, 5.552594948061732, 14.849654003040007, 9.01128207037201, 7.656095292355681, 9.996882653437751, 20.301483121575192, 12.447118158794812, 9.560050813562125, 18.021000752231863, 11.417763440349358, 14.186866162714674, 14.033701680176048, 10.736053983053981, 20.21250133703125, 7.9121595152635935, 9.50937613716631, 11.300883457135221, 8.080407160078872, 9.289023461004065, 11.048290422296377, 9.395525170493135, 7.284953089302769, 12.643164170403654, 191.48083333333332, 190.0088888888888, 129.17270995670998, 1.273959726891485, 26.972906216439146, 18.20421461938885, 16.95855288507079, 32.126805843034276, 34.274641016522125, 25.80530266955267, 35.18936158346158, 31.2184666852549, 40.63224511237555, 38.617650323499674, 47.89698633205085, 43.8657264367436, 31.170043898350066, 16.351353055485408, 30.924679301340884, 11.527222500374577, 43.50427723257208, 14.510591384974548, 29.82502875280893, 76.34741409701414, 29.146519927642686, 37.04853403273141, 28.318333610726718, 38.06805946873694, 18.063641244449464, 34.03263256381861, 33.79217713249121, 13.254350903941214, 18.236872220373428, 46.79677920974147, 33.96004231100856, 17.181993367102, 14.279621626553684, 16.02657202536279, 13.204100896958044, 32.31166978238357, 21.39385203181669, 30.073435942898893, 56.77680422283332, 13.607907045166753, 13.702573200481364, 16.084303659008597, 32.72869708573965, 15.607370521252399, 32.18190556138776, 25.044277787464107, 39.511731115375866, 15.10369864459092, 25.010671940807196, 23.112121412861327, 43.876943468296396, 41.55885009435009, 25.62851435781761, 19.05289375627796, 16.280697297256122, 17.10100545395437, 23.844731086970786, 6.974963982367836, 9.807751792724734, 17.10972938325965, 19.631241341991345, 19.529168303690042, 22.063867354147995, 20.848879033797804, 17.36013099147155, 21.206921609973588, 17.12721961956172, 16.45679331111662, 26.97202719789018, 12.233653837643288, 14.089332862479226, 13.748111673241143, 17.189734313456576, 29.165790940947097, 13.921506845006848, 20.724607706592657, 16.82666833550082, 19.254595939191525, 12.966885717579878, 11.324721293988775, 16.547981935532874, 9.224921512507322, 16.419204207639407, 1.3848635033928283, 14.496849084249087, 11.694559329559326, 15.429215155027533, 17.58743219461698, 20.383346965899594, 16.05709046251903, 15.167271593305516, 14.595852580168366, 12.188989204707104, 9.808641700404857, 8.828121986222735, 14.492296882855708, 17.448825670498085, 2.0258333333333343, 15.085652949217963, 20.224809523809526, 14.003280346588397, 15.155954078888577, 15.652199273138283, 18.16567858213911, 17.15549503829504, 18.826494810744816, 15.288272588522586, 12.591063615359753, 16.524828960513172, 16.706166666666665, 11.218332602323674, 15.082628717119764, 2.077605820105821, 13.882094479826103, 10.988833860583863, 8.603796417665023, 14.898100908695824, 15.16605883724071, 11.218098058803943, 14.310444444444446, 10.530126984126987, 13.332600481218135, 9.831791510418173, 14.845590744521182, 15.125351163048844, 15.423592490842484, 20.250729493581154, 13.778203425229743, 18.480245946432035, 12.975534667566814, 10.783044222381461, 13.043214034331683, 4.436666666666667, 6.62778522557658, 9.68260796242696, 21.192926862945928, 157.44122932330833, 10.577675887275452, 15.827115452865568, 7.736804651560958, 7.470651064295774, 11.147497506923374, 7.226782671993389, 5.3704893537765015, 6.152375464629088, 25.27368523293524, 8.551786877324322, 9.70744690127737, 9.060711818606238, 6.856298089454363, 9.32092419324298, 8.681005633058822, 11.646604517461187, 11.224589425793939, 14.755162894754198, 7.848407381219305, 8.29016502077777, 8.821302826813719, 8.61223341284629, 7.533222274460223, 10.331762329288644, 12.329565213527443, 8.336383442301594, 11.064173455072458, 7.190856936981361, 6.615239089844284, 7.255941880874904, 7.257084848832039, 8.094077058931404, 7.017003814317131, 7.396629118055287, 8.12368638311265, 7.008099318442046, 9.047135285689617, 11.60933059214034, 7.81847559248237, 11.000072213075343, 13.93839357083506, 7.824654026114505, 9.370329844825934, 14.84653548118548, 8.791217532642667, 12.302700041974427, 7.571324253545692, 6.817440576154542, 5.151770316391479, 9.12441729474272, 5.889675009078969, 10.239635083326263, 6.693236561604008, 5.623043856870622, 9.364342741345498, 7.9609065076921395, 7.779819499380474, 6.431811271828057, 5.225343669250645, 8.222147976355783, 248.59111111111113, 240.27000000000007, 239.39000000000004, 6.654921525339637, 9.081670846532303, 9.603689427183355, 9.846758670536202, 8.675662309814939, 10.765382130540022, 12.639094276094276, 13.874370751265733, 8.49889313879957, 15.814671471835922, 1.960000000000001, 1.4528571428571437, 12.414666224456546, 9.791373319662794, 7.146884920634921, 6.4499869574275115, 10.222731198685683, 7.882975580002199, 30.185149187968143, 11.769828403954715, 9.956506348038436, 7.319945857105343, 8.299796231250399, 7.201897494526409, 10.543335330355921, 21.410407870384134, 8.056128567039693, 10.85167930380473, 9.111353326709242, 9.829384655990388, 10.523131039967145, 12.808021157468835, 11.178836303407484, 23.09901885470852, 8.362466888725304, 13.213364465775278, 11.352127201391065, 8.226183810030944, 7.876598224195523, 9.316873261062469, 11.256903305611294, 6.396146921078456, 10.2899244196442, 7.418039653331103, 8.8728746520916, 8.598953245381624, 9.260909923377875, 9.11917560119135, 12.245145522290294, 28.765676365140394, 6.562053508064629, 10.889746695828341, 12.618653285960631, 6.733219874546117, 9.983862288865057, 8.591484009138044, 6.653125321940754, 7.465992297235404, 12.290337612228495, 7.8239531243774465, 11.257847587397125, 7.089320169006088, 16.66679145744139, 9.285775199385338, 11.245888310959984, 11.350681508242145, 9.624061916886573, 15.20946157187212, 12.597628550037134, 6.148384325992829, 8.3739303674549, 10.723160978189068, 7.38140923087301, 11.331555164380466, 8.66186611692523, 9.481574562269161, 9.046190132221067, 10.430725220883815, 7.82443659918091, 9.368766379358224, 9.973769590993694, 11.413947252747253, 10.424019567360743, 13.94208135811557, 10.886836488214788, 7.858424171018928, 10.702060611902718, 11.825765675998689, 11.02599688581027, 12.432194642723662, 8.473598989898992, 9.243477188291585, 10.74264448915378, 10.681720541775876, 14.292833333333336, 14.130540051030563, 14.773937747596706, 16.922598112136907, 10.29574832477464, 10.047198675163846, 15.795912022620005, 10.296064890579478, 7.7554025236755795, 11.653587673369799, 11.62434905597951, 10.084555107927596, 11.525389406458055, 13.443302185839318, 12.470775703808192, 11.828642060377721, 14.007137768061229, 8.992740981240981, 12.279253115658289, 15.82676160833827, 14.086699772662689, 17.631444677871144, 16.6858974048827, 82.42333333333335, 12.140341225088363, 14.082800486707265, 9.70708888888889, 4.088333333333335, 12.033549911368087, 12.783537061901663, 15.712921547750494, 11.414682529974147, 10.906551075676694, 13.509788942695716, 10.307549783549785, 10.596681408331651, 9.01104819438592, 10.627780000867336, 8.825824787974375, 12.88938136261528, 16.50790652197868, 13.73861770707423, 10.770652484357509, 12.644857694153696, 11.028149425257508, 5.5548715728715745, 9.452348093105265, 11.439539488803035, 12.438613239073897, 11.15227829985208, 11.94942544134572, 13.122116724110969, 51.50705112168542, 100.24964835164832, 97.77575539946247, 67.61632023619656, 80.63000831352555, 91.483108715817, 58.74979850173466, 72.72984668015371, 59.076687781173064, 75.84228128809714, 43.15740023296825, 57.07867223986882, 71.09032846842817, 217.8625, 36.95172097114122, 11.567528258836733, 55.413162987104386, 52.83149948700108, 76.31360829610257, 31.556757717905263, 22.458843229268822, 46.35023112675735, 29.04239885122358, 43.589561201518265, 30.755827052032934, 31.150637941972203, 61.098987256624206, 35.26282835536159, 50.353002782904895, 36.237670952314005, 48.54241194006171, 51.1946333666334, 32.102029295181474, 43.649683269345054, 41.72337176454089, 11.212408646338805, 31.30438484062314, 15.511343804053412, 32.97482799675958, 7.154274464563769, 59.79485866180603, 41.87682721611522, 26.40985686059283, 30.692191364916912, 38.21143532578123, 64.63081818181816, 51.663973805168546, 28.753430370844885, 31.330421852094258, 11.551497879285606, 51.611102727511245, 12.844515963219347, 11.558465186728016, 8.649910418673242, 7.740055417380442, 21.862325702075704, 18.925721947410537, 12.141613748470627, 8.736374286498966, 11.057590324491978, 10.086380159900711, 8.952717675557288, 11.46695979445391, 10.588084299882482, 8.688299270301442, 11.878931421398812, 12.09578502978503, 10.824156088412625, 7.273690745898903, 16.345002721867548, 7.204630397062812, 12.07626095956724, 11.612654434315072, 12.084846440539163, 29.815746968717562, 12.191503506867845, 14.867575387989088, 9.908827474296201, 11.72500926380121, 10.692762737709998, 18.441992370059666, 22.60608209301681, 15.008970775158085, 8.215707146906023, 10.544974469411587, 15.548940081089704, 10.454150365831714, 15.485512331464466, 21.491942577030823, 19.679659431006574, 9.408994511924194, 18.17901852023012, 9.047221316705034, 12.562167861710433, 14.29265308062352, 34.64426984126984, 54.33138489736069, 10.84274290513488, 11.412760958847912, 9.890481751548469, 13.660467912859266, 11.57728319716092, 46.414690032190045, 7.717509803921566, 30.563645251737263, 12.623922806845677, 5.114588744588744, 10.441199787025191, 12.533472713308235, 10.978340057857084, 20.06329919333283, 11.806410228520383, 16.225386667537002, 19.23844200206449, 23.792604056927992, 25.5239222694471, 18.56298229336585, 26.477740406651677, 22.958525555635774, 17.516056044801278, 15.83238122461736, 14.449927563318445, 13.026316219609697, 11.622340388024547, 10.548310382098196, 8.45360333365462, 7.3632592854131484, 10.890492576782767, 17.839688690290217, 9.936684157973998, 28.222838755493726, 27.690417598565556, 8.914233529603068, 20.747708169496992, 23.234912992029578, 55.44145655294695, 17.12252238681811, 16.031425089114098, 8.487396068645548, 8.932223658297186, 13.415027383999341, 18.861733756391523, 9.516802406637144, 9.452384527149304, 10.960886428486159, 21.46636400820017, 26.958988825828825, 16.660572838802146, 24.737894044917837, 12.164313468245975, 11.203890576298798, 19.095678153891704, 10.073500722368065, 17.249123669610313, 27.651514890906185, 10.327629709144867, 11.203219359805676, 15.242525887386574, 13.515331658692178, 10.482926270614586, 17.52409121053003, 18.290515614370648, 12.613150035077666, 18.54066830720999, 7.3017796631473075, 11.881651024285281, 10.427960645473938, 21.21099271362837, 9.052898154126023, 8.228880672157215, 10.22842761398428, 12.27598614294202, 13.552488573779453, 10.683500229205098, 11.03011030645404, 14.057502839783705, 9.712882808058161, 135.96574578239563, 244.6900000000001, 244.60000000000005, 252.30000000000004, 199.90000000000003, 226.8800000000001, 7.554837711087711, 10.554620088212557, 8.502317766631206, 10.175458715976106, 19.822300865800862, 7.839696164939095, 33.46412103027125, 11.564434908026575, 15.922994902545858, 8.105955816989475, 16.06883356088285, 15.309656096138164, 7.679534976443495, 7.379555541018848, 8.470335788222783, 24.34406041366042, 14.76601127915772, 7.878972914944188, 29.325563770133595, 17.505462518665947, 10.274534186531328, 13.869406556867691, 13.081339184664728, 11.384052377583043, 10.936359608817058, 9.358035382770687, 31.47814419660665, 7.652060563069727, 12.520223196286354, 17.22258147001929, 9.522233830718019, 6.113563179024402, 7.306015390644061, 11.534943206152017, 6.787486404364772, 6.974774457475145, 8.708142707045235, 8.159461600185738, 6.768558716957481, 14.61207493491984, 5.932416716115964, 6.973806606298113, 14.302527637022328, 9.159265724317555, 20.289244114505713, 7.009126631472001, 21.174650943431104, 13.296980057657487, 8.227226611972867, 12.435889361238555, 6.852437059364388, 6.428328551185493, 6.644996381011289, 1.0430226480836242, 2.589738095238096, 7.764411249674188, 7.9467441676792205, 6.728920932218238, 8.279728168169129, 17.854741107485864, 15.273763160722456, 9.141641774109996, 21.04307708530586, 28.836666791020452, 10.166896004744686, 20.10661218273305, 4.951726385567918, 6.954112473101799, 9.629222214191806, 12.332570254603523, 128.72444444444446, 7.306052542482406, 111.80916483516484, 17.439761803393274, 16.299365553964286, 11.918236879062968, 13.887423986797613, 16.298197066247504, 6.18017512423971, 16.86063731934698, 12.782949808078103, 7.106805206429021, 6.692610996473208, 5.4457716497691235, 16.53430173580174, 10.470665243682122, 9.115358220631602, 6.703677481640172, 11.93357167199133, 17.076539470112994, 11.949070187122818, 7.052841899554258, 13.21783654153125, 14.735146239140514, 9.47472920015521, 16.20214572000108, 13.52438516074318, 14.267977828829176, 15.476534437724501, 15.503221893912276, 11.916849772357876, 11.456894867138184, 8.869429223563063, 63.597023243640216, 8.32331092185908, 8.337686573169169, 11.808976553761015, 11.720505556473833, 13.284995060702336, 10.886000278543554, 8.122250966822323, 9.987425857193664, 9.767965985193676, 15.351012755560134, 18.40125113099395, 18.619463171504893, 8.120332367852878, 90.72360531400967, 6.7009731323659745, 7.599976524532345, 6.1927161335523175, 11.1389932769516, 23.2590080805337, 10.0853497355409, 8.966959782605715, 18.124130744604084, 12.131900759760265, 6.02055008438538, 14.401562798493865, 6.944021731810726, 8.025399452573328, 13.7739073378306, 4.536270611826056, 13.07753281375012, 8.236015010411728, 11.441061408698015, 5.094321075083426, 6.014607880461975, 8.905469605873106, 14.132928774287176, 6.95905961593861, 6.672568121132838, 9.405662354896565, 9.30696407323254, 6.134610166469548, 11.667444695504946, 10.09380316267317, 8.443391350197588, 5.657542088271163, 5.434045956675313, 7.683300810399797, 8.140549294528398, 12.199255152994192, 6.251573919163955, 10.293625671952338, 25.021778329601172, 9.106430487885769, 13.884159872806933, 6.456910671075185, 7.885496695289895, 11.009205509399871, 5.807247916484584, 9.812995708223564, 7.010904851736103, 6.295603907603319, 17.163208679963212, 16.042286685359255, 6.447818160109547, 20.497215128282775, 5.517207980922131, 8.36881226015127, 11.793082107859176, 13.680458586436108, 13.556780675176086, 8.079304112326433, 7.470320726904585, 5.024272202354811, 6.46672433847459, 4.591583833236545, 7.129470205438261, 5.516225699623337, 5.131880787766886, 9.57916899566682, 10.73927531074491, 7.153215157188403, 9.886180927131281, 5.690337999635207, 1.698000000000001, 4.830038140304529, 8.94754439872371, 4.413026790392772, 8.772272081856414, 13.744203385785974, 13.811035992979978, 5.455075744674821, 8.58872449076399, 5.814719903592116, 4.987656680539625, 4.672914063261428, 7.9338018353389135, 4.3181891299616755, 4.8798258305735835, 4.658201157885605, 5.712822933689953, 4.47243036052292, 5.667609382377076, 4.248862650697148, 6.363783479232961, 26.08664457819124, 9.888929706112982, 16.167631704579083, 14.758004352920796, 6.4813924092862685, 6.962345982129978, 8.301936505154602, 6.255038800573683, 6.663251914743384, 6.429431343866528, 6.367713405411091, 5.215412641968474, 5.157248483563984, 4.5496130365181155, 5.367557290723344, 5.328711413966634, 5.706869983457237, 3.4430372647319456, 5.513341328776847, 11.371381028717982, 5.091331859005619, 5.93794234021613, 8.85286146049197, 5.157314610287409, 4.951845485308932, 6.618881008885035, 5.245921988729788, 4.318219685765484, 9.285107636934777, 10.642273346102519, 5.392691900436634, 6.6904637680414005, 3.9174316249572736, 5.597079267443968, 9.1506137925332, 6.244417896563201, 4.713474980757235, 8.59176425013017, 21.40585315432632, 8.258471104886201, 14.455435355319858, 12.62639366572125, 7.524762206751921, 11.822070787481184, 7.973149448133353, 10.322817389026522, 10.917894084342743, 6.725812901983994, 14.625318874362351, 16.188519395014755, 9.48650944713825, 6.480202867371733, 8.933462628164673, 6.4344284393504285, 6.761228109029677, 6.919145192468087, 5.56999392252027, 6.043698227717927, 4.80780497069256, 6.327520347878522, 6.5751805575532964, 5.359794362832484, 5.207128511430411, 5.124824653237953, 6.094444319313519, 5.718856359170385, 5.883750496406492, 4.941009856343483, 5.0897439561580535, 5.2358206983010005, 4.815473899885067, 4.373395498456729, 57.495020753756044, 3.917968463635267, 5.338990278131, 4.752015089322453, 4.451048138403338, 4.923464444648928, 8.31411792527149, 6.476077908843451, 5.114810630283379, 5.667084747235964, 4.91310879120879, 5.822543045289707, 6.7008997011581695, 5.098102062010502, 5.503929838846814, 6.4081568305049625, 4.8060328123838705, 5.145858596321395, 5.069545109165399, 6.01099903481599, 4.940704611078683, 2.2802352941176482, 3.642937682472568, 11.79482211554174, 15.8065718145493, 9.131210031758176, 9.582339684226056, 18.442584971638045, 11.834612547918796, 17.52497828145189, 10.817399457055766, 11.281710406660446, 44.11026761007771, 17.501657350878084, 14.64747838939239, 10.816797735637593, 29.66218142494404, 16.719236703248985, 20.646106249140654, 10.632809683462476, 19.785960196632292, 15.551862935434555, 17.486330909668165, 5.545964438315507, 6.303322184921611, 13.526622653073368, 17.30067535652926, 6.3357062830429385, 5.763342214947691, 9.122720270855403, 17.44892421775538, 8.37347175158631, 15.41486383950991, 10.383930156101712, 5.715116024834161, 12.554523853897075, 12.393107005498551, 9.67948176628088, 6.23321815404169, 8.57302430208972, 20.98001450923804, 8.483537521598508, 13.115144208432241, 17.606900477416783, 13.696574028943765, 10.510901565470437, 9.674337389655642, 13.408176315530406, 14.139179583220546, 9.20368423458724, 12.45718206673341, 10.636984209107636, 11.743746040428128, 11.376403668170916, 19.89375357945294, 15.464393996766187, 8.393604293734901, 10.140358073018733, 20.894047180287888, 17.264409238087815, 11.197700748177239, 13.698776612276616, 20.44514371139548, 7.198737422524866, 10.464076238190055, 11.220046421870862, 7.591805466686774, 6.340690434799292, 7.115688005305824, 19.430098469699303, 7.205211457231113, 7.6896175518090315, 17.47003841999877, 6.479054568718951, 6.828225051421738, 10.679747498274669, 5.306090062083319, 8.905220157426813, 9.848772439657385, 5.4537608217544085, 8.692304770127611, 6.2279408594647245, 7.230976080525407, 9.32618366724592, 10.353158844198143, 47.997764340472735, 8.89185270062263, 19.75304097227527, 12.470575224777642, 11.762367027740588, 10.935203238131761, 7.4620647981901795, 8.348203109305723, 7.670632786753478, 18.815083955620576, 14.989857159717005, 9.436966594981271, 7.39778944739471, 44.35088769382278, 17.639388344052843, 6.69997210684053, 7.862831877739597, 10.820542071167468, 12.425248021707668, 22.488675502780765, 39.85922552272078, 16.88896753317974, 12.091558982956046, 9.46881031508301, 6.886254007060232, 8.68364442728574, 15.182667240162507, 7.089458495351333, 27.148801924699026, 13.420768286220145, 20.11102087317528, 9.522615743649979, 8.934637460870123, 14.164457597807152, 8.284157474733421, 26.67016054450935, 7.097252530915241, 7.539267789748608, 17.93966126566462, 13.464222432996255, 9.253602220278312, 7.118842873547744, 21.50560229773715, 7.106935678542001, 7.906402427989796, 11.82260104054753, 6.915191263973182, 6.294608878162631, 16.039265402471926, 22.869426443503105, 1.7801428571428575, 6.630363794445936, 7.863988934372816, 7.202038431822876, 17.890909356479348, 12.669064819905163, 13.606571436025162, 21.37032652350773, 7.061951333784996, 11.692678069748005, 8.681233448743615, 20.448629291553996, 5.325447765814478, 19.341273705191114, 8.976387550185843, 8.94098823538135, 41.997508002866695, 7.963903600712674, 13.626927235088612, 8.378580523292499, 13.945956226423538, 12.841003992093196, 8.409408950880229, 8.800753121482709, 44.06548577510639, 16.13919709306485, 15.305914910602796, 11.36296709101877, 9.416353484907454, 7.731827873877719, 6.81157023351923, 8.01459208435509, 31.350165871593052, 129.21147058823527, 236.4353846153847, 242.08000000000004, 236.29000000000005, 240.56000000000012, 237.4200000000001, 182.59567226890755, 18.229094061339016, 13.923532859484332, 20.42951410479669, 11.90590737381288, 12.403131439197153, 8.015212020745546, 10.61393599944644, 7.42309717699619, 6.324602970646044, 12.199138737887758, 6.4791617407978475, 6.485386398951718, 10.910447808089328, 9.688950782040028, 7.946212254206645, 4.182677381626035, 10.450080514680112, 7.198226469469476, 6.564667403820998, 5.168345198818945, 11.0385557822152, 5.463746020270458, 6.259488676940735, 7.629797937066565, 6.211050064554903, 6.081309295631783, 9.470895623110845, 9.138386335349097, 5.941184017059684, 7.716789140525593, 6.606794840070175, 6.2939879586987555, 4.094368630391136, 4.570213673541791, 11.113589529379004, 11.395234664865415, 8.218604276292162, 10.061302028507974, 9.856972280577413, 7.056336276490379, 46.619900547358185, 4.015776081641936, 75.4809371168792, 55.327003437738725, 44.70712607655504, 4.5510564182194635, 45.245662655971465, 3.5708397360479096, 63.16140788840788, 68.99807171586585, 39.391205648926224, 7.389219864168377, 15.461621522900437, 6.5400987692456125, 12.351924106110692, 7.5381071341134, 6.2701830961057965, 6.7039410192065265, 8.609806178670025, 10.752583136212449, 7.979074528163911, 8.554437374624097, 5.767512920701969, 72.81638461538464, 9.226302034156832, 9.276175911282312, 6.58297033624599, 7.266385711297315, 7.85820949723576, 5.9148679783819755, 11.941318126585987, 9.735151613919943, 6.546211681159984, 7.531534761156246, 7.08349146741189, 6.271992335858577, 7.365474062373169, 5.330791736299477, 6.657341322518883, 7.1930455095527215, 7.368344471633953, 4.823349544072949, 11.30076596488703, 6.2854716761171465, 6.647222346530012, 15.529737582241006, 16.086479118962615, 14.535314487353189, 5.233754710408019, 6.024588283573623, 3.8083550279391805, 8.397804053057923, 5.224061005843059, 1.4809523809523817, 6.825697551285989, 10.311992358617308, 9.734215901558427, 8.175275609142052, 12.096941234313094, 8.592301325029325, 8.021424061023406, 27.7493286242033, 43.471012220000375, 39.373282407434196, 13.927827891830056, 13.078981249336673, 11.69781453385507, 26.381729360296283, 71.35745432900434, 12.498319224092722, 14.004147176305942, 12.360784827140836, 17.532913988862557, 13.030970028778452, 11.675497786571986, 6.191877961557562, 6.4548734328489505, 7.969419993450488, 15.284330653877714, 27.945644447474535, 12.338252997957902, 31.985896082368928, 6.9359640873778154, 18.608036236256268, 33.0736844894315, 13.477599744711624, 9.143097423051973, 10.238493068696997, 20.492472145952966, 20.30220437134593, 23.098261989250602, 13.186929167158112, 13.56893968416078, 11.887071864327002, 37.76914567132766, 18.26567430564781, 16.34364694454306, 19.27194193984795, 10.764048563994587, 21.90077720215929, 7.980558047915876, 18.56359588700493, 7.888457128894203, 16.10854465384952, 20.45434793083494, 30.79893391434482, 11.994047627606523, 14.692139743237771, 16.455195508893596, 13.27843472473763, 8.46538714513623, 8.444208776502084, 8.04567929912198, 15.302185103256528, 11.439488694482554, 11.497575131619177, 6.854457820735245, 7.197151108614215, 8.891029559919902, 12.414550941991875, 9.227398582308943, 18.23114359132825, 10.292063259033588, 18.293343912285888, 13.47338012531227, 6.931913251755714, 10.036250978528292, 9.750028478426167, 14.144359097088515, 10.097257506589198, 17.563099359232098, 13.810631861355581, 20.787713726691983, 24.166215402938697, 20.180453367693055, 16.97860203731842, 7.690083855929017, 8.12961452174112, 8.25635148844359, 13.170717916456535, 10.854176593763498, 19.99765259897336, 8.1545125888697, 14.615335858226942, 6.068109659611498, 6.77174617394177, 7.071596057606198, 19.88993695843528, 17.90886764850318, 24.004181198369828, 8.002251083086328, 11.11108611586656, 40.550016211575034, 6.662482419516786, 7.350766822825659, 16.164051533760357, 10.352221002370744, 9.302565950324379, 13.725356730785782, 9.032164127762256, 8.831419354658426, 9.439852687030656, 14.226907681660759, 12.47067717785505, 11.31995855936146, 8.997184778982218, 7.678806596203891, 6.473876837428955, 9.161998784715522, 11.522001098171879, 8.996762531225226, 7.618870042665259, 11.369935185911096, 9.872220015149317, 27.63644790093024, 17.393950019962613, 9.17482002407313, 11.800903452058408, 9.87869212631924, 6.896950092557289, 6.499123380754841, 17.43747823733551, 12.461221799735867, 6.907273523885078, 8.970662066918589, 8.484278470824572] ss_darpa = [0.0, 1.0000000000000007, 1.370000000000001, 1.480000000000001, 1.590000000000001, 2.479999999999999, 3.2133333333333325, 2.841666666666667, 2.192499999999999, 3.3899999999999992, 1.818333333333334, 2.3178333333333327, 1.8816666666666677, 4.51283333333333, 3.4455, 3.1767142857142856, 3.39935714285714, 4.890000000000003, 4.4642619047619005, 5.215833333333327, 2.2203730158730153, 3.4738333333333324, 2.383388888888889, 4.84099675324675, 4.398749999999996, 4.202912698412696, 3.297258297258296, 4.629690476190473, 2.4776706349206337, 3.9398015873015875, 3.7835746753246755, 3.984190476190473, 3.427429181929181, 4.501248168498167, 3.0603411212970033, 2.8278383838383823, 3.5661758241758226, 2.5414819624819636, 1.868693473193474, 3.703209595959596, 8.400609649122808, 3.6349201680672247, 5.194741702741702, 4.458728406827091, 5.62196681096681, 6.899766782237364, 3.8096919828537463, 5.430405122655123, 3.06800911425176, 4.056868307131465, 3.657538614163613, 2.458401317523056, 2.8229965179112773, 3.5274715007215005, 3.7687158535908525, 3.506609240175028, 4.552747538572536, 2.5520334030434646, 9.34090586537645, 2.9178267704517693, 2.4195636735269086, 4.0488287217168795, 5.510118881118876, 3.0474129791865714, 3.3357444027234022, 1.8931370368864686, 2.6420972129827955, 2.4446213567564192, 5.220454137795467, 3.6998157904187283, 2.173342800516843, 5.11564957264957, 1.903393630677345, 2.804830086580086, 4.206045318472948, 1.4550106686671105, 2.2255112942612953, 3.3395496954026354, 1.4332099437716959, 1.2127050997438384, 2.9346935958020612, 1.1034203454998814, 4.009285714285717, 2.9561428571428556, 2.098677655677657, 2.080904220779222, 2.586464662883141, 1.1895329433208692, 1.1671955253896436, 2.7068452380952372, 0.9369567994355158, 0.8636337884216158, 2.4041469404778226, 0.8137626854437792, 4.000000000000003, 2.5643611111111118, 22.52314393939394, 16.823712158808924, 8.426562499999998, 20.183271478549628, 10.513720845899876, 12.400890025575443, 2.011937321937323, 23.351484848484844, 2.1985162906390348, 1.3746893814997274, 2.999999999999995, 2.1475954247667444, 1.5217004078605834, 1.0585130623532326, 3.1143382352941114, 0.8407826146377257, 0.715427619469435, 2.2073425818247796, 0.6490851001875911, 0.6062647160128907, 2.1176562349610784, 0.600274622676035, 5.99999999999999, 3.085789473684205, 2.999999999999995, 2.000500000000001, 2.1583131090242067, 1.5073475609756075, 1.2173934378629507, 2.082327199255019, 1.0322808794533134, 2.0000000000000013, 2.05634338851202, 1.0290191449377502, 1.026611989459816, 4.011739130434785, 0.6751911600544387, 20.425191023030564, 11.512657880094201, 13.744576999798888, 14.68029850501769, 15.06398289093292, 23.598517276467586, 22.754251565717393, 10.255425962496354, 14.210675553072686, 7.556466067524916, 21.980760009211533, 10.136696530014609, 24.658961071295867, 26.258695294728163, 4.868184865772893, 10.735464534818275, 11.275514282138861, 12.705457473012125, 15.878749938265676, 10.768277342970071, 9.047628451949146, 9.797330511106827, 11.857095896572687, 14.230680280130684, 8.530682189403741, 12.821902723838722, 11.449930413528966, 18.023083213913704, 12.389448346319409, 19.879826978449568, 7.336608469331379, 13.383954857032164, 11.937183521585807, 7.144784808294556, 14.921697024524859, 20.388965119661467, 6.718427882294324, 17.49787838755742, 11.806454267483128, 6.284229536424672, 21.935964491814993, 11.583455783376218, 8.949558240754158, 9.298687622995681, 11.503190188317928, 6.036042963260912, 10.789808247815166, 12.907162030939377, 5.94899601114821, 8.100977064804095, 10.245667510213114, 13.84075436633595, 11.612974760858169, 5.488189573874374, 8.346411387373536, 7.29270129592636, 12.869281862201632, 19.279560234951433, 17.34356319284989, 11.66479577514873, 16.817033513589596, 19.342610753638063, 9.509798551944534, 9.811029936567547, 11.98474343471304, 10.734535088770754, 18.30357181737366, 24.76408865199801, 29.987265241282483, 20.200154517204478, 18.075769230769215, 26.28062316849818, 17.11214671497836, 15.582908293614329, 32.566346664264685, 19.90683333333334, 10.658238095238094, 20.86221302107882, 12.670045249841756, 11.71532490026764, 20.46602272727272, 12.967061057438492, 11.488870333478653, 15.879533242011227, 9.935429571103805, 5.620949253127827, 4.460399542709723, 10.106064806555922, 3.6672397903048792, 3.970233738290836, 35.444999999999986, 2.8352479802275474, 2.5487862445232623, 2.3202898852151113, 2.133473430590183, 28.686450216450226, 2.0297257776104187, 2.02696423636409, 1.8912887752062295, 6.762857142857139, 5.809999999999993, 3.0560256725854162, 2.13503511126521, 35.819001577642574, 3.507414604819809, 3.3051954887218047, 2.669531236637684, 7.924722222222218, 2.5514286233719914, 2.0296648065353478, 2.1775592456295114, 1.815564500990253, 1.9351467667402003, 3.6695387808675752, 1.8811281539868445, 29.094999999999988, 39.58418261511572, 12.762236427083291, 2.1748311120789796, 1.2419141830965874, 1.0600163322562512, 2.1486330336330326, 3.6667619047619064, 18.330833333333324, 45.051663780663766, 37.18191407050623, 22.817741815530262, 1.5412765725608573, 1.7456190694069822, 2.2151605718007765, 1.0358177588849322, 21.559999999999995, 1.9442513893429227, 45.7134001268654, 24.594494881048877, 19.34227178789581, 18.349089366506828, 26.492560511928044, 11.415371745681183, 18.14137010387509, 21.138093804266145, 15.581903015859396, 45.98478369626738, 18.064869305331094, 11.77836078459496, 15.356944205311924, 10.841617738245787, 28.902250486664656, 12.523239127436076, 12.78958232658759, 35.651456916102646, 9.960688594107333, 7.880708420773493, 16.213378820908133, 12.497913111715604, 37.47918272023998, 9.55480658853859, 244.03500000000017, 13.360376730855887, 20.79924524774912, 13.788111988671146, 26.39609057123859, 8.284953790184117, 20.06523464118182, 10.120934685293966, 7.507368228588805, 5.749118158256299, 36.6049032752682, 19.780537685154115, 18.629737488153605, 11.786915170301537, 10.81234815114699, 28.04973915361927, 12.944013722153901, 8.673324030698408, 19.248593739410897, 14.679690649217097, 8.189688196083807, 6.950381331619967, 25.551797846825327, 7.352131765413554, 27.35076299497259, 23.61059398840704, 11.845775719230941, 8.550899103044914, 17.127312716332717, 17.155369985038675, 5.849317089697884, 5.975848247678119, 21.167493935003833, 6.633742629368678, 5.6363184709524345, 5.185046583968273, 5.0283788081503245, 4.952883960626598, 33.42930676415059, 23.386942986897115, 23.302496560478414, 28.753987717702753, 11.771202684839531, 24.763682912119428, 14.325050457912836, 10.713410289679414, 15.95969388068072, 24.464222541635564, 16.520129542594372, 20.132665738481982, 6.887051021614137, 9.146161814097775, 5.720601793900731, 10.865756235761362, 11.373996546586618, 13.342420611611443, 4.546283865079599, 5.981457272605511, 14.033382597439504, 7.20449644724438, 7.73680460434179, 9.651534714447937, 4.559797157589618, 19.05661954898578, 3.4706396960406236, 11.195659477863035, 6.208188317368357, 12.943700046685342, 3.033955944506185, 9.616493811271289, 7.457614652262489, 7.348910829146734, 13.103792248802959, 11.499623324457023, 8.938691198855143, 8.349450224044961, 8.656865900816703, 7.145013478302338, 7.895685281170885, 27.727432967167633, 13.746895189543004, 10.462860547840098, 6.031695461635422, 6.029147390576696, 4.53861696828733, 7.8423781843944385, 9.130002451882612, 6.741542840343842, 2.779968935292475, 5.123017577165726, 4.593717321922908, 13.636623004964967, 21.77844401071493, 5.066349869069471, 5.288846231713043, 4.321438355040963, 20.506782159017455, 9.9044538325286, 13.57008958425475, 12.61443658400535, 8.612826519378684, 8.561299034317122, 12.066318952687679, 9.467474654879688, 6.9880274250534535, 5.9996073570826285, 5.450653581012825, 5.001301166155992, 8.518187510390897, 25.308356502241022, 21.783660658866246, 30.26681229931892, 21.537204240189812, 20.06917537618217, 45.92452902130076, 10.070388524016337, 19.906508795952284, 17.148298320140313, 38.71697469097971, 14.169934223776451, 28.419207719785156, 29.23481779327198, 20.540966602448957, 10.61732599309336, 17.125848461509953, 22.802279918943846, 14.602089212859598, 25.847657014009958, 13.23258512237208, 24.140060564833, 19.661354277607213, 11.310177354623926, 9.329390271024073, 36.92760300457664, 23.278955740206214, 12.41365519769936, 23.215365059473445, 11.560709075962965, 21.1116451236759, 13.620871845604274, 10.342745812249124, 14.881613072654753, 19.328456902305117, 14.767697336762946, 20.139730838332706, 11.387892925572055, 22.746668598656385, 32.97842880579147, 30.69055873619078, 13.278763914003697, 15.031693390750345, 9.326445973658439, 22.859974593117876, 68.41021507929304, 48.0373083463735, 35.69824833589349, 51.47286805293713, 42.9364854924998, 12.327627247193423, 5.496658775120707, 33.25089586222166, 6.791897623911612, 23.11685956720887, 54.98972940927319, 6.096129823593552, 27.73132625348307, 31.18174595224029, 16.286335150450007, 20.31293858382927, 21.618104010194735, 36.03968935450515, 17.33335754994781, 26.414912110893873, 26.3130801975802, 14.119916578966269, 1.0887443702516166, 0.9529948439795366, 31.73418037518036, 23.126618741765473, 19.170272712194922, 24.18228289602554, 21.01687266073192, 11.79546787134047, 29.326537116392387, 34.32353646947279, 10.852152979373566, 13.480916123336128, 10.822904507645926, 1.0050661474469051, 7.285721310044935, 1.011575033324619, 1.0108240754702127, 13.513453573157806, 1.014976243424273, 0.996659566257686, 7.409257977930427, 0.996659566257686, 5.695446029134647, 9.454592445604067, 5.579914440905009, 4.514954914006704, 5.920371397066981, 13.292159277067995, 7.498223149554265, 9.649635903450816, 8.415063001784546, 5.523119047619042, 11.404517388442551, 16.459108895490473, 33.702513452730855, 41.96827939174687, 9.474470284689431, 27.596687465059176, 6.110448336896832, 13.16504098396789, 11.733097010649287, 23.137517272345054, 27.841498293124886, 26.741109217171715, 6.450372948396629, 5.283967755420625, 8.652681128082442, 34.20704106651308, 4.876998608957933, 15.026623586750608, 3.745074961493364, 3.3994762465193484, 1.7969310248208155, 13.780981570864517, 2.2184992826068304, 1.9710058591504909, 1.5140223762472782, 2.813483891733921, 1.432799671307571, 4.258499782958294, 2.21075144390087, 1.3733257567516166, 1.8986544844848976, 1.5496826635863852, 1.3694467590025994, 10.478933606880881, 11.34870707070707, 12.642233471666598, 7.9425259960778165, 12.63870851460842, 15.340439817215163, 9.586457843258406, 13.618131682423993, 48.688479736187425, 9.35273984146961, 12.626524914473089, 15.010805614908477, 10.970843876841048, 23.21213552611503, 10.542430243627813, 12.827185344908553, 11.73021341039272, 5.699770379000489, 10.741800968197971, 14.192465699608361, 16.078168822043033, 17.728148400464164, 23.617333914830056, 17.102934907007604, 15.180549745456936, 42.10749477690236, 14.951302398709329, 12.462447124888275, 15.066860047601667, 12.111703359470711, 7.584498824930837, 12.904043430743396, 12.82061929232923, 17.604521461821225, 8.504182576590093, 11.456022302177535, 11.020784335568772, 11.213571691409609, 5.9794920418919295, 56.71439913454364, 14.68995415680498, 7.346266793721143, 12.913105132728248, 6.605866305559149, 25.362088794098252, 10.953021494913052, 7.612118325016952, 8.03248281575402, 14.443625362240594, 7.355212227967408, 6.869671146449533, 10.541885390210947, 5.8194305317906885, 10.777269887786895, 17.04420848009291, 7.279165570434773, 13.406703969516977, 7.426808734019915, 9.907547749799415, 10.168016872206278, 5.709903659328264, 11.641242637205595, 26.932349493541068, 22.180730867590746, 22.264108460810515, 9.935230916806985, 12.862982934764675, 15.715520241572177, 20.16788906633114, 16.329423131254508, 7.714011892111158, 6.594601318970886, 14.901196969696965, 16.674677088678344, 8.315899221385612, 8.915080089587061, 7.282869699449662, 7.147608312566197, 6.645307565467628, 10.995874948764135, 6.855027025013083, 15.521779571697495, 5.915179201746967, 11.276585468090436, 14.35010595622128, 10.594604905200462, 5.824836309921373, 31.80602164071722, 8.932254726571227, 1.2315129933175413, 2.679958994708991, 18.28790799489079, 6.826970722889062, 1.3318614821943433, 15.819999999999993, 1.6188526929052833, 2.1585926522830716, 12.266063543819916, 8.557907524734896, 10.959474882516995, 9.862073623353822, 18.602314048873836, 9.822155001394503, 7.54406180894566, 4.799437813221521, 16.577353341696945, 1.5205111335408026, 1.6600373005320814, 1.4591574276029395, 8.539160320013407, 4.662951196129701, 1.1623253019954036, 1.930985753643356, 1.3256483232805423, 1.283673323747705, 7.804969433752519, 7.250992471377212, 10.904999999999989, 1.3157431781298692, 1.144683152479865, 0.8425320236054483, 5.965557050105038, 5.581968586155409, 1.8392185036242754, 1.0132537893455118, 0.8191558636077256, 1.8510500285128615, 7.724255049439972, 7.282175186848784, 0.9480295885356235, 0.760967857034902, 1.8609819250871094, 0.904357325331737, 5.909898040166069, 5.453602990602448, 23.772495874724054, 16.59744311160135, 12.693668075093978, 7.340288728120125, 7.291210035966378, 12.038879492529398, 11.858829396882491, 39.298178766112045, 13.10600168021963, 16.49099369923385, 9.419748911147522, 11.810165280771031, 11.956741803940433, 5.735748962666822, 13.479204137021432, 12.517192630890742, 8.92647571647413, 37.43123781835234, 7.114227492019795, 25.119054218319725, 12.580798333958489, 14.137583829280272, 11.320858806370728, 9.639072656194257, 11.936707000769761, 9.217195746201291, 9.77584578110488, 38.65949582137876, 10.223815967051674, 12.142581614209963, 56.04555893551711, 18.54079375322625, 20.088993914304694, 13.82864904050147, 8.979043811973979, 11.468908458876223, 25.802871016749712, 180.9825568086885, 6.101296688310697, 8.761825361842044, 11.87891601442327, 6.783934650174256, 7.215746053015849, 13.100833865539625, 13.372303376647684, 7.876130261165425, 12.783314189423256, 20.782809768802757, 14.641967918569616, 6.625361959817771, 9.06905540664363, 11.517543644590429, 13.004272268544856, 15.643495117143656, 22.619186362351375, 6.917777129552555, 25.059387484260817, 6.790104714133695, 9.91461493133381, 13.332056822204988, 15.15057458975764, 18.13047946858017, 14.16145529709357, 17.713861007311934, 10.102797917964079, 13.954465709294922, 8.571735192611696, 7.769418455891817, 12.026951902325042, 7.21831665799632, 13.458246898628635, 8.816399742348352, 8.904905164015595, 7.262495761459302, 7.3741384990329015, 5.947068401399592, 10.348925798988615, 8.592216986751696, 6.642030532139068, 6.167063388127718, 8.501030698914123, 6.572136352684134, 23.967217670011152, 6.8762586840906, 6.566611499638761, 15.924358720740663, 4.231436389477771, 4.428768095894741, 6.887155406334468, 9.15922832182992, 22.137024614274615, 8.998919600000248, 13.983380254141625, 8.526097223845305, 8.210266962750767, 7.290378668649057, 13.668040507601347, 12.447295726015199, 5.9553998778998745, 6.71061587729277, 9.094790019255177, 4.731232555410073, 5.966675557013197, 11.972010680477622, 4.0779999223966055, 22.712945404064882, 22.20509699949429, 12.25311097730295, 11.977819125952411, 8.182541352318413, 9.559857581666316, 22.318237548222747, 14.034889816871766, 8.3977447551499, 14.766164281448688, 11.949313193286851, 10.307273642480196, 9.420827811552567, 13.452329832087443, 8.280864535666531, 20.560379675136257, 17.04756146180937, 41.38196601335678, 7.0571620933136305, 4.372046760746967, 8.872167815594668, 10.890450872134362, 12.657213168166255, 14.81810671840505, 44.31356690632743, 6.454027091369181, 8.128942797278297, 27.232676289533774, 6.212323667243805, 7.63817024445514, 12.654837531314547, 12.071009481798484, 4.8595436359313355, 17.215619574592342, 9.428215601638724, 8.248950359535723, 10.516057174148676, 6.87589388511499, 23.222280113234582, 5.506608321159418, 12.920775915518746, 9.800113773133182, 7.913940668073627, 10.89601753364319, 9.44881324066347, 8.467634130751584, 26.252642051679594, 11.089944324467705, 20.475170054264666, 4.987966428706756, 4.363050897186688, 6.995878742415861, 8.293172993716826, 17.428446593389218, 7.105926292236005, 10.776638401941272, 10.97005225805469, 9.895152485510463, 6.264892473069576, 8.030335164106763, 6.086575208985127, 17.298724440541857, 12.836324617194714, 15.031030573410925, 6.396712137187184, 14.338565395485121, 5.436827024504259, 8.978311694806147, 10.619938171712167, 8.434095391877893, 9.7194662868619, 5.453591724317822, 9.600779251265589, 4.0807603533234165, 16.42658125225845, 10.506116003945177, 6.054157331179884, 6.187426027094637, 6.249204759957194, 14.184059515023703, 18.695153976312646, 23.92260606192053, 4.522098359507785, 11.123242898452768, 5.3145270754152945, 7.912813254366686, 5.668958690147181, 4.483772192829837, 3.641391912776852, 8.602068158519783, 11.358358966108964, 4.725736652236646, 5.693072845725929, 14.94789612430053, 5.749379488158895, 2.940614152111758, 2.497453487565711, 2.2157165033741815, 2.0253252497653116, 4.955604905878319, 9.027661512277792, 3.6550000000000025, 0.8480476386998623, 3.7841852632499573, 17.68121759581881, 3.2860805172980663, 4.12204165279165, 6.561262561512566, 2.6663776235153787, 1.7689085838780196, 2.3944260884959343, 2.68856043956044, 1.0808575767958963, 4.866192295714912, 1.3285761825311688, 2.238805133694772, 1.9226127502528436, 2.105567337642912, 1.6004479520003583, 2.0054041424094677, 1.4371029699370932, 1.9215577417974545, 1.3023965152321806, 4.308066057886271, 1.7793609548495177, 5.774999999999992, 2.894999999999996, 1.9325000000000008, 1.4504999999999981, 1.1610970873786415, 1.8414156837882927, 1.0047663494744836, 3.996108196609129, 15.136781011624038, 9.173305856288557, 25.769127142603306, 14.763765762882656, 8.726554389224509, 7.067189052988001, 8.22077130654253, 7.7325207323996645, 15.423378875866987, 8.116651543645624, 9.977361623533142, 9.84869609602446, 7.299915421501547, 5.0895403407974955, 13.813640331617703, 20.508674385947, 16.977934095223404, 6.341188242776426, 7.004975300173089, 12.651480588727358, 10.260411334057226, 5.6143699056913805, 7.4355401822705405, 15.73596210874655, 6.618648241875991, 9.44778001932911, 5.218315083118475, 14.646475720375896, 8.463351663652155, 8.192681260178324, 5.38014069419807, 12.411705566331843, 13.404117078447882, 5.723196269428659, 8.254808894213868, 12.101344791977517, 11.710513107443004, 5.4116401532912155, 33.13054071956593, 9.133268473476855, 6.214723860591404, 7.631950164551208, 10.586268052141238, 11.284491874894838, 35.69997785092072, 8.674442355396549, 7.238159048733384, 7.66718628949102, 12.35659032125246, 17.339432170105344, 7.610582211470712, 11.305576478112197, 28.485527478253783, 35.06110573026734, 32.6027045791689, 12.636567874474126, 8.416267725812071, 5.912103415800921, 18.4673401638803, 11.019282232271728, 15.474405452528721, 26.292933675405298, 20.289484198797403, 10.18859837259503, 7.835117984766176, 4.776678213574277, 6.271431935834305, 10.423471227385841, 11.79020349493542, 15.74102501199912, 14.435459589650977, 14.087083132301345, 6.978774520495257, 5.980703588010667, 4.833073068955142, 19.534280114260795, 7.6344497902945525, 13.06792920037644, 13.47125662655253, 22.54022686221825, 5.426312271062264, 3.6996883588833773, 3.5532329950754535, 3.0883504764266783, 5.94999999999999, 11.236579885879232, 6.377714285714286, 2.832176034686392, 2.590816184138952, 8.648935431536316, 11.764346434815106, 12.180124083493894, 12.840934793893137, 11.480358863358862, 24.03889358671704, 9.532327009842298, 7.280763650571108, 18.92557597468413, 14.366770913770926, 2.9811111111111064, 3.941457702935566, 6.841565656565661, 13.799899153149367, 2.347437123565293, 1.9910000000000012, 4.178636363636366, 2.545872991073724, 3.0436172161172186, 14.912645529676498, 2.2683305737050614, 2.4207011847039306, 1.4968181818181794, 2.23636875049901, 1.1996666666666675, 17.196749613667805, 2.4389744394296664, 2.0925292559630937, 1.0049125173676905, 2.0924239338368227, 1.9173027088636356, 11.85962884349734, 2.0160393757870203, 9.508574008616874, 21.452564675543893, 11.430875244568853, 17.62568229551677, 36.84437631738914, 10.95747428026701, 11.50835958032721, 9.282457025474649, 21.807421312295364, 17.70732488202972, 33.991041971532276, 8.286797689930092, 6.76646617225508, 8.553132548523838, 12.46188486465064, 11.086333111256192, 17.515819611523472, 15.908069134525082, 16.91259395974142, 13.356835360514483, 21.086999459203255, 6.543300530201449, 21.393478022267956, 6.909415308609889, 7.756818369456049, 11.347724632878366, 37.324621087832746, 7.070332418400259, 9.717147455523612, 17.70724872919387, 8.053205045664637, 9.851709426007524, 8.297400657616006, 14.569121098658764, 7.594758289180671, 6.447995172101054, 8.589775399865843, 6.912592253107444, 18.376895855529504, 10.528255215229239, 17.804690904791126, 6.602413555148573, 9.670657787384348, 8.417110318567842, 8.01904452560052, 6.542043570310167, 8.499285644207443, 11.961148406557246, 32.73423098068065, 18.264103739141216, 6.184695520964508, 8.043825587028538, 16.576416389861294, 7.351632109152231, 10.737562505675452, 9.753683278849396, 9.897755560035785, 31.463126733927858, 14.762390236679442, 9.628954468296804, 6.096271889167021, 18.666225109567705, 6.570006637069742, 7.586511536905799, 17.219548239495587, 5.868234196671882, 22.122176948642622, 18.99556069619289, 7.695555905205221, 9.202496773489386, 8.913655016157698, 6.354024572433797, 6.978747826149337, 8.855672102738863, 23.792190570664406, 21.301972705224966, 6.690201027666149, 23.575566392525246, 17.944004894553224, 22.94827478147792, 19.786260388504108, 16.835224745812837, 8.582082457764475, 22.69117705881371, 23.12247079711276, 10.18060525554045, 5.183055359802761, 4.532801795193107, 7.360942036892573, 4.54621177356854, 10.188853514193793, 7.553386158213554, 18.562229649619624, 13.017299020858848, 25.418560936401917, 10.79943491702932, 38.10811911695932, 22.149770388746575, 8.297845892142606, 12.507031405123643, 10.690161017701218, 28.042548589407733, 11.145417468089239, 4.574633146258007, 6.353785540989745, 9.585637720050755, 16.485807681873514, 11.83112991879084, 5.356530564350489, 4.6843329185104645, 4.250206455379101, 8.349528745166092, 7.636529539095805, 10.795786376093082, 11.26386285028871, 10.085772673990434, 10.913120136824682, 6.684367746481439, 7.136688540539338, 17.8475491006229, 3.8984931062747994, 3.6135796186713995, 3.8555245234880724, 7.233049000664044, 3.3067479593797344, 3.5639111232425082, 3.6224344029993127, 3.01498121992654, 3.0494214429308486, 2.8610463883439166, 12.993447732822736, 2.810299854538931, 2.9070068152844812, 11.668434052426166, 8.292056002088957, 4.083937337872839, 15.2006929147257, 7.133047697219125, 16.683948350949063, 8.190552548062865, 15.3261811641889, 7.092443469002854, 6.673302238521932, 9.194777078646219, 10.356417986865193, 7.623149433597165, 4.696772978569169, 6.102664204328861, 6.228383878838032, 5.095761519326567, 10.474668228429485, 9.6122299450215, 17.79280168194345, 14.353860464690314, 3.8845320585250684, 14.582875627494003, 5.8667316597431425, 6.695883510042053, 4.460397400813121, 5.309708217244453, 14.112333211828236, 4.454023809523807, 1.7209434364209812, 7.501069927363656, 3.05964727747201, 2.231378187397309, 2.5431320491547384, 8.559906744458777, 6.383738156205445, 8.619651911511994, 7.624509039607413, 33.80794171082916, 9.851030505353668, 10.24045260587055, 6.377835168813295, 8.657103574993737, 10.230835312970683, 8.278184538435854, 15.000794976952509, 26.99597474203567, 6.878866403778402, 12.65544374421609, 28.90349935943891, 17.630297953722533, 6.248574617058403, 10.731499367195468, 6.576691363736465, 5.9328058542357125, 29.496832613139055, 8.250169751378175, 6.297976861827701, 6.111229375109799, 6.308094230795693, 9.26111999629297, 9.500832889659387, 5.7550226455483, 11.236804368945235, 8.633726686418159, 14.169335768475886, 6.937682883337695, 11.400539906767104, 9.75142525057871, 8.068621295661622, 9.336237007739188, 8.654281591779887, 6.243440146201102, 7.410023115439904, 15.19616125541125, 8.620031031555852, 5.279657443828585, 9.646077703272157, 8.349166580917336, 6.471181818181824, 5.58326937031252, 9.601379768425003, 6.888843888686911, 8.613500737451977, 7.549204932314923, 9.47740650863462, 12.529583333333342, 15.049434005802656, 5.208561720407792, 9.240626815879278, 11.86314863511695, 6.622361664364129, 12.328611405164038, 4.6841319979455545, 2.0753041081116934, 1.7667315835807766, 3.4333325311883867, 4.066464927971371, 2.602324175824177, 10.1296350209826, 3.6093971951896666, 6.324147667127754, 8.060816184212262, 13.50932923772135, 15.604202270381842, 5.693356227106221, 2.0000000000000013, 18.633877079944586, 7.5522787051472395, 1.219566148527356, 2.1400451733110866, 0.9912835873577488, 2.8346126717261866, 1.5565652740276128, 2.726849247605899, 2.4494587877759524, 1.3665793457040114, 3.5140895023827596, 1.0684437445592712, 1.3012180860486338, 4.236669184186701, 0.9971325024052778, 1.3111347400700004, 0.9368538844029584, 3.9937612467005144, 2.467940878207274, 3.398511509239516, 2.498924366138273, 1.6211580392436031, 3.517219775274675, 0.9623241266824347, 1.4245386849340758, 4.354576708523679, 0.944635696126249, 5.909020202020203, 9.119999999999994, 4.020610933082907, 6.812669238905441, 8.723590524832693, 12.776180226938799, 8.104408166432988, 7.267930989327815, 10.284980153119365, 26.06467693158475, 11.626460009746335, 12.667067648804334, 9.248669178955524, 16.234247064484613, 27.867679222945576, 7.277121003002296, 34.871195146765004, 8.595432306714894, 13.850441173900641, 8.052987397970467, 7.334885224697135, 4.339423350272662, 8.778586704722054, 7.884190740795349, 5.627314429947791, 5.068789259416521, 18.74713172353898, 11.769643893290844, 12.663629726265077, 11.320225998079126, 12.899885551533469, 30.279074130247118, 32.99648169934642, 22.993628154294708, 26.5824482412975, 7.575868337696808, 5.9725125482592825, 20.322052087224836, 8.004834246688866, 10.049146294468946, 10.091925988984205, 15.447615463916211, 7.234857261332721, 9.528379756598556, 20.756068812047744, 10.62250171175205, 9.361374897060749, 5.719047267652582, 169.5790175438597, 7.740466789492054, 15.179659228059293, 8.62040445620497, 5.055436164285702, 24.910863142549506, 13.911141040452963, 14.955275846742996, 5.439272489635966, 17.095496717734562, 13.954592288287904, 9.641495559855526, 16.44962043629882, 32.4586463742135, 4.955569031901872, 11.520149517328795, 12.420469988652737, 19.127264644600668, 14.486158651311706, 18.346018284844455, 10.10486218500212, 10.38263651372912, 12.842028614383485, 6.633485509658847, 23.43487567014159, 16.876727241667716, 19.124946440207662, 10.201100406166434, 18.929055023428774, 10.717727141946236, 16.66135867280753, 5.632800359416001, 11.608564885857549, 7.486091220422492, 9.8693816042649, 7.7048210115296145, 5.304883938613756, 11.884402204879269, 4.823050161127715, 5.3043386086344615, 9.711096062720852, 9.077079823974987, 9.51887552759523, 28.166928291228142, 5.362804991217006, 5.09348218961488, 6.9518550275329005, 5.623881745091006, 7.358864164967655, 7.061304083651485, 10.22716438209695, 5.590383081514885, 19.222769909078384, 5.925293076972356, 7.263163238322194, 12.23818984126581, 8.98910656861015, 9.249962701584984, 9.042781610165344, 9.396497383201131, 6.422211046471483, 4.663843017511887, 6.381670647972469, 10.682653025521885, 6.023147816887465, 10.454872088773435, 6.835593422833074, 19.376181149452986, 6.504879293833486, 14.896689195111511, 23.33951632265734, 6.985246515949638, 8.384601748759756, 10.754712923141337, 9.613310401941746, 11.071776245579949, 10.543305095961829, 18.709706907787552, 14.988187982375994, 12.07252631092087, 2.4851953467119183, 31.163410015018265, 13.107781143306294, 2.1055192829480385, 11.713160296769093, 13.714121496399153, 10.489999999999998, 13.948628549786513, 7.556466354975901, 1.910828900487617, 4.197942475878274, 17.91858145723743, 2.1515119348013036, 12.908987955940168, 15.37803552885486, 1.5049989420080403, 7.356786283161277, 16.262052904380134, 10.80983073081638, 9.428523145746794, 9.940534180301979, 4.57833333333333, 7.560422533349002, 5.398782873148676, 1.5809990453818223, 8.97572966497781, 9.933022518495795, 1.338711978752055, 4.280781610266481, 4.829751953375635, 3.7827687142435593, 18.796974958949097, 7.619462318807719, 8.329757575757577, 6.445674255055621, 3.570894096991985, 1.654516082673085, 11.192477060429503, 5.938803509756304, 1.4347003157219222, 4.207443924762071, 5.985091576619338, 4.568872549019606, 13.271238095238111, 7.0602180386663145, 12.956153846153837, 12.572908818713715, 11.19818236425992, 7.662345422650591, 22.462550607697175, 5.749124250839707, 14.748066962344831, 36.926568233316225, 16.800931396177138, 9.77928476147765, 22.449159712343626, 11.232733881045174, 9.020993991398988, 15.713307401331564, 17.579980105124317, 26.697581038218992, 8.51404613214475, 6.438445351781923, 21.54248125545025, 18.218163668212114, 8.227966101676124, 21.891083397439395, 5.982322383887943, 7.352045286531772, 20.46649352472384, 11.393490585513934, 5.152677992356305, 36.32259404261136, 9.976073039383099, 8.530964374104526, 14.689039250550332, 13.01107052937015, 13.904201175978855, 6.874346762912311, 5.700486999147892, 11.251651011051617, 6.854471312267238, 6.338923491940402, 11.037279295038234, 13.983823592616254, 12.517301728767459, 8.230771581995096, 16.929348226904963, 4.3109768300328914, 8.078904589591541, 4.801812812088941, 9.355025186341773, 14.842521711885043, 5.145808051535352, 5.415686478297753, 7.49337161482619, 5.107383838401341, 5.101639078273275, 8.618964047922729, 10.880244460599615, 6.577112013465215, 4.532501473123066, 13.273268087455175, 5.357280408164965, 7.604798551768908, 6.725441651455861, 14.875814896179266, 14.78074309504367, 18.623540435971307, 14.672815967437142, 16.56341009925747, 9.239550299068487, 9.335636478625123, 10.361800495994604, 11.371027040331205, 10.980188937951981, 7.3149092133963345, 9.132921479253707, 6.2419373893845025, 8.275819370814977, 8.53742897268321, 6.55096244666536, 7.757044431981772, 5.575749288504826, 6.4181669043754415, 5.6627161636290255, 6.03812640885157, 5.12812056094929, 6.517963193728795, 5.937629871052503, 4.41811995892527, 4.981339411431388, 5.056023067328601, 4.198298516217178, 15.866758150986444, 4.475382334625151, 4.743183267910339, 9.258685698027367, 6.450249516062447, 5.533300493220226, 13.63379787832325, 9.200417100643946, 6.084099367143544, 6.701353088672744, 11.26121829085309, 5.164527759490797, 5.109033496649392, 7.974143157619374, 4.645838172751554, 5.690035984080689, 23.09629212231959, 10.275066064103264, 11.505831157963126, 2.783925598937501, 5.623251372906096, 8.633957332212818, 3.968354674307569, 6.48829495703361, 7.918232579887456, 9.784409783236308, 5.667395957245646, 6.189573210745179, 2.8733253268564964, 6.021786354326675, 12.696971500721505, 16.489928300729773, 15.183534133604711, 41.611041844712126, 12.429679090345514, 12.230605873295861, 14.191148422866176, 8.480960733428377, 11.60613735530176, 13.330608160925927, 11.748346606151644, 5.738335629255058, 22.743830717945013, 6.178034055436292, 41.400039253967556, 53.66065898461756, 70.95619520593651, 44.559862154526165, 45.23678575050709, 21.299026257370155, 7.1894214325324475, 9.704788429976231, 6.547328175771124, 5.582541683104852, 18.302542099803674, 167.71200746965468, 8.433992091507916, 5.945571354627371, 10.040191917653294, 9.097666474997748, 30.987578991772022, 6.160199299905887, 5.120993382850251, 15.22172778651788, 6.884275366100314, 5.843040026557467, 9.330000125648887, 6.259061919354404, 5.315805484663967, 13.242743465830372, 21.685203347750676, 14.338426626951703, 7.573702729374941, 6.260718543922484, 11.113780468882434, 6.0962022983436, 8.667754953404812, 5.6916100996245405, 8.389544954802039, 7.291736981327285, 12.41359264731847, 3.9371035287408933, 10.146304567313912, 17.78933126466492, 8.45440358915145, 5.233436490197918, 7.159977051074606, 8.957131616743258, 4.95480171894381, 4.913772826681673, 4.615022849137175, 10.770022091437147, 9.575794590965247, 7.723103002283248, 11.862407982979263, 7.777699746405494, 12.552273160496426, 15.845507360908018, 13.19135209447192, 37.63984132458915, 8.910555547425412, 7.63974460011164, 5.258033843962162, 27.795957890390397, 6.372743869898959, 5.196570304225371, 16.913718600967993, 11.603993747292602, 5.419383694343092, 7.120426062776444, 5.73175244534996, 10.285720892361041, 13.46836176397692, 7.704002379252475, 26.683509331548816, 9.490236225218649, 18.619952256019502, 52.88997108191936, 28.48749936191104, 57.79837390215028, 28.671180544945244, 23.143804898932302, 5.381687778421392, 3.229918627126736, 2.024042353963638, 7.614357475656025, 3.110451134051778, 4.912278080313405, 3.2433969297700744, 1.851696784594836, 5.037557004629338, 8.999889086114871, 16.818224855918942, 1.993990744756215, 10.168980305212507, 9.518048463723934, 1.6189545843349302, 5.591023200580956, 2.760793680655093, 9.152871555429904, 3.5129036225752137, 1.359456787970062, 3.7931155097262295, 5.473491380083567, 3.0017882039705572, 1.998867431144395, 2.8365796172037, 2.6426935472407234, 8.270706951935267, 7.82818558563891, 2.7211159101816054, 1.079265767890602, 5.323572552813698, 7.382855093699112, 7.429514269065404, 4.236440674460824, 2.2859090307468657, 1.1156284069924605, 4.3122223303317275, 6.1242975978270096, 0.9590917186906874, 7.271026690518274, 17.111841269841275, 2.1663684941199506, 1.7642182373894886, 0.8820782488439947, 3.577694444444446, 3.46564167351781, 0.851379153335151, 2.5863483365949103, 1.8381588020329018, 3.2242666666666686, 4.03565277002681, 3.320230301105643, 2.0245827555529052, 1.7985913806778622, 6.492983377556906, 1.3391051844750381, 6.550565857709081, 7.511192980489227, 21.271017678164654, 9.960459071649607, 5.635327350980949, 6.5792231480262195, 12.225398030554238, 7.23144304401316, 13.85661810375354, 13.267752914815494, 10.710619172939497, 7.129247023704163, 14.42875685984467, 9.218578905804986, 5.999261061821078, 6.708107523529279, 10.03997334858824, 7.1572668775115895, 16.287366013230915, 6.8679722426952114, 12.62852369701326, 7.619172100121367, 10.107538732413587, 15.639391890535666, 14.179184650185992, 8.008559149639224, 7.578848352225508, 9.126013931539926, 10.63517046971326, 9.168468874215751, 7.104288225860554, 6.287679491197369, 5.215043184072159, 21.920076053647993, 6.607650762740127, 4.436111191262302, 7.425721513086364, 5.603893972733182, 10.596921764551944, 5.0441726597023155, 24.44512639900699, 4.277235294102018, 9.728553819585274, 6.110427341155391, 7.456770231655718, 5.590920420425098, 5.466956554163294, 9.206571010045595, 9.841322351397807, 20.284510120843088, 13.531488054197883, 4.638196202295079, 6.099779461185651, 20.112849334821572, 9.860386990918995, 4.564890471364061, 13.32940466461222, 9.014571947482628, 4.666325645341869, 5.187441140677924, 7.332652366817342, 8.734958263962906, 5.420620076577967, 7.63769296250151, 6.425509400047916, 5.882782634906421, 9.581908694151021, 7.651941874519256, 14.11352061620258, 7.373305900228924, 5.716787701897023, 7.131122820274349, 6.165760858945727, 16.817708826358825, 9.010733617077268, 5.73252218013411, 6.926886860925194, 20.69969945697576, 8.945267757164093, 8.180924339549337, 3.601216392395823, 7.334277040653785, 6.607876248529296, 1.2564370336941015, 6.304974515780387, 3.2817249886777655, 8.181069867930447, 6.707792169755086, 8.135806004298884, 3.3807376715440287, 4.24461880767093, 9.848286652537759, 1.1469060863422005, 4.137507009144462, 2.9173053235259903, 3.5706254758204197, 4.198171860090595, 2.7292777897190343, 9.80255330330331, 10.332395905213502, 40.022613141558175, 7.184391683694597, 8.563608758218326, 7.141519720455057, 21.551770024254687, 5.326671538655241, 11.610693718422807, 6.825296683044609, 8.24493837237972, 6.531609324009323, 23.269452380952362, 10.393895128082567, 6.178313916028932, 7.40985192585193, 2.971937766118082, 14.978984848484842, 8.214493462226859, 4.556522940516736, 4.061147968367015, 21.827523809523804, 3.754389080000841, 5.818317280758458, 4.634954186613354, 5.199969073193626, 20.05947596779637, 14.800869047619047, 3.1731280419293566, 8.551285901929884, 13.633273809523809, 7.055904364177999, 12.485658730158725, 16.262290452745823, 4.543796098582951, 6.828238967358807, 19.72983333333334, 9.804343650014431, 8.474991427180633, 12.144382760212265, 6.778560222822424, 7.214256700528151, 11.104648874771932, 28.48272877253308, 6.64209996100313, 10.936644984658159, 8.240347753029683, 13.177912622725344, 5.629310770223021, 5.8342417860728535, 14.16113930430928, 9.549059860676465, 20.840886283736733, 6.315193015428528, 5.17653595283868, 14.905716545730591, 6.083457044368166, 5.422995634017306, 10.487616177031454, 9.694444768914355, 25.063450083746535, 23.760608787720084, 9.788645125808115, 12.425960095674604, 9.902465180487944, 5.5172020366012315, 11.108201010532165, 13.78929866191572, 8.711195918085998, 9.324227951508565, 7.5412762564160625, 15.444905478093355, 14.57529633828912, 8.224082638903486, 21.26151002122774, 11.56318448493262, 16.7518753000946, 21.298629831533425, 9.915738557063214, 7.659782370335707, 7.674401566688261, 23.24633874806736, 7.680008293298091, 11.93645721962922, 10.20286500099306, 9.087762294933208, 8.350137555433811, 5.5984550889874765, 11.580182856669554, 6.803489220384097, 4.794777253902561, 10.491721919186025, 9.490293550554663, 7.997662727182262, 15.067080684673874, 10.012627222491513, 7.642008617081111, 14.330345312094321, 8.018818857760952, 10.244069875794139, 7.2365756391128295, 10.956208939975214, 13.140541988829796, 7.027517396934523, 10.794596747629846, 6.876207180556908, 9.903927897133368, 9.895592608088897, 17.451998651863164, 8.984094400349706, 8.011820216601809, 11.410773072278765, 2.132079396417198, 5.701638301962775, 10.799901834987939, 4.809254701547463, 10.21794849345409, 10.139760677300046, 4.428071319610493, 7.329526820345531, 22.656152288167018, 9.120342533272984, 3.717996021544667, 7.30465564801128, 5.153756525151262, 15.02896195625939, 10.90850104537463, 6.650369876684233, 8.151220396315871, 17.22659720336424, 13.283539359189781, 12.015881900917618, 10.590354414436902, 5.585479529290055, 10.356864144046082, 9.476275247451802, 2.713093974269389, 7.350085528398733, 8.751046896099332, 6.44770443108653, 7.126145542406689, 6.278071479885384, 2.3204549478626797, 7.58098949254046, 6.349034227830024, 10.375889930562572, 5.345524412755648, 4.848805309794623, 1.8823784730301043, 4.999115297527821, 4.279036347017509, 5.770062065691933, 4.145431510880027, 3.8641850074153203, 1.627666239589116, 4.0253214119326675, 5.171446846756604, 5.053542566295214, 6.830859315752386, 3.4246208768897843, 1.2847139134277228, 3.5365084068658756, 7.074799856309, 4.601656668414506, 3.3094927233179225, 4.216430501487308, 13.805972228676, 7.062810676666099, 9.414113967599498, 5.719786764482382, 13.44268634735589, 9.068606334914863, 28.25433162300206, 7.530178616079311, 17.578907705445957, 7.871806337829766, 6.025404352435461, 5.711395317742683, 7.541437485305778, 7.5385921906189175, 6.798201587396214, 7.594834319613782, 7.144509438509646, 6.025612753309718, 69.73185541754353, 71.26090554186992, 56.562189568256635, 32.276684886392296, 28.431164528333504, 13.281904945252709, 12.164671323957656, 8.603846334918444, 5.819867843188194, 10.506560185183144, 20.42886116370878, 6.5057412602702644, 8.9567813129554, 9.904009048246952, 17.28605909273622, 26.037448059107824, 5.789512466416196, 8.885484184876654, 10.385939600641715, 9.89269717498774, 22.67062075503305, 5.637294403799072, 11.427639534641862, 7.098951778185018, 24.631312451942758, 6.761135018084243, 7.637847053332772, 55.42082785775766, 11.5207028745584, 22.43250342625224, 6.109354648700006, 12.010352777390557, 5.831661945676182, 18.777249217948853, 9.899627135131409, 12.336584335092626, 6.2215473487794775, 5.370389707331727, 6.6484349345510525, 5.272133503232331, 8.561644020547039, 6.591583084735985, 11.914920474088172, 6.3700575696941995, 7.104132977948303, 7.239938556841704, 6.24911583972129, 14.686228727238685, 5.515065563782337, 4.648505502117114, 8.967724081309811, 4.944053500289756, 4.821518572658303, 5.292498720085185, 9.92271156592692, 6.599535357202323, 8.636254606851844, 8.214676548372525, 7.555334257257515, 4.561051045676849, 4.299307840812057, 3.2487432636522824, 4.060591265746189, 4.722668294709034, 3.1308853144005755, 10.740801278033107, 3.5905497442311587, 3.1822148204347913, 3.462082471635332, 8.159912825615187, 2.50636418153036, 2.766558742903572, 5.776133253658636, 2.6685953906495614, 5.062219981876959, 2.2548301763736496, 4.777165499251212, 5.090659635671366, 2.7407785661761728, 5.833020228745429, 6.612088661185529, 5.115827146085677, 3.102345820114629, 5.382466372786258, 3.8071378006572703, 2.0954957256821096, 5.7269257550677635, 5.827550676911902, 5.188963885290612, 3.6430744756045006, 4.399445039327679, 2.2750769962324218, 2.328110396606602, 10.218613794082033, 7.408254205550546, 5.402413328572535, 3.439716907293191, 4.180681181563535, 2.8040002045645456, 2.783932660133061, 4.587319612184144, 7.288533346955048, 3.5760239225594153, 1.7565531366971048, 2.452610709551491, 2.268221171629144, 1.5570906431882783, 5.233994343828577, 10.852905256464714, 6.4342866340530795, 7.553448853176555, 3.3496634199134196, 14.171627545741389, 4.6309328522881, 24.003827956303898, 8.95275935502112, 15.165839623340169, 12.759283280398773, 36.65910303409184, 24.77353254388714, 4.622428718190056, 11.109557737660387, 19.660808638926362, 12.821130978847021, 6.100994257261718, 13.155799803435896, 7.858492006851243, 7.760165461310355, 15.071647349430812, 9.989024123305244, 5.365635321167172, 9.520582081312988, 8.730620524269936, 8.093584204080608, 11.014011945890518, 4.3166453129220965, 21.23400868003503, 34.77647037358452, 30.59094264989095, 23.151256371599118, 40.60075144669198, 19.499098759676606, 4.913285683449075, 20.362950950448848, 4.4923328912483, 8.225960664956249, 18.363179280192863, 11.156735205724896, 25.433862404362834, 12.902703859380598, 16.45333904853114, 9.64800504803738, 20.502771860589824, 8.814477861440851, 15.57837002999013, 13.744042969360223, 14.693750326946612, 4.407877294636769, 11.606397861677266, 16.528473355847154, 25.08402188090535, 19.34263916148175, 7.389303088455874, 5.498142089140075, 5.087045293023595, 4.044728135287111, 5.302289137407386, 14.680858658244182, 4.107581699743906, 4.600160316933593, 11.764179999892702, 8.485005842229164, 7.7292305543125455, 4.6160005052573245, 181.53555555555562, 4.818772687242227, 8.57740363716283, 28.75213696324792, 5.8155580372935, 9.504648097490776, 18.79896277677915, 6.18138938131895, 11.476887088105638, 6.097943025998387, 4.023626926626025, 4.476407355660779, 17.769478666388217, 6.621305372339423, 17.89253296241203, 3.8947563773919662, 4.867885663310377, 15.367658379001414, 4.426852419480644, 11.364974335585758, 39.258487819488025, 5.83435926666747, 12.43626683838033, 17.10573278656928, 3.9071446293174636, 3.6265773102743504, 16.30092183127922, 4.635517290509161, 3.282516357162191, 6.422200245435246, 12.799308773171692, 17.817502506355083, 10.503261772991193, 17.781685544714435, 7.54595736917479, 4.761277240491276, 3.7941225701508623, 9.603461165925093, 8.300487304876322, 5.522018386209546, 4.267560308367401, 5.36902404568602, 4.465979380310985, 16.08017812857003, 6.1496446255491435, 7.023965443569442, 6.959041151794746, 2.9679060476742625, 4.361502873166984, 6.95210084529789, 18.009090857126843, 9.063083665021098, 5.247228992109215, 4.817669056963745, 35.987727283329356, 6.730025946483744, 9.292057075085776, 3.8442583803743324, 6.460063763733612, 6.182817362444349, 17.294867451777428, 7.56145715159314, 3.4442344054894956, 4.911568476142524, 9.970703797795162, 3.6646474316719146, 4.269361679678415, 6.1975044952882445, 6.44095532652872, 8.587562996732329, 30.145230630480622, 24.735738666573283, 13.265103335140235, 5.572727125920672, 15.630263789105324, 11.32182099498316, 23.270118065764372, 49.897186617304264, 21.153210554956377, 31.085890135162103, 7.208935032342443, 12.5526167339272, 12.883423289737651, 18.643746203910613, 8.542818824283021, 29.46537509832423, 15.511131699727658, 8.393653388410872, 33.79417220586014, 8.791144358553819, 15.970524377232596, 18.78818959410153, 6.725434191343424, 10.712654101620327, 6.316040349584967, 11.024150141978247, 20.434015967857647, 4.739752994464972, 9.581232946768438, 9.382068200985955, 12.436598977353624, 11.556730044554794, 5.411785089897249, 14.087233806989893, 9.169374611156863, 5.7270060177572315, 9.59690401856593, 6.273811139479868, 6.073835922030636, 16.79355616303489, 10.660580085006016, 11.309450657114288, 8.083510713319598, 15.152068337390942, 7.9816995084893, 7.729462720693473, 6.384288370940956, 14.604181713514162, 7.914770063645139, 13.874081173424933, 3.1910726409665857, 38.21837161531278, 6.148488325098923, 2.8741504814013843, 3.6208692600557346, 28.297380570625904, 8.806912946468948, 5.2017035894752155, 10.860560730380156, 4.009166773209791, 5.167442016812408, 15.481394834958449, 6.056114780604548, 3.052090818031354, 3.137395506730824, 4.122054399179749, 9.604330134359978, 6.520841522171524, 2.9040897277278037, 9.702985706034427, 6.5967370789614845, 2.7242191183050752, 6.309113747781694, 8.744891792237317, 5.414186638562849, 2.2538274106251035, 3.3048844312701147, 3.946746023565528, 3.6106925726586514, 3.148781729883571, 3.6417609549648637, 4.256350089524002, 4.180165585070654, 2.9540970333012826, 2.8063561882468697, 2.9806801333104045, 2.8869436771217503, 2.395024702078488, 1.9953017199617828, 2.051450829506407, 2.225940700573051, 4.35617796951976, 1.7226057879654655, 1.908092615522604, 1.7997273418310962, 2.66558082581861, 13.129401547384214, 1.443104350526821, 1.3745749950845016, 9.787379713281881, 1.308355367631344, 1.2840900533416706, 1.6914100668554073, 1.22799618905713, 1.2138399714680597, 2.2224664451817193, 16.936905457498717, 1.5604992824118018, 1.1867728629757628, 6.892486657464917, 1.4157628238652777, 1.1344855153424342, 1.5727051825354603, 1.7795118176992066, 1.1306433783396712, 1.5181439426090932, 1.4599585882200417, 4.365934387034105, 1.1585375301310774, 8.195114443573155, 1.1149868510742937, 2.3183252707995616, 5.355579861723243, 1.3108128836013988, 4.65397983959526, 1.8438397392708514, 4.961632485359516, 1.6170806418879764, 1.9893016045402414, 2.982663903566374, 1.521496220058828, 1.5630806881970065, 4.259904631702383, 2.8372910771942346, 1.3535776086176043, 3.340000000000002, 18.771701659451658, 4.59048380893915, 10.452256335475017, 4.806758579575216, 14.997696813056605, 18.229546809309202, 7.4918249065453555, 11.1188510134853, 4.455954711021868, 13.154018321560892, 25.17621613659958, 11.40625635207502, 10.525146010799299, 9.217143650173, 8.93513006461676, 8.718343526876215, 5.131168425210141, 13.219782882681528, 7.4450664622822105, 10.86618768107976, 5.861611755266879, 4.527213583272224, 15.975329742898637, 7.841038482411999, 3.903215720150246, 3.453681368090777, 10.308549802799593, 21.728176037135086, 13.578086413338214, 9.692895682820934, 5.610519843930981, 13.380924297449464, 8.375679808145279, 4.051988869075818, 15.182274592575148, 10.3034312880087, 8.30394963426996, 9.946690206435477, 9.201934416655767, 13.905686630866004, 12.654498158910291, 9.724719046490124, 7.87792337453512, 11.85827565153211, 12.438063009058366, 6.230016685401587, 7.69011655011662, 18.189075439625373, 7.500376581601705, 3.262344596587958, 9.197569978190225, 16.6724801073322, 13.574858080933385, 7.658175003894835, 10.743666529740244, 29.10812555517162, 15.157681701018006, 11.907223862102018, 10.226989354029257, 10.441126059445747, 3.3916962170630205, 17.64931681071201, 40.35767864251257, 56.339674094397786, 37.82469585480929, 27.05886992043756, 26.07839830783253, 17.248180203240704, 10.809237919620333, 2.871057977234632, 12.229015854633666, 43.8389841101563, 11.23965098790099, 8.128628979085326, 9.941069945641809, 10.990188169667666, 7.133745499186806, 8.125377988239832, 18.30434029579563, 23.191935195295667, 8.812221735973852, 14.772656520143942, 11.685282605583028, 10.761358339777232, 17.349314149139772, 8.62039752163555, 9.994440703553774, 8.848954050309331, 4.617399980322515, 14.057557983864603, 8.902804860414657, 8.996727428459874, 5.89164261471753, 14.887701389569607, 5.909859776015726, 5.1498952466536405, 11.53309195532743, 24.775948705651484, 10.474698167551006, 10.267223970162469, 8.959884032722963, 9.899621140933796, 9.709642039879157, 18.070940026679835, 15.144357264792424, 5.418505251454563, 7.096322188558108, 22.552616137920314, 4.806880028329342, 9.146282945716004, 11.529080919045988, 8.368385319801737, 7.630417144822308, 30.808036253467765, 11.241109000736794, 8.648825335753676, 12.611016699337046, 11.852450447005372, 8.04920714703299, 8.70884309602332, 7.388926284844245, 11.247671795413334, 8.863405491555506, 6.656801639732145, 7.241700405986191, 22.475259903262288, 6.961039794455407, 5.823166454741345, 3.8146235709569627, 5.809500101553023, 9.020549299611048, 3.699288621769647, 8.63089966962821, 7.964379388535887, 4.745855825948188, 4.700064137218269, 11.43949652983212, 3.6903015553752923, 14.77170440965062, 15.387397636697242, 11.038353882642795, 14.05712398817362, 9.089928534276588, 21.657492348040883, 8.97634448803931, 7.290598587293488, 18.08974469985275, 6.322063529577529, 11.4990947925277, 15.468394402043483, 14.638256660305146, 9.674598930765358, 10.991313695181455, 13.433803532302141, 9.511176608483318, 22.062535236541482, 7.330403852911868, 7.100914436841544, 14.74752909883692, 8.58392343815394, 10.478358930431428, 10.46313654701747, 6.6034010752097965, 10.870452606688907, 10.943449195727814, 8.447977494195774, 12.689791471591986, 8.371660906529709, 4.747314356481977, 5.298110095260533, 6.914880752122063, 6.503686919805759, 14.24168279483076, 6.484032448572616, 10.612630512508263, 6.962997641437676, 4.909476274898618, 3.8491344382066677, 16.253506699821916, 19.489400196612443, 11.158762263646198, 5.079549887757641, 6.08461863030262, 6.970489633225376, 3.6727772059225314, 7.271180528924823, 5.292125963302353, 2.845010144559267, 5.751357705204894, 20.81475266762223, 30.98177105196143, 3.368831336371174, 6.358058455533732, 7.290528420698208, 5.795819699392866, 12.33464285714285, 5.682098519197355, 4.936548083685401, 12.797680480739304, 11.315629891864488, 7.483916982251137, 8.045925423513443, 7.011606723123255, 17.93979120320045, 10.928923410265602, 4.574931784937476, 7.80935397669706, 18.658615079365067, 9.589403663246305, 7.862300065646971, 6.89530548906252, 6.153411965725089, 5.777547370967876, 23.012173268429496, 17.964830341250778, 15.314075809330072, 15.279617987085347, 5.796520197501803, 8.360375472067775, 13.68730965200369, 9.811793862692419, 9.110809814658692, 13.059826089539923, 13.927032956618085, 11.991167534930446, 20.146452694879436, 36.18588135030573, 11.749573205754158, 25.251543340882495, 5.252376268314221, 18.379403285126063, 11.159071088040454, 5.149674317729189, 7.826789673905207, 6.976370949503522, 36.233569555079484, 21.98342672733882, 5.996670588041931, 23.28087551793901, 17.01739794705618, 13.969886987337752, 11.804918552329134, 3.999783766088679, 3.7019483431161024, 18.45510380227663, 7.196263089530596, 9.797325118533909, 8.626053190105461, 12.542793144093313, 16.02487252023428, 55.72663455576464, 6.165100606709687, 14.925925012040693, 4.356768615275296, 5.19231124460907, 24.069678565784624, 8.879957607072718, 6.59005759646033, 3.6074426506215014, 12.563428700636234, 12.937199219548518, 4.290675473289347, 3.4410441470065964, 3.5084481732181154, 3.222792590256687, 9.390429981384655, 5.577623432017288, 4.533915126467342, 10.317875754359452, 8.5791518858494, 4.187512612616065, 4.484566979504624, 4.816209401811706, 7.090664261632885, 4.128148813618696, 4.212589440149441, 5.680452746024246, 3.5753919722262237, 2.5669539625453943, 2.121704905111291, 4.24827001194743, 4.270286903897745, 3.4428665419412696, 4.106328339575756, 7.210720905221198, 4.202215015885603, 5.049265385049362, 8.34484255025003, 3.7751295655813784, 2.8417376944160626, 14.088868025356998, 7.241588197749961, 9.764532488159855, 1.5939674548540765, 3.264732192359415, 4.1561126855600525, 19.305982259570484, 14.77584213649636, 5.70111172367364, 11.470199495961948, 3.9130484657668143, 2.36465532484297, 2.4332400432900423, 9.674352707749767, 8.99861035708899, 12.614830810345241, 5.649269460540484, 14.844166517236978, 1.6481532150819354, 1.3419157306335783, 6.054034662453236, 8.695559973686398, 4.551479685190895, 4.7258952414889075, 1.9869558823529425, 2.8017445390866453, 4.071938084940682, 4.559238095238098, 6.28648809523809, 8.571533228738328, 9.351042066602073, 23.926472605937708, 6.108338056104581, 4.384695340201269, 14.395848879532455, 19.13674988993558, 8.65902900718964, 13.293210933729807, 12.05785450967042, 30.152559536148996, 13.231582951673843, 13.001939380048716, 7.855876671489433, 10.671965236680935, 14.365627268315782, 34.192903737540966, 6.963998972216899, 12.205337561524598, 17.89839042945114, 5.198646726064298, 11.816178132891581, 10.423856698903753, 9.650279287905027, 5.296896822558803, 6.906925865979049, 9.009362340717223, 12.079188409533128, 6.260650511243087, 22.461453429086685, 14.650977729621214, 7.712316850254102, 14.24772685263484, 15.829715558034632, 6.005694118001093, 18.94966800963967, 14.571554761906915, 6.047495275154955, 7.267054002193215, 8.76974060974398, 6.292371842870529, 5.401705813315239, 15.604378928515844, 9.942356092606522, 29.725426248669628, 5.525121629097206, 12.550360263880835, 12.880993780553554, 16.3966466724803, 7.044784175566117, 17.559834231168555, 8.914702791947102, 9.979196712485464, 11.544672609113318, 8.780066307119185, 4.144713685550562, 10.57055282704815, 11.944137187508897, 6.954218292997434, 3.724798411128583, 5.98774587104745, 6.620779327619388, 8.070776526391228, 7.448505485886942, 7.153783060420084, 6.249802050838473, 9.084569592456418, 7.6341960194528715, 1.136052018856637, 7.359047915735322, 15.705250601309219, 5.308721414629833, 13.664263517798771, 102.87484848484847, 51.431289682539706, 54.09645354645355, 36.069523993955414, 27.488660630588054, 7.336938090673436, 3.6301574886945396, 6.305117487986096, 11.063813045847695, 3.808933097562423, 4.616168609186931, 4.823016803898102, 3.8434748575432103, 3.5121584888363953, 3.319735390002278, 13.297020287000818, 7.2960590231280085, 4.4555100572931075, 2.6945160329916553, 4.023861001361, 2.7782428719986574, 2.5170624074649317, 2.668979714533103, 2.0892569399544874, 1.9017302182939417, 7.485, 3.9149381528120264, 3.258968253968254, 1.485575335429635, 1.383370640290214, 2.597941176470587, 4.338766630225033, 1.7182719837803486, 1.5366863264805704, 1.1572555381048828, 2.0255000000000014, 1.0862445556139388, 1.0101987089012239, 2.020666666666668, 1.0110164228205496, 1.5071021349666223, 0.972767415657441, 0.8742023900803036, 1.9366071428571425, 0.9175962458252696, 0.813210376217557, 1.944583333333335, 0.8721233321250934, 1.4458415498266246, 8.392150735294114, 6.334550151972212, 0.8314777059815583, 0.6584978193612284, 0.6295888935334333, 2.4095454545454533, 1.0191155788198543, 1.4656811594202903, 1.2753907520920311, 36.29676879699249, 52.988226817042616, 8.954259696176027, 12.441399352998376, 7.097260863349882, 3.532920758445527, 9.93361252303435, 8.648160092645057, 4.9414207746407035, 6.77139675577662, 30.25046415941433, 7.321922683644073, 17.964614941273094, 35.1143358586702, 10.961320566159479, 11.610096310124508, 11.029412900953648, 141.11916666666667, 22.878530767577086, 16.54992290954257, 10.230088827965886, 16.308731303849587, 10.098791820102395, 4.333101705342148, 4.940182024374896, 13.899803773177437, 7.397737294452648, 3.7942365847185653, 11.013719533515498, 12.308906218283818, 3.600756736633612, 21.050437027635677, 5.923268988106542, 15.541012466870887, 9.340339142563897, 5.592199879412295, 7.548420066693145, 19.6312258399312, 7.113971209950831, 6.759137238053617, 6.721358038813849, 9.070479723680261, 8.866558596171204, 3.541098917660215, 5.293112702453673, 37.68758076749098, 6.991820200928997, 6.6626856916469315, 3.9477406404981252, 5.387352931157758, 3.8198991316087296, 4.593071679277402, 5.495123774278751, 9.9798790828764, 4.667389827518293, 6.233006834554762, 7.095889102409309, 9.533413959375757, 4.629436040210859, 9.13291183237899, 7.413078303715396, 5.706084397542397, 4.6606065116401085, 8.669111897305434, 13.06325017023462, 31.202132352941174, 26.421217846481014, 17.468077439322787, 28.84526763484101, 15.60646932966097, 19.283573817493277, 23.096675759798064, 25.98153619039854, 31.08794444444445, 10.62130845803795, 26.75850561884833, 1.2227139018847166, 17.214639844708987, 23.135000000000005, 11.798833333333336, 12.52466666666666, 3.0635655737704877, 2.3963521680244995, 7.152380952380944, 5.733238095238098, 1.5439750080768064, 1.3629053934652207, 1.2366290937034723, 5.202361111111111, 1.0588289733399996, 0.9896661310169749, 0.9303589629497943, 46.24189416876747, 17.765859499653725, 72.93777596818387, 4.46954761904762, 18.334230898283312, 22.17596355863934, 11.405581539558236, 16.370707343825767, 43.42074070450099, 13.44465924985963, 0.9008991941563188, 0.7929814300754505, 16.439648511218035, 3.809075757575759, 6.626373626373632, 3.172294927294927, 4.071047619047622, 2.85191575091575, 2.6097835497835487, 2.8005416666666676, 2.813488733488732, 2.489816176470588, 2.5045694444444466, 15.59937075677339, 2.2695751633986943, 2.2939290905235556, 10.152111547808918, 2.3633333333333315, 2.3391885713615577, 2.1320760233918117, 31.625087962586704, 1.1215384615384623, 13.020438080287338, 2.1678282924505834, 1.9338157894736832, 1.988336946077962, 1.2641666666666669, 0.9817692307692311, 0.8550212510136169, 11.67729014970482, 0.7886818908645533, 15.354393573797097, 50.83265085731264, 28.653621587873054, 12.900672919700376, 12.376606447155767, 11.426431270923993, 35.410176182203415, 17.791596515405537, 7.317806641088378, 6.8480932191399315, 20.25837586734612, 12.834685747566152, 20.04260658685664, 7.69280932962693, 11.75786424673094, 5.806293994175715, 17.66714170919522, 12.99822478893809, 13.959532572489941, 5.402547202591308, 5.903320078833551, 6.1745725428399165, 15.811302073441498, 5.672003905568485, 11.644948412751503, 22.778596000492065, 20.672890499161017, 34.39494536598179, 9.498007834678848, 4.495281252518852, 24.73321322987212, 9.011814760385787, 18.363131943172434, 35.31403869805898, 23.679220183219524, 13.026091197781305, 7.258643626429537, 19.206809980181276, 7.768549708664633, 12.679493641727365, 37.1349451125878, 10.688822635851235, 15.483367713945936, 20.416741711265676, 28.434235365043172, 21.523528999332772, 37.34061057090518, 12.283054787797365, 10.756690351415184, 12.023714029876627, 11.612650983578446, 14.883302864247966, 11.048161480355846, 14.990282542657857, 27.824190626089173, 5.711058025892226, 40.098524106706634, 4.2377944634027145, 6.873265882332481, 8.410440435762824, 29.313457091161894, 5.012773728474209, 20.87771186889536, 12.464218002780592, 4.414800193022371, 24.906882685350634, 23.50407465707506, 23.097764522849914, 48.301861233568914, 26.936864341710383, 15.339963905966858, 20.930262248254074, 43.86323637253724, 7.89227378611237, 30.78225200064155, 8.244207573681742, 25.015976260021326, 13.46624431986462, 17.909189598097086, 24.41702522844186, 35.94154502976548, 29.190823862413115, 20.110722027972027, 15.212088484407229, 12.380054526087095, 20.20436071484916, 34.14488649616339, 21.68006487574504, 34.311841463414616, 27.392637202164465, 17.274271559149373, 13.844185717670634, 17.634322572779226, 25.137056785234986, 26.397750542528314, 16.3794261075748, 12.364631147851997, 10.567092148177545, 25.89443700404634, 5.956996274740228, 11.871815840584715, 9.064511310325626, 15.768198229390261, 8.37097859403725, 13.823517327461994, 13.150670884075765, 10.639412451321927, 6.67712151361763, 6.392514030968676, 5.511523114431658, 8.075698904175216, 7.707080880834303, 6.359904720371754, 8.446730980186716, 4.9097084465803675, 12.558904137047113, 21.501935649819295, 6.478345902119823, 4.982040658947886, 8.695159344305415, 4.221356361639095, 9.693800301225219, 6.2137990713040105, 6.156912389614252, 4.82426315467434, 10.865972211920866, 4.508191948127981, 6.745785255992372, 21.995361014986266, 4.311845631079713, 11.28550122382938, 11.609450468090078, 9.590990921562748, 31.43659754207836, 10.223854815711777, 7.738308817367905, 15.63778921178028, 19.917399731547633, 4.64909896062254, 9.74012409652731, 20.467493574750293, 10.347544945580642, 15.333992347464083, 17.272914560123002, 7.995698209331934, 4.620121574745688, 4.875063746466592, 12.31048061844551, 6.793920940781019, 7.7518395538376375, 12.070601535421329, 12.207899560843465, 12.608696713422574, 7.913850251787228, 7.255401143921998, 5.1487119745217536, 6.34202947126203, 8.265676172776653, 8.291596041100586, 8.12595661198403, 5.42275411400905, 6.420395410609927, 5.883701788750361, 5.1287619670636335, 7.461573131299129, 14.537457434611593, 4.344618466952883, 7.126178497699982, 13.632088526010458, 3.8778561052746574, 4.5394327717427085, 4.726146701763509, 3.7234854618013524, 3.423687536675494, 11.031585867440752, 4.691157461986144, 16.273219546193737, 4.687925190710548, 7.119600243753179, 11.556040874707607, 11.313767272729855, 12.768608966682795, 6.469662569908769, 20.652547570105618, 12.093313994667497, 5.330303786107955, 9.720069613991873, 5.343171826605977, 9.23510665262684, 4.961773845615778, 5.471300804367885, 4.785454544571983, 5.226421264637623, 6.381625641721743, 4.5461396627206945, 3.5975948774968423, 5.426537549741299, 4.740558284788148, 7.80265704119724, 3.6679760317860315, 4.185237137008114, 3.0848080984890296, 5.738424205641783, 9.743041360021785, 15.387867383707453, 24.089403625810665, 12.356384303324566, 5.758476226459295, 9.683731096011487, 15.267923137722498, 19.704578683166854, 10.179233505048892, 17.060247854461792, 6.883516840372773, 6.473014072433618, 5.037466461473054, 5.483812811055586, 11.277301701416063, 11.545632988759744, 10.182221083458135, 8.38367891667156, 10.018694495627235, 6.493801506880381, 6.974626925265648, 7.019014610583688, 5.494500524294594, 6.732589945745465, 3.454492476892031, 5.331047146751623, 6.2809131107235725, 3.0729912182313592, 1.02992185825591, 8.410085802270443, 5.919671605500172, 8.476704285683057, 3.7991940423953077, 10.382317276114694, 4.92244571605848, 19.024368341275895, 4.846827224919979, 7.863456137334699, 5.0333520184710805, 4.96009008818284, 3.291468018293296, 2.4550666399282832, 6.238978956228954, 1.9820992063492062, 1.6586052724788938, 8.19702087277271, 17.494425182000594, 4.837342349368857, 21.925086549398433, 8.45119008254587, 5.563925582237154, 9.29500501147059, 17.985748132109464, 8.315480718867624, 6.866598932149092, 4.731257631962359, 10.21426933512506, 5.866484083495402, 8.85307932489558, 8.157639722720752, 13.332144142788355, 6.710016714188515, 5.892138438653019, 10.84643216940724, 14.053585700729295, 16.439312583049148, 14.299298614294075, 7.8931879050449965, 6.6712215066335325, 10.296758870182526, 35.9412435329193, 17.10181032597235, 8.247522808722781, 14.504167821667684, 4.213820638063769, 13.080408676136381, 30.258970191320838, 3.460924795032958, 13.535064738171474, 13.145820684302567, 53.54204573707443, 44.50864678365314, 44.51098049240758, 25.17916889489346, 22.7627328201917, 11.802244706621273, 6.692587886653308, 8.079779173575876, 27.911448652516075, 11.05715279327298, 6.319521045827586, 9.55799098982932, 8.68485664502342, 25.94319729834212, 17.94954224434472, 3.4898307334722567, 5.0311902107315145, 6.983507930998317, 10.768174493642281, 17.0774588318517, 4.045390185321974, 6.503116030087162, 5.0814971324299885, 5.013612059232401, 7.183332693414658, 11.71384258262563, 13.021910527095304, 8.240549688927494, 14.219597870323415, 8.515274153571614, 4.0704233016633475, 3.064421045229184, 5.32907638754605, 3.2145228441787723, 4.586687287297177, 10.584873047623624, 3.8618576822131, 4.460493638142745, 2.721891434805997, 25.232483300079938, 8.62378802993794, 3.975588771869712, 5.287113377942767, 7.614645463479219, 11.451367632307024, 30.45287770562772, 4.153126052557081, 12.37492179783696, 4.210680723725836, 5.947735524652819, 2.764387890668955, 7.8298845591251744, 5.810184878527267, 9.568875648765045, 16.009438639759924, 13.012647291804408, 4.131233710170228, 2.525046351950099, 19.354617043481994, 4.85694502743641, 4.2205473651793515, 6.7789904879819485, 14.10248602750665, 3.6868461717628875, 3.432089829010169, 4.008485272060237, 3.8978196288105655, 4.8189881132237575, 6.499553395437163, 4.699512680080049, 5.317292802834877, 2.706122198736529, 5.1383673948290784, 4.685286634469393, 22.063028506066395, 4.4596866778659106, 6.7714114945831945, 15.639597138002042, 42.81198240811477, 34.31154741226515, 25.500909312909307, 45.15456084313005, 22.23808374270675, 16.748790836356633, 36.00175919342095, 16.428421682634536, 23.001429121352544, 19.946559771557688, 18.34625445397786, 11.149032054692068, 4.024693396392563, 4.155208284256238, 5.731277761082405, 3.885413968438369, 2.840776083192195, 5.199380613073656, 5.1019643659048, 4.1558998697711775, 8.78720422506652, 11.119380999117846, 5.121475234371085, 10.81304104272723, 11.767575460766528, 15.480671424223623, 24.11243709095552, 15.646976246684565, 7.357586795241217, 23.177553898878898, 20.385327194394513, 25.22517414512726, 13.37400708391706, 29.007525020227988, 14.27575893071851, 8.392738355278253, 9.740672770531107, 7.523811901797325, 7.065362736370635, 4.339270955790387, 7.911632060975681, 7.434641266901803, 13.703594834829346, 17.12808045298226, 9.35191840137004, 6.819185890394815, 18.10091422630373, 9.210399498148362, 6.070657740624884, 10.65975345571015, 9.44106074986706, 7.0814737756122454, 14.71019828935632, 8.590704606509542, 7.303559194192596, 5.786662625139241, 7.17226528191349, 9.645496773081295, 7.956788197752481, 9.12488697135823, 14.212925134841928, 15.316029606355558, 14.918354290816687, 7.022098820180295, 6.0882842419308, 9.391956117688991, 8.618552691465629, 9.173592158152799, 14.619698625754754, 9.42396229061828, 13.262218501867435, 8.137279734464833, 8.749766394613578, 13.91934533927471, 7.236629087950007, 20.425596193691522, 10.449047941488997, 7.2499822035933565, 7.68234159738692, 6.970166840429135, 10.55201735177062, 5.139253811860414, 5.071729783861045, 5.750411979055963, 13.684533302690824, 8.179525883012916, 9.815167781564838, 7.885377371373967, 5.8849196018120145, 2.3299386922744025, 4.620441622340927, 3.3845858173967494, 4.268952347224587, 5.185314453466995, 5.982417622963162, 4.658553108422951, 3.8199333729912976, 3.7756268600600515, 2.915024479896921, 5.064811155984935, 5.837087847675806, 1.1849462688275512, 6.063606364913379, 14.935863064219463, 4.718808895549375, 7.076081873715713, 6.857071310840358, 4.819131298237799, 3.525029591075802, 7.175024639463178, 4.301571428571426, 3.606102228085924, 1.0119150494671265, 0.9410903852612074, 2.696692962321722, 1.2006680454500809, 5.157018711491839, 5.189983010948515, 4.936381052354831, 2.612019589181387, 7.647395338648276, 2.600532383466206, 1.3465001662044973, 0.8561132173760728, 2.4161822801445747, 1.2479710451862795, 6.926347178381616, 2.4902383091318345, 3.775657894736845, 6.877545915191617, 2.570064771331361, 10.430072361131401, 2.02503998894067, 7.748687347686732, 1.6591374253225608, 1.2521835129431846, 1.2130025158624613, 1.183229708867639, 1.122629091115248, 1.9207670454545467, 2.4874448616862264, 1.3347567471954578, 6.052482327576494, 10.045942792810903, 6.029999999999993, 1.5154728383234908, 6.899511092732654, 7.67256070114319, 2.673272924007253, 1.8571804873868571, 1.4513470564965025, 1.2149828691068838, 1.0737280286319202, 8.93506967177587] hash_d32_k256_l50_n3 = [0.0, 1.0000000000000007, 1.0900000000000007, 2.12, 1.5150000000000008, 1.1500000000000008, 2.3133333333333326, 1.539999999999999, 1.9308333333333323, 3.528333333333334, 3.0426666666666664, 5.404666666666662, 1.3908333333333343, 1.461500000000001, 1.393333333333334, 1.6815000000000007, 2.677333333333333, 1.8240952380952393, 3.070666666666666, 2.7575119047619054, 1.746250000000001, 3.4634801587301567, 2.4395158730158717, 3.7325725108225094, 3.1082777777777757, 2.672607503607504, 2.6084130591630603, 6.116404761904758, 3.713297619047617, 5.946948273948272, 3.3615191197691177, 7.236096264846267, 3.2555013042513035, 2.736054168054167, 2.4410222832722823, 1.9497837301587313, 2.211550420168068, 3.98787554112554, 3.330204545454544, 5.542714285714287, 6.287928196158848, 3.0089963525037042, 7.465478864272982, 3.8842025197025203, 4.290253685856625, 2.1120412014885694, 3.561309523809523, 10.9217132034632, 3.87459453046953, 5.515537878787877, 2.5761971785524427, 5.31799386792744, 3.0506058108558096, 2.400618067433083, 3.042607614607613, 6.330860315827962, 2.3758198125403993, 4.256863671175246, 2.72490723530855, 3.4156214847244257, 2.7423578454225495, 2.323466477966479, 3.8282845035940993, 15.55679440785131, 8.241096286563675, 6.070402377739217, 4.718858436852999, 4.599965304303538, 3.651288453213452, 18.513767399267397, 3.7878288644695703, 3.462804239133185, 3.56905432560271, 3.4497387539996227, 3.5124505661999272, 2.7349476560337855, 2.4268977148688817, 3.2830779220779203, 2.701842942732647, 2.801322869019026, 2.3353071672829815, 3.0528692654095124, 2.600513768593224, 2.0675959110309203, 2.5878429390381523, 3.4249816872042254, 2.3740248914648316, 2.4128429261559696, 3.0185413752913752, 2.06526989672968, 3.6415627928696397, 2.786576225431878, 2.1491209451316986, 3.034941758690618, 2.9276476821603294, 2.7009921966137447, 9.31148096315449, 7.281802765947504, 9.645760767010769, 7.789106003645476, 6.728564978215871, 5.884561137072639, 2.8327318657219975, 75.92744631185812, 2.1063682770588104, 2.30213945082695, 5.183125396825395, 3.0842684001207736, 3.1034482535600945, 3.481621207011233, 2.163027892410292, 5.3071259946949585, 3.0845245493167512, 2.1757340666784644, 3.313481229726585, 4.241571789321788, 2.147932125900908, 3.010497720770806, 3.1302817870255097, 2.3668549039905815, 3.2946081848820774, 3.5843101445274774, 3.8437660560895828, 4.636506625835166, 5.5840450060626985, 2.213394139194139, 4.359924990332247, 6.157937756370763, 4.17332104332449, 5.087113537301749, 5.2229260926712175, 2.7906086785353588, 3.1640325928965636, 10.409626238040323, 13.500071857222105, 8.231517836431042, 7.963635907174485, 9.58904314009004, 3.9487769247431617, 7.7451080280603595, 5.835807951380003, 8.386338437363051, 9.190936793917913, 4.809838707020381, 6.308538618166415, 6.59034021470321, 6.073359023383169, 5.830616879482815, 9.264214699894934, 8.214274303607633, 4.4122402951078135, 20.321892203988114, 5.887172595757688, 15.881573820382517, 13.23433628800445, 6.938677776313332, 6.758637100383564, 9.454535780318148, 6.802352546454964, 8.897534718244096, 6.107307207013783, 5.792191087707041, 6.986019866575817, 5.921704129787615, 5.129418967749392, 7.858646817369826, 5.4743946204889475, 4.525158554746769, 7.773086288662804, 11.586885745159028, 6.8060612293410685, 3.7533380789081017, 10.6400946460998, 7.10823674438025, 5.6181329146983545, 6.686938106681445, 5.225702500479567, 8.041965311961166, 5.781212269327482, 21.612965645465646, 6.011119202168527, 6.389750929074009, 4.614934554747455, 6.446101528359554, 5.488968686212186, 4.66101032456373, 6.396098266709312, 6.720184844934191, 7.122370560424079, 9.997597970338541, 6.4424095120021585, 18.080731884128937, 9.52248810193638, 12.556815448484054, 10.491999472749473, 5.573627797014157, 5.65480943047385, 6.875427191049356, 8.538536570618925, 6.309548866654973, 4.584430845732961, 7.779686346895999, 9.663873511035126, 13.90498269389861, 14.954710895342465, 15.027827624017473, 17.20651397393456, 6.870119971870441, 2.3054808452940474, 2.010040462501942, 11.162309491549038, 13.147649721631781, 5.60554958044742, 8.418049561291024, 6.61859306699398, 9.094469056219221, 9.934259397572374, 11.643320845820847, 4.054548945408198, 3.347500755012935, 8.58530876551303, 3.1392476260249853, 3.477869278818238, 5.757909431100606, 3.0361289956238675, 2.962109517168835, 2.7733086234577025, 3.2767702681964392, 5.263268798216974, 4.400990965174859, 2.483022536527896, 2.8282889804987494, 2.5423161010444506, 3.3694652057341017, 2.3090393367312223, 3.387519913325568, 123.54542452033257, 2.732242341203102, 2.810439416248068, 2.5320613578129723, 3.958028911987414, 3.141219334759006, 3.3507957041111065, 2.769549167822666, 2.9977491485123053, 2.155926314245318, 2.5672323652223317, 3.35899876087105, 7.34752330856278, 11.631442025602508, 11.432554173936204, 3.5425767822219054, 3.2265346330402083, 2.6840264988531555, 3.991888269151629, 2.723950580767692, 5.38386456006611, 6.870601851815863, 10.085694469025993, 8.113039016443379, 2.586308271614407, 3.695321083678225, 2.574673029156054, 2.8321443512552333, 8.782149175940326, 2.574158106884529, 13.41555438890634, 24.91114639302072, 27.566879308982802, 20.068027970829586, 5.786701450653047, 72.14147240130848, 12.76879892504724, 67.2050710394678, 54.508259187207464, 32.90181042355477, 41.19365139255308, 27.696734362447938, 22.582060233706287, 9.273705803121135, 19.069210884816428, 18.289597072991388, 27.90701026448713, 16.794773516344378, 8.817114307868025, 11.667518188037608, 15.295696917807355, 14.680290131321996, 18.62906574732756, 9.568222889096234, 233.79662500000018, 11.332809042310803, 67.17982211651965, 9.702173214844835, 7.725283589838928, 11.416393241900213, 8.19988993386491, 19.310536849460846, 10.501035168979842, 10.61379666886361, 16.08775207096861, 6.675055082632892, 7.81068196613812, 6.112732980667522, 8.36745516723859, 8.28559724506679, 10.58645375968507, 9.70010458024163, 21.414790408629493, 8.294013820223784, 18.649873955646576, 8.21489163169185, 7.627587212351086, 13.483091989207436, 8.66239159936907, 6.396185771688206, 30.90805064527597, 92.48019712859389, 99.56062854440019, 21.377314093447588, 13.072957513937043, 7.6899384478541934, 6.140084097363058, 12.159776786537734, 6.570857435568309, 6.811588155154275, 6.163012962902497, 33.51741148124895, 15.22324024517986, 20.98306236144245, 9.427740608450021, 27.09913380021096, 10.222624289364981, 13.665077005714997, 28.171261008750253, 19.07399662296859, 15.722031847392172, 29.396767468444253, 16.21970851896929, 22.91454552370574, 19.350503288804216, 11.933472421404966, 17.925828776345124, 25.88115370542156, 7.92269840471226, 9.778649257188782, 14.274121208318732, 19.984971037416685, 14.616335396989975, 7.187336544027468, 10.447439425490565, 11.68356737418804, 23.062158248335653, 14.183480571451732, 19.04502595258418, 19.021618277642435, 7.6226943776574, 14.980094690369464, 19.50109545379273, 14.800665591202746, 11.632893520184002, 12.074857019278923, 16.17079563492063, 9.02314810560466, 8.2708294958033, 12.770132100226911, 7.606308639553889, 11.977129060482001, 4.8591875360669405, 127.80611351611351, 22.493755821089973, 11.681731665158798, 4.844992849418231, 11.399781815968039, 8.53375966792321, 12.018093184593187, 5.381955308312314, 12.366034889033825, 12.244516663132746, 7.657643018582722, 4.170483849732326, 4.376954607159505, 4.665354276628274, 3.201764630274014, 3.8442245114985223, 5.942413778420069, 5.277799965397511, 3.081726890989027, 11.389728899499982, 6.137074295769859, 12.846503512010866, 5.626971994379889, 4.271443175168175, 4.442894241775588, 4.83999096325542, 6.010689218444599, 11.000158317282636, 5.787332611832611, 4.062041481572417, 4.985831190969444, 7.720923132964633, 8.121002472850984, 5.988733061127187, 16.953759930803795, 5.902815260723822, 7.01359496351146, 5.865788091115435, 11.772904777076715, 18.678569773466535, 19.43201500057373, 7.080059889767329, 5.925417516351763, 8.02466720366998, 5.591432717752751, 7.29441951632053, 10.286956613762275, 6.451996006584997, 9.478325229452837, 16.80325132755086, 15.254687493227392, 16.80496073770103, 5.309570383831242, 8.37359300796242, 7.156966745469001, 12.146875303049606, 7.453063562779806, 11.53988956598734, 5.763919677083507, 6.951042317068228, 16.46551926896633, 15.03784200586136, 14.534596848483345, 5.335755195986518, 12.214351975918957, 4.822442581714842, 14.499146305951514, 6.733163664954866, 6.614007241648431, 7.941293568571039, 8.261490461880895, 22.69682778588411, 4.9785624823380035, 179.41711111111118, 226.80780303030318, 218.43583333333353, 161.80669230769243, 152.10940476190473, 142.55014285714293, 99.29511904761905, 13.9476152277854, 12.606594307809525, 6.247703765296349, 12.02767482913357, 11.795999521762948, 8.337244109663814, 9.668409826534651, 8.107450680945147, 10.035558943679048, 13.312910252330534, 13.265834623671639, 4.314055150404484, 4.175965980270432, 9.134288520863047, 6.470958892114324, 7.367834001363331, 2.756716426595084, 2.960205127048068, 5.599413440024306, 7.817351748522224, 8.061941590227843, 4.4392279261569, 3.2702046001946656, 4.500586907256879, 4.707080422534173, 6.937968308750015, 3.496398196610151, 7.361263896016987, 3.750012821662614, 2.5244765215596625, 6.77318533126401, 2.572056112220501, 2.996938593930573, 3.8767688201783597, 2.2680341670979236, 3.4115138660390563, 4.66296648103906, 2.7883662351417375, 4.77709138870191, 4.92561215791817, 1.9929078632352504, 3.7478735021788414, 5.836272701316732, 12.368252087811863, 11.164063290293281, 6.621229301175821, 10.894632027903205, 5.58007560466469, 3.575972595404564, 5.422764353598787, 4.058762500911988, 4.310528063564384, 3.7538112698375983, 109.43433606731426, 3.144708631235968, 4.7975853101564665, 5.298212207308926, 7.206858441292485, 4.5932782088093775, 5.892259545084066, 8.81678213749931, 4.438365366814858, 3.9738754184491847, 2.8814414352092212, 4.940899349773031, 3.84609787656598, 4.874052387026457, 2.346325434827407, 4.139489667403588, 2.595308606160809, 2.605600777910915, 2.8542368734246435, 2.942288476222172, 2.196964256862092, 2.8558941763202026, 3.2173300047534044, 2.1817307760057907, 2.9989385868319416, 2.6085018045162003, 2.953779171463602, 3.474341279181449, 5.405669034425291, 2.1017793397707853, 3.633535912728738, 19.921797473189567, 27.24553664578078, 10.160093998098661, 13.57622098991915, 6.482088262117104, 10.894227477864282, 17.195017394059658, 9.495698680545074, 40.682585049418925, 7.910280655905923, 14.533108771938583, 5.6132510265862035, 12.121457790896274, 12.732643648830765, 25.51317248723799, 11.775293371936483, 22.582811938066197, 6.510880472170697, 20.73428183103195, 16.649999686325014, 5.780773101379461, 15.771809180121444, 5.847362900209909, 5.85606523138643, 16.362340900749327, 27.804967833294217, 6.196654390555582, 11.288212297671045, 6.803701414829073, 7.436343182395267, 31.82724429334371, 12.815674821448141, 19.34450839519202, 13.939263924719148, 17.377409753804645, 13.155574046525086, 5.373188682987699, 4.315722725015533, 5.3027197863632605, 8.903940038209079, 9.052299272667657, 11.755063267212922, 7.468723263802141, 9.794939566816177, 8.602719699026856, 10.434472946241256, 21.508700095478407, 11.715782961821395, 11.10485655103387, 8.048543518088257, 8.69948640088955, 10.158368092299632, 10.454991362094963, 8.070549833470345, 26.304049125129783, 9.534293848061274, 13.170628343083488, 20.049273425738377, 9.229522482740544, 5.246205904787879, 3.344617653860643, 39.6756565934066, 6.3341779817862385, 7.5002118546795, 3.6389491445814333, 5.912730904232282, 5.480672698787158, 10.170869615828787, 9.961845238095234, 5.008078310970912, 3.5463556824184486, 3.426625196178491, 3.7323549360429586, 8.594524505987739, 6.233728946863771, 3.3874086452288887, 3.678057872597882, 3.9541622443232245, 5.386149194062449, 2.8829585146312486, 20.87034505309505, 4.042827767076848, 4.0821004912544385, 3.9363931615109715, 8.091529961713022, 4.638652552348142, 2.4640678652885764, 2.264179471442502, 4.216581697858328, 3.3856669398627255, 2.3971809047538586, 2.8128696546831833, 2.5476535380696586, 3.1878597678774674, 3.730543918754636, 4.6225370800990495, 3.803473965095569, 4.714519225657435, 9.672788297778805, 5.452693770289524, 4.799651826291699, 3.839889933365682, 52.41792485243523, 2.289834483244712, 3.3180843057407836, 2.009341818358488, 3.556996955342741, 3.0527114680327605, 2.0963996481812, 2.630641817895791, 1.9203529344726307, 3.283556565063935, 4.240973884583912, 3.720453840223627, 2.5716293075942604, 2.3794248760565435, 4.663171544824877, 3.897500657994821, 4.037679675219406, 4.998341277421363, 2.475486065986171, 3.8117751875368686, 2.9119450068855297, 2.290676585109843, 4.3425207516883955, 10.721299539170506, 3.0347188062833106, 3.7195688925480948, 2.4133831092729765, 2.774923682526624, 4.82789640694995, 5.451662469012432, 3.6463043075695833, 10.602574820694212, 17.180714081729842, 10.632488371036304, 6.672991165059031, 23.564427650882987, 11.815618116764146, 11.664138543474877, 10.51445003696698, 24.24164961883746, 6.8183297426875, 6.19683962677287, 7.273477526773572, 6.074777186480598, 11.093381905581579, 5.8922497084670065, 10.471341372868812, 8.180075390850819, 6.354275548767677, 6.884372910063017, 9.333808780731687, 97.47073362722588, 6.039111853587412, 8.990142721836186, 7.220545298971335, 15.413822794868397, 6.63352615620337, 6.648112892729566, 7.5988295394367285, 6.956285976253027, 5.384479408839082, 38.40079766305894, 6.111762410689039, 6.5018692672424665, 13.09921743280576, 11.001620655542565, 4.735228821273517, 203.1066666666669, 5.732108110428765, 9.268205059345641, 14.824266375743878, 4.600945089807059, 5.442897269029907, 5.750837026842455, 11.793564466971173, 8.85089836973203, 4.563834615752229, 6.374454281450483, 12.751568360307706, 15.910690045814773, 33.83714364119474, 8.518897327451782, 7.754835325252568, 5.811568204986643, 6.584679262506831, 9.217640914321677, 13.11679817013827, 8.42262661995569, 7.383528054200256, 13.559911059984397, 22.949885077939264, 13.460750719143142, 25.032720927367897, 27.482302223295562, 12.078561193246532, 6.368366575255996, 3.9243163748796497, 6.977791663268173, 6.688005555106815, 7.946405012886238, 6.207762838343015, 8.335218745128012, 8.916073423605898, 8.194086639447043, 5.627754264015842, 5.859503524215254, 8.326773546010909, 4.2825393946033445, 6.9280435505290185, 6.482970468982888, 6.577970713926596, 6.0657887159177974, 4.397076040474696, 6.238733878725647, 6.1595602879388975, 4.117535035784895, 4.2495758763343865, 4.989773752405597, 11.772085883283033, 6.044233386671459, 4.806252389868208, 4.997479259870924, 7.695442539082232, 7.324479898265445, 5.287093328857359, 6.922726869402004, 5.256760610449449, 7.070288637806358, 3.7010998383640725, 5.114386941994365, 5.6931687136038125, 5.390778901684122, 4.952481032478715, 57.3173642135642, 7.415354707696811, 5.274525438282471, 3.501772096610471, 13.798790489289434, 15.76749574148038, 12.108464439595554, 6.021213809959071, 197.5833333333336, 14.162078669802774, 13.784751986009146, 6.729945728265238, 11.967946829851138, 15.78238387813957, 6.175720454393972, 6.806860092939293, 12.79947132100359, 7.253803769825364, 7.888371270804771, 12.682688777739454, 9.794674639103588, 11.832056451544899, 5.672888200327971, 4.930104149854885, 5.772295475829161, 7.186845050476549, 5.033569923078307, 12.252891646152367, 25.912767744578577, 16.764062904774743, 8.331660644673377, 13.144510132350277, 6.6329343723816185, 11.726637620671545, 6.72461323172834, 9.493614955967425, 5.740691724249418, 8.252192549323027, 7.0456293777052466, 12.76455197528353, 7.326304215050757, 6.2272896856494455, 9.872481531539103, 9.170770954360096, 3.516742686069265, 4.027501682062187, 4.33420753887344, 8.007853570696419, 8.320979457728969, 5.388129122528906, 5.560541692379456, 7.190292011760706, 5.316419262548455, 5.879687602950022, 7.551832909565586, 5.7835154443409555, 15.776693353746905, 7.387327116147989, 6.088165471028899, 7.016254406329624, 13.480646943876943, 9.895780914668027, 13.883621120480608, 9.004187008790163, 10.868238680352528, 10.975186291244116, 8.549907367901405, 9.675466654551414, 6.180710791862003, 5.598023673031035, 6.079065323200192, 5.915416468902675, 8.638147433515563, 8.554562689576924, 6.233387345438505, 6.956922369095511, 114.85765059940066, 16.772650328898496, 5.863221157193661, 9.013725731835123, 9.29743036959563, 6.577041390678465, 10.184986240067117, 7.5776679194230745, 5.586876288946867, 3.3657366232420762, 3.9078079879677503, 6.733511562004715, 6.200802149549672, 4.03329468212808, 8.186833259735398, 3.2691160126722107, 3.978729961409662, 4.380228297828483, 3.535521072069051, 63.7372151924652, 5.356039174477171, 3.311198886701477, 4.461024262065566, 3.618102382367243, 5.13014871759351, 4.4113815963992415, 4.216675618639779, 3.271960874053684, 2.7640731135023957, 3.3465663685823586, 63.18750761330174, 3.721243084076732, 5.010748443290978, 3.814592872472566, 3.0676932773132006, 2.2425243045068117, 2.96860145853792, 5.857140464930785, 2.6628003421499327, 4.987650264801555, 2.610558186051085, 2.7732701051534976, 6.11099155507759, 4.118658655419748, 3.047625225413282, 3.5317440609499426, 5.041092771789769, 7.491730010185892, 4.08322763215651, 3.458904954641373, 8.05096741788456, 3.0824863416775004, 3.948954726856201, 4.377198531747033, 5.880178198570688, 4.176131292892275, 3.448411196382824, 3.002174130319669, 6.146641571331208, 6.274239154791482, 16.890363197867313, 25.911282991491365, 11.475863902125774, 24.869950406283742, 6.943011853197707, 6.682489692702467, 32.25389852782129, 7.569447720110227, 6.596486863247998, 6.441094001254892, 5.180998119413391, 16.529528673216884, 6.550369470730935, 8.490837985732583, 5.308739521300887, 24.571468481708607, 6.558543120047906, 7.1761439259304645, 5.921763502779809, 6.2770458779607985, 6.271642639516986, 6.08237219168299, 7.219566852693674, 6.415664442061481, 24.436594310897753, 4.806115542601821, 5.5882301387937385, 4.731762053720882, 7.382627134869248, 5.572424457887996, 5.002239517507644, 4.559660606301763, 4.7490847211685585, 4.774004234871994, 5.84774250889285, 5.758467471074455, 6.08877731013904, 6.188729138203112, 4.981258170485328, 7.048637587105919, 6.820745712150434, 4.570764487517316, 8.044867590164174, 5.748187942506993, 8.110318360819582, 8.835648185455767, 27.258500022707693, 12.516087733099715, 21.390863689153797, 10.000686637822456, 20.280390561992927, 32.9343419294703, 11.241213382995367, 9.999595613348362, 10.265370481283943, 6.591512689258242, 9.95555385581848, 6.694289954928112, 9.138611483789115, 11.534191123220893, 11.209596067383709, 8.516326667984861, 10.967376863006276, 10.079719260290174, 8.65257935169119, 6.340987888942622, 10.749896334254315, 13.225090798090799, 7.134012187764156, 8.186059359098135, 80.79203794843502, 6.544321774775726, 8.108343705232334, 2.6253085043001185, 8.85359595055716, 5.379291636012763, 6.708782488987305, 6.862652862116748, 6.186452383691935, 6.798816902503241, 2.629913434792413, 2.6897125863622553, 2.710550576159876, 3.23627481511483, 5.634795453299574, 2.6896113024113193, 3.2368780343034778, 2.785606825851121, 7.515777015990425, 5.698198548468469, 4.174123732701123, 6.145087793609592, 11.181180078159615, 4.905148253610176, 5.119767657286932, 7.265956063829009, 6.558699581196834, 6.704795878741109, 3.028641247573605, 2.840136591937915, 5.021798603605082, 76.16657290405094, 2.4730415828363275, 3.432819925874183, 3.0345649881342327, 2.405077058331528, 4.811592048474399, 7.069786769503516, 2.482975002573922, 2.7611514318066637, 4.376712225548706, 2.6506698540429223, 3.487718716886084, 4.614093041741872, 2.8253963348905917, 2.967792713766195, 4.155089163597258, 2.6028585661869714, 3.9476298111418844, 6.073711921636041, 3.059993674312621, 9.21888947777966, 8.889517442794487, 7.953475502425969, 6.467136464896114, 14.082822508006885, 32.003501466511466, 90.08327493696534, 30.682235674942213, 18.829790294212373, 21.114640894267282, 21.898883879278436, 19.914317487182583, 25.972661937052276, 14.438532623170984, 9.687283605658804, 18.32004030912631, 38.16345798779091, 19.00066794048715, 33.74088947160223, 30.052423637502386, 20.878223947166834, 15.835501411751288, 17.757188974521, 14.107168077033476, 12.375129390725458, 9.87542071457629, 10.95112967201085, 15.49571900984812, 14.166737853557526, 28.540337954898014, 16.33385603938332, 35.20428602822693, 35.27047428298351, 23.944285528601892, 24.000751350347777, 18.797155334445918, 18.864693708333878, 20.912114997402742, 12.382416492515796, 10.598818458613849, 11.956527112313932, 23.101725344591568, 25.77582398557077, 10.916245859607262, 17.51086893931934, 16.882995322846952, 14.027230517867638, 11.681388695311055, 10.152517793180268, 12.81533292674176, 10.58954607342579, 11.331332948706917, 8.514766084740877, 17.92593388519835, 9.697688789083896, 8.79384857973685, 25.125577567042562, 12.71487154186888, 12.865502987631675, 19.67528407011034, 13.84070801813835, 13.407124445590634, 14.850140226646584, 11.366372632007756, 10.306864099562127, 25.54957025879706, 12.370031622061681, 42.92106339448072, 20.6501804037904, 22.418791501465368, 31.323814577330147, 12.915753304149652, 19.496226737501733, 29.428727664475627, 9.440295894706315, 28.01552230167924, 32.71266008771719, 32.19404831722947, 27.123749627187397, 32.13566705710439, 12.67365848983596, 14.346567628654128, 28.868001591872932, 23.449566894407383, 12.519522718053675, 15.217396674191484, 19.837161566277356, 8.340822772987451, 7.972587270357597, 20.119873979210723, 11.578569830595846, 17.7705427167529, 19.591265952218322, 13.342387448095705, 9.366572241987802, 23.563791931009597, 14.534476076239084, 13.581490913602167, 30.49221692850134, 10.26953002975096, 21.916700030729515, 14.38681103443776, 17.860586930604484, 10.15542328395617, 8.37650591161743, 9.088941038645325, 19.641075105669852, 44.654367650060784, 17.426735674048174, 12.940251336278443, 19.622563821534545, 21.115862841556144, 21.70216363464578, 20.5841792883043, 21.903068629866876, 19.62668922522163, 17.594754921806782, 19.00479029548833, 16.70540726616347, 11.274369410345415, 8.672990797464609, 10.370414238075405, 14.69723180201494, 17.304231930449955, 14.682895117951979, 14.708310909733465, 13.811722864624352, 10.083429073960152, 10.010328957681145, 12.05437161038771, 11.02361302943965, 14.922322517760014, 14.002305917276448, 9.41621378650608, 13.601558107217754, 12.621931447801384, 9.530969465732118, 4.82558892384705, 11.658946370398137, 7.770748728763732, 14.900098450783558, 17.88988524139722, 8.320707122393287, 9.116418426010846, 7.56016101644848, 10.538061621670721, 18.576108661539646, 11.772512415482899, 16.113053438756538, 13.255818821345136, 27.245029385699794, 6.604299255357088, 9.185349212167663, 9.042363560137224, 6.803329432891379, 12.8165909234586, 8.651697692648561, 6.421548394013397, 4.957771634421631, 4.324435796764297, 3.269503023332442, 2.9540849590491893, 4.21516533116348, 7.719949310178413, 3.049098928036362, 2.5351845399958095, 3.71688933761996, 2.9878399923619052, 4.2970866979704265, 8.246420413542287, 3.7881652547935825, 6.270911423214458, 4.3986074055537046, 3.8779147716602647, 7.353668702215594, 3.99395922131253, 3.9500020431368954, 4.786449494370856, 4.372117073714009, 4.284942340996653, 5.387576379298405, 4.852397731548879, 4.72926878128611, 4.358561935081263, 5.846464411755635, 4.290790037811862, 6.46045163245191, 6.1605102073541245, 4.730866756625559, 4.5230091646007615, 4.898646462954619, 3.9795464517832166, 7.411139291659188, 5.474883085909899, 4.262991891767048, 4.7857770144756895, 4.780879052102178, 7.667363052487999, 4.758049566138661, 5.18014802480716, 4.617007966318448, 4.0635614316155655, 7.162834315903396, 5.253957999148226, 3.5570655438940917, 4.458166026664168, 7.027856091955111, 4.9210440359891425, 8.983084296527839, 4.095378921108821, 4.491909978011833, 3.762078004900625, 4.035071829387172, 5.703208535329113, 5.24888371231277, 6.241369372406646, 4.47678804512481, 6.922625746350806, 4.329321858861424, 7.032304714456122, 3.270492621651343, 5.310004193390026, 4.071216906296317, 3.205022333471395, 4.050269776057215, 3.7830571666416777, 3.7449316971626967, 3.4597727780616796, 3.8395126056048965, 4.648942460238199, 3.7481367870567857, 3.8224082521835125, 5.147144388318815, 3.589938187724625, 7.019829616807324, 7.30341609970489, 7.978060570951242, 5.050048252092467, 2.8084259335007156, 2.697095682340985, 44.12541282682419, 4.160524154586383, 4.92033763772865, 4.508773368241311, 4.430001144390256, 3.8534072824963195, 4.604089157702555, 4.424604055706047, 3.9619200255626716, 4.419174289095233, 3.6503794149168387, 3.5725137736101966, 3.7119637388688576, 5.353081730919576, 3.2510015884406123, 4.5875066429666465, 3.5053937707527867, 3.5860483587533283, 3.9613956525028304, 4.381980236609789, 4.343163823230176, 3.419186676999532, 3.746788046088264, 4.584552000488004, 3.8966853085891975, 2.890472264491855, 3.7865880596858843, 3.036297384681519, 3.68600808497936, 7.316171450360225, 5.915286657128802, 15.685471766915741, 7.231970252381743, 10.167263096385218, 21.97212523638704, 19.12210684070766, 11.853028739381884, 12.537191591766286, 6.155930833069234, 10.163760258619925, 24.284193297525306, 11.868038072164495, 8.747265919752076, 223.36125000000015, 11.306446358056867, 10.694668510965661, 6.094918885759873, 6.738650693535411, 14.902987191697134, 11.71213360047007, 20.63931095103713, 13.636307840661697, 7.781999426927651, 10.945085164831863, 7.985677622070796, 16.88720478136853, 14.791143778968657, 19.367748602897, 8.60622089054008, 7.743168568137454, 21.99676790658625, 13.55897447491703, 9.00631057340899, 12.241783963784961, 17.593469541594132, 10.23787925565746, 9.212067026477577, 14.365417863894608, 9.230147012586205, 6.968483539604391, 8.988932249911525, 20.713480640364548, 12.162684550887661, 17.001709969318025, 11.25478884997821, 22.701908101190735, 7.11232869581734, 11.744391255555984, 9.998207214095867, 50.368967203864685, 7.049066843472592, 10.916998400190229, 12.377079463332532, 5.732505291589879, 13.167218394425987, 28.84521390962693, 7.880899610963003, 10.357146483700589, 7.390902055285741, 11.142020497634558, 8.49721510627337, 10.390750656556499, 6.4143565279431245, 5.9854338960412035, 12.351300636519586, 7.393081955125382, 7.760250921503331, 8.551598066978114, 6.29653707163525, 10.246828737302478, 12.095265205868643, 11.498303790632752, 12.958439560363045, 16.269153646044135, 22.669354490729184, 4.502834934191804, 3.741932454817376, 4.2632239330157615, 5.063055631854469, 4.540292814451961, 4.916972169372544, 4.195643281163075, 4.290937149428429, 4.871638413786152, 5.170397621108421, 7.114914853465746, 5.2047457729776125, 5.069516819837095, 5.025026168516579, 6.288675115054021, 7.7027413776780245, 4.404684478780423, 4.716727339384338, 5.072006437389995, 4.685114058160734, 7.458567800108031, 5.067846878015054, 5.09029585962284, 4.6051108470552435, 5.986183067472016, 3.5003817886669433, 5.032355603384957, 6.65477930484451, 3.6474405379647195, 5.8851551657249, 4.907383231149409, 4.470375169215793, 4.60927567756645, 8.649660590871113, 8.749689515311946, 7.12610801936674, 8.150272689121179, 4.699453565347093, 11.605152097902097, 6.876158851613502, 6.26126575044285, 8.025118292191824, 8.83777531711993, 5.730732236768383, 4.71843282512712, 8.129697663136616, 42.31273694283399, 18.39631955710286, 34.96316522312529, 38.821894603934076, 3.830895131461708, 7.221831863016, 12.366410524719672, 4.624963887315761, 146.591105691057, 6.649986443693244, 3.9404984363303086, 5.491749149878694, 5.256415040740655, 3.3855612253939675, 4.869539563440509, 6.310713187209718, 3.8183854721594526, 3.4196795914973896, 5.292104202203803, 5.796295298312061, 3.9813734421623312, 8.26294229744612, 9.567169299450546, 4.934248888402734, 6.096810855600761, 4.117665982569486, 5.169025987397542, 5.338034715558123, 4.566208581744491, 4.162106682254184, 57.665507288176116, 3.240298520850816, 5.658311354777015, 5.575745294185428, 4.574997783899191, 4.435926112389183, 7.743761764086538, 4.976039285802804, 7.275434884559882, 5.631162731660489, 3.1456415680982226, 3.6274651961962725, 5.724936185680569, 4.2725866951396405, 3.951516333613694, 7.73862035162905, 4.565706003381747, 4.480053795556665, 5.890820908052811, 3.793180307054729, 17.867805842033786, 10.661811456742116, 13.145748236308501, 9.021746044612822, 6.683091641698841, 7.546672251763415, 14.336882099526074, 9.103304489752201, 8.72863804195202, 16.126916048313845, 10.979730034559056, 10.179161791853938, 6.2108187226476375, 7.139119554987791, 5.5552935846382345, 8.436841165634435, 7.2040122913049665, 9.960754289591915, 6.820435442819974, 6.089223467068272, 10.555053141741995, 14.378494210756815, 8.80862249785018, 16.05984597856786, 7.919937760982691, 31.307558553095003, 10.228272458692473, 7.69515378865866, 24.506901043929414, 31.029086608905978, 9.497007182052531, 5.397152041006707, 12.699677382491474, 5.122788652350761, 10.387710152713332, 6.872197485359169, 9.106249480619379, 6.789040479818622, 8.253736562527887, 6.346645818396101, 31.741958258830905, 10.221624772225912, 10.412291265357695, 7.033308077017564, 8.689243409395562, 5.463402945201767, 10.734933383230631, 6.896173756416257, 6.049686895040139, 7.7095029800235375, 13.224065384533581, 8.419870227435979, 11.69694175054588, 6.8734537498119845, 6.317708001108031, 4.896877077288795, 11.404308586262305, 4.826513751990153, 6.400123539242891, 5.957506483557939, 11.478326227676993, 7.428494174391517, 33.641971361971365, 23.396533700973357, 13.568638063816888, 23.768173641173643, 14.167260591366798, 14.94168772528684, 25.415105380730374, 21.341154970760236, 23.721138808041417, 14.689714305891114, 9.000343656640231, 11.983957325169715, 18.296390075567707, 24.013525857475862, 24.76047435897436, 23.892130880504574, 18.713945317083642, 18.399135975941967, 7.912676707515004, 10.220714486711543, 11.571053697343245, 18.605444934694937, 8.894453602298045, 14.294110339222176, 16.9618300571977, 15.981732575757574, 13.090305287713127, 16.523330196741963, 8.695812432651008, 8.818395451197695, 14.29975810446863, 13.754567539135124, 8.520002842639032, 12.431818435541777, 8.16990411171393, 6.09464349497923, 9.338573618006027, 10.489792229626191, 7.387501007330388, 10.714017329892329, 6.462012777617921, 18.129468502035014, 5.768113743782155, 9.6877504245898, 17.948380876469002, 19.064038475942297, 8.187947164642685, 17.93100031699617, 13.750185827258594, 8.384952292875438, 14.050150515566303, 6.865227982052255, 8.074953152267023, 7.283473370129209, 11.548895584674991, 14.82474632099971, 12.734981220095893, 11.209561804810251, 85.72837945557568, 12.568544018640047, 5.520168381165457, 6.7176848741876825, 13.039389709261219, 7.248508500464896, 18.516951923935792, 9.465803878805893, 18.482587509735005, 48.301360914511946, 13.31772898054154, 8.279393375745638, 247.66472222222237, 214.21344444444472, 187.12833333333353, 167.30583333333334, 140.164, 152.2803174603175, 6.030201416284934, 5.8525770628139275, 17.1263962433719, 10.50140153467346, 42.01710216538204, 14.309418554638064, 16.39968011308502, 10.779592626611366, 8.70519496494143, 8.273649960193067, 8.102851549978256, 7.148838110011866, 6.126925377587145, 8.80594273569149, 13.060517594892142, 13.864456678393662, 8.926648559368779, 5.846487862268191, 12.459030814524093, 11.495212579948053, 7.845050225937455, 10.483350631268506, 4.906852878497209, 17.705148101500487, 6.80171446525095, 5.602809817105409, 11.084846759297635, 6.352623663524468, 9.456535445382745, 23.76409623733806, 8.462120102331115, 12.433719086819806, 6.565894748156921, 8.251072849356566, 11.650873470054497, 10.365594010962736, 6.533732164880438, 11.425607084303238, 5.781990923937627, 5.126761066105651, 10.777218386245853, 9.012488750042843, 6.338748150742646, 5.431264532285955, 7.455758390215146, 7.95338507637643, 5.903243124807929, 5.125115933706565, 8.961253880883323, 8.058556491931688, 4.64002199096903, 6.073783446585532, 6.10565921078502, 5.572757544548368, 6.227478702587231, 11.273873287207646, 20.23908528881496, 8.028138810001034, 4.98423512466601, 6.071293671306709, 7.937522902516347, 5.821099028529066, 7.593683225095866, 5.49646895152608, 12.050509406496067, 12.85398873494601, 172.0692777777778, 171.33083333333332, 108.45188095238092, 154.19526190476188, 97.09909523809533, 168.75037987012996, 5.604443267392848, 7.682934760798269, 11.608955870763229, 6.396593788102003, 8.769266671458158, 13.685079832156148, 11.03898500738739, 9.777596362637503, 9.41977039285326, 6.767757721184571, 10.84128541211539, 8.732681757471957, 6.811138686899082, 5.542591733693314, 11.794153419942559, 6.306746862904272, 6.457326903262756, 7.12634113237771, 5.481556690328511, 5.405249969541137, 6.649075151941633, 7.797487346651895, 7.825401549519901, 5.318202390071343, 5.221573255010345, 4.88632304231307, 8.020740615004318, 6.43130712772593, 6.325521099557768, 7.349446168820114, 4.338660737485779, 5.505581612808025, 5.592970485999587, 8.798615529132201, 5.237488171939554, 10.594394254379795, 5.715052002169179, 4.6735682607013, 7.971257679358926, 7.299894049586885, 38.96972603731875, 5.2758315269479645, 5.113696491333731, 3.775044336533402, 8.129893101893854, 3.820313125790203, 4.959963451963028, 5.422482183571869, 3.2832248950255165, 5.740543190422645, 5.477462346394553, 5.473570871538589, 5.525645878343525, 3.752185864031703, 3.751303740123063, 3.721124692714532, 5.023321186625007, 8.38031717073673, 5.1239579926038505, 2.3302023390879705, 7.139790699074246, 21.497616555017643, 5.435556203781176, 5.176704985070293, 7.79787573150244, 4.521028767808105, 6.080250132000086, 5.332420007993175, 8.073383086088317, 13.205637867566988, 8.62767093861025, 5.72578698180353, 6.510668389427813, 10.585065838338648, 7.731353463486937, 8.431699284517634, 10.708520369621576, 7.400033816155474, 7.178219704631183, 8.252403717019654, 6.466241408983419, 5.094641239546449, 10.940621880670212, 4.7717347003681825, 7.057511568118749, 6.243025713333175, 10.815670232812794, 6.445672890405285, 4.338675771582244, 5.573754608090131, 4.141132673965423, 5.578290624459162, 4.141191668018304, 5.5807272220010224, 8.606967775941062, 3.352881717310315, 12.34555557487485, 9.148914662246261, 10.069355594803437, 8.09918144976223, 6.402456587091932, 7.431200404505195, 8.047753895722975, 18.372468871486298, 6.410343208403737, 8.057221458798864, 15.855149216926774, 7.989389885904581, 6.803059975369297, 4.4490729313668504, 3.6689024396572627, 14.24416018026874, 9.174549815789373, 5.198942431311214, 3.491802792045457, 6.552701023258865, 10.424259320581374, 7.017421884202655, 4.655753154517935, 9.116476755041768, 4.965540868309055, 5.222416035877895, 5.5669832206279635, 7.928447909286744, 9.752439553475725, 3.333323865637405, 3.440471024610877, 9.848322252008526, 11.322589860942504, 6.622933242241829, 7.739201342859861, 7.441235451247298, 5.447584126984307, 2.922190054879237, 3.266316450725862, 5.180977989438754, 3.4747686030916434, 2.5953064902926064, 5.063822741968306, 5.216970679606191, 6.206596174355607, 8.210767434990066, 3.0612060894656934, 4.97718771361783, 3.5990685393194384, 6.132849509817357, 4.3594577162426535, 6.270430509032529, 5.045501106378803, 5.687561575822431, 4.5990693292369915, 5.301520376195356, 3.8465944621686394, 3.1952908387559025, 6.17872891697288, 7.206003015011361, 5.33219901924592, 5.125502643404859, 4.013108074130903, 5.408381165923801, 5.328608362804302, 4.8643319926157575, 69.97567128076525, 5.020728071382927, 5.90346907076299, 6.314686155219047, 3.1352149227871524, 4.335771816160311, 4.83665937334335, 4.412063602220974, 3.9862611681672733, 3.5320534530248056, 4.254514718215669, 5.18721414695336, 5.546434613566887, 3.8988005302208246, 5.485022773404583, 3.055870449598201, 4.8652803963691476, 3.999057284034997, 2.5881765725538566, 3.457435730550485, 3.7856900545836307, 4.892889477258373, 2.6839215596568775, 5.9512203459012065, 3.5718743496009124, 3.8213842670853233, 3.1819029473625196, 4.854887878944636, 4.309661084994767, 4.175656338195486, 12.949804951716176, 6.354889247072918, 6.543181582582334, 7.19335784466424, 9.388788563968404, 14.97740344885974, 16.892605938728405, 8.566144039158381, 9.593850224020096, 16.659741846566554, 9.5332122577889, 18.59297657483312, 6.343985855349266, 7.664385902657768, 13.429336245347786, 21.04457118633304, 12.425932590369221, 11.253927292499318, 7.127007056497561, 6.6183031216854715, 10.230118106449188, 6.690107133771127, 6.992670766942032, 6.372388355639056, 9.054091257468885, 15.147685228818741, 19.64111026546567, 13.407916449866319, 10.529233078700312, 6.02703178534992, 68.37841325819045, 15.746161195469416, 11.318529934769119, 7.520203147263901, 9.79394886182841, 54.27159020410608, 55.37275464891348, 49.1753245966022, 37.13249235282617, 5.036607987573001, 9.353776700465168, 13.777048128461017, 3.981793554055116, 4.785296084612525, 7.181126003177115, 5.821891508098447, 7.3375509975815785, 10.672802493446195, 3.8904143416234884, 4.8189974177564965, 4.675413078580307, 5.743129340865768, 13.767144939917122, 6.989909912614704, 5.482152972353993, 5.473627151510064, 6.372093455824315, 7.815715711867862, 5.593071850968957, 8.672519055159528, 7.6821360393875215, 3.668896400632437, 8.069400883922238, 4.374437826595982, 4.193957053766486, 3.9213243132850497, 5.5518153909155945, 5.237634008822946, 4.21318648023036, 4.305443695802259, 3.539922895175314, 5.225275952410977, 5.121095383397375, 2.5754988605061486, 5.171356702558336, 5.793349242456746, 4.5434069762159774, 3.249420435531869, 3.6657587018387923, 4.696498891631528, 4.983930552104648, 3.249515751366358, 3.9282674509601, 4.439586799941747, 6.959543777777067, 3.8209504777971737, 4.712580619928632, 3.6963174389491398, 4.136943299998896, 4.316806738415252, 4.579892551729492, 11.25035961797148, 4.695545898932849, 4.107822281594559, 6.216084330785867, 6.17234018234669, 5.070082638087224, 4.20629863593882, 4.251946125582162, 5.608428526582481, 5.593186178830122, 4.658552400030285, 36.52780105176415, 5.822389373612233, 3.9699763770944054, 6.769635566640022, 3.5963078822464953, 4.462315444506626, 4.203630410804237, 4.679617695279191, 7.1926589959803895, 4.5574629352470755, 3.621468553455248, 3.120024733065069, 3.849604304292078, 4.008462398699999, 5.399464017322001, 3.305041631335219, 6.7241764121278225, 3.6458668762679998, 4.190093205762452, 5.769389900872443, 5.480339060517135, 4.205841154572831, 4.61832100410438, 5.629249374475891, 4.053490984331943, 5.859672516218879, 3.495980491137702, 2.406727125967814, 7.5627673640618545, 10.786589110008562, 4.904344561204071, 14.492014235203735, 31.162196066886686, 24.873965940316808, 3.9919253443618423, 13.657148052439231, 19.739248660862234, 10.844922183298504, 16.336664267058687, 6.621628138995919, 9.264069955219732, 18.970892076759977, 12.534349401754952, 51.20200661595508, 238.96734668109684, 206.1292222222225, 166.18646969696977, 164.72330303030307, 126.46633333333332, 175.59820113220107, 8.14338190779164, 5.40671948770456, 14.453162763408265, 10.263234173943172, 8.39846659926822, 8.174418601420973, 11.47341993287651, 66.75675360086011, 23.010530628596833, 8.73939135006478, 17.00221982291195, 10.00725145595183, 8.922250507144952, 6.243260151817996, 8.054778514949838, 23.223610665851012, 18.687412389297002, 9.468097268040982, 10.39405373811908, 7.57371475979725, 7.306450172718368, 12.996504869823386, 10.648469408584047, 12.411249629914325, 10.515591140534289, 12.600606584898506, 11.369184417546784, 14.645405201110044, 13.221088425299767, 8.145341082695557, 27.88616811122805, 8.544831462803256, 12.497791466066785, 5.941467314775969, 5.137408057982936, 9.42043273334496, 10.55502312864641, 7.706204693928652, 6.752586537093491, 9.333839202544635, 7.373830146877218, 5.733545453577934, 13.300935739702854, 5.641926216267806, 7.9783401244321865, 5.93934421886191, 5.9457581160043445, 5.513100165112332, 3.872503904192466, 5.136166646699429, 5.497922765407763, 7.6584810327899175, 4.6756815837064964, 11.238840476888335, 5.692188415480397, 3.7394097122789813, 5.051107637204209, 6.165176632876984, 7.386586996176825, 3.267550328108379, 4.941104089912499, 5.23752227544473, 6.727581434851075, 3.02853922772128, 6.596054811429378, 4.106486614988763, 5.786412271471265, 5.050655481854669, 4.327574812470192, 4.363318805852612, 4.26031603281384, 4.374826934757717, 10.425779824362786, 10.69934631019027, 9.734180780978013, 5.49008505883864, 3.188995651098278, 3.343047818837243, 3.8117119183448107, 5.3349644784246095, 30.66149724430343, 3.3432359425399922, 7.019954016466048, 7.474048740571071, 7.30210725078571, 4.353030097547015, 5.204864173721678, 3.5813965245336092, 4.396858983550919, 6.485273080207415, 4.8946363804775626, 3.884388755681554, 6.011428968214125, 15.877220482238242, 12.2650386719862, 7.101111909534336, 3.9406837356840962, 3.0206013976364376, 4.6321089987771185, 5.41828952952325, 4.342993132917415, 6.366184798371488, 4.031179526631096, 3.877723544757697, 2.823098693923612, 4.625309828015401, 7.025085034738171, 3.8838532776744246, 2.5806702019753014, 12.661151761635438, 7.836437108014144, 5.524638505462288, 7.593910211139057, 7.638955211884339, 9.863162065401774, 18.75751871244282, 10.261955221551466, 5.3549743903548785, 17.513054487563227, 21.785737111088142, 22.021498056949497, 75.3172675750176, 35.13135373306178, 23.805621340182224, 5.8288951959490785, 7.656862968764077, 10.592034583300432, 9.285565098843204, 5.185322132007925, 9.142714945163181, 137.6185833333334, 118.55473809523815, 112.541208994709, 160.3425317460317, 132.7115357142857, 119.0502817460317, 7.404307886604974, 5.289719177846302, 16.35605407013466, 9.857506519824325, 12.064548741780198, 64.80410044325619, 103.168097041847, 88.9997435064935, 76.0662803030303, 77.59188603063602, 101.5443149350649, 99.14150022425022, 7.339542988151691, 11.186135239493309, 10.061453348702482, 15.762293282709178, 12.534529381699109, 8.579298737036977, 11.170823682325109, 10.095378306069012, 5.688374928486233, 6.722472677159275, 5.787850154164311, 8.526613554980603, 11.22254204221487, 18.569698280861136, 9.4879307034661, 11.381825205485665, 8.243717644759657, 6.8265912344403645, 5.085417118017792, 6.445935124109242, 6.167298555764424, 6.592815140545183, 1.8838770958921378, 3.078942055600466, 11.385843104735013, 7.402468550954435, 7.0326799678868674, 7.746781331878381, 7.391480569007925, 10.762760223059834, 15.144499974672526, 8.140405100763704, 8.881829973998542, 4.344133372835268, 6.33053357278889, 13.927760501553502, 6.005478269960106, 5.58627885368289, 4.845822034968127, 5.044558789423421, 5.412224309516779, 4.295663568760374, 3.915763936712913, 3.864913875631648, 3.4720198670617695, 4.906333315031386, 3.2381561160528807, 8.8821767081607, 6.370444316825648, 7.8464598812016835, 5.190323769628619, 5.51585971139337, 4.5952510948197265, 9.170839706960857, 11.151212157267334, 5.298693655229908, 13.841627072461677, 4.610810945930906, 4.40751012004225, 5.4817044425882395, 4.039400616827162, 3.792410724682243, 3.5396205027235053, 4.803632456442182, 4.155877352960046, 4.4932685289923375, 3.964544159183673, 4.209244779636499, 6.5832263899323635, 6.845459366270227, 7.127115000086069, 5.750371485376712, 4.960917158523064, 6.418957852446203, 8.655672286138913, 10.359167770023523, 5.650682053646579, 7.367996413323354, 8.290494236963479, 6.582075397496303, 6.407377169820949, 3.8645030454487275, 5.952889831186337, 5.178693364089291, 5.462017175167031, 6.419405489926731, 4.231554971894761, 5.069341355118497, 5.099801815647349, 5.466672919260731, 6.23807454153886, 7.902530235149029, 2.7984531834213544, 2.937107645167194, 7.742039563304638, 10.363230784867758, 8.110095737908463, 10.29514035119353, 11.749763893318427, 15.261875718336237, 15.0748771408564, 35.7088690395218, 59.5541599310651, 56.383630679720966, 24.67864909496703, 34.40459398649703, 23.817184582909025, 19.036967773034704, 20.26753516457527, 19.934951872960102, 18.221473063086762, 10.905336890586481, 14.919653421970587, 41.23489413005012, 17.060376665334136, 15.232148416550308, 9.221784302785231, 10.885030342960773, 7.641585720860638, 44.72109179202254, 14.279654234034195, 12.336569987989545, 10.683465596391846, 13.066826083261553, 12.981977533796325, 8.4836569473972, 10.423347141851034, 11.08272795548724, 6.922802597967104, 9.906411092901672, 12.335889881576374, 21.412366741928054, 13.886462020124963, 8.413287793499446, 14.534225386657043, 7.983422225765939, 6.680810314869713, 8.517449027380728, 10.744861570314589, 8.454352712727365, 11.220760957747672, 9.087848950048503, 16.92934696066687, 6.782251744953979, 32.75885516965288, 25.42752638571558, 5.8708486049275255, 6.612938920433801, 10.367185204799222, 10.431729180164426, 11.43058988435953, 6.474019732831972, 6.424098368068947, 8.155846297024516, 7.217617917677934, 9.481724809638138, 12.726083265744291, 9.345533112293468, 7.595404680095196, 15.261880104112114, 6.803335199313136, 9.177214322714324, 12.708878404854001, 11.617015507374505, 6.03426575870882, 9.774453815454324, 7.329209819676519, 11.606107386322243, 5.812012995438438, 8.64421835053323, 4.570941870900777, 5.683995262388088, 11.28848133807535, 6.438988051985274, 7.585886315778548, 10.892481843525166, 6.0668057049361686, 7.29318562211209, 3.871123693526602, 6.40346129478116, 7.061078455887569, 6.8549624339199156, 6.842827737731378, 6.867880098550411, 4.053628045270882, 7.326056621146524, 7.462051141616106, 6.192339947689972, 6.763830918377863, 8.239570618233591, 9.914001522893974, 2.5341035136091805, 7.069210306829952, 7.423896125131674, 5.466380611526971, 4.6494784608287985, 27.707856949423114, 5.653742098442932, 4.506516714561241, 5.442143970818307, 4.736461013685397, 10.186837395162977, 4.332313895009306, 6.478311344093995, 9.094547750381295, 4.068412282963074, 4.858386848292428, 4.856099807142947, 3.7441771782970408, 6.222344088225211, 5.258172213234786, 4.236691580306826, 4.678333170805382, 4.185487773240894, 4.113606478545456, 4.527645868665279, 4.3426413409526585, 3.92817023414344, 6.585189714829989, 3.459940585045429, 7.012607974435922, 4.673233859166301, 4.832714992539404, 3.1559884642036438, 5.499744014078985, 4.398242484069108, 2.3161504116343616, 4.422472939023358, 5.532335944281389, 7.3357765216668165, 79.08068975869165, 4.553393284680665, 5.1907846212765305, 5.285464914422061, 5.249851700024495, 3.9850691206347415, 3.849576551288411, 6.328451027878917, 3.3004002754436224, 6.073218824741718, 7.7617557523688685, 4.926552227549255, 4.863736618550895, 4.29810519784524, 6.177960429281441, 4.817350772284129, 4.43637860721463, 4.809761605248855, 6.7635356450585, 4.193444243155064, 6.511990601098459, 5.608397861313777, 4.832888131497881, 3.7142483463234948, 4.85204868212348, 10.704424638011606, 4.857699129505945, 6.4612426977012944, 3.979409873254493, 5.777089487687668, 7.056151239879632, 5.5775520705642005, 5.035541227116865, 4.095068607821258, 5.438799115104688, 6.688885883876658, 3.7629577873781983, 6.430272066636639, 6.1386743533188595, 5.7943590992382354, 5.81171344571375, 7.442659906329555, 4.888809446569755, 4.891485083790895, 5.588248175112152, 5.625363330606618, 3.276454040226192, 3.362718759146332, 4.792045313170912, 3.5642384667741096, 5.222036925840905, 6.678134921849818, 4.47913919887025, 5.399375489575312, 4.126831085581087, 4.369255554915312, 5.677034537365792, 4.81682274608234, 218.35852380952397, 206.5821666666668, 208.95358974358996, 179.1167391304348, 186.22128205128217, 146.7733874458875, 4.376538700254749, 3.8768085993144172, 3.0197995185983486, 3.0021043968942047, 3.155425926902732, 3.6609180402205777, 3.3034975938577538, 3.4714995327632647, 3.222189773542454, 3.1599010988413414, 3.371314330166429, 3.0693896364703495, 2.921741265145744, 2.81308167759716, 2.076208557970526, 8.720651554245, 7.611670052930053, 5.259527943385375, 9.960868900957628, 7.980329308567723, 6.942200302404903, 3.969584897358349, 6.137327624938821, 5.213342019809207, 5.21208932417499, 13.111535766641516, 5.048652044087668, 6.480524672279307, 4.516584434088353, 5.365486532175825, 4.540975321060202, 4.6874232953502055, 9.748219865941572, 8.810235946061654, 3.878474458664686, 6.283862094862914, 6.767781900607578, 4.279832056442697, 5.585559393422246, 5.040441962835234, 4.46377877899698, 4.795504228271616, 3.6206107216678265, 5.531187275114516, 4.400178824453123, 3.8116151841450976, 5.608649107555274, 6.92537208122339, 4.430047463339452, 7.851116149741821, 6.5944066187058565, 3.130053205727156, 4.577628494761939, 5.922231302637891, 5.220745965093164, 5.401166020062352, 3.527875441896294, 4.81439087095123, 3.505294550670403, 5.430134045068089, 5.482004880554167, 7.9957491357475, 4.981592416743155, 4.127447644106359, 6.562144571420116, 5.684761604288757, 4.650484521230898, 3.957088970086996, 4.65594436450163, 6.4118313172490575, 6.01822173354415, 4.9710455474818245, 3.757625785100091, 3.3919816421291262, 5.179047672818953, 4.364023326398385, 4.374783331558208, 5.673773315914151, 4.038129923151515, 5.632973891068678, 4.295148561201164, 5.526659618980658, 3.421356114032078, 3.0884793713832925, 4.834093442080917, 4.6022347225314055, 4.743721430660236, 2.6927867786722013, 3.3070593960483676, 3.0247760585543837, 3.5676333173268606, 4.286590569272959, 3.1090576936566974, 2.772591483609037, 2.928405170357631, 3.241133023008519, 5.332977374432476, 9.334521650957342, 3.881427437614446, 3.4371721930859342, 5.007993275323155, 5.093311920832459, 3.2819750428507963, 4.154357513871347, 3.547962804097917, 6.003434406020806, 3.65319449707933, 4.463180630180465, 5.661182190481607, 5.40024131872868, 3.7617975981843643, 4.139120092808402, 3.0222699794012815, 3.1363028809930698, 3.3905841099161917, 3.4232559826940845, 2.9220815532732587, 21.563519625666686, 3.2500873622324775, 4.110306398278555, 3.076757285791605, 3.5046575309860484, 8.662850158481879, 7.338807305496129, 4.482055084257708, 5.685204084400623, 4.979854680735245, 4.143850674301986, 2.769056629082749, 4.017197204028433, 5.658696513216321, 2.6437570474258694, 6.156957186923596, 6.902068558908078, 9.712034380533673, 5.594575019758864, 4.968348718188674, 7.577857103472515, 3.5495994151237995, 2.1952134297514956, 4.8801029586729285, 10.503278227561216, 4.214859602235089, 6.19777621999339, 6.01437521836503, 6.790416569520446, 18.96773600521582, 37.785235430500684, 26.50912363840866, 28.674956785496583, 19.925710943195536, 50.224889885918245, 21.22426551216737, 27.341765804486457, 24.26669324051999, 14.185060336740024, 23.461134401583774, 24.63414817182951, 20.158779065700074, 126.11930982905982, 11.32209174127141, 12.534804014365553, 13.1507059548753, 17.209231567136946, 19.347143836844722, 12.467854839737278, 19.494512271069652, 13.096996559766223, 8.97847204254372, 6.124038709249851, 8.356056396987679, 8.38708416147423, 15.378079735206898, 8.928945020566626, 11.12270449126897, 8.673738111724576, 22.18799627496624, 7.410716339953183, 10.189619901902464, 7.736607160782966, 9.628825648234807, 8.423344681972571, 20.601150932400923, 8.892496747244012, 19.37987912195202, 12.455195703685689, 16.348561518043518, 10.800604681461877, 10.788007129169841, 10.05989505655786, 6.497367697014268, 8.127550586147828, 12.003075622126255, 10.045189972937939, 15.99679439294145, 8.882654343940105, 9.473398624027467, 4.982992503424196, 3.9270214325034516, 4.607234030913851, 8.708672950029568, 9.62871536977376, 9.218374583110984, 4.364080964936677, 4.7850854530065545, 5.222321044283309, 4.789776520579367, 5.631724661707162, 4.18250963577026, 4.936330291167477, 4.697888861395247, 5.713102704387951, 4.947847467001633, 5.028089650726552, 5.039472684625706, 9.836358205907652, 6.424936698292128, 6.605096239819287, 7.81363234959748, 4.8807347997562465, 6.695105552836781, 6.613925481729699, 7.683051102098462, 3.4464456323778, 4.244629188630048, 3.4726764905470833, 5.44185773047426, 6.548101939588838, 7.222206686138513, 4.225122722876184, 6.508217065350194, 5.980770013660026, 8.737359884911971, 6.363532735434026, 7.359872470642529, 6.432783151638745, 8.472710097371488, 5.667329063152154, 4.559126615418614, 5.752346636484123, 5.716159499660547, 5.481675432223609, 21.76559082252289, 8.675473046869381, 3.2913733977557027, 6.558432586617058, 7.0450972517768795, 4.809108124710867, 10.53502408687489, 8.218767513631386, 5.3044414781722935, 6.2463778192896156, 2.152002537967664, 5.117949614945949, 4.63996127082877, 6.0544511586115775, 5.114115151363564, 5.940591786339223, 5.684139440887796, 4.385536226847577, 5.6195978415850885, 5.809081543135491, 4.634404965650457, 6.248393128701957, 7.753025164835028, 5.248005281610571, 4.358469931195056, 3.5160391410042124, 3.6590957110092317, 4.438047818722609, 8.0966413583226, 5.661617038987753, 4.602820261392384, 4.780807428521827, 4.448153493217712, 4.296208913201179, 9.903052849887137, 4.925095275566317, 6.669543233804666, 3.6682790654824857, 6.660258288749244, 23.032626194468296, 5.336100295388685, 5.303085770572825, 4.533392653661858, 4.379005249069849, 4.204307087639605, 4.901171027501358, 5.3816067212766265, 4.647182081925036, 7.761249413813634, 5.103924533571479, 4.714544286231303, 6.394042754911794, 11.48824783047947, 5.000905935795615, 6.536964582853039, 6.186713924468249, 2.7399852239765616, 5.819407866420563, 5.081652532799661, 4.415863549366519, 3.861975633799454, 4.3832170269037665, 6.220306025441812, 5.982634351683464, 8.783880797532417, 4.570419628822651, 4.917317516923176, 10.016769368344233, 11.611812427826825, 8.471423838463915, 5.452989152903055, 6.769368585191962, 8.343653612272256, 5.793012831210797, 7.110971173203675, 4.628558488117489, 8.28079364102589, 8.320323312308322, 5.550867675022271, 4.832366611949255, 3.9870700722005865, 84.48786904761904, 219.83702380952406, 202.68450000000013, 186.42101914751922, 165.77350000000013, 172.61750000000004, 73.38107506382508, 6.487516100284548, 6.554573354991113, 5.8585452825503905, 6.728999312215679, 6.566745701660236, 5.143606368686115, 4.72445075046082, 8.576160050524704, 4.537362428861952, 5.68424547416101, 8.086447289182768, 7.371425402662372, 4.060931868590075, 7.704951208848413, 5.065986961842033, 5.372306848785276, 5.437935032650924, 3.497644133846128, 5.572007185189273, 6.466897632059084, 4.92397222743075, 4.167928158466366, 6.04633331635832, 5.868569631486716, 4.816448391823814, 17.779295971688715, 4.0697181265094935, 4.535109868914777, 4.3749976818858105, 6.851790579229252, 5.404510159126377, 4.34085124013932, 4.688167251482704, 5.835636131721985, 5.130186632709612, 3.417765565044499, 4.280350218537009, 4.200079062753962, 4.050384054133689, 4.650869682050058, 5.460720511871702, 3.84659223498649, 5.588322205643356, 4.3892417878363, 6.852363122725877, 7.207750285061191, 4.900387541958653, 4.767765226727861, 4.661940288407933, 4.322637176083917, 3.8817557920385344, 4.724528948082356, 3.7164206845579137, 2.752938916517456, 5.138039458615386, 7.006093611433393, 5.337193835624486, 8.900996156594655, 6.962096981501022, 4.383745485174384, 3.6311114881149766, 14.306560094867935, 9.68996789389448, 2.9601461558764166, 5.342200074127408, 4.63438019176508, 4.868352183400017, 4.948910349721234, 11.479035284350585, 4.007391386723003, 5.31062698309354, 117.16286309523811, 5.10732592182512, 3.6129583950460176, 4.789435884893134, 6.070804366618554, 4.504334867786612, 5.162390096611438, 7.775229524771851, 7.491341313665413, 4.0449037427257135, 3.6483879158198684, 4.994175078379385, 9.548259464843294, 6.074817579543514, 5.4036996889668885, 4.536805198168346, 4.598242038392694, 5.732135414827015, 4.33711849013644, 5.532704903681365, 13.026387789340637, 5.8096293445464795, 9.712454763594707, 7.515129244526408, 15.006596311590975, 75.07343733842002, 18.122125031627505, 9.838865947967555, 8.591706926237961, 20.500398909772596, 6.145868394121073, 24.891804902295593, 3.373626431798618, 5.04146067792253, 4.934386125969001, 8.988867961576085, 8.592411528664561, 8.200137881466684, 5.701684599344961, 3.58718052591054, 5.277911481327346, 5.116757821845833, 7.194383374535509, 8.971421438361409, 8.291731762304153, 68.48588247863249, 3.4739153186612675, 4.357731939111566, 4.367663293385389, 4.249585873998627, 7.989954023254616, 4.623485057727464, 5.325410853801597, 3.7812124066948476, 3.04140290060138, 4.860416774071578, 5.097396789927202, 5.361917673745581, 4.447465937104515, 4.476737926052443, 5.7554620341037666, 4.92098168708346, 8.12572868924877, 7.12851191467921, 5.600115043942985, 4.795849615326582, 4.797395199246665, 5.948907705257704, 7.00962806538106, 3.7843797475360312, 4.820267109381289, 4.179000090213575, 5.289062418850961, 4.3179155403690554, 5.3105873646206465, 4.903709766873073, 3.965499812272341, 4.113466699238756, 5.2403037462398565, 6.295107709323769, 7.726268845068843, 4.6089293248557075, 6.660394060459772, 5.052886567538741, 4.155527114235507, 33.65527946338163, 5.868542246732696, 4.255840736618292, 3.4790249065603644, 5.763977933403856, 3.9693045573773214, 3.172224245707057, 7.529729024893505, 3.126247519959159, 4.152315953138338, 5.134434093165695, 3.1108305912804433, 6.256779080385478, 4.819925617721681, 3.3707995620112445, 4.819799153818008, 4.617701202277706, 2.7091196153184525, 3.8870493926830476, 4.994511095636187, 4.268826412369437, 4.102785083650716, 5.176703870956702, 3.2652936024543027, 4.15962600829941, 6.441361933091701, 4.713772252639414, 3.5446035387045445, 3.465921327321887, 3.388498284196346, 2.955398879305364, 2.2637233793920517, 6.001470609338387, 6.676722126062487, 5.743057699387367, 25.94000711406841, 5.915220692075659, 6.743147819345343, 8.389892566092685, 5.078817596447274, 3.9137588965961942, 4.9080656249373975, 4.222632744039062, 4.6212502882775235, 5.4477859535960045, 7.682398450921999, 4.153659529237868, 5.1014076665985675, 4.682092091166956, 6.988289138251694, 4.408699930880105, 8.675054860916239, 6.781246764378361, 7.73535908828579, 12.985937877515022, 6.178367586294833, 5.3591531968026995, 3.6564614990640316, 11.252211139312658, 5.531582134598387, 4.6620717750431195, 6.41073998678833, 7.303141906151505, 4.244911812323229, 4.577685169394554, 6.324744081747589, 7.537124693928224, 5.536126635000493, 2.744409564235298, 3.3834206415697525, 4.437308107452022, 5.682851183363937, 6.041576111905919, 4.9464218830579325, 144.331354978355, 4.571294285698769, 4.897143244899071, 5.819224903363524, 5.904650768920392, 4.005705315476611, 4.21957511062605, 5.933079950491446, 4.855811475525967, 3.975045174312898, 4.214096851963972, 5.3950529442621535, 4.746958421357167, 7.082095467959102, 3.8042366036875115, 5.677910144666414, 4.546549457447023, 8.733683260851032, 6.25286035728082, 5.78225712320043, 4.731152168531744, 6.068439212738564, 6.0451850566695855, 4.737861474007129, 5.189485561395836, 5.365229829460232, 4.2949670605014525, 4.631821938390036, 4.4620311582285055, 4.063574008497383, 3.775761870418909, 3.3807237649784003, 5.0631240611355235, 4.382940145610893, 3.9933715744900358, 2.2296674143473907, 2.9227561240858164, 4.274956792132211, 3.5222050289249154, 3.188298058581771, 4.614441135478097, 4.148899179871974, 4.933136471527569, 4.5583142799781315, 4.944385591931345, 5.719798047757227, 3.593018001542468, 3.3306437553381745, 3.911716740770196, 11.066757380095963, 4.962464499913326, 5.660449678093702, 3.620996641328459, 3.812185338059194, 3.9393336392946634, 3.882826231915113, 4.492482490872637, 5.163030485154284, 2.748757128315187, 4.469573061593563, 2.8813407903838337, 4.045810684170835, 3.9011783380870684, 4.02990734684801, 3.748561814756459, 3.446595923925401, 5.357052727967645, 3.163480337843698, 4.977157904878782, 3.386894502169805, 2.906990892774877, 2.9296441964504756, 6.894288785456072, 9.193200144638784, 6.43895076438326, 8.020449968453963, 10.20882966294847, 8.769678527524848, 5.476589489965349, 7.670175180756946, 8.567456228745286, 9.09667322133229, 9.683603024412369, 6.166103336740152, 7.234869175492318, 7.227348613538913, 6.41031188269522, 5.497940721580049, 4.799188464307484, 8.123596282635896, 8.275714661865157, 5.085546726736202, 5.484624479216519, 7.258964281690984, 6.399275765249909, 5.828081972568728, 7.038935962970752, 5.341002682407411, 4.25169038010282, 7.3629414170597185, 6.163122345010431, 5.458258245773535, 4.541773017078752, 4.80291709189454, 5.711915193749337, 10.915496491271327, 5.067006994572138, 3.794872941100412, 5.496807847626472, 6.314841204953191, 6.28042477210364, 6.2537313484143, 7.201399004934563, 9.788399523729954, 10.218866981402272, 6.2941167122190365, 5.622346283418998, 8.025219718689996, 9.415819377709639, 6.5674747532700675, 8.147543379251745, 5.829650192866668, 9.583210491191398, 6.979190645994466, 7.702344880691204, 10.630518105133268, 6.088790258415359, 7.98617751449587, 6.6573058848412385, 8.491497932021366, 7.965821518529802, 6.127746784434482, 15.161804540426866, 8.910608679058068, 6.043205436134983, 12.142389035096798, 5.520444791582938, 6.791824521097053, 6.683751117838138, 4.691487862617105, 6.869906417971962, 7.890086566695883, 6.294278927765735, 5.154076255954143, 3.936938727736448, 4.0559441066173605, 3.6342230180357533, 3.497406363203469, 3.085556052684679, 3.3757482071168554, 3.723047624837195, 3.648164260727993, 2.964070045372543, 3.8456302272654694, 5.916362386207724, 4.375387817480799, 13.75068201470357, 6.4459005843719055, 5.071817452672373, 9.640158935212424, 4.178893511730254, 5.430790434641988, 4.716118116923257, 6.062925764837212, 3.279320900178542, 8.654941770020194, 4.327854068472271, 5.046236367694734, 4.786912281382617, 4.878969788881279, 7.575927344294496, 5.696537230378698, 6.304952338676334, 5.785846368407887, 19.894809733947966, 5.500590605062678, 4.257352363896287, 9.85666821154714, 3.7960267598967032, 4.474762618368569, 9.340911533404281, 8.466952939254858, 3.7272750946739603, 4.960246461984477, 6.804536603809988, 6.47581360073332, 4.541454345587819, 6.821960963969014, 5.026666936908318, 7.650804223927731, 6.070323906957918, 6.398825166081818, 5.436056390259267, 5.985872625022739, 5.387411297423195, 4.320329874655879, 5.645930464736331, 3.651507487099243, 9.004343281808701, 5.2228031096492735, 9.389341757065537, 8.73658663718762, 6.869560313880642, 4.872895935572831, 5.612127912151569, 3.9390129480782137, 5.913168233394416, 6.222144046831312, 10.93638973758776, 6.536288028955786, 5.459677676988502, 15.298887791231826, 5.420658329628991, 6.10986355896022, 5.5053554632982, 7.89412472203697, 5.55846931377092, 7.0171985782839865, 5.716477020387305, 6.155341033548288, 13.65988637791191, 5.216843386558789, 8.873153160030098, 5.966416393170936, 4.622922113894504, 6.123424682689856, 4.642882043951349, 8.1919273529404, 51.462205773343314, 14.574631989051158, 5.0486661167788185, 9.70540962115909, 6.689916102080351, 5.493259626063649, 5.961290760457304, 4.4938947085456915, 13.174720210596188, 140.2224826954092, 235.61166666666682, 205.49083333333357, 195.09249999999997, 149.93166666666667, 160.12550000000002, 136.90277372627372, 14.502040992890636, 10.156387175705616, 37.85819844902654, 11.081328682655597, 9.067567383591296, 5.802311549376016, 8.165811687770368, 4.406505233945343, 7.980607047575861, 9.200117998579712, 5.871104783242988, 5.408412288677813, 7.66388629131851, 4.887843274276236, 4.06995965007721, 4.4719523078457915, 8.583301517755524, 5.290175879887891, 4.490673847732631, 4.450142356666214, 5.724249339451169, 7.290852735412077, 3.4929570957785963, 4.214314888344227, 3.6328506601416555, 4.854753882119326, 4.741243290000104, 3.9706371115475, 4.958328943660623, 3.429006764341695, 4.680884348757502, 4.295832458263375, 6.939000066208228, 3.963629356482264, 7.051990281354536, 9.781483301683707, 4.910238558402753, 8.02729643794455, 4.968159819742636, 3.4039314965982763, 13.003085127875273, 17.312361459796243, 17.343166302779338, 21.66526630130096, 19.207033839228263, 18.03053481403237, 12.15604231061364, 24.97175404820497, 18.473688515406156, 18.502267042614214, 17.492388186976427, 4.408874815811053, 5.200589882497892, 3.265344486413436, 4.150205494500041, 5.281596512908808, 4.479181499995422, 4.006109995126432, 7.160447631207469, 7.593311050644461, 4.431686278382602, 5.026216939435095, 4.254749426938451, 13.922276414349254, 3.049180234551613, 4.085301908769142, 5.968804800758321, 6.813244445813855, 3.65149012870023, 4.6164394577998795, 3.569418602577581, 2.9652115270081016, 2.835090530465346, 3.239599625431157, 3.425301545718303, 3.3127203484514403, 2.9712992141191727, 3.4563069760553446, 2.663376250131092, 3.0486732283030644, 3.5275584680881913, 3.2208149368057177, 3.0556215256879455, 4.558594063512832, 3.6782322833324095, 3.3559484485983, 4.010501623163429, 2.8227569578161527, 3.4838547461951057, 3.662218710017806, 4.4051016142509605, 2.9622620446894614, 2.330621540215717, 3.5230654889028243, 8.32374025043715, 8.266939635591855, 6.817671644969853, 6.027419416071854, 6.145058314204303, 5.68825880123285, 7.496106354029265, 42.85311043322936, 26.88556291193702, 19.582625738021864, 8.805217887117376, 8.9438727957838, 8.918308470261223, 6.072689587601431, 77.87095670207191, 5.4278428080685694, 4.3882077908135715, 6.972848568978416, 6.924102406533673, 5.543972754469504, 6.923641238481456, 5.0961509783367225, 6.208831655257487, 6.395603749640776, 8.144561193599788, 11.522885542765705, 5.357551478463659, 5.955465578286734, 5.6287327820522375, 5.96206582466672, 10.392651684162496, 6.941321213212771, 9.8008112121853, 10.681465352504297, 12.295806333607143, 7.591064237274143, 7.846024303288662, 6.623518603208976, 8.258418208489896, 5.815849965935775, 33.60416467317729, 16.48740484663924, 5.040320019427036, 6.917819810292486, 20.67409451291932, 5.9262819003356055, 6.440648175492485, 7.018051515111125, 5.779721611610097, 4.596640305655321, 15.317106104712078, 4.106799285489253, 6.1988851447184965, 8.861418961269536, 6.329264093546425, 7.257397760353697, 7.54727145906178, 4.9977720618195685, 7.773899091402463, 8.048672923842657, 7.031910121621609, 6.8498945982953705, 7.312547277412293, 5.103051254904868, 5.727031288250965, 5.495417644862869, 6.860323794899096, 6.300685539381282, 4.799981488764055, 5.580369411070357, 6.306975465141236, 5.070357780820191, 5.314552521590089, 7.52590399244792, 6.374319270153411, 8.488825066168028, 6.048069389450377, 7.964899508992109, 12.765877246637398, 4.342085106923692, 6.386198641998517, 5.851335481577497, 5.868841369010625, 6.393225940271619, 7.1554677813350365, 4.711811903744689, 6.168342299943242, 4.802043461540359, 4.925973320260932, 7.7588464603268, 5.97918403626026, 6.50545032856234, 6.550616957799576, 5.432761989489803, 7.442159913296844, 8.166599538265649, 5.77051803927483, 6.351370336183148, 17.688610946541385, 7.313678695388547, 7.408610392023436, 5.683732000127858, 5.838299667918339, 4.798486309770971, 7.481401597474912, 5.599150059968961, 5.778182426687393, 6.263167171073398, 7.7238762930216955, 5.066952696755973, 5.692679128275217, 4.538931788770879, 4.937629204925281, 4.5512244834873306, 4.707590392575256, 4.511255675867455, 6.311139814656299, 5.187668627631042, 7.336669679565349, 3.82012140702786, 5.217009683409349, 6.990486685512676, 5.527204324540577, 5.631161510049979, 5.3118561623231555, 4.309586434428101, 10.780502608039106, 5.487369452312763, 4.426581812160327, 6.949076497637695, 3.635886059882932] disp = [0.0, 1.0000000000000007, 1.0100000000000007, 2.12, 1.4350000000000007, 1.340000000000001, 2.321666666666666, 2.0316666666666676, 2.3683333333333323, 2.879166666666667, 3.3273333333333337, 5.083999999999999, 2.140333333333334, 1.2429999999999997, 1.4397619047619055, 1.7491666666666679, 2.538452380952381, 2.0658333333333334, 3.079214285714285, 2.8474285714285705, 1.9941666666666673, 4.450083333333333, 2.9205277777777745, 3.702979437229435, 2.658137085137084, 4.4726746031746005, 3.839746031746031, 3.3189678099678095, 2.9636269841269827, 5.377579365079363, 4.0060285825285815, 7.563063492063491, 6.33301154401154, 3.0978079143079134, 2.1000019841269846, 2.9141785714285713, 2.6998888888888892, 2.765611000111, 2.911739014253721, 4.560448763225076, 6.077493629908105, 3.1657896642830856, 6.34390017825312, 4.3405988455988425, 5.9032899877899885, 2.5092222222222222, 3.5923152578415736, 9.48864069264069, 3.723676926101075, 3.4131574259074227, 2.4298333333333333, 7.095606906981908, 3.318797312704346, 2.502650338791642, 5.239124216524215, 5.329671356421357, 2.4957206127206124, 3.901994633144634, 2.6237625635234334, 3.3191588689088682, 3.1193805418719207, 2.3415858669108673, 6.390380480630475, 19.819916666666668, 10.497490989402754, 7.974378787878786, 6.125751165501163, 5.37339701498691, 4.091125056724318, 21.338111111111104, 5.196860838507897, 4.012080182072829, 4.649537130705548, 4.144909038673744, 3.2136560789060775, 4.689596625596623, 3.4554180541680526, 3.761752390725216, 3.284190681867152, 3.2677080550168776, 2.8911378953004334, 2.7785666193112, 3.0365682737025605, 2.385907166005076, 4.005372493734337, 3.586768616204543, 2.4893388439128508, 3.114365979913804, 3.454159901476605, 3.071876349978523, 2.7089364598225907, 3.274852206733239, 3.5293426204604987, 4.553636157360012, 4.3378359704026055, 3.428910328852433, 10.707112637362638, 6.861177493802492, 8.977926003734824, 9.983915376290375, 8.485586633138105, 9.271412143412144, 4.057765794084062, 80.99969841269848, 2.940905045947728, 3.352953396217204, 4.569377649263704, 2.62182867515626, 4.076285077325775, 4.048624883286645, 2.467870608748917, 3.9066555788982242, 3.7706131368201796, 3.2171583800186734, 4.543045221118748, 3.6940825741442014, 2.7093083630688826, 3.801072982572982, 4.001140316801005, 2.7984827491680426, 6.416973532358593, 3.9279119654854933, 2.351920061476884, 3.7966856000989626, 3.6806493438594488, 3.5346784615640088, 4.346462938377898, 3.9628355895281433, 4.067373707573528, 3.807650377199289, 3.5915294812342786, 3.0644267993058305, 3.8449709608176574, 6.445341132615198, 9.117715569555429, 9.168892127543549, 5.601292842707085, 5.204427758016948, 4.849566972391554, 5.829847360854443, 6.616381426765248, 8.17082959604683, 5.487870759740769, 6.633301477517841, 12.200131799503113, 6.590492281977394, 6.033636128818065, 4.565165520573958, 7.615716499813639, 6.936568745882851, 4.693561068696723, 18.409496614671617, 6.286702590774688, 20.48398024221641, 8.515179967673069, 7.914320025706911, 4.980796006270561, 8.016138345969718, 8.249904537232315, 7.157535114038616, 5.92453456403986, 7.825909778050105, 6.057816589891257, 4.939155515490114, 6.659040927295695, 4.640145620893997, 9.51305630907159, 5.820224496627461, 4.695524791700048, 8.390174459204399, 6.166350877532012, 8.126117020607618, 8.832385731582502, 5.25281072797616, 5.433196415512034, 5.50478409123169, 7.387212175378047, 12.358660244507192, 4.865626469842916, 10.620090799085178, 6.499388724669466, 4.992530852229127, 9.624549280375433, 4.753426687027803, 5.849393758507873, 4.9189051358147635, 3.940366603241273, 6.654747258120298, 8.255036497404397, 10.557001044821266, 7.374377088067876, 13.146336057416924, 8.013378932429365, 10.171746561192103, 4.178323767825831, 12.213974484996577, 8.537859578330162, 4.050170992196061, 5.898043388460396, 4.2595716008566535, 4.022330576075131, 9.098268993647197, 10.625533394599739, 21.761220134784374, 16.051792429649552, 13.504932726156357, 18.952940031480303, 5.579513863169351, 2.5568192780913352, 3.470871406226239, 11.756179359710664, 10.582706162144241, 7.477628862583557, 10.485123999792474, 12.151402688241507, 7.9746148151959915, 13.662280405052465, 13.624257316571802, 3.26432983910447, 4.278895825289147, 7.556711574392341, 3.1446682692630636, 4.091989389210855, 6.820217194594627, 3.031116473683492, 2.989269384744144, 3.8190672401786943, 2.7824239033042724, 7.832412588722024, 3.8981390828894686, 3.057921903744181, 3.496352460608245, 3.784810208487976, 3.3969000993667593, 2.923712578321182, 3.6113856890737535, 119.18435073260068, 2.9224225227628575, 3.00636124175227, 3.181104694924858, 5.039719669030694, 3.278984100245013, 3.104015432874386, 3.5243414156962736, 3.1184358391984555, 3.3173942136286487, 2.6132135915050188, 3.045159984279027, 4.994257751065591, 20.82522359280424, 17.881683830067413, 4.3609208789948335, 2.6955310334818767, 3.1629537454910555, 5.546474951010437, 2.7217295700261945, 9.835830234782879, 9.203495903138386, 11.333334290134172, 12.30469632771173, 3.289994159451941, 4.188647434323345, 3.493871748870853, 3.7394547801504268, 5.699874917284373, 3.103165934930237, 8.842440803598501, 29.48229105873595, 30.75227841325503, 14.043731171930247, 14.829508222918088, 73.42750101528824, 15.28924310625149, 64.37372658822659, 73.91791001591002, 34.480747981246324, 48.235858153317544, 29.238639377674883, 15.505320481661604, 8.176852670601125, 16.789735300036284, 15.115631872589368, 30.389418516279573, 18.068763978156873, 8.348273478659806, 14.000375998393066, 9.648494291193707, 16.722473813291323, 21.418748795613396, 16.155778691530283, 224.22144230769246, 7.907681282146575, 38.679912398009705, 11.054111154007796, 8.732575951106925, 12.027991336192136, 9.356316547937437, 20.777812327485623, 8.525382916823638, 11.66546148222659, 20.567304294328245, 6.023899753654691, 10.01124212294589, 17.077189211331092, 12.238774189408087, 9.052240266694064, 17.21415613368684, 10.556501480103083, 9.676102703785235, 9.059978022569078, 13.937803499952258, 10.356029476480083, 4.548590096150444, 13.150422045266314, 12.885372091813492, 11.986898245661436, 47.11944300969206, 95.49076163092968, 103.98198030201243, 28.798982505389958, 12.286932468610374, 11.5252691008222, 9.825920742602811, 22.949949873646272, 11.650690309263956, 9.048402821358508, 10.174191476951213, 8.060653291185128, 10.583649309188267, 13.141566168669499, 15.495154512144527, 37.49713350684403, 8.99174921470266, 23.079601699901193, 25.979537891214697, 27.01484446153404, 17.601127394293055, 26.11275618825619, 9.965902378141868, 7.6334828302872415, 16.19020759387397, 19.49910203699577, 21.615329577475865, 34.36845177045176, 13.886356844964991, 18.535542886770997, 17.313655871281313, 14.580883865200773, 18.901203421260544, 10.59825480061842, 10.466832780146243, 10.916946588500409, 13.66849403520456, 16.28730167673457, 18.27446627713434, 23.183496687952562, 6.8940772698251775, 14.779958906764598, 16.977841547439088, 8.697503495589224, 12.041712662534847, 8.377980134020275, 20.714420714987153, 10.427549738301044, 14.476087169706172, 12.255199083210172, 10.465268391345722, 11.667094870948588, 6.549266289736414, 113.85838891663889, 8.951614540689823, 7.983875518785952, 14.94057514420187, 13.182309666597591, 6.591576996472799, 13.339618704870931, 15.208083168913577, 15.419261740497014, 10.618062789934168, 9.205429889408949, 9.560569631757128, 4.806027472588513, 7.073773320511576, 10.315338668821438, 5.153313604451102, 7.995099927849927, 16.065993309983728, 5.243860640434675, 8.36800292092108, 7.093546142088389, 8.564920574293918, 5.698189947341429, 3.4190394124096417, 5.55220999751905, 7.482928545482728, 7.717652876058804, 7.614513402526215, 5.432688511909487, 3.9489175609207456, 6.2887543119032685, 11.208513732863668, 7.468387018586056, 8.349956601703184, 6.393429026651977, 7.792728317681036, 5.410745626622264, 7.322594181970172, 7.294464373515521, 11.75176969133084, 9.647583321757564, 7.218893236912896, 16.11340515879059, 10.344745695407875, 17.323405108160507, 5.949041943217985, 6.556981112943162, 5.963870293333078, 18.609535925693717, 9.66986703289606, 9.11594541183732, 15.910876949755696, 7.567020461321217, 11.989306584387483, 6.786333113583848, 11.60810723506178, 7.9067112261395005, 11.98364393655603, 14.150471807670334, 6.474297259611242, 8.966874007763524, 11.550396425617851, 8.747061523822214, 7.479351035782078, 9.036093044233864, 9.562185319377235, 9.162058134434366, 10.090352503031475, 5.973097868873344, 5.378980424365781, 6.612545228110539, 8.028991556716253, 5.396686534300143, 174.60416666666683, 233.99833333333348, 211.06916666666686, 193.32907575757582, 161.34950000000003, 163.04399999999998, 127.08589787989784, 11.731863125193629, 9.278985072483527, 7.71525532477089, 8.510697395402095, 8.059310396234395, 7.6278882795651315, 7.214830226035958, 6.626663217880604, 4.69528932819548, 12.69116392688826, 7.983962287100063, 5.177940688687798, 5.390041365037046, 9.466299420901931, 6.1987300170362625, 7.838244667530535, 3.1138225150550194, 5.255175584978303, 9.49707987773806, 7.18340774761326, 7.962680175569181, 4.385991860958862, 4.283513477659387, 5.3639121131168706, 4.960532577626408, 7.264199760389467, 4.310614532449741, 11.768175361240068, 6.068427976530445, 3.334576897223187, 4.312950536283448, 3.036041048212959, 3.2189515498317354, 5.602416648213551, 3.5130813898343316, 3.2434658812420296, 4.159592388049567, 3.1400443091781556, 4.244874576505413, 6.345194468704714, 2.4802230296910723, 3.88714469555972, 7.74000744204858, 12.725290751363325, 7.9105525991895975, 5.717120265212897, 10.69337493715435, 5.942013310200381, 11.939233040911716, 10.254928532449245, 6.25723041158955, 6.873202575356712, 3.537656919361941, 106.66536796536792, 4.87976275448326, 5.519435174460163, 6.8897659724802205, 8.902118019258678, 8.27936679722023, 7.574631303441873, 6.48602722885929, 4.91815939433602, 3.6753903629045857, 4.556307595636024, 5.571888063420655, 4.790645772026531, 6.04982695376114, 2.795937135479801, 3.8357295436243364, 3.887659753727131, 2.8506886024037557, 2.8049814706817657, 3.5589308784457345, 2.9748695974554353, 3.5827764220986063, 4.909773086855466, 2.6673383377662008, 3.3417585802100302, 3.0585400874418998, 2.788051336483399, 3.7589124435710635, 4.007270972363271, 2.632801953644354, 3.4042253612400657, 10.751045152196443, 11.776324827948633, 6.056502260722329, 44.28372798474263, 6.317793250641538, 21.706107263191303, 31.59047779029027, 9.277544231813938, 37.83220377222659, 10.27503827756777, 21.574379385841166, 6.958970940511594, 20.478715830754865, 11.04133823573891, 16.29816010380373, 12.911721157890607, 16.035972946228235, 17.66144355966106, 36.843208577813265, 7.53762406274531, 5.948818360091065, 42.40473286088036, 7.70974207182962, 10.478497015141699, 16.734233732511147, 28.802092504241074, 7.209381362655812, 14.461281517170596, 6.423906846119424, 7.787250565788069, 22.981382999682033, 11.629693433904244, 9.417115562093406, 18.561957966574195, 10.05553436938225, 7.128400960184572, 6.594705804025538, 5.901843930067372, 8.291545604475266, 11.489924282206577, 11.815867867340716, 4.725248978286095, 8.08951810032382, 9.241853233993242, 7.045258832298833, 7.687330479781722, 23.956221016272274, 10.471478479487503, 18.098240352209846, 17.606449204410143, 10.105379482014845, 12.854775290108332, 9.23744172213421, 8.74557144325356, 9.177644114004902, 5.519705191011467, 7.418741752977381, 7.083466883663506, 12.507629688329828, 5.017471938902172, 4.873328187391246, 12.683889344330774, 6.8227906903032665, 10.731085781884595, 3.929468263871377, 7.192409029632221, 5.161941626540998, 9.724777033416622, 5.585253284297401, 6.01998224450474, 4.201729885535191, 4.856309691854194, 4.22971227822807, 4.738050940605287, 4.7996818226631035, 4.2465234180383975, 4.11535693572394, 6.459025929739846, 5.903123411411382, 3.9842252998151637, 10.184273660805879, 3.697998730697491, 6.083719533055416, 6.269044316902865, 15.435081059328327, 5.451978730589507, 2.9262692506272363, 2.844004516488011, 4.237481186788659, 6.719286979268829, 3.2650973328087365, 2.9830267445080723, 2.7522368626112295, 2.3694866555061482, 3.82050971974113, 5.224707199661411, 5.275222222161594, 6.297104071317178, 10.760669259035542, 9.127398914606266, 6.682219520334646, 5.320801239949274, 86.44477329215042, 2.728577537732659, 2.4399822864104603, 2.8619097125861344, 3.7178549135260246, 4.5301096189388765, 2.5011719092168136, 3.1844194389806413, 2.2602009097374096, 2.905813362768929, 6.307919222199576, 4.54401540479738, 3.1178216874369094, 2.580119368655104, 2.8272986845762254, 4.533803572336353, 6.092012797157732, 7.285000386309595, 2.855519278048042, 3.5933724051610616, 3.811131503289191, 2.643038415611756, 4.544020623603709, 6.0839966374317545, 2.8553501664818013, 5.013653535545096, 2.5350008281484704, 4.281968560768198, 5.89305111534756, 4.81498719737968, 4.8096861492089635, 17.787806327368862, 17.269353346373947, 14.339885364701644, 7.652279397533429, 10.613502256497075, 36.9823029254661, 15.80334006921537, 7.755692410933149, 6.526167175365253, 7.397099681996608, 5.6869296127776465, 6.757532378852131, 7.036142237929958, 9.78278478163688, 6.055405432521043, 17.177247129353926, 20.031476832142662, 5.284856086292684, 7.2721728587408325, 11.054992749383283, 85.86094444116216, 4.732734624638791, 8.600055861242845, 7.235651758517294, 21.589361592716095, 6.938368929631895, 5.963587975227928, 7.242225995847706, 6.650178557083184, 8.814987573654752, 45.45012269568681, 6.28941324827764, 4.906824701076254, 5.027108773521397, 7.605908873479863, 5.154766170174055, 207.24857142857167, 4.3832119627356265, 6.820098772105746, 8.593816318581613, 4.663941747014286, 5.3937566804969315, 4.962318758298156, 21.52985657691151, 19.00416079146971, 8.746350750777108, 6.728449084251894, 14.180746097736057, 17.805778045594362, 15.308148571005283, 5.117893226240918, 15.344771563964324, 5.009530729017968, 7.211479539109727, 5.826710120507227, 12.0084344700577, 5.075022251477723, 11.03078511513014, 4.535244667402616, 12.049199674269682, 13.360466596197849, 28.27823378240379, 13.22570160979011, 12.769833567957281, 6.320170583321049, 6.799616462132539, 7.343327054232161, 9.868130713223845, 5.316975981959326, 11.782964573422385, 10.609216348870692, 7.135440175172777, 5.660533966579967, 5.315280366304335, 5.027558666021856, 6.775364728144659, 6.911611167341429, 4.99473686640424, 8.927424747886265, 5.45059877388294, 7.458237893951594, 4.484594534438785, 5.201641075109224, 5.7388350273910165, 4.489316270664919, 7.6354090952906715, 5.3856067109503405, 12.317352942700124, 11.55519753914778, 4.806257733701911, 9.887769719944139, 11.722258802512117, 17.98275127730811, 8.973036732609316, 5.371710770546132, 9.631009473742672, 4.999715084000609, 4.392798549778114, 5.107856688869572, 4.8848528243444225, 5.9504239335226154, 4.745806018078514, 70.50863974152679, 6.314547171817081, 7.361286650136629, 6.505760048161702, 10.855209373688972, 14.858344317786912, 4.341375653927538, 5.353678017262332, 192.11583333333357, 12.191602289103285, 15.012329694173077, 4.483257065593122, 9.191527303896704, 10.135231559805389, 6.808395770873636, 4.7954129269161845, 15.901689499477227, 10.210545776994504, 10.967293183641893, 14.83202577474089, 8.955137518375993, 13.682544260489905, 5.024137321696226, 5.307730807717704, 6.255581084954538, 6.953287039172173, 6.536041012427412, 36.45846862383677, 22.14916212005339, 22.21496744135189, 17.299278028480284, 22.217594690809033, 8.635782847805729, 6.376740672160792, 12.410337319726926, 10.616256126650184, 8.381642422134433, 4.789633817292436, 9.609150468274366, 7.052109467740046, 8.54556732583827, 5.658435890650165, 11.3602102282793, 5.313768388856593, 4.410850997260456, 4.737559839173567, 4.939455158665866, 9.756721970029501, 15.92476161324036, 6.247549780231525, 6.315176410681648, 10.577133276397022, 6.001289266090632, 5.969019697545047, 8.841448309237522, 8.701971665077815, 6.887276954247722, 7.379809076986754, 3.8878635082460935, 7.407172866143153, 9.855034440087133, 7.641830141434693, 7.973394087941875, 9.752399642582477, 6.653192409323272, 7.983414485255315, 14.502774194537349, 7.713188694327764, 8.193441878537206, 5.616424758020552, 9.573251749231158, 5.31392062344488, 9.503195780914973, 10.09380876068376, 6.809963203691074, 7.895760936774893, 85.95865649701182, 27.861245697107176, 7.809730221482813, 6.21453075094728, 8.051327927530462, 6.564348771326711, 14.494951122664737, 11.268625717063102, 8.81744151273563, 3.829658819267387, 5.383144046667849, 4.486495586870536, 4.246756679541481, 4.099847516133981, 4.505532531418106, 5.0854158268202365, 5.477803857404459, 6.222142813670679, 5.532162191130481, 41.711740863729, 5.3955406221273865, 3.7868360311198797, 5.125758637514396, 4.74489830304576, 3.396863632513766, 6.146510185959777, 5.898421769500341, 3.7862011592261964, 2.6751046997762127, 4.7586517729817706, 78.13646374458875, 4.2260379743769905, 4.2423749736748295, 5.326989157655968, 4.900963978344367, 3.3607534168714657, 4.100530162890816, 4.8238037828629725, 2.7835957233174398, 5.481948472945847, 2.884258254179045, 5.82711815961816, 5.063818185130225, 6.376686700504812, 3.3657553835834007, 6.208762453008086, 4.758648465386951, 4.167962867522723, 4.3001273262636275, 5.807674823563494, 5.1544329453359055, 5.069954353605283, 5.1861000000825515, 3.3219024499107723, 4.133047997302835, 2.9758294585770524, 4.986101421110709, 2.9822641352960817, 5.068838548406195, 6.313806343421532, 31.06252845320563, 12.884454843599064, 18.837108815363585, 22.57707631843599, 6.498494003004896, 4.764243266805258, 19.87595616368327, 4.764830078879035, 4.785668510620933, 5.815338113677249, 5.601307084742271, 6.371128074404287, 6.469696297073851, 7.745283148076854, 5.928116924576861, 8.401547271073584, 4.882982157160762, 5.041060121810648, 5.329884837754451, 5.682900072430275, 8.484177956971221, 5.110940161898405, 4.695785130712322, 11.037107071389364, 10.808731344907866, 10.683380406754665, 11.698017462132302, 14.310485953206351, 8.312278572249067, 6.383036963504773, 6.092733629317994, 7.297224093173497, 4.116681949494658, 5.574779242800103, 4.327714775546863, 5.652705408847884, 4.401940919904315, 5.286934006313398, 5.534318443030572, 5.173131664319197, 3.792704050928543, 5.495916485747067, 7.015615236095931, 6.2035251350360605, 7.763961763122783, 7.9850910169448, 10.14656541696114, 13.731195522364397, 23.887347875833296, 11.546169565453278, 22.544538351294896, 20.459941957372845, 8.491328760642938, 7.959242192666889, 9.063442990519352, 4.6982235045350835, 9.007038552399539, 6.875822950857446, 13.746153638821776, 12.52472501188352, 10.869135269776615, 8.42284411895649, 7.421280179411891, 8.990523411743716, 11.196356266396629, 6.309910409475075, 10.280718120759534, 15.858711095921622, 9.408312169811461, 7.068336589446655, 82.35165035674359, 5.853219790036188, 7.844276393143162, 2.9030442590298393, 5.883211977910142, 7.406071678581094, 5.691690812739746, 5.1492087335058985, 6.024565100485499, 9.535732892924068, 2.768025148266114, 3.8721901349488754, 3.8757381293403013, 4.098562192469141, 6.492402486865218, 2.875082108544467, 3.2998795644293053, 3.352055773331482, 7.380465244179654, 6.643368475075974, 6.946712938503714, 6.976396891279791, 7.970754721174082, 7.51889213583527, 7.650683945200266, 4.434370016041782, 7.473575168280813, 8.078957687937194, 4.889029609001486, 3.6610775048363053, 4.15725363440641, 85.91843956904286, 2.9970653284686195, 3.803896703376146, 5.314097800891918, 3.033088450952837, 4.515946934474492, 7.244644981867926, 3.637630057652427, 4.455844608520595, 6.589046318105902, 2.601882800171455, 5.68385565699021, 5.198262391054714, 2.7452327967699124, 3.635046542468327, 5.09446792109648, 2.9448230377419278, 6.232880035196209, 9.517586067520668, 2.492025467153987, 7.204252634744612, 8.402733650243253, 6.3188117870913665, 7.450456643915745, 21.228212393698758, 27.65201934359858, 69.41046260653694, 17.460998460461905, 23.969705158857927, 20.612399594657415, 19.77806583894271, 28.951271449278252, 32.665310912935695, 31.633149320368137, 17.25230523663994, 12.937577429786968, 15.012049161108042, 16.522237031991473, 34.72715516090487, 34.32610310959488, 20.220653194270024, 16.813313900078416, 18.314466679026662, 40.481713631606375, 15.46658770850093, 21.78128917165306, 16.99448412032879, 22.659363157218642, 32.19862752990673, 27.451397801250078, 25.161200200878508, 40.7567494700226, 35.405446682975196, 29.004613583399376, 25.687752979265305, 18.388114513392708, 19.755145466400187, 29.796895314001983, 13.274972754731794, 10.748618527967341, 14.514907576286273, 23.920158991461324, 13.699378258955022, 14.02454508048001, 14.733661250721338, 12.742211558139154, 20.121078597330566, 27.11368053371162, 12.0982981521399, 14.57925437035633, 11.20260270100645, 12.529192405330171, 25.824285732469782, 18.531191473851116, 9.326912738512464, 13.805483407073748, 30.597128981373366, 9.959156514310957, 12.161014445072393, 18.269756833357416, 10.666920491175008, 24.161787592500705, 29.20846922860577, 11.846845416923657, 14.956254273049826, 14.590170573677891, 12.033126820719433, 15.44830886257407, 25.501834296273902, 38.710183425058425, 14.324325578988296, 11.931017964930666, 28.737387556720336, 12.521188119666567, 33.155434585489715, 22.824151589423654, 30.228221009483885, 28.929460587917845, 11.041686989379704, 12.864729729246083, 36.941001176096755, 18.319845709021468, 24.85046711129952, 9.351899095351518, 19.04663787717987, 8.171122725843276, 4.795499051018983, 6.480576561376909, 7.847812400631713, 19.726226029792937, 17.30615970517074, 14.892369417222403, 17.590230650233877, 13.225780955095852, 19.293138942635835, 30.631544434157934, 18.541155883964063, 15.886184787877756, 20.3636211892464, 23.830972784880586, 12.861282472850142, 7.988906769615277, 12.170256401271306, 14.27675711225324, 20.955242680778436, 15.73053066677182, 17.258652411031687, 56.32444993907061, 20.715458918283694, 18.62721072982863, 20.951555072383847, 14.245186824008785, 22.8175617357524, 11.159098565171076, 10.372252578092825, 15.400671564020282, 20.03552171492114, 13.522203250365127, 9.180334545958697, 9.719530877622345, 21.00766362513813, 12.928938090903358, 20.026445106276952, 8.786441664529805, 16.40285405855866, 12.89553989228425, 10.228254522762843, 7.117835597229963, 18.912704816100998, 14.198025483292968, 15.678418479006071, 19.850069787163292, 9.922674300789328, 14.72504693416725, 11.062148249725924, 15.392970869245131, 17.41671109030749, 8.507120709918734, 10.283072384079011, 22.445202525284998, 14.880285675122863, 15.688844035788279, 11.915692608874322, 9.150154688418596, 14.399120042627873, 7.622939091675897, 19.952218554073117, 15.731634620864813, 16.024575999652665, 7.120383808580711, 29.33335715326459, 9.732978421239942, 15.96000041489482, 6.889724528018969, 8.656036955604042, 6.381191758072826, 6.639740957669218, 11.220161247488791, 7.807937117457534, 3.7472305722850345, 5.46342538156194, 3.5980085626221547, 4.3371529191693705, 11.752805922857794, 3.997415195873556, 2.748948845587517, 4.416444744936113, 6.002532267055867, 4.792572436457036, 4.791677119440476, 5.830053398806986, 3.980317653227027, 5.694097386200492, 3.559399903897698, 6.221259685192509, 3.1326810183078946, 4.048747893431011, 3.6681029988425227, 2.9620219538358614, 3.197481843263406, 4.706580328860185, 5.330726342862648, 4.271637729449952, 3.38943131291187, 7.427043710052156, 5.010776562576419, 4.802265504718187, 3.265784408963647, 4.9026338968891485, 4.774739403563253, 6.278602387611153, 3.0889332694984755, 9.824036184467616, 6.700735580284102, 11.64322019919284, 3.946369003267132, 5.861940480563817, 7.790156658035372, 6.166092980625899, 7.430669057068111, 4.033311083563229, 6.02126816335602, 7.359535922110224, 7.397828597443568, 5.735947582556544, 4.963952914362524, 6.94970514089063, 8.533991295098927, 9.828385494786902, 5.3462432738554115, 5.22261517152438, 3.018738000777243, 5.251878561910211, 5.48543575603286, 6.281423520923521, 5.5589231787040365, 5.11056613705817, 10.949595256595256, 5.026461914300439, 9.2063054162323, 3.419267385114642, 5.076027764414702, 5.369906868373171, 4.242043997110972, 4.698956280762255, 4.5818937573986345, 4.138763970135195, 2.9329758304523863, 3.5303592176063137, 4.663909529313907, 5.0405758710843465, 5.086687655406171, 4.686602130396025, 5.743366015841629, 6.977049046364261, 5.81288074462457, 8.71574818237318, 5.871897045012378, 3.540181282014484, 3.5475045629814783, 55.49055260295262, 4.93796564217461, 3.3117285682416773, 4.267764901622784, 4.256829526686692, 4.1792518076518075, 3.6314352983872977, 6.025192810121987, 10.789301157066344, 4.895457000326201, 3.6144813476081734, 3.203895212961628, 8.749729086319523, 5.871975800265569, 3.601774453745742, 7.464726387991095, 3.4550000342708325, 2.9822691190973765, 5.472827946111192, 4.124372065340215, 4.133740410810374, 5.189419916057336, 3.8134206333662903, 3.9513817631359607, 3.6949298445978607, 3.6593282738953974, 3.696719908899104, 5.456829538393866, 3.2702263655781003, 5.436773165408229, 12.574665929482581, 36.08440675329343, 9.536504357323299, 16.139877670125664, 16.094948509065144, 13.150609432123193, 18.2529809083882, 11.062168687687468, 6.016373466230063, 21.530993511188253, 13.966824175282913, 9.667385863062103, 13.845275555581123, 231.12783333333346, 14.504016873605893, 14.895281923062331, 9.172010534455385, 6.004784195063942, 15.118308713329267, 8.667979448251245, 12.847817489066857, 12.61740546984497, 4.5607752796886345, 12.739318713093605, 9.671930720845014, 10.14904370644511, 18.246609552604184, 8.36286708521098, 9.590307264300538, 9.129937254868668, 8.276410816328635, 9.924821721645504, 7.809416581353825, 14.627884457927395, 18.20801588730113, 7.257817061997727, 8.884082428380447, 27.51105490207699, 12.72955896055782, 6.981646706521227, 7.981344360687739, 10.717441962369675, 11.537708344938435, 6.477079459351396, 29.610430005476786, 15.618854754881426, 6.855017764319527, 7.05708413714686, 5.697766542204221, 31.688980631268464, 7.8647773471004285, 11.558353650392478, 22.339895777443115, 6.905848759535345, 14.757163752494343, 22.966245480338515, 6.529142083327775, 6.182870196715846, 8.098645410019968, 25.371063922553784, 6.98884033671575, 17.373953994496155, 7.494330500979239, 6.276450897277936, 13.189680077436897, 4.912077061435557, 5.626722833684789, 13.374769021688532, 6.090116007404748, 15.192021932320909, 7.753112964574612, 4.949663343560488, 12.348034729649982, 13.59809992266094, 23.62080063135963, 3.837045673493719, 4.100139658100758, 3.8058474815447654, 3.8404018701143348, 8.037568140399749, 6.315388069906108, 4.4125980582360205, 3.570162123039489, 8.235877160910334, 7.676510851712697, 5.9717183057428525, 4.912456132871542, 4.035412136984671, 3.9536965447492824, 4.910009882356421, 3.9133553164678476, 4.184598714890173, 5.719956987536923, 4.155728810515334, 3.185406477739916, 3.7308010460355288, 4.053613660914155, 4.70024147853429, 4.2046617923919465, 11.407445368228263, 4.58897276452101, 5.508694803302415, 3.849864301508455, 6.600086052808551, 4.2669616888685065, 14.12130557325058, 5.362508095375828, 4.2192353854386395, 11.264666599310564, 9.376268226988055, 8.845185437547627, 7.591191345925117, 7.137532608149098, 12.463541585829626, 7.464319699107961, 11.419774591894171, 9.587923489187602, 9.224179366610402, 5.738459283276558, 5.656340842397265, 6.947397281593022, 39.76368239930346, 41.51379679660112, 20.57201282095437, 18.58326938150665, 4.99913738041403, 9.018615914681122, 13.719743824802647, 3.6092815685881154, 114.90377370230385, 6.03237000732592, 4.665051974819864, 4.670246654503685, 5.548203927996158, 4.088789925282117, 7.0703305383982284, 7.9969676414408495, 5.490301787257862, 3.692000753644594, 8.37148354042472, 3.6943196869279347, 4.378507955369709, 9.050797884004536, 9.577137234680379, 4.294311958389274, 7.142784384819958, 4.030901441983261, 5.833381228325439, 6.072461276835184, 4.009292942008807, 2.952122511393627, 55.931945061044935, 4.473455986117161, 6.8825357399629565, 5.7863517247694665, 6.420672938413026, 5.461207393572898, 6.902359416963325, 6.302230626943865, 6.768281039735241, 6.580665928006562, 3.7309593372674557, 4.294469159993695, 7.277149625958967, 3.8923525622623183, 5.737714000052233, 7.8157055978360495, 5.100137852165442, 5.812072418679392, 6.830082941593623, 5.16149112171929, 18.136785931904353, 18.96301875590581, 8.987551183131503, 9.984260892567214, 12.76509645251481, 8.304716518427368, 8.82006675539103, 10.381976041432406, 8.65789479312985, 11.420167868601093, 17.19502696226809, 18.887570281402603, 10.451594796839693, 10.63545804943572, 10.627188807873429, 8.50382098267099, 10.358275090735264, 8.802459600303951, 11.52095081628963, 9.811037095758651, 14.206838200173022, 8.947011603321595, 9.254647452041215, 11.765651369885495, 9.485352687909119, 13.089004379987301, 18.6512494683466, 7.194155567921229, 12.7336669939773, 16.980141523716153, 7.05764671923699, 9.08360583762742, 7.706354160462838, 7.631881118357648, 13.1250741838562, 9.441500982031416, 8.795220165687248, 8.060765935689897, 14.26663465971611, 16.826573409744846, 7.475134822412603, 13.327707734498226, 10.320115362146575, 6.678101389386362, 5.326350446260217, 5.816756016401963, 8.516737104503312, 7.014651286239747, 6.947332381527456, 9.55800130770412, 6.5519511466374585, 7.2522800681771376, 7.196655385536653, 9.297604692595904, 5.792099403061914, 12.360942782634604, 8.846700092234522, 15.261799054210746, 15.3758658449892, 7.051100364262488, 7.988615732924656, 13.711110791703467, 14.920999375133931, 8.847348539744562, 10.741849441300557, 14.744676818810618, 14.034518828688343, 15.63841513709291, 14.521371994370558, 12.97113890136707, 28.30490653420065, 8.370804653033407, 8.54883290812131, 20.384875993524034, 17.913807867371528, 9.457289031383572, 18.85393683873274, 14.95624653854325, 15.20873347528866, 17.041196621852286, 9.308662922575941, 14.304427467405407, 8.985212330635926, 12.412159206631635, 7.140991042952411, 11.867530841863971, 13.17082834948138, 12.795784145319512, 12.812971547179911, 10.324921894621701, 12.070881284597693, 15.372151820712698, 9.872049011167332, 13.094513596058672, 13.85873950022151, 12.55373208619726, 15.51902651487945, 13.242332136383702, 6.799482320376393, 6.302471564817802, 13.84807777799368, 6.467015698898051, 14.924051649250872, 59.56580565200642, 6.875880050781962, 13.335587450640489, 13.285300482550397, 15.135214549396824, 11.573528501001068, 14.010629512394779, 11.346212388637092, 6.216759147956003, 5.652742167801645, 9.648681813028585, 14.804507852921866, 14.135932550640849, 12.187588648203363, 13.12050709579324, 15.264102160770552, 11.594126197778829, 56.900130575862974, 5.4622901208054255, 6.103087241393949, 5.6268657398399835, 6.5170361044085965, 10.593368880853632, 16.02984158146144, 6.830032446020816, 7.455133315373135, 53.75897951350702, 20.488835967586787, 9.20297884433244, 245.51000000000016, 207.16000000000022, 166.39000000000004, 178.71966666666674, 134.7498333333333, 160.90614285714284, 6.521313808480789, 6.312448068354514, 24.1025880725797, 26.096945891625264, 50.62560880604179, 9.6165096116931, 14.318459110796615, 8.268780002732537, 4.809619837468791, 6.997332909958415, 21.909236977521175, 9.460880242678114, 7.193828733516039, 5.3119284569418665, 9.141300874386225, 11.606845761379358, 8.441803513044896, 7.28621482499728, 11.229954289809482, 9.12176246071826, 5.8398919156604885, 6.912744486248208, 10.194131012421945, 9.270814108284727, 9.376391450516998, 5.737971101191109, 11.723914635342384, 12.069620640958087, 8.88925368077068, 20.550673185676963, 12.818704502657678, 8.807176072664081, 8.76059498318382, 5.976921446111227, 9.915417495082194, 18.388303251893067, 8.697770218455227, 7.17464487222659, 8.552717523758458, 5.806735497115197, 7.7362665464090155, 14.243865450916182, 8.428986024603226, 10.01026178769947, 7.7105211152147675, 6.185703062029569, 9.020396790912528, 5.499479986311345, 8.778293218915335, 7.804232069166573, 4.916460984887366, 4.317597721513025, 7.002276610511558, 5.726492268489881, 5.260613408559491, 7.949019703166623, 23.789822539514812, 7.505686856420496, 5.483409523860529, 8.035940381137028, 6.980247247790862, 4.974418715429227, 13.93623298558178, 6.606955893806666, 5.902612491683687, 4.173343930546143, 199.1778809523809, 156.05745238095233, 140.76654761904766, 145.31109523809528, 96.15434523809527, 132.406253968254, 4.546945810803764, 7.604861243938357, 6.651521392569965, 5.313631963323299, 13.438369731905526, 8.278553765200382, 7.958163584693934, 8.801820409958761, 9.513287266706708, 4.6939803890176135, 10.368859479598921, 6.648681721955291, 5.942337412853516, 4.981073167589529, 12.184241512302185, 7.534463344132258, 5.5213691633544295, 8.670774831502456, 6.941609599415629, 8.117546396184995, 7.8167079870287886, 4.605726511128813, 5.56303981257848, 5.73295870174839, 5.62473462896743, 4.444125423075091, 6.115760575661585, 4.173958458190214, 7.202463069553899, 5.290415664103062, 7.521827662225995, 8.578610143384486, 3.765543415228271, 5.518594308659715, 4.970791981027588, 8.06387206005768, 5.606253347054144, 6.3724248627866675, 5.478209727012219, 3.903391817682364, 70.08182871203347, 5.647882187354204, 6.877918353876198, 4.499691780712422, 5.849765387778316, 5.000890115286671, 4.730481451781483, 5.449155689165661, 4.986688342440864, 4.103319018424327, 3.9651981018670033, 5.8154351761714365, 4.826255847680297, 3.922273591520893, 4.217906027204777, 4.661063576578933, 5.474574047868501, 3.8352874029155215, 4.329380945545786, 2.7401927894480087, 12.237700004363157, 17.17046200040527, 3.9315630845511325, 7.870804619121759, 5.608909077171252, 4.809914354909922, 5.939784547115151, 5.8170336790381345, 7.889106690105133, 14.138849442040028, 6.09147620362813, 6.200534525396306, 9.381807841502567, 10.858841908607117, 6.77957427925902, 8.433888152946587, 5.7096457403975664, 5.333771590229652, 3.8279477286371857, 5.43646430186814, 11.053555963123275, 5.567630762532168, 7.2898834147657645, 4.883466600702538, 17.314727294524534, 4.950876484917814, 6.685249409332021, 5.662886342939262, 5.035928712439429, 5.152241992851125, 5.037195509864916, 5.352519510713615, 5.1748873065239565, 5.340951737733052, 6.32568491964243, 4.434497452883136, 5.209817511706602, 11.729101685830967, 5.115043929561402, 6.982052606155355, 7.593882323921653, 5.458759620632386, 7.429724728923538, 16.42899448256588, 6.597589466142282, 9.494964171870969, 16.223272634405884, 3.734421148931529, 4.250993385373457, 5.582462331785197, 4.305742879189223, 14.876047660430286, 6.730987883854819, 4.0878454496902386, 6.877499642938601, 5.522175522799538, 5.179448763792479, 5.621620754648373, 4.285419741422317, 4.972321628129387, 14.27395438572907, 6.30018527234611, 6.8095293301941595, 4.4621126678360215, 7.822308781028251, 3.6355720335120387, 4.436254829413467, 5.480734642503719, 12.42702611244684, 15.152610075248498, 9.323401890094269, 10.454866505091212, 5.9543357750803985, 4.646613573792523, 4.468422589308365, 4.496112894837845, 4.907622424357729, 4.7631255359664255, 4.027905049350698, 4.573734118878306, 4.460551315196972, 6.161700369936195, 3.8030847084603985, 3.7209764461695194, 4.090768042849539, 3.9073277210510513, 3.6622975816054115, 4.828971516407746, 3.881866157650396, 3.729232303035124, 4.066635529453027, 4.078728936453487, 4.568464400232157, 4.321142359915337, 4.878490967293151, 5.302133460729409, 5.2485268424033045, 4.010106723381178, 3.5823557637973247, 4.411934975919118, 3.7882716305109003, 3.7396936256809865, 99.58583358429013, 4.194112201978076, 4.111086618233202, 6.259218360713184, 4.691521404956913, 4.547869024694673, 4.308561026987282, 4.091100356009347, 4.058983439544088, 4.005562863986277, 5.452036559101432, 3.426032579919276, 5.235562989184705, 3.212401615957983, 5.1385920221838735, 4.240708934717563, 5.192595738711976, 4.4958648299418495, 4.909505047177454, 4.943235754150679, 4.137147745366307, 3.843779634829676, 3.0285445154597133, 4.49399295242466, 5.167148795606665, 3.868184383151465, 5.3518339254401255, 3.9929256156577337, 3.5148811975715866, 2.7646392742033212, 7.943140663488485, 5.414074605434755, 10.20295968795539, 6.311577036338511, 21.90534693059927, 32.32314828964542, 16.27551753864166, 11.27428005786981, 11.193182653483674, 22.00549794291707, 10.783964801267276, 13.535675424758841, 4.622582418314804, 12.913025618118972, 15.164256839681707, 14.81375064615883, 4.36266976307684, 8.263413186298031, 5.717692059005406, 5.214847188415511, 5.695888213602553, 4.383993866999551, 3.4879347999169394, 9.620551603216816, 15.306613588706632, 12.833053104249723, 12.187935815091063, 8.715080620074295, 13.748724362540885, 3.9283717275294827, 82.17496521668299, 7.67937771546094, 4.634578615080698, 9.532548824580422, 4.016072266959366, 43.25448761188694, 67.14624699397609, 43.690538968205786, 30.254642332786617, 4.166389629721689, 7.749183647010689, 9.224166001714284, 6.542495732200674, 11.468249382901618, 5.772522641706445, 9.711540047361924, 4.2686922121051705, 5.9687343965648445, 5.332083621277382, 5.2623493596962865, 5.3559092818847605, 4.357799731276428, 4.363475302748524, 5.969172280205301, 7.694107569583953, 4.866839127762501, 3.3714160640068043, 4.502214310692157, 5.7086716377856, 8.434443905364104, 4.326433102053603, 5.390549170062666, 4.959264330574553, 3.3595013102135565, 4.111546075892299, 4.33374451566718, 4.834885456918688, 5.369300146758181, 4.896995330822123, 4.375738694035254, 4.120686481830668, 3.7115437733527523, 3.9802247199797165, 4.1173894839000225, 4.417024357264723, 4.706100862990225, 4.539211605421338, 3.898462697885364, 3.576221328813198, 3.402544351227215, 3.760333125404725, 4.810616118256099, 4.101266189733862, 3.7357517151541155, 4.299730344762453, 4.031065169844201, 3.880824425698938, 3.9007768290623885, 4.32486709052714, 5.280238230921209, 4.198186180602885, 5.155036373978218, 3.6547199487445923, 3.9296205878372117, 4.3456505759758395, 4.926965630714708, 3.9003173603562225, 5.553640114780322, 4.781536996509006, 4.69023738915575, 4.853222660056009, 5.9923724681423, 30.18829539058293, 7.22066071225333, 4.388576743569918, 4.720758259211756, 4.410999047608285, 3.729286483886712, 4.247512631454097, 4.327054579831874, 3.8018324750584274, 5.429258433103481, 4.239225548934292, 4.1755727396250535, 5.155843403928322, 4.406174553612317, 4.461203829697586, 5.189612121152049, 3.907498229971504, 4.2411102032139345, 5.183120552612007, 3.7826183630668972, 4.0986947960601485, 4.681636695389745, 4.722276001341373, 5.953607420663158, 4.496621479112582, 5.9631562680305645, 3.1873946061781937, 1.9757103309423514, 6.884527567740872, 8.183526479397836, 5.635899133050053, 21.374155777055147, 46.24341143424518, 45.81439951407757, 8.154910080186099, 26.768099920706515, 39.070941150968245, 18.687671958421095, 18.325699493435064, 10.884467806347049, 11.415003976084053, 24.715411454031788, 10.208186453557646, 64.91185379901877, 248.43566666666683, 197.67500000000024, 196.02000000000015, 142.64964285714288, 128.4738611111111, 190.47538238573014, 18.02332261704912, 6.428085995658248, 15.541077355577691, 17.521795185617773, 16.787156270528495, 8.424830738406362, 12.746700046231739, 61.58211745399431, 38.67255598622067, 10.993645588087483, 23.943296774315595, 14.098797325635356, 11.211587217958241, 9.423277499330096, 9.185132378023573, 24.998996021459078, 29.46663212418705, 10.880124778755304, 8.542206061661942, 14.805568195955393, 6.2537947126607785, 18.30789413430418, 13.392372074543477, 13.771419742976041, 10.692910546870651, 18.63603497334196, 8.816075318420532, 16.73142541199117, 16.75842131304348, 18.174897831205712, 26.359321893949694, 11.276367190069584, 20.206819460470587, 12.699148866311175, 10.602984056988625, 17.344423704369017, 9.105370948642664, 7.343146638779239, 5.809412326210951, 12.20965682477563, 3.7240635315516535, 9.899437425211346, 14.563485464828373, 11.556910623519428, 9.802462632390869, 4.566898609203232, 6.6498070960463265, 8.59804014132208, 4.087193073146369, 6.814301508831757, 7.860846903003112, 5.6267372665123325, 6.0734121686517195, 5.621452501925991, 3.3906391575691504, 4.584012896394144, 5.691916558222447, 7.551206360441224, 8.005389794420552, 3.5975958480194787, 7.035357686846851, 4.434313803056962, 5.710414909237177, 4.329927187739086, 7.8612439380995, 3.167532868677518, 6.92758955280633, 7.128442417476414, 4.806322945845004, 5.337132973360593, 4.914058160243415, 4.891433107640825, 6.2085238558381075, 6.878141487021484, 8.168877102881734, 4.687823367356229, 4.117864357901979, 4.83948642548758, 3.8520784508916295, 3.6971957755388503, 25.916397523325898, 5.387041205310776, 6.385583114116214, 5.181602353335486, 4.72275344535799, 3.0730667872580515, 6.2308304509345085, 4.034346503063437, 3.194474524301364, 5.859014911204655, 5.091877992293219, 4.55570327580203, 5.188797239365949, 8.098959250671781, 7.099464664312136, 4.446252200356445, 4.638221008820396, 4.0230269585203775, 4.655066949124952, 3.9170323183465383, 5.332815472651938, 4.404865511523616, 3.811534727993893, 4.277654633427459, 3.7502654695914113, 3.7581464382511593, 4.213795889233735, 4.445875559529852, 2.8083375033557303, 8.177857640772467, 6.470413173892479, 4.657547060157868, 8.714212730626372, 9.460559466280515, 9.390899252723464, 15.065038328620481, 7.364905309464587, 7.932773004004596, 17.939180488863467, 26.177341042508495, 14.173393046421186, 35.21428814312007, 18.474470299188358, 23.991379284652087, 7.023916729014699, 6.762867543872902, 19.814757655101534, 8.119360978485785, 7.086561909785052, 15.0002510365045, 169.3683333333333, 148.55501282051287, 124.76635714285722, 117.3008571428572, 120.82744444444448, 164.2431336580086, 8.204597680383388, 8.034960782070119, 13.768516281007011, 10.583777554471084, 13.633008078330167, 100.16994632283425, 115.73129898610162, 133.21207539682536, 91.16882431457434, 104.24747591297591, 108.5919473304473, 113.22915190365184, 10.377364576131894, 21.397583852085955, 14.104610666577292, 16.096456010473915, 10.516831450710297, 10.380651426983922, 3.4581740934389527, 5.523587161893247, 7.9590133027041965, 7.28723777391059, 5.60806315276187, 6.794135944129047, 8.262538655383386, 28.759201154219593, 14.788826960415399, 11.48541856636214, 8.42149894138159, 12.773951049051407, 9.087770201551466, 6.012809173594068, 4.90345219843988, 4.760928779137691, 1.8525637336134373, 2.159310138528267, 7.909250920793098, 5.476459467819761, 8.372588970515954, 7.637715019769619, 6.392048344868596, 6.063698943543206, 19.190697817138023, 7.753603334579302, 9.341209682772124, 4.0556547239332295, 5.861750417822382, 15.356020971449803, 7.1897323671225735, 9.005410084116983, 5.7948996949061575, 3.761541705744688, 3.601835885223653, 4.68483852380921, 2.7274719571924764, 4.148308808898211, 2.6434256750788983, 4.655600942140653, 4.45597770432807, 7.319851758313416, 10.437630856789207, 9.96176676939144, 7.7056589914497975, 7.645800940773918, 4.302152926855991, 9.016894945619814, 13.81916502286078, 6.652389821173878, 15.053469384522785, 5.113294924689463, 6.002793046391722, 4.098583232094816, 4.3601542073493835, 3.5075399917930015, 3.937539722674169, 6.915248348315801, 6.220723834538119, 6.973461569423749, 3.7807976960652887, 8.290254172238107, 7.8479541077564265, 10.723810855944388, 8.289853131846918, 6.680334460082997, 4.410784385863643, 7.49036963615788, 5.477879812919266, 8.074638560377915, 6.430516388795352, 7.201647102707202, 9.276707220190676, 4.184310003650056, 5.469353506133916, 7.301570497920154, 5.065912727125112, 7.344734524790326, 5.017063166994349, 8.105753640134678, 5.329120297308202, 4.9454815657004625, 5.008495217415015, 4.709411861566587, 4.026249160249587, 4.367452457526715, 3.280710476529963, 3.6554300752684235, 8.02096005877616, 10.384339161620604, 14.094061407547565, 10.72197030763917, 11.428768834985366, 15.03201263770617, 31.83969650998029, 37.55030122863717, 57.956204958341246, 45.73132833237056, 27.830892686992907, 29.867962919542272, 21.669734529642863, 19.247929578489565, 35.87299571766281, 27.905845479791065, 22.213340217447065, 13.931144773803261, 21.442441055053877, 32.06723171805841, 22.447553788567472, 16.840498590392183, 12.739671206348154, 13.649776274730566, 9.95962946761241, 44.43775796603415, 12.706968545380333, 15.21706994568804, 12.489166036036309, 10.297819059591824, 13.026284450459926, 12.406721824293378, 8.046419806758351, 13.604413107801015, 9.249747948244845, 14.629484325639387, 14.96197361189009, 14.999414053703806, 13.415416051733454, 16.094025266565684, 17.946741872883518, 8.023641855841012, 9.13004245013428, 8.878254290760475, 9.381957289400834, 9.402709227934967, 20.37079184076637, 7.724305717689861, 10.65465757676841, 9.160142534523368, 19.546892138066184, 21.540422763180494, 5.879483863074938, 11.465790480597656, 6.430205019754371, 8.39117442032443, 9.921001105407942, 8.246435112938386, 12.15786731189814, 8.370384251631375, 9.538952160627094, 9.296138364330313, 10.173354524856705, 8.360060996963233, 7.304840845288663, 7.813746832804977, 8.206904118873075, 7.493067544207349, 8.590720692892319, 5.532660157920176, 5.76384637965316, 9.87145542697954, 8.501846845469823, 10.812138868091418, 7.589039628495152, 8.041452680652188, 6.671554998211752, 10.399694416121179, 6.010057613366525, 5.411633739684361, 7.321491439317467, 7.160391982725175, 6.716905173379995, 7.845705951735621, 8.032414587641174, 6.696044678195599, 8.468847016482577, 7.294318629561757, 5.481828398853379, 5.953684469042262, 6.595452954061132, 6.952628115538943, 9.858883363754552, 5.654362527930104, 7.283883119276497, 5.3892032927971565, 6.207336368591147, 3.2023333392811946, 8.109688516053835, 6.4731969436644645, 7.593324597729064, 5.713546266431266, 31.233537223239313, 5.035546262758793, 5.371566727894184, 5.949818108341938, 7.564963512748365, 6.896998922355291, 5.66775923955611, 7.326995654183135, 6.759255806150986, 6.562791734570519, 5.779732212364291, 4.309325246228433, 5.1728627614747165, 4.5081563220188565, 4.914804327299553, 5.139354252179462, 5.246848901267857, 5.459409076282856, 8.837789571577261, 5.768099134583211, 4.168917183276448, 4.4090612208099245, 4.703047218728415, 5.251909953729756, 3.257468346220334, 7.474357826475114, 4.015037470040375, 8.490568151513163, 5.2356832405824525, 3.954716684954216, 2.755226279203541, 4.424305978039673, 5.7783232533945545, 6.711506441042078, 101.53226107226112, 4.505402412328188, 4.641202650068557, 5.3755376587169215, 5.378011831802958, 8.086865480702846, 4.509472197117966, 4.244326561475575, 4.549463818222691, 7.064043631846368, 7.624659355391141, 6.715453629338648, 4.285892043265806, 5.140921636117781, 5.722480038108939, 4.4316825785977825, 6.672457218760285, 5.221174064395486, 7.7289016079972885, 5.117519343389709, 5.085888681695087, 9.908871605867915, 6.492965751028469, 5.857626038640993, 4.393384519093164, 8.149756463839465, 4.508163703538417, 7.959069522007447, 4.609728057714577, 6.21232057658441, 6.641920923192055, 5.557134203402187, 7.226187763789337, 6.803030317777596, 5.8446426806611935, 7.5387835201352855, 4.632116512604557, 7.082377042789908, 6.1345409331119995, 4.95517756262347, 4.443417670497044, 4.40808625729068, 5.479645868058717, 6.476509143986676, 7.753245870473614, 4.958875905345539, 5.101704618231828, 4.387973110861878, 3.4338394545934197, 4.255888112168871, 3.5664308973541066, 5.64756921443589, 5.303330958181509, 5.104092334622829, 3.814852764478822, 6.304880375817015, 4.028467707785796, 3.8778303549151083, 221.94316666666677, 226.35750000000013, 181.02816666666678, 174.81519841269852, 160.8590555555556, 143.1420380730381, 3.5976602834860114, 4.887583402451307, 3.262649271666266, 3.456639073231192, 3.3397377463592783, 3.3560493356512935, 4.027482449216827, 3.5627898582889075, 3.6836495710485244, 3.1473042897035044, 3.3617779103929792, 2.9959943600074457, 3.240958497595118, 3.188753568873098, 2.419623082960103, 5.268171361282044, 3.68181178743375, 5.675517109894987, 9.450974863104538, 9.099053554181955, 6.067956394133581, 3.7809555089861613, 6.437189000577782, 3.9528630450434035, 6.552443060763108, 10.34697484063466, 6.593607783644395, 4.4000849588271524, 4.260654738936517, 4.053546721829861, 5.861545236776798, 4.822270026123517, 8.086581597434419, 12.568520348166505, 5.17746873106399, 7.033190476407709, 3.6468225155001286, 4.242386929208355, 4.083419123536025, 3.8746554180768134, 4.751771648931759, 5.712602443694162, 9.5372516043142, 3.588164889608072, 4.927782465900114, 5.0739270801204945, 6.5295982226827425, 4.4214541936355936, 6.217462457142907, 8.809570534102702, 5.694816729186258, 5.548174023273038, 7.455845386278406, 7.4185648143409, 6.040314550992807, 7.1739153874838495, 5.688261969163595, 4.893238293812932, 4.807988471885125, 3.758373879857993, 4.923393695259479, 4.720300033791359, 4.376867513617876, 5.601276191679953, 4.154056172178196, 7.136216709584937, 5.0772387699607195, 4.589627568916857, 5.541504276751689, 5.74202711335971, 5.162954488625847, 5.075874429536846, 3.640937150259763, 2.9921403080578606, 3.122080057961025, 3.865562800195128, 6.238331977796354, 3.7786217300339735, 3.4892119121261937, 4.195810190508626, 4.512708574635114, 3.2191225211460353, 3.057808213099567, 3.404069210548294, 2.947127581667707, 3.6051144899036056, 3.8143398345607102, 3.4380568084389425, 3.6729517021489406, 3.8718481353123777, 3.3384583022493497, 3.8245291779242314, 3.2978838674739075, 3.2348677034009534, 2.7707462209890807, 3.0726238043311658, 4.601016617174159, 5.365962252049741, 3.2642634003765485, 3.122615429279102, 7.716511653770846, 5.827742658500167, 4.5399991479979445, 3.0417547107572527, 4.3265519706278175, 4.382963910116796, 3.014227734587631, 4.141959883723813, 5.312283028967911, 5.581958448403267, 5.96473945662181, 3.2079745938818296, 3.384029075999236, 3.1018064504143377, 3.5897722787329633, 3.2563215743987244, 3.6007880694218257, 19.60445270452413, 2.999198201120002, 3.248467803040732, 2.867732152592248, 3.03075700988954, 5.321366312525098, 10.37530824997575, 6.320811367637184, 6.409307935653578, 5.69051913404231, 3.4037589789384617, 3.4995002007964575, 2.9745748659503533, 4.494500435730674, 2.2994951676566378, 7.162423574047884, 4.847708602024715, 5.619251287782694, 5.478394806360853, 5.002260669869951, 6.3578919884463385, 4.454090767416599, 2.492528913287987, 3.6450534127204812, 7.011689369075222, 5.505608102084136, 5.5609450360942665, 5.208829895156286, 5.984757279246182, 32.9432371384552, 36.36598558372894, 26.519188953733234, 47.223461445893044, 20.45614755317306, 40.51701247800303, 43.775863223405025, 30.457056651788438, 24.705218887552242, 25.02825161401271, 28.89859725093018, 27.532603214536053, 23.57753543327386, 136.03431277056276, 19.936884705947946, 12.623338800547916, 12.914601151935898, 18.873144233601952, 15.201360975230594, 12.807388539205819, 22.065438766867576, 16.737837517018423, 15.12938662474893, 19.413855781736075, 17.535640251645695, 16.156048050029653, 12.228974274665262, 8.169775520536595, 16.871438409781284, 13.99469529998882, 16.365320519212815, 15.835266764429944, 15.865360845379076, 13.293093309987501, 15.468496375697653, 11.64885347289618, 15.525930591878513, 11.247816230290141, 13.696238273179258, 11.052913342577435, 18.54925637323219, 9.92586977146489, 9.573547125101971, 18.913586002948524, 10.9616194384665, 7.583743958077912, 13.107355208309857, 9.700014329204345, 18.02640134449729, 15.323831167485446, 12.720181838811813, 4.6650984243469615, 5.80826003203835, 5.0187078479311955, 4.8032352511622385, 7.641506266619416, 8.244249359747878, 6.807488423056612, 4.735410718237729, 5.3093176539588685, 4.387236570310225, 4.670684858677268, 5.599506641200821, 4.6243131082482485, 5.4222647657714855, 5.572492772271009, 4.301614691093764, 4.235454287359457, 4.712564723018225, 7.67291047484507, 6.186749685611261, 4.696182351252307, 5.409922512886487, 8.680176516869553, 7.70359818975167, 4.8745516569181015, 5.969100771249529, 3.9282811242037066, 4.080629305918835, 4.342392640087377, 5.832576534181942, 8.627520747542453, 8.391242354821959, 6.67714682897467, 7.875283082974259, 8.09330706229779, 7.118059624046741, 6.443993201478765, 11.180882596199138, 7.463413825278657, 7.089018328028873, 4.432840963634259, 8.710797285436355, 9.23190720012279, 5.171260726196079, 6.220365921004284, 16.105032829368476, 7.900763011906418, 8.176824261842865, 4.862510208185426, 8.534180894114352, 5.385853141980466, 5.5737653965524006, 7.641952172405183, 3.983516866880059, 8.705419901317315, 2.9720609206946, 4.781971279449901, 6.092250187445486, 9.128095423671269, 5.761974528248407, 7.426135842542855, 4.833661511265938, 7.416538804196535, 7.488437144369765, 7.19272009654708, 5.602015771653689, 6.106062237617905, 6.769945934230228, 5.61923842672157, 4.9463288174208895, 4.735095659991153, 5.401678257493035, 4.7973375555484665, 5.936862003096092, 5.437768369493108, 5.875029680440486, 6.8138081134862, 5.880355942228313, 6.146553909960866, 7.528385170863073, 4.824795999661771, 4.699075744621269, 5.273136070425795, 6.047741060964877, 20.432511003720947, 5.162193778587399, 5.240935924924238, 5.582313602120557, 5.8420922998967635, 6.658120978875509, 6.484110896550633, 5.821419436753962, 7.0641928088076, 7.73807292313412, 5.246387296703885, 6.276157755154419, 6.737488424892651, 9.750721585803765, 5.37074748058095, 6.853384102281252, 7.133054820555293, 3.8048333382884705, 6.578483986398816, 5.550644660519988, 4.8148033351363235, 5.751321514159929, 6.5472865025091105, 5.609631131569292, 5.986626670411301, 5.982581591389333, 4.991010785587278, 9.193596152184947, 6.874580773383665, 9.607104459708305, 4.994208089439109, 6.293915193912415, 5.203900761900552, 6.627536644551854, 8.739905888136343, 5.666783821481768, 8.445364420757343, 5.789416089802685, 5.718683650814087, 4.254886146086638, 7.756727084666912, 6.335728273687423, 113.80340631707475, 228.8238744588747, 218.70545454545473, 179.8617857142858, 173.5766666666667, 154.64733333333334, 84.25355879496321, 7.030623394216796, 5.11897097727147, 6.06765581812945, 10.204211285195838, 5.885230377888406, 6.351067560143754, 6.007427363501885, 6.80631676316368, 5.970164014259195, 10.600050577597258, 8.070777890436224, 4.606459128071155, 9.944122285909827, 4.686105295758665, 6.482236293799896, 4.368393741387879, 5.283264425934961, 6.002400038801354, 4.180103557467164, 4.080218730556763, 6.441387343370433, 7.442189399127445, 7.319568507632937, 5.060384574961323, 6.589299577626785, 14.289241271672278, 5.8688678960297604, 5.367504804650483, 4.255733359521195, 5.675067188033582, 3.2051203186132353, 4.692528043292103, 5.554990610644686, 6.34066576802616, 5.501410680018846, 4.967691197219813, 6.930114771901689, 5.229721638853527, 5.564334176398098, 5.410569095350478, 4.529986956864591, 4.403300151711581, 4.759731180778725, 3.8647711922423826, 4.52486865057547, 4.735425311893816, 4.3766034558610825, 5.376900842334256, 4.598131294879514, 4.918490029782868, 6.8371626596129795, 4.872169305513437, 4.684251242900676, 3.900512214229233, 5.996606557125084, 8.125151359367539, 5.566181711213374, 6.706634458649089, 10.850682954591893, 6.714473010399906, 7.331497413578059, 11.67780166028143, 9.67575322696743, 6.061205995232639, 11.478172696462309, 2.8375823568536784, 7.2203224357780496, 5.827028671733267, 10.34326759433489, 4.613139081243259, 5.600291476154875, 128.48646356421358, 5.431000942003862, 5.252513633446825, 6.459847890055741, 7.054729151679627, 7.181252791962743, 7.020181744535614, 9.149252142468331, 7.202210062684409, 5.289929895431647, 4.978751045657459, 5.1388747450026955, 9.244788349370854, 5.821791588399578, 6.332825897812735, 8.065304498284418, 5.623134671978156, 5.606629774563818, 5.959237434979469, 11.578071332882597, 15.861222367167823, 6.35393810998111, 9.708331144289511, 6.086696291441945, 6.60053741394559, 54.515837398562795, 15.722434045737577, 10.008315374023312, 8.871021522689247, 21.624317628878106, 5.510329519067824, 32.98018634539461, 6.5999589321865955, 7.008401906117017, 4.1099600045486335, 14.444457634734126, 6.976358128572093, 6.592256761786417, 4.56624033723737, 5.016476183002307, 5.275973886626345, 5.35416504193835, 5.0154421733598085, 7.643538606180645, 6.426146969627452, 70.9972372994873, 4.944319241953642, 4.254748914038041, 4.017000491954552, 6.44844498867864, 7.206294774953469, 6.101646891772082, 7.653781086698148, 4.665751861402859, 6.58556643054661, 5.124590487527063, 6.566412057987424, 4.298708348059356, 3.9596742948064167, 3.6421459858208105, 7.20798796444913, 4.07718460824313, 6.46364410921741, 4.465138275249043, 5.879813150340306, 5.729058121734161, 4.879975242683147, 5.330568246724576, 4.727129096983263, 4.848036166386231, 5.181462852533911, 6.186087822947503, 4.85524473846445, 4.769768375894187, 3.8615481043443918, 3.0964197658115866, 5.617317189252712, 6.544208296224914, 4.72165616252538, 5.663674226215649, 5.151223525665638, 6.844958460518033, 4.6606074862637366, 4.836656592795673, 5.835568968476858, 41.70920706123569, 4.767507378784265, 7.818055897959608, 4.005250282176474, 3.763766359618647, 4.355001502474292, 4.8969936115093535, 5.332185065415433, 4.8338121738424675, 4.443237484385046, 4.178636084601197, 4.478867207700504, 5.230675826560404, 4.86893144603137, 5.014008311882265, 3.9752538379863585, 4.677860514738256, 4.433250031182235, 4.008829351110571, 4.792801804284789, 5.780030247779091, 4.086399741558739, 4.436430833005144, 3.871321992353297, 5.085489331037448, 4.005438109263738, 6.2592342729710335, 5.807582598757327, 4.713140096652398, 2.7267060487149677, 4.175702773840273, 2.9905042544548923, 6.167552621710821, 7.203140746969696, 5.013685769078192, 32.1875041825278, 6.940993693927512, 4.479328216611605, 6.402351834727751, 5.1451157789810695, 2.7965580965085053, 7.320230125431492, 5.033472190450266, 4.0344106435058835, 6.0311233765278764, 4.908887522951813, 4.122736115502366, 4.721776054478353, 5.110335422566141, 5.457618141563391, 5.75670224040943, 14.886885463878246, 10.221891437058687, 7.813015729211129, 8.2715536339262, 4.811977618422307, 4.869194728365406, 7.9011026794363595, 9.046350981968367, 4.404884700885976, 7.743818024916072, 4.134901942672659, 6.5317586107045855, 4.895086314701115, 6.247884759958221, 5.037790118606422, 5.0859762237638355, 4.664874368094808, 2.4733913530990366, 3.797824852441488, 7.2911169200458685, 3.1927109719170383, 4.329637119775794, 4.469469560493093, 151.80679166666664, 4.7499367714751255, 6.1767339798406935, 4.416326012580518, 5.2695722177955, 8.047562555431387, 4.431262565263395, 5.249558983157615, 4.577808670715448, 6.407353709939479, 4.972916468712027, 7.802963965783831, 3.8860603333858834, 3.928728780339955, 3.6769457069605833, 5.425274564468319, 3.9902681004521807, 8.594185420061525, 5.285789325433516, 4.827162128381098, 5.237624604302334, 4.215993039482868, 4.598739204843459, 5.402611484467485, 6.671780950016793, 5.030508424912956, 4.686833788599542, 4.162046282549573, 5.522113135966277, 3.629783194609431, 6.305956427880355, 5.409909120016655, 5.139258186361698, 5.827743123593672, 3.6918481176852085, 4.139091932815936, 5.388556533656358, 4.289286030062015, 3.4625849116503202, 3.3636027729364186, 3.437616390122559, 3.6943902811799836, 3.286999923280424, 3.907688532216298, 3.912678082613576, 3.7650547140830746, 3.7166117300415635, 4.241771708412309, 3.3134866392162055, 16.480731141101415, 3.7120814983911408, 3.502942580881363, 4.333483640989162, 4.348967293415747, 3.5224189300967175, 4.366389810529792, 4.005746168390999, 3.416781106488308, 3.1141564846127494, 2.925638543580092, 3.1571328648828407, 4.741723956800506, 3.311316758629223, 3.9040029512762966, 4.417526151247758, 3.9516035421129945, 2.9713646739563107, 4.2613893980050985, 3.0225042084584923, 3.852412736177483, 4.82234623475484, 4.6771850667963175, 7.2064289554480006, 8.451851693325798, 5.378651714349072, 10.378371153611406, 8.591846990337334, 8.628776768114083, 7.450583564783365, 7.951145130557014, 8.608923572731879, 16.38713260606374, 11.295415933138566, 10.131944488060856, 7.267458124548903, 9.966697921253065, 7.644225146452233, 6.824782137039566, 7.291170093238506, 7.345905891781853, 7.227252315568842, 6.341705869734229, 5.186770810346664, 8.177501166088557, 11.143009661358514, 7.045935039819131, 5.823058390619455, 8.230306748717004, 6.323413163783719, 13.992886626374753, 5.426350286828656, 5.89685412943534, 5.626669744701722, 6.455971261087143, 6.586258555782774, 7.073786775889847, 5.117954665304739, 7.197341362589045, 6.742441778672439, 7.218528026328704, 4.9720180457408345, 5.06067986044219, 12.372573547400428, 11.787884617450242, 9.471721328854983, 6.896140283671081, 9.837847335632839, 5.944317504981653, 6.771258342057394, 8.971725246958941, 7.955791815132692, 4.820432389754627, 11.967569401248786, 13.079975246263096, 6.5813124687873845, 6.726533531061057, 6.836431700029519, 6.920583377506266, 8.814982227333777, 8.897623800324572, 8.421348478544118, 13.567743988055893, 16.213814339915977, 7.5981070393279415, 20.559047937714894, 10.529720567433506, 7.89163459494797, 7.204729947803644, 8.353697321835694, 6.434465401552552, 6.539655086789874, 12.279861731272286, 5.1666505155780404, 5.295889304480655, 5.944718003322571, 4.145790071475841, 5.808263920013532, 3.719977460310492, 3.356935851491742, 4.641838317102404, 5.507657754439067, 3.408166930590262, 5.433240607016858, 6.072029820566021, 7.137200625428808, 7.475588840278538, 8.798189912805457, 7.263185565684637, 6.53674557682283, 7.838920815189002, 5.934159590354037, 7.962016591515269, 6.9974606552769485, 7.327765271677789, 9.565263116518993, 8.117502670179539, 6.550459363693736, 6.969116542775713, 6.330751978892521, 5.27681953546291, 6.878871714781645, 7.75957010760448, 5.212777184593145, 5.818471122868557, 29.17933267942936, 5.491198367001468, 6.145534714281291, 7.542096160444845, 9.475012348742567, 7.570856502946661, 7.728812344226875, 5.420917515548322, 6.5089045202296445, 7.942533341111784, 8.181560232395094, 8.309765634975992, 8.630290358394548, 7.327637146325995, 6.828941333544249, 5.879913322385453, 10.800569276473654, 9.378383133335527, 9.957710870677726, 6.921627806017991, 7.489791972628446, 5.8552076368492205, 6.8399297181239325, 6.3549898299788, 6.688408327153296, 12.059044615546984, 5.748941440951698, 6.884646229756494, 9.400261679936984, 6.052826108887397, 7.187975520358613, 4.940287376699257, 5.427202175834721, 4.661110017144526, 7.138958882096568, 5.730438432438063, 8.028055628960143, 20.909747695561542, 9.28433670777088, 8.641705775732527, 6.244071519947334, 20.568172934992482, 5.187876218499282, 6.348197552297058, 7.364689388288148, 10.912815053361573, 23.431347178464698, 7.826647777077516, 14.80460131114221, 6.060105235732271, 9.537434712428098, 5.474382703171666, 6.140056764849204, 4.179456189663782, 20.634122970460215, 12.774240214941466, 4.827698091198126, 6.93240828824991, 6.434585204167808, 5.939755052440748, 4.898306294793826, 6.162771302106341, 14.172903971460471, 168.87063393421892, 237.37000000000026, 199.07200000000014, 179.67333333333337, 184.6490000000001, 163.80233333333337, 130.4204372405373, 19.46801316117082, 15.192308756343374, 34.20477756957798, 7.372710324977523, 8.148285913326967, 6.15012854479911, 4.340034819359692, 4.689536482827476, 5.402717808388374, 5.872866609012086, 4.102834987651392, 8.541709311429534, 6.849109348320388, 5.090925582995589, 5.350790231382896, 4.9847414641041565, 6.353496366590833, 4.164712311981808, 4.993348809751632, 5.072246832953704, 5.227149205373926, 7.428399182988344, 4.995780169172565, 4.984792859662108, 4.680655846065624, 6.559046443108163, 6.024103546906881, 4.273367924699345, 4.944780843202242, 4.418063207027579, 4.758902528412509, 4.407852152144423, 4.307244378520254, 3.760777003213636, 5.143770190081977, 9.73445764297778, 6.9474394611917125, 7.4888280316313764, 8.233662165597716, 5.60401733406029, 12.550582378915623, 14.942956773566799, 23.174882832647224, 20.02162097824465, 23.66280503191029, 16.403792124542125, 17.15405504686043, 22.610207935394556, 17.010586910472426, 20.290111762970575, 20.03127490668623, 4.956097746282726, 4.918310550839017, 3.8824843663219792, 3.7425728822219786, 6.564283382486792, 3.9803420946978934, 4.5363764099171195, 7.514933982294955, 5.678323321412732, 4.735698087492399, 5.543298153827893, 4.302258542041373, 20.048797266903154, 3.6578781198583656, 4.562044214387566, 6.086009839396536, 6.949717664221121, 5.9569980821323405, 4.791959668225559, 5.683663481030626, 3.0383386401806747, 4.734706626750323, 5.3884728535232345, 4.267781092035992, 3.025192794714916, 3.0069229104806485, 3.4920541283128514, 2.803092424329961, 3.449125718833545, 4.047419820000714, 3.495211617900202, 3.137751951323503, 4.078090606199659, 4.077435505060176, 5.2160359937424, 4.8074115488243345, 4.604037685343379, 4.996908906650311, 4.539803828104704, 3.5338922775672184, 4.823305868933567, 4.228161377852135, 3.9129818364529103, 10.588495373877244, 5.272565738889914, 7.798209848286381, 5.436529674226188, 5.066943325612405, 7.787481774822503, 10.191956840917008, 35.07420451744297, 26.566789050023143, 20.074649774725525, 11.733322219449764, 6.772244452058734, 9.047012164329804, 7.598105724768269, 80.38359488212099, 5.790025754236513, 6.11193515748542, 7.911940128458676, 7.04417085404567, 5.415872510086622, 6.15011516603868, 5.907509201815567, 9.901025446954954, 7.014242574992935, 7.898658887767696, 19.625230630850997, 5.6190295890363515, 8.724152538964779, 13.79839626669689, 7.07189342182275, 14.908638453973465, 10.00707229609724, 8.628499334176121, 9.086245736995089, 13.02640797936521, 15.811316803455282, 14.36100254240862, 7.123728747433187, 6.8094696471805305, 6.80274296212756, 29.473624470345495, 15.56606551266405, 7.078460954121151, 6.286097749191182, 12.628836460727305, 10.972910341827081, 11.337576300187877, 7.422547695231272, 8.680527590503962, 6.889134126599722, 14.961641388964562, 5.150865483309711, 6.967325186233745, 9.387068315114968, 5.75737566739241, 6.781292729905152, 4.69866902216877, 7.959441085432782, 8.57698861669268, 7.41365315761497, 5.453339832300251, 6.829218190523225, 6.003049986883954, 5.787279372322578, 8.104651324118597, 7.035932273619949, 6.960746972199602, 6.190104177474828, 5.9656362159819185, 5.587974267291152, 5.3952485672350265, 5.197358799521997, 6.308841168814804, 5.770520133765092, 5.666563787417696, 5.093133769213094, 5.620794216200692, 9.48351513090556, 22.154731319580215, 8.720164931933521, 6.389975210089296, 6.489522864391742, 7.7234483024300875, 5.710480576425025, 6.896474243977068, 5.180801289778272, 7.52683689345378, 4.98790536383273, 8.279486809575708, 6.344842982575445, 6.346708427145821, 6.745636448046193, 4.367145081438637, 6.590269749096828, 4.597364100275982, 5.9114601906893425, 5.453606129566568, 6.310062388520356, 16.37593008385219, 6.8909111783528, 6.541159931285981, 7.579169159506998, 6.611496405315438, 5.696461729995997, 5.368917672172203, 6.402189145161245, 5.447100570432933, 6.681779511838211, 4.8794976690336656, 6.001353602118534, 6.335285287275466, 6.057808551901731, 6.145533480834151, 6.217694757019613, 7.650887840345928, 5.4401990060049075, 6.129073793095342, 5.1257031592254085, 6.292930805002428, 6.633253172305618, 5.363553301783041, 4.867259352477574, 4.433547601958522, 4.531206989778651, 6.425923090973049, 5.396312884886771, 4.468438094370893, 5.7340328755205165, 6.114518945165014, 6.47533299450849, 5.4559618597991975] d1 = pd.Series([s for s in disp]) sorted_d1 = d1.sort_values(ascending=False) N = 361 pred_rrcf = d1 > d1.quantile(0.9) print('Displacement: ', d1.tolist()) for k in [100, 200, 300, 400]: top_k_real = anomaly_detection.get_top_k_anomalies(sh_vector, k) top_k_disp = anomaly_detection.get_top_k_displacement(sorted_d1, k) anomaly_detection.get_top_k_performance(top_k_real, top_k_disp, true_anomalies, pred_rrcf, N) real = [] for index, row in sh_vector.iterrows(): if row['anom_count'] > 5000: real.append(int(row['anom_count']) * 0.004) else: real.append(int(row['anom_count']) * 0.05) fig, (ax1, ax2, ax3) = plt.subplots(nrows=3, sharex=True, sharey=True, figsize=(10, 6)) ax1.plot(real, color='blue', linewidth=0.7) ax1.plot(np.array(disp) * 0.5, color='red', linewidth=1) ax1.set_title('SnapSketch', fontweight='bold', fontsize=8) ax1.tick_params(axis='both', labelsize=6) ax2.plot(real, color='blue', linewidth=0.7) ax2.plot(np.array(sl_darpa) * 0.5, color='red', linewidth=1) ax2.set_title('SpotLight', fontweight='bold', fontsize=8) ax2.tick_params(axis='both', labelsize=6) ax3.plot(real, color='blue', linewidth=0.7) ax3.plot(np.array(ss_darpa) * 0.5, color='red', linewidth=1) ax3.set_title('StreamSpot', fontweight='bold', fontsize=8) ax3.tick_params(axis='both', labelsize=6) plt.xlim([1200, 2600]) plt.ylim([0, 200]) plt.xlabel('Time', fontweight='bold', fontsize=6) plt.ylabel('Anomaly Score', fontweight='bold', fontsize=6) plt.tight_layout() plt.savefig('results/darpaplot.pdf') plt.show() def visualize_iot(): anomaly_detection = AnomalyDetection() sketch_file = 'sketches/iot/dim_32_n_3_k_256p_0.2_l_50p10q5.csv' sh_vector = anomaly_detection.read_sketch(sketch_file) print('Sketch File: ', sketch_file) sh_vector.loc[sh_vector['anom_count'] >= 50, 'anomaly'] = 1 true_anomalies = np.array(sh_vector['anomaly']) sl_total_hash = [0.0, 1.0000000000000007, 1.5200000000000011, 2.040000000000001, 1.910000000000001, 1.9350000000000012, 2.5449999999999995, 2.315, 2.9499999999999984, 2.7849999999999993, 3.89833333333333, 5.030833333333332, 5.389999999999997, 4.771666666666666, 4.824999999999997, 4.939499999999999, 7.968166666666666, 9.609333333333336, 8.426666666666668, 7.470833333333331, 10.100000000000001, 4.500166666666664, 7.260833333333329, 9.993166666666665, 6.825333333333333, 8.299261904761902, 7.549666666666667, 6.010499999999999, 8.34425, 2.3685277777777767, 7.453452380952375, 2.1427857142857127, 8.840499999999999, 5.5857261904761915, 9.547833333333328, 8.022940476190477, 8.995506854256854, 9.565772727272725, 14.310063852813851, 7.463338744588744, 9.922214285714288, 9.396590187590188, 12.81141666666667, 8.63265512265512, 4.9386277056277015, 2.4788333333333337, 12.741150793650796, 11.34468925518925, 13.031071428571423, 6.072166666666665, 6.815968253968248, 9.753902236652236, 7.688281912531911, 4.579552308802306, 15.257583333333342, 11.915132395382402, 7.997478715728716, 4.340111111111109, 7.981563492063491, 12.520726190476193, 10.64207538539891, 11.881075396825393, 12.839070346320339, 8.382726190476191, 14.908814489432139, 15.040856782106786, 6.970737267634322, 12.792952922077923, 11.989634698634697, 9.868615079365076, 15.096869047619045, 9.771920634920635, 8.824296218487394, 10.162924603174599, 12.123983405483404, 12.502298340548341, 8.35071611721611, 13.67055769230769, 15.885123015873008, 8.421123015873016, 8.837611844996434, 13.695330086580089, 10.84498153806977, 11.131603618603616, 17.294429197994987, 15.36783660783661, 16.86717081529581, 9.54105738705739, 11.565437857464167, 11.044768068887635, 12.045061237008607, 8.569439349539344, 3.9874482227345496, 9.6670439390331, 14.257423478482302, 16.960849927849928, 8.838148064495886, 9.73163816738816, 8.947979765403675, 7.660809736157563, 12.683369641796107, 11.364326479076478, 9.602993626743622, 6.912616766403531, 10.350631493506489, 11.90833531746031, 16.638106060606056, 20.079478687978686, 11.692355477855475, 6.446922327672323, 12.935004828504828, 11.15889274614274, 13.219127261627257, 15.531029390544095, 11.75360858585859, 10.88777564102564, 16.889138213981244, 11.368609231411863, 11.829447607947609, 9.649801976532236, 10.243709235209232, 6.926028215745601, 9.639434038476143, 10.043158730158728, 4.55204355366855, 12.576252261627255, 6.277979797979795, 11.390615911865911, 12.61961718836719, 13.82517892195524, 21.01147075147075, 12.09991388005838, 12.85642850334359, 10.692746312511018, 15.961849583423112, 6.026710127780715, 10.989923397985185, 15.115900706749397, 15.813263824840451, 15.098572798116916, 15.065998994469583, 21.615180293884237, 10.5956392659628, 11.07060025438584, 9.942979229104232, 9.967956655544894, 10.061437368187365, 2.9808877726659047, 20.069607149386563, 5.596657652324716, 9.873494553313902, 11.95747291434056, 7.327986707736705, 7.216033776795284, 12.465970668865017, 17.037541153291148, 12.04810969220837, 10.124884433205256, 9.650198848193426, 16.522870657085164, 14.591295267676342, 10.474009708297185, 20.797863678433632, 30.483203323723068, 12.2685559326388, 9.108504152737696, 12.571273576097102, 12.474292285414963, 7.580120945225744, 9.210636799252919, 13.868046260885658, 18.465385917187398, 14.847394358950147, 14.416545626089203, 8.451540777806645, 11.109228263568241, 10.414479371376816, 13.058494029273916, 15.33862789787761, 8.886395111768175, 15.42907009042729, 9.709224567486178, 14.875602319959093, 11.379371468005676, 12.997856485236223, 6.18236039786816, 18.252653055278053, 13.548163607963529, 15.150259799454071, 14.338007916508975, 13.687778925784366, 13.072724026202382, 14.619345782757547, 24.48042573222234, 15.28612068830722, 20.830274135684515, 14.035039516468776, 11.184922205171638, 11.132730121862796, 12.07848091648633, 15.847068398964295, 11.705474118726125, 9.302641447432853, 14.819597548693134, 16.48310627689304, 13.004734505649786, 3.810410668263627, 23.814508792508253, 10.848103676477027, 11.896245732767033, 14.864325926417623, 12.219535503149057, 7.7718429333640735, 12.516372978553232, 18.025979398285163, 16.111666271066156, 11.967626744714979, 25.13555079328996, 13.713982874684282, 9.244083281097986, 10.942876184321538, 12.662435486074806, 8.48561363360877, 12.85495403289521, 12.787459124836758, 10.043181544644371, 11.630393532327671, 7.222702346468929, 12.09825699382317, 10.765496016062885, 15.183752363370763, 10.550874248584607, 34.589417039329106, 10.991607511299366, 12.923168238950591, 17.649157104760278, 13.517545493511875, 9.989267495348466, 14.964039503640901, 11.654999042741816, 18.446485790321432, 10.993221283216265, 13.583325811275937, 11.386452531293605, 13.798483047410015, 10.382094492939462, 11.549051035502709, 17.545547313775227, 15.78166743683733, 10.98654968185409, 5.319946657022263, 14.434360536063137, 19.65145630071842, 14.517183818546412, 7.44150852477637, 9.104460242956371, 18.562987537935058, 9.292978950823638, 14.501876029835648, 14.282669255555295, 12.566730044003616, 12.830796881398907, 12.467705805932182, 13.643263208524544, 26.582495681551855, 46.24441250809099, 23.268883889760037, 10.962930943400261, 14.768651322439172, 18.154401468196397, 12.176217317098327, 17.47337651480892, 11.725951720103577, 11.7546494822007, 12.331764577983236, 14.653823628271427, 26.687428918322087, 10.853290715547818, 13.864074240936572, 12.753052483300122, 13.942820125109836, 9.516911775663946, 14.02211135597105, 11.473901457218489, 9.545227688103504, 14.260420303022233, 15.649636847286963, 13.457030988903359, 12.794822815399824, 19.778606077810217, 8.845460066209446, 11.045774811958825, 9.894838614739605, 12.376929251309246, 10.324285630720613, 10.280525895156629, 12.079127596912896, 10.52559631892971, 10.660508128586011, 14.962948377116444, 14.716836295370323, 12.49401685451108, 12.258759373431008, 9.96883766797468, 4.929313318614995, 11.629156279835687, 23.354051592500422, 13.165677301710415, 12.191832282068686, 32.56814473469892, 4.513373090882277, 7.6551439411122075, 28.36451590113103, 12.566251035882104, 12.742656796781539, 16.904395757149633, 12.05300624914015, 24.659889238410738, 12.509151785362588, 11.170633023230655, 12.286474831867473, 12.513379554816748, 9.721882093926814, 13.192858275932487, 20.60059683812919, 10.007686387314095, 13.604505433233554, 16.03765165586146, 12.05893128930242, 11.299410883073554, 10.084161427892028, 10.980642123343825, 8.797954981458206, 13.627328535742341, 15.82343459510619, 6.930158757196334, 13.151801215249376, 10.583603793066834, 10.070584266705081, 11.829309903968001, 9.264158145245466, 4.850432813262061, 6.599758156002351, 10.618567496191782, 9.059514010103639, 10.28849660767023, 5.4305259594250765, 11.272307874701797, 11.687286869881735, 11.306620140920911, 2.4928360131855576, 2.50863786341703, 11.168978062602905, 9.48007524748614, 9.660101514108227, 7.64617011634347, 11.397773579035583, 6.440589951178365, 7.586602878584321, 7.934611938545627, 9.212580135549302, 10.31261866146571, 5.7463901383711455, 9.586765946906718, 6.624105032220049, 11.44063267709711, 5.710452360167064, 6.137135992310425, 6.576521687554799, 21.063925943636182, 11.145622612535853, 10.61075568664775, 9.988019618584667, 9.42685399908465, 6.840372372598081, 10.811224792838475, 12.291490979431197, 11.74456146562922, 7.335267460989364, 9.465969223314522, 5.986744492695949, 9.216893216751066, 8.224732170062977, 11.510705016840632, 10.552612333694814, 11.416205394467935, 10.698495684874844, 2.39553546289595, 8.071759612447492, 8.07960221765112, 13.952443253742013, 10.621670520510131, 9.174322137892966, 6.958162959580833, 8.192727585950712, 8.173237865894706, 5.281692359027092, 10.538400147731574, 9.32924395982818, 11.701280692554233, 10.283743962911144, 15.313630421538337, 10.050639936907233, 9.009861977825317, 11.218979328218548, 14.766993329623595, 8.223208942938948, 14.15575037128048, 10.64365460700913, 7.456791416658677, 11.676617619147432, 15.613974729348055, 7.005190409547383, 9.463061484271524, 12.849208718651592, 10.40983462548057, 9.49457316157287, 11.094596681367786, 11.83407450485796, 10.318153582195407, 13.161307384747055, 11.44778238467615, 13.207599345587754, 9.602900725915612, 10.392233989292219, 10.854463262949013, 10.406278453219514, 11.833863626831292, 13.654324287518198, 5.463271860688648, 10.320881647705734, 12.267781294453492, 10.878071238338498, 7.878486890309873, 13.510832897393934, 8.841180189291883, 10.924972643508593, 18.161362993044108, 12.358050242222163, 6.520580025324834, 9.844635556077417, 10.986369602703896, 13.357134602026312, 13.857732674730185, 9.971122745095347, 14.077721590443105, 9.441817242681894, 9.756484692372057, 12.884420957074404, 8.71655585086868, 8.671763996942866, 10.710251197002425, 15.205465670004585, 4.65805932782175, 9.942207327675044, 9.388733620601965, 7.327148109451598, 8.828165653643445, 9.404216824841829, 6.349722880739916, 9.281637570742811, 13.908537657586654, 5.732908034736406, 11.084686592741555, 8.530687011984439, 7.745639297770371, 11.23530196492702, 22.03827021580931, 8.856085975308643, 9.420864704004842, 12.972863326860613, 10.286818810797318, 12.735987996901997, 6.001349506021301, 9.299868447705569, 10.613274101999789, 7.244426347751327, 9.01155893273753, 10.661937989499618, 7.3368609817775035, 13.568204570328296, 11.778216685949738, 9.762850117103655, 11.412395483120097, 16.459773995527442, 14.055422279830823, 8.61316888421957, 10.07474806106169, 5.259957217994107, 16.521317629800215, 8.390046417243948, 19.217554136164296, 17.11236587410929, 12.255366068097622, 13.4819510384782, 12.39565863379864, 12.528073915379235, 13.199982332183607, 15.00016062362778, 11.639750113846416, 17.657362551658377, 10.660504677550614, 17.854977596173445, 12.023951262858226, 10.826938663349026, 9.166500005786864, 9.34642000886033, 7.11394529206144, 7.997552932851012, 9.53297287353516, 11.590545356251756, 11.289757922074152, 12.628311121634828, 11.946383025442623, 16.4780662636958, 9.933129337410028, 11.464189720067207, 5.024517338115369, 8.830315718471752, 11.000010655880748, 9.325105062415242, 15.210630181514023, 20.0249073984683, 13.490197659862215, 33.23413081045201, 75.0253344677052, 31.01527379589795, 31.22920075651472, 44.02157306850319, 20.285046268879537, 54.298922561579026, 15.90723816919783, 11.64977639814105, 14.330469663887433, 7.916505545908438, 14.789737761489135, 11.044608676009265, 11.87709862870956, 14.249511854349597, 8.492633734864528, 9.510131403614123, 10.47878714644488, 13.529614726319531, 11.883770593576754, 11.609850577525238, 13.23566830428326, 15.44184372432791, 10.738355115547499, 9.332409941355364, 22.005092711890498, 11.607092137141723, 11.157643001468337, 16.985597461802197, 8.396475281723225, 12.48326264356571, 11.049412868422976, 3.8747468132819267, 11.389953215755991, 12.880123128072185, 11.841845824172452, 14.780033293274345, 16.962328579463275, 11.57015212875696, 13.22708098748122, 13.78568152721885, 8.531083573649537, 11.860251104470324, 6.928463157819973, 16.740129483517343, 8.914631113717462, 14.130156914980441, 14.317258569775596, 9.198145330855697, 9.054691845283509, 11.498156355681614, 16.96413971399202, 11.792199464289867, 13.09629073431669, 12.996533726548039, 12.77584437288146, 12.302802724088638, 12.450203061850635, 28.53686382223485, 12.041773141604484, 11.552456134999135, 10.068300008778209, 13.723871627132176, 8.077389958242035, 9.246826914469814, 9.540509983232166, 11.244606099536968, 20.81236293116173, 15.305942120114397, 15.718252989787219, 13.991067787510254, 12.284707000271938, 10.973563055722623, 10.46774068414044, 10.12037200360778, 16.87282328292622, 10.564619075448414, 10.227692539683037, 9.472327981730672, 12.751644891768985, 27.555046412138307, 85.43694072598372, 56.08802653127335, 23.66128547551483, 33.17584985478677, 67.28631244989101, 12.61227094463785, 14.726268586167194, 16.62931560481255, 14.911359213563834, 11.958171732479368, 13.71133988356006, 2.55964288748879, 9.858324417741642, 9.47145194266073, 10.480145894185153, 9.554108891465381, 15.2138744296639, 9.893545937803518, 11.440610203225516, 8.592703986782544, 8.436543701836646, 20.381453223216223, 12.42665063923577, 9.44086150063831, 9.01100650386427, 3.0216299624342637, 9.022816297089504, 11.266413968980688, 12.693713110209814, 11.998893112233928, 11.414920363600146, 11.411524474780858, 11.66297193943763, 10.624832217660124, 11.270443817199018, 8.633185310821471, 12.27232295989864, 8.629654441263881, 12.55155420358777, 7.674264325987024, 4.215214326381778, 8.519432384746139, 3.704289945681638, 9.692423464520962, 20.24128214232357, 9.495355738295645, 8.461117119375462, 8.222519601804896, 6.270856448576026, 12.59352119231331, 15.829601870111444, 10.997316851406064, 15.246424336514734, 8.743985116992656, 10.38077871808277, 12.024906005431983, 11.732132098650752, 16.23377850105429, 10.721177361666149, 11.713611435098143, 12.065810101238968, 7.987493397841775, 14.204145924938489, 17.37376384322795, 7.358973278767522, 8.486224692763733, 18.564958427964825, 5.3939599534836224, 11.81006931662247, 19.911618649311446, 18.92490889838332, 13.864733136772134, 7.756023664578203, 10.17245303827975, 6.191196639716306, 22.439839636357057, 9.547548205628994, 7.616376983168529, 10.545752049057567, 28.03242138246806, 27.615630546340377, 55.25072282299593, 26.653438808372428, 40.8030528115675, 26.99840375359826, 26.58551779925776, 19.072742320165997, 10.911188699926898, 18.983421058107115, 5.707294429928984, 11.719706413926634, 7.200155883029397, 9.753815121658969, 7.760802577815285, 10.225538803259003, 8.410190859542388, 12.597861001448992, 12.322261967213501, 9.412881610590155, 10.591368148203095, 9.307222284414934, 9.275058521310003, 10.877918248619341, 8.873287581691427, 11.622832776520559, 2.2972048310697364, 10.721397069063094, 10.712551742894904, 17.29946418770504, 9.77205309930633, 6.6032919191413395, 12.664291025367836, 8.179457867415085, 10.999388323673232, 8.748686108100264, 14.779691295928245, 23.767535031025776, 8.400612048183028, 11.688073181228612, 6.707778367577727, 8.065586056004456, 11.810596783767826, 9.839535401564802, 9.998592883013742, 10.887595954656922, 5.546388039877302, 4.7019514492062475, 7.157581608597647, 9.477400708958843, 79.07143742606131, 11.579561828379166, 23.068051725848683, 10.335433310668062, 11.943100068811074, 31.242094982066845, 16.476464393015306, 14.08573439207651, 15.626899921161957, 11.06965900588919, 12.546397174735468, 15.739943733465179, 12.186284888065892, 9.887617595661508, 13.33431800175266, 16.10416728446205, 9.451181263954346, 8.27149824593778, 21.198642001900733, 8.963143497145953, 7.625561564185009, 9.307458466500409, 12.832501150221425, 5.29953205877145, 8.569069883156045, 11.8731079512183, 9.485602635711821, 11.36374639703043, 9.75355041754817, 9.818793239425862, 42.242155993493576, 42.12550607194718, 19.85463445924191, 41.69992170397308, 49.65706037873376, 32.094373003024806, 50.5674389875765, 11.572140307317477, 35.94786938885848, 22.428263616092945, 14.21004148185271, 16.97743088771523, 10.63295651559533, 8.476380020972497, 14.298210604263792, 26.108815076992347, 8.800214306790354, 8.54343988155443, 15.656337390348074, 9.790029827738332, 17.55482890289641, 55.63208723517275, 25.304391616553378, 30.448544386992562, 44.67264921003588, 42.37079523599038, 57.59386644331612, 34.09543299823181, 46.49903933526256, 56.29644838330991, 18.342185931617966, 10.847707213155651, 6.912663043004626, 9.420350398623494, 12.251861685870152, 12.387283426622963, 11.480437068544836, 9.478147349656107, 5.747733158348272, 14.94810415684509, 9.105844378458787, 11.247377253541368, 14.833392695567772, 15.43024120115103, 16.41437726557928, 9.434299847655343, 7.473542376229151, 9.399880985575134, 8.189440673520098, 8.15620428885889, 7.250890301003027, 9.997589370802663, 10.460400534006189, 18.961104838021978, 21.887336242551164, 14.1837123486313, 22.46064138943313, 13.237509067908654, 16.9035396883924, 8.86644834742522, 6.748358922990607, 5.301369310338192, 12.134390691329628, 18.268738250805495, 12.161826494553592, 9.081780201089575, 9.788566428664312, 12.939148969152335, 11.966304679766235, 9.934487074386507, 11.497835499420463, 9.810646839552307, 5.179769682603407, 3.0862832558634112, 12.199223205142166, 12.43256467628772, 17.21826926556528, 14.190450409680782, 10.436320968417379, 15.097713691372325, 15.138523126650844, 35.10536454580578, 14.928237484973861, 44.936643010160566, 29.19132468704932, 21.353550002048554, 45.03816020121645, 25.72123265374209, 48.35668205839569, 28.71177935198793, 21.184069953876907, 7.608972210493171, 11.644207152355456, 8.836786736549143, 10.809013757851572, 6.406714987086453, 9.941446392014777, 9.923733410253865, 9.52855018761934, 21.32837142712593, 18.448693508585414, 49.0007779934849, 25.072782831315887, 40.33677734552179, 59.43382924767871, 18.76055065221966, 59.47768012266149, 36.801835615221755, 13.645110266914564, 40.15216121588422, 25.234705159076153, 14.575482485078231, 15.161602694037986, 11.768954745039634, 7.534615252899597, 4.476779593522007, 9.64264025793429, 4.531375882545016, 5.071432993248041, 10.008121520979254, 11.67578043917064, 10.198845145023963, 11.930055920704056, 2.0470801782817105, 18.58721672844744, 10.193976989091421, 16.01827389235737, 14.726572007706961, 9.224703167947723, 13.329154842921094, 10.101640801714659, 6.4159289950956016, 8.00278160321451, 10.961329531779604, 12.325953590193011, 7.324716916787293, 11.143090174287726, 3.7000768173349625, 11.628235996904799, 12.62837822706477, 12.257716675613239, 16.356627806412035, 14.520980640649956, 2.734867661234802, 19.44154748164008, 9.682755385052763, 9.340237032783447, 9.195892540823461, 9.657217961759734, 7.967744479032483, 13.779699775664923, 8.127489600351431, 9.691733154701886, 8.375412645099724, 15.848805173817684, 10.83653247208467, 9.48236426430346, 29.24069026613426, 10.430374302705449, 14.279070585079873, 12.71054879883862, 13.203152562107471, 13.055323369370123, 10.632632319851117, 9.999948153318295, 10.129180147885494, 9.686826088709504, 20.010112377167758, 10.188694255380932, 8.167352823141314, 4.226160502702051, 7.857052628852626, 12.518602922457685, 10.040388875082467, 9.0993779751738, 8.353467609411098, 11.37305977063169, 10.68874262918257, 8.474749852208916, 11.431343553288325, 12.642709968796089, 17.29565938041951, 37.86892133961341, 42.52991164923138, 31.721290495155227, 26.958500190766987, 57.756648848620145, 34.319776927849, 12.572286746279671, 48.8868583165974, 29.04856054096985, 12.495747295162667, 8.92605139550732, 13.612335407668573, 8.291271388984951, 12.880729885854887, 8.7385970385369, 9.136595906675227, 8.996457101577633, 11.599848364571912, 12.148210959621187, 10.593175094141037, 11.822205484864643, 10.260179804050715, 7.476428098221652, 9.243554626678694, 5.971188626326996, 8.438320749581504, 9.038204718667318, 7.592853308654381, 9.443205211793346, 9.415272884603267, 9.21015751493764, 14.715711938082647, 8.809243279421642, 11.443958097758104, 15.109433318025475, 10.615716429552366, 20.8425177660208, 10.738918231970315, 15.60779304178049, 13.033279961217449, 18.14630519199806, 9.991202307561691, 10.493783738691308, 13.75395940269465, 8.139240488514908, 5.391043584616507, 8.854581034455267, 15.076915462921418, 6.8337573020195155, 9.309649750696497, 11.59420908086295, 14.821698168183506, 8.53176853274072, 14.594605542475398, 17.764232354044612, 10.520843844409766, 8.29931952764432, 16.647819875740304, 21.753349252254516, 26.50779873905265, 27.639945065278635, 35.378484524978845, 10.439138396638176, 21.78549259645658, 32.91527816732556, 25.41589626587526, 18.33430106400755, 19.128757606150167, 11.259983285263356, 6.128511343929125, 17.190603568653565, 5.414187728387629, 6.234277420807604, 11.409646240254633, 8.929587218897337, 7.330260351460412, 10.057826323353154, 7.325317278400685, 8.296136780914036, 35.07532126679215, 47.75676739145651, 20.061011660067173, 29.07869056776557, 12.286912237709869, 17.79063144989261, 35.13700553742618, 32.395439504418405, 30.06375963179912, 24.966525240520944, 10.411438135024756, 17.80966109059937, 24.96868432082444, 17.850658805679966, 8.701362568665887, 17.17209062445795, 10.690301152035223, 8.505027215030692, 15.323745517980019, 9.524575926704188, 11.088877763232059, 4.654166511663805, 13.337684569968994, 9.387131221908934, 7.7840455006126605, 20.819099852319635, 10.047559014028241, 11.570669937806851, 8.951084471276046, 30.291428995592106, 11.147046275846543, 10.878518039470997, 8.865741356924545, 9.714071662449674, 16.350507591303394, 11.768504900136586, 12.023717351932655, 9.431985416281849, 10.297862272658035, 15.543534117198222, 8.388778471856385, 11.352650695748922, 11.530332589932456, 16.117139814975094, 11.469853071379061, 10.424449862197408, 12.550863285950417, 10.06578790743452, 12.982459125051625, 9.376998199305499, 7.017306783948583, 13.520107035150625, 10.956348155732309, 14.359301756463106, 19.24877070507856, 11.035010260975822, 10.869696463217215, 10.456703530650502, 9.355962602821574, 8.481865673787045, 58.730948297073304, 29.898766101983327, 62.702440598904396, 12.057536822779287, 46.132534321575, 12.597495393210698, 26.013877278673654, 34.77110769500179, 19.402699182036535, 11.815128355559825, 77.45911170012961, 9.173167155092218, 8.167313389077131, 10.273886948407267, 8.460925557091805, 4.622876837275131, 6.680302454188383, 11.495958675776489, 12.455248119912774, 11.252386817674644, 28.355392605266374, 23.252593083374958, 52.89941311600451, 21.733251752433176, 30.585607343059035, 33.48687539554536, 35.80813721375802, 38.97634247303917, 12.050842920556281, 15.444060862172185, 10.565201314404762, 9.37062996138208, 11.15532985493435, 16.494562248349688, 10.856467584618777, 9.738164225805917, 9.176111614297888, 10.371336064646432, 13.50480741932372, 9.75272560656801, 10.56695374371968, 8.743306901512627, 14.639318433340241, 9.390278306054537, 10.249168094382997, 12.810525093539244, 7.910855871809502, 14.939005494314108, 17.16216283797112, 11.71802379099082, 11.747328783229763, 15.18715257857237, 11.00672361854137, 11.260871554906695, 13.133125724008035, 8.693542293116018, 9.168801617495262, 9.546469403395259, 15.7942969648582, 12.65884689069296, 18.363029729939353, 10.8966401151524, 9.326177595300715, 11.508530346030367, 6.4279469601096455, 12.169892558778702, 6.010409897988566, 11.71946477956982, 10.516128590330625, 22.680305030323996, 10.255743119928555, 13.171439367933168, 11.085276465208159, 4.321280077588897, 15.051086327463958, 11.29047521628922, 11.7378658454936, 9.820539243232258, 12.133170463955748, 11.514819964785397, 10.33206480247603, 31.974324578531647, 30.5919353652933, 23.39356478157747, 29.1794579984261, 29.21069358306514, 9.811869336309883, 55.66661433532098, 22.39457967327587, 23.102091161946753, 10.802244666484734, 8.382024812511853, 12.99985505521696, 8.968866648956608, 10.9306541887969, 9.532852658984988, 8.982779702958295, 7.609211082769608, 10.521039630993855, 10.07583021753626, 14.86505069505394, 11.523975810310965, 11.508170207573317, 9.256630130345615, 9.98556947193008, 6.02017043286189, 7.8277186938844, 7.14337394742179, 8.48379748843902, 8.037054938948167, 6.959363880185227, 12.870451256494745, 10.55752960069663, 13.293462090743635, 9.539745289588659, 9.048791313797652, 11.01451698692028, 6.6451355729358035, 18.787335954192958, 8.013096355927656, 9.588474877660229, 12.063321624558506, 11.552637779903518, 9.948197856974472, 17.018380609169178, 8.494011717003623, 12.263158170128234, 9.822947263627777, 6.5579195310795315, 7.108607921433126, 10.282129495007476, 6.77236706401354, 9.051184481329079, 8.789860512340022, 21.322121494948906, 12.784574897170378, 24.358256699373577, 11.752366475345262, 11.747144347168163, 10.94460889203601, 12.892262361577002, 14.63811081354707, 11.154748692374485, 10.696428477243842, 11.455116213683414, 13.790773995866198, 12.68737884669687, 10.17106282799042, 12.839329048799485, 14.039101835484043, 16.714799392440916, 2.131068261160366, 3.0236823537770823, 15.05840480401653, 8.130742881556449, 14.66891393631022, 15.45057481320239, 14.965568287027082, 30.587517512274232, 31.236874103549574, 25.445553755595977, 32.933643047687916, 27.58071234448048, 39.45773792714854, 27.39539525919237, 29.54526658629182, 28.31793475386347, 12.711589058402348, 10.395254379413414, 15.301515224970984, 8.386104923969805, 10.806413761551186, 12.028996519280447, 14.427282382238896, 8.855563085615422, 15.68252991166292, 4.110011634807423, 8.342329943828638, 12.920254606006726, 11.363638894251997, 4.956470888173607, 14.43774248381545, 12.13621817341278, 11.05623359203722, 6.723182825268811, 5.227405859102266, 16.986689681392946, 16.247213580177558, 11.708180642469875, 8.278519271451994, 14.591590900286365, 8.946750424459253, 17.924662238905636, 11.221284794415057, 23.89634522601316, 9.520536538607557, 16.460487727142134, 8.74460028283715, 12.36617608616452, 12.432588971301845, 12.11455087682649, 9.851564986987963, 12.164427801753197, 8.295724704981161, 13.087044137786666, 17.39139028348501, 11.628934805745445, 2.0784882966168796, 15.847103529575223, 5.748192998842126, 9.068266170849267, 22.551771630708867, 11.466356160922535, 20.395952399994407, 40.49769792674647, 14.36264205611752, 56.335241763026254, 22.729785373175872, 32.17490132512014, 20.51805021834108, 39.21796733135271, 8.747157073257961, 12.000769827527257, 27.49363694950039, 33.79794520116263, 19.556605521021226, 34.504784970606586, 25.962086607014964, 28.01281194024017, 14.07947915406448, 19.69249891253542, 31.104491969104217, 21.560856318935546, 34.356916147508784, 22.204473732042587, 28.304490862644638, 19.224853252372547, 23.27108598857647, 27.21904146560072, 21.905280482271063, 9.004178356066697, 43.24464096191661, 14.731673105431312, 29.7242225643999, 15.044357956878693, 30.65998041139822, 38.312448481694275, 25.30289714850745, 38.12522484752918, 11.120000971507215, 26.409983453585202, 29.29106858676589, 27.508634624224815, 27.402984172055895, 14.838663333752965, 20.297904435211727, 28.316525901114122, 23.004938594057016, 25.650149678748317, 12.83778901964655, 14.272891914138137, 18.104729905718354, 9.115303477310453, 14.38631205509924, 16.208491173479505, 18.928759438897302, 44.02928481970498, 14.281412463268108, 19.445665000114264, 44.685905780155714, 26.69978344138963, 18.184444549621492, 29.23082782597718, 27.705371723262978, 19.822848812295057, 18.700939638793486, 20.73994889902241, 20.336950210905496, 26.474742151578315, 9.861156184934602, 33.05765775640657, 18.63234796243844, 40.12023280885642, 34.39175655961834, 5.688948942357587, 4.457905143065479, 12.587891203788185, 10.734157264399984, 13.730142969145295, 14.049118261552094, 14.477622845050412, 20.10239484969854, 17.697169247903815, 17.711417160272198, 15.119079302738005, 13.751248472639222, 21.82850580711112, 35.38979816992434, 12.342668225694156, 13.767693580753667, 12.156403590071339, 15.733391164310705, 33.61979118906531, 21.46285512659669, 3.611888661012185, 20.827376106048938, 34.807859736831794, 25.580685483768686, 18.055942373782123, 15.060374629779366, 17.3035106198942, 22.149476643426734, 17.46006141475476, 28.11190488691998, 16.4517261393256, 15.245119715890638, 19.83645591114844, 8.424627128324001, 24.064459517684927, 12.432908932252815, 10.012424799815003, 27.54224871060424, 19.69756200372914, 23.280456075981192, 14.358023875290513, 13.951084972813492, 28.719090675129113, 22.984969114933325, 21.540826126824392, 15.627917606282837, 24.54027244689969, 22.755953450517293, 9.912181513233662, 15.933038537592974, 20.81073707274445, 24.699130538077885, 15.041180789678547, 13.175045962460343, 25.55454148108085, 23.446105675448827, 7.2762079748260735, 17.77023588868506, 21.777542610854912, 17.815065249207287, 15.905863036367435, 23.43079027798322, 11.258152567629244, 17.869502984681553, 15.68782056394833, 15.640987616351206, 13.133802604282051, 13.438466008621813, 42.63823649219308, 24.102773636494227, 23.82332321316456, 23.10618576121906, 12.270131670783186, 2.6398378964658353, 20.79746849549002, 8.614558164800718, 12.008618518472828, 16.274743912238208, 16.393631029956634, 32.51261066594226, 11.522481555500299, 15.68997732315707, 25.491413589802303, 7.472240674799528, 32.44953952494007, 16.002659253279315, 17.09759309364078, 19.747133735969097, 11.656389539304008, 23.068119095865157, 14.157177885856454, 14.078689541440434, 22.443982119738084, 23.98435492530346, 16.741571741735104, 16.91032198540304, 17.076568673313044, 18.395953541484495, 5.611293848599909, 18.887040591459968, 13.215406829281827, 14.386575735084234, 27.95405921627692, 19.443505045669433, 17.378565447008288, 20.31922916175268, 34.03926976914611, 16.33956118434867, 11.226356717567212, 12.91995078478586, 21.516476053102302, 14.304351214332227, 16.891371105635574, 13.03747951253253, 13.783634536765545, 15.23617979107012, 15.684432301678623, 15.595132935525335, 8.591708379755087, 12.333680870383336, 14.815160329823255, 12.530535569812189, 14.056930321283113, 15.13854622417238, 17.139228337492895, 13.294581908414797, 11.027797088389192, 16.550892716130495, 12.09736723887593, 18.24949872876746, 23.54175378702961, 15.929646794545322, 12.638859344687402, 8.906914093316463, 9.153290837916947, 38.33237433867812, 14.020471280637521, 22.0081176486659, 16.646549385237627, 14.693140936436023, 15.147451226953152, 12.668452152591577, 9.057132780736323, 23.239216602174842, 19.132260462437642, 8.725465392959723, 40.095521979783186, 12.97150812576594, 19.500411391287034, 12.732442942054949, 15.438061105121076, 11.672841765028544, 17.182642605612564, 14.797025752741702, 15.32731066843614, 15.886830198532948, 13.82902142681388, 12.419531041301749, 15.143669767380896, 15.921881493190277, 8.688721788872801, 15.011771471443236, 12.085120307407257, 19.471682608097634, 7.911673065398199, 8.51341478341578, 12.808741597373386, 15.177649022645449, 10.091111116273515, 7.971410748664475, 8.784927987021133, 8.80817652498696, 21.336603176803944, 12.93294251165417, 11.550026803751816, 5.916687921703557, 18.088699026742425, 12.013373225331833, 5.724668918481855, 19.739956808444973, 14.061074935320528, 13.09714632777617, 20.222023023029603, 29.38693078918845, 11.8782911651297, 11.20145663279852, 22.04227523020779, 40.87131627029662, 30.92898677307098, 18.029176996234447, 40.9112924021438, 15.914264081726744, 10.827689117131474, 3.334769843058332, 40.242907918676934, 13.566783575153774, 12.451543921320889, 10.09881585071562, 13.78152952214668, 14.556726051957, 14.54552836886856, 9.757856995593107, 11.69855674972167, 16.95569414737945, 10.180474500825973, 24.305151491352255, 28.126525552191197, 15.291296151737532, 15.545948562258948, 11.748486430113282, 10.313118237325712, 8.247966259892499, 7.870489490135128, 10.712429943821437, 11.00719934808723, 13.379106450158494, 11.121869513361267, 12.861168019496388, 28.564724958571617, 12.274675611676379, 15.491099935840502, 11.691171615496776, 18.31392157332878, 15.809351003980314, 15.78234276570523, 10.712102768647819, 10.465571864092588, 28.05088217398966, 16.53262499876176, 9.994010759915566, 13.43987749468103, 12.434647197736897, 14.892311149068474, 16.016766717317104, 14.887760649667385, 22.61371863033244, 12.650944318773465, 11.5526547425439, 12.577750433694183, 10.246994947390759, 11.106412565124534, 11.313514736052898, 16.335196352175235, 10.90398110490484, 8.515060645803159, 14.810184951830271, 14.437426338517858, 16.082914689832627, 11.924975320920499, 17.814149893517822, 19.984414316520592, 18.90428311528152, 13.828857202338321, 35.79054147487789, 10.593561861849105, 13.741593959362628, 15.328802472302977, 17.904054171562297, 6.5275189627370915, 18.948047893957664, 8.861440016829087, 17.29634952533886, 24.454791973246767, 76.30174030965593, 53.848374471033885, 13.69543912819805, 23.494703552768677, 19.525273308027252, 24.08087135913409, 16.936203279133046, 30.69525657939699, 11.988650806686469, 16.672643173585197, 10.473199828659535, 10.171174106665791, 5.426095995250016, 7.655336838759045, 25.624764599838112, 9.50358820213281, 17.74328161067991, 19.17309815731002, 9.610854518068045, 9.732916145953224, 13.034003137714587, 12.293466961573085, 11.383642189589665, 10.246482752555522, 10.96656708928258, 10.313907458189668, 10.176279361581145, 7.838029977000718, 12.041018911225619, 12.287978302915807, 16.67320807825909, 14.054573933171069, 12.502717608193628, 11.263924686709618, 11.073301067244643, 14.377158307455517, 11.610949940593, 13.669331481002382, 7.994802110900792, 15.840713512625747, 12.050505140734765, 13.221781220973254, 11.361058300021282, 8.980356138804304, 13.6775991060544, 15.119722624924096, 11.460786625193608, 10.199070209048367, 13.009781231976868, 7.272834629966235, 9.382224276742622, 10.679865518461842, 13.214349490582302, 8.533925501768715, 12.899751625988264, 9.93269395728646, 10.832211712852944, 11.88333360702043, 13.143428963290424, 11.496781216283738, 13.305203490051406, 7.403771938556696, 19.36744184676692, 10.27489106806916, 9.349180679913355, 11.89990690039845, 10.630721812487113, 6.659793677468544, 12.410979123070632, 10.277635347437748, 14.140442152947813, 11.491044440235045, 12.518509654710272, 5.442680652978609, 13.260067191325453, 9.444600686642795, 15.605109151730774, 14.0086750700767, 13.192948792516145, 46.61097304706351, 22.860458095521693, 34.64934485854552, 17.002585668641704, 24.48145488361477, 30.138193451651, 35.56089970689064, 10.227779942269944, 21.92219553760889, 10.97136326385992, 5.485555051847162, 6.239611743169048, 10.708711458996001, 4.748111309848379, 10.221025633293436, 12.389890360458269, 12.203452008443422, 15.039951594435964, 10.808344234927478, 10.70722585775448, 9.896827136357956, 16.383087825063875, 11.897246486770763, 13.132031279190523, 25.84641458051286, 9.645803216005062, 12.131898135364048, 7.685667478772632, 12.888788762558006, 12.702962672509244, 12.44262727286237, 8.941043887783616, 9.838044314317797, 11.09539687502914, 7.6327475816065276, 13.21605631878748, 16.929684288304692, 9.359719000415929, 15.940134546693573, 7.368797772383956, 12.648371406302244, 13.396704512525226, 12.552363681948085, 11.992041358228866, 30.596264259043735, 10.559831179558957, 15.598033534985118, 12.626547228335156, 14.05019190231367, 9.625676936824894, 7.507926236072514, 12.192245823808829, 13.293891688543392, 33.228279722380776, 14.669658174065656, 10.695737352764194, 10.417126660228226, 12.346691017128162, 8.250848454573166, 8.129173096724003, 16.369589724696443, 11.86270136409363, 11.425465430893803, 12.680246759011865, 20.231221077602704, 11.052175991335657, 9.652755078361754, 2.411923716857877, 9.041327688182736, 7.465206832023201, 4.885477780073999, 9.670021869763922, 9.226328036896644, 8.885433352489846, 9.069637687307297, 8.74224111623746, 11.192614773149092, 9.025802398286293, 9.623792525607227, 13.468789717912143, 8.192267474731677, 21.72475385494996, 13.996957539254316, 32.552316972935984, 14.409654848612156, 30.481562700563394, 25.731189109191387, 24.418375792695688, 26.117555257874777, 6.612044343173722, 9.922504112041052, 8.973605204697831, 8.186747230787, 7.7400816953985, 7.72464015837543, 8.043623569109755, 9.42867894632968, 10.054105242035458, 8.61629187209048, 9.129444154302973, 10.813342368449346, 8.831447204546054, 11.609260399395687, 10.861260358012188, 9.12800888019766, 11.800977131271672, 7.382125163181528, 10.54553185432895, 9.57466160612039, 5.688819366969856, 5.051956038486857, 5.202119046102801, 10.209963469181268, 8.168756469815667, 6.584448453540882, 4.9237085232969715, 8.48940883438031, 8.963853469819936, 6.595184409091227, 8.521732388842283, 8.108584655048682, 8.433925502548272, 8.173901871357755, 5.278038288237348, 7.885118800956912, 10.006037488551296, 7.121483592934569, 7.783420834696129, 11.476537278850506, 6.38281562447459, 11.05563760451782, 8.36370187229975, 10.846231325784627, 7.338000748002723, 9.570009464169113, 8.924345451965287, 7.840015081047735, 8.263562099302838, 9.251241721712809, 9.252909986175863, 11.060422062924173, 12.303223867063288, 8.276288008593456, 6.881395927955187, 7.571566284632078, 9.387872977249684, 6.530352548637055, 10.44324431400997, 4.873334147146772, 7.8180801976703345, 9.21549192800055, 8.386782481222955, 7.430388109131234, 8.831187813553647, 5.2491048335463235, 7.447463768054053, 9.26119165474434, 7.963233674217028, 7.90592776818351, 7.645021110350155, 8.853045297927489, 9.81080031084144, 7.7026404806493805, 7.164852445861772, 8.733605342925056, 9.705798262164187, 5.907217075610888, 7.08645192009711, 6.802066174241372, 8.24131079340997, 10.115177764281157, 7.967336197400385, 8.562233252740738, 9.264234267465605, 5.933289589976724, 5.4527077334052185, 9.00444693739854, 9.427669954232153, 7.707466250959385, 8.346574318003036, 10.013971147915285, 10.504678111221384, 10.901545439139689, 7.757241608159526, 10.502369222557782, 11.701856800196717, 11.064878654339477, 6.922482488444411, 7.1598963814204595, 10.71094528400544, 7.119582523481844, 10.211902822394924, 6.989870007190353, 10.753367948240946, 6.433897158206205, 6.4082426555756475, 9.996843091028797, 3.5333302211128874, 12.685905841810614, 11.06860063090965, 39.2657681147533, 84.23849300144302, 107.93005722393393, 61.69833244676719, 88.05194256924464, 123.7255497949165, 50.406460528041585, 101.6749957033163, 96.04447565324222, 57.415477862952336, 16.60981189263212, 11.264433074327574, 12.343598627175853, 9.90508513208686, 7.976869378466974, 11.580631465425727, 9.863460086428267, 14.804216917308302, 7.2580530673114225, 7.039633221631754, 8.04683708661295, 8.353739502477723, 8.77649417698033, 9.824028417224202, 8.824287660288393, 8.461821940744187, 10.629795999037832, 18.833847289002822, 6.505207446064895, 67.67645154654838, 12.323797497818118, 16.086117056665135, 44.11266014700868, 9.284235285243302, 61.069232406482385, 12.05124433660022, 7.497446631698247, 10.52896528600212, 8.220357405502456, 13.171986296272825, 12.077694651661327, 8.387350255408107, 8.71011423479756, 5.308995913127957, 10.03039685806676, 9.618478060139173, 8.88235177262351, 14.145863500725365, 4.851746600810966, 8.268640514629752, 9.102947118763229, 3.25185669745913, 10.483501940026224, 15.251551270786063, 10.94703576219022, 12.208895969377203, 7.937763352861382, 5.423379686754238, 9.634820395157108, 9.169813668627313, 14.477374750531187, 8.427984440577374, 13.032473290745857, 10.58342308915982, 10.33668920916861, 9.66295733093746, 5.1074012121427455, 9.53483275657729, 18.191974866194176, 16.883335151496368, 8.293501941297613, 10.894038217211422, 9.574708865323114, 11.61696807799936, 4.822050554722713, 11.011001753197501, 11.530182579145498, 5.079138379009587, 11.04844658632862, 11.947737819293934, 9.584877640100343, 8.349335187322433, 11.839018969601966, 6.315286169629455, 9.006775001266387, 12.848339868805528, 10.09866121868975, 15.067611610532298, 19.226738030682107, 5.556946513146181, 4.656527914024876, 10.131734261347084, 12.756665413099872, 12.656537042430571, 12.145201067935634, 5.981103844179596, 10.028776413186296, 14.314559630045018, 21.65743219543227, 16.569432675518872, 13.051978186737793, 12.018764749662061, 8.826653331002158, 13.791175128189149, 11.064166650743198, 11.638651091100717, 13.30813360636433, 8.135484986522362, 10.082658267286854, 16.0102354830242, 12.936254462733428, 11.764106710201832, 13.421621340488198, 16.666516708814534, 5.377811871129676, 4.001776734558061, 12.135417421739307, 10.874736703287997, 13.87274669184165, 19.468210432597385, 15.245045428933672, 10.473468641457734, 7.051741814639702, 10.933138936752409, 25.087674395358718, 10.866595210013372, 12.787688598056642, 11.146425271647212, 10.307381180302045, 9.990885846885334, 15.657887325596791, 10.931907649384186, 11.665154316975086, 10.465806062013195, 7.865492299053902, 19.78119050873076, 11.651010289636483, 6.352855007532702, 14.542065191955738, 12.68910623830112, 10.139618397863627, 9.726375149474181, 17.00655723730833, 11.76677088666858, 13.686251074307119, 12.379297136795829, 13.093790023903, 8.076620352772075, 11.602259985372038, 20.281231103045958, 14.1728244813213, 13.559180077426715, 7.849074487125945, 12.602334355594358, 9.782780859548708, 12.063479983646493, 16.812262612953205, 6.464931838104926, 7.842101577105825, 15.124743315433626, 8.91848811903525, 12.334910742532545, 8.75590489240198, 11.584316637990204, 11.408093260445318, 16.22441569980873, 13.422711642765076, 20.54529999603728, 17.26465496268437, 13.846333657426081, 10.42024714753765, 10.02704484609046, 8.914615075399336, 8.238053902328112, 6.423111158086825, 13.794951208508685, 15.075402381616588, 9.4343931939783, 18.97137272669457, 9.804935280131408, 10.025847861923666, 10.767518798146531, 9.966968674076035, 11.840338841622078, 9.526907576910647, 8.890206068728839, 11.810936314299482, 7.386090451962292, 12.451048904911593, 13.56426679485632, 16.614837540792422, 2.558799693998234, 14.93924733154605, 4.482721284681296, 8.995397944908534, 19.018261157393905, 15.227437614435914, 5.617422105833999, 10.272257327447305, 16.51456242302261, 13.392190218440202, 9.633542459430684, 19.413839591179723, 12.321239819228312, 6.158351208833123, 12.877172595682039, 9.441664374441917, 9.379727003443792, 11.477398690264163, 9.621369399615084, 14.647087754145113, 10.33946673138038, 17.04598595629517, 14.965846220965917, 6.12771406806999, 13.228105046223007, 6.103728140602947, 6.890468662523236, 14.480783709358551, 6.765190257453027, 8.142900624023772, 8.011933221639076, 30.561436771313893, 11.740150215836744, 11.076761273777738, 13.551136491696449, 6.992247861700344, 16.36067334798633, 31.90889995734864, 9.205303921090739, 18.30064383145993, 10.746743857659194, 16.49354639466525, 15.816246090422995, 20.130309873518367, 8.73144756048646, 9.293008091642598, 20.940455527834096, 14.574115605607965, 5.628416373793913, 17.451253420162317, 9.989060268242648, 18.452364853269877, 10.421390271448264, 4.630839811778735, 6.6853438377964025, 30.454004156809315, 11.474246336612172, 8.007019764848879, 13.862334957844016, 11.193073229573097, 13.7233137676914, 18.975094070940575, 15.21782731269208, 10.33363363072331, 12.270229575479977, 10.327354541681899, 9.281528896768966, 10.199489706432079, 10.354000161889868, 12.24255611051907, 18.391519371568823, 4.8852523251069675, 19.401922014337234, 9.80856068509834, 8.264564828907883, 6.152051325472552, 5.234036886236453, 13.690161238628185, 11.788824114441049, 18.62779611021816, 9.349802557079355, 10.259358825842087, 13.863267383281068, 10.298395692349542, 11.621179883851187, 16.926271195245377, 10.025355624841161, 8.367566113739255, 17.26915469398529, 16.3475049637101, 11.55835258677601, 12.786633411877894, 12.033600648302327, 9.985643522562297, 11.58000725717058, 10.735269023966987, 10.757302660329733, 16.235754528609796, 4.159949879267073, 14.492231982291768, 35.11510646387157, 8.830033029051823, 8.982071358707023, 12.777638483878809, 16.466771062963975, 10.13228552674942, 11.569795044197292, 15.45030557397726, 9.1782268819258, 9.259435577552502, 20.801332631438193, 13.449280889205392, 5.353473544295826, 7.700959630181979, 11.453622874589666, 14.626158798992323, 19.659888016780872, 16.593023787357634, 14.90281837613554, 11.911940061591089, 7.305117427933315, 12.809889602634806, 12.031103282882036, 9.095934923398103, 8.341164414252589, 14.413672608376238, 10.136532741369098, 13.269594760392605, 12.26608624477675, 14.966405794354836, 9.855791730437842, 10.795957192403268, 16.616048723453872, 9.69765216178506, 13.676262828182852, 6.89464702929977, 18.665374334822054, 19.319272620254146, 8.409674852112651, 11.466555252395482, 8.391546759324552, 19.23832822997234, 15.757779616359342, 10.409355923212681, 11.458802162615104, 16.515934834200543, 13.290406427507873, 12.425956416836486, 13.223938079300348, 15.753432358702236, 14.966753331700087, 39.00238476502208, 14.756439223452972, 14.647574563658292, 21.197680106216534, 11.739265435562341, 11.242914442250214, 14.748229700388192, 8.166588878229948, 8.894029123737301, 31.227148171974882, 7.782982217200168, 12.749356211914487, 12.337533526272376, 9.54213340364523, 14.639865075761389, 13.797954822467204, 5.172727820865831, 11.637958037678148, 8.20323406515029, 10.309129055472129, 9.870861370757545, 11.10221135566756, 8.435083668823205, 75.57003334784474, 10.04602186165297, 13.786355391392519, 11.935717612480595, 13.278275328127167, 13.019178047346262, 7.845133774674607, 18.334067708948506, 39.02529052824131, 44.86354420892289, 36.24578955414103, 14.609607481398292, 13.659046008602674, 12.199380232187265, 5.11150178926074, 12.570088484118342, 12.271180740300128, 11.928904858045454, 16.824530450121514, 12.933894655859195, 12.470951986621062, 11.138326762367315, 10.471843764707643, 13.66435457257011, 33.06241263157209, 13.382257541866297, 11.565879383065328, 12.007255292902888, 6.616581718579279, 9.746949639199107, 8.922573862370209, 11.934769880751793, 10.620406399352339, 24.550864233159622, 11.017413731881739, 21.14198242048442, 9.336311955112292, 19.496238964905697, 15.703003687168565, 9.983967215243386, 9.484942637479051, 9.361608085838007, 6.811802689871213, 12.920717833680767, 12.095064392333505, 12.564680655267907, 10.626369395576155, 12.435601870926277, 10.238243610855168, 15.768210344905672, 12.390336310196899, 11.453664087621434, 21.246887488753355, 9.692683730728094, 12.003775199225638, 12.002491351708946, 12.176565262033746, 5.299681157365488, 12.820522222215867, 17.864066684905076, 8.313830170488481, 14.829844298565273, 20.568071960525874, 13.884458653925304, 10.772789745564385, 19.652087662496125, 18.847324880244425, 11.114406089313924, 12.228649681201542, 9.665308687851136, 14.769482842138567, 5.428473648514843, 31.248760163085066, 12.59373093656874, 7.227791933623213, 7.386968425147813, 12.117517186101166, 11.987148194135198, 10.924186481561284, 11.064022190175407, 7.3679075462662125, 12.83948594645995, 12.536625263051716, 11.492435728552117, 10.418842547344658, 13.989782767817857, 34.24225398389736, 14.560951504010147, 12.974627982683218, 12.071833772215241, 12.323496056968166, 10.647309190557449, 14.428914662495046, 19.556468359879673, 8.858052008819712, 9.056587441201335, 14.467730602812816, 9.390876086785273, 21.656575213794365, 8.25143946414076, 16.69501173938201, 14.975374856617258, 15.354626108189596, 10.186408305580192, 11.012992510688491, 13.201571952233293, 9.334834694535747, 13.04541768981506, 17.404214328069532, 13.647209279973024, 8.797865727399074, 18.69434226277121, 8.860020051682149, 15.674422526432476, 12.05269238283507, 16.95009780375799, 11.28006702941792, 21.35121622134316, 10.595145123860869, 10.007694135555981, 13.794883669080232, 7.4374516841828076, 19.987229050501625, 10.16208982678788, 11.636597434650135, 3.7249468197038986, 25.67301371171999, 10.920902969248237, 11.632304734669662, 11.860699144352804, 9.996506397262808, 9.146767899974279, 8.06733556723664, 11.260853823467825, 7.257512016108331, 5.779517279255277, 10.114258297046948, 12.888002263869737, 10.718067860872816, 10.472447597030849, 9.651217951927014, 11.552775954130464, 13.031892160505476, 14.13461752379333, 13.71558674688744, 8.355835429521814, 9.731170167881327, 13.446431557875078, 6.697172247925972, 8.291030670858134, 24.971856651462222, 12.198189975353415, 9.330804931750952, 8.74259982249178, 8.998720369454828, 12.449409809974739, 9.568416484248017, 12.12919970950876, 7.28144016464078, 12.906298121710476, 31.647262038304596, 5.203323273250885, 7.749541714301325, 10.909647697561626, 8.253681399280643, 17.462334051092903, 8.983508213995359, 10.718228872427677, 11.123328536960983, 7.459796633986427, 18.66031512768843, 25.068155948276797, 11.773400568512821, 9.139915221620328, 8.780969970900474, 10.061530031024049, 15.615199029329483, 10.671006930299999, 9.94715046781339, 10.968402729937512, 8.825301272852549, 13.932069173446905, 11.996231074185166, 10.953494822974363, 11.8966190462263, 17.63883277630496, 13.32450870487987, 10.68351679018436, 6.894487268993585, 30.19888066798295, 9.986629356893594, 13.826928093087414, 12.395561384436004, 16.81015326444803, 25.239971681693035, 22.028669259708778, 17.240655027972558, 24.30234164138309, 19.879001847739296, 15.150889826406651, 37.4131629989191, 10.704928826346174, 9.338857580496018, 4.009542145921135, 12.985798512279887, 13.345300199679382, 8.899192131755765, 19.07139530725466, 14.053376336501932, 7.59082034109842, 8.63475451681383, 7.029925966870816, 8.805034687313933, 15.871220051203712, 8.46808958270801, 7.643533385905228, 14.040653175304088, 5.453294872753591, 9.174791939337725, 19.930912360209295, 33.35920485452366, 9.589256259591291, 21.172937434580533, 9.80961562002339, 9.747259940907746, 15.165263734351978, 20.42847828214956, 11.420283529723273, 9.277932219116975, 13.637066373284618, 6.070949853392288, 13.713763501405142, 9.38887296698985, 13.261381879851053, 31.921822496529764, 18.2366632698467, 12.24204076153467, 22.334868845843978, 13.540154625125014, 12.258278935518206, 25.676036020924858, 15.932156101692273, 9.141406841100581, 10.299312991735361, 11.730449932139253, 10.0748985432547, 14.496897278433494, 16.155872817971506, 12.725224543779166, 7.808969514425876, 20.248776058549645, 14.040668213639387, 15.531635811513913, 28.032479305615446, 9.49380263021361, 16.916716875960294, 34.743220472652816, 11.852262556206107, 20.103958012991654, 11.664118399951173, 13.210091798810058, 10.740013842750031, 7.777532512918983, 10.989872779117208, 7.989367128166928, 13.72695296272336, 24.550363682892836, 9.594271270623569, 8.239961402418045, 12.949565499859615, 11.703133429761998, 25.691767423737463, 17.178611104362613, 25.39581656741948, 15.607128975962256, 11.630830021477138, 6.733944289953005, 2.9666226575307455, 28.383751580211225, 13.282147935941548, 12.848804345131967, 8.967416399707401, 16.50851570375164, 14.403418301527976, 15.54517772014099, 11.978036677439567, 5.103175121830267, 15.421492285250235, 7.1471716666383385, 20.761978385597892, 10.289768218571849, 23.3311512058837, 14.18447699110273, 13.541231848671849, 17.690765319089234, 11.180850794782769, 9.609372752015208, 14.116741288790779, 9.522752516604296, 15.064379027276816, 12.702632794238951, 36.16922565983523, 20.950570274078014, 6.8488068452863695, 13.353755310809758, 40.640256918192726, 27.458282551847436, 11.32397545730791, 13.616241846788258, 11.652349312334433, 18.409140109972356, 5.83926707167072, 7.70206255622079, 6.254412163634213, 12.453057894850996, 22.972037091369273, 11.331695751351932, 26.92293833915036, 8.002935931829596, 16.847093114258747, 22.507580109103962, 29.490880574169946, 15.90177696884884, 23.30940879397091, 18.419701184195915, 18.92261722057495, 9.165790903299765, 11.796717180324, 28.157345463419922, 16.587264709043808, 15.954336935706321, 9.193830291666377, 12.906964552368414, 15.836834033768953, 9.500242382721627, 5.86266331972815, 14.468927948270691, 13.38488986995861, 44.37924025867276, 19.387841097225866, 18.491311568066173, 12.582772878499295, 13.202863801025117, 18.619202744291737, 5.147490095217765, 12.50666129724839, 22.07608331623657, 13.789510064161849, 15.516291184774488, 19.35829040084574, 10.502814290533186, 3.4959633986933922, 13.25603394189043, 11.219327004963777, 12.98400859021153, 11.677697183209977, 12.251478772935648, 8.079608722086139, 10.362808002152683, 9.285577310198764, 15.288454440836377, 15.257891567840483, 30.092866683313378, 13.308401422900447, 21.70948542023623, 13.966495733126422, 25.46764429608582, 15.39565097324528, 10.058196702835426, 9.214380129491044, 15.322318303510325, 9.786019628334838, 11.405241908750272, 11.80903787842275, 17.61001136149786, 16.031045213926067, 8.131682560487024, 9.377729045562146, 14.69477404256104, 10.616576498306207, 13.587577331959272, 10.968681830320174, 11.042400371723966, 11.143797049736698, 15.855191826730689, 11.92678826212751, 10.869130578876105, 11.9106907633844, 13.643413975218724, 11.016551644701352, 11.68653536982942, 12.40520443356839, 8.04815756111234, 17.814790211900036, 19.904572459624518, 27.097498896125433, 13.518869330869627, 12.402841523485488, 9.677266271125175, 8.504107632468514, 14.830713641840429, 15.86415350419966, 3.9544792911236675, 11.143474369881243, 15.839267451366979, 10.208829564423379, 6.866909555200995, 10.496031516367138, 5.295434742190418, 14.564605304812506, 15.684823236406052, 14.050085357317094, 14.168616082962883, 8.738527790061545, 2.5578748503993065, 14.220072524132965, 17.86814547245877, 35.95565330283751, 9.13586331514021, 10.85389121214472, 11.315574815419149, 9.578312035683634, 15.623688125434764, 8.475628368118288, 7.56718110533585, 9.593991633692015, 12.436939660146496, 11.477822909864393, 12.996114569899559, 15.020584307120702, 10.639821267998856, 12.776806617130642, 8.374069238361374, 11.507649021766197, 27.521670491396307, 7.5146028785669134, 15.084868455187456, 12.998504004262886, 12.436312132141053, 12.460909103785735, 29.873279834308278, 6.857979267738146, 12.681235465007799, 31.48775962886461, 12.942535545396245, 6.7972676781625365, 11.15863459470918, 9.988469882622438, 11.898606710650894, 12.457101676172456, 12.051971209737687, 27.35749689520507, 14.209878537656014, 13.787406769829763, 15.238849840261219, 13.231712234499284, 14.088443407575062, 15.423769208569214, 7.902821742127979, 13.143563031240829, 24.514072379982306, 17.380857514695933, 20.81384058148815, 20.410721430903298, 6.1866316802892305, 71.78545311922053, 42.311756334360524, 48.86289461480211, 11.91105980927171, 44.23711785337672, 44.406544745946064, 38.013368156806514, 22.214758976596755, 21.169080893324683, 27.935096225587618, 30.343616069593523, 28.165112230671586, 29.181443747190563, 10.460348459429177, 9.673798154728466, 36.35881521558458, 32.6555809878062, 45.81386361116981, 15.769335544456013, 26.31665663751452, 52.46114750530866, 40.531033494982005, 24.665015653086378, 34.0615737074816, 37.59572417451828, 43.62429635097178, 34.37636457043559, 20.499283536302297, 19.113555847676068, 22.710206196882442, 40.883038706855814, 52.71425684476339, 31.224377299375096, 53.3173491431599, 29.67184747830645, 10.551753398604122, 32.354112224634676, 30.004978538369837, 39.01094550981913, 21.488599436951727, 33.734567802425026, 33.533041855512906, 39.99152592756605, 22.253287663285228, 6.710145225022441, 36.36134347164418, 44.1011267094737, 14.123761801546099, 36.318628483358744, 33.052757101830636, 39.988036607271454, 25.356834654085603, 17.849465803251526, 35.05764423463909, 21.41159168024412, 36.57863693560346, 26.139497947756727, 27.957458453704234, 21.3367330659823, 36.84842498088437, 39.49987889690495, 19.829834471041508, 23.451196739669438, 24.2908134241523, 38.259543911798545, 5.848313810471031, 14.347805709132286, 19.33151193470459, 17.1064539709118, 26.946339106661398, 27.356444437734613, 25.622616859502248, 21.28771680807439, 5.803426713882963, 26.603391337603533, 32.41016529220264, 26.151947076797143, 28.974116529226514, 30.243697930394926, 30.870261896671213, 36.95227140532832, 22.527407223108842, 6.984762479717341, 31.18670402245673, 13.865928318873056, 6.923252142576908, 17.31624129523468, 12.711252346293607, 45.53809283608547, 32.19282943885095, 29.171405494015787, 28.57271863014185, 24.74922778159614, 21.30741802796952, 17.096837287307384, 17.24460601682198, 16.188556341053634, 35.033093546829626, 20.224206010424744, 34.7317015073006, 52.34192348221093, 21.323605644186213, 19.650401696621934, 21.455093767231183, 12.195264722327972, 17.301894982942194, 19.753835668880473, 22.532395797064357, 13.929492610120418, 20.279803497892424, 14.349998341915732, 14.738866622709017, 5.881705146374628, 11.621455229711804, 27.505557759148324, 19.895185242039638, 5.519928650024046, 15.170854756354759, 21.127508988141482, 24.056719503381785, 22.243737003949036, 18.229466621882732, 16.364646606342692, 23.078957577283973, 32.643688150187415, 14.911090865965425, 22.39715802983566, 20.82591834520561, 23.385766731554387, 13.427906807615717, 57.396383624468825, 10.623205281315025, 26.928297758754656, 7.088155274275653, 7.959168685814198, 31.151237105945178, 30.89358401297991, 8.83986870609678, 20.18926409668525, 28.393795809444214, 26.081096618792277, 19.531290685677334, 20.023983837729787, 16.81866507279153, 8.369553040318568, 26.069327505900343, 19.93160774857414, 28.763979787770584, 13.834237599284611, 15.19164866902409, 21.476833326395834, 25.614426774042954, 10.21223135470865, 52.71581801977057, 18.57283715514411, 5.95541361620544, 22.481901028464062, 12.594357031981792, 13.599420466745155, 21.060034228900108, 18.33208156638048, 7.813856712939672, 32.54089636463631, 21.61812401487402, 10.81214401208048, 10.735500558834284, 21.069663408486928, 15.430890302801666, 20.921532077853566, 36.046155196669524, 20.04304177198094, 11.871600235968925, 16.018577861832043, 11.936336097709987, 15.97873015344088, 17.01033046192798, 32.44933455884314, 36.37709284629106, 24.477998734799577, 6.4347287875787895, 13.978096454859744, 9.442550418991669, 19.383809528157837, 22.756202982606773, 17.70815593182189, 14.787494283631466, 2.4154459051857304, 16.00337936092975, 15.823315078382748, 19.64958889851766, 20.668887202070824, 34.648753103208165, 7.717030284026607, 18.639230771282534, 17.988040180708534, 11.89435769215318, 29.387419540053934, 15.205392626256328, 25.803044080446565, 14.747790221468842, 20.36814828694697, 10.391594243999368, 19.13454374507787, 37.087002316855276, 14.378439984998924, 15.253871215669806, 19.084019525594126, 17.70579887672079, 18.714286516427368, 8.807860687136879, 14.318548809360944, 16.549431642341997, 12.483858140053956, 13.304356545821033, 15.889883812738686, 24.12570971814922, 13.680991059632234, 15.211050414340901, 11.474730926609794, 24.32929203745103, 15.106101065568199, 14.52378254785986, 11.48393543621958, 10.788832793979212, 18.76749342140525, 14.377910043205702, 12.52531509423196, 16.748527629165377, 17.811204122116653, 20.09980003058017, 11.959105563203739, 15.809682206699392, 10.853459080066822, 16.62692192839823, 10.543647488057642, 9.717008090181343, 8.588325109244838, 13.873481516028889, 12.737051844720192, 9.04045264501987, 17.11262728402203, 13.11300500141115, 15.193879458089832, 41.541645645451, 16.094533611685826, 10.93350874271026, 15.712393488288832, 13.886762431173521, 29.939388693676896, 15.819501238103715, 12.129205636312703, 15.517618782464856, 18.653797908600822, 12.968398062019345, 23.44778409442445, 36.323558436444195, 11.708870651074498, 14.230463865941411, 13.634445259803643, 14.59649244738943, 14.254149201217555, 12.421187862577122, 33.586103658519875, 14.538480386891086, 21.64268419607696, 14.509366188556275, 10.046788768965238, 11.06064819477609, 12.689514525662515, 10.71095050630982, 14.361127430936733, 17.091856532846244, 12.713494329069047, 18.592369349941755, 9.69859585980254, 17.207038194566163, 11.868141069950322, 9.07814798520567, 10.276141568613324, 12.68578078919274, 13.428350042832038, 13.974836120678896, 9.812386177169383, 9.944299222282925, 13.930691810207753, 10.534803604014959, 11.195202745539696, 13.344036239713404, 10.312148506027322, 15.868553133509957, 13.940437130864309, 14.277863847169684, 15.475754889395976, 6.943742432020297, 16.76366631442584, 13.63015102843964, 17.940709212871756, 19.013546805089447, 10.958795641127864, 4.6560159866546345, 12.352655466968383, 12.208543472039198, 26.43886519867004, 17.349917906732074, 5.316572870249804, 20.40713446975249, 11.106254317043081, 8.467863170512425, 15.667584207049083, 17.573175362480967, 10.707924443304298, 15.341495834750445, 12.2888914520735, 21.483949058132403, 15.116950608997241, 15.977982925139464, 14.61971720708477, 14.235337486014608, 12.862937172766314, 8.204040363532238, 12.905673266234677, 12.07306925422248, 10.005125837246853, 15.011252692650672, 9.979628255566697, 13.022774577004009, 12.285311200582766, 18.037353561670244, 10.930071524221981, 7.508386770197088, 14.822628424207373, 13.2702252703914, 12.622795171611614, 19.1162450326849, 9.054118786406827, 8.62065436341184, 10.41431903808996, 17.99389279319465, 46.66261952800754, 73.04046573940606, 62.98420701330196, 86.76929409508206, 115.8039579753923, 124.71260236452001, 46.467419761852085, 82.43753810390182, 74.90296371867727, 84.88891946751006, 50.35862608256291, 14.614054425150016, 35.738835267043044, 8.389643412148267, 11.675397302505306, 12.179876968371723, 11.58876741641389, 11.814516162443793, 10.184056900605382, 16.051728011426963, 20.86241664371369, 14.041269133341569, 29.5047464449019, 10.695218480942977, 12.362786165139246, 14.302378866197236, 16.247502023879388, 10.440537945289577, 12.037991857489583, 5.04943784117789, 17.180304112095403, 14.01805731500625, 14.261486385555862, 12.295109014559808, 16.151009027090133, 13.813093830352653, 9.6830681921749, 5.690736173913804, 13.459694626753913, 12.610294464542529, 13.42347448759939, 8.793900814637006, 6.301171541827167, 9.297803427036717, 15.25674524123673, 8.04557595449524, 7.595230861287345, 21.378640132330315, 11.878005280053932, 13.712988532240738, 8.117548947574173, 10.355641861716085, 12.735638374299949, 13.229040498102394, 6.562869956235577, 5.232910890747285, 11.285174195185938, 11.934539704774782, 14.332902741032436, 12.796888095489146, 15.211739251555766, 14.751849459106081, 14.842415907965435, 10.500766863092727, 20.568146976510498, 18.264401592520564, 16.293764904156937, 15.500194779469654, 12.47800659266536, 13.070721160618994, 13.262991469815912, 11.582877234629477, 10.659013646368317, 13.163826936823066, 2.9748360559721885, 11.082524118016412, 14.780042427123881, 11.841950601143012, 16.675621322492006, 14.886714341824714, 10.609244845385216, 9.860532237011574, 10.537563685003605, 11.551485033064179, 11.648763376945269, 103.5679577260324, 102.03185844724013, 147.24194357253558, 111.29311165856566, 70.28649732538503, 107.94900286163666, 137.51922828963157, 131.92233481765913, 96.51760955466101, 32.68177047627207, 27.55189982986192, 8.90604748234733, 22.38993192313748, 12.117448611693149, 6.751371372946085, 11.303588965521968, 17.08631358803249, 13.768857453892641, 11.603829312659512, 8.877561603208378, 11.640956929702376, 9.462357064788007, 8.459042642036302, 13.288992802698417, 14.435693815718732, 10.864317533262117, 10.200915259065537, 141.66697016967703, 183.92416558441565, 13.571351791912937, 177.8918988095238, 172.79920080999605, 203.74373989899, 196.49735103132156, 167.79107954545452, 176.2857912087913, 156.42650583669672, 39.95498869936232, 13.427999749199598, 12.40440473460148, 25.84522242300184, 7.959862969954009, 10.512462927034232, 10.559879913387261, 10.577856518850805, 10.27715684338703, 4.435817159758772, 15.848870887263049, 12.590158513746525, 6.748266546247321, 14.48264335352059, 2.753493091725281, 8.76004489100426, 10.286186300330513, 9.69656600552533, 8.104968482144933, 5.589601421787735, 6.979643661763706, 11.22334794474862, 13.398519575488663, 7.338898876630295, 12.986478890901246, 9.458037797193498, 9.620008867014343, 9.946161032704877, 7.51246548916473, 6.480483064584408, 11.724905555046222, 9.292654093068956, 9.267700729021826, 9.684411451473414, 2.7488784173264214, 7.873958918187082, 8.960040566794738, 9.03727273096405, 12.040502535132196, 8.37900041194777, 9.076224216124091, 10.199343075208123, 8.26377985152916, 8.613395145573433, 6.694768440636672, 10.435705461210318, 10.344313855727737, 7.1200616986783505, 12.89705756096198, 5.79161209684839, 9.43989443493251, 13.613158038242421, 10.57022828063525, 8.430796404980027, 11.130721979293119, 7.297850466069588, 7.83867956410264, 3.8509596787146485, 8.354095733600955, 8.774452547483214, 8.711341230804878, 10.243244107194402, 9.372177817630302, 14.302360887363834, 12.260292087707235, 7.813170084478186, 11.126274629104417, 16.13390072396882, 10.005380861867307, 9.389740606924528, 9.4020358140331, 8.44151116417853, 14.192183616746249, 10.80331835022376, 6.831051220550221, 13.17347489193674, 8.60766038984305, 10.182656975894286, 12.92807644787667, 10.31446875212343, 16.92081477523613, 9.958520487074653, 10.939309696223392, 6.1331491935746225, 12.945083279422683, 11.684886486130459, 7.8365275150219675, 8.910637980605603, 7.298535335039417, 4.459206423519921, 10.52980852742029, 10.74513832757183, 10.958782194611443, 3.8250888938652485, 6.928499698376319, 9.68323453473892, 6.988847860136864, 9.551965672242547, 6.456977511558137, 6.5393117749684215, 12.255240321039587, 11.564075451101186, 11.344578170743231, 10.683251176165824, 10.013645378261003, 11.907232511216383, 13.923509409375251, 9.335847290412678, 8.789962469599745, 10.412065766579785, 5.908278240227846, 13.692735507636144, 11.04946513084162, 11.864534536328689, 11.206079724271772, 9.149316444428303, 10.846677118744925, 8.586933512414078, 9.630170106120259, 11.284066966225021, 10.576080745066541, 9.050171903787886, 11.143140111279045, 13.146316941020583, 8.709547333944005, 10.142449432245602, 10.795480736541966, 9.439244869627855, 11.323567396128357, 1.9903229776165081, 10.697212665200956, 11.726798584224515, 9.262396261946733, 7.875683871498967, 10.78443709671732, 13.660023030412223, 14.466309123366003, 11.725669308057421, 11.182401090722397, 11.315260740867314, 10.992955797062413, 10.517817070016626, 12.879129905284566, 12.386708496024179, 8.175287343886026, 10.173414813509478, 10.319435232972605, 14.194803025348826, 15.24951250101089, 9.122103457452498, 9.88575150029533, 13.596934157672884, 7.997420152183469, 12.484879873795386, 9.23743005291023, 10.831711027477903, 4.795266811485652, 13.107851313883318, 10.471837984070264, 9.10226254350099, 18.623082128631108, 14.972375596186165, 2.8345688015639845, 12.285493596905779, 9.811484097891361, 9.352275757653077, 12.146841011784025, 14.814268527558133, 13.27517558956065, 7.719294805211489, 10.476147691715164, 12.285883372458198, 11.994653862768757, 11.324708346662545, 13.541619179066547, 10.933130258451303, 13.630623754022881, 14.55007392990964, 17.134112572682735, 10.690279714439159, 21.32260126561782, 5.4373732614416, 14.19721213164487, 7.668281524588952, 12.201655038314088, 14.02771677043, 8.790434346096411, 10.581067902929911, 12.741262945667684, 17.46816371481831, 12.821833754565755, 14.575026937753918, 7.974595469119005, 10.749495656705053, 15.147662511261569, 10.807485817860664, 13.937794886400146, 11.602523345824704, 16.96648450177946, 11.87338893682929, 11.350044785365995, 9.415400645515732, 25.122841525728507, 6.365935450184181, 11.014973533230053, 14.373524660180239, 10.728954380480271, 9.58011808095473, 9.341833729481662, 9.78828902202408, 14.752507442170705, 14.46802860202034, 14.673230160603275, 7.570316887520688, 5.666424113428024, 9.360474510631303, 23.172806874712833, 13.369447794716173, 9.15810506757744, 15.111960362671999, 9.104442952038507, 16.222106779821186, 9.087098587173251, 17.734372824226373, 12.459451865514335, 11.89760744438375, 21.079966699310262, 8.573105386665576, 11.510096753859294, 9.88285049168289, 11.432649776939057, 14.992183357599577, 15.760873454274767, 5.901225026668118, 14.180694283213015, 9.38362843869486, 12.58252135204295, 16.75798423230745, 8.565922239747294, 14.03369253759086, 11.599899289819893, 15.497880555118929, 13.74699722180349, 9.996114550640543, 3.6214948284065365, 15.448858967299135, 12.066055465313209, 7.642513122072363, 12.62763925185246, 9.766657428525495, 5.014680460635568, 11.518751400361596, 9.568533673829604, 8.820935852444142, 8.151935322462402, 15.72247248290925, 30.232708140666258, 10.313208896956205, 17.083021368588437, 16.600850613162397, 15.52402167815818, 15.500153418133303, 10.880183430104612, 15.159229484890387, 11.997114538947548, 25.329445247274062, 7.542643007610808, 3.578196543344607, 12.19640654091355, 16.17817772270439, 12.456139082464855, 14.004066302425231, 11.099527715074089, 10.499406553026233, 12.619824090532857, 9.216460201545242, 11.485755551826017, 11.204115623929223, 12.893994359022933, 10.634497763799605, 9.595612704122763, 7.950018281606162, 9.676203094237838, 12.299602765090023, 9.126367029999608, 11.343685891768477, 10.981650326956022, 15.925768339630016, 13.496434094556813, 12.368952400497308, 15.534904923894477, 17.161857680708252, 12.493144840180983, 13.666100266369629, 12.47753051299274, 19.116091925414857, 14.737064417799877, 11.69949299622581, 6.768884794544397, 10.314571353452546, 21.035441993808394, 14.287703567154942, 6.365135051991451, 10.21959824698043, 16.981413963894106, 4.848029732203941, 23.839888182928004, 12.460805107943045, 9.600680120388892, 15.074653988000765, 14.824023861978349, 11.479038121767081, 5.219406312326484, 25.705138991151525, 13.127043261305015, 8.305313196628521, 7.294163425869788, 37.891290232075825, 16.77057084977191, 11.814336464674971, 10.33679872007443, 13.003530507408005, 14.837016437631265, 17.61500524218607, 2.260823207057273, 17.44581899488357, 19.01854987762782, 11.333285524663633, 4.068742406456651, 10.927751183225743, 16.578598131868986, 13.637964694562523, 14.309388335581698, 9.0483835405203, 12.451158006853827, 9.853549373352115, 14.480490987456767, 11.4519639091529, 11.949438181745196, 8.430743979010478, 21.858259946868085, 13.026969745399086, 11.339893336707714, 17.356571616558533, 18.627163224436387, 13.160221815534335, 12.80933588981833, 11.85194531956956, 11.377633356525207, 12.96481506087173, 10.238267604004816, 9.051529198355338, 9.96561461926666, 13.370732861446175, 11.194012541989979, 34.96714697376926, 11.36700414178734, 16.38952671973072, 11.258042112139302, 4.128539670204854, 4.213645150144558, 9.353518416523269, 7.402825996956794, 18.081553005445414, 16.20687528584385, 15.477897118029443, 12.33228597888159, 8.4696185111905, 9.604793949107925, 14.33423386488028, 11.058485090054647, 8.048349048570438, 10.761294765536181, 12.404524340988587, 9.847904849059878, 17.152865759279535, 10.450639184838751, 16.316388326408113, 11.368796386950375, 16.34455864917666, 15.319264975654155, 18.051001803356268, 18.04976524060868, 7.397083268291869, 8.818371666004563, 13.891885295502155, 10.323439838800763, 20.045705387602787, 13.68618682119108, 11.135496101121513, 13.757426684635476, 9.421309211712416, 31.819342948631242, 19.813865654898255, 3.1183385367832357, 84.27531015655056, 11.753886823352955, 9.101834890775944, 11.50030790935201, 16.5560360454408, 15.845178898397846, 8.02447710215402, 10.950424402565433, 19.557021849753266, 15.332588845193339, 13.228452318318663, 16.86625254538802, 20.81218056322391, 13.566305486675164, 8.86753802435542, 11.527278978650624, 10.792205077983933, 15.972488388111138, 16.817090680998877, 11.87764989396167, 14.609509399369694, 13.257842758755958, 33.45242981445333, 15.157555372205158, 21.450790853310437, 11.894253709104051, 20.63449276767115, 23.29713559160378, 10.025263238792157, 22.055868080285727, 9.963769614939578, 13.50626519322555, 15.800686787791587, 11.066996926791818, 11.206790431232095, 10.545769418910147, 7.430310324098028, 11.859664278927399, 19.404839940395423, 12.023900005772415, 14.20011033945326, 25.881453318164088, 10.485058846719364, 12.063341785976593, 33.1325367722815, 8.794676778166965, 9.199504999173897, 12.907847750742775, 12.861582262422658, 10.105987039279963, 9.795873488804796, 9.822461785362805, 21.096125413106446, 17.814724548028995, 11.796359261121482, 12.615711936034412, 8.793938478054155, 12.921699243184895, 12.295149660002245, 14.411246153957842, 32.60501020724814, 17.322517281965723, 24.013509558638816, 16.8515149969999, 6.729106682388534, 11.903095291983153, 15.765036223438702, 16.676199902476814, 31.292781677709115, 6.679326638970222, 13.16301451917762, 21.75781883432075, 10.66898726368051, 13.543186974851615, 28.48862990787627, 7.590655864251313, 8.310564133454221, 12.606246665305054, 10.030466400006512, 13.873006217561452, 10.028062160258873, 9.629107513745282, 4.001097796435309, 4.338063624594435, 9.213816865465894, 14.824176079338624, 6.162263659800183, 12.574703016346401, 12.905568049985932, 7.5003308181214825, 11.886423946800264, 8.596984660718139, 16.626510511633192, 7.629599920797356, 11.26042231562327, 12.390610125259338, 12.201174066642565, 15.37240327899281, 14.062779127894386, 14.273689707373284, 12.76697954212667, 12.710873639974688, 9.82679685090044, 19.961251422395662, 11.178134224889536, 17.119226309981723, 12.075662169459264, 12.137766813836693, 8.799733165405419, 9.108310308912193, 25.111015145887823, 18.793588660127288, 4.998236204539835, 17.091573298376307, 16.84945410859351, 7.628519678649876, 10.662829843659953, 13.260399896579901, 14.189414345754008, 13.141038756918617, 11.237419142201304, 17.354824005922644, 16.273599525066434, 10.423894186808008, 16.840565320554266, 7.64736310346576, 10.360214730491995, 12.613052044468803, 17.605028930091237, 11.609184054046546, 10.948928259829264, 12.47128426969371, 4.004426404126711, 6.98405829114519, 13.333544117724374, 9.699675727044593, 11.53721993560093, 13.66204078462244, 17.936492870369225, 11.818266539995953, 12.42849284442384, 11.610986197208828, 17.291922312680438, 9.070057162378534, 13.547937883913676, 11.801820663012492, 18.63767697745612, 16.665120444256903, 11.399926624435121, 13.91896572102741, 14.137475286610663, 11.548570434829557, 10.792371523449257, 11.484746351415573, 16.024825438726868, 4.350903967377647, 14.118707883353316, 13.726142209703138, 5.647930692526568, 15.482029166127855, 13.203873822195025, 25.79214471337673, 9.569715150508982, 15.700957662921233, 3.477965045127906, 5.731614051034384, 14.159123505836382, 13.994947212618266, 10.743144922102722, 15.7422665922313, 13.530200551778991, 16.6698026235688, 12.034786245509013, 15.409759058939219, 11.221142776135498, 15.446817736836728, 13.203660479798174, 11.896053230646814, 8.230334237856054, 11.175246102580964, 14.389419813429326, 8.7198190962582, 9.77127036552829, 7.851775103332068, 15.944725074778926, 23.95449098513428, 10.68263994119943, 12.307983908281612, 9.344089023818876, 9.725696962884781, 11.971532464041772, 4.265984786230677, 19.902027405519693, 11.869520745108717, 21.53785993923663, 13.092220498825595, 9.915440757587989, 11.712944822433206, 5.892145140655044, 9.693032186468473, 14.691282917478944, 7.509126249311549, 31.533192260912905, 11.38924748576454, 9.86234841699319, 21.495178823698733, 12.678546568563018, 15.976013918778161, 11.647674628472034, 12.87856263762597, 16.317819947794245, 9.176611001855411, 14.171454268209148, 20.495040313288463, 13.905512185923032, 13.411807087852651, 15.933947652710492, 14.096767361944757, 16.075114138202313, 15.465190440755705, 18.59657642941854, 9.63529247249178, 10.443353674780504, 2.8753786304402427, 33.54103621226594, 10.85881740254712, 12.560889183893504, 20.0981123009734, 12.118057480466275, 11.045507678925436, 10.873985420989534, 5.241518936024806, 4.673539033400066, 9.958441081665946, 5.310896326852101, 5.874508140767038, 22.44878696612858, 7.402761287203461, 8.576025876481756, 11.133974417427533, 7.909512882189846, 11.44308232911824, 10.859647615890571, 11.649131412417645, 7.92821285702315, 17.44255147954673, 5.725933699084439, 11.048026878951426, 9.869075282620038, 19.91611207014557, 12.721362435859309, 7.481687968157467, 16.133685836514708, 9.090346990841828, 14.279123774096156, 11.50401275590966, 26.33512022623458, 7.560861273032324, 24.587478732814738, 5.344925793908533, 14.358465619295318, 15.398895958520535, 8.045042217849208, 12.148586374409899, 13.119881365166195, 9.887621996103219, 14.267812049774907, 7.7782639201430674, 13.7445391517991, 10.694433293916378, 5.877196453640348, 15.658603739115225, 12.45385749525896, 38.43042015027131, 7.331934473865248, 11.862999750541231, 15.096480260680416, 12.692150408159629, 9.591327439001494, 11.239703863384083, 9.312093460273879, 16.91528633272477, 11.566719127556643, 5.047347020838747, 9.05778879841561, 13.807091137315563, 11.635191305444467, 9.971149815758706, 14.238948993117758, 14.165042165846298, 13.6340471103171, 10.430329363418855, 19.256273899241943, 8.897683479836074, 10.289549456213413, 10.431607502028557, 12.473196722395254, 11.135323932225324, 12.023562005373368, 16.52217741784359, 14.75053424379473, 13.163424286870756, 12.549503924632521, 13.89655061792353, 27.31169277976926, 13.26860737348193, 11.257254085254926, 11.695290807048838, 25.097337031274655, 8.218407648015624, 9.827353835515758, 8.772551805222667, 10.625025606348306, 14.730583579648227, 14.264531286217998, 25.682729698640706, 20.195717626327923, 14.508385192329015, 10.53158432504766, 22.35238863594563, 7.120108891224668, 14.656325113010482, 10.633571223001207, 8.93829041398669, 17.353334322292916, 16.08707549369979, 17.776049556995044, 7.849825794184203, 8.702660641234912, 16.531403572676442, 15.067237155540246, 15.216054303171047, 12.172158434507883, 10.267470421198333, 10.121041984455282, 39.11469422682579, 15.831787085126487, 16.22475664537062, 8.201494844161276, 18.958951250739958, 16.98354100908463, 37.67991610857316, 18.66062867187413, 7.000772035540837, 14.149588237697873, 9.700784791254277, 27.220777702930402, 28.690098217340026, 9.65920123559779, 21.224267269068445, 13.462691765930122, 15.1590269870143, 15.787491200723572, 9.819926255797476, 11.04915248040107, 19.658937015767368, 16.329798543356503, 32.64069161495686, 11.101672359568067, 10.118719445501181, 13.523194144720623, 13.725606315006058, 10.6966034049284, 16.971803346273926, 12.572327987598216, 16.42943700748233, 13.023099786269128, 39.15860021063763, 17.542486290024904, 19.68104354780298, 8.737707658635056, 10.54759152748435, 11.793420625410398, 20.018039487859927, 16.324773297020766, 16.44967804268969, 18.331251340323366, 11.842743337838158, 13.811758055508387, 13.684075594347004, 13.561421036794362, 16.28731905295931, 25.79328665108691, 9.845585673027236, 31.02149877108541, 18.043084198249662, 11.229795682969549, 14.818255069880387, 17.365068827900796, 20.150663059423604, 3.784307481189949, 2.891666987774558, 10.071081896851313, 17.567571594839997, 17.950114804594836, 15.16008535725604, 12.800764616529023, 5.626096280581593, 12.548363788904409, 12.34973655539107, 15.910265920322017, 13.641603396778507, 14.223442660830743, 22.285662802756075, 22.297705724142293, 8.905098808052612, 23.972956061588334, 14.18683658297776, 16.515690885795212, 11.188327275344355, 19.901287221027488, 9.024758357736536, 14.42382572321508, 12.122522425715202, 14.48400236399905, 11.178875901701735, 21.408856729055262, 21.216027617112736, 10.579708406802785, 10.081084395827082, 18.457729001134517, 5.601306268981492, 21.067183532003323, 11.604357451003967, 30.4221632231457, 14.083244482707226, 15.577671375923696, 18.805111608057764, 14.597409232182812, 15.622841574275395, 18.822311247447082, 9.26452311542946, 12.503179080896778, 20.086584506066483, 19.6928767777301, 38.142756099596994, 18.281403420744805, 13.738376498601044, 17.293749897727892, 15.738384394974416, 13.259369469728078, 29.597591544834604, 16.446160918874146, 12.353895952029118, 16.94503188636649, 8.769832628527508, 28.115591921966924, 21.91787246944232, 13.706524253001852, 11.634438075534591, 13.833558716186229, 12.572913697689849, 25.932045805978316, 7.982541890995337, 25.576456369528493, 19.67811849277351, 11.106234935586713, 10.999174216557273, 10.73200406067016, 14.055246108957803, 13.882279769731877, 14.599059381572154, 14.52613063329, 16.503239202796262, 15.149648500879923, 5.478691026204386, 10.025886163471803, 13.021968687001795, 10.02511157472854, 10.126368109864158, 11.043982306100293, 14.360131919063166, 6.186074712417032, 9.117022765688043, 12.438351455521476, 16.41350169636417, 19.444355013102594, 15.157829273526795, 43.688655777529995, 12.89484966636068, 9.09905831207763, 17.182611156857128, 11.906514668666606, 24.620924971734336, 24.16097231605178, 17.031786128642786, 11.873174046186021, 15.684230417958041, 11.513608459974478, 11.87948919288985, 11.931585563246278, 7.208657202620291, 11.89823813301571, 16.398187232098678, 11.826316924114137, 15.172541861818955, 10.598829164095024, 14.147313280106005, 11.666478135997375, 8.709293036984636, 21.109484785939888, 15.13542862235804, 14.019769094412327, 11.435688656516241, 10.691298427341776, 5.314422318862218, 12.278589825423637, 29.21382541160372, 9.066573444654727, 12.505154077829859, 7.752405791824477, 19.495979223931432, 12.450487234599224, 15.163190230821806, 2.7361963951263166, 20.448507881756825, 12.954528215997332, 14.87081766505857, 9.924314274523498, 14.021795751592514, 10.536317356520982, 4.458862001249565, 16.241094423013344, 11.829296266933962, 30.664877379156774, 11.573200943458566, 9.483902099096184, 8.786603664739523, 37.29038353999301, 12.82661827448127, 9.308202109532829, 14.297834813664146, 13.010103391010638, 14.854967336098628, 7.813308425664156, 11.78708114928587, 11.946461146864351, 11.84470879906656, 14.034005736009753, 15.655244944357324, 13.137025260833413, 3.0483005837078867, 16.93840327200985, 6.957829949012535, 10.932558644080501, 9.1549286356615, 10.698631955544837, 18.482064926103284, 17.887927308971648, 15.632844554872772, 8.506064759560841, 13.949236869109189, 14.502328193378329, 25.449464727438023, 10.132265303633538, 3.3533059725665164, 25.733423001791806, 6.703670140705542, 9.89221651052415, 5.001302899195969, 12.53546427104402, 11.692237887505492, 8.221624637882325, 8.694231743573768, 5.297767521896471, 24.786869875015807, 23.487432211562822, 3.6858816434627535, 12.699480113568262, 6.860533921830591, 14.37493568518147, 13.391778698408235, 10.085827292068322, 26.537693564753997, 3.694885553204467, 13.945872587436513, 14.385308344521157, 13.644087368309046, 9.559484643109155, 14.535352291133757, 22.35443695761191, 9.039489297595662, 13.891467064709936, 15.302690878341132, 53.38908157722014, 58.146664527684436, 8.053417127772219, 44.97847250304253, 48.97046848190062, 51.66328899769818, 9.439191935655554, 36.82221724074564, 60.20552427262355, 9.091653739289342, 49.04326621336179, 44.39089703099452, 28.45502742866495, 35.89868526436583, 49.28169561288857, 11.558968215366344, 19.813433706467347, 32.81141290493133, 20.15374968030061, 34.325776709861536, 45.101471287007314, 36.02088314214165, 11.355588243505666, 50.86676298679031, 45.7475076828344, 71.65311502968247, 46.275751721275746, 47.89851656670853, 38.89979177535006, 27.327152519042492, 3.1645185807473117, 45.18382958435899, 44.87786021165403, 3.9861478735167024, 35.90200934655226, 31.59637994066515, 23.176396783872924, 31.685759602068032, 42.65925115013394, 18.601825090543713, 38.10772304590535, 25.74588047009702, 46.49010256380185, 21.780710768898384, 51.41296468499345, 49.73028541490088, 14.627830390053278, 26.37278446688856, 44.04094012271474, 29.11570734932406, 10.133746195331277, 30.165080038776804, 10.708678984670223, 28.050331985008455, 46.4068578643579, 22.127064964758535, 35.19124892423918, 13.710729826464927, 10.98119454742465, 17.266180441849162, 43.54908578126377, 32.368797226466334, 37.76995840384051, 30.364026694113797, 17.712017552605634, 30.442374646856006, 16.296834591878707, 43.593181420462926, 14.966068961056441, 9.7140139753661, 13.953936714047707, 39.25316478502577, 14.818045162787572, 9.288244561414743, 11.380762153130885, 39.29906572595131, 27.044916868249185, 25.00863734530902, 30.724888892291055, 17.123943737869013, 4.0875196789613675, 25.561566742666038, 9.891349512269205, 7.524875295812122, 26.78873621287553, 27.60193273838615, 19.282882407191753, 15.557093274794228, 19.384541886519063, 38.11000509785366, 31.537548824439856, 9.462141345812856, 16.129710506264026, 28.330899068803348, 22.822040617955434, 15.386383827386922, 10.564804167001334, 36.912573475561615, 16.136002989915134, 27.09539086616845, 32.478326642741514, 38.348262736000194, 21.76948015318015, 16.805751400805935, 2.5507123067939372, 20.394340714620327, 22.648749445124263, 27.80580535885683, 32.13920364635366, 30.164189634439634, 10.059573935878928, 23.616072739412843, 16.02265497586835, 17.55591506249407, 24.028839263119067, 26.942617118104348, 15.255275785985026, 8.85054043189012, 12.252712262932087, 21.612633328304188, 21.462337352545152, 23.81232058442015, 20.445603393790503, 16.752925760079005, 17.126200651051153, 37.07371225734191, 25.683033698297624, 13.946019264747326, 21.979092338600598, 48.4293179030326, 30.624323116861788, 14.046279335088858, 4.187785026046616, 24.594459555090967, 26.37061443213647, 21.14066617553039, 15.477194273872298, 21.11141650345474, 23.172851518599323, 21.94640426958662, 13.781035999551191, 26.139515966547844, 17.485906737068742, 20.435724530864224, 16.803028027738826, 28.07223297801386, 21.63686072244749, 16.9003661914169, 12.313448289535947, 24.316433757956943, 16.106901444926525, 23.03478275933733, 24.48479931869853, 21.335478076383424, 22.586159644423333, 8.756302385926952, 16.18975768577827, 8.332611540314076, 17.476449615743736, 26.105539200336572, 27.036775360905004, 10.446563983859589, 14.858404235087038, 16.26542078208842, 24.549917271270704, 28.58836601259345, 13.200062170691162, 19.33950172635272, 23.380980256018486, 38.8118127902126, 15.738338573701519, 19.33337553699497, 11.803030690321977, 41.19380454162251, 15.952908566781892, 16.514078519083398, 19.40969894468063, 9.25586218608524, 20.81101169251322, 8.381003677215956, 11.706470736414428, 18.08217302870857, 13.670522080021149, 17.735525498472903, 4.533972357011355, 18.148146748724088, 10.590506177459115, 27.46543266185139, 14.334292801396517, 13.494271411878834, 15.936359260779849, 16.811049543384026, 11.460016244980917, 19.4750517498155, 3.2465185641288743, 14.577968963702391, 19.275084533715408, 14.438494508456488, 18.005575158288714, 20.477424153310135, 20.178631927598268, 18.98683667721168, 27.02038413447974, 17.705940165140266, 11.359625776024181, 20.607399899345953, 13.896794206995153, 15.794043334374596, 17.569045999052044, 13.575060527484206, 18.872251946153263, 14.185413824638621, 10.676123228389512, 16.234476550927724, 23.505206397971094, 24.058532720889087, 16.69805984108771, 14.063735427270338, 17.440440485457295, 14.810811493525954, 13.317715477137961, 8.1401884450782, 31.35056953747931, 19.09572676385137, 14.783860130349904, 10.844759050117409, 25.522288176692587, 17.809841885221438, 31.604516699803487, 8.827132739209322, 9.467740046090958, 12.625624982602536, 17.332825272821218, 20.48067983800685, 13.454565916029889, 30.367100156764327, 16.7603868941516, 12.411564263167994, 10.224555365750852, 20.266008835970045, 8.719852940030952, 6.184035875837265, 15.523774447238916, 12.069227726017568, 21.474827672152283, 17.85928874267512, 6.145343125919037, 28.344953620579624, 11.019827484644528, 13.678557008202471, 18.629644400643677, 14.94903108731885, 6.7986529807021805, 16.33494917482758, 18.754488924474234, 15.291051369227604, 13.698467292128539, 22.3184152820527, 11.791227895324859, 10.210546092767899, 6.876214338293284, 14.867809694100945, 10.70315583549017, 14.29866610826693, 14.562856956548915, 16.491939329072423, 13.296628707060266, 16.722811054275788, 10.008422919374711, 13.430826738658833, 31.65384134248105, 41.82716014083032, 11.711655006014603, 11.860846967437448, 11.252430552084654, 22.39346933864209, 32.220526319908224, 21.06484328576315, 13.816822641291363, 14.23050724683315, 13.96362426286416, 16.95676184934589, 12.971597000102177, 10.528611281727647, 13.417635983922796, 15.833776782229744, 14.403030575231663, 16.614812055944007, 16.87631767587418, 16.875976197859963, 13.903762455692776, 14.256919068058219, 12.620491897738345, 29.70888477195319, 11.453595672308376, 10.06413200534341, 12.472196579718867, 28.259832872314554, 15.326647996819428, 8.80980379130027, 6.964031297240571, 17.24394799146315, 6.319368027968761, 11.920895281577256, 13.287846233410555, 13.444776548123212, 16.61609747124632, 13.337083018259388, 19.832423710276643, 35.95776564014243, 11.686834891760514, 13.99242544137251, 18.444604345101265, 27.063518524499248, 9.952735463405864, 10.716528424490047, 18.563094321614052, 32.084518231768236, 19.390866435155836, 12.741569812319794, 12.93740245553186, 17.033016894879168, 19.542275846405357, 19.393932396997805, 37.26699386316296, 23.34710712701794, 15.586144279142207, 27.247315991565905, 15.382974979604331, 19.66257543197367, 16.75004343748115, 11.400363088536954, 12.852573628685864, 10.153882702947685, 11.70813942283579, 15.113604835224864, 14.084282323971289, 20.273251706231374, 15.073732572973974, 15.02399580281645, 13.262368261538223, 17.745852601131247, 13.049043591901388, 23.805090211602973, 14.853332966532596, 14.320337225639861, 12.571665752877442, 7.363369509787028, 15.857951082396573, 13.382754902330582, 11.630623875566789, 11.967173509505436, 13.757192296035626, 12.391841545965969, 2.9458745866735105, 12.733431329033879, 10.224229794602621, 9.648921296414795, 11.51141198588993, 18.401807287183072, 14.0159737856557, 34.708176972817405, 12.550651299940649, 10.867764298595866, 15.50272336671719, 8.102130174907646, 10.208729586374128, 13.187231532855995, 6.712517320536482, 9.783805641394052, 9.904360371466172, 10.661168797953636, 15.852994775310101, 14.659788558705024, 13.799207147317844, 13.990543808999998, 9.77393812930276, 3.728275507525709, 20.801273655964188, 12.695048076608124, 16.723926610891166, 8.729123800123231, 26.365869178755016, 14.611178896494705, 7.663704222073548, 14.197696385668893, 8.94744910235402, 14.886971399486876, 13.886046664734916, 8.795021207472695, 9.77579548374294, 10.214653047056801, 12.378566260534742, 13.859979483420446, 12.7396449213534, 12.781295737810588, 18.88419458640358, 13.81277860439308, 8.995228732345767, 18.580403471614378, 14.266848817516996, 11.291467103174144, 17.003497831796082, 9.298394027533845, 13.594805362823417, 11.230374195141993, 13.521418089657766, 31.47521239923549, 11.446960022935633, 15.058343105363846, 15.13461401291235, 15.842077383288338, 13.47515234609183, 10.63040588942391, 16.776517888708558, 20.09369993116046, 25.66320420332436, 11.018702800364963, 11.025434356217243, 2.8383342393025934, 13.348014194786018, 22.01442319569461, 30.560248553771824, 12.992201194689992, 11.157248068784213, 20.2796543052997, 12.461682442321463, 20.271187825929616, 16.40051726349559, 11.005870091108513, 17.88048107221008, 17.832400583587308, 10.341963336131778, 15.205488768466468, 12.809772892656012, 7.251527406200459, 16.39602890673316, 12.889759427174134, 15.81613571915701, 22.502845793095787, 3.2416694408913957, 16.373988048523383, 1.9241485226513149, 15.362930807179096, 12.15246963832446, 14.043066962612542, 15.999251725356894, 11.532856348172524, 14.49144734153199, 7.876225971512477, 10.997698059549954, 20.530455973684827, 8.790099518137882, 13.143198976695693, 15.801404235169713, 20.327397413405308, 11.104282376399304, 15.235761485538129, 14.782767133193602, 11.609637471398486, 21.26899810045476, 12.996219548989476, 12.683523769025626, 11.287700912855636, 3.2314796987116448, 24.73830400745093, 12.227241198399653, 3.939722808034401, 7.423761332270073, 14.758222919237623, 21.696163703907633, 16.115269660356848, 13.60574260142794, 12.646443150328144, 15.54689581848613, 14.685032591968778, 13.76528200217855, 7.7909641347744785, 9.19242436714186, 12.50400636974658, 11.247530651643002, 11.77191533929664, 9.161359359295826, 9.155276681944907, 11.77493439070366, 12.316662987004392, 11.368328568370055, 12.697601457503003, 10.834160578198892, 10.403490511865698, 9.374750650703476, 10.394123994317157, 8.108167584410772, 10.750553945925077, 10.02567076467334, 11.989532267403343, 6.6107821324042, 11.769205017205017, 13.061492233365762, 10.601984621286862, 8.771175362384634, 8.706241635259447, 10.054137108563275, 9.210616390566026, 12.20695873223287, 11.026400102698057, 10.9485696961982, 12.380119157001669, 3.4355581602297036, 11.090320411868065, 10.970728773978, 12.08947603587503, 15.62301796569443, 9.703796165335634, 7.638613506863236, 11.728222524473786, 14.246757323913656, 6.1424445850403115, 13.398676393566054, 9.281740498188057, 7.159782811679483, 11.484602811223857, 11.72699223278628, 11.915917928144792, 13.63871971150624, 9.744983903398238, 11.380461773740006, 11.829640003657326, 12.685536251090758, 2.1054970651884513, 11.403956713807377, 8.726213080712629, 10.280309612343824, 8.523461420310154, 6.467028785175304, 9.617903996227756, 13.993365986915377, 14.136545945600298, 10.301976380223136, 11.704361080797998, 11.364585928620027, 11.15541195899903, 11.041141772488064, 5.85781599289254, 11.29148214547937, 9.3614648236871, 7.368520148519501, 12.137364327380036, 11.525783904764639, 8.613332750633374, 7.360838139041577, 7.243138869449357, 7.79104270418175, 13.072824128485891, 9.357719437783347, 13.819481859629777, 10.815362479615871, 16.866802597772022, 11.71759178184137, 10.752729529167834, 9.434341791209299, 11.243590475999728, 13.483299457197335, 8.234049355789537, 8.155818083802753, 12.677842429350395, 9.827160770269552, 8.281652936531273, 9.152358960143191, 12.864734702655099, 13.013874355804157, 8.173443588081433, 9.801333366670592, 14.907972358452549, 11.265179102887018, 8.548527674654206, 9.915707650237952, 12.31262723583083, 18.597370879513086, 12.339077719757466, 9.274079070805726, 13.654541702113175, 9.945561324573317, 6.27595406815193, 13.027159925502723, 11.9555423252545, 7.6006581964995155, 7.1410843370142105, 9.834893906213757, 8.435730582718504, 8.907569359176298, 16.812402201468213, 14.590101117369064, 5.716585842318019, 13.774894442560072, 12.145200881613214, 17.508157179534205, 12.880852187403917, 15.217675516142057, 14.59111789826364, 5.268568968889059, 15.715264969247388, 12.489868315872085, 11.310107809406786, 18.35636453005629, 2.8572234569829247, 12.258765628419965, 12.936116167499934, 10.460564732829381, 15.894561655045832, 6.1944903990186475, 17.515746693973792, 9.684892684411109, 12.2489876091924, 9.25141689318349, 7.653099788232099, 11.440674143752332, 12.343141824960473, 13.662574173066735, 15.442256271029414, 12.610738895518018, 10.340930263117837, 11.752672992373851, 13.176298255959848, 13.460105258630259, 12.790060489391097, 7.611789663396835, 11.445543598047765, 12.331736310619636, 12.92951907447856, 16.739800432883257, 11.850716127719481, 10.291552278867213, 11.43908371491238, 10.41453554844891, 10.282253802674735, 14.27527958161289, 5.34573576360202, 15.048936110089342, 14.081059344096325, 11.22554259603766, 10.550858467891969, 5.294734435262877, 10.006096284300165, 15.044173325442156, 12.02243778292385, 10.765012232048994, 10.024283479423103, 13.705379433822165, 5.1691798197843895, 11.376556947133034, 8.029440682113279, 14.778587408347542, 11.551719966277162, 20.827262696752257, 17.05123009829823, 10.484700289971352, 10.93967128268328, 11.718932993000987, 5.718384666443321, 10.926405467356856, 12.635574065553241, 7.852352450143215, 11.555620517167585, 17.40787611701263, 10.154387952638357, 12.052692516850348, 16.576836337856076, 13.326550067716934, 13.793368677100894, 13.839337866356084, 13.037009082331513, 9.930884718011148, 6.776635234045586, 36.190649158295884, 10.241769027197432, 12.605416448017067, 12.110666095714034, 12.765410210032572, 11.906792602263572, 10.79773185188278, 9.883162572767352, 14.000192513015802, 11.543534465253016, 13.376120763454962, 15.974450346817838, 12.296765676874555, 8.740297853899207, 11.29826817354727, 14.06360825497544, 13.033191819154146, 8.687647039338412, 11.417494771508531, 13.576811167222615, 13.34126482267589, 10.085681342990243, 14.36562174961691, 13.60934348633268, 15.146000093596117, 9.088667637179663, 9.281883147776943, 27.867300686679304, 18.45586905478721, 8.189248387326419, 12.058280619664135, 12.422614432405815, 10.953624186717997, 9.13487980097487, 13.044359184822781, 13.713533801460711, 13.3979783253913, 13.348399476488725, 11.627516838963437, 10.10092084134513, 7.909403970312954, 12.535289078230385, 2.792183029431867, 21.148014457081818, 10.593256435276588, 13.250562492322564, 21.953142532160083, 9.250695901373232, 13.685863010799856, 12.637696662147047, 30.09410613357517, 13.63666763129371, 13.511272338793821, 10.293519941065714, 23.800886113827406, 9.501128527085832, 15.122596665497305, 13.732003386392403, 33.71641103650095, 12.039929571524965, 32.372304791613615, 13.434926507244894, 16.57246371904466, 12.445244207195017, 14.676291700838743, 13.717634101166928, 13.037258151618103, 7.437861008532669, 16.242776860879008, 12.752795708094643, 10.550327850307138, 17.06008188654209, 9.123904494454566, 12.049923767273263, 3.7207996407450894, 10.275507912182537, 11.127696420475239, 7.987483197518536, 9.63413907965059, 21.21821017834113, 12.652960888708652, 14.490890517557782, 9.88405462679638, 15.628143056490321, 18.547767996866664, 15.744710747959259, 14.263566143522791, 12.668936290360579, 14.616122446544175, 11.890741845254283, 4.3135874148690005, 8.07960061861517, 11.182815424283156, 13.935483893295048, 14.340849786349148, 17.185556879914596, 24.019444434835737, 14.693522588691943, 12.379859576741977, 10.70443090616655, 14.869679435145013, 13.81053725548173, 12.259880050955504, 13.815297393995904, 42.602220375803924, 13.390344307170905, 26.87434115125071, 14.232275863341998, 15.798636500651433, 15.656641623792256, 22.440147382588176, 19.435273338162915, 13.406722132915247, 14.712210058874522, 16.667944056352145, 4.233297858987652, 11.473165071897316, 24.10043978311993, 14.17685787779304, 5.530671459013087, 16.11082810599435, 22.552670171331933, 10.908636135977106, 13.272002048129952, 16.306427010682402, 6.267983273097377, 19.56409760053447, 15.418999776247095, 17.74625441366451, 13.993530081009345, 15.690583174234655, 11.893323418615347, 20.912812345627227, 14.45963296194833, 16.34926239993498, 13.615893684052166, 9.85292695682324, 13.479026628019124, 17.514446511350314, 21.404290282021897, 19.277668547106163, 24.457299564642458, 10.664035389424079, 8.772413485989613, 10.275939497792793, 10.085110252669084, 14.796536859692589, 26.70704657773845, 10.363925041392015, 8.711044678955643, 16.254527906636998, 7.339675563900379, 10.649569168161399, 4.298801960844935, 6.342677391599254, 10.217571970879584, 9.30330459966247, 11.983044527862761, 11.3459354053755, 11.115418554269946, 7.409565279794625, 14.808041105579337, 11.353992509723778, 8.167288648057687, 13.562357933033242, 8.160577237052717, 12.245543750926588, 26.07004931749055, 15.20122018388506, 13.271118394775517, 11.972527080547593, 14.798416521474886, 10.771891616264185, 8.204802332953596, 9.78490386529535, 11.912998819059721, 14.981929410250675, 11.517175006408367, 15.479800185751936, 12.768695687645389, 16.83399120366999, 39.04211177757026, 17.404135046255416, 9.919634543059068, 12.828815973403879, 14.123095164394432, 35.71754201882236, 24.9028504081994, 13.742455203250486, 10.059421493788399, 20.859929996448354, 10.828779739723911, 5.760069872160916, 12.16169082263511, 12.277188892452344, 9.967169768053505, 13.995965527502811, 10.199567128708239, 12.48525805793513, 7.084752551471761, 11.548206585813338, 13.17801134185732, 10.745074911878412, 13.572144641194276, 10.571677895709813, 6.023314119808534, 7.40524418973688, 14.224178379768555, 12.520643328519219, 18.617147547769857, 19.988850496225258, 9.602708198797409, 17.19842677940638, 6.304193325653224, 14.671452605265541, 8.242015500769062, 11.662654545000272, 3.6484319874004125, 15.96768552328404, 9.41980338880545, 9.302238293236977, 2.7293671231292915, 8.813970467499457, 15.345617119599114, 11.300822817393263, 16.96607903207903, 5.563277282615257, 11.47388767967651, 13.698795626920987, 7.731127824439273, 17.369883480898185, 10.15686059629695, 15.632461359790309, 14.14999981969977, 15.17003517714761, 23.22577106653792, 10.554410425622791, 14.114773093312419, 6.555949189666959, 13.79704824156764, 13.38717391933547, 15.551235470956058, 12.563953810875404, 14.243909128341228, 11.86083793000015, 14.915675368880525, 14.181816663142282, 13.617163667265945, 5.645626478294389, 16.0452064349731, 10.778959594155413, 14.409460590828058, 12.76030596715129, 7.2667041648052875, 17.09496871989442, 16.332212311716486, 16.96814301333342, 13.272463845301472, 29.339633236825694, 40.734621414113306, 11.904395060138988, 12.792421921650176, 10.490202118079456, 6.866643585576056, 16.38746418880397, 16.64728695910263, 19.984484195736325, 21.2558248518767, 17.476808306628957, 23.530906876601914, 21.968646015422447, 15.649164215864207, 21.25572207272999, 10.157426932761455, 28.45468464376985, 13.92497564455436, 10.966505017368007, 14.343641344796222, 13.643879643640675, 28.58683000839887, 13.587853467239748, 20.96135780722545, 2.690186352177862, 16.654050998406706, 27.204523524525978, 15.933667675873862, 17.20184772521379, 17.234553835100137, 10.769008470417708, 13.560112240651595, 18.67924198573185, 41.514332349023505, 11.441571000497651, 18.272282632400277, 14.939286199911203, 12.662093819256196, 12.305956049337317, 5.929420277886118, 12.103022082453213, 9.939349063513992, 22.869333800394614, 15.234622728232619, 15.279166775493936, 17.25343476120505, 15.960476834244893, 14.810295804307042, 11.81686937235235, 14.698212276250315, 21.09611893118959, 23.56949816526274, 14.097492937126477, 13.246814580260885, 11.110908511527231, 3.7033031032327046, 10.835006488797857, 16.372219929036106, 13.052384403544577, 13.669209141554866, 27.75812773771695, 11.018049274255159, 9.847892597701547, 12.5965787323913, 13.312745213544842, 9.117813924998558, 35.24624836927778, 14.534603034710392, 12.156600646465149, 7.4094310914344055, 9.95580712902247, 19.580231890658375, 12.991681357112013, 11.824486596643801, 12.1023432614599, 11.181052253138326, 15.297240289047934, 24.73370498748718, 23.54498390474293, 11.124082273468828, 15.52714945721409, 13.224273781627103, 13.407765594769488, 10.057398482194133, 8.693593386072365, 11.149620871807691, 12.532169081576722, 23.003605250772893, 14.655355738481397, 10.127959766554971, 12.19411891407734, 10.828824318020072, 11.016697385605092, 14.116109893825081, 7.354591821614271, 11.130694220137213, 18.855786707975415, 10.679507859963, 13.334829309665226, 16.918527913785795, 14.443896336059879, 20.178898713495027, 13.497351018993049, 12.416131978109606, 13.916473425807304, 12.348841824521521, 17.296565180137094, 13.587888019496434, 13.569253478060753, 7.881115950925612, 19.588852024020717, 15.099125881383724, 4.289090437928488, 11.135350869383457, 11.508689005772572, 15.51611561159952, 11.858978386517567, 13.357926477758122, 40.47054638565195, 13.21545035399383, 8.351602202563198, 14.91614056490465, 8.145321770152453, 47.83774840979582, 13.700830555512647, 23.78906770761236, 9.152118140873439, 15.71342105280341, 13.172480709192214, 16.347677897782184, 26.694886087596625, 14.839842297491902, 15.979264765463288, 12.848571063248754, 13.12319735711103, 12.223739344973614, 12.269336894185965, 16.10657087568005, 15.235660477779666, 16.6089088264365, 12.941353944584826, 8.897358410138319, 12.595625226049268, 10.27064920177455, 14.096546775576888, 8.549678412003306, 11.111555560183426, 13.833628633492413, 16.337184986275457, 14.30607969857994, 15.16670403044668, 12.55267075574102, 13.174631095476393, 16.07745978601777, 15.260107106386906, 9.478331076349384, 14.433741350599863, 9.01129615879931, 25.592182723732787, 12.492082371862482, 11.356767111440563, 12.090929171014915, 24.723984925119275, 16.709257642374823, 13.50048876637638, 9.22305634882833, 32.060789489155205, 13.370508668218546, 14.205746055238317, 5.763166706464486, 18.73007352177176, 14.077817008635295, 18.677667295867472, 17.154598102800787, 46.11667943741041, 13.24474919044552, 21.51653590726533, 17.43980037747423, 13.115298689578374, 15.16321950629884, 15.190725388360171, 18.10199540898408, 13.635302223509465, 12.476908318057058, 11.743402653020176, 18.608322142990126, 13.055964940981777, 15.346615090067226, 9.034168139947907, 11.450221119657396, 22.7049337680727, 11.09060229999108, 12.203573848938323, 14.00758285297361, 21.65666327576247, 11.380799941942293, 10.202587756056865, 11.604598564162695, 12.905238470831996, 12.167005228026337, 7.618626918156033, 14.520975551591318, 20.03502960248008, 13.619083853959939, 11.543655544627809, 21.909925518925515, 13.899574638970742, 12.520015588820733, 12.94071903381443, 9.530382262843501, 11.278348692656996, 17.52532527001422, 10.159619098118583, 23.177216558904053, 10.965586154772096, 21.280207234904257, 3.1952467540972482, 12.33662136216896, 9.50588806306064, 10.224088809761646, 10.493837672357692, 8.078537209750587, 9.108044476750322, 8.937107201135007, 10.391673323707925, 6.031618945051104, 10.658099538351829, 7.810239132759797, 3.938234180019408, 19.385881787764742, 19.07384328134476, 13.466635586369978, 13.226984568797802, 3.1948688147814654, 22.716508344692713, 12.106929592249616, 14.38789144612697, 53.43750456681262, 13.989261254461905, 13.447321962737794, 9.633528213354886, 13.84744125174294, 13.360945423173593, 8.054174730426617, 10.128407894578013, 16.52411196241589, 11.755304793813542, 11.953251748702979, 15.697971128531597, 20.587330077086648, 21.772668830395617, 10.366783595725035, 8.861591273541274, 11.018612975300865, 9.471043840466153, 14.685248479636497, 15.101353727338848, 6.932049073129571, 6.954063725586972, 21.477803012290842, 5.614239022703902, 21.973202309905112, 11.914286178643584, 24.272311141134605, 15.115567551151404, 18.24254319667541, 25.873742317372866, 15.736136873718142, 16.612386133638193, 9.570878078116419, 13.932245918416791, 6.968853681825423, 10.96216061971949, 12.667163431168074, 15.173830638580862, 12.146516238940896, 8.526970507733974, 13.863277129271696, 17.24778135297042, 14.177609866105099, 12.247320989639773, 12.749193343969347, 10.401432298468247, 13.231809776484504, 10.62422125442758, 10.435539565842266, 10.625228021279135, 17.898117104302923, 8.368411962128897, 12.422132766458379, 11.160281026589725, 13.270759948191815, 12.842865480296307, 9.649855720359533, 8.865720289155252, 14.706960281058603, 15.32322375336016, 11.815009556081442, 9.526521459367697, 15.268651976309402, 16.828507845265797, 15.520169183991623, 10.4923016050119, 14.847526449943244, 21.467393343621158, 12.548427092248255, 14.825655903343737, 25.64017282161358, 29.307362410938346, 15.506060537934978, 10.100530131590288, 15.687719287602139, 13.515956252854219, 24.993722185945455, 12.907531012931036, 13.104969793687662, 12.634218325315725, 14.006729507106481, 8.765820822899473, 13.008746822213734, 11.99764763523711, 10.43477710285172, 13.13872577446073, 27.041563528030448, 8.553580448175788, 10.234927414192814, 8.342328798414497, 30.326536496682845, 14.396121734017337, 11.781154985819523, 12.223805161231361, 7.776265661542357, 11.06856657329598, 11.382357446625456, 21.564886907450127, 17.924616199140992, 9.847544882211503, 26.63784821682159, 19.233083329438596, 15.599476931993896, 14.236852916105724, 13.06770187250252, 12.508961020051176, 29.36758467719813, 11.613332970960771, 13.028502086743817, 12.112640285564819, 12.582811430441362, 21.063335108611188, 14.064994637313545, 13.133832313972832, 12.385122038006712, 6.603788015081032, 12.459306687928146, 20.69049152103486, 15.076928273210521, 4.6356217985740695, 14.275342633373441, 8.739993685609733, 9.652066356350288, 18.17557238859791, 7.57178189035858, 13.048862284725638, 12.506920514219129, 11.794796428416783, 14.734499080345952, 9.874201332832808, 3.7924178360084753, 8.351973565090665, 10.004445433835416, 15.305957357602535, 11.268337678094214, 17.188490693765807, 9.533008511737988, 13.775650089568085, 8.49992758386426, 15.613918373412902, 17.540785492262508, 6.772005090742387, 13.121623221733344, 11.435906575684086, 7.69104991708373, 16.400875413962552, 7.038394686504861, 4.719684788757565, 12.008337588495296, 15.598886622858569, 11.26298877492514, 12.930087661717232, 12.837936281012894, 12.667966527247149, 13.451286975839926, 13.831841095838092, 5.069503155989339, 11.498884051433668, 11.86615288543474, 20.70502834017809, 12.479227496775723, 10.536908976501083, 12.830005665754918, 13.880615916762983, 10.153288071793467, 26.6234872227478, 14.821477149661932, 11.442217703769515, 12.404086637679763, 23.703191070367545, 18.355852241310366, 14.589469187675062, 11.120469365548479, 15.7431759247819, 11.86742375724887, 13.988447667434087, 10.758014878879715, 11.246724864651172, 6.970818001177851, 8.723542808356742, 21.19506786588266, 3.097436366633961, 9.515162333796093, 6.016875848635948, 32.95145505876143, 10.771409619648944, 10.978697708772673, 10.360289387093003, 11.058598968751982, 11.470811889278764, 16.40855415018384, 11.23712005767115, 13.174941690858944, 16.588076859260077, 9.970583683301266, 20.43341470517787, 19.981634299995203, 11.024028141186154, 15.4489401278546, 12.039424293394378, 9.597898476121655, 11.491598926408985, 8.185617270294642, 10.419418774733044, 6.745143703130443, 9.149781895534044, 20.46264403643312, 13.040899225728364, 14.092751771596895, 37.46523849699976, 18.60493584267789, 15.69216745754246, 26.209791427468012, 29.24668468884916, 9.800524621553107, 9.195720509101362, 26.59278352490589, 13.191159525934248, 14.333790609516274, 16.297795213925166, 8.368260982418644, 8.742759636482752, 10.053773255333114, 13.185525229451796, 8.16872603778755, 7.706360926464651, 11.328241327390728, 18.104601212512964, 18.203392790602937, 11.934889192048336, 12.508886075284853, 29.22707508133514, 27.477294178101452, 12.530769460954547, 13.927798218998063, 11.896377464262017, 13.204512116640597, 32.21623021990929, 4.307884926638956, 16.74234706239346, 4.517055751343823, 19.089989230239812, 9.712144228525712, 11.87742716594471, 17.06552465565623, 22.03172587522706, 5.195886888553136, 7.353595706302345, 10.60797397564796, 13.91961484581118, 21.788930966591405, 7.952473598684158, 24.384814106372918, 14.600387007174401, 13.259064539113782, 8.412663669663663, 31.494959624852655, 24.340804514521054, 11.917604048284542, 30.014960450986933, 14.627654559113285, 16.926292128580428, 16.303814913864013, 13.327254820745472, 12.918887265873652, 8.909537311773388, 11.032771898600682, 35.68787138348458, 5.810279967445799, 29.14476492556347, 4.935192445911138, 39.547691047046605, 63.50817517689704, 47.21862436883723, 27.652638771572267, 27.57326574183483, 45.128106310356316, 69.93027433458357, 50.1033111075431, 38.84620221365286, 20.414217026331656, 33.97478892632627, 49.29441939065837, 33.265190492943326, 8.181679299833483, 8.485675805230814, 20.575539969691814, 33.56842181666388, 20.681462882844524, 5.677774136884194, 8.814626028161594, 39.10644344071756, 38.583925781920584, 45.68429118439182, 13.82448853813848, 53.173593606084324, 45.14945227883571, 26.354667803011328, 43.86321048647822, 41.96656865747131, 35.62634817842947, 47.59472137178944, 30.426589123595704, 26.68454156773831, 48.76539311781532, 26.46053837123949, 15.711632703590968, 32.22887423014573, 26.21825438280043, 57.84724586518421, 14.071697289649533, 49.83815518296635, 32.11914659667819, 27.92836138811894, 24.9907201222625, 25.474082014552963, 30.906184327246848, 38.806143103638796, 42.639346737071115, 23.665248463658635, 37.28024644340007, 48.59161620093586, 23.852176929745603, 26.58703053553321, 37.00962061944762, 15.331200909470647, 43.20714582873392, 27.0737881842263, 22.4717994785155, 21.045621531289495, 20.005691032823382, 28.13735941823914, 27.55953819058695, 41.93869041716797, 41.24567155067156, 48.879985826265234, 24.208578205695247, 28.695966100213372, 21.391126995341235, 39.07956093382717, 21.847810812815872, 36.23067423804267, 20.232407472086074, 18.067771288238824, 18.9326508679891, 24.30537759654874, 27.115663984355866, 21.00042444976515, 46.011168345543325, 25.588776716512925, 33.870252100960805, 20.03938417877272, 25.931366186777588, 3.8594076719900072, 32.52955347633359, 10.00083319252127, 40.21774556304549, 21.779110842881572, 27.43044422489276, 49.01586586016102, 17.258833279896866, 21.43903944338294, 37.700110536049785, 37.01833846708846, 20.86882397046483, 45.200800648572574, 43.03903662894838, 21.33419116458011, 35.84446751610104, 27.430107105169807, 8.401692685555986, 23.14199255132265, 26.58153584069296, 32.90627088155224, 48.61276729642908, 13.966853165881517, 21.9568613776202, 8.313796958194505, 23.004834483788443, 17.53037579488013, 17.549523224181875, 24.804212561453852, 21.622928434388015, 23.622595800790645, 15.64097341921065, 15.491806426184612, 12.707374874652345, 14.531461776295973, 9.759125447314917, 14.875173295176369, 16.42366362757281, 14.091056756754215, 9.889046321881453, 14.835334760685003, 11.426875029985643, 21.000305001690545, 9.877507587066944, 20.637510419547933, 14.623093793033371, 2.8061492826432404, 22.772931469915225, 17.91515214563482, 9.288757734805793, 9.31623350918975, 8.92952073801277, 15.036841468504049, 12.595306125705093, 14.603804157587051, 20.256548984327313, 19.114551856656327, 2.868538502460937, 21.430938953601373, 34.984265484515475, 29.529968970941336, 16.884663563086058, 12.301227904873516, 23.95347862581176, 15.196821980032851, 26.591362620549383, 22.656054908925483, 18.375200215264986, 26.946159890195812, 13.90475191464452, 26.541565794223345, 39.41609103155185, 16.64131780949915, 23.6772355147003, 17.791983722055043, 15.290726234678637, 9.007505525517123, 8.79439491732534, 8.89638590979597, 18.070829687828248, 29.882293376725624, 18.318378749926538, 13.815968018774887, 23.338175152307873, 17.173946924119914, 18.082599100185895, 30.788009786781828, 18.803026611090115, 11.3404349734982, 42.73271646282157, 34.95711122869506, 20.20819056481015, 16.717640956038846, 8.612414976361864, 9.630451745505823, 20.952014116138415, 20.069952389844417, 16.764022186044468, 20.51157908371874, 28.823180866459346, 12.87843183205683, 13.969268992191193, 16.553780393136652, 9.656131564631233, 17.560324605842673, 20.974059967065767, 9.241492745746898, 15.668532896491444, 24.664993186320416, 31.015396697171074, 19.80514834789196, 24.09293750984599, 14.866932600861096, 22.988945526695524, 17.427097340330533, 22.67001462181609, 6.433075445429888, 15.002220887108379, 14.849364040947007, 14.54081167747228, 43.424657895619376, 16.73141258859819, 17.105459453639078, 17.476951073479327, 21.936037775078958, 6.832386006446814, 19.58812179209274, 15.386999205341708, 18.60292552946571, 12.864268942897104, 34.94413696327857, 15.376801436476738, 25.14408108224478, 17.486437347157676, 17.671810496487407, 10.495121596716023, 14.984542532107819, 36.194288012096834, 13.098613878871634, 22.631144027648137, 13.922779746255447, 14.668010130789613, 24.195308301898304, 11.719850308775962, 14.934047340731167, 13.524765802844266, 13.866080668061214, 11.731334429678832, 8.001628358219675, 13.257277645072971, 11.145958011478646, 20.064934705158382, 17.10313037986265, 13.804937614349797, 9.915243046765298, 9.21699716304265, 13.779314896203443, 17.50357983192695, 20.68999905511314, 14.571326054598995, 7.7333682715054, 15.850760174272912, 11.484768467669625, 8.174451882249727, 14.433897313204508, 33.19796840643017, 26.05917305775007, 15.062450275959236, 6.2878944583691245, 10.77979058374043, 24.002863339318385, 14.113922393782687, 16.291289764962873, 13.930371964321653, 17.252399603965003, 12.957681076780862, 10.547079976772396, 31.209049598183036, 9.960621695618297, 4.752144395881987, 11.12553848566488, 49.448422642172645, 10.918785186025193, 13.678805544036484, 11.309421890419824, 11.72661618060302, 11.153980194500946, 16.522714019912552, 11.456574088747296, 7.962826730630908, 12.608988571651965, 16.942426079254638, 11.066403762517256, 12.213614456903626, 12.404276098601148, 12.755145048259331, 9.609927043665719, 13.327855689340195, 11.570528782347832, 9.525937502094854, 2.133776625570521, 8.678262786659856, 11.424967676048245, 13.23899161627265, 12.174504210827482, 7.062756575088192, 12.322944311849989, 17.510281348929738, 9.965888987840124, 12.882573293325246, 12.820929016827904, 13.920380544313792, 13.585644884579079, 13.380428806224222, 13.039505649507587, 16.790120660107686, 11.971243499733827, 15.217301991229156, 13.769528028508132, 11.503195889964745, 10.840856987597885, 13.646755952691636, 12.681422035426374, 5.3543115200305476, 16.537856794762195, 1.6585809256286788, 14.311031032970792, 16.129440179279097, 13.724109139645334, 16.31185732740144, 16.308456409490894, 14.935736191591163, 13.628405863864657, 12.018287681000913, 12.146427014811458, 11.76210365869284, 10.655097831739361, 16.125548690609957, 19.304232953321186, 21.130108403306927, 19.925318500943497, 12.499174557296847, 9.869571885570158, 12.877208790468023, 11.516584509215702, 13.55568099985958, 7.942257069727659, 27.491220937172564, 20.102400388440252, 12.580219663245703, 13.433075001689133, 13.637526247040705, 11.319301142656792, 19.25658671296782, 7.297002286665413, 12.949230094107765, 14.633073566182697, 12.045702865365037, 15.999825202983285, 13.27198266615714, 15.411711696617871, 14.246122509316397, 12.490476067330293, 16.665599958242783, 92.96312332928511, 10.865285208063671, 18.859438645159013, 12.524108103592313, 14.397427543734672, 14.607709461838942, 15.159901564094511, 15.684473642648321, 13.726744528001706, 10.563613658613614, 11.652388896316664, 14.118759369395155, 14.259928345935778, 12.452537595377349, 18.18751946217894, 12.613290092461876, 10.52928316047881, 15.21552385814034, 13.504336303619823, 13.813065205986637, 30.969997739671527, 16.324060497615484, 13.354226958139533, 16.898727035273872, 12.474416741466047, 16.158556091295022, 26.921278178553, 15.625517424044826, 14.712641384322648, 5.87432060975461, 5.4754722650434955, 19.16086669327403, 9.480316424721213, 13.700120421245428, 16.988498326126845, 14.444271667247676, 16.72847857898472, 17.76174886112041, 9.933974894131692, 18.537725206007444, 13.804227279415487, 17.265382530421263, 9.482322415122615, 13.61425356291604, 10.122108791556006, 4.238282752628005, 23.825453380740427, 10.861033765744667, 9.378434521308705, 27.937493224970094, 16.500130797613693, 15.135694141374561, 13.899330847996172, 12.51895884809908, 9.055511046168379, 10.15132946624553, 13.180460233918117, 13.130033793438244, 25.522565031223433, 12.694585217795915, 21.605735171776942, 27.29016872883817, 14.937175469075923, 15.210771699581983, 13.618589530936896, 10.913029564343727, 12.816793920574174, 10.399552262349749, 13.378285313457477, 14.084685686212003, 9.55544625250412, 5.852739694545083, 12.576720269979196, 16.28645379073023, 11.255406669708897, 5.868464283723592, 13.713385738756156, 13.383132025245436, 12.523634932847822, 3.240311410307096, 18.761602235771186, 16.49783855510821, 17.040075816292926, 11.26878126106016, 11.344893400191738, 15.186496919220817, 13.508785011316368, 9.114996748016898, 12.709993159355685, 14.956262389419246, 14.253339698286245, 10.157743053983896, 16.049909738809077, 15.130498283829338, 15.523091237292318, 10.356462344327326, 15.23809816812874, 11.330745023617004, 11.049648551507195, 22.103599404539306, 11.674647758155956, 13.484484355336338, 15.01130204333617, 32.997577611379455, 11.954520504595243, 13.17941021315302, 39.534159176488174, 8.59227339554151, 12.091840074479592, 12.056466665232202, 14.42181066760994, 15.943060745193225, 18.466387044693672, 11.069009945449917, 13.058195698353607, 13.472132490225198, 10.774630415142294, 12.366607719914692, 10.455104555354309, 12.23419756340435, 7.48414120470061, 16.091609247033162, 10.175516284558674, 14.69123576181834, 12.093351638792122, 15.112249793252522, 19.531017955162206, 15.319556966128426, 3.7249827911464393, 19.913198965778253, 16.870381302697858, 10.605341501707152, 11.536817813767792, 9.416859300467229, 12.590979250019034, 12.732377098813892, 10.030731463260837, 10.687816467867794, 8.296462689028072, 8.213410418390007, 9.674721551921031, 7.999280946592007, 17.604476313489176, 12.088815449900974, 6.08092883303823, 11.693839256916492, 6.6943748728911245, 13.091612570337466, 10.56843434882318, 12.513337112712831, 12.476242386672498, 9.523435486048054, 10.827698794613836, 8.291175062061992, 11.033332322552493, 10.206068279014833, 12.898284370834368, 12.631688037732271, 11.512358484353062, 10.765159703976382, 10.769749382069858, 13.311816588416367, 11.751095069417346, 9.173620058198752, 11.870984034842012, 5.6450942772440245, 7.9563563936584885, 9.502682374771773, 9.313948390429779, 11.354820414579672, 7.985298537016729, 6.816937514187922, 13.215964301079572, 14.191900186654545, 12.844299995630156, 12.207381781989072, 11.246197517540562, 11.37531089529841, 9.34700706788173, 23.024066738816742, 7.734738855048493, 10.290772387476828, 10.079769777810807, 12.090890180353414, 12.460566801307904, 12.043834370364575, 9.980461340332171, 6.756990660819619, 6.905363655557788, 11.59185381856706, 10.032920552970797, 11.611061389016982, 11.3983604256819, 12.565184282951314, 10.256859408876956, 12.873590429540332, 11.086723697802912, 10.809158531809636, 11.045148327427372, 7.369813608611552, 7.051053195926757, 8.135458395609461, 10.639572697152731, 13.485301919710238, 9.548760333394204, 10.30581099895505, 12.922190903081047, 10.803220309105408, 16.85325134803314, 17.13800220543741, 6.012083862102539, 11.100582918470415, 9.136571839037051, 5.232398127108653, 8.302805733393086, 10.04568020333757, 10.947381710244704, 15.45760339531719, 7.687492465739823, 10.6664307735113, 6.346023391641032, 10.041023513495002, 11.522415709711865, 12.534239642302143, 10.947272160320903, 11.840512852870805, 14.816817247976187, 12.855685437244135, 12.010674256171667, 10.479828699587692, 13.189420157455057, 7.059497745305648, 10.261807293453487, 6.79837272124248, 10.623479772054898, 12.973064115971036, 10.572799929545756, 9.856217574585434, 6.1979639427922635, 10.741507625552517, 10.333247079587052, 11.686326195264265, 10.1253952917052, 6.823108753071775, 14.637043805405984, 11.911954603865173, 12.813733133290508, 7.026462843656758, 9.715291958207896, 15.516006815419384, 14.112784070934223, 10.461674553553417, 13.802901228860806, 12.080074128575419, 11.47053235034099, 7.066532677406624, 9.398707832264115, 11.308510978377836, 11.530364981206533, 9.69804719295094, 16.825331274640515, 15.305038069353726, 15.650287478946924, 7.988060089495261, 17.374787480394524, 10.42898820511428, 13.074935233329317, 11.992856113800746, 10.84344588929303, 11.923303820318209, 7.744194294331837, 11.060553689129305, 14.450284342248743, 11.026740836496012, 9.855518345664581, 14.857404071677088, 14.36963457156878, 9.649668646369772, 12.392781624807936, 9.121242768864622, 11.417141121737023, 3.191550072721772, 4.594509017895472, 13.165371255650662, 11.690659353631105, 10.929487854578005, 5.080796200346435, 12.879974039763123, 9.845412636874386, 10.596911752944015, 11.122328482079007, 10.995365767439427, 13.430953671824055, 6.786670331768469, 12.842969372989312, 11.903206776574235, 14.17285853516967, 7.18719092916389, 11.944786094453248, 15.284082207152892, 8.829025870088286, 13.333694589414998, 10.30865218851072, 6.399639422404348, 5.9948365862482245, 10.050911182215529, 10.173958925106318, 7.388338216879066, 13.708583465490667, 10.47996296860632, 13.895579837313875, 13.162186899169312, 31.548279878310943, 7.5544482349657605, 26.77498301548559, 10.245620058562007, 12.203848835066607, 13.666590841889821, 10.334226688506329, 10.834220631785763, 12.664044541758557, 25.08564092973303, 12.168415324572818, 13.108928375276644, 11.40048018574155, 10.794274773534712, 14.286078159800297, 11.659669479152353, 11.795560622384146, 10.798079029363429, 14.553001476685264, 12.980082205649376, 9.088485914638222, 12.535800750528493, 16.667817877597987, 10.844642303488161, 70.73084434594062, 18.952318282364676, 12.10440786416424, 11.865624512865097, 9.344922656777921, 10.178018603424762, 11.794397202387191, 11.630184426200817, 11.467059800459523, 8.221321971862933, 13.886366478445005, 6.362123978618215, 11.936443744489402, 14.500556447218646, 8.65014748024405, 8.470931694724008, 10.38478679736131, 11.788953468876544, 10.865303866387615, 10.66321369246222, 10.420355412124263, 11.835125637284111, 13.93868288568838, 11.250095533249077, 11.801109939504872, 12.428219380209384, 13.033006449261089, 12.455561861126753, 8.056147770832064, 14.61488958741103, 27.045051150245808, 12.738472503168701, 13.212527636379926, 12.018266549407613, 17.706281042792607, 10.714721653501721, 11.853779922072958, 12.983654814244874, 12.197222610757347, 73.8352372360096, 14.804240552037577, 11.825657329086166, 10.417639927051878, 11.979983384832362, 9.184049659490837, 6.404604029931569, 14.009445005426103, 8.625448022835739, 11.088662127255464, 9.723035416269868, 22.484122785293817, 8.854303190031734, 11.859257982497377, 9.430492027016646, 23.12437874211222, 16.65281217155027, 12.592663849152554, 3.6187456353370764, 17.418270669043466, 20.75355927082177, 55.30639518951993, 26.17634367618966, 29.054183219232122, 23.739416472645576, 20.11894834208844, 40.37941032887599, 14.732086975674429, 36.60634989856953, 12.253278559418773, 13.54377453208193, 26.992600319061935, 10.905305437662877, 9.306944959459349, 16.066878700670422, 16.055908204717984, 14.150702535366149, 9.470315861647267, 7.684403808490807, 2.663274129415341, 15.264689630598987, 9.327892945432865, 9.362581219048487, 7.650320870893044, 6.360839127294972, 13.150677379555953, 6.5667373576989805, 9.4153847576422, 9.408878272129062, 9.625936292361743, 11.304733887491272, 12.138583327470343, 7.9310052097206745, 5.437947113730213, 13.360888649790319, 11.710617419156355, 11.184624694005983, 19.424456030248326, 7.494256200476629, 17.583083336522996, 17.626957120625246, 18.995884903337696, 17.69991406508985, 15.670782397063633, 17.551438753749615, 10.221941998418265, 34.174033880343046, 11.681718678864025, 13.377862188657732, 13.429066774724761, 13.596187370965987, 13.241662734843489, 14.186623948544394, 12.585398669722343, 9.763926491893734, 12.334201769435749, 18.523558479538533, 20.381022494716994, 13.258958935307037, 14.233812143858081, 8.216413333607345, 9.50051040976567, 12.278350051725928, 20.64361622389478, 12.109850100253835, 9.687013142187524, 16.745623235162526, 14.624784737106996, 32.023672486136505, 16.923047237143855, 17.866914428406297, 13.13526462106529, 12.769903425564054, 15.651018708798544, 14.746046309401468, 13.89700364814437, 28.08743290489485, 25.53248085826132, 7.69450674471469, 10.3923512417056, 35.35676083875868, 11.55245488105168, 8.396959469470684, 10.009999117092175, 29.62820188450181, 11.599403913302917, 10.734315218229622, 11.276963843064173, 11.079426036439195, 6.038604047370173, 20.025992086173204, 11.392869391057026, 18.32641549932807, 9.01917574958004, 13.05379453726952, 10.905150381043104, 14.053332706277581, 56.42267551878474, 77.58285799326126, 77.94890785951472, 84.21986494007082, 55.137075818221284, 32.756708719028566, 95.89455348770302, 51.89093009873326, 34.730144963555716, 64.67452630450683, 18.504087865429533, 6.838189154752645, 17.496999040834766, 10.737414590420757, 10.030727674919437, 14.605417246847313, 9.937144535742311, 5.907137728000145, 19.56152965282729, 14.629485883294926, 11.66485026842692, 7.962520794264213, 8.505290600308683, 12.353591502462013, 12.534847991193498, 10.907488307349812, 9.29598568186092, 10.630602251928554, 10.928552884447111, 12.086626941769927, 13.149629716257875, 14.510378540362563, 13.198462223095145, 4.3730413424170855, 18.620496570594867, 7.13126580775181, 10.076872326889475, 13.123295629266957, 12.225836561817285, 11.843382194529902, 13.364924660362794, 12.04680427074188, 19.76001949030031, 14.34789093035771, 7.560136510316256, 9.601532645531957, 12.91591377800308, 8.578554393065327, 14.420153808112513, 10.001430989923845, 14.930105153478484, 22.061475772249768, 16.6098620004007, 4.048764301248496, 11.50875228079512, 10.537543610002528, 7.5250487338531435, 10.260427633210586, 13.46540680632253, 11.337185998871858, 9.778873791116963, 30.684550456950774, 18.274019621017896, 28.047121302036746, 12.648746694429585, 11.880026014262956, 11.875722674424527, 10.643877533482758, 12.514435524654315, 28.942864591496757, 11.222348470157295, 11.166083706314852, 10.497465030880427, 14.511720383220156, 13.014152776056017, 8.584581898955879, 9.161516660072408, 13.36470136859185, 11.835757296102274, 8.866630621166626, 11.061888325886043, 16.836357101109595, 22.035823979535426, 8.615569892626045, 11.566203778218798, 9.657389524243964, 11.586367394829812, 33.11023986561629, 39.165851531002566, 60.43039480943892, 62.39250621600619, 40.286343542266906, 37.57292610779602, 79.57606680353817, 66.64486634986476, 58.31295789642516, 56.07663547794544, 6.558156071035319, 13.461903137041835, 21.843748778016014, 9.406962829504932, 12.844430184530117, 10.18410754780356, 18.049678450163192, 7.934383658775452, 8.108475223293402, 8.110973604151996, 10.492091812200108, 12.230279460552467, 7.65547547354888, 15.221995833541015, 8.836890437870066, 8.996178966292392, 13.857012244502096, 17.006897856935137, 14.734470965461025, 13.101233100799499, 17.20149347515657, 9.793071945991029, 8.30004057024527, 12.391291930834495, 7.45243312866137, 11.906725251823415, 11.41626389405801, 12.809834761166634, 10.212323704053533, 14.75486535337448, 22.781924158308804, 12.929331163384559, 10.353757511222897, 10.356836197706167, 9.847968095489373, 9.415269635422433, 10.563888649315707, 9.562345302037638, 9.410262245904523, 11.374622482598909, 17.07684106153565, 11.727710368225797, 10.246765313127142, 9.661962767581578, 9.18006426385904, 9.110688372822619, 15.364120720131908, 10.040495092914048, 9.683428700124837, 17.89060821824901, 9.750084343188925, 18.304078377997147, 17.564335234521028, 17.536769382733205, 10.592147794367126, 11.417389287828792, 13.822728784431918, 12.349548607859152, 19.105613286620645, 9.481338078167074, 10.209356277888443, 4.007882436344813, 6.19329126384511, 11.535843040129802, 11.976773184884655, 10.358022865292604, 8.646825112649417, 20.2327892078267, 18.766048411019685, 13.052230609636176, 11.558094905240548, 18.835189422322646, 10.260846441983652, 8.54355244852529, 27.066113487683353, 41.94060975898352, 58.141469497751466, 19.77779438391957, 36.25557117779881, 45.4410632322259, 29.619101864335452, 11.339899584969725, 56.51876981498034, 34.87787167858912, 6.385383157483795, 9.02379920350647, 12.234259938977432, 10.175925073159336, 14.679910620834885, 9.357518983404823, 8.583411678664627, 45.94609123783852, 10.624874723043835, 6.881215026526633, 10.294921837985017, 12.349795343596146, 17.104786552079077, 13.073479674226009, 11.990901609060806, 7.901794269126212, 12.772355142025713, 12.497689407377496, 21.90941716666487, 9.312829138581328, 14.719902577461799, 7.576096905461963, 12.71932846493062, 11.673291012650886, 14.285685230447227, 10.713006987654587, 20.39049336018465, 9.89004830058143, 6.696156637034799, 8.538875159030905, 9.656779557189237, 5.060901460189029, 2.7281547872486422, 8.841534213531, 11.417284214032811, 19.83015945285726, 7.6772460396321245, 25.726930575994725, 2.7870120177696607, 9.704362100583523, 14.580383365589746, 5.974754591246528, 7.677047184551606, 12.636566835850708, 26.508951919315905, 6.708065413384838, 10.631286592365033, 10.452019983198584, 14.058126054102877, 6.096115281036857, 12.323741643034111, 13.75801323680571, 15.95634492590089, 11.394992221142221, 14.376784261873317, 25.302544602338507, 11.767667828552755, 16.47342421252638, 5.186771579638392, 9.261137607420238, 11.559561700468059, 14.839164854063224, 12.997987028916597, 14.217381727093413, 14.563766284292646, 15.575092937770659, 10.42234507803771, 11.981550332501227, 8.3709041756722, 8.746854872414907, 13.362456593730377, 13.989799366370569, 8.62588712398712, 12.828050325918955, 11.120596449440189, 10.216331171968879, 28.302295379274007, 15.932284560517457, 14.654875250892902, 8.748864318497038, 10.23130182066046, 8.38367719005431, 9.270893507091412, 5.170307724057697, 9.289281463595179, 7.492036195427399, 14.800359525289796, 14.610178330722318, 10.268251723948715, 16.269597700164063, 13.244537923393187, 11.167592046465465, 13.71149737576866, 12.164976124122711, 13.130570678556722, 10.540043073971711, 17.261616840588136, 27.022343466957377, 13.85625880411933, 4.391487163162576, 10.884875152181873, 4.332980958726724, 15.058069440101523, 10.228308585485266, 12.602519073541098, 12.37821368334847, 12.720643509433405, 10.49225216912749, 9.58182907466859, 16.723216781002293, 12.793854175936062, 10.023177908743802, 14.64371915643027, 19.695757505145767, 14.096395086371437, 10.908168698846186, 10.141582321764904, 8.684606901774757, 12.213120268169904, 13.97183461830055, 8.29311596784853, 7.0543411484241565, 11.102991309450067, 11.663322590807883, 12.150163133409423, 9.39221784941638, 17.776777008973134, 8.473343758876561, 11.653176015968148, 12.625944859432575, 7.716357849527299, 9.115783790709795, 10.676382128703647, 13.659688443310507, 12.35546868940027, 30.23040630782339, 20.011199152370565, 14.457059829447699, 12.869910904063858, 18.257520927033106, 7.706620309118001, 14.83150279849854, 11.922015262580139, 8.912988512954986, 9.710157987998452, 13.558789239407362, 18.242769436601364, 10.088683040505886, 12.200969298325383, 11.514707361033285, 28.517917604703975, 8.76393523252519, 10.765051419405822, 7.756477578018852, 9.097419444880261, 13.779461029035527, 10.095549725084473, 16.628145928086795, 22.964635535539422, 6.51009548881917, 23.4163804311948, 5.806011697483598, 13.880306944800605, 8.099014924792305, 8.589741533277332, 18.88069917105412, 14.087772585241026, 14.26032658348239, 14.003329971873187, 10.574197350281494, 10.603569906988067, 17.5062653877352, 11.183448008732636, 14.561362049053049, 12.452608148492914, 11.651202452194047, 25.486989131339666, 12.588338408281057, 12.076198608867843, 11.437835941277505, 31.214189080364072, 10.905991521197961, 8.13523536273521, 11.70793493384916, 11.837279068609162, 2.8132985614827484, 16.798420251767883, 11.883685434670467, 11.190616339531477, 11.256103368498245, 12.26161590229989, 10.621091745236974, 28.771121783084485, 11.467329238955136, 14.111433721310954, 14.79570312668061, 11.617235314436167, 12.606904465338422, 27.782303533590394, 13.937532474725929, 13.385502374566952, 9.708864876531223, 9.751705736104054, 10.268802945615933, 17.414931967606176, 12.249433008708955, 10.176328109884606, 8.264235685081966, 9.089344274539553, 10.248528664675236, 10.58711953890015, 12.65768790734909, 13.247528077698247, 13.254672024930272, 16.250516703023667, 12.929606867329378, 12.304275303928705, 12.633060666108777, 7.91844959272185, 9.331625962583061, 12.865101902770332, 22.512579533525457, 12.822541298122392, 19.20010163977224, 11.85706013716997, 20.174113657648682, 28.01137635975135, 72.75228652635151, 45.032026893325494, 20.48643715772246, 64.16067227743876, 11.82380067366904, 32.96776648351649, 23.034599294212942, 35.257635830140316, 24.845409127987637, 51.178800345701305, 25.792007045627656, 28.178484910985635, 45.1305146227955, 36.254404864566624, 43.66012623211885, 28.249054911742775, 28.16542172806589, 16.765827694210685, 9.796997890947496, 40.00092456659836, 12.159014710091377, 30.543472488855667, 32.64834979640242, 38.527637065042235, 45.086219562042686, 40.83571324564991, 36.42297572601154, 28.104945672382758, 14.551032583779104, 22.897000415395116, 22.634500839692656, 27.79263327026806, 28.07707077640319, 3.7211879511124764, 39.979713507093734, 36.94327246381291, 64.98579357484621, 31.53065299515301, 35.27054492470197, 53.020953697144776, 12.691661466412485, 43.92341370634869, 76.34292419275809, 27.343418707555752, 10.506128621496089, 18.968294597087716, 32.2455216501335, 23.486701801146268, 36.31938706403974, 24.093029854609, 24.141293696783094, 21.371591406158952, 25.06843896924332, 38.30787417919771, 27.48496962267607, 31.083655000650953, 18.758278798282895, 33.752195295610896, 34.478184010996195, 49.45277874379842, 32.76498655687914, 16.694964409822916, 22.63342085565513, 23.1838541875661, 36.70683237761264, 25.89669695671172, 37.4078913235887, 23.373430100944802, 10.458033722256644, 29.219873231826316, 8.660619241992181, 17.969325769575775, 25.33296826218419, 40.86323389978613, 49.749365204107875, 33.25923161261111, 26.573365694065057, 10.40662638092901, 31.637350396235462, 6.838191283132069, 20.873014832787742, 28.40566997485914, 10.212593695730785, 25.512317012626475, 27.54363785524799, 17.622584276258703, 12.917768168209506, 12.453989373954485, 24.491040297731534, 21.805654691616873, 18.4762844843624, 29.050806839015827, 9.495643626694461, 16.86453829641452, 23.13840680174196, 34.59019729303867, 21.649897933682272, 48.139071123321116, 31.690662088655337, 23.362587156094826, 24.39715529129207, 11.62099675869275, 19.952551718990026, 20.285151363688055, 24.5427481237983, 22.926783379293393, 29.443942004623125, 25.764279424134372, 26.66372868055172, 7.900059782005432, 24.368597486933357, 13.73929746430516, 18.172639048043457, 29.078695815063835, 16.569503511600487, 18.64777683874269, 25.1387345959596, 4.756348924573864, 23.7981285330167, 23.118509366622366, 16.423573715757925, 20.457876778, 3.7215879277021093, 16.764947453718488, 20.513414366846142, 18.129644813839192, 38.182368918662995, 20.707694278416803, 22.860826658678445, 26.39980811206215, 20.791546896822986, 13.678786301501924, 47.214887232349696, 20.187555593013794, 18.186555546520346, 14.123836989271075, 14.635870736841708, 31.350497156161904, 13.62613614769274, 21.356313030130057, 14.700854297554507, 21.841796897546896, 18.063193764275344, 14.133651101650322, 12.226859160206464, 21.098122067073465, 11.016432369102422, 24.367140723486557, 25.991083099992533, 21.801809271954387, 17.393796801272348, 22.552603996321626, 17.909180960890012, 16.542584450207503, 23.828579784120937, 30.90698410572629, 39.23439441684049, 14.249330165199678, 21.635502952402923, 4.552205083294836, 12.757751104011035, 16.253790053244792, 21.100535282138544, 13.988215516958768, 58.04203260827195, 23.01650650961526, 39.76601484554029, 35.571760743684656, 33.26302306547031, 32.69488311787748, 47.542448996437, 27.68685997397319, 25.028880387242623, 15.588908350957173, 22.956750977651524, 18.052713764761968, 14.401311654643498, 15.42356137007987, 11.948701911461477, 47.43999436485612, 7.286817951213946, 15.96650499410365, 14.50836016420028, 19.22921654490154, 16.678737948178245, 11.873332204157952, 16.500361480003928, 17.368917610751815, 17.643089587098483, 11.271634634699538, 18.67309869929692, 12.691157063943189, 19.291752215045403, 11.701615226069798, 14.261164104510646, 25.04688701668466, 16.91044155191214, 11.403626263207242, 32.13190943635566, 24.26852290276015, 23.875309797017394, 17.03190284804167, 8.85756584125925, 22.67728267055865, 14.492771461992113, 19.655134306738855, 18.800849963402783, 11.294548644472055, 11.904251549445346, 25.609800296680454, 15.680753810953515, 7.197338261051189, 14.374415249430363, 15.454018962836843, 7.470879229789457, 13.022587952963256, 8.309133421448859, 14.232314504166277, 18.243114962456218, 20.172676327188896, 15.241852344384855, 11.471846661492993, 13.07229519826765, 13.21298539555471, 19.9503468214605, 14.474025753317317, 15.939636382045078, 11.363371235563243, 15.734884934953998, 15.822269628191775, 12.096276030879162, 12.29040400883086, 13.99933177596053, 12.617256459328276, 9.488051840340242, 14.66576265512512, 11.790758615343318, 12.342839414730436, 7.520249003204471, 9.594852307350441, 6.821249057187096, 15.835496880474802, 9.932317098593455, 5.96265381154417, 13.660439094829412, 11.394232886953661, 14.306792600273008, 11.03026843961888, 8.137799785949753, 10.67381441017702, 8.317522932046888, 14.88616286486968, 9.837916183797352, 13.571310261118306, 11.18995106720204, 10.545102052887627, 12.729194882937668, 10.120639332655939, 8.700561286309535, 8.176702363410492, 11.710816183275167, 8.782680557294364, 11.413339459910475, 10.332146360406336, 11.554832656878233, 6.505557029739948, 14.656186592046637, 11.461846008913989, 9.717407751903362, 11.324858899872813, 11.734768424968745, 11.227497767073736, 16.50052473432551, 2.545608407194744, 2.903808608877192, 10.552978432993097, 15.278508200404014, 15.819178668417457, 9.262003204126035, 12.173384855176385, 18.904675864048112, 16.20473209911726, 10.744579576643153, 12.922523670161555, 11.49294572402532, 15.069032229358534, 12.87638783044393, 13.846179583152598, 27.952259297638953, 24.36362136382692, 17.550548395277037, 10.637081785848933, 9.741136032067942, 9.556100466874591, 11.325300971987396, 13.42714050207929, 26.00440469149077, 13.901607647602216, 9.38358598547662, 10.53223244761764, 17.679742602985254, 11.58249275417444, 10.148389923616946, 9.553155675849757, 11.2632123296389, 10.333926934970767, 16.17000955965894, 9.893834554675344, 4.5478849606723974, 11.860125539780434, 17.389540525724353, 9.571240839386492, 12.269606839883924, 15.537976782115528, 13.440035780559304, 10.565921237032441, 7.105071413566564, 13.163841576357292, 9.693465688681703, 25.26505030316882, 9.734921976116562, 7.225919344101436, 12.014167076258545, 10.276661296714119, 11.704273090637221, 15.519608777585729, 17.95300631557984, 32.83043296803212, 35.72466470340313, 14.280739355834191, 14.068456515243223, 16.45466092063477, 22.281483298530187, 10.77886812915501, 12.787351967296447, 6.435987628473632, 12.796748867352306, 12.092645454887984, 15.132564253204352, 10.965199937377612, 9.740995386222748, 14.151903765141482, 21.526878533794253, 14.29791631208339, 10.782240511875338, 13.188632516364706, 14.51690685110667, 11.766027791072935, 30.01897120739672, 18.158184672942113, 27.48001910092443, 18.2409766643554, 13.239864083270191, 27.895589792574064, 24.839403777702074, 33.971833424955676, 27.300196076527136, 45.840581046834146, 29.006404771482256, 9.4681279587042, 13.611002742075527, 12.893543813460514, 12.674501506260581, 10.251271684834656, 20.292947808276907, 13.610952511200454, 9.096988636184008, 22.265631351009777, 20.78742455910489, 14.476657494585297, 9.3447131402837, 10.642864488233752, 7.794475253867879, 16.33673902615945, 11.152166445834128, 19.722756224546, 11.03327510206723, 18.273977693984968, 18.800154088241012, 8.90079855546027, 9.477957605044066, 14.290785413829758, 16.48283201382849, 14.721994475696867, 7.02978969974733, 6.2265142029508365, 14.451873772469112, 9.778261330880538, 17.69072851385837, 11.369866724816564, 36.42691622010065, 8.894075118826821, 16.89244721359427, 10.952533822026522, 6.402257339460115, 8.608997107035298, 11.981627959075196, 7.100422208381357, 17.79687097120255, 13.757463537148483, 16.307922106831935, 13.77593213708134, 8.644577855787698, 9.019724882043421, 16.22392282104338, 34.619996480806755, 13.562584220060671, 18.929562655780423, 11.045116415879276, 7.689673001634925, 20.33245434469498, 10.829464262662494, 10.106039855563761, 22.226196634151062, 13.284653488410054, 10.489466915609057, 10.748193607549574, 12.652480360060503, 11.042158353203268, 11.148791068326537, 12.616685951242845, 23.245110721016538, 19.069938653940227, 10.409700765804393, 8.711435291432096, 12.89244033177608, 31.747273030444674, 16.22088010845364, 15.112277838720999, 12.674488319550818, 6.8662006184034166, 22.98325019450063, 15.002797594667534, 11.887385043108823, 14.398561151052242, 16.10352627147958, 16.232380007403265, 13.262658829331166, 11.585669528755556, 3.255208202820832, 16.74322936670948, 13.202242743360895, 35.725606875451696, 9.725204964079397, 13.059310405450201, 21.39761336106347, 13.460557766809117, 8.545339622473087, 14.390719589129962, 21.84563359658059, 14.049529073552671, 7.758324815249341, 31.742438910142084, 19.185352879079016, 10.127979301741089, 14.656519397020421, 6.600699311404251, 18.46182740870242, 20.548142185650544, 13.80109706757445, 8.397051025106032, 17.29962912567022, 10.900772608032677, 13.494407089100003, 26.24838330037267, 17.19976698941014, 19.685424627264855, 16.165688878339466, 9.30437302166283, 10.616489363484932, 10.214685610982908, 13.191148678218806, 6.8747811032425625, 12.245877295032951, 15.392141481987972, 9.047328744943984, 13.295456045304508, 10.267286428319697, 10.715716365977247, 9.268524662297658, 11.719762572139844, 11.610430583182906, 6.502381446073707, 9.946126467944989, 12.439490855379347, 7.399907596157317, 8.262206150497166, 8.793800595179881, 8.45974939144744, 10.265181303599523, 11.95633553122779, 8.094079112300975, 10.020148057081936, 9.786976268932996, 13.676412330734847, 5.1238067360601045, 11.405860362344377, 8.65016438239409, 9.69085517063138, 9.31114351338737, 12.573732129945741, 11.898482549243765, 15.096058932889566, 11.078177451600745, 11.88560321965616, 10.513932605827712, 7.531399847265331, 15.385420824166504, 12.54651964709622, 12.204469365933043, 10.978638519403509, 11.891607009168482, 11.5507815723854, 11.438961178996147, 9.821551397906372, 18.20021135077214, 10.23266920280117, 8.660102168157351, 8.675847079894762, 9.927622355269431, 10.601133487625075, 10.254503249091771, 10.800147062944328, 11.011253731081549, 13.049467016508714, 9.336150505319916, 8.935451020607521, 11.258025983107018, 10.124257435966449, 7.339546927401461, 12.347715197845378, 13.587149155934394, 13.527166953052848, 17.63865212754659, 52.82147146072881, 21.499591662030745, 25.76800716906466, 12.607551029537337, 42.48569428759335, 39.03952314287021, 24.197087665000975, 56.210097955271294, 23.678648831854964, 11.370387387743529, 18.09192342462562, 8.43415849897703, 11.075779424331886, 7.073851132191571, 9.236024440650649, 8.11682929512134, 7.727091916173494, 4.560536035836654, 10.235038637584216, 10.626049644174099, 8.848214070215274, 9.549763271511356, 6.841463454087738, 10.365529773277434, 10.134866378206308, 10.807759442590658, 12.382414034291292, 8.442656728458719, 5.380530788891356, 9.765347305777125, 10.40539063812864, 9.574018053676607, 8.86031917796134, 10.395413370203924, 9.16106150741382, 6.706565377627459, 7.219846332323156, 9.182833264815631, 7.139687386629083, 8.421476306241248, 6.524110617572536, 12.258923471695145, 11.506012168434482, 7.418587631166522, 14.905914892810426, 10.136964597823653, 12.133782629401846, 11.156885002493174, 9.346940866494753, 7.753110805256067, 8.880225278074148, 10.352067090767028, 11.928716904163341, 11.294212180208095, 12.871625197987782, 11.60859002061693, 12.389288931132633, 11.806507051285916, 9.545016262633096, 11.956275866209827, 12.827488368468478, 9.041732506803482, 17.952084619137135, 10.823436307001813, 8.9237720083688, 12.61283758993334, 9.61586079828476, 8.27287748911005, 4.419138790925622, 9.431759040383687, 9.079111700152554, 11.722822042603624, 4.786580810972072, 9.515079517848264, 12.99630896301873, 8.742778208231512, 6.10325306120872, 3.800277912653749, 12.122895053765166, 12.06804842563097, 9.504238814732387, 14.021685388053486, 57.67359274344608, 52.61056548982081, 46.68964047248674, 33.77510578629374, 38.61379577542763, 13.91840075374587, 31.755275427829673, 24.62837056006286, 14.033183878783184, 34.911189137260834, 10.286980116062994, 11.516582232082634, 11.176926899799486, 9.213845728651638, 11.331463086127911, 15.708039374351975, 9.125478545095898, 12.379058656683158, 10.24073012221085, 10.583584989048925, 11.337818693342088, 12.248834095339474, 8.370486710136262, 9.793794506314624, 14.42750662368444, 8.753357109924677, 8.095709493980882, 14.893001472227317, 9.097387355240908, 15.861600778532225, 6.705936479950124, 17.63968965327276, 10.04822776029361, 10.830653832754328, 5.686623246923908, 9.741432046504327, 9.06531017850273, 10.548839340915215, 11.111153361333866, 15.431047837469098, 5.71479190335123, 10.969092635659548, 10.731256876035898, 10.3552826520183, 14.711001195461748, 16.214392226481625, 12.531088144472925, 7.696086905989856, 9.27865292838318, 17.82383098150883, 10.555710408335758, 6.3054853151835895, 9.465596995088557, 11.96821714771038, 12.795822830033742, 13.75443081996625, 8.458330909549353, 11.015302786810143, 9.107970967079513, 10.840365672529801, 6.370153358534181, 10.14857341046995, 12.92198490056572, 6.575126962640041, 15.21709874127384, 11.091338368976896, 9.532970967009106, 9.16637274986322, 7.351905684972694, 10.74370562572203, 7.4631079072080295, 11.95492709012391, 12.811099751987147, 7.935432328959951, 11.687278112752116, 9.898910670496656, 14.558744899346417, 12.04906257370581, 10.840158896050983, 10.110427990747835, 7.436916294366209, 12.813776685227896, 8.69949340864728, 8.94496751168184, 8.9786441764281, 20.114959838865285, 8.59325069365027, 10.574784052165626, 4.0397779113538235, 3.76482419902674, 7.536637025623102, 10.935384362575515, 13.393498780423766, 22.104991172286628, 4.840821399220493, 11.994330644008391, 11.08519924700852, 7.375674049736529, 10.876405191223713, 14.45148536146782, 8.984494582233374, 27.920362672699735, 13.258187487102335, 9.720866158178874, 12.356330008901306, 12.294149150650245, 12.81761497842866, 10.859929687043296, 5.31746179732396, 11.058074321507522, 5.507730210326564, 22.23560541659924, 15.647901463850673, 11.077562278254456, 11.708374143018911, 9.494887403810333, 12.243111344878585, 9.264721899927784, 9.081535778634851, 10.013902196054971, 18.358016728057525, 15.611166038759638, 15.933184334973914, 20.603694864586288, 15.73881620163669, 16.399513310487198, 19.129300948148856, 18.938310311152435, 24.010954514694983, 21.90880330892018, 10.965098404519527, 8.545643320099964, 9.253986724984449, 10.408684747022035, 7.976037401447404, 24.22951445937104, 16.226989927226768, 5.642493717531182, 12.783289198354959, 14.949294967833325, 11.621883985101947, 9.528443745185392, 15.061858610821353, 6.283449585791832, 10.187587026731125, 11.822928969731718, 6.662580287430922, 20.05760794613825, 53.753962047354804, 32.08074731433595, 36.741477597626776, 68.82694646406225, 42.61316420095678, 29.698833426489585, 56.14692627867303, 30.48708550701478, 51.9502402816948, 18.802511442900496, 12.303451033386406, 13.9300946968505, 2.6842365027742567, 11.876640835027043, 14.378549923244966, 8.982923344162167, 8.818197308966546, 9.428760764387487, 11.005744130662887, 11.399798068360376, 13.569115365413744, 8.148472104028553, 9.68519189205333, 11.484465472328274, 13.810847128917777, 12.999582614083748, 10.848800546794452, 13.225451275654846, 8.247094207940474, 14.986445591164944, 22.593072379715327, 12.330467220647382, 9.646983477726925, 15.138307313818617, 8.757077891377886, 14.129513274135562, 16.98646354662638, 15.234955627952065, 7.519420591326968, 11.471317778025208, 8.360455087913122, 15.419644891336498, 11.7796996541485, 8.505277600655514, 25.70110744962719, 16.959197379914837, 18.402714686032642, 28.63882071656414, 12.437399384353176, 12.756234130044884, 11.048216801617345, 6.950438374436748, 17.069961136483496, 14.878507488680324, 30.758311397599698, 7.2430927778426275, 12.891023236741058, 9.477434787814879, 17.349913175932443, 9.011204008217028, 13.38126469915948, 13.792561428626579, 17.172609538544236, 13.186652082057295, 10.28116262410954, 7.937115995835888, 13.736515435027503, 3.899177206467713, 12.688186558797236, 12.087173320971969, 10.169230436495644, 16.802565171090325, 13.595995073835915, 15.12530027919996, 15.416512285758005, 13.639098173030842, 15.550818303359236, 11.021214338067406, 13.915917315101785, 21.69825176180342, 15.195761991525847, 15.725610803871788, 13.527891398113512, 6.029305362061817, 10.111993517736149, 10.395940637870156, 10.504676731819787, 23.20779778893701, 13.29518399727208, 13.909280618074735, 6.52481183350644, 11.869921375525307, 15.897877469785724, 7.22345542857555, 13.89979992928505, 13.931606013716392, 38.107276635945766, 43.13717553011335, 27.934818620412013, 14.32461271546937, 38.64176773173793, 66.91734434519728, 19.132949135659658, 30.691496778802243, 62.327965177857145, 58.1338151335997, 13.22273255473087, 9.617659444456494, 11.992787035290133, 7.871400046812829, 10.750650377390386, 8.648806756130996, 11.31276301569398, 17.542966095110447, 12.420153366632372, 14.339080125949907, 23.94614829650788, 17.425612966554134, 13.374994808309019, 11.310852307482447, 12.035280385976082, 17.234684561592562, 10.673615414770849, 18.512718577156704, 11.064547913526473, 14.096299834690848, 12.017436895703787, 19.82526212283656, 11.023760443881756, 7.631549976746079, 13.585065776614696, 16.00118411194069, 17.070486422093346, 10.84975805149098, 11.377975233306215, 16.535515801692277, 12.296204615277675, 14.979789363243277, 14.89287955712495, 12.601928225278446, 21.031449350712922, 14.724155715980517, 11.92717857917013, 5.9456592946064415, 15.02651547876128, 12.314609678986304, 11.15232485940027, 10.823499311787108, 7.460328379873497, 10.548874775634681, 6.601153273614682, 18.50620535445306, 5.5033755049500535, 12.907334616463274, 13.178811034221424, 8.599537751968484, 6.0912488240162785, 18.712422726078742, 12.983504280480819, 9.185412847399023, 14.267522470800445, 13.667372344689186, 10.823948643272793, 12.762919602795284, 8.238656451636215, 6.32022871186125, 11.469099216730406, 14.24558420295616, 13.044823178825327, 13.783508540304934, 7.758367227044184, 11.415361345482856, 11.799188563993113, 11.7660436109764, 5.7612113979781405, 8.326835858293165, 16.334334666780425, 8.81701372350006, 17.599910422796203, 11.572547103395038, 9.118814194719125, 13.299131271784972, 10.391622667291001, 16.813836750148756, 8.961281606499904, 13.445950505375588, 12.909743129762672, 10.31381424702765, 8.241551897128165, 12.042377965789095, 8.233659949067286, 9.775429452623909, 11.155592708686408, 8.699175323694528, 10.552360262570248, 11.17835330918222, 9.029723551726194, 13.906174121133201, 13.283129620517075, 20.258018009303395, 6.581489337112876, 12.629705199707342, 11.256867552266334, 14.37252060140918, 22.100549065697642, 12.126498341356681, 10.170924763223896, 9.26175383706184, 9.810951200555703, 10.173771198183701, 11.906641404138426, 4.7664277604566445, 9.703229328233208, 14.113444114021515, 9.992024672919019, 12.624798970113416, 36.46518074382991, 13.898586790486856, 12.991306549142772, 11.006559991154315, 6.013849424826678, 17.831241531834767, 12.339280277592772, 13.086082594205426, 13.362705602956407, 3.395961968205812, 8.353412954020872, 10.90935296335981, 14.7710526033564, 10.983623620646016, 15.353140632551117, 10.354032278088079, 18.003192364988088, 28.79312128302699, 13.6960633178202, 14.696594466320603, 14.233525024848355, 12.249944723423715, 10.734050917643193, 11.327928968227937, 10.667503917053384, 12.549667009282793, 12.372315378813564, 27.440295033060043, 12.924223037805449, 13.444061668500066, 5.620829115982053, 11.288560882143996, 6.1864803959229855, 14.170578158536054, 13.345392173513298, 12.170284872262318, 26.963142310734632, 10.682225597371534, 9.411073694116336, 14.355439563381346, 13.749279541298392, 10.174399414789182, 9.810807736075624, 14.099190459215176, 17.3233282296928, 5.9124130985361045, 11.393592172533344, 7.669578650220351, 13.30501316424838, 13.305274568159163, 17.476857326637756, 30.15179283431069, 11.412623776729397, 31.988870782518774, 9.252483141705936, 10.641986470477526, 12.00469124297278, 13.843558532132295, 11.54070297466091, 13.748271576471394, 10.476507985956108, 28.290582082242445, 13.220695947731047, 13.059646914763013, 7.8789031007649095, 12.368236276969522, 7.673312651591155, 10.577664172921583, 13.665149251685888, 11.723103634135645, 11.715994961014191, 10.129627569316389, 11.529854479199397, 11.215958582146476, 9.19774284148458, 13.934050977855884, 16.74096447615851, 12.620461111570336, 12.851955780005795, 12.67001999536042, 15.515850416093848, 9.978192506015983, 5.921950252174611, 10.573348680353659, 6.953017850220453, 8.498288260342328, 10.763861427149694, 6.469920264054964, 4.505783414548222, 7.468066767446853, 13.554935457763335, 10.364762139271077, 12.160903633276991, 11.282884400102825, 41.34071986920479, 12.79258595821602, 8.574203470876416, 5.172847055099672, 9.30402769798896, 9.365201029793727, 8.554840209807532, 8.031894039245143, 8.116411846509816, 12.254385788873662, 10.013259185884031, 7.589799553867602, 7.627761156843046, 9.668336976658768, 9.805396923020592, 7.020664174424039, 12.870138509151671, 12.281264982970995, 19.463750559222383, 12.530683459428426, 8.466070968726179, 8.299918011968883, 12.517275602646812, 12.5331075286083, 16.23196960568671, 5.841430814283751, 7.97062143803321, 14.15909222971757, 10.729317216940238, 15.163861621642681, 15.961125440308594, 8.997717286035055, 14.056479078490844, 10.96199402950613, 11.622558747469983, 13.111928052379408, 7.088853337807996, 18.333124129203707, 12.97578721946119, 22.906089280385988, 14.442119886088994, 10.247296405083393, 12.582819036587773, 13.498036322607986, 10.319883522266569, 30.81955645041232, 11.40339501790877, 14.25009387326192, 17.263274034980554, 9.99221083335503, 23.10465822494498, 19.774416176375983, 11.123379508680774, 7.866785016634549, 6.705330207611499, 12.890067245255674, 12.11573403696407, 12.326839795448507, 12.59864288026561, 13.062599039087273, 10.092852412582133, 10.618490293576459, 7.29611735248893, 14.128148367921172, 14.268891553347357, 14.223507063014164, 7.8997875587862385, 9.406804950997849, 12.179762863630136, 18.96035466801431, 7.9250274929397415, 13.504342962330051, 13.114064438077737, 13.535455241736818, 3.7273089233800767, 12.124558786887347, 11.561825524397976, 14.988404930816344, 13.789277674372187, 16.884628484369664, 14.679445850188113, 10.53051678423307, 16.700493785706392, 15.395719249383873, 14.204380676521442, 19.58139651100038, 16.791778143684912, 15.62594009933893, 10.273260498991057, 30.287241410507278, 12.241953998250366, 14.597508050499618, 16.9354211409336, 14.629449513449515, 14.055638952908025, 14.556951324015406, 8.21966065030275, 10.521791665934922, 25.768031931518003, 13.25071846269672, 12.263757339856012, 14.586982718435346, 15.407554960838715, 11.944379198159519, 21.750738404362128, 13.558420634900319, 20.17159238682211, 14.449557227798607, 7.839266504509303, 12.883931887163667, 18.82465223462495, 8.28403927540317, 26.435516109868466, 36.27231183067021, 11.39687687471159, 13.310057176595338, 12.369746079347978, 15.573144057028058, 4.828938003644176, 19.350299391484754, 14.2012391370537, 13.97202657897658, 38.88900059907412, 15.14236117375466, 17.426984166255135, 14.458349168687219, 12.129949810591965, 15.072755369112368, 14.814796962353073, 15.514916310668116, 17.676816949026232, 13.47744943881368, 17.959100310637076, 13.276388294598544, 20.598075461977636, 11.87144955679099, 17.683786093635455, 8.48432129150129, 12.516389805990393, 11.327288358617942, 15.547580031208899, 11.835311159707103, 17.51568642207466, 10.889771361810322, 18.271534893886567, 20.770522965113877, 8.314743641822336, 14.952624920697962, 15.51153835685112, 15.445074619824616, 9.486502450577275, 14.428812691454205, 12.393509071647868, 13.952957880773784, 11.296824184540034, 7.832753490828189, 53.09692799300481, 9.84152321102608, 13.097377470059294, 15.489610480391695, 12.8538291618867, 13.56663622568094, 21.102101839577326, 6.764404069354066, 12.593230999041632, 30.32784872475195, 7.995309523051268, 37.66944501308383, 14.285353675093063, 17.242064924253754, 10.944025427695202, 7.0797659562396795, 11.619705297693491, 14.198332250676964, 15.490171065812126, 10.119427787022971, 9.222651562782488, 14.148852634895198, 35.805234485285965, 19.589719964391957, 13.582326252003636, 19.604287010375252, 18.85195503754502, 20.315990755331693, 16.57080311350493, 19.87503226103961, 11.972909592226472, 16.735855055143276, 8.227034572886733, 15.383936564919752, 15.545518459266393, 21.131727710273843, 9.365381200140256, 13.203296649023017, 11.002574617181848, 14.76117865236536, 15.321145893448746, 52.57403826259751, 34.46243919862464, 15.715954103853885, 17.472665305481943, 30.16563832490179, 20.65743540649312, 15.970251199780607, 6.269772384284832, 10.733561465563042, 17.405006681808157, 12.55861658148551, 17.64502456419681, 20.034634885338843, 16.37193069204225, 7.472633479517293, 10.06182297501584, 11.145928239614841, 20.240756798419078, 16.13646641718275, 15.633216211520883, 10.28814969327366, 6.590054578505168, 14.61890526673782, 14.009813253250377, 13.278080624821555, 13.973220585228322, 3.164642659095288, 12.332991995620473, 17.413621340729836, 12.451544063190614, 6.35572928078531, 14.818515328854733, 15.724172662279127, 15.64382649526847, 18.621131129911294, 8.089502206428735, 18.648686165615956, 16.938312559974715, 12.723322491741147, 15.753311302808283, 13.37186969393982, 8.804560382462933, 8.929574481465572, 16.059250812675945, 16.32413706854987, 12.332646945171554, 19.66538320829497, 11.296435069506131, 13.687951095450416, 13.7736435712878, 11.046879802902637, 15.487157323838446, 18.210406737492622, 16.087833954973096, 16.090034599174302, 8.602914659629723, 12.96229212055226, 12.778104553325678, 13.593498935573477, 10.931439316470698, 14.385324099511594, 15.615497569354934, 14.838673046423823, 13.797910289358049, 15.359138718399478, 15.162826788120924, 11.786099913097585, 7.908829420424774, 15.38571489144947, 10.960765009324412, 13.647410841819173, 8.94462060197557, 14.74810872359675, 17.052167354702252, 19.932956142181208, 17.352612361649367, 12.841953510268759, 10.636520522346938, 12.02912368211424, 13.40980692869112, 12.91143839206057, 15.606467558671689, 13.179053010258649, 14.641582223847697, 6.86292777260711, 37.76800330212444, 11.725475378334849, 7.735404506145374, 6.7870182241206685, 14.450486759776258, 11.126370967551914, 14.075947128697551, 9.256194508360862, 13.39337149142567, 10.749397295632608, 14.721099246848784, 17.10927273232483, 6.791518017618674, 11.721105983229783, 12.088038878863903, 8.381699870584493, 34.95109037486184, 11.067232463378307, 12.36930352647183, 7.886372850748184, 14.70538718153435, 13.043149480712279, 12.505659914360399, 12.157237466437932, 7.714233554955229, 12.92371641950241, 17.92609008915247, 15.349841819037724, 13.001177860727335, 14.059540805143401, 11.55773690147889, 11.509213966770881, 12.96914229154146, 12.193882215291099, 14.984542137098554, 17.109352649461265, 11.243194600774437, 7.319758142783748, 13.916304719037335, 14.148973041503067, 16.624927645743465, 10.193517264755748, 9.706988098659382, 14.994281455799472, 37.66355392031398, 32.97130744563601, 24.452111618283677, 18.028958572473282, 12.13361519724947, 12.106606897147751, 28.305212693653097, 14.411639265311155, 18.559997708446236, 4.718434759244331, 18.92180783477265, 10.111544824257821, 17.56952155624645, 14.709250037433062, 18.96664790506539, 10.016250305557655, 13.402034341915348, 7.737299451863275, 15.390820160157926, 12.603180733773698, 12.908968637996503, 12.0170540101237, 10.779905708897099, 12.682032467302365, 13.24600866766869, 13.853785344697926, 11.456619375137215, 33.00282899671598, 14.076450498776587, 10.496576843854339, 9.896436495801236, 12.221066056653024, 14.670473660638473, 11.231450759781039, 32.04191284237156, 27.77167312938006, 21.958423995808133, 9.175896696521756, 46.145238018814396, 52.155598641980376, 25.680995438743743, 60.86537988438405, 45.56376892671836, 49.97669550375326, 58.03845838596271, 40.19331006635262, 34.85046918354623, 58.84655422535916, 44.11917412121579, 10.9451536019583, 55.307516251197, 33.38739084227965, 30.475366277005325, 47.27820307764132, 57.256238085193125, 17.51501645434864, 33.82052225430771, 50.85835209527315, 43.614194556568734, 57.17279725303508, 30.841315038480218, 24.100931428562465, 35.22124116133413, 38.408402721997355, 41.824529174080645, 25.772643120846787, 7.592145580119229, 51.33807030028795, 25.294480488394186, 27.32186650851288, 34.63914094560699, 37.19912338421552, 22.75262094723862, 12.99083758249261, 31.758185794764945, 19.583015668239803, 30.27450605695613, 3.903739796268345, 8.72854878276182, 25.48134971418891, 12.869222511298771, 15.567759256919548, 26.849375687480446, 40.98454723952261, 16.568377006303766, 21.183529125707715, 12.112484192743688, 18.371460026728794, 14.689432506460205, 19.57223978932144, 26.045041278656573, 17.852107952040747, 13.817438150395116, 15.515057758757557, 14.070961745754547, 11.627334770994842, 18.459254088118854, 18.229356056882125, 18.882477813852816, 16.130416060048407, 15.597450076538003, 13.154921479212462, 7.757069632702572, 10.123845626054372, 9.657504494916324, 18.36447029376601, 41.7235624777699, 12.00052683046361, 22.555095204944617, 11.170624121987936, 17.064565698334345, 49.90356988466469, 20.533064484936624, 36.8486286536578, 25.652710198312345, 16.33402476702864, 21.213304719184638, 15.731007004566365, 3.7753659073030748, 8.85782012946169, 16.565824700478043, 54.47561102777658, 37.609980645085905, 15.563661959944078, 23.600240110427535, 25.910248814705138, 46.762224463445044, 28.294176859390664, 19.49318317598146, 21.213700145434206, 37.56360480226942, 25.84371600495663, 21.65352861208278, 16.209527223362926, 10.271664319087288, 16.86729944754248, 43.57008395624844, 31.29105250090466, 10.744123246429705, 11.49310693559838, 22.357731674623206, 11.04390655587066, 20.614538077736487, 53.12495663151778, 37.80770811100255, 12.198290185882836, 22.996515379185656, 30.309308723916836, 27.997878880054543, 14.3244398031281, 14.336253499571226, 30.04329615839097, 30.672465184130495, 20.34400936905254, 27.39865094303261, 21.28497975231683, 34.41912241102325, 24.59000130906339, 23.163893530489123, 13.730691845055008, 22.124643739743394, 11.602639630414831, 37.784088476710764, 16.820291601716146, 12.866859240765791, 36.47534815519879, 10.93089568670064, 27.1238374149052, 42.40615818091438, 27.74929002627227, 24.919009599277338, 32.637145536781766, 52.03350283246166, 16.647299002680924, 15.207331570186893, 23.77473828346014, 6.549094770679776, 32.10312085751366, 23.162832840648026, 14.000524435322918, 11.214584512174405, 20.30744069861434, 16.299435729742285, 26.2382731940512, 16.995770563066813, 17.707733409050686, 24.83148444890275, 24.127002690475447, 26.138847503786188, 26.475765016029722, 34.049380937196084, 17.353534593721232, 17.663186473662666, 25.532892382054836, 23.2512411969826, 7.060110705077082, 10.757896772735066, 20.614239423169018, 16.208513988916245, 14.126965608039322, 11.138523826673191, 7.496049915612992, 25.95204346140606, 27.560577290706036, 27.296983018428595, 23.779119493678362, 32.01626160791226, 29.25938036610792, 23.39841921178889, 27.481632887408423, 20.938268389230686, 14.299545860357393, 9.412457989626168, 15.497036021783515, 21.51663506136106, 23.75611557558085, 11.894894629237301, 36.50156234625143, 17.994058074235703, 48.4839928108757, 18.046914745385333, 32.361627983127974, 14.184388328563198, 21.681610105637, 19.95207113115251, 21.832665743570157, 29.385986400360984, 14.646047844020435, 21.792573364172902, 18.376210665017037, 3.1148346749750186, 16.968493281923646, 41.11179672597782, 19.658341271516584, 24.398472248623776, 27.88406227153479, 20.226896525122836, 10.468843656915162, 39.873579642579635, 19.91803930876434, 14.09844041463161, 12.562797266213606, 14.946583003389195, 11.293380133266037, 12.750961517798439, 18.01253341064476, 18.886650830695448, 82.88496611957873, 45.67976558060964, 15.88724369986776, 11.495384373444317, 14.573960658421633, 20.93091581298818, 21.822420120256428, 12.127922034401402, 9.666288032885005, 13.918996855538113, 12.54544241162234, 18.188169336159195, 10.399537996794178, 9.69566888848353, 16.814639526668305, 13.963631982322896, 12.962077918740638, 11.605707442347263, 14.574405726069122, 12.636524945292607, 2.437522677970977, 14.093001620525184, 7.893041385836309, 11.412372551533876, 4.997369432563697, 14.556309956435777, 11.430959015222246, 5.592408662225807, 10.402708089477015, 3.40908302683387, 10.469156356164445, 10.648352549822734, 13.59566619498063, 12.879249388785846, 14.892575158441861, 15.232059383737605, 12.679769889953104, 6.842834662000718, 10.514535272728331, 17.03775280691268, 13.451919377181726, 22.030777599034938, 11.777373380556721, 14.469351041620525, 22.433897397179127, 16.182143887833956, 19.369485343471162, 17.919721422652362, 13.66229620853825, 11.773969282784938, 33.60297016644347, 4.89776119901351, 12.542158702367338, 22.476632645132636, 14.839788836887145, 18.986355774892868, 16.619626730044804, 14.721747422459469, 23.246438960252906, 17.331218698037805, 3.089863955985088, 15.248138874488424, 8.8340781802754, 14.423271613770641, 6.252245693221939, 9.43322390630139, 15.853068333311501, 20.65977325693144, 22.268198286491632, 8.85787891623728, 18.853571905248025, 36.51402666076724, 10.411615564542148, 16.02944798700518, 20.46410840328292, 26.040748758047123, 3.996213760069003, 15.744425468819335, 15.763670229235311, 17.00152022339117, 12.978708190201607, 20.197304546751088, 41.79272656754635, 19.886553819543508, 25.686376664195883, 28.807517954267944, 16.090098845572513, 17.271795638577554, 17.31021927307859, 50.0115622440425, 15.098363929929713, 19.06552020253111, 24.152212379124133, 12.970134964069747, 21.365428752104442, 22.22556589591387, 34.8364894925336, 15.417173572703982, 11.967386776940595, 11.968606633038444, 13.34135391819298, 12.004405116682832, 11.555093464086445, 15.777976238303983, 12.999902814690932, 6.976969987965152, 3.559444259753254, 15.261027043218222, 15.014404727434817, 12.529951557653622, 12.973231414099352, 8.596694743633723, 11.906255353328085, 9.749551139712676, 6.34704162885965, 9.448951680672268, 14.355457507865433, 13.573954215893158, 10.03553721966028, 9.892635295174381, 5.983822405850798, 12.322174618374362, 15.844198154633483, 11.452482160855997, 10.394829597626389, 14.604971577557441, 15.92633179207694, 11.14732618690929, 15.390796165422799, 10.415387518613134, 9.104449311716358, 12.394511542489765, 24.04116501518963, 17.66798093404555, 19.966459926915814, 12.694349812519777, 21.327362020022207, 16.248114925943803, 16.197886837098412, 12.96114150443652, 18.772698261463873, 19.779136953795426, 18.829668588705037, 21.360863154965095, 11.009542337883767, 13.764693171157447, 18.98636473988995, 14.012513960920426, 9.03041356535871, 19.720929380317, 16.641646397883154, 11.743514681581553, 12.093695584898175, 16.193073226471597, 23.278008233105787, 15.754207624187115, 18.896944714305157, 14.779256634015985, 20.992052816731288, 8.88795074119245, 9.816227943055111, 13.704057462440655, 19.86638472080148, 14.58156322532913, 15.65067714000862, 18.813087360437972, 16.355610624221207, 12.832767810251696, 20.328406664013592, 6.867659948268304, 14.063458720643633, 12.814437485469943, 12.729497919346441, 27.79756760100064, 18.326671545799808, 14.895528337286919, 12.010842751081709, 14.563008997700525, 19.182627526168933, 17.551431523915102, 14.777372977200782, 15.739875855309117, 15.302228099101923, 6.626738281951297, 8.977820428373741, 15.137715023591584, 17.481463085049505, 3.222195750941409, 12.393864413035702, 22.70477331072576, 12.762492728948612, 12.225960141487494, 16.149978443079583, 11.318373705740427, 24.46707905250463, 15.34470499220973, 16.473376495554113, 13.405749161402555, 32.67819305127603, 16.873608664749252, 36.25679511811606, 17.114608781741133, 12.63159234124696, 14.199663720483313, 15.812291372682754, 32.69183186923156, 14.641108203413223, 15.271013955529579, 10.271992990895196, 17.096819935790332, 14.096371424074844, 13.43769878970404, 24.130222008982212, 16.654812362450592, 10.931332857579546, 14.980944504565143, 9.44761370637252, 21.603643552969796, 16.835440747170047, 27.172494478698873, 16.915099778043118, 29.918947203807253, 19.012406480628453, 18.203167575658128, 13.003194401193134, 16.474510778651098, 2.851138776795537, 20.017322427572424, 17.224703064350507, 31.421808026163436, 18.419663484037564, 14.498289017090636, 22.411634332171108, 12.723808280949086, 18.61345047784921, 7.978211441562801, 24.651178008361985, 12.161953557183756, 13.623036838176219, 15.345936773158648, 7.815932581126282, 42.291419887973284, 7.031709467538913, 32.64714463729014, 8.527060127508655, 14.653891617933745, 21.984623088095926, 14.9694125461312, 20.48293845619789, 9.546609334957653, 11.245737212486718, 22.52337865574583, 17.19446412910707, 14.319090071965071, 10.785521312310541, 15.825975054778723, 12.548679607016227, 24.698974425804142, 15.345850666419395, 17.299689477189464, 28.90749308421842, 17.573407700486637, 21.629710812974437, 14.045884378082672, 24.163526614554986, 11.64734854601994, 18.975523254211737, 10.686463613766987, 15.340773881862882, 12.470523648482377, 9.702987253167233, 9.292611363168138, 9.944809515720802, 14.190496827241239, 11.814259227820196, 12.632593873385035, 6.302200404262638, 11.354241149776254, 12.497185264954462, 12.79794725934022, 9.004303158176546, 10.083514767497574, 9.200147401313572, 11.741013560182354, 12.05695406006103, 9.568441413505653, 10.519862962664742, 3.1614233645397056, 10.76867738800962, 14.77246655365203, 8.181537428556974, 10.60667255865237, 16.25596349876497, 10.79068333429021, 10.519501595841378, 10.083068557639864, 9.33916779740311, 13.019828983054236, 10.019427582680244, 11.796927023467793, 5.0379751173292995, 9.84936784103555, 8.698492468241636, 11.939419914900824, 10.200764910080501, 11.17551070039065, 11.173585696669178, 8.424043770414146, 14.253815730609135, 11.973132973696057, 16.227688648769526, 13.81770856201959, 1.9226352065248258, 10.720008801287262, 11.86590261860154, 7.5823868521872, 6.486511974755073, 11.533559928886753, 8.226960288944865, 7.882349325310359, 8.16196123174211, 10.709674740844916, 10.270119896157002, 13.46254411558688, 11.852737805323326, 21.8890439883779, 13.590507533852582, 11.31426426704977, 13.573130701857478, 12.78676338240442, 14.502871957618712, 13.972197861262886, 8.866849152204828, 14.425037956128609, 10.67847062256207, 7.25792235783726, 13.128744974022387, 12.042819868747186, 13.471864786758358, 8.915468329341232, 11.579057449526436, 14.665814506849651, 29.331498323486684, 10.846585878633244, 11.658693715377801, 8.490047028453143, 11.423812221654726, 7.458107666064854, 11.311235196328322, 8.476447030180001, 11.583776679575752, 5.9143941182596915, 6.1258095452913786, 6.026359017758428, 6.6518966560484785, 9.219833623335632, 13.755149515881467, 10.222717143848941, 10.32617519191642, 12.830248027027046, 9.820083526250503, 13.670285002886239, 9.699574505560353, 13.519350329908965, 8.206529893763395, 13.946959210879305, 7.159756012421626, 12.932597155464272, 12.086198547671353, 6.379056433369944, 7.8520375843242265, 16.86960603285604, 11.036456316238654, 7.101723075580194, 9.507020887940817, 6.478582948283264, 12.37905427774358, 11.233803071888255, 14.571860012382484, 9.844750566802375, 10.294921971744195, 11.59164028460061, 10.881042562013146, 9.999239944369352, 13.566231666481668, 15.290052759068887, 12.308514540929552, 13.845615772711833, 11.020746376233472, 10.82912231559465, 10.50851219244543, 15.039012234088231, 11.372106509641917, 7.926593265459412, 12.068547987599835, 6.370838220460024, 12.18229991147074, 10.686516512194506, 15.400301265052901, 10.634692629832799, 12.495528506524598, 16.780755034309244, 17.204663897769475, 17.054835753535247, 12.06820572922564, 11.427032528370606, 12.871426423781882, 11.77471870396882, 8.12392481368088, 10.8930731850821, 12.392134991233274, 13.914936858830115, 9.614852981186342, 10.52846280846722, 12.175735386345682, 11.487903553561258, 9.91702356092521, 15.35492976432366, 7.474844485698066, 10.044275310026462, 10.341907943677173, 14.992620432879626, 8.191830142988302, 13.755585622292097, 12.556379436282448, 11.526093577110023, 4.8808464705234025, 11.342875725512876, 14.659420338461695, 5.360874772017046, 11.493735543541241, 13.350853382249067, 10.359239018549388, 12.055259114819794, 13.640079093655237, 15.755794543691598, 18.606219770425657, 16.201643468316632, 9.839737512106627, 12.111722830947745, 13.259554071664315, 19.25555064388211, 12.484088402538582, 12.03131089061759, 8.657303332615099, 12.6812484572428, 11.01664035488032, 9.814138785932654, 8.445181455230637, 20.373183143847044, 12.179122280918255, 13.293487720827743, 11.810578120494915, 11.958776038418073, 12.54258999266913, 7.211986728925894, 7.055879328103842, 6.809520690112659, 7.784688514612849, 8.354141557520292, 9.211609938419542, 11.10926674480846, 5.33085614247056, 14.173766082045582, 8.266133190218783, 11.487284741634731, 5.156917593965778, 10.537066833373903, 12.634249863569524, 8.918441279081465, 18.373889441224268, 10.538889987465625, 10.718452076945898, 9.253730046467123, 10.574967073350066, 26.761303470391013, 12.519240461275906, 20.313315244840005, 12.583674968861347, 5.836937672253819, 10.619671483272487, 48.24403424102299, 11.424188590965635, 10.21986051894442, 17.803111479860405, 11.352105995423644, 9.509591367926257, 9.95078738006966, 8.846168291697122, 12.438520409562758, 14.903530708541542, 14.927325608110726, 9.349428541857176, 16.123949161970636, 10.911934947830808, 13.637612004640939, 15.202601734904437, 9.248651278073412, 7.613885479016211, 5.147060533803016, 11.329624195923426, 15.334708392055143, 11.483867376277631, 5.5984903266285055, 14.90138560701767, 17.52946798302996, 11.077009067297265, 15.472965860289271, 21.683289370974737, 13.355163127008321, 11.494990085567316, 13.668379857197841, 10.179106689803291, 18.55201774409618, 13.632715074576309, 5.297655909661585, 14.11708973905352, 12.998290321233355, 13.999848481028813, 14.41387001493687, 9.47927404024315, 15.529030967016418, 19.956965894677882, 11.947200994283984, 15.86780844972506, 12.363976898179223, 13.060621536493825, 15.342551988594485, 11.031037865729035, 13.48982769186327, 11.580396328478786, 14.762343310729191, 14.963169537893192, 16.829807141069633, 7.629418244210871, 10.41766605180653, 10.792710428657024, 6.555908576456803, 20.835526390147525, 14.469228012343565, 18.53031181724104, 7.749419311320083, 9.854648311797574, 15.127527700901691, 13.7302069042069, 4.988316081521773, 3.6686213607385505, 4.510413968761646, 4.305764449711711, 4.56738572081477, 5.201044980865625, 2.8991328275376653, 4.800893940813475, 4.932097473346831, 2.487625250259361, 4.8584679354324205, 4.727247084261952, 3.60307502153219, 2.946360314509775, 5.7501790217324205, 5.169059950817412, 3.064084740473386, 3.9366159512261985, 4.566805292679877, 4.550125773649003, 3.7140610907534186, 2.963190649369639, 5.620619129160136, 3.4255085084854153, 3.570576535415248, 4.8547401703857656, 5.802859530557054, 5.013791518896805, 4.3850493383034825, 5.528102137318956, 3.4734590588862284, 3.617885053802789, 3.325081446739013, 4.346570279273392, 3.1530546528183168, 4.560168722321936, 5.360938849641494, 4.17344779696762, 3.8252969378322983, 5.263754815883403, 4.2765756262349255, 3.711820811215703, 4.807028726093132, 3.6299308381340447, 2.9850011975557305, 5.445258354788407, 4.097871494022597, 5.342290051280964, 9.622558655612986, 3.6178680473937836, 3.304396149910307, 4.903690040793149, 4.096378113641482, 3.9589699784896886, 4.966313120516627, 5.232473146709868, 4.509257002213557, 5.134847189673452, 5.338890502791264, 3.073624252272423, 4.419473900792433, 5.928103210923378, 3.8406730574154273, 6.412108308827921, 4.254029242517115, 3.7734746479416277, 4.372687138927228, 117.38433971897562, 5.228942598470997, 6.556638749069457, 5.206695952821016, 3.8667747732153823, 4.431241883145793, 6.662965755128103, 4.147848183944107, 5.595025577488376, 3.431445127587311, 5.3728346235311975, 6.135267927827371, 6.1635029759266, 4.463463533227668, 4.831490819529499, 4.143254401445267, 4.255750569069912, 4.577016128085618, 4.787852177301559, 4.072713654388219, 3.511532228033692, 3.248321628118115, 2.53397432205631, 3.1001098637874485, 2.9812424941966675, 3.7576929822852203, 4.724177726007499, 5.792361599953958, 8.314238861152187, 4.384173085897278, 4.546308375706011, 44.88896853391706, 4.646963218444901, 4.980928859349284, 3.4422700119499394, 3.8528230602107634, 5.439747909123257, 5.250251016715985, 7.7472279300307765, 7.259903505934814, 5.010677428864415, 3.694117925500459, 3.4098443450160496, 8.151230215505255, 5.575005095715482, 6.113326792752563, 5.317823937414194, 5.081357081132674, 3.9979055674150885, 4.973899251893307, 7.29372466544302, 3.508280600745581, 10.13325924313349, 3.9148411878805733, 5.1250811089123625, 5.0712200293591625, 7.817631550779481, 4.309990574764353, 6.987139254646583, 5.199966052078005, 4.7209464643760155, 5.7955966674898916, 5.733949156017338, 6.959474553210317, 5.775625856408179, 5.2500073757191155, 5.024088517128034, 6.4398755855105945, 4.153369850817026, 11.115412875200898, 5.080691719647162, 4.073124928159706, 8.020572505406902, 7.733971806229228, 8.382434294029045, 8.904676654909945, 3.7420470764843543, 5.6217212957176965, 4.502920081236176, 6.692859488681192, 8.11809695943888, 4.8466064531540445, 5.70037423593665, 4.922719148082682, 7.465983842190458, 7.776743211565525, 4.0270181160442675, 8.622587700085422, 5.980361647467013, 5.970650259616397, 8.625120502070303, 6.197526874127947, 7.6747932260959795, 4.881872621600813, 7.530028596015399, 4.472634735565088, 5.386453865930363, 4.6564094972005305, 5.794087364896438, 5.093451250740859, 4.916471922714199, 11.89596731320903, 6.63503991534208, 5.1400895775170286, 4.679953401402398, 3.4374231268017645, 4.953648182761043, 3.940874249398508, 8.383304167151374, 9.23821303071616, 18.47875285823599, 9.086173063286067, 7.067598336632301, 7.52364409865842, 4.849539203498, 5.279392820858942, 6.193938230036379, 5.417383370698933, 4.444084745242581, 4.438683537143802, 7.803743314099589, 7.6048609677946555, 14.36394045905075, 10.310871368102717, 9.204868273844973, 5.5481595412590465, 6.120421046900594, 7.403684428642322, 3.838794641482606, 2.945185736819078, 3.541941281763114, 5.134396951794814, 5.485888409458991, 14.057649432442267, 4.2452841752086465, 7.234642916215419, 7.127698857395855, 5.841061031559647, 7.142939158245884, 17.966838302014885, 4.2365778454849226, 5.175898862612683, 3.0406084363143315, 3.37647918247249, 5.424144057132878, 5.5050507428783515, 5.100811859644348, 6.689148449049179, 4.812872040756368, 8.216958394381459, 6.441108252941515, 6.751212790997008, 4.183151969832457, 14.409591790192055, 5.04020343782515, 7.255799174457257, 7.953156942156046, 3.3706523431552142, 3.3289098131973276, 8.663994271605368, 4.669227975035852, 9.654864800904202, 10.535358709120901, 4.716970751846918, 4.416136748928706, 10.770936495831455, 11.469803164925905, 4.729298078775439, 5.677325017829989, 13.499250082670516, 18.41675135839544, 10.845872643686379, 3.129066201877235, 5.612084836037285, 5.453498577856924, 9.141984066388163, 17.068510329418103, 3.5870158993711923, 3.688197474351089, 6.22093656283405, 7.107415740967738, 4.8192990472707535, 4.6542682738707155, 6.93036274010069, 8.252261804332756, 18.983237266152333, 8.19276988648701, 5.086977303250033, 5.105303854077736, 10.57819987947657, 8.60503953436394, 6.905224412440648, 8.460122451564581, 7.327895811169489, 5.827378142484305, 4.8444924534955565, 11.692285443503978, 8.001915324632078, 4.624208409244885, 4.480481804406861, 3.3857439901934177, 5.406270113067495, 4.706301129982758, 6.748755675166136, 14.069433362513937, 4.228424032005972, 7.9546575669997885, 6.578047671337517, 2.8703267425290937, 5.880014919841359, 8.710880101916034, 4.364114746690639, 9.302050386136242, 6.61573761369514, 4.802502398016973, 7.2826183726473825, 5.752922381104619, 3.6788819386161933, 15.490308699250969, 4.247340688993028, 6.587737413365126, 8.077174048366741, 11.22288434179706, 5.455835086225612, 3.8851917861847616, 4.801429846786272, 3.28735813829953, 7.010109795525655, 4.9252948754102865, 7.164754742715795, 7.41941414377044, 7.933425759134483, 7.5779705617047926, 12.570886151461398, 8.609414748199868, 7.570682656196171, 4.312553368405956, 3.143844544968477, 4.094885232167623, 8.767762661244493, 7.967352198889004, 25.850776671772813, 9.450856729520206, 6.266272853378279, 6.5068490157971555, 12.44185850031429, 6.210623456559954, 5.367494475720451, 3.960062402047502, 4.90538441133052, 3.4443474238269673, 4.35918258039331, 4.978931757393645, 4.902085662067304, 3.767857236983534, 3.391344514597036, 31.759754519072725, 7.247836076224431, 5.2026808292065, 5.107579388008958, 2.6252919740019194, 8.911936033998842, 5.602111787408098, 14.017099071327578, 8.747433693029441, 5.773618109805015, 8.991687415606156, 11.181321943110685, 7.145405356174139, 11.943771782694913, 7.209210618485773, 4.7117195100585025, 8.69399079329615, 6.00803290292474, 10.233314430632644, 6.611619085228738, 11.84147412400243, 5.927844029464672, 6.62995611286925, 7.58408271534887, 14.274074186298733, 4.3858338837224515, 8.367665152549426, 30.776567918263737, 5.969241100889818, 6.592485528603149, 12.882576423774113, 10.187037163290109, 6.718837195235777, 9.933326369338891, 22.590451060539795, 4.395889682449548, 24.764669434795696, 4.771917947671572, 18.341341207643836, 3.367240898394948, 6.085814220217552, 6.214329512202977, 9.18879352739895, 7.037663386592338, 10.613321488114218, 4.7769050648650415, 5.6803676131923595, 6.592173047219319, 5.255751750375322, 6.285057615380801, 7.731003731035948, 8.41193392921466, 6.295791186116727, 3.871603188697942, 16.615278304305072, 11.215174608587562, 5.241729493375436, 3.6648606756832787, 6.292698744172711, 20.222610603054623, 8.909029670377016, 4.205080256749511, 4.925683148706965, 4.8022360124906145, 14.16305762410373, 8.46341729965364, 5.907013435783847, 16.859785067523298, 9.048100649957643, 7.317648286681917, 5.924029442212317, 29.08962529575724, 5.475762406823743, 3.9979753097660327, 20.823626689635468, 5.083258373385378, 3.6217964798707247, 12.26365956947455, 6.0892439376670735, 7.465308409322164, 14.810478509426163, 6.542384822103367, 11.103666087442877, 8.762688295748395, 5.677101308336545, 9.378152592621284, 17.126526168373907, 6.561307536837527, 10.26324074908489, 22.430560496977563, 6.138665553363133, 5.644465494871602, 12.719853725502666, 5.776497902771423, 5.355152976995743, 6.720731653129263, 9.730990593281494, 6.656660423521065, 8.727521447391073, 6.237126448269441, 4.991081059373292, 12.019458412191264, 7.764551520380404, 7.965261868491253, 24.67941279930916, 5.474702168280826, 5.661806781529355, 15.657553157115908, 3.7728548044116925, 14.946231106187092, 4.40194177872447, 5.749699418269165, 9.656346746968847, 10.728992932295633, 4.555393822344129, 6.831590709157012, 9.642087450336348, 6.616731073919812, 8.728279016534646, 3.707341714349501, 9.301416156436863, 14.355719102202999, 8.338122919582077, 4.972027612298248, 16.03439844102452, 6.901085140181562, 4.985894453669161, 9.389424497648216, 6.35643834524587, 7.0407936540939495, 5.0382067189062925, 6.716417948636004, 14.132922262701943, 5.05894521434857, 5.359721423889961, 14.13410512791676, 8.057018915269447, 7.947898505566054, 4.805580895631321, 8.97617322204314, 9.618196861570343, 8.39757264096771, 4.4222410938842, 8.853406450906382, 10.987333935594664, 11.498743035391442, 7.292362412215326, 10.400788121928494, 5.316450399586172, 6.9089635994549345, 8.13162911253019, 7.410279658558352, 14.5061949805351, 7.635247510732244, 20.364129164806645, 16.700712114174255, 6.7146648582829425, 9.469673710317, 7.3186942333134635, 4.34206013703408, 8.61874294942062, 7.286617794027964, 16.813773685144714, 13.09312085429555, 5.700746420650672, 4.305816059933018, 10.864207193345441, 7.072067654661632, 11.14487382504309, 14.55552613252862, 8.250172770845174, 11.311566533074338, 7.639269972497022, 9.935363393342586, 5.820154408483671, 8.062725454231222, 10.266455952315651, 9.173580496911852, 3.657536084505253, 20.632070772041892, 13.76668786139895, 4.37856976455322, 4.974334139937468, 3.3080306609213315, 4.360766403341892, 7.459890940612662, 5.068883791442408, 20.621320169827175, 6.0418551574817085, 5.13929655208969, 3.2435917266430057, 6.647477247884672, 6.992845114905264, 4.025956114684033, 6.511025396652241, 12.134941163452574, 5.918102393417172, 17.95186979703656, 4.036826503611419, 16.719911963066064, 9.922245632528114, 16.095968254288387, 16.05421811950045, 7.734555693871651, 9.199264013847644, 5.267519033489391, 4.474454898980675, 10.805274750546966, 6.885869322585504, 4.66321191249474, 3.6552484772288096, 4.058423006592668, 4.701728727317414, 15.075503055289843, 17.703320725873898, 3.9392396536523693, 5.281047144440344, 6.850006499508329, 4.78852266706417, 18.252862383014612, 14.06386881799631, 7.800758212836882, 3.6160023734406135, 4.13778716803772, 4.49986324217944, 19.13220017897945, 12.755218755645144, 6.608954344395966, 8.109778533399034, 6.898126720112915, 4.937387643357925, 3.7478619672931286, 8.181705457182021, 4.589047519185638, 7.070748278808379, 7.5176286026028345, 5.066043693493403, 5.494120136357086, 4.8776289313145496, 23.261725688677377, 10.225636745614475, 7.137366367896747, 5.098210407658917, 6.951877578644951, 5.160953621288886, 14.478626821015572, 8.877127806933315, 10.938730638085136, 14.22872732335504, 9.478545484630818, 10.801406884581713, 7.949316200187759, 5.2320398795688305, 6.199906341017545, 5.4121255876953205, 6.52494289974015, 11.875221683865798, 5.2019141603568135, 9.860670287679715, 5.690384386268766, 7.947409772071723, 4.659884372369912, 7.005749427563629, 6.110595707400163, 4.57669016689432, 5.645561055812006, 8.938809204192737, 15.196229275475966, 8.853436863932606, 7.89300437870903, 5.927037850078655, 9.27596597886877, 4.64498237597609, 9.167059564467, 16.115956335096946, 5.644734046992012, 6.823406658416359, 6.990954488950574, 7.457479292053186, 4.848224376584823, 166.47541666666675, 7.6261911954567205, 4.599241597726019, 8.179371408191262, 5.500599979034888, 8.30167612532961, 13.436177173928842, 6.117076117354758, 7.806827584212803, 10.188496728119697, 7.844409787640625, 5.046102331135933, 11.314115697363873, 5.823836782633544, 6.092201209678554, 12.114451631645014, 4.6539629770640225, 5.06862949557781, 7.035444529399435, 3.5043914490254453] ss_total_hash = [0.0, 1.0000000000000007, 1.3500000000000008, 1.1400000000000008, 1.0600000000000005, 1.380000000000001, 1.068333333333334, 1.5800000000000003, 1.520000000000001, 2.276666666666665, 2.5650000000000013, 2.0375000000000014, 3.3074999999999997, 2.228666666666667, 2.5145, 5.108904761904758, 9.68666666666667, 5.103880952380953, 4.739047619047619, 3.2886309523809527, 3.0494722222222235, 2.2680158730158713, 2.6347301587301573, 2.569333333333335, 1.9569267676767663, 1.974300505050506, 1.8238095238095242, 1.8025000000000007, 2.2234433621933616, 2.1262759462759457, 2.234155677655677, 2.5328582251082246, 1.8249087301587303, 4.28922222222222, 2.3010443722943714, 4.488727272727269, 4.883132034632035, 4.835193861693861, 4.229695297349708, 2.898316041801336, 2.944388930513929, 2.847198412698412, 3.3173741536241526, 2.990893939393936, 2.956015341383761, 2.981594097423044, 5.522365079365082, 4.259163865546219, 2.0227109279609286, 2.741311516914459, 2.5181587301587287, 3.2018482350982342, 3.4778144355644343, 3.850927045177044, 2.41322587253934, 3.2781280794369017, 4.092189449439449, 2.509321380672093, 3.976297619047619, 2.8724137336093856, 4.858544772015049, 3.4067950937950937, 2.7373707674453107, 4.383735418768027, 4.031776286337986, 3.410242419266556, 3.0258437950937935, 3.7278829384009278, 3.6347941443264027, 3.315129733491145, 2.6173167706476517, 2.870930417827785, 4.6401742448727745, 4.134011639530614, 3.9339930592108, 2.606298554172007, 3.4107280219780214, 3.768343771811262, 2.782505981739853, 3.1381493668295315, 4.126191549499093, 2.6051036693784355, 2.7482490379990363, 7.702788221263826, 2.556195374744608, 2.5105410658019767, 3.219166887034533, 2.597745863214912, 4.628805165397904, 3.7194470993272124, 4.915139477489476, 4.885871031746028, 7.614527580262872, 3.0740182525592736, 3.215831446331446, 4.612165523241508, 3.0531669063507283, 2.942134655549129, 3.300932461082459, 3.103323726013492, 4.266287185673646, 3.2781156998230503, 3.6463326591486735, 3.626761416429097, 3.816181480390131, 6.797051220937874, 4.003772989179721, 2.4146258855629252, 3.323718380283042, 2.7095547387878427, 2.8544396740684124, 3.708733534413642, 3.1532188382141935, 2.909411002589203, 2.9275904320508386, 4.1698851554433345, 4.056087059947277, 5.293429973957019, 4.860194042324853, 3.5585838453998835, 4.129701721694046, 7.804706677309615, 3.6408082973699845, 6.56812829963045, 3.0690756889989044, 7.176900752186044, 4.994252919741409, 3.618340578936212, 4.975841909577909, 2.7486940433231664, 2.684215883436421, 4.166961217814754, 3.8380552911244825, 4.099575984754483, 3.605527621948839, 3.511787729655292, 3.4103961915806886, 4.471806125125021, 3.2201177756820623, 3.1059254671601026, 16.755278895041975, 8.190809793148029, 3.2492257264464914, 4.26576474342651, 3.801741677136025, 3.870474038107173, 4.249430921416989, 2.8287745957051094, 8.016677892583514, 3.2302389863138337, 4.813405935880276, 14.782019607843143, 5.330585481183707, 6.560581909057517, 3.5569051677777743, 12.938892857142864, 5.144251222894461, 7.085220678594704, 11.486971069322625, 6.3021576589394215, 3.1901920695699797, 6.091371785834971, 5.617076944903241, 4.3420813416754305, 3.453471177627698, 3.2845736483837884, 3.593575049497437, 4.010965270394988, 3.8388543591703588, 3.1045416226399793, 3.8179340193964797, 3.849772634272312, 4.098890650614775, 3.719188514108638, 4.699399577640306, 6.121319975407963, 5.107286423561091, 3.4987398647816, 5.766150467520073, 5.614886307396639, 3.115178988666992, 9.702205337910586, 4.622912858593372, 4.12165327187773, 5.866318433502242, 6.389597070155504, 2.8033502449503866, 3.548988025378957, 4.47090008333068, 2.9419595759306634, 13.760187278510688, 3.502551297277755, 2.9013317632325606, 3.787331075186104, 3.7450724015600296, 2.9501371678722426, 2.856518470592921, 2.789187555983974, 3.7078649589183295, 3.118050537200597, 3.0681621197739424, 4.267940883896618, 5.7833720483970525, 3.4465728392676005, 3.3473048499434386, 7.108582974277895, 5.4919269243444875, 5.386246122825336, 5.407170598942025, 14.22886249137336, 4.668948277522315, 5.966313808090884, 6.7102252894635965, 2.3757815213022746, 3.8683244449276906, 3.7778479208531177, 4.625790030740215, 3.1750841798759963, 4.827528243243348, 2.474277503562953, 9.163035561820166, 4.956319250547605, 4.717256190897462, 8.80720499041495, 6.336684378374483, 7.20406810085944, 3.9912309356395155, 5.163762910157242, 4.047084953260784, 4.607223098038002, 4.902407717068601, 5.513593092862951, 3.3027255171823686, 3.877844808461328, 3.6988577868082033, 5.174498064968243, 5.276947610491879, 3.465808415853251, 3.862272316340702, 4.771289190093558, 8.090619933747202, 15.922157607705026, 4.973901694243462, 5.341430289849321, 3.3296176929051686, 13.006445921530979, 3.626706767654621, 5.263804567401539, 3.0869612747933335, 3.524795279161144, 6.6822559553009375, 3.6775674887149297, 3.7778327788554464, 5.740946293983035, 3.1088915133943877, 8.811134376903299, 5.943495896697724, 6.936836405168678, 5.006528849277777, 4.70144570003112, 3.4115538728443333, 5.573569840379627, 6.857773046535781, 5.643557906784944, 6.0979069694868215, 3.7027443051995768, 9.191026021412217, 5.2691916565438355, 4.763613361098721, 4.177731437984968, 5.404412570745232, 11.204267604715275, 6.48597974792106, 4.519527384443176, 3.368595700722483, 6.86108932457095, 5.269367862262256, 4.3473380575438085, 9.578369033867066, 5.001788692257771, 3.2049520524410764, 6.521655818020075, 4.796237375519232, 5.6440677268192605, 3.8980165003466163, 4.6068834840148565, 4.111747908141366, 12.677577218567086, 4.93889492191946, 4.335228914163805, 4.192541834937327, 4.678391442155364, 5.991759882671503, 4.305724753769083, 3.9486125917139017, 2.4403518096282797, 8.620092709427169, 4.080127228069762, 6.732602443811601, 5.039900985504933, 2.5362416118754294, 14.111525254005937, 7.267769623048372, 3.448774999817216, 6.276417028227601, 22.68497619047617, 5.452316017787222, 4.897408025088945, 4.610448666066334, 3.530609433394316, 4.884175303854221, 5.693907407252014, 8.453448917019742, 4.672849999255839, 3.5458163064699812, 6.2609213234687875, 6.614846070538172, 4.267510045976318, 5.780001795817033, 3.9180895667336038, 5.9369284251438375, 9.436376851123311, 3.8708650088938867, 3.600557058275249, 3.4662358526862045, 5.387733600852354, 4.271259510638397, 4.782069525518592, 4.49356851309355, 6.566318404250693, 3.944883477125394, 5.330308850958495, 5.69110212870885, 3.2107947699448554, 11.275163991458351, 3.7965102350653397, 6.375311975471916, 5.212589672126976, 6.741234799070995, 7.053963527024748, 24.532803405962074, 27.429562043998867, 16.61313736252854, 14.647601223917077, 14.568718343201095, 36.3412002371277, 23.088265247471817, 10.51204316782787, 15.898747070606875, 16.660277413932583, 10.123929849254402, 8.417265415690627, 9.221102783788867, 8.569800555854192, 7.940809163843088, 11.526813396080605, 6.768729151715287, 9.914226168406444, 6.922959358483149, 6.845377567920281, 5.602871700290701, 9.891494246573641, 8.472839793397595, 5.688392096376062, 5.367891363889342, 5.022025427983762, 13.39237279438431, 4.958034754935533, 8.499042277380022, 6.905456981868053, 7.712606257077217, 6.194993962022988, 5.405066161996828, 10.920310035034717, 5.0003497208887095, 4.211136266265752, 5.838017319906559, 5.371148794568776, 4.680293787392933, 7.670000570365724, 12.926110723404621, 4.415650669396009, 6.650277736548935, 5.0337333383872185, 4.558645013529697, 3.8831409556579732, 3.8250754350714415, 3.979656715506605, 4.017608543690826, 4.959121311188793, 6.577760851381361, 5.6843416152761215, 12.705545321673487, 3.3093747102798314, 4.124672577952959, 6.943434870936144, 5.213040601637549, 7.601711067769759, 4.646203714992567, 3.9994267394612675, 3.5486014762103064, 4.854514276207958, 4.753307372888019, 4.425512929340159, 7.487988811698051, 3.604071901878749, 12.125024579906126, 2.708871509010505, 3.5269998283401462, 3.1728255428262995, 3.238310818506904, 13.02702949510971, 2.9671555250601984, 4.139936298133253, 6.208104207788222, 4.756033268352548, 3.645103988483602, 3.912444627450089, 3.9570636389150438, 6.022246157513449, 2.2731805347708622, 8.779640986783594, 4.78565850514774, 7.92062174412365, 4.266790863834335, 4.965972288662904, 3.306648475526529, 5.514918915433833, 3.2560933208816905, 3.0087233079764704, 5.360762445766304, 15.864144660894675, 4.64173900279712, 2.7973136208334672, 2.7595035466591686, 3.0397940851494054, 13.867725239165734, 5.415401947105905, 4.080442257200228, 2.8187750887748972, 3.1033228864463447, 3.660723735101289, 2.728275358879452, 3.5043919558970216, 3.2089727700010617, 13.628548498537498, 3.67389798023905, 13.54209485538616, 7.728823841252864, 4.141068750769191, 4.280947541470967, 4.31017302512394, 4.565863723462557, 4.058093942672621, 13.76171488929721, 6.89841458748093, 10.993969593898168, 2.9037703781747783, 4.800708048600034, 9.526314492463651, 2.269672461940797, 11.113015637658068, 4.730968713429897, 5.785868175508369, 3.770368587282757, 4.9306026907203995, 7.0742434926595035, 82.12858974136881, 6.28353304242878, 5.518602987628061, 3.6480669359728437, 2.5976845795014785, 5.880395065397352, 3.5524869553521894, 2.886983068783989, 3.7159959849703244, 5.661075657056092, 8.201372248741507, 3.185047998007355, 2.473629548197696, 4.409791382083143, 12.824981771165268, 3.953384345193823, 9.828826897206934, 4.791032360198844, 3.6379820103836917, 4.490405988416845, 6.431199893511256, 7.1249576866651765, 3.2103561917834114, 3.8851596602136875, 7.888387099109719, 3.988838288263812, 2.961309495256055, 2.4205154283848156, 10.132259490543854, 5.998447794092414, 4.750433019936419, 7.197668544213189, 3.6561813617082617, 4.506211111738406, 5.06367509739762, 5.24997577010148, 2.5041340296198267, 36.06100331973428, 9.655690120138019, 2.8586655273256705, 3.382390572586764, 3.5077071439077847, 5.363420740939012, 2.4878686548281546, 4.021854147326, 3.448261488806581, 3.1949885207724726, 7.810327786394091, 5.27425751811332, 5.268366395993963, 8.649366368500974, 10.082159722098018, 4.149813775714628, 3.7312915022713753, 4.146848701322211, 59.15813782051279, 62.74629634692793, 40.229250610500614, 31.504544457407903, 28.021943760262733, 22.75647600225323, 19.660399220519892, 17.481478462181464, 15.462323135947882, 16.4569688575652, 10.573433972866583, 6.847483879656632, 7.41526850437963, 4.206175434068854, 3.3537532591783066, 5.1824574990106935, 3.5318638369124296, 4.927039395453889, 4.099656093342053, 11.572417129167134, 4.055316432189381, 3.2049815119103626, 4.839107882486904, 2.346167761024793, 8.182681382686797, 4.104253158211228, 4.412006113716092, 4.119182956814236, 13.761807321773118, 12.01639817246922, 6.761093665573172, 5.964637281685947, 9.618355858234064, 5.3758341558581035, 9.270858670196095, 3.3706029974482354, 10.533855033762045, 6.503411009739864, 6.7175204552929, 5.860933005836826, 5.907169616362146, 4.822800579308357, 3.427419885450537, 2.5247922045693554, 11.455075081168834, 4.94410356519106, 7.731036383692425, 7.254660638872994, 3.2818528399592743, 3.4504541394414807, 4.035006609115717, 3.742491088215772, 6.228754060333288, 6.49623332177854, 6.828191384815465, 6.441810847230334, 6.632727194231031, 5.900062231293053, 5.94517938086972, 11.741000784527994, 12.31256618295658, 11.076343789559694, 6.000355205408418, 16.222391379552064, 10.984036537085325, 4.5739411321308205, 2.7457773152215, 9.861663499670936, 3.8974200663989897, 6.5831437026180915, 3.650510010182906, 2.902657849804693, 6.302681638456153, 3.451369877361455, 9.180850126926215, 3.019744159471172, 2.981129952524981, 3.9984432960748304, 4.14949655851572, 8.1393195070998, 10.952323812399309, 14.472572913704035, 14.241541432214195, 20.43589534515193, 22.468892635772537, 12.748873722275192, 15.518780333241386, 10.203449270416485, 10.016760497625684, 12.409644872439502, 15.962802274416406, 3.152116281065552, 5.005113642817753, 4.915694146996318, 3.0384570791749517, 5.651417856193832, 5.977010905761399, 3.006282526971293, 3.4411982750054646, 3.958289939044961, 3.4304364729245087, 3.9732889634277657, 3.2799574433263134, 12.971634746376509, 10.13799552379987, 3.296154459511155, 3.372863234822485, 13.346880603296809, 5.791510065929769, 6.301546040611452, 12.086224565834586, 6.7138660422401415, 5.712915239641946, 5.9981823162964885, 8.884023137846627, 3.808269261188545, 6.445846992837152, 5.866421606231418, 5.452379570336576, 4.105963553200121, 6.181804514368588, 4.241918648376729, 6.819734357465558, 4.944620329835787, 8.361057758232437, 4.480031388043844, 5.381520467390604, 13.581883732561414, 3.46550032529697, 4.727433056428888, 4.1970229547956315, 4.319846748189796, 9.037294401919961, 5.722832370002547, 10.401515734308882, 11.03707803565747, 11.328209061893226, 8.206887563132057, 6.435280028413962, 10.489310562650717, 9.672692679444726, 8.237355605257374, 7.695739052134825, 13.836594936399766, 8.672593574570374, 4.273149736790202, 5.048280159554862, 4.655128322897508, 7.240841720571772, 9.034990240447975, 6.163318808331802, 5.126627195620588, 6.351169908993977, 3.4440075168747595, 8.645601308821897, 10.238974887471088, 6.194132184108202, 7.517793668183135, 4.693807535876257, 3.4926385028983487, 3.7662385035260244, 12.666013435813307, 11.706394206349701, 7.8717812836413765, 11.029609957738908, 9.00834555599118, 7.55939274217422, 6.829476783985675, 9.047129324104944, 7.583092093538673, 6.920246986848527, 6.215831103861818, 3.326696204784837, 5.060418575891101, 5.995065026343711, 3.995876166496662, 7.092592952986122, 5.184441551626758, 9.761880994756076, 6.29120394003403, 4.288574914613079, 6.310810120514355, 6.981992062654405, 2.9917451012424308, 9.154540239991928, 3.1753086697149495, 6.957044529790697, 2.9792376627523542, 4.3556813117952915, 4.34099956690516, 5.320221479176621, 4.998026724005576, 4.148880622934283, 4.987450797379411, 9.637939278150832, 11.942194383892046, 4.059800023572901, 4.314305396269485, 11.023698603932303, 12.717169070006957, 9.339228312343824, 3.985290295006412, 5.381003814057406, 5.619385078630077, 3.828733858206622, 2.696937908606452, 4.214720354918081, 5.366182240283729, 5.054685470789675, 6.940916167623478, 3.320826269392741, 5.172713623383537, 92.87626987455626, 7.904465901322484, 4.913063216615327, 10.597501145245207, 6.904572481683861, 5.519683165439116, 6.427898738110803, 4.480649486352809, 13.284443998160354, 8.409727198961976, 7.450158050358205, 4.433693322306821, 5.276683115247122, 6.4076292884835, 9.888907783882786, 3.8890057887357115, 9.356393319796611, 4.8291205543003395, 3.4859481993048647, 8.369455865993908, 7.538194564769679, 3.3484792335232942, 3.20230390339003, 4.336047853428875, 4.839196684577768, 4.51265925002487, 4.963099916665457, 4.895059668983747, 8.304538332825532, 3.9818398389894205, 38.45632554299496, 29.62672453617337, 20.95346153779652, 30.020236246575184, 9.195953987415106, 6.641596129627085, 5.252789817912772, 4.787556991386711, 4.98910777785001, 4.485531092625858, 6.215108978514234, 4.372366854286088, 3.3745409804621973, 3.821914526752729, 5.699299709719449, 3.422572130865946, 4.208985715974846, 6.835301169770827, 4.988763184550301, 8.46112075397999, 11.370923221561888, 9.728514211682706, 7.710381501570035, 5.752183421953434, 7.556573888479422, 11.283068393731659, 6.2723219388521905, 11.213982142599237, 9.755960412065626, 8.324519210486033, 6.646941865029686, 4.54035989150876, 6.792335088682634, 3.5363619723356567, 4.241469220194855, 2.5317272064045153, 4.903937329110921, 4.744302121462663, 4.048628227550667, 4.632029893510451, 3.6508253482372646, 4.082737241452378, 3.487407478012035, 5.750710079962399, 5.502279916108358, 3.604355852960653, 4.270207871115015, 4.176985816515175, 4.01069568279729, 5.171819232962646, 3.4356999193624578, 3.57591179505499, 5.156812644830091, 4.369412704205786, 5.300342131726903, 6.628833446499124, 5.070711407987149, 5.332275956114154, 4.09825705758875, 4.200775370219134, 4.0651373675401725, 6.212039495216179, 7.630577946211958, 7.202526515994878, 4.451924434335081, 10.50234732621547, 2.9709540525904137, 2.3285177563517028, 4.951020791950608, 5.983891792161793, 5.07641515864262, 5.289883796882151, 8.931688901670594, 3.061355044065644, 8.952058930583568, 4.958984412960176, 4.294050544667842, 4.787268247619688, 7.578326753129865, 4.881204617190124, 9.181339279708586, 14.665402910719267, 13.367571910184228, 16.183608695079265, 6.3771502196589855, 4.162147431815383, 4.538974526858711, 4.428699547110842, 4.8090374440742805, 4.24780524201121, 10.075242707934851, 7.714654243999627, 4.7977320397439165, 5.992291340061553, 2.5717097782223868, 4.711397521151246, 3.5669185704420663, 3.895845716764255, 6.4761511411178985, 5.15496640925915, 6.139584619011091, 6.348513232477737, 6.065132723226435, 6.703672172911504, 5.086611174920924, 6.221612327964702, 5.007832616163406, 6.058230612917728, 9.440513177259351, 15.444967614771498, 12.62966015928516, 10.175752352183313, 5.906115010501485, 9.353211924490395, 6.579428543390671, 3.393853016963937, 5.467400613328374, 5.725499483746007, 3.6927585365695452, 5.071508496741735, 3.7562008147462955, 8.395150145247147, 4.580861508304534, 8.216717886280385, 2.9273858634234293, 4.452074498629161, 2.5092544617996, 4.115363827589545, 4.5475672972949175, 3.7760112725824984, 3.936407188426855, 4.648007158181684, 11.279736635096928, 4.071379395647781, 4.065301155242517, 3.6630143563424964, 4.566293915766063, 5.261829420579421, 11.994463508713512, 5.330809946795602, 5.980790619700331, 4.258864292352526, 4.801500121216292, 3.00960149055054, 7.6907210193474915, 2.754676176822986, 4.335020489166232, 6.858605436176276, 4.699623838485779, 3.5293568540171267, 5.759224612216459, 3.708745159340195, 6.297310068785291, 4.821353042872011, 5.0691330703709045, 4.298541673446944, 4.9732093862234175, 4.399946328127182, 4.307333581752505, 3.426273267084041, 4.492909722774913, 4.212433965757787, 3.990774381060235, 4.40564640217719, 4.549335740269059, 5.350386191175547, 3.6634902351706513, 6.782150335198434, 3.7382760161509836, 10.450833381098056, 4.024426026685004, 3.990459508952904, 3.7804613246092083, 5.463027942170334, 6.381478790263444, 5.0824638020993795, 4.5746267564124325, 3.1936405390471445, 4.602419563090058, 13.815880952380942, 5.374143811496364, 6.128235187958418, 47.17365339769207, 13.313507507209394, 5.049809692230399, 6.785342144602137, 8.143101360489318, 7.130112844163601, 5.086644325810318, 8.96396949925298, 6.5553067171020825, 2.7945681427688465, 8.438789395535157, 4.053653940691853, 4.578397935261929, 12.323323220131051, 3.0526324527984205, 4.305368976923324, 3.921794533756078, 12.561709096459102, 4.0213151768985185, 4.598954409305905, 5.029956628847113, 2.463346154262068, 11.02298561322811, 2.9541255495622374, 3.9533748070921684, 4.963202840986297, 4.338689449439447, 11.42225901875901, 5.046536283578052, 3.999674261202438, 4.509352751159856, 10.202219969214845, 5.704772676128826, 3.4147926499628056, 5.189141330132342, 4.380092889230031, 4.60166913128615, 12.888461903622726, 6.593106761116906, 7.426793526006529, 8.00751091352994, 7.850395055438234, 4.121987950627481, 4.078043615768998, 4.118412302058715, 3.161615849463911, 3.8605946243348646, 3.7034731864836243, 3.1566664069834576, 7.467673119410104, 4.722328224352135, 2.691169392207855, 5.723076096868767, 4.4329105908013915, 4.690940051564777, 4.374255277252829, 4.299505661160516, 10.783264931232756, 4.5868760848824035, 9.756702265997129, 8.92790486823277, 13.974131768533544, 5.252224992864614, 5.54859278984201, 3.6469362073718266, 3.8821137876758858, 4.434794113391438, 4.52350065140208, 8.602670673968271, 3.391272623496643, 5.135700925986873, 4.19954562334999, 3.5133049843597086, 4.363432837085832, 4.046778638211319, 7.462599795025153, 3.787371863320827, 11.590176948051944, 6.986542396666316, 4.1786514189704524, 9.381441581628534, 4.623534437162471, 5.462159365398492, 7.690413403746534, 5.075780392546156, 7.869662970333407, 6.133516595588839, 5.095634519865669, 9.329907585656516, 6.092153028487035, 5.8528186587044795, 9.971187525158582, 4.4855329770209, 12.57806020035248, 10.657153104299239, 7.103065874055425, 11.193706003993523, 2.891438120836268, 3.195808852868506, 8.21871986493039, 3.4318325953460582, 5.763223282321966, 8.885126763557023, 13.187833277425192, 9.48047196594255, 4.642683475738352, 5.206811031063927, 4.280759416964697, 5.452378116940269, 6.188034155110421, 5.584204747458422, 6.1512361983903165, 5.849352556318674, 4.427300981279502, 4.486908522584985, 6.88576877962474, 3.661973372765151, 8.271763350868463, 4.4191312755412, 3.388151461368394, 4.528361313592991, 6.113380381777723, 4.237375505736311, 3.333252946133847, 3.5024842854857545, 3.498939089158113, 3.776730892525543, 2.5801712386478197, 3.7564609164776677, 10.615997105345173, 3.8353919258839313, 2.822891656735214, 5.03202567720802, 6.630559148378536, 7.925685037419133, 9.746315042551117, 4.362766093174149, 4.011052022132963, 4.821111678098637, 9.558333646546544, 7.725883774162059, 7.387763777279845, 4.511822550943623, 4.808435850408114, 5.44235787430421, 5.806450890241946, 4.296616260427543, 4.30073477647429, 6.275892086339487, 47.16448060342431, 4.47295708957052, 4.878016151652825, 4.679821886569365, 3.068037012541132, 4.481794134958607, 4.660394643392602, 2.7514550061934657, 2.912206486834996, 6.822185342836882, 4.871848799722975, 4.18951967822488, 4.487105009954438, 4.15258867469316, 3.8760351412524123, 7.83000475593325, 3.95028312465055, 5.193372012933243, 4.990845014841307, 5.387174814375792, 6.474201479758537, 2.879411916099842, 3.694952627152362, 6.1019053270259125, 3.026991644009654, 3.9374623733224166, 4.739248105097927, 4.051561330324664, 3.9047355921711704, 5.119037075547794, 4.270866044143161, 2.9479935801948365, 3.4832304407974926, 4.153263248032577, 3.3383784293239773, 8.26026890756303, 4.399237006658059, 2.8593665235654124, 3.6481675463547925, 2.646517853236981, 5.950468721407806, 4.348995737915199, 3.6657411368098205, 5.026756410400498, 4.057307843291765, 7.8360814542943595, 6.779223345297592, 6.091476490398275, 4.77051027288168, 4.576871475164391, 4.2658880702058735, 4.085280235658409, 3.4439176094099504, 7.755169152587991, 2.8393565876583597, 3.582001746925928, 3.7982595837749202, 5.73750516228767, 6.942481254736795, 2.634796022652098, 4.204788692232608, 3.4545856600773472, 3.4466325961565785, 4.9559930482253725, 2.8378968713748116, 3.3233062889601035, 7.053096069227061, 4.405815476814904, 9.173803698891575, 4.587143315045077, 18.237654185990063, 5.449187393706524, 4.28595707525578, 5.137722398914637, 4.541727865106022, 3.9298932852315005, 4.36354466780138, 5.544832780433009, 7.9254628546577734, 4.956234768192968, 4.527673457630174, 3.941120045940528, 8.927924730667764, 3.691235918494853, 3.244873780874555, 3.137955331940648, 3.452638232445837, 4.1005643247665144, 7.536338090597274, 2.617074883695137, 3.217016494857051, 4.356331174183678, 3.785929632005819, 5.415833308558726, 3.851229781103626, 2.7094966407302654, 6.1091485985290355, 8.633799366483188, 5.921038264123681, 5.090567998513148, 3.593483423983423, 5.146789213042525, 5.401407754932403, 6.205340332297295, 8.26678338096372, 4.218013875798881, 9.013103573678379, 4.724069623884994, 7.1313907444482885, 6.495678768110978, 4.799881866916045, 4.916563107152579, 4.494456798021859, 3.540902032796829, 3.691821396794726, 6.464981401616027, 4.93683400225505, 3.5849008938761764, 8.866766211750184, 5.509130035479158, 5.922887187991016, 2.9218601913896007, 7.755638396662375, 4.478229815007252, 6.153115504778401, 5.514374244851448, 4.224851850884381, 5.037321392333415, 5.243873406093883, 4.281227771027254, 8.678446415846482, 6.137608531772677, 5.051619797933384, 3.948986069440695, 5.3995826409656, 4.9550826656671125, 3.291790608971737, 4.6010371541118165, 3.0471708103573305, 4.772714851708976, 5.714150620390184, 61.392911073165905, 2.8608101906858505, 4.281066851521839, 3.2255082297720814, 5.564430855805551, 6.564428368024321, 6.169080314778033, 15.910288423758338, 7.665099856102621, 4.204835075458174, 4.305234576381253, 5.616878519639687, 5.560611812997557, 3.580824975135535, 5.5399546863146485, 4.16711737158526, 5.364628780737388, 5.00375406277772, 2.9410960877541084, 4.2926118547550765, 4.3239981837517805, 4.377901418855117, 3.927304942210813, 2.9575887004816765, 7.072006525679674, 6.077124487905434, 4.68762163400921, 2.621299083924498, 3.8877321299155865, 4.082208960168076, 4.954129826401801, 4.874949275341516, 4.317213169961598, 4.864687449555948, 5.160771959917372, 5.9345583346475586, 5.139971270837424, 7.724857408351023, 5.45863800217826, 4.0168132310300555, 5.32655890623048, 4.596952661825753, 4.170839862168543, 4.705912408873966, 4.310092996652579, 4.726472953502828, 4.808714309032316, 7.927761514075162, 4.9446133020458625, 5.796133863363679, 11.522064170971708, 3.9966795098474055, 4.133834362755697, 3.4583774902872233, 3.5340774757424516, 4.263045986127559, 3.3595160015272882, 5.34877452381409, 5.895896058749917, 5.2094731891915735, 5.0962672522205565, 4.438170316821995, 10.943164813400722, 13.49856623370334, 11.444984269035658, 8.842370962262843, 15.048575678857643, 7.553245248251398, 6.054694564550642, 5.35339335506349, 10.963891700557829, 4.772860076438187, 6.764392550329453, 7.43278848478211, 5.347347410562774, 4.925321720473903, 6.446210106794875, 7.152109462539122, 4.811184728964717, 4.748021394626865, 5.286989413787329, 10.01944445583031, 11.042925089089511, 6.6427197375032625, 4.334654160423542, 4.860269758146874, 3.6650969039942094, 6.082731344743052, 13.243053639600399, 7.161376523631473, 30.660422054565714, 8.371201332191292, 14.364960747038031, 6.561772175444466, 8.659845276193082, 15.735339017928194, 10.285101884800826, 5.458670909437876, 6.678944389730395, 6.998485604387187, 3.8357800240633715, 5.36565712599235, 3.8507421882228625, 4.043560424462745, 7.199483940822671, 4.551294731656579, 4.893942011235676, 5.494305316299156, 6.680242794396996, 5.984594869151004, 8.2084663528465, 3.7126790397049834, 5.4049867953495925, 5.580000383160118, 8.085464680655855, 4.554161459441557, 4.884321254245336, 3.8120156057446515, 6.248746938079707, 3.6585499998529705, 3.960496575168312, 5.241387148005401, 9.76195208846493, 5.78771772294805, 5.559372705749598, 3.9869996122960414, 5.755052340142404, 4.223458792938082, 3.9749924014825053, 4.467761874423344, 4.633779565835064, 4.679880279566777, 3.115053663716669, 3.7575544496465496, 6.099102824175809, 11.410902078014747, 3.87502181520898, 3.868895159759393, 2.9704954109435135, 4.101489018849772, 4.456420518649223, 3.8226443397615184, 6.435526883910749, 6.202536706264317, 7.106278201993178, 3.5179110367574746, 3.6201481634378343, 4.765588085794581, 4.705198548292472, 6.899954843048547, 4.346190199914616, 5.582094718695001, 3.83588960239345, 3.9434428875621235, 5.36018666248755, 3.27028795287142, 4.533994750066633, 3.365236249728957, 3.153803299579262, 4.681125404950462, 3.99181938918311, 17.329996067558653, 2.7958071237309023, 4.518327475991758, 4.859462824882819, 18.523144975730826, 6.911894945466734, 4.1433965607832555, 4.048976129453216, 4.193128892610581, 8.11674298721633, 4.496931150463928, 4.026662623481497, 6.923357969467305, 4.416634632268186, 6.307757729002902, 4.0042133379713185, 2.947528038251436, 2.92592832635204, 6.288406201899234, 4.923928928103076, 3.8001632938932945, 6.663670062056711, 3.4996841069227838, 4.582855545874787, 7.375210088005765, 3.8607222587431504, 3.6714698392859977, 3.976753081012669, 6.026261648299129, 3.5611166596548363, 6.1224898424403795, 3.670761822645756, 8.388903357097346, 3.082952776273048, 6.927874974628843, 3.0549985184559274, 4.032708079096234, 2.863587326342726, 6.7145107164116205, 4.170704919353785, 3.278615514203643, 13.95531825556919, 5.23833826325874, 4.287005503609711, 9.255356350356506, 2.6147786614947996, 11.111075447816663, 14.523806517748355, 7.942424675613779, 7.809165545273994, 8.824458291743158, 12.051386990651404, 10.127194293778144, 9.913467930023097, 5.6271930893122315, 5.715216030837049, 6.443447559349272, 3.055347746409986, 3.570376394127343, 8.284817229938179, 4.506468153615207, 4.747615182964607, 3.435596761234914, 12.48161580564314, 2.4461515936578846, 3.1860775759928774, 4.62911203241189, 3.7802217653829078, 6.300357393880508, 4.950547145396648, 4.975585859578165, 4.528044917106007, 4.980409649600058, 14.805749772510518, 15.69723019380277, 13.29427347733736, 10.865157578148885, 9.480358779952908, 10.613889117229172, 8.998992160285027, 30.254149497453753, 9.889240738339428, 7.053781674305781, 4.4564425048697975, 6.857667929486858, 2.544500067497885, 3.792976282117044, 7.148135995255125, 4.45090418567774, 4.720652527315238, 3.560341236916643, 3.054724559342227, 4.086259367401476, 6.648008889206841, 13.805132243185378, 5.246129068753612, 4.743881334794699, 5.551203442967795, 7.982400221309771, 5.077602046736699, 5.516218133586946, 5.285303389256306, 7.128662339930325, 3.733382387099297, 3.1657881784398327, 7.237060291829236, 4.11519063879073, 3.0207039133156974, 3.4141633652774686, 7.892364405392747, 3.1079660184098796, 5.809193867860597, 3.463786410601305, 4.89259665398026, 4.648453760871136, 15.603893607530953, 6.937372205781933, 3.2089782755024583, 9.803054414623418, 3.2713861359361043, 4.189096146659279, 4.347320552940686, 4.736772723907503, 5.480514501651979, 4.567156648415716, 6.030166594558627, 8.48505400888183, 11.658688355117215, 20.110426691847003, 14.472763791976408, 11.617530347539441, 11.733422916473746, 12.542552019556322, 9.477698259121215, 8.059739412582937, 10.03479908057332, 4.671022976859503, 4.220928476804118, 3.8091573674070873, 5.010579787526116, 9.723367020236276, 5.1224435318313315, 4.844825119476725, 6.265571094024649, 3.4609348408214275, 3.7103579730547005, 5.069549982266115, 4.3154485820105695, 5.59023963855222, 4.001772128094384, 3.5211324737940752, 8.684160646916853, 2.8486425282719567, 13.951526740600741, 31.06755116850762, 49.78763799056883, 15.907420103420339, 36.88924796306262, 13.375036905404857, 20.38297200426992, 24.434424911822155, 12.024029783042709, 10.93818329785495, 30.35956791421897, 3.058870982051585, 4.702235335923268, 2.6702098528256006, 3.7956963689567886, 5.025810651254708, 4.631164305139302, 5.282722037829768, 2.4469494059960475, 4.083939886030555, 8.301186730986025, 10.964485123153766, 8.591120012306867, 4.260127680180762, 4.032995118453147, 3.6414867146909344, 8.499881162296292, 8.833641444940204, 6.413335543876765, 4.851899721983787, 3.336964609278539, 6.253231252710686, 3.90434548797228, 5.688619262217754, 5.396808343307026, 5.380013573455854, 12.60960739615911, 11.202802813731239, 8.944233786936433, 3.416074616586221, 5.811312376210202, 9.078520415718515, 8.575377973727745, 3.8533258224885643, 9.907462655444435, 8.961554139288388, 9.884490491065362, 3.168238880752243, 6.399789775206224, 6.156477586221852, 4.129177174661325, 7.997136787580748, 2.820413498978201, 10.474474994578312, 7.9764533775666475, 9.861079732856952, 15.642481188491871, 10.948839291304703, 9.291757966248252, 8.761223949200346, 7.5835870597989175, 6.794940598937696, 5.676031892520866, 6.809239578598108, 24.516615265414014, 9.587660295186662, 4.9955804782303055, 3.667119321073705, 12.204582968104248, 8.024439858454384, 7.120199683175602, 6.814954780142182, 6.968526831311998, 6.523068724083094, 7.78849145928059, 7.218882685124859, 5.7492525661997576, 23.608199300233263, 7.008482191617184, 5.030491722464094, 15.885794295937949, 11.81876205938237, 14.532213865841598, 8.704540133305018, 13.515266553866315, 9.608911873202096, 9.56872662977447, 8.199656101698363, 20.027706629769643, 7.8529338670923945, 3.9834434055780195, 3.5493380069813254, 4.192809671807001, 4.6451425931981625, 5.160916569996991, 6.9150151306318985, 10.111995884287374, 6.396819560077796, 5.327862792638013, 4.91785360818606, 6.300753363770484, 11.35080447333423, 4.123218178151678, 6.189055084172434, 6.835200804900475, 4.92800637175521, 4.620570931108448, 15.08369243699197, 12.155722931265508, 4.199219639515309, 7.418214441002054, 7.6597264050152365, 5.5259435738503315, 4.5830703567980455, 4.73492466549126, 4.177437712654019, 5.277123047540208, 9.058766000696826, 7.369728999374788, 3.233349794717725, 12.078767453045039, 2.5648932281764556, 5.122175335025087, 4.696083881788672, 10.700961438882292, 4.558059360810384, 8.123968280386615, 8.837807018032217, 4.928486665267626, 11.528584831963704, 4.909009983755616, 4.269697748230936, 12.10387342543043, 8.732514624264624, 5.378969046083792, 4.684337376798633, 6.2089681894685045, 6.821508712041759, 4.445351705644987, 4.2143700720199435, 3.605646772173216, 4.460771159566961, 11.977733900712385, 4.810245046769452, 3.8416964379180114, 5.01790374162423, 4.488723515709362, 27.068854434016817, 6.181848902438412, 5.787212176310003, 6.715517268611907, 5.924060694127105, 4.943661210871157, 8.007100488545364, 5.717543736916324, 5.5138881854224255, 5.910120090189493, 5.230392416869012, 3.609496702975819, 7.282538567426161, 8.899444240863762, 9.555865421675447, 7.78257871400935, 9.543831247137227, 6.119478704113536, 9.273534788364074, 6.612854078843763, 6.37616393717126, 6.330600864614493, 5.926034126336297, 5.5664649350956905, 3.2280297529755404, 11.718444251779676, 6.005272339666208, 2.7236913575222816, 5.644654452155494, 5.214076632220889, 6.219201434838097, 11.982744721916928, 4.363322226270769, 7.407868765570012, 6.53387532701849, 9.705339887905561, 5.274518127785034, 9.494515799818583, 3.9026605439504265, 5.810497521432108, 4.633119403565129, 5.060799113300617, 6.09123044941587, 4.142972020168921, 5.848277073181193, 4.154318189352439, 3.9354404892868367, 3.2223311437104125, 7.777244743751034, 3.217004223916037, 2.9815600666972766, 18.221014431165358, 3.161196255695895, 3.9459870729720072, 3.702883550022867, 8.622154569671784, 3.9735404506700673, 5.981209543122855, 5.415540515980911, 11.953055466701652, 5.555104211814155, 4.911786706641273, 4.218014788930934, 4.094117969980627, 6.773103152960067, 5.026737046616952, 5.6343329321963935, 3.721841404400157, 5.285148443325508, 6.332042979593371, 8.35280433736445, 3.873091198698748, 4.54383920191682, 4.352318425528485, 6.217914028025753, 6.9828588894147705, 3.977485030725203, 3.269247635330277, 7.541327094140114, 3.675807527228422, 28.89569519989815, 21.767919010410427, 16.270253044054268, 6.858796677465249, 10.512623709615697, 7.0020837784363295, 9.55982773482317, 7.034791282768658, 10.592464332622997, 5.44809036873157, 5.435415977472643, 6.668772707332151, 5.679314837377838, 8.281008697755365, 13.602684119836809, 13.039892528675598, 12.264354604405293, 8.440083637014588, 10.684908213827795, 7.522831288438449, 6.593655165085279, 6.12249834302978, 9.063331843466962, 15.343926390389377, 9.691113778332738, 12.798590132247076, 10.103516686058809, 8.834105840479436, 7.834645184562176, 11.627456185159335, 2.820946960123353, 5.879507392578222, 5.232707344803825, 3.352694739855826, 4.972703568602907, 24.557670262325246, 3.778302021516885, 2.8246519351565316, 3.3741332050420443, 5.030736613959355, 7.778470856391337, 6.521088748905457, 18.628103229300407, 6.008601989906596, 7.038927300033699, 17.346825443545473, 6.252587573959185, 5.973711502780887, 5.0916632161836946, 10.421315170556674, 6.039142981316158, 3.985253049650826, 4.018021053349285, 7.340584141320817, 4.00772852222166, 9.294982276448764, 5.101753865150633, 5.543623367316074, 5.572383222316699, 3.2984702702829507, 9.491829345018667, 7.931917511508711, 4.716382813444102, 4.66280723020653, 5.421004406515227, 5.513252393047018, 5.775886858749223, 7.117459608062584, 5.136192888689714, 3.8836229969200566, 4.290225657854084, 6.8120273209960605, 3.93789393324461, 3.828827343472695, 5.312836660904232, 6.082757713319937, 4.8469814707208725, 5.688595443147453, 4.308076493337966, 5.277442313141227, 8.142677416804883, 6.016939871887778, 4.4635566467801615, 3.4440057233941115, 5.321674721202871, 4.244842655357699, 5.102482568854466, 8.624032677275626, 4.4723353940829735, 3.9213349639303026, 5.661463672020558, 3.448504686689122, 5.247533042041752, 6.527886696917488, 6.233200934188198, 4.818282005219219, 14.495835255152551, 6.774064242915208, 4.773625565852785, 2.4261448872358975, 3.569836603733941, 4.622779898355264, 4.308929013469819, 5.158093327142446, 2.0617196551041093, 4.996768769442024, 4.345133225848073, 12.95823472252148, 33.90673474671813, 3.5193301601501332, 6.670417883186214, 13.106789405790153, 2.684890285267183, 4.103449136103414, 4.906714745094826, 5.344148452528377, 6.834278620917567, 4.322984883752882, 5.000109550933249, 4.0606776342919355, 4.463563046921218, 8.603872606514, 5.203627482428852, 8.784431153978415, 4.746587656139065, 4.820576781928048, 4.212244576335816, 2.4585717970161527, 3.225203920386317, 3.327820501450964, 3.62936245901693, 3.056686993496617, 4.206316977762337, 7.384026359057822, 15.288491002989751, 81.16175992063492, 80.12169575888959, 47.273144135022285, 34.18986848823989, 38.935085837684234, 72.65853988369648, 43.09664234121824, 36.704438854849265, 28.931909049327874, 9.814947580417046, 5.46798416978433, 4.935729835263968, 5.255075576713733, 3.2055060247517675, 4.22589081656859, 5.745023043499441, 3.961375518820133, 7.263947664779165, 3.42435509609532, 5.458982997903127, 5.150820868134538, 6.536838048085083, 3.0016886804301666, 4.4092317089759225, 4.449448274591334, 6.096326088957984, 9.08846659437965, 6.982649907019281, 19.76244958030424, 25.50965841856683, 6.284370244415211, 7.479886932197294, 6.2556478973197045, 19.41043436467326, 5.411699317069944, 8.789882901955922, 3.700289115649094, 5.4021925984751356, 19.48599636331411, 4.689923404939835, 5.192333817952306, 15.387370872377138, 5.53856023161713, 4.470014384415618, 6.244747888670009, 3.4930873796760173, 3.535265897761152, 2.7935852540704778, 4.476909803237523, 12.948246677817995, 6.912007177889932, 4.807534105412813, 3.6195411506411204, 7.502074934470511, 2.682910040399604, 4.6949197334790345, 3.6392763970758235, 4.688541994197018, 3.3448984225670584, 4.686737694941178, 5.128267481925459, 5.76005076077871, 6.777253661134734, 3.5104329221297483, 4.196817777239702, 3.1198577904370732, 12.24507371064379, 5.432164677928918, 2.3636105521382387, 4.886843628471507, 3.467821176978215, 4.073694695029432, 4.531867428523773, 4.19518399684301, 5.678559176132135, 4.359068952734908, 4.523239213543992, 4.969275308374778, 3.8788516490523905, 5.635026032226521, 3.385996765394145, 3.2997273411840866, 6.8088898451143525, 4.095125630644687, 5.405039592895358, 4.392854202598866, 4.33102635580839, 12.66280902104432, 4.5563107134216825, 5.6730163733314996, 5.006036355708364, 9.348740071687056, 4.730657256087983, 7.337569324141001, 6.79278183925815, 4.050839657061864, 6.315357175992989, 6.7608727516907345, 3.355879726686526, 11.258501535430069, 4.7661812216933335, 4.358481229989847, 6.484756740410089, 4.492025904498308, 6.299575023941294, 3.793177091467976, 5.458036266176444, 4.7512300651376, 5.219894171133435, 4.07141191006743, 3.666160391359029, 4.267649704993741, 4.780921628863763, 6.728743391137899, 5.962497769259192, 7.576535034062086, 7.366673940470515, 10.293612660184262, 5.799346969788693, 4.898234847560316, 5.674835560142099, 8.185785399784587, 8.642667434064379, 6.23374570805941, 3.8224963084568424, 6.080618205603612, 8.873756451302, 4.992578606900982, 4.004984060496595, 3.4163289928954623, 3.4690499801556114, 2.789029120221359, 7.7954904425317695, 4.186532456817228, 14.256853088476833, 4.4310110610409295, 9.373341743481834, 5.504372603176404, 7.232406614976781, 4.04455751041864, 3.9921776299213203, 7.3565108111866335, 9.001618082210072, 9.902769810088847, 5.897197900582757, 8.762488694143107, 13.290425771346538, 9.74683727208914, 8.674603617260697, 9.785809175703564, 6.682155373224314, 6.866782010527729, 5.466983431823753, 6.323923077062753, 3.3217707013432323, 4.751808817933135, 6.682952599199768, 6.910518810014953, 3.9569143415229213, 5.70898900484417, 3.6548787102975497, 4.991029265888037, 4.884085918326772, 3.9556783235840336, 3.9429567404263715, 3.636785914225929, 6.863723715016034, 2.8707602511186363, 10.494433107664522, 5.736098996900259, 10.14841498407873, 5.709030625317212, 6.148034066080445, 8.72214333838965, 8.077315084491497, 4.972751227138091, 6.4704874977049505, 5.756402323441126, 6.326208635910783, 4.255578171983516, 2.87613843585509, 3.48734537607901, 5.577273222856443, 11.630866224050592, 8.677010950018294, 7.080056906418076, 3.993465155982772, 3.1386187736101863, 6.156863858467335, 3.914021684461467, 4.91545204283545, 6.436193831216202, 6.4386305933731585, 6.596074452139052, 3.8702068139926498, 3.9315546646293176, 5.818801321262153, 5.703124086797422, 6.585278668287509, 9.436138524738823, 3.9838411176810635, 3.990371827822454, 11.563935569378755, 3.8148149857212634, 3.663436042514696, 5.469464678649792, 3.944839972551177, 3.765042048318647, 4.555369141988937, 3.537216238130283, 3.856186214318503, 5.3022383332754135, 6.108002057585455, 7.085126926990989, 3.4723848067668164, 4.856853530549198, 5.414687888235522, 3.5870262059454054, 3.5682114078557468, 9.528643134936319, 3.0737091407367094, 5.153100184819764, 3.4171118804312854, 8.607760159483462, 4.787052828396503, 6.599074541044044, 4.975759770867666, 5.000501722304945, 5.243508099354661, 5.900163829418601, 10.78440827310437, 11.405487165044745, 4.364530637475648, 9.43407761587355, 7.398489372512606, 5.782421130755299, 3.3495516822769194, 5.925859672684124, 4.2935453445783045, 5.095418683607535, 3.0912714695523063, 8.098248288092002, 3.538152604959822, 3.7790447132129836, 5.347444823978706, 40.379641929587635, 9.178682788669224, 3.293644850668885, 3.805442189750852, 4.542636308538936, 6.06450331732959, 6.876642364992273, 4.627474968482321, 6.6763715791339475, 10.75044445951998, 5.551983708938279, 6.2737660677255604, 4.8391375101676815, 5.306710252453627, 5.768953409401189, 5.3689826160061775, 4.76017088895565, 3.0055705116826115, 4.633253085619834, 3.2777876009807394, 4.535916103566866, 3.49510732715888, 5.318870792872231, 7.6178771493609245, 4.457360359067265, 6.205755094936417, 8.475331872559337, 7.322690818681334, 6.433672541102929, 3.867309363362047, 4.4748955669896375, 3.38955140954419, 3.270835496496255, 4.738474383813802, 4.969240348375826, 7.635410007819514, 6.390878464508162, 3.965492439033847, 4.70033046140499, 3.0096354333781825, 8.487165480746308, 4.447279953339558, 3.469140341673329, 10.134263268197632, 4.121641162835477, 53.24848032324821, 8.77004426827255, 3.5394579778408293, 4.2423040223345225, 12.211793234543244, 11.249725546816412, 5.30569998652622, 4.019660933064815, 4.798841506684069, 8.940913481586948, 2.507792975311383, 11.113024671637117, 5.34167530273325, 3.4950973270023282, 3.804141290188885, 4.810450586541832, 5.449802603529157, 7.05716057598439, 11.668004923811356, 10.338072432862429, 10.124874633761001, 7.490873835695796, 12.94362379402179, 11.324473897956716, 24.114145364919157, 11.563663390992117, 8.216616317163895, 8.393513700214498, 4.451515971758177, 5.164282465993031, 5.014038552430046, 3.579545920702781, 3.9261559946972837, 7.033116581860979, 10.590025538155503, 5.799619640727479, 4.172716790267285, 7.453857154916545, 8.554055912900699, 6.86629124594498, 3.6939329581682427, 3.962242997224546, 4.816933159101818, 3.954041905007235, 7.357894662753643, 23.351413976763997, 43.193566038767685, 32.4113849268263, 23.180901022064553, 21.226775595633327, 20.857564362933626, 33.460808003374694, 42.91766301154985, 23.7317925428602, 24.49243947943949, 8.759061102898633, 7.890357892344611, 13.430402844626698, 4.129168993618685, 5.697653692165744, 5.661383167339817, 5.209566823740624, 12.62630373340533, 8.076285030095296, 3.4056545614363123, 3.832625784121517, 4.244797207550776, 6.057294638353262, 5.628911866987401, 3.0502503310679066, 2.8393800811793186, 3.965206959306568, 2.5640393537500614, 4.032250848366885, 117.9972879019129, 4.243281327111881, 5.078346016199634, 4.224986588265364, 17.035891697187203, 13.056865149485967, 10.741271040501642, 14.15074039640911, 8.990575856709487, 12.227802569835145, 10.990208006650038, 7.848251919229921, 10.193737950708174, 10.326105175446353, 5.206391986412236, 4.786348533027321, 5.5445866361519585, 5.510728232154364, 3.7619128542123565, 4.618860929602794, 3.578178333074486, 5.507155255322067, 4.722045727024101, 4.687555848856346, 3.645377253768325, 10.849498555492794, 4.436705610698515, 4.3286571717105415, 3.5309007781801562, 10.826417483108953, 10.295566865810175, 4.76408851942502, 5.109723680637298, 4.7487412937354865, 3.9472359780146995, 6.489316993786085, 4.85532318968199, 4.87781840001853, 4.7249438181565475, 5.5084002176120554, 6.014901621471513, 18.62558732072848, 4.9670828186868015, 5.691953412701199, 9.119827668490732, 18.206369454989506, 6.114696402375234, 3.0344581912834485, 3.9945127796237894, 4.562722784769736, 3.7909086300316006, 6.840499570450592, 3.9609008102141043, 3.6346141688803977, 3.2353443906073514, 2.8710496748020464, 5.89449016464259, 5.76305354960043, 7.704058125515652, 4.157589778386268, 7.479020037257518, 9.794033662375211, 12.89261919129115, 5.031833923658833, 6.271855349994621, 6.444325763910109, 5.655486075975755, 5.58175704865538, 4.293227074265588, 3.488157132679666, 9.533614025519707, 3.7577759013367893, 6.5457700674073385, 3.1064702654014598, 3.290629481148784, 6.283258740027702, 3.7034155381264635, 3.4419168989340223, 3.8625561531673545, 4.9247487468095725, 7.148395451612727, 3.8986360210010127, 3.045801704693405, 4.221347261372241, 4.893658807555531, 6.546911415754245, 9.314695531733452, 8.499089142659042, 11.11378159428996, 9.059466202404913, 5.5464475458958065, 7.073805574829361, 8.610671271311093, 7.219161328325678, 11.037841353527616, 6.22911432125318, 10.67968939752829, 3.546755859800625, 7.725648351648349, 10.949817084409784, 5.849557963261266, 3.2979528186415323, 4.2192650724585095, 4.331111684455433, 4.107303062150245, 3.267856766179546, 13.375416032857315, 2.8118938950200763, 2.3024140367880483, 4.230234862553974, 9.617309030756504, 4.108743160791284, 9.32987974830578, 3.1645558505870475, 8.781075955081821, 3.283859006519032, 4.008178743555156, 7.883833854262172, 2.9627698580251933, 2.953828234372853, 6.491851928552499, 6.744433182293291, 6.081295924446468, 5.26263924312422, 12.388463604305604, 5.930827904818715, 6.286546730769856, 2.9405915111499343, 6.646759639563964, 4.193625695457381, 4.706291877923744, 4.140504444975885, 6.349678202635518, 6.528398600820012, 5.532138965360523, 3.3985663561824317, 12.066142611094877, 9.120605947858465, 9.058409338254807, 5.367912354387388, 4.548519004861493, 4.490789811115586, 3.0974069577768377, 3.864003529153828, 4.9231988563910996, 2.9677802433077765, 3.8795272353732786, 6.480374672279066, 3.224851027999989, 4.290666739042191, 5.168789530210684, 4.280578035272867, 4.2758699092275245, 4.071819738020535, 2.59126282472558, 3.3175844051659515, 2.900487135180327, 2.865366573763542, 4.769168467650356, 3.5461815075829675, 2.848636592511421, 3.8032641320524445, 6.242190508098665, 9.603697297358295, 5.61176679091397, 5.3576691542569055, 7.913776558973933, 6.818386884629887, 10.517077810965558, 5.962936117676499, 5.130061445777687, 6.435979472606654, 7.196375955653815, 5.045662763056894, 6.714178221002981, 6.791992276833122, 4.201121002240296, 5.535013566029674, 5.692774074571361, 10.051496122727055, 3.929626598006997, 3.549550148707501, 4.696095793610648, 4.155173290905821, 7.945115630262546, 2.7084924248694624, 10.603185910525529, 7.1816810687578965, 2.750816664981074, 4.6716859933119546, 3.4402355788565857, 4.673065545401684, 9.026776180251264, 7.290550087240345, 7.235684031840834, 21.52587067497048, 11.891582315263173, 6.982679472278428, 9.936364210489677, 6.900146536524591, 5.752684525776131, 8.670687317378064, 7.15379261629135, 4.026666852049, 8.00282109933467, 3.4771359793973318, 2.9286190551267053, 5.428936539779749, 2.3337748636817883, 4.729265434138316, 2.8772153701062746, 6.2754591830231, 11.268416583571971, 8.515743542555164, 5.861711221107073, 3.5019789807078934, 4.148805794143606, 6.058234556592136, 3.6811734225357218, 5.8800249368307345, 5.326963294194311, 3.4129789883209, 7.965300542419774, 5.838556091274547, 4.255796862822298, 2.31752295558565, 8.128303196924621, 3.178308973974311, 2.557812078203983, 5.914476125384827, 3.10801581412836, 5.761344178124272, 6.224580871671229, 5.0700426113755634, 4.356092873503932, 6.935121383512396, 8.809173803937927, 4.614619950228427, 4.4880114205373145, 10.531124498148078, 2.8513430181698816, 11.778897427940377, 4.540438552954968, 4.827046805297285, 5.414916345065912, 5.832229123274316, 4.8591712990491445, 5.516816886310844, 3.290798952143, 10.01553768669299, 3.610765944033879, 8.184194307816366, 3.7556813600898167, 9.841153019464704, 13.42095265656221, 3.89364029307202, 3.9218588078681074, 3.9521171755624205, 5.639935531498763, 6.1184302215176665, 4.861130986920713, 10.216849893971077, 6.400853812259368, 4.495401130598721, 4.7642075817492815, 3.786206969933047, 7.858325615159736, 4.893482841350007, 2.7971566773570578, 10.953768267881298, 3.777571591029447, 12.181958184053075, 7.137746395247882, 4.3018084807324755, 5.613681848513228, 3.0895642942540213, 3.3402074949020366, 3.891258463291453, 7.7126376626722655, 5.41404303417637, 5.793966992928525, 4.76680438312737, 4.144125447264596, 3.641465574589822, 10.793907991606774, 4.304475255127681, 6.303546500441544, 3.259905703774659, 4.685094948924671, 5.925236684692773, 6.769418195952673, 10.50849793203751, 3.769509795120433, 5.85608183195035, 3.495876836253492, 3.7352105999552574, 11.57313382915813, 5.202742526983153, 4.740266729451806, 3.6252494688894714, 9.054895426596799, 3.7399921338279998, 3.7259422858702957, 4.36692305125374, 4.591360432419732, 10.054671086039388, 10.399573443843238, 3.5201837198169423, 4.44670508318755, 3.6311907823613914, 4.526127475249194, 7.8614751876359055, 3.1802362207242694, 4.294564708803062, 12.816830705648815, 9.393620112767872, 3.8504600022183553, 4.328214925623659, 4.943542932904212, 3.6302539051426765, 5.020596276071606, 7.32988319969261, 5.676223734149954, 4.475835391860254, 3.284058554268177, 3.579666760037782, 4.064991069234115, 4.909187583732258, 5.254250496574618, 6.023055102093919, 3.4013525205287203, 14.573890070002593, 4.709086580226493, 2.4664609902777226, 4.687056593062006, 3.770339884182626, 4.925534077480186, 2.3268440145498883, 9.25897962236421, 4.8837188990589855, 3.821547298554849, 8.219327591349954, 10.219085996144534, 5.10976854575516, 5.409977893768204, 2.3893413997458115, 5.710543639582335, 4.289831842205411, 8.00759596365895, 5.56982628550088, 5.092878171850799, 6.163270664551135, 6.302862318742356, 4.104064256743524, 5.443664250910751, 11.52308454485805, 8.724519429282093, 5.409369251155525, 3.6199475350247776, 4.535607183169262, 5.378326675432671, 7.139849732217351, 5.5137719406844905, 5.434329621090836, 5.169842253534696, 6.957806259613613, 6.818446709548397, 6.093669556378579, 3.005414569698782, 6.477795260362503, 11.17578116562232, 3.4102094754006718, 5.330840870678097, 4.085351270869611, 5.614240487051735, 6.5790786885746595, 4.5150179703896045, 5.5861792678302, 5.42327826553598, 3.616633453912977, 2.217820311164547, 4.124328093002627, 4.1725540352402595, 3.7777263932874794, 3.7732112847027075, 4.467152407872649, 10.619752563011813, 7.964243692855647, 3.651257597358554, 2.9028344061448914, 3.8996892707610917, 5.109676499936585, 3.104043872496142, 6.36608345969648, 3.55963226275441, 4.0148866110075065, 13.71444308688387, 4.479158098873795, 6.66598672266097, 6.801296457172167, 5.792378310466791, 4.786910709923775, 9.573682946636941, 4.123090846463587, 5.431927548301732, 5.325698256257994, 5.302076835378403, 11.328441492628682, 1.976065737455398, 3.0292491606701257, 2.9296728449155784, 5.29438640961982, 3.595349955738164, 4.350246375310047, 3.798584244835201, 5.110233639785407, 3.4362971597456857, 6.796654953222586, 3.7281458506788727, 3.677049967973963, 2.131363278862105, 7.028717360682941, 6.468664812349718, 3.8984581652512214, 3.6236953337621136, 3.036624056219837, 2.995728662570237, 3.389383385115226, 5.130028594838306, 4.0325725425650205, 2.5043491335872705, 4.777185092027767, 12.512031825896514, 4.048784499474519, 4.860348300668364, 6.891805075687166, 3.7716469376165866, 7.108731981705309, 4.968963954013686, 3.2563431182717344, 5.60883522277536, 6.171317152809812, 5.701689345661878, 3.9755536137809604, 11.210088235280482, 4.003084564865417, 3.0174504477244803, 13.140030648696934, 3.9194957420873413, 6.709768432058864, 4.44554816568739, 7.299886951896999, 7.071494146556395, 4.318803686142156, 4.494134882626293, 6.8844492149084715, 4.433134787461185, 4.777960597944732, 3.4313862303764266, 6.853917454626229, 26.166835930186767, 12.789868945547854, 16.38564565531183, 25.289923906485676, 41.5264684972979, 87.37830211893366, 70.54163259441707, 39.85922481192641, 28.947082518735748, 22.371422571993225, 17.98977763902764, 75.03173598884776, 12.996863296425797, 11.630499481357004, 15.771127908989847, 36.595755448980384, 30.52750279841369, 22.32193623317575, 11.10819967879539, 10.2310045798354, 44.469404513679486, 10.91709848999087, 29.0340717098519, 18.825414253123633, 23.04512544999758, 8.958034237092107, 16.289220718908158, 7.376629382950526, 18.08214035732697, 6.789802476806285, 24.385368711283792, 6.241153717782802, 8.477055735723738, 13.058481070123433, 6.810086986053722, 16.356652046448907, 14.868662838809902, 10.919140633777323, 10.365131794844311, 8.774281431256306, 12.022381928586661, 10.357644475479695, 7.579247543181126, 8.611932881884309, 6.508047959621362, 9.851305689249518, 11.340148439495646, 9.451620857306095, 7.1647201907513525, 5.353432505548633, 11.581079594242883, 9.424977638852598, 8.276933756962672, 6.663214150245216, 8.769364024493106, 7.217956885708522, 7.912629603825477, 7.7784986147060176, 11.952807885813925, 6.682242434526344, 5.853331189556646, 8.109485333321311, 18.584025939180297, 7.548907613520337, 6.249883551361549, 4.220522451746397, 7.459937731605318, 5.653036336583644, 5.409096333587531, 5.847032467480844, 6.474976302409039, 7.7256268365995835, 6.119978430459888, 5.078887069370298, 5.917033699291365, 7.719750527368262, 5.567609719050111, 4.729250912336727, 6.2255612880286115, 4.838315285031771, 4.31181402158675, 6.537415725390276, 5.213000247869426, 9.630489698047123, 5.388761784791018, 5.874521450585448, 8.235463566610402, 8.152699249500488, 2.841333383754523, 4.239775006549442, 3.4640594402289357, 4.0265460261993775, 6.814655215415003, 5.123242945111291, 8.307931947526537, 2.850739649469588, 8.323774513852248, 6.5529799944916745, 5.503995844739082, 3.676450870661222, 6.899508282611602, 3.5569274238769215, 4.456401911573098, 4.082488091132474, 4.682286024279139, 5.712245856289866, 4.125635666490353, 6.317888324521272, 5.3713079115029165, 2.884874192605913, 3.8091244958858637, 5.421303644187788, 3.6073477734301527, 3.5611946292808603, 3.44568889690682, 4.818461460860144, 3.9127761292252465, 5.29583697215195, 5.008996340195107, 20.023618800206673, 5.250680768730511, 8.839628186516945, 8.74981058074158, 4.849449455111473, 2.5526498616939284, 3.86364983351761, 4.705465937790719, 5.582850133306921, 3.2984860625956802, 6.792984610447627, 6.2724503364906585, 2.9523346115432303, 3.8920362977747627, 3.8626882562151064, 3.663422549608348, 8.974094974823663, 4.019016592824754, 5.501143428193198, 6.855356007343372, 3.8730937443865403, 3.545111299705891, 134.64845820383326, 7.712435105295184, 16.24932152079017, 8.451107452838823, 4.449733019454339, 3.9605108387637036, 3.058429777355992, 6.089661045842674, 3.0274391815906383, 3.125962731380436, 3.2120487231785684, 5.12780921819353, 4.764919561948969, 3.3591972314226437, 7.125139167177767, 4.125076546347379, 8.411789277123056, 5.194426338934401, 4.626484940882074, 4.29954339869132, 4.950278142458863, 4.473713040233974, 3.6834713072666054, 9.734665178691099, 9.963335709609796, 4.5051955271645125, 10.15872438458103, 6.819130094417793, 4.59163978660191, 4.583800493605506, 4.951260031051229, 8.590658984548389, 4.377323223659808, 6.455817971537174, 3.901408024359843, 20.561482739588154, 5.002248572190412, 5.381691576925973, 7.737661732546538, 3.4426812642865183, 7.159238968114513, 6.070287976302511, 3.6654859313422623, 3.926034136205703, 5.379547191598722, 7.886022094746618, 3.018005164892526, 4.166272015642814, 5.738118061776269, 7.5638537087635935, 3.6693639979965122, 4.618599907286281, 9.071588255951822, 3.669656868237095, 5.7697602936916965, 3.659453335296191, 4.470590654983417, 5.35337226673223, 3.8372402250732836, 5.711843446351192, 3.995905945219093, 4.345431045682113, 7.397551700937382, 5.373324530273716, 3.3073254824735994, 4.174016522325809, 4.892113733704934, 10.33988279319937, 5.226517699119841, 6.025288632944167, 4.148343030425735, 3.5865340779636665, 2.673871624976435, 4.774033218372142, 4.884364157569424, 4.27013916999771, 6.535657122332209, 5.059659743770213, 7.582989095540433, 5.370373036596988, 2.9891701406526034, 4.0134279597457345, 4.989108730184214, 3.2561432424577332, 6.515593319642883, 4.591744154984043, 4.680505987275122, 7.955503910486974, 6.084729965972776, 6.499707248643494, 6.934942807284347, 4.783628381691988, 5.01507453864628, 6.786437663349743, 3.4281579651419887, 4.700001374550832, 6.900359110443065, 3.3743687622691283, 5.735043299094638, 5.178931763276849, 13.807049301751887, 8.064929858682305, 7.368461708855074, 3.2829469939534484, 3.7158813773393584, 22.593128915381026, 6.910103975194545, 4.421472641869775, 8.362335501629971, 60.91921996005749, 56.40289508610096, 30.82570421673381, 34.2564886182445, 40.80318549658453, 22.284396687694507, 18.334304396248353, 17.567894484175195, 17.978798020452324, 42.95080294705295, 71.78799872037722, 50.70724070783343, 39.34382941260057, 36.08807261684488, 24.546672368101696, 25.150658798649733, 22.355517988415794, 20.815245555177004, 23.49685671607576, 19.614444149925475, 5.804079735431504, 7.537034482240612, 5.8510567786757015, 6.563756940504193, 2.6476257999726434, 2.9860596454077784, 23.941223863962815, 9.963358532796821, 5.127865705388309, 4.270398404268937, 5.290771383833767, 3.660781530148819, 6.345895427500652, 5.1823107309803005, 9.347576267275734, 6.66700966589205, 4.205028657674549, 16.990480836264105, 15.004869310712607, 4.087235921478991, 2.787995941901956, 5.322075081871731, 13.55650805204494, 6.555403478286682, 5.073922715276305, 4.686888263860564, 4.91907595851833, 9.629718057471235, 5.713109211008805, 5.414635617634571, 5.798930724923294, 7.231347514032144, 5.614546909208802, 6.117299970225988, 5.118855964731297, 2.734019271262024, 5.452092508612243, 6.4782203421664715, 4.392881353064211, 7.4523414969193515, 3.5641511669068744, 5.256107916164085, 7.337983414952807, 4.579069139162994, 3.9369389113146225, 4.741788073184309, 3.6795883414456525, 9.636019813149364, 11.753321742096222, 19.48602241415702, 18.60750640459049, 16.078564985833907, 25.162418125641867, 10.507119892718467, 23.28279221622399, 14.5644696331196, 5.627316868761655, 12.325629017108588, 5.910463782636333, 13.801087805869855, 6.8601248698758654, 8.755413570792891, 9.990870336811664, 7.720954138298783, 5.678960587670253, 6.204948674812142, 8.839417950142261, 14.741326851076044, 10.794701889013506, 5.466192094723022, 7.133125063718758, 16.391838511385956, 17.275884085304554, 103.73550747231693, 122.94781642785328, 84.35651404450665, 55.954533964702286, 56.20245465560146, 76.34958889588222, 36.58403716615011, 27.884112141561094, 25.143791545855628, 24.341986532705715, 22.260009565901463, 16.81996577089522, 33.021938420182344, 10.205362450726245, 29.215027232137043, 21.89874548936616, 10.71290688658342, 21.818047575241252, 9.15507956391403, 6.069674024479929, 9.441383260552046, 5.002009992224985, 4.28566132549313, 9.37375860368194, 5.8784058811861195, 9.964669709650176, 4.484199850988398, 10.850134120647278, 4.534385906699623, 4.863505899245857, 4.056596000222565, 4.208581974542134, 4.571959969681478, 4.358099041287684, 4.473212970484041, 5.59366408888653, 4.2572069764876534, 5.528171957390991, 7.1169497736011955, 5.530218703756663, 9.448154799603602, 5.156109346568625, 10.721568485943942, 3.8475132386682533, 5.7555143190099365, 4.826045341694251, 13.173665322077872, 6.376008402958782, 7.30399669217203, 3.8551624167190206, 6.83281303156537, 3.558684733687417, 5.851348522047628, 3.8508525874710053, 4.826561029951618, 3.656394639215413, 9.621924910235244, 5.133919658505689, 11.951673857519857, 10.502368106766546, 12.13363085850655, 13.88439443305056, 10.156672466807622, 12.97146612796067, 9.234352795594683, 8.270046767240656, 10.374482180927439, 9.622801591942588, 14.19899682196028, 10.653298265982524, 4.594584871076659, 6.914665054011303, 4.848607324469139, 3.777260317394446, 3.3584567770395677, 9.664654951778752, 6.527503557149019, 4.104260298279489, 6.703619887747545, 4.726803405492405, 4.2231108102798185, 5.1611491221129375, 11.5462387406037, 4.283260926216781, 7.695187717450459, 23.643456816831097, 90.20395285678372, 64.52555790407847, 42.455696625141265, 36.84526589992975, 28.733843310056386, 24.21264997441867, 20.809870466363037, 19.087852737739365, 16.78239699819426, 23.830727390430983, 3.66875174245166, 3.998195030903088, 6.141682284490941, 5.572883004352377, 9.152251455770374, 6.344584026659698, 3.5172761816661455, 5.425138893671749, 2.9511930712555725, 5.701108573951223, 3.0792489609525946, 8.080155398905376, 4.007340270739565, 5.195055873356524, 7.285760356711226, 5.979789560706435, 97.63805953744115, 57.45626534866098, 48.4481809149371, 42.35655271455649, 29.272764646348776, 24.374885709643426, 26.27156356524509, 18.172974635350876, 17.766928597528903, 16.225192839055072, 13.016360119581053, 2.685153778528234, 12.863674030859253, 3.658489522566479, 5.858355398987935, 5.164890735736547, 5.803709768031508, 4.962393161553428, 4.023481770171878, 3.6375787315287065, 13.748481900175285, 2.7594859997023513, 3.636226019559065, 3.631070054995914, 4.016282876160832, 4.222586114890102, 12.303768843373781, 21.473858051606673, 24.144777531607247, 21.213788614222903, 14.033999267794252, 7.046202514526379, 16.09611259096375, 11.109960296608875, 5.965434674042744, 7.247701518731817, 20.723253182264568, 8.304079360698166, 10.54344498753247, 6.566215048672021, 6.5367406646487, 7.402049064725761, 10.032758383715215, 6.104230657738274, 5.372707671927344, 5.580425489437048, 5.033423140141535, 12.903718556316694, 5.38243052612795, 5.1772180596503325, 4.51056228349026, 13.074502663541363, 4.507481637493834, 4.403738432278971, 3.9935197611397046, 6.717999169266091, 4.49251914791084, 4.08354750096736, 4.507556498592021, 3.4848472192728885, 3.782399003430208, 4.130510435070249, 3.541258433033842, 4.137656086153356, 7.226564766347879, 4.760768761128046, 4.507917803073099, 2.9870760341024756, 3.8933157270105525, 4.356892923880492, 3.357801664089376, 4.831794270633344, 7.361233765418419, 5.711543568799842, 10.27893157528804, 4.017027404933514, 3.55924792646651, 6.034121719164569, 2.841723159460062, 6.292520647565008, 3.33563058505523, 11.410736490357808, 4.453517680914528, 4.362974587260496, 5.151723146363917, 2.745567322753497, 4.712310713229678, 3.0438456759336083, 3.370851192571995, 3.241966514485012, 6.162009993446525, 4.959017381113768, 4.864072005901277, 2.721660971558352, 3.809725220954798, 4.997480570181392, 3.3517823502877366, 3.406300086594069, 4.554122243961124, 7.205303132491385, 3.9342291175670705, 5.02868684411664, 4.946336462751702, 2.6454949121376887, 3.598636487379083, 5.189033413178517, 4.914554030027327, 5.0113895543271685, 4.617045990403468, 12.12838612322687, 3.7810020330196243, 2.9196785362758306, 11.700756198327323, 3.5086141059404072, 3.7597441262298688, 3.8629762907367815, 5.436658103918225, 3.9967276816509494, 1.9817702593488942, 6.4993885794030515, 3.9883567271761917, 3.708655139516657, 10.49137293991663, 8.163853583834754, 11.467664437804846, 10.72988321730214, 3.4096740730935178, 5.903051827775215, 6.164309829655499, 4.8112715645875825, 2.858558360533963, 3.500321047890671, 6.999243387209991, 10.839316271105506, 3.758326187415245, 4.212183026803564, 3.6453856082620164, 2.8952893392088135, 3.0601154532199084, 4.027003797776594, 2.247711467331882, 5.058558326469395, 3.10316374293466, 4.036031781338574, 4.204298027321363, 3.421228958209376, 4.959465002129027, 4.884964428038823, 3.9995634268268407, 3.7905569380055057, 5.822108011828079, 5.352059497270786, 4.086017034899904, 3.983850396665683, 4.443495080850001, 3.875834049771171, 3.1487656679455798, 2.280751939377414, 3.1515916315011654, 3.0523818425558855, 3.734606641256528, 5.068009030439406, 3.4400272247770736, 3.9559727777812137, 9.818450045668085, 3.4087921729676425, 4.2075004320773095, 4.443998339885526, 7.396897023488767, 4.764894707914048, 3.952591241701963, 21.54718563574368, 4.68492132414996, 8.620287921888877, 5.624511564601234, 3.8746615021592983, 10.219203453308952, 9.358315857562141, 4.728992069928221, 4.062853512068518, 12.144191998844121, 4.486262278345855, 8.448776926232533, 4.952625416559658, 4.040629705596405, 4.526348529332842, 34.59733872989157, 13.678761048394923, 6.304744503957566, 7.513175459494395, 3.627435968947217, 11.153159315814479, 6.983058883621503, 5.178891576778066, 4.489687249659641, 4.879873028297002, 4.85928875439082, 3.4095621279863924, 2.7570423755615963, 4.351978816750196, 4.43148259662012, 10.931937569610016, 4.352839672675595, 4.036365001417762, 4.546002830022453, 4.557429081964653, 4.769353027650145, 5.1595773867306285, 6.330254286172295, 7.453189130599969, 11.570445777811965, 8.775855759853194, 4.449524909946228, 5.429251928612296, 7.861648767513989, 7.5886309749723315, 3.4883875885770017, 4.1694239943687865, 6.976512048880862, 3.7171004471033764, 6.686089976938978, 11.184782257595709, 10.275166220563927, 11.552287828058331, 11.431471129708443, 4.737158822723336, 5.45050025063536, 5.206258280892728, 4.117605671678844, 9.687784752364575, 5.674122665119038, 3.564377592169427, 2.5985375149420853, 3.8422955636238267, 6.287944839541794, 4.658382282567362, 3.8471350742468187, 13.935016621796285, 5.041743883780639, 4.748937816272925, 3.8240251762573307, 5.922388487141866, 4.523301125922138, 4.213180603123191, 5.395077611769144, 6.228309257700744, 5.180306167007933, 5.5506188762126385, 8.272305365312361, 6.783790445278734, 4.086037839353107, 5.724783977200769, 4.283517569828083, 4.499832093477796, 8.049097117666918, 4.579854300779949, 4.588082933676631, 4.805154347394947, 11.51836323307661, 3.981685108168632, 3.7996191020512513, 3.264020161300961, 4.961229673278692, 8.283856397124234, 3.2596195762828954, 5.138044273072976, 11.115685712716584, 15.55856163492871, 4.031813330196136, 8.36268319396, 4.227111657016854, 13.514261843711854, 6.4372709099939565, 2.8766793674240407, 7.787979187747243, 2.4922863475812527, 4.152215811536769, 13.337307225542059, 3.546165754093303, 4.9633424812631555, 5.198271453282407, 11.25140001384289, 10.386202080313744, 10.487643425184434, 10.77367300361389, 4.369652607835403, 6.83331876310366, 8.764309829776822, 12.062990346682477, 4.122026558080413, 3.9055876048611724, 6.211212886389043, 8.518673778416499, 4.744347145393589, 4.045341325070626, 3.447424978666335, 5.621065412215136, 6.502255363969165, 6.767622661310709, 3.0755160940516997, 4.505868801354761, 5.077560563126378, 3.2762409382025655, 6.64604818513808, 6.469418000107161, 10.71889198234198, 18.060625193681712, 10.354823876988286, 8.129975815582604, 5.1718957091503945, 3.3736173398266627, 4.347906257533539, 6.060221027358634, 10.065723114773217, 2.9074993672892933, 6.560497311016931, 3.795429573496836, 6.617096833923526, 5.214345601555371, 4.428308975575085, 5.313979513171976, 4.541795391045769, 4.414358929558299, 3.6607439902217314, 10.07234160108393, 4.250065593195666, 14.092812714031002, 14.601148319285546, 6.478347868197931, 3.903220977838737, 4.124680137633925, 13.017626019920398, 8.522498362185026, 18.218804592741343, 13.2140792881511, 6.880854676369332, 4.296325365045072, 4.589579073565612, 3.308105692427766, 3.9169606629449047, 4.371371787275957, 3.9993651104598023, 9.533802979517212, 7.352671125424868, 6.138867356933772, 5.5475788833191295, 5.669439620578754, 7.346025261158286, 8.605802179944483, 6.066815330485111, 4.040044457824236, 6.65178082773411, 13.237439935484309, 11.478623265768409, 2.6718606114458168, 5.503125011549142, 3.5993814036517775, 6.6984793596364325, 6.408538899578531, 4.256177819086992, 4.401474595358061, 5.750187801813718, 5.177088679284162, 5.182444226473909, 4.712762504915592, 6.229395435462804, 7.817935379019364, 5.694113787707276, 4.122296331531153, 3.5753887941703564, 3.000737595508039, 3.25979568639373, 4.875378579586246, 6.709298451329055, 4.736952452695573, 12.059883572419972, 9.293415506062566, 10.483555029482577, 6.652712492164352, 3.341978522661994, 6.18103596066224, 4.641891589666635, 7.294746453346328, 4.115404313374866, 6.79762902920832, 12.47701108476297, 5.997141443995949, 5.766902770178938, 5.578124439030997, 7.5290264160188585, 4.592256032942592, 8.909517099492383, 6.097256213825782, 6.635357173625075, 4.387067673346573, 4.825114659611441, 5.193394742162467, 4.581348953379567, 3.971729486734063, 5.886511395861748, 5.073607864465512, 4.682842356290484, 7.022798573337506, 11.605582236245068, 2.7695946125188726, 127.70514285714283, 4.415831905366381, 8.971681728616042, 5.699204405866925, 6.735143170057273, 5.452739371687666, 3.4154503544334163, 4.012416363356908, 3.853823170864226, 4.929958295490603, 12.294527234583613, 4.887356106482249, 4.311182170859505, 5.880846244978949, 10.315807191334091, 3.2263069183697706, 5.36913691700464, 6.064094433044963, 5.51601120932303, 5.913663721074781, 6.256264057302029, 9.887335443813585, 9.127998182176992, 4.101962753430916, 4.496803307511772, 4.243871246179822, 12.23187844328196, 4.3687512219770035, 5.0214147129956785, 4.14372879220892, 5.0781298434456605, 5.932628907858088, 7.307616668314092, 6.17460440084009, 3.9938084076307545, 4.554789303461954, 4.99001816109523, 7.653952453328838, 4.98001855685965, 6.400754084539967, 4.810436746165655, 4.592106685848783, 2.9278696508554374, 8.126469458737414, 4.694179486941826, 3.7415637773368418, 5.61790352896365, 5.364654375702865, 6.316694850285746, 4.582397098915506, 3.6200107072772902, 4.547382645537728, 4.107520881846356, 5.203935396206925, 4.534689727775025, 4.7660728935489205, 5.131493578788, 10.796912133553217, 8.318117524626983, 10.83706011088134, 7.400265822679007, 5.155223133923368, 5.484057883982499, 6.190016890087863, 6.946990518984368, 4.8610621745672695, 4.110583800480437, 4.500214757158683, 37.05931105340642, 4.068150579901071, 6.147206965430883, 4.557984622350591, 2.991310709771509, 7.082202600465826, 4.158978013183757, 4.299616108544175, 8.652960531153138, 10.509581713171546, 10.968449770838378, 7.654035518681862, 3.955398121747926, 8.669140851264522, 7.075828403128268, 4.773041046594346, 3.9233108426095713, 13.857702972749571, 6.729005799582022, 18.07473057381976, 5.298169456158718, 3.8470158381881374, 6.045606918402677, 5.02031359984401, 6.886341424882115, 5.164325580194136, 4.966664697031528, 7.354738368469248, 4.927582846962245, 4.189604646474865, 6.11759382247767, 9.758815065986965, 6.562445630825921, 5.205020201457215, 5.663995673775046, 7.937460757406206, 5.213420074765846, 3.253717956316276, 4.936117275403186, 4.904792145479704, 7.264654822785946, 6.319564572947598, 4.749737091885849, 5.480307867954898, 4.6847044659671075, 4.457298427938921, 3.657808980069064, 6.760406010709349, 5.218999830259247, 10.721409499706908, 4.314392594540699, 4.152767995705854, 4.81284739957971, 5.299800340098702, 10.409182248589588, 6.566254669080391, 4.661203408407659, 4.008644971539549, 6.642241508524578, 4.849486409009709, 4.410845388999907, 6.903102451343121, 8.717543681808388, 4.401047426082365, 5.271391045782525, 6.309341196244283, 5.3094158654275185, 3.6822473422575537, 5.842444080546465, 3.6530760228426544, 4.554533556974809, 4.585588729575738, 4.6945690921262795, 37.30715138271522, 4.68510099665713, 4.270925488645555, 4.019185553556645, 3.3247013598277295, 10.677796077689774, 6.8111519734567105, 4.585907740806346, 4.730996416307416, 3.9032174307029432, 5.182031805691673, 8.945812691936753, 35.8496343139619, 5.300523128837613, 5.742474451171174, 27.045537244755398, 7.09389043946882, 5.473733778550882, 4.661176825485289, 5.083815626418446, 22.957603450358874, 4.436331023838476, 7.9215249080721, 4.68759293053904, 4.617615584856056, 5.437782764848268, 8.716034554173632, 5.401525710853648, 5.400752209857197, 4.365338211667468, 3.93097762303699, 6.568548176845871, 8.196670246243263, 5.989130476110207, 4.6095804016116215, 18.42671696549577, 6.785510065677755, 8.573615048492872, 17.250883088788196, 5.4158364393782135, 3.7953074448686293, 7.252141791307775, 6.820297732538278, 4.117991333688098, 17.59369345641635, 15.457886028557176, 6.180317583866329, 4.736313717844264, 4.590653962845408, 13.430869738767404, 3.777177809331479, 18.740808566086585, 79.83811879089177, 7.070632500254383, 4.01218437771908, 9.495402935828404, 12.328117229261963, 5.840049120569402, 3.2540730905108903, 12.118053030303031, 11.377032882256112, 9.462930863580858, 6.408361359634077, 4.807144084058452, 4.007808916734645, 6.924462958137499, 8.834140054466086, 8.57228828252939, 8.239656993838093, 3.061436043113447, 3.4366656721602657, 13.976049125883586, 8.385556369196502, 9.45641079925826, 2.5829643514125427, 3.789001989036314, 8.019318084752674, 7.155125099262481, 4.034108144049698, 8.715749626208783, 4.2241339484380145, 8.494699534294687, 6.336582999831187, 5.662550612944622, 6.447407237463286, 5.782163969923172, 5.398058666705703, 4.246240884966601, 4.169518055156692, 3.059091372866575, 5.445725617916011, 5.2875659438476275, 6.021423833915916, 3.4687071442714434, 3.4746965560704344, 3.5096804726495865, 10.870591409448632, 5.076368673446945, 8.145211247765651, 6.25926420099374, 8.638209607077975, 11.132214411083169, 13.345452702279474, 10.756425703864075, 5.400462030388833, 3.5832517583054515, 3.152222615552906, 4.964784897082855, 6.110859467578302, 3.182690083179853, 4.882843798880413, 8.164236499403208, 7.495423021885651, 7.867238545504675, 2.8067683481804577, 5.238970267594764, 5.274809401102599, 2.729082568013665, 4.39666761280685, 5.026438628808857, 4.103216049805075, 4.267363571009972, 4.529829465963718, 4.078550871348057, 13.298321579875589, 5.871758466500445, 5.839386000918414, 3.601628697791418, 6.452935028539557, 4.049526993418313, 6.095569995405306, 8.520239137283879, 6.454802043983154, 4.814120817515134, 6.009723949646852, 3.8448090654914684, 3.4471610474272065, 5.523540893576536, 6.910048679946052, 4.338810003596738, 4.8881547867823345, 6.043059059039229, 4.843744650218355, 5.888943155298078, 5.30632419566908, 12.2875714937484, 5.9122079447084275, 4.460995727784001, 6.109660443481101, 4.619860237683402, 3.810679814185858, 5.144332488196054, 3.251300205487277, 7.984643115494, 5.890595548337604, 3.073495546877225, 3.3439962482532692, 7.944251934229541, 4.037814113558244, 5.094999774140007, 8.09617540291507, 5.455858429468635, 10.365397594256645, 6.197693746358126, 5.019873180904573, 4.09778108908121, 4.919984830018823, 3.9614762776158496, 4.005244162896032, 4.794784043297087, 5.061968115312184, 3.9262738243813806, 5.15661534240011, 5.331097790529717, 3.925129386315767, 5.664104272044988, 10.139738477953648, 5.31716199579517, 9.78167331981031, 5.330642029421084, 6.008236585052887, 3.7109778476065034, 6.139948782052823, 6.292816748615896, 8.580571489600539, 4.592401476548643, 6.565318206271491, 8.200101487633546, 7.471369957316454, 4.808087514951606, 5.682195843712524, 3.8151005253832477, 5.720895291553481, 5.256608304497752, 3.268966608973709, 11.29106322414762, 4.926862462669211, 6.431138873481965, 9.75095628919649, 3.961121737505761, 6.938325473720796, 8.371729475234565, 4.32464366724819, 15.52923896601185, 7.333993733405443, 6.89170843263426, 9.790733782458242, 4.205380078979043, 4.19539356778767, 15.233476927715236, 6.885749159074817, 4.460932718952252, 5.439991421227789, 5.041621688822035, 3.534167748107842, 3.7128492537500355, 6.635544380044186, 3.5961207019476134, 5.351578457888941, 3.1125655583711116, 14.518978921698462, 4.548101582646618, 5.918787475337137, 7.964817364301721, 5.683186077705434, 4.603352285360278, 7.469388823612133, 3.301570065876422, 5.140647267655774, 6.365597018895001, 6.763468244611985, 10.653234329793152, 6.7692368004347925, 6.870815937296535, 3.768463898055309, 2.898574603612576, 4.08524703783579, 5.996352452698166, 3.9044781749102175, 4.755453441359648, 5.42874488574537, 3.5898556124109557, 4.603098647732493, 4.3792273059979046, 4.665024329673173, 3.5710528562373893, 3.562407710639317, 5.652774044794637, 4.235446450075868, 4.608651368086365, 2.4234796877599574, 5.929705863313443, 7.2219881033018805, 5.105138851695517, 3.2823024506937637, 12.020128880278644, 7.5253346734126625, 4.888189543712607, 8.711582705251478, 6.6848912528103694, 3.949001717754284, 8.846326355495403, 4.469895528902415, 5.95512635384042, 5.447668165181986, 9.306320517551354, 3.4435483473715167, 3.8522530978274943, 4.13373971563726, 2.7289291735838894, 5.454917059421066, 3.276197197599347, 7.844719722064198, 6.703783652241129, 3.0299445818726016, 2.897997094312212, 3.5201248160719794, 19.685364016219324, 4.929463526225231, 4.578470488220241, 6.097549223362967, 5.536453164395425, 9.2897377714946, 7.542267928446039, 7.043091834865545, 9.453522281153568, 7.750931157162313, 10.659385934284153, 9.615062178991623, 3.5308672043355336, 4.846755895308414, 4.815846327785058, 4.222290369684416, 5.447925666767714, 66.74385997335992, 3.6980272551924123, 9.187566222768421, 3.6813525536946945, 5.057133532702504, 3.3268608824178205, 4.819602250637507, 6.579962097589571, 4.892586329327567, 14.281855804793434, 5.844846322492795, 4.933137746518102, 6.190910195754022, 3.410470059330907, 6.6031485763843385, 3.1714525889067833, 6.86354509318079, 7.815352346036995, 5.376551531812274, 6.28612393517338, 3.612191036243578, 4.358996536517472, 4.1534764369403705, 3.204299195891381, 19.069548451238173, 3.138832015715969, 3.5242084726947738, 55.929368136249714, 5.126830178903069, 3.465902533935181, 9.683631450137636, 5.234759831749462, 3.440520574439127, 7.309622371589219, 7.123419375140524, 3.913581558696475, 4.091346775981172, 5.53910309054012, 5.862770091692748, 9.418004021310475, 6.309226852040219, 5.456237084739651, 15.647563625895827, 3.847478083181414, 4.741479150101254, 13.345608424554575, 3.361911677495221, 5.635997708017919, 4.4038817943316015, 6.126179836282755, 6.48792877682014, 19.707999489988214, 4.521088375202011, 4.014119945432539, 4.2195314042646945, 4.18265681047444, 6.708058744976546, 20.49037122818702, 4.626097854192802, 6.192240211946873, 51.089396343399265, 5.532372032029225, 9.17512893918087, 4.212125917186143, 3.9331359344513284, 4.203731286075095, 7.805756582472017, 6.952289597395141, 3.842281752662297, 3.624211509711248, 3.0734912822077964, 5.702274362563298, 4.560115039982396, 5.080452456202485, 5.938754917291392, 7.655357870778433, 4.344708987558029, 5.148640073296803, 4.967405716381572, 23.434288489201105, 21.020550186011317, 4.012498263237724, 5.5719557368661325, 4.386787621868813, 4.469318572294725, 5.503047877790556, 3.8677701236725603, 7.217825300139824, 5.045735710676913, 4.519007121767607, 6.838758027543351, 5.9875584105159945, 7.239443532120885, 4.847865054129364, 194.54636411627592, 6.552341312495284, 3.7573877564193805, 7.551030751081778, 3.3299069134526804, 11.013764003673119, 4.721959561972612, 4.684911531289991, 11.376508024068364, 3.4198161657822377, 6.794099793083625, 4.682794179254432, 3.619846127654144, 3.0027342488935997, 11.896642539521775, 3.3735896503113434, 12.194583658487664, 4.499342383288099, 7.082937335498199, 8.77048870073049, 7.635016902556077, 5.020083359751403, 6.0046519357184645, 7.552672141540354, 28.63884458938032, 7.7987975663882585, 5.11705483221099, 6.551391443117158, 3.356511099644927, 5.504759373906541, 8.741114512023922, 4.63171220211277, 5.950670506891302, 7.089003517254158, 3.6714373141316874, 5.594690716545553, 5.891611504466102, 11.277322587896615, 7.8542151514202665, 7.234394300031116, 5.628727250322352, 5.643242277404514, 9.996908656434728, 6.02096548887522, 5.443016877040802, 9.710948919632088, 5.140960719308897, 5.728519096068054, 3.4452059783685187, 6.865840198140117, 8.63302810590147, 39.78884538815866, 23.17769134599139, 76.42910299494554, 18.269543785893525, 98.65396296296299, 78.19813913043478, 52.02088562896421, 47.4575913165266, 37.70979374464435, 28.360540481570087, 25.948283244533247, 23.164356989425283, 36.815831609725464, 21.52149318078611, 25.261937730266606, 22.276882666585227, 18.000735487482, 16.92860771405237, 19.64293492952244, 14.611079211441812, 17.241894443494683, 23.348130059289144, 12.971343733982398, 21.253196840435553, 13.183162137616169, 14.753087129277935, 9.747112894328867, 12.412713249538166, 13.959648246019182, 28.459988005990283, 10.360717169986934, 11.288822042001428, 8.319169391974166, 22.611520815399, 7.848070940277974, 6.832027443969593, 46.9825474521627, 7.113788008601319, 9.398714661736381, 6.378847070820807, 9.615580543258814, 8.843671386370616, 7.663337051292013, 14.408421807549793, 7.6794012193047205, 6.0768401004921015, 6.994574407435962, 8.149068941501552, 6.653138525186848, 7.2091438287895375, 8.265729373326138, 12.131217148330215, 6.67812813564096, 10.514151511254806, 6.87138072154139, 11.18641254304209, 19.295320621055353, 5.078548500613465, 6.657756517655214, 6.2059798737542335, 10.795046083408431, 4.849269310301265, 5.690406695903422, 6.33848090805911, 4.649759421574422, 4.501285195323304, 6.01398675403614, 5.753566866421335, 5.436410718428781, 4.900023615200365, 4.06909400927974, 4.047090909254285, 7.121251804401358, 7.788900649145725, 6.367277245233264, 3.9400220777008976, 8.50975558723783, 5.065242463074951, 10.284654098452608, 3.4426986251126954, 4.2954694078945845, 4.501249566038058, 6.759768840296699, 7.543774353585624, 8.794996032440455, 9.312124446267978, 3.3800548112592925, 5.093550264441654, 4.574791600404103, 3.923251138557541, 4.724378001138602, 6.605142290733012, 8.88187336827482, 4.687424259165111, 3.9919993777606915, 5.348873337950337, 3.7904596318570656, 4.4708133126285725, 3.075957526639951, 3.8999410089908637, 2.9640352173250095, 3.240551977174114, 7.314926478476966, 5.24014320665656, 4.935883888986713, 5.140598401139809, 4.281968922028165, 4.718617506318527, 3.6405181495518777, 20.882397811481887, 6.813718935885376, 3.531953687506111, 9.42106975027583, 2.8306514166630428, 3.9759526538525, 6.173815448809789, 3.861205342847783, 3.2897312717737046, 4.517019038195516, 3.8899502752150683, 8.334417482290977, 6.608152403885019, 18.074520646267185, 5.1595346013824726, 2.728744879979514, 3.8040820069307464, 7.077249007885962, 5.901931299960366, 4.976158089152058, 15.920845842134689, 3.7448623428867607, 5.372939931081801, 7.346274077851557, 2.5891918636872675, 3.8940394498568924, 5.277156203876482, 3.694656300822643, 3.4662861489416392, 8.467501293134571, 8.665689677463856, 101.34615295815303, 141.12498285486447, 6.049736012655683, 14.31036729689766, 4.366026144651207, 5.296132040787672, 9.853097228929615, 3.8121247734229837, 3.0035617038414473, 5.149079893859931, 3.4604335293783306, 3.108116343246185, 6.654862082426094, 6.287708910523172, 4.111411369791209, 3.1958616786073346, 5.899659081238211, 6.292183617854634, 4.199026902960479, 8.891590196582877, 4.779807179179641, 3.555571817611655, 9.216188153822962, 2.7860160194645593, 8.494066681695012, 4.078269453642043, 5.652712330957996, 8.910191928280167, 3.938194886415462, 3.439745008977315, 5.273488409068223, 4.03076746634519, 5.3864300827778795, 4.00095414776589, 6.442760974051333, 4.604204618479919, 9.375237989398391, 7.349426675957358, 4.259705545488058, 5.709715617331913, 4.115310809753846, 3.187983304377108, 7.681503874839924, 3.4439005507279217, 5.092758036084431, 4.393182389108533, 4.526682983806372, 31.74866303269147, 7.6917941676562105, 5.277310396360276, 3.7349295823392015, 4.470797545501708, 3.462916590801898, 4.437393910677703, 4.369200427396315, 4.037223194356242, 9.671450052953473, 3.6283266277663735, 5.509229303210008, 4.716993474278585, 4.915787273159947, 4.274166012072166, 3.8029055296827625, 19.935254979669445, 2.9239566971342565, 5.990464776912009, 4.800636226884534, 6.416653854238941, 7.291835650629515, 4.522392747053795, 6.236061776923479, 4.305086961112699, 5.199150001715412, 8.423467861877262, 7.354651805215643, 4.406524392502986, 3.0317526726435564, 6.11291666197377, 68.81010731751515, 4.486656649783009, 4.932937153142398, 10.623191406078565, 5.022228091667005, 5.585551509910783, 5.354666838515114, 12.198756590381654, 15.218684111289091, 4.088727948552486, 6.012229685740836, 4.2014117269193525, 7.149723558644995, 5.9459402299922255, 5.144546138192385, 4.64338112427173, 2.952624677003192, 5.47808300113297, 6.720618299896101, 4.118247575810728, 5.750893055505827, 8.279320423351319, 4.11073340567488, 11.619454185644408, 8.334953543860452, 5.382440839398964, 5.156146707914, 9.56615550086115, 4.437118245474945, 8.910043788756, 5.510667082012987, 9.564513510161929, 5.414819696543176, 4.898235557253713, 3.1889142965949806, 6.393299678517549, 3.054473200961578, 3.562365412841322, 6.220103346627898, 8.585717766618313, 5.199031532660871, 5.573708339704952, 8.085685310045093, 3.4057883102219746, 5.4836172023666006, 3.7925939451556685, 7.873737960857357, 9.410778334415365, 8.842481794380829, 4.365786037540965, 6.005214348696748, 4.902932400048025, 4.997491830306254, 3.9987975922798915, 4.814813091670914, 4.307258999397601, 3.263688819090503, 117.90764616755798, 8.754325972785617, 3.6331094683885787, 9.981990128186466, 7.3224248224324135, 79.23558730158724, 4.03461249731391, 6.238506870698563, 4.2671626065005315, 12.375799222138447, 3.4205720000888347, 4.041049316001799, 11.591494965859317, 4.513575078922171, 4.531404998737207, 3.2566821637908685, 4.6494694070898674, 3.9950255736990625, 6.30521755677357, 4.46645329407391, 5.187555940890462, 5.532966154522326, 4.4747918581755135, 4.946997448275535, 16.624798952633984, 4.969950962311441, 86.89871467829558, 5.998057243082825, 5.109405002682703, 7.169749873758856, 8.45496405775947, 4.067958543262114, 4.072586352416629, 3.266772839539427, 7.38698398498576, 9.469892460864486, 7.5198453627442445, 8.782885927680638, 11.311306393097354, 4.847459801257408, 5.771355410903192, 7.145883314686055, 4.376072996510713, 3.1396230902655238, 6.183202333541176, 4.11468948814485, 3.1629265214747786, 21.00261174132436, 7.001466724953775, 6.055131712670305, 9.119851943813426, 4.437946920206227, 11.487640130694187, 12.137746388204551, 9.987110692771454, 4.62076176618857, 11.814075548896207, 11.031419096823159, 11.00992546763004, 3.0316551757592456, 8.422286528339482, 5.065771467983731, 4.29945143677943, 6.580925106622762, 7.358347454882323, 13.129807181554035, 8.01421102314073, 6.6326555761666635, 2.941311204301566, 28.22558288662923, 4.508748239844521, 9.126161545681862, 9.074507603316912, 9.471901804950445, 7.771525260909072, 3.04067525612744, 4.887753354988989, 6.445365848817534, 3.7206311793629427, 5.047645827883827, 6.236885600823017, 6.216711412623359, 7.938313303084833, 5.72440186651745, 12.009734984989489, 4.497228977355436, 45.836660241090264, 20.268235280439654, 3.7873958525410507, 18.418774292324184, 4.9471855504076006, 5.250217123866342, 7.480879743517967, 4.922243105990852, 6.113345627771171, 4.144777061545624, 6.053321350069733, 4.638725776387468, 16.210796706006864, 5.706507047263568, 19.750262255927275, 3.948429656605539, 7.200746648108969, 3.171336815958569, 10.22508503152483, 3.4800519116619575, 6.021911894507384, 5.521888067008549, 16.403074900851784, 7.2408918834568095, 6.621838815324503, 3.7190860579047733, 3.877184392254301, 4.241403339676461, 18.40761377982087, 4.4580805146239095, 3.002957267058065, 4.726483730959114, 5.834087839668242, 9.465498694387675, 3.431422493235044, 18.017486255080254, 3.1916084286361537, 13.403920988255733, 7.363583415861885, 66.3921405193303, 3.8260579545711964, 9.959674716476682, 7.590575635678817, 7.2634097115689285, 5.40509794227423, 6.541877256229318, 5.3380249405119145, 10.796536006538478, 3.399656342903597, 4.031467130931851, 3.5700867308226765, 5.682921307373815, 46.09219693205344, 3.723094787944983, 8.449030744818595, 6.685791940115475, 9.232440412056109, 7.6537032039514195, 11.145887322265025, 2.8123557601877787, 4.62404179558715, 18.429694814954207, 22.68563332819193, 7.2266553635736415, 3.0514482309518574, 6.081178160273486, 8.392483553323826, 8.497134064672938, 6.628649373986656, 3.034494726719809, 7.44713932103304, 8.851560064012968, 5.431757174294431, 11.79879240772199, 4.347055025434667, 13.742630995704468, 3.780619080875498, 3.9914673590039915, 6.9880126766899995, 7.016906310494307, 9.281863208877008, 10.437163052081205, 5.400792114928417, 5.135065644724746, 7.637586051652445, 12.075736492997791, 11.733450731517658, 26.77727418147293, 9.369473196475145, 3.604456772638398, 5.407011164876189, 4.151273934906471, 5.9097323920467275, 3.0676701565259794, 5.6907244386945735, 5.009767733748697, 9.775216429600862, 3.5536230350753577, 5.6731040101033265, 47.619207449757155, 10.61580049808869, 3.522671344681467, 5.480957190925553, 11.207561903594376, 5.060220430842913, 3.6290719443536332, 7.796448009996406, 5.479933122167153, 5.221668400328849, 7.063464072319069, 9.59834653908761, 6.14685265349147, 3.4473905838828283, 5.961918707622232, 8.92320713625661, 13.07525287591829, 3.494520761183736, 7.1796330961384465, 3.698161809067635, 13.118965654271381, 13.140285467470601, 40.64875245268297, 28.104868634002802, 21.6840301865156, 26.052869593539313, 16.012479332614788, 13.422718611358118, 13.636795304663755, 11.873978410308528, 14.837476362148314, 15.94016204363829, 12.12199412567023, 11.060161280378965, 9.96258675951577, 18.381163507288072, 11.567119255007565, 7.27691661214452, 7.001344891358053, 10.12836429878761, 7.348885465628609, 16.425164229531628, 12.208432099813507, 9.183365193053762, 6.33089215887863, 10.407883099583524, 8.114824154114952, 8.162914931254964, 5.3542371300482525, 6.3644469491768, 9.486182685312762, 6.74050177130128, 6.24997450257428, 5.6264579849248255, 9.547340654144671, 7.141489942541631, 4.856947039534095, 5.302338136021504, 10.206153303177976, 6.976378206908593, 7.314297275616525, 5.42706963725551, 5.421084144954468, 6.063686369706171, 6.122579103763441, 4.519307334693577, 4.907806700467149, 7.0990852426813325, 4.050086799309603, 4.056281314645742, 4.981001823665825, 4.772640148903736, 5.694198476547388, 3.6934229386383146, 4.673538032504259, 4.15784748320734, 4.513641448839349, 4.8329619135552315, 4.229698757733062, 4.322974551245265, 4.374565359587866, 6.425291387553448, 5.114720665208164, 4.486940746346355, 3.1984286860926754, 4.607320458772848, 3.8780839274629444, 4.931569686301449, 6.3427669117479475, 4.372273675214234, 3.8266717151020315, 6.571346898477542, 5.270446476909732, 3.487532812558693, 3.4471949777694095, 5.418864109028912, 4.873301092897887, 4.289489131176629, 3.2476371711871606, 4.602661663771795, 4.541441912251352, 4.9341943589752795, 5.126900118249263, 7.300111743498603, 6.5876078245562795, 3.0238580303051017, 4.625533944896373, 5.728371874693933, 5.319359093254487, 9.269275820388598, 5.506230007846682, 4.7528332391656365, 6.539616607230745, 5.549512671985736, 4.984188488603164, 3.4896051104820818, 4.570602201612819, 6.721109278357418, 5.25723953294153, 4.277532141804364, 4.548764394016746, 8.589882858503655, 4.164152509662289, 5.938057802311893, 5.3894882504581325, 4.596139182612475, 3.097625010490202, 5.797791889216424, 12.045343098482176, 4.179176256346949, 6.526910326698817, 6.405280892448512, 4.100495960119018, 5.131626461189443, 5.148489560726143, 5.290706506657107, 6.213844331267601, 3.7264775950862754, 4.200150007342997, 3.6020115005348425, 5.358052903652773, 4.818672932811533, 6.4359792474588176, 4.042639873333031, 7.412583744546872, 4.531659970500203, 4.41427078325254, 12.039848490430122, 6.489904588336754, 4.550551219653236, 6.76081701756208, 4.282546159450941, 4.771192572094637, 11.983121177489876, 4.522337580488253, 3.1119029120288726, 5.279984495490276, 4.7555835995608415, 7.137551750911353, 7.125299984090367, 11.047894110848627, 5.2176980076284964, 4.3442382407094975, 3.144775665583621, 6.333530479034577, 3.835281873141628, 6.354890097576804, 4.468782704102202, 3.5475127397150006, 3.9357194600729355, 5.520013290111996, 5.284620726684683, 4.0359460929187785, 3.848898799926584, 4.334695077776681, 5.362053932620155, 4.191292173889118, 11.906544838717577, 5.581626255896702, 4.089067692093307, 5.5682742618605205, 48.774479671457776, 5.874075130222324, 3.842766100727694, 3.853055665308751, 3.69329023690356, 3.1711816361309384, 3.6247412898569156, 5.528813446566382, 11.69048125021612, 17.62233976987924, 14.950747318041442, 3.733409644708319, 4.1950434678734, 9.491773977701136, 6.5178105587079065, 4.196139440052626, 5.2983634982930345, 3.37480900347819, 6.672215971332455, 4.848482413304321, 5.477680850750789, 10.137242171293861, 5.18968398125259, 10.467480757582797, 7.305963114693764, 6.098748302468246, 4.004721865320585, 5.741785465127353, 8.310364022342407, 3.504289823479267, 4.258610262631926, 5.807932680400068, 5.84381497650607, 4.497846908159907, 8.715036333455103, 3.6915093680451676, 4.179097759996802, 7.878837151951822, 4.2438443993673705, 5.635343861800109, 3.0457311123414508, 4.278891729079332, 5.926091635576615, 4.17010373406967, 3.648495059636465, 4.308044111160156, 7.427157323232323, 5.013837813550464, 3.7609647457815005, 8.288071758850915, 5.6968686769547965, 3.923879096106179, 6.914690036535813, 4.4773895605168805, 5.655565642506547, 3.985856137481401, 4.898425222931904, 5.377268749343882, 6.0616590234474845, 3.714142080773507, 7.303303808105301, 4.23429986952762, 6.403490782565528, 4.711499673047894, 11.035373479650424, 4.183826773449589, 3.79359757404551, 4.10608025231292, 5.1294925446714945, 3.9710759824021826, 6.971842184215113, 6.269705059078782, 6.072151709107813, 6.59189779137593, 4.510392175503666, 21.51444765826915, 3.5137500830762787, 3.791834980122386, 4.967982840674406, 4.9124481166370035, 9.313693622547262, 11.152878247076009, 5.388774568527348, 3.001335818601804, 4.260916928406437, 11.557405743474892, 3.664682980318907, 5.786646984203133, 5.277662013909985, 7.0108715232756555, 4.592389012855516, 2.4161267058174545, 6.215437405282751, 4.836079237818041, 5.48359357449188, 11.052049817828339, 5.74065220948755, 3.496827192064865, 6.953240138969628, 5.052118674477693, 6.441308263018946, 4.860891648671334, 9.273087783163076, 9.793880509153677, 8.87951815681139, 5.419036388207658, 7.662555892221715, 7.535466316663721, 5.169220545440828, 7.507967868948897, 9.201070292966154, 4.512523242806742, 20.99320251415251, 2.6303826912536334, 7.200138070865108, 7.7773505320760865, 5.535578144987582, 28.74088495719848, 21.67033801145092, 5.502277081983743, 4.283459861799783, 3.4751673674210766, 67.99217634532448, 4.8869428896780605, 5.739864215159682, 4.274091650939495, 6.331110048724786, 4.2220957938186805, 4.939634161630781, 5.2296740681420015, 5.908676461086492, 4.16983116134295, 4.198953689703024, 5.80167648163266, 8.122095221872243, 6.346636977269704, 3.3775923570149464, 4.933021662809194, 8.388830546667501, 2.667459927410034, 7.209214759763732, 10.32729198749372, 3.8479283739715875, 7.2132469682862315, 6.510944850182905, 9.705130000091328, 6.692323669308472, 3.1080874375031837, 13.718545074283773, 3.950356194821662, 10.086150519882532, 6.651274646838016, 12.377711145703632, 10.680078894700868, 6.013158228821044, 2.9699336558267944, 5.628655459475253, 5.5343842182995004, 4.626926423654167, 5.723737923831094, 3.1223401806821656, 6.775062254295743, 4.979028260317553, 5.348431801483546, 4.441525521787143, 5.894153638670974, 4.78528984825038, 7.104859002402539, 3.669548295650012, 5.14386676416353, 3.997881796793756, 5.315082701085242, 5.105795566908968, 4.421253517111596, 7.181874682919419, 9.326700992228227, 6.561781684193147, 5.261632925566567, 4.5479548933987015, 3.630905873329497, 5.403329047050584, 4.079374831653561, 5.849146584900685, 5.394530703694989, 4.692741299879881, 4.6050613559010305, 7.771065685475236, 3.883186399287694, 14.041092022023637, 9.207276011344968, 8.932723251805092, 7.686726532992079, 3.644609300824512, 3.8202269412096155, 6.1014839949406925, 3.4431648021083876, 7.0748964000046834, 5.426099010074332, 5.623912209614695, 3.1548275786188995, 8.863056110981859, 3.856699701609833, 9.165167487429768, 3.6956820005893234, 7.20985910182366, 6.7766319603730585, 6.216960128733629, 6.047823691586556, 7.20894527586307, 2.9737793164314015, 5.431286971383563, 8.398673430169435, 4.425116553648234, 3.3542995248035004, 5.784149234553454, 4.34646254400214, 5.271912141818064, 4.394058417455599, 164.35587454212458, 3.7616849935350354, 5.495272786562317, 8.649275846985427, 8.455605334055353, 27.543158258046308, 3.6711752074961126, 3.7650308006955218, 4.310792261749654, 4.264411926323589, 5.73685269750594, 4.649406708194221, 4.300158407579924, 6.151363548919194, 4.381434633802468, 6.9524734883692165, 4.719682338278651, 6.1116460693611545, 8.324814735547282, 5.476189879066308, 5.536595215879685, 3.648707961910695, 5.799035950593586, 4.285123735867128, 19.974331810229547, 17.353506761567076, 7.292981160887399, 3.463317906125889, 6.551691715835191, 5.32328506769948, 7.699049467382166, 3.504495160676313, 4.389740939091781, 6.251562547674845, 17.704407429518287, 4.185882406800201, 5.752309961685483, 3.3944908574418826, 10.994412039161212, 4.565403525684166, 3.8772565445769667, 3.847669991260907, 6.252486833530382, 4.851351201173387, 5.339683889566926, 3.8893956926362656, 4.240315494370848, 7.5037377261556255, 3.0086648805112537, 4.859232483376755, 4.997454326224077, 5.947315627802912, 3.616367965003213, 4.211747190167699, 9.566078894041235, 4.635811788214374, 6.063818782178511, 2.673919747407963, 6.662163279671014, 3.829353395195953, 3.8838632029277704, 3.832344583174974, 5.410176453258998, 4.102139700097934, 5.6165808755625655, 3.246074297378931, 5.641493041532741, 68.17872970820179, 64.9885552553984, 49.13981470092035, 6.466355543291668, 4.019186857145737, 8.506018441001212, 5.5513308694846915, 8.617185075594728, 17.950740909480572, 9.51366962443976, 3.5878499474633943, 6.754028299160566, 6.486030194902494, 10.241956622811951, 4.444200064298322, 5.529014258441079, 2.722850613801493, 5.369997574958349, 10.341507961173667, 4.552490246009857, 8.615206366492707, 5.0550804688632995, 4.898291217037045, 5.874059281644244, 5.353330445251044, 5.433323605008613, 4.362495289695307, 14.644377563438974, 4.423879493947151, 5.676949170715111, 3.4139329396946163, 5.409236057686595, 7.755988636205383, 6.218270969601019, 7.593941285553882, 3.2741777778095065, 17.051851449954707, 4.720478922451994, 11.294481353556199, 6.7977080567178, 4.6865766779129725, 12.568662093004388, 4.386658700725809, 3.9276561358581064, 5.964052204745545, 22.747786618826805, 8.968800686161229, 13.137686773034993, 3.7267241816830152, 5.443839599113833, 6.942292289961381, 6.7140640411449874, 8.704150073065613, 5.772166048474609, 5.185121235208054, 7.413449098382464, 5.3921491888334225, 12.655876780023027, 3.798028320274708, 7.017270281769812, 8.845493831909954, 8.329481150555083, 6.829371180779157, 3.2818334375509153, 4.887243498957046, 2.854093771359077, 5.815353702333755, 4.820718483373244, 4.566466259541406, 13.831272087746026, 6.898162036360332, 5.693021093948192, 9.29300181031254, 5.111375544172344, 7.879705996918218, 4.141955019386598, 5.444977855238715, 5.992172613139168, 6.444215049579729, 6.630629591372133, 4.97930613716418, 9.225229252784096, 5.528954597002314, 3.523882829077181, 6.982269773156117, 3.6044518357896975, 5.550617176678483, 5.390091800841649, 3.7311571247247763, 5.21332759542658, 3.6702790095292928, 5.277588167287371, 5.717762605815236, 3.212704292436935, 3.0577555128555116, 5.826431910071709, 12.488953142965833, 5.528687796530762, 5.628747124879885, 18.06392353488444, 3.721648289501741, 4.519419172464048, 5.565628844640371, 10.917410290447469, 4.820726612289357, 4.158677297270404, 6.226410207787201, 5.247831021467259, 4.335248554659704, 4.554358039981301, 6.2438309579786235, 6.107084773938975, 3.3949435991735375, 4.7729095022975, 3.1972475283387474, 5.947295276248833, 5.188384519250605, 6.112200737452331, 9.08108208703508, 5.869803587987346, 9.468505874554946, 4.984012019696312, 4.464422400087508, 15.875291461657373, 2.8404668950271095, 5.535999534044105, 6.643967346337322, 5.350695712459501, 3.679823677284779, 4.136775301762966, 4.439851977512177, 3.9958545906514993, 6.594287957240005, 4.209755915450376, 5.756844971625129, 3.5015664812874574, 3.6209572463869795, 11.979558582221614, 4.756306281894829, 5.566210175550978, 2.838845544638942, 4.01305067614701, 9.402171879162124, 4.671146192469645, 9.847966698630986, 4.246272138408044, 5.640369431045891, 7.096831919126621, 3.9504358958307453, 12.579594654730766, 3.564905514813035, 3.8158204935979896, 3.150156331327136, 3.623763097773884, 11.368751014106138, 7.606344466913798, 5.041521249015476, 8.474079869407387, 3.89651107680859, 4.937462724420104, 4.651318033890561, 5.04496778238654, 5.774486942299964, 3.9784888437341657, 3.2213582190600203, 4.299198419494861, 3.5792034903647734, 5.941530882287152, 8.029784916521548, 6.045657227980504, 4.517850982452857, 9.576545103202847, 4.5913617654447885, 4.709437343105248, 7.779579610562581, 3.3210527205155915, 6.199958274937316, 8.473204917864683, 6.328127049448539, 7.154534661807287, 15.96057510862341, 3.4871785548453516, 14.812703457419401, 4.25553852216204, 4.864725430883729, 5.905305806331722, 6.926743832753916, 7.309258325729176, 10.050665552940519, 4.814540830150602, 5.700999495823063, 6.078832851074693, 3.4223381533432167, 21.555948564470945, 5.676256317921672, 5.832770344281617, 3.9724745534939556, 5.4083574021880585, 5.529775886351364, 4.385489559676555, 3.4729052609824103, 5.19357911100942, 4.5637381293315, 3.7926142879213054, 5.9291511467434095, 3.4980117873858365, 2.9201028049611035, 7.069682582405357, 6.259323424681902, 12.886582251355541, 7.020367321120589, 5.60893658409033, 8.456294409074198, 6.502172296093083, 5.735423424018037, 7.676413057003122, 3.230068644831408, 9.497907042536706, 6.49961762447039, 7.825373317596968, 4.897208837056173, 4.216962669743141, 7.043524978580415, 5.349511457783801, 4.8933724962267915, 2.9337030007182605, 7.211688649847903, 6.88836693763131, 4.3031183210339385, 3.850861768035116, 5.355529227388116, 10.60632260321808, 7.458162943581844, 7.40642507719093, 41.85813888888891, 7.941876337506745, 6.529665202127585, 9.435058822785674, 5.080514514944861, 8.039816233514125, 5.8576067397423595, 4.278653282502283, 4.7227444722646945, 44.49528156543233, 6.13403899402423, 3.554923672765741, 6.648242723496996, 5.605798405225502, 3.135805308872429, 3.5331438225402754, 5.9575966061308625, 5.11024399654198, 10.152163488639129, 7.022660390102111, 3.6778012783104526, 2.9458205980183174, 6.6066838193100175, 3.242453215110324, 6.9999429308346794, 6.483811630546895, 3.321584904408526, 3.421382739359819, 3.153716337946439, 4.476706697007107, 4.82286315819435, 3.579717902401354, 5.466526005253509, 6.6630986706118875, 6.809925605219662, 4.132339079722194, 4.049345535728995, 3.8561301179905754, 3.661168940898887, 7.7988489744491085, 7.117890358560842, 3.3233387087434463, 36.311484516109516, 2.9028667573272995, 4.688893847148219, 3.3524158598841303, 10.229327186706746, 13.269073001608984, 3.8679069463017126, 4.669663791575684, 2.7297941705588475, 3.403478950307588, 5.885650334427995, 4.469758299814183, 3.74619029156494, 5.8389858080401, 3.816618406404984, 5.390044481534591, 5.52002028326626, 3.7946655120443857, 5.02489863594541, 2.972987564541026, 5.755210522036601, 8.93240068938716, 4.064771374434082, 2.880751504079018, 4.850892410671369, 4.273278563622312, 9.218538075640401, 67.73782235336917, 3.6747107652666373, 4.838029357961965, 6.0069663096988695, 4.745481222930142, 3.8833684187252846, 5.327017040931181, 5.446873742789583, 5.075303906263755, 4.0785601782384395, 4.654200255967191, 3.323877978567229, 4.06489968349103, 8.595164377171562, 3.1551263213070206, 6.2586995456452446, 4.443802642016716, 6.459054458130962, 5.853338437015994, 4.417518948297704, 5.911672487404383, 9.547116102847067, 3.733409571388794, 5.681260103109184, 8.151691031001523, 3.701657531864662, 4.006923698519624, 8.532124919274265, 4.346703693515012, 2.283863434946195, 5.849213247642942, 8.450968993183135, 5.387757491069835, 5.914764585478487, 185.39916666666676, 104.00811143741318, 67.89919421101776, 4.024186141761826, 4.599178846740918, 3.5593676130076664, 4.364528122484719, 5.802155085265784, 2.9256426303425207, 4.4077081479453915, 4.779812349645408, 4.29401204730976, 3.8058084362512403, 7.7726952164649346, 8.746775711541074, 4.0737197076403655, 5.053193096618496, 2.7993885947633546, 2.783354989719556, 6.8721658852741, 9.075963091756048, 5.798623681570469, 5.3625595589441915, 4.634506687551203, 5.804465461515796, 5.335948590515182, 3.9768933161885363, 44.82206847988649, 6.088861045963066, 9.859018255283626, 9.66961313990576, 8.22302489597366, 6.849831467404508, 4.3647726896011045, 4.793089771126429, 3.652995425119179, 3.2915895505849986, 7.7300795529230895, 6.738771799530601, 9.540333866336224, 9.223135597802328, 3.139287828782991, 3.061750428119577, 4.188622979855098, 7.425701781320373, 4.643528494060847, 4.746389967889813, 4.4860169316484315, 3.8984846458022755, 3.793882814091603, 17.324253522621163, 9.969478094044268, 3.2562315816103107, 4.332246385304714, 8.110954658235498, 6.455858485571466, 5.831663424302521, 11.126684435745537, 2.7063095011271163, 3.6866654691369254, 8.510365868404817, 4.109218756549685, 3.712062532079247, 7.4055386055847245, 8.487956485073111, 5.2674582680312465, 4.791433319262193, 3.566597494772389, 6.051695424911683, 6.209901081188851, 6.848263124293831, 3.364553752865408, 5.2246965305666, 3.745204364977852, 6.994616481478259, 4.543668865459981, 6.564991812795736, 17.724027654597165, 3.6532760883176256, 6.72481456626639, 12.08991178157165, 6.915502916118042, 4.562734236238429, 6.016383055509445, 5.717922664711629, 6.0976261694035845, 5.236638260176233, 11.992134241301617, 6.959950071308121, 8.787098933193336, 4.4780846525201925, 8.164914044997268, 6.375987369064636, 11.694299105469229, 5.462451088283308, 2.933654314394159, 5.517312154634897, 5.3532701799166125, 5.660159887488106, 5.234249694217688, 3.9510899719822143, 6.743640062732431, 3.925271197008398, 2.354003059621705, 8.35850736134113, 4.876166342273876, 4.2335598971832615, 7.53825665717799, 4.026822554535881, 3.8581251366971943, 3.296172949482419, 6.203339097654435, 5.240444486541952, 3.219802341873701, 2.792140932797793, 5.87498846882706, 6.866757913870789, 9.702733839390115, 4.22852228681094, 92.50849969474964, 10.261258185189543, 4.383490656350287, 11.267576377151313, 8.122471201047036, 5.322875116768046, 12.693539201295783, 3.558932826440562, 6.207510769104359, 8.12233817937074, 8.580991069227313, 7.1374591393829485, 7.5667799878459725, 5.225981745994912, 5.3182939235286595, 3.4537052487737836, 21.820752460384934, 5.172691157494399, 4.3699490025101735, 8.999653973657042, 7.560824516672665, 5.344474333947022, 4.872421559403895, 4.310327706427607, 15.32742416163534, 3.5306564144561148, 5.08139964886525, 8.993001088683197, 4.277898700285074, 35.05152175384786, 12.235218924381966, 16.48448779800762, 5.508312094553501, 9.679685802306091, 3.567448847967101, 12.568673403429672, 3.7530532270216623, 4.905273313020819, 5.976138512418862, 10.42303455814604, 8.64352003264194, 6.017049177661934, 3.5825675138032462, 10.30843902114195, 2.630049494480312, 6.57922705397704, 14.719314850137804, 5.454647335998712, 5.120355782996516, 3.900885774924112, 5.147107968425189, 8.19398465282642, 7.672415927400498, 4.53262139965669, 4.448247618204351, 4.918271186563192, 3.2239912934784027, 15.281549562491836, 35.807132367632356, 32.427390648841296, 33.54735650254831, 30.529999278499293, 54.89027952529927, 20.54567625848099, 35.45636674436673, 33.72343609329267, 26.849013631741688, 19.11978001954473, 29.450987827892785, 23.68701640826174, 31.22875539830305, 12.92249086598273, 24.27869466944719, 18.941139321928215, 16.16537113146314, 27.357974518909614, 15.915075731379126, 13.17523744669338, 10.580939174612427, 14.384726820594127, 16.26981208275753, 17.57515780272063, 11.392019402065875, 10.341101971904331, 13.375305823115365, 8.070594782517743, 11.26783246154476, 9.260310224073034, 6.997659518961371, 31.25769772625159, 8.688853184845993, 12.075168675846239, 6.122484173960429, 6.952365429377276, 9.407694894235538, 7.775285715336349, 8.90019785462806, 9.698316899252628, 10.701818044979666, 7.5711861410345, 8.072069104717446, 15.395301404718435, 6.197730359728998, 12.082548539370942, 8.85743736519277, 7.000323540258399, 7.939761261748164, 7.26445339350874, 8.005208504484164, 6.703371906660711, 5.8528812132593595, 6.2675914039667315, 6.544787380829409, 5.881960785123907, 6.124409035526838, 4.981808266163183, 5.356619505645961, 5.622206850304188, 4.981911334216663, 7.341252482046949, 6.494094082018698, 8.042038922611669, 6.257607651257587, 5.237546690166904, 4.857271740626025, 5.800892403348475, 13.179005542511945, 3.979140487642961, 4.617404258582471, 5.034420873426583, 5.084431601527587, 5.329086938005649, 14.547179511350736, 3.7944249276869173, 3.3735152204995846, 5.3594752238691745, 4.336948373803037, 3.468992935097858, 5.851083965988762, 11.084093936986118, 5.2342913056226985, 5.8043346612416205, 7.451927310705214, 4.350709111959906, 4.2972685627061225, 6.051294795709164, 5.154071622485319, 10.218453534851848, 3.8732192286719225, 6.4377064704196485, 28.089706266923553, 4.01967517324904, 3.6282655015965584, 4.1782825903100935, 4.2071995223632, 4.603194845615902, 3.6495370580512, 4.781212063475884, 4.675159034458173, 3.912162329339205, 5.152307985871816, 4.545108163572955, 5.198040145167724, 2.826047120450677, 5.536632085328097, 4.869967237316895, 4.356721106160981, 4.469585477702028, 9.150447477187535, 8.785262909140126, 10.671181172993672, 6.849115217696926, 8.704930719702844, 4.227831793989665, 2.9325574656814206, 7.642889256342361, 8.499967507965025, 9.457424603020833, 5.4928229149038135, 14.430419742538161, 6.608031002103624, 7.717873193875368, 8.777826341070924, 8.53781884411884, 7.793272820103473, 5.7976795777843355, 4.707169000809878, 4.983935001382292, 4.961556989462463, 7.360250717306301, 5.532991048914239, 7.02574616386065, 5.211689894871005, 5.284439566826718, 5.669456245952658, 6.322869820963574, 3.7927835565248733, 3.6957350316936832, 4.487876043066981, 4.549006912535074, 6.109860196833558, 5.517597581911885, 5.089992543006623, 6.065150101197285, 4.823149641933963, 3.3497218396801913, 4.773001131287656, 3.995778532347915, 5.996696432000955, 5.199755707083801, 30.88531394300146, 5.718714352522835, 7.3552717450314296, 5.994021472628686, 3.5185625651318144, 25.805376407064184, 4.325226569415753, 4.867453937497937, 3.7891512206913456, 4.5137913750890934, 10.994819542137888, 4.196498813830193, 3.8465309685350997, 15.500906096823758, 6.574019471000774, 5.846421875747466, 5.441575113953128, 5.191880350011633, 4.074599636211806, 4.43020965304777, 9.306013478996592, 4.224347368632384, 6.308509971893873, 3.5192425946596826, 7.231097863152157, 5.371867590753515, 4.722683288936361, 6.8520793802773134, 10.70813298725357, 5.091775621673223, 5.617860568018206, 5.746911707280398, 4.347263326755199, 3.2613940729560187, 3.5024318380795787, 9.336655273889164, 3.3550293738537684, 4.501897615576334, 8.788882915626122, 5.407994948233673, 6.9219015128808214, 4.944170733349373, 4.578158124251186, 7.074957250146736, 4.403283970164457, 5.174131845942698, 3.432058097604195, 3.3701248135659934, 5.974859683342355, 4.99352900326015, 7.631828860803889, 4.240450944070325, 10.648757313772718, 21.55604074766631, 10.890085645367476, 15.851575645729717, 4.784514210764476, 6.312157718604828, 7.932809276669916, 5.98999820863512, 6.382974488462868, 29.074596258961087, 6.989422159802018, 4.67251566619975, 8.025452045934477, 7.517780076063448, 4.790948163337178, 3.1167373245965, 4.268622409667809, 18.20892921231929, 3.7151902683982345, 12.840051912504345, 6.474620218379281, 177.45042207792216, 45.769493273066786, 4.714250792173306, 5.598216413662538, 5.384688752946128, 4.782155895500585, 9.738495210103006, 3.1918038858213666, 5.987303028573042, 5.468295281299892, 4.549732901128779, 12.633659621717854, 4.4171606262472345, 4.827676438204805, 6.344402325324928, 3.696533033127392, 5.839370011395062, 6.49815962571203, 4.046404890866473, 3.862237315967139, 4.714797473001894, 8.385310403205578, 4.072443716575873, 7.503523143964224, 3.4458341857385593, 3.468546964531221, 10.843826662760447, 4.697038334551999, 4.328051468053077, 5.104786391603213, 3.9070488875511393, 5.744791629469507, 7.326589339809805, 3.760010097300674, 5.536191993024479, 6.374787173225788, 6.823518050447204, 12.91683421954631, 4.674159023287155, 9.526077279220356, 8.440979985676817, 8.570113424725424, 169.9178030303032, 85.58287514854428, 6.945442668702426, 9.362379768409408, 6.50556822290496, 6.037001514454326, 7.312489809356471, 4.636336545698959, 8.110302444271209, 5.09707778412401, 5.784843934566293, 6.492814572621193, 5.458670034175142, 3.681401340915148, 7.898978226990941, 6.2129572452790836, 5.18140898089303, 4.92801592318422, 7.945626367588133, 5.18120993412886, 4.873100289082257, 4.822529860634065, 4.772900757458815, 4.652139225464134, 5.822166281967194, 4.821010525421669, 6.372664949243674, 4.357389696317781, 4.4998888651872635, 5.086392063171552, 4.13103255078795, 3.5501063672085613, 3.9872424795173136, 4.797286567219689, 6.010067308484647, 7.097571087075928, 3.9546335109148805, 3.578113113005484, 4.717289610931528, 5.999129568558906, 6.256524702718151, 5.350088861729767, 4.450668067635627, 3.1116222582847, 6.690290491836692, 5.755687409753761, 6.592388995553034, 4.360428519546395, 8.643278536477775, 4.051323418232072, 5.017579969106885, 4.817520031602775, 3.358539300339715, 3.04804086660051, 5.506118562017342, 5.588922670328551, 5.419910624018003, 9.49059181151273, 5.324146509309007, 6.507375092462798, 5.740373736581677, 5.385831367970113, 2.6059751116532737, 5.246255196994765, 4.335544522636745, 4.660002135864838, 4.3896892470897235, 4.350472810314237, 3.3092042144893203, 4.53192606284287, 5.752355166940478, 8.29811216409629, 4.115947167108843, 3.524570512690205, 3.2719536682750094, 3.936607265118071, 5.463272182291614, 4.002363168350977, 5.943788933901234, 8.315388676311807, 3.9170260100627368, 10.269327035423268, 5.134638090973093, 128.19650000000007, 5.120343694142718, 3.848707974399017, 6.142818018972338, 3.672261887978963, 3.8074226608112562, 4.123510439891344, 4.332741917528529, 5.838471635502315, 2.8689511206309852, 3.9718806851110258, 10.336667012154514, 8.080625468683833, 7.059539931336173, 4.555821063581348, 4.796603924635054, 6.077397588816626, 4.701941113363808, 2.616030975411518, 3.982417231319687, 5.227442285128863, 4.9935855797790145, 4.245450650244504, 6.9501232480987305, 3.5423566370096387, 6.610910280802815, 9.293147884221737, 4.655746052476921, 5.549392997348998, 4.618524059959254, 12.44923825802919, 4.585816147025433, 5.152490439947783, 8.5317700702206, 8.783243243214315, 4.105365960653905, 9.024697271306, 5.7521458280505, 9.757788933196776, 7.420389290139851, 3.5638312954275526, 5.71177076869964, 5.380085436246769, 5.15414027885632, 7.857020458906035, 2.319886695356164, 5.926345502365685, 5.875970953827163, 4.317026680553005, 5.9032910778503975, 4.063734048093921, 3.959807886272842, 3.8790998106937975, 6.426874494947786, 8.234864874543568, 4.049913985911445, 3.8553099134978663, 6.456228649535557, 4.348791789783943, 4.787180550112324, 5.090608282532956, 4.425795411443848, 4.332049944657217, 3.3196406731661767, 3.76778886165023, 3.265256758749397, 4.251832598134226, 6.354589371440829, 6.173211883552368, 3.5021248267614866, 4.814835871885202, 3.1061411638452325, 6.00472579015912, 4.138990946486425, 3.8431410387402005, 6.586802628277495, 6.1487972243996065, 3.721208791952056, 4.632689658964347, 12.61149539041421, 3.9592433926007287, 3.8239072673317005, 5.532058715010936, 7.358273890951394, 3.057554295562554, 4.527203168460552, 4.140781995519115, 8.191333662357744, 5.061669389264356, 4.206848277361545, 3.654361557328809, 4.8459037475504205, 7.45853674157403, 4.044042261563487, 5.3291342384213065, 3.6971787483193954, 3.5619558228087302, 4.4416306548258015, 3.5378861939326516, 5.755618664527165, 4.572317147252094, 4.039345993008122, 4.488100606292734, 6.930858521312922, 3.2646903707373958, 57.54294195013242, 4.50206071882493, 6.428155057148746, 3.8028231997725936, 3.176991731763628, 4.9047901715575355, 4.406789280949975, 7.63184059234346, 3.525383643811278, 11.985302998767077, 3.2294022371321978, 5.7801625475347596, 4.222963715703504, 2.6927488203002303, 5.780444279714413, 7.579946401790041, 4.263061744936986, 4.418912253100327, 4.173875678638136, 4.069847405943103, 15.438282558867575, 7.707795812816103, 4.063756988907386, 4.912941927371486, 4.748809426500525, 3.0675379698062306, 17.969798997538827, 27.861803062721258, 30.71137934014032, 15.111022983425508, 20.85262096517892, 23.093666051674536, 7.8428153915116035, 15.59893955835786, 18.139220330868614, 16.659205709271866, 12.159998434831529, 12.016096803118591, 10.0565922834439, 14.822546868845045, 10.269793600643023, 9.39619422998854, 9.009695489471312, 8.37365759887264, 11.567658698159144, 6.0225158104181675, 7.1993283810067, 12.83826971625105, 9.01918442181458, 9.162934890270627, 7.127314500676541, 5.688640428977532, 6.884404544093198, 6.568316162944518, 6.460219989855926, 7.656204821215676, 9.905949541928758, 7.0844349172003, 5.8913934249528515, 5.79716606407917, 6.639029333846902, 4.300690316980386, 8.008392894917675, 7.111250360414232, 4.380327620300371, 6.804911837023997, 4.0216575758753, 5.3057805244057805, 5.330557143212298, 4.689595503095095, 4.042318038199238, 6.097978724190775, 4.63399019982489, 4.702377849110209, 5.654354516165216, 4.732893803705823, 5.102697430453485, 4.086721660363769, 3.967278629598668, 5.654151891662061, 6.073883848583918, 3.811395213780899, 6.224415945379345, 5.0484632509322, 4.99007906680757, 4.348817115056179, 5.5214282671627535, 19.036153810461787, 14.368468353939676, 9.422164098356612, 5.383664745609594, 5.145635741606354, 4.681593358326272, 3.8579923354451924, 4.86179929967873, 7.071986205012251, 6.335978448479377, 4.355705739663493, 3.395752871885964, 7.836185817614261, 3.9441871195518394, 5.096784056926413, 3.7594738785090995, 3.9972833072507323, 7.883009969904365, 8.929742576813078, 6.326628472382734, 5.052264866244299, 10.1036301414715, 6.3028778593597465, 7.883202573093603, 4.495377884157619, 3.6999507052943006, 4.104744961420953, 4.07049741512662, 5.677031835860009, 2.5348617093166963, 3.467249313683227, 7.019851561843108, 6.130133519306146, 5.240376161066011, 4.960062312695444, 4.908151329934703, 2.9919875725807086, 6.480307498783424, 3.3832049525778602, 4.116907953186311, 4.960680707072724, 4.753811397469288, 3.0766525618108282, 4.287261982446171, 4.274920582354901, 3.677148436271938, 14.33532088087103, 3.5349389344759525, 3.150214797226884, 4.047702645265966, 3.255991726000719, 7.5177052403630595, 3.599125927501758, 4.591502464564347, 4.713127436589067, 2.6105296202900456, 2.821720001737033, 3.2810537209038952, 4.389610882177119, 5.669455363342341, 11.01024952262976, 2.750111048385891, 5.087217798001674, 4.122947866871818, 5.617704831873226, 3.4212210123250135, 3.437007282819817, 5.661793043983116, 3.85238837580249, 3.2626281843914446, 4.182513245412945, 3.611143018122097, 3.5170452958017195, 10.129494421368108, 6.799933742590413, 3.9011235306620984, 10.108989755154742, 8.10286885593006, 8.58036077493198, 8.922602623577442, 5.6589685327259325, 6.224024177454594, 5.881512477147164, 3.1899979727141505, 11.386475835848872, 4.812833512841262, 2.957229893066509, 4.753495759791878, 3.885296928834376, 9.146592210955726, 3.9540916962942325, 4.457174263353711, 5.890911932037099, 4.0674093930028326, 3.8340767217544625, 4.909135304365692, 3.4736787401060125, 6.880021532959055, 4.550498710406974, 3.420645163787358, 6.232000293358978, 4.749197867881647, 4.150437600437618, 6.121565298538759, 4.5572459641204555, 6.865990314881758, 3.1347013159741737, 5.3312077240162665, 7.8254310459185445, 7.606962824041948, 2.6526535912807137, 3.1061488437611886, 66.06702756505233, 4.7243791701366336, 40.6445276390818, 3.264297387449857, 30.2813493405477, 4.64514693321898, 10.477556292339813, 3.9100410163344357, 82.12657924836601, 4.9578515609335945, 4.994166119543339, 23.830888909584456, 20.704325551202118, 17.388120146779066, 7.436759935630006, 15.462665065885767, 8.455926389076776, 4.06229527380886, 16.241808247482876, 5.091017072015764, 3.5097607599080662, 8.156425305401957, 2.7220925333838863, 12.739251355100585, 5.835769793162896, 4.035952745009868, 5.064046227465344, 3.913535489840157, 4.2918344001007025, 3.5445384916618763, 4.961489799568838, 3.603883139828443, 176.2123140367259, 13.13497184226369, 7.281607453426044, 4.316817817175921, 3.0653963731543707, 9.077192628797743, 11.920555407157229, 10.292829706583333, 4.169103237523153, 3.792256750952865, 6.734220590628609, 5.610750016204305, 9.239316657178149, 5.7200427265789795, 4.384502547111238, 7.647349813492346, 2.8550671216765906, 9.468847060823345, 2.8251555725585455, 6.941323689112453, 7.264920243660171, 5.470144804674262, 4.333676945949166, 4.019345888338249, 3.450592810927432, 4.627846848882217, 3.3946515367997403, 10.61902304525639, 3.8509925810005092, 6.489948377113015, 3.4745368106051897, 3.0070619418913576, 10.077418126316562, 10.692045392710247, 18.953809514276994, 12.09351385960639, 9.133675164369622, 11.582891216705077, 8.723351600650458, 105.43897774885934, 7.685543814497506, 18.694591026455452, 6.23766366623074, 3.836913065804172, 3.957925147325811, 13.538086281640394, 8.925927372676153, 2.905134947020156, 3.209000521458017, 13.650324712528183, 9.86690094367193, 3.08883774636871, 5.890993831261823, 8.660312930847923, 4.938391162618477, 6.415583599348569, 5.636913171349102, 2.509405960847327, 8.55688352483981, 65.59629859254859, 45.1712755606966, 26.7594092719263, 29.99359388242476, 21.478960143433035, 31.29311496054032, 26.47861176583009, 25.25220222033775, 14.162310017880671, 23.562387405184335, 34.168388888888884, 16.414475579975576, 8.313718501917553, 6.550845149514249, 4.509761515019143, 4.674680247391563, 6.598116862253529, 3.9399563703340457, 5.3907106182208695, 3.9974142930785472, 4.1032337008270074, 6.126613109844841, 5.8235350232229095, 7.181755498369342, 2.975146625667237, 2.858163293082283, 3.376312012040909, 4.11582602398831, 5.007200144005678, 4.028148999639287, 7.69831816471823, 4.463750593856435, 8.93140740306333, 9.693918422336676, 5.786384842403431, 7.209354377973697, 5.8887744737627745, 5.55897534166029, 7.692414486558977, 6.035630205049436, 5.881257053159297, 6.654982699530582, 5.988869460595428, 4.745576207288034, 7.139570048065143, 3.8806478612166067, 8.905763070598063, 6.613441026907413, 3.9671198305548248, 3.4886645833529766, 5.894211877513023, 5.385544389600286, 7.6341427044931365, 3.770792839854611, 5.456038405414879, 2.896654852623421, 7.558485110171543, 3.1847842919548763, 5.506039572234628, 7.03408896121926, 7.53548129626534, 7.840482209362435, 3.0246466521748294, 2.9286503210298855, 4.765061979675288, 5.195819284633508, 5.726880631816228, 5.782465530357463, 5.485451076122314, 5.856753802233605, 11.719742748559806, 20.565723079194566, 13.019706604102286, 12.89763097609846, 18.73223539764828, 9.592588672359991, 13.317776231504192, 9.228849191243395, 12.792765859379543, 7.354383220980392, 13.724661468010776, 7.688726883117986, 6.445972113019971, 5.528494347976686, 5.15159221819517, 4.714324892257247, 5.537632355150303, 6.3627423046646445, 5.283630883143509, 4.693764981682129, 3.767047504169634, 9.815961177790962, 4.4349043854652175, 5.2923036326440736, 6.206994875695077, 6.138729711120452, 9.463097068150923, 63.147407658117345, 51.75194551824196, 31.305020417962652, 25.889171608776728, 20.387565232247244, 18.396637581460414, 18.06294330294395, 17.639294670578405, 15.030914529210786, 12.839487235040522, 5.122520174053598, 9.120066469619646, 7.756637366878388, 2.920058413017387, 4.0204099919474965, 3.5168616273067808, 6.301430315342678, 4.345328158842359, 5.5606627148774015, 3.6179910886810696, 6.490681111609653, 3.223808383807294, 4.408343066141795, 6.289771258721659, 3.4997841945274297, 5.833899189331698, 3.9587463715446387, 6.348264006548061, 8.01876009014398, 6.566249723390663, 6.648257767050109, 5.7346470003274375, 13.402895443372069, 6.475017800797758, 5.709719420296352, 9.172667675432642, 6.006982746176722, 5.2617576989168695, 6.372870309435416, 3.857820236351577, 8.626940252845849, 3.615439767506673, 11.326974290246724, 6.6517275802542795, 5.585692922100986, 5.112723630420647, 3.9727104498310117, 3.312843363605491, 3.914000131163669, 8.49665353471136, 6.205731801878007, 5.7639196843597, 4.922918730209383, 3.982571381846088, 2.652402327464705, 4.291530874713375, 3.9430150876192145, 3.63441564903785, 6.460519228990931, 6.022353291942935, 7.1280741952144755, 6.642235054064045, 13.876405169862354, 10.010568312413849, 6.399622483565059, 7.852948062932407, 6.722046142226183, 5.811130444632723, 7.520565820810632, 7.522686613188769, 5.361784053199052, 3.780594608931028, 3.1199739883089985, 4.136873120006339, 3.7214795382927854, 6.42142261211906, 4.44185927056367, 2.475446271619862, 5.20505980585794, 6.108330310661445, 2.856313276254537, 4.116400618892939, 3.124830225267732, 3.7433273774514375, 3.922887704507467, 2.7189668275475234, 6.32574632529927, 13.279915562487139, 12.689222256613176, 12.189794301811233, 10.573993030327685, 9.651933207441948, 9.239088990266492, 11.437580729370602, 10.421528078176857, 8.988715046502058, 9.473706355432466, 6.922654121989622, 2.8179740517789558, 6.747695595428339, 6.8773102115344065, 6.350084953614567, 5.5750279958268765, 4.624249245571157, 8.13193136694382, 12.262069403856968, 7.312874244406904, 4.642676939402344, 4.17990798123063, 6.191703287423638, 6.0375027789194045, 5.13206858624253, 6.042151626819218, 6.528752776295732, 3.431089795568427, 6.522593695577462, 7.436660912213211, 11.087070132160331, 3.3923765770991867, 5.206933957493609, 5.77744769017293, 8.59819436239463, 20.065769800832257, 5.114565759236207, 5.652602799817252, 4.8685355563997925, 8.997350877942093, 10.227374043704884, 3.5048802695190577, 4.002187417290921, 7.214090647785635, 6.007761394076181, 3.8689383758046105, 6.342278025233294, 3.677677824489923, 4.422300043191624, 4.686969911764447, 7.426254938558071, 6.1268859312864885, 2.5893869653648194, 8.543663855360956, 4.696042927202349, 5.645863843224525, 4.106063219803384, 6.345706857517239, 9.405164527215888, 17.35317821392478, 5.884000888033711, 8.358732357864064, 8.119352231330177, 5.891528803152055, 5.2228185373323015, 5.515461051395692, 6.05603906706119, 4.447837279915181, 7.8367134150597595, 10.179510995031329, 4.164732606836684, 3.866424663674745, 9.380893560428603, 4.77087762872395, 13.577861144024556, 10.987222607774248, 11.506802648894695, 6.03636592566042, 5.436830135019976, 4.326259684693315, 4.0360333044886385, 4.038670477453931, 4.3449914358627675, 6.71954356052535, 9.986923748239201, 9.31302486273194, 9.087893862389112, 8.739704216735612, 7.931790202083269, 7.702600237553508, 7.212908604239968, 6.8253622891617445, 6.7703189900551175, 19.336024758020283, 9.185927397276933, 5.126580593236609, 6.950406949910937, 6.838592411035416, 4.457853708245047, 8.135745960464261, 3.2131823401520494, 3.742057596442163, 23.133534161349214, 4.242171992213019, 5.010516970491223, 5.4638627655871845, 7.156425338384343, 3.051152284877625, 3.6728527448681296, 5.140216044769097, 4.514434118543747, 4.245851915719255, 4.468980917466853, 3.8255706807345136, 6.869059825571241, 4.742900900741417, 3.784563012508429, 5.1020803734608515, 10.175801019335898, 19.28042844773348, 5.085840058151821, 9.653682060468165, 4.118259029398167, 4.127109797144312, 4.6193368150873235, 3.8076513238107315, 5.678948733495328, 3.2720415070552513, 6.13970048545985, 17.566637505615052, 3.842120861675922, 3.708769140838446, 4.601735995527565, 4.417712024279313, 6.116829060720162, 3.6474954124094143, 6.403852607427473, 5.014152573959918, 2.881078551478744, 4.772362279567923, 4.707727276777644, 14.594557832231114, 4.911038084825771, 3.42781181209089, 10.612794656908594, 6.5958129269864, 4.793348697507884, 4.482394131233041, 4.482164239671581, 4.157519488032948, 4.445051872887943, 3.308671410106697, 4.4834830493642395, 6.685499258993907, 5.855239620081325, 3.1983556783974683, 5.214456600040292, 7.281206433003557, 7.256338533750003, 7.034336800011758, 5.400234199022171, 6.749067060656619, 5.548087784166506, 7.375458056224524, 6.7984684321277395, 14.201960082236019, 8.291791969006626, 5.0537070210216575, 4.047447612564025, 4.213508512404937, 5.814550599362836, 4.953878359512652, 6.095298333853698, 7.749557553994902, 6.262526992360585, 3.6112023154376893, 5.451172661983944, 7.871113201431831, 2.9738413420420393, 4.202281705791089, 4.56063340947782, 4.6272987843354905, 5.392154388076517, 4.002212397041936, 6.182777950717586, 3.574940640041793, 4.170440755710284, 3.601676812853155, 4.679979173207172, 5.307561801406243, 4.740745708354524, 4.789741138386715, 7.647278412111451, 7.035805657654447, 6.5657065764962095, 15.17516389547936, 10.158107234920726, 12.873461042581216, 3.113457484046509, 4.832425064282578, 3.1284703461245438, 5.018541633853422, 5.071679970746225, 2.8157493427994886, 4.518160306613784, 4.938464446806456, 5.78288329670791, 2.7885089129551703, 3.273081933714461, 6.473460500040957, 6.2200771391539265, 4.549140351766772, 5.038343528195537, 4.620635521963625, 4.809877295138848, 5.602144808338264, 7.426540172528962, 5.453197714083935, 4.683444404873241, 6.972530429332636, 6.834983824076431, 7.770332331731454, 4.861213306528447, 3.9470869183245587, 5.3654545924468975, 4.981783979205712, 5.301049434323663, 5.197888942614711, 8.712366686418155, 4.783125616976536, 7.151453397195928, 4.34063856960155, 3.8208746547169126, 5.221177248176877, 2.4252227576233745, 3.9430320407861963, 9.67533592908899, 5.511339688788073, 4.940847699265456, 4.806857990478548, 5.7133013652128986, 4.795717130859595, 6.4076991103488306, 6.85502757994844, 5.243668446541054, 4.689910208127075, 3.7581302221239707, 7.225048895317539, 6.609980632796536, 5.169833782831944, 4.444695535271056, 2.8430703267386086, 3.96607835690546, 5.324061356436578, 3.6606465800555688, 4.71199017310331, 10.52823861998365, 4.433875564885519, 8.55416461532721, 4.583000783854516, 4.863345228828277, 6.418252821994697, 4.868570210192568, 5.377412549469293, 5.6955980646253375, 5.333161848991092, 5.189138470902054, 5.140467622555452, 6.0871221720867235, 4.027836101019109, 4.737273898468768, 3.3452292433654454, 7.204482285316325, 4.985824185853765, 4.57512180500306, 4.607917157771553, 6.763673295820308, 7.027619124675167, 2.7659954142943457, 8.719961977039556, 8.85144452722873, 7.4360574916085, 4.6784263150705625, 4.575680402140837, 4.255246558652674, 16.426367178235903, 6.214680770532467, 5.367732492842924, 4.3565044881812645, 5.846190959858653, 6.809559734324904, 4.170828537172137, 2.745043438882354, 5.184009903581024, 5.517870393692985, 4.763041445912888, 2.9804060648355613, 4.6097207155129185, 5.051470402072585, 5.902104566057211, 7.617624007884502, 8.063845484665283, 5.300915858076559, 2.6426349325717573, 4.147722912193222, 6.407123439041438, 4.377476986067855, 5.697423028691395, 6.283261667671192, 4.975890755072324, 3.9414561764629688, 5.948246307538131, 4.98149426610137, 6.37759939996034, 7.619390847163579, 20.168163744056457, 11.43255782891236, 15.208159772433687, 13.081067055925894, 19.63740090703556, 31.564984146529795, 30.216584065934065, 24.17820919080919, 18.383404631693953, 18.03495307123055, 16.260733367071527, 21.937578683698778, 21.140074261180377, 11.928637036877861, 16.569997929519435, 14.247427336496326, 12.773576885513418, 16.20421181399908, 9.69982398540339, 10.600582590318652, 22.6489338582336, 8.338914826652692, 12.531860954035878, 9.535330904505194, 8.933053524311552, 8.640478228420864, 9.661996971064477, 12.034830246638535, 18.55989615116582, 6.768265493339383, 7.76037183782281, 9.331373096980409, 12.602107528640135, 6.9006672920305885, 13.828561853734975, 8.640317282478797, 10.161934463189404, 10.594830320382142, 5.915545313739563, 8.831794209345588, 8.123424334299642, 8.187439386989112, 6.984680310512314, 7.137672062673281, 16.655962751000946, 5.727217791116435, 7.219590819430096, 7.546229323256451, 6.377862530988708, 9.187991206991164, 6.3557135330932475, 4.246910789027429, 5.94230067429196, 5.484866487177031, 7.319691952219823, 5.108692004941527, 4.786472658568681, 4.6705955247178625, 7.963223701219284, 4.54973439989593, 5.918878750156671, 6.5755073344345885, 11.682670831303039, 4.133874061570352, 15.11573496832621, 6.388913627030861, 5.541459267518554, 8.820504247077789, 7.962719300134537, 3.3597795223050624, 4.805832690132095, 4.263006417491951, 5.1393644950538215, 6.72916899021267, 7.025590356840285, 5.710848478176744, 5.577838234504767, 5.918249956796762, 3.5538609964155095, 8.455150921114436, 5.82841274738491, 5.32453445806312, 4.445576914750846, 6.6588139180082315, 8.607670590815077, 3.7725416286910094, 4.22253088698998, 9.231089465961091, 4.645221792119655, 8.602743005097722, 3.0374772109413235, 4.769393664658861, 4.616415050856189, 7.137028087902237, 17.119824222699414, 3.0484072671386455, 4.278361463986136, 6.1569962040914055, 10.34502189451462, 4.3224405319942045, 6.299348121938767, 7.607050652978955, 4.900734591233854, 3.490408049697689, 3.7464253282731543, 5.10713872218751, 5.579778220054945, 3.6147395224600105, 5.927439128004296, 3.2333291481589845, 4.007316327499, 6.095259741830085, 15.527567892399322, 15.408314269943252, 7.690693258462402, 4.518835455930005, 7.673726726247624, 6.376432221390294, 5.361208991302337, 16.90386479587366, 4.319417294915404, 7.7063668928668925, 3.1732610809843003, 5.310310076667225, 15.397405383718555, 3.0010833897626443, 3.3352491861233577, 7.106797915792497, 4.9022138427050255, 5.352843321484433, 2.309818818224623, 5.913190032712463, 4.781475373566092, 5.364257726201822, 6.013709136691177, 31.861224887804575, 5.719920290948048, 4.96635687793804, 146.55483991228076, 2.9104254708367647, 9.232656437909338, 6.509248896547563, 24.396937226929612, 91.02777564102566, 49.60389148629147, 41.30398412698413, 29.56774708946885, 37.19321568137746, 29.151186507936504, 25.32500372153164, 20.359498001997995, 18.459551185894203, 7.831447113793582, 3.9772539023256464, 6.683498342013542, 4.629299686771629, 3.208798675335499, 4.486631214916645, 6.1172691433152435, 6.451908978386355, 10.211020399166921, 3.087012013982221, 12.039088095211143, 5.580503218759831, 5.31191905772902, 6.148341229955841, 2.6442564012782883, 7.702892445951704, 15.274055791594025, 94.96424381821883, 55.33454538680271, 47.1099571783299, 34.22502445728409, 27.857165612375056, 32.05690666216295, 21.700030628229708, 22.88138249232821, 21.200990328199897, 22.16898936777075, 5.336487004967807, 3.5080881087738285, 7.516488535009505, 4.141763034923584, 4.7411215013645425, 4.816723355174588, 12.766711377166276, 5.009927043853343, 5.5896231199201365, 4.308123825113384, 3.2727823817521013, 5.5840900900065895, 3.73638269079631, 6.579826681509673, 4.57750874805434, 4.600161982072774, 6.3250277331165, 3.9259812138427774, 2.421717341631255, 6.058155151488854, 5.547273600832654, 8.452676151636409, 8.229592572010873, 4.21057352887842, 4.9205896104314855, 7.235611282332392, 9.534199173017074, 5.77507644764563, 7.902325882877993, 5.031650620087396, 10.116817359851959, 5.13865289605244, 4.482589178783216, 6.74862767820366, 6.868326628565488, 4.217480174554903, 8.65177482582001, 4.399340915966706, 4.007728390027964, 4.293457439301264, 9.670760164241392, 4.447656121474765, 7.251140207603364, 3.7417440258693784, 6.8489751674057535, 5.810653235097118, 6.13491801368715, 5.68070655609575, 5.389818013126485, 4.309057957583634, 4.1822816898545145, 4.775953244116566, 4.7855454736331815, 4.824003832931833, 4.131708137352557, 4.738736104906965, 3.5886208795380448, 3.552554229496297, 4.751040163496134, 4.367130535035612, 6.493306266899105, 3.987927564635199, 9.176635519204336, 11.744045832804236, 4.040457292265818, 4.462962390586379, 5.072672542720392, 3.2320282245425576, 5.871175692500054, 6.195089385030226, 5.637263515439778, 12.721285758900231, 3.826990868024686, 5.284033354067356, 14.415846971025765, 19.87760407378666, 14.323254171910639, 4.418369929774269, 16.58681235542998, 21.946309733984187, 9.952073945048323, 7.023847816159797, 19.010746612038233, 12.006340175848385, 8.73214559765703, 20.773118732993893, 20.20366587538976, 5.319522634712802, 6.745288271502832, 13.091783957381367, 16.303579296994382, 12.373355390007474, 6.844234387915448, 10.369212480068589, 10.722977017297248, 6.346598174947965, 19.477711975889598, 5.619040900867256, 8.45279507412201, 4.916549687045762, 10.691131580040203, 11.293355382297095, 4.926554493925674, 6.612235786362791, 8.046008127575812, 16.001405476351064, 8.206979156139417, 7.069627518772315, 9.142829896330673, 6.117620545511053, 4.798688017712018, 6.004928427337367, 3.6856873290467185, 2.623942638768121, 5.5508196509399435, 4.291470493197671, 5.513297580365848, 10.665102546711802, 5.257747928515539, 8.160766716635331, 6.614117531254278, 6.029447538252433, 6.440243906883823, 5.583092210770482, 8.876422955380233, 13.655925161009554, 5.344461901811269, 5.641354700114865, 5.195796810479364, 3.7865441156433284, 16.15842695469533, 5.736658547436555, 5.243724547306737, 4.965818268183269, 14.226573965070017, 7.917791787898499, 4.273475976066246, 5.133936135835561, 8.56771343737367, 3.6932425746124036, 6.120541660540888, 4.848454584391094, 5.027263112835895, 6.927198633178082, 6.932394640052279, 13.945727562759153, 3.8699846320368683, 7.445268720195478, 6.154884993775442, 3.0527844366840666, 4.450797544798408, 10.459153640988362, 16.00715549503947, 12.85192233111833, 12.799605876965161, 21.77527043768159, 11.026631173497895, 11.988868306501287, 10.436043138182418, 9.225031891283596, 10.725233731262167, 8.403702321815452, 3.677170772646247, 3.1160331874190152, 5.587723113285615, 4.455776834517997, 5.584014667453222, 2.7137627913224374, 5.167441596868191, 3.7323580245051593, 4.938402702446046, 4.764517586989443, 6.769518335241176, 4.254285649460282, 8.001322428125683, 5.475327765140489, 5.075152955117564, 3.0824386960707875, 6.116401778809647, 15.871206099975302, 14.89317639874538, 13.912276706910873, 12.12309437374283, 13.183229223268095, 13.068763885784694, 14.10163947132634, 10.583719963944866, 10.684951047648129, 8.94962289937884, 3.719158334330767, 4.732890981451403, 5.040149174087855, 8.462874952003814, 4.50788138218951, 6.043432398124201, 5.976727363531484, 4.326476274863419, 6.009294284104345, 6.058756023273973, 3.687024617503836, 3.2218866038913894, 10.682980927862873, 4.406492845482829, 8.37398249921848, 6.6413217379223966, 9.981106116464996, 4.740805447863915, 5.006617802775013, 10.862354543028372, 5.868454377805651, 5.139174385879389, 3.2010337813484595, 5.037772931409193, 5.422025418261907, 4.608487154898964, 5.398030000071301, 4.243030210484529, 9.92678830976884, 6.694717722660909, 7.540041767033165, 10.564511237516387, 4.163638952798645, 5.471905914136006, 4.602791582386671, 22.541900633534123, 5.822177448954018, 5.661667117360094, 7.071945339747782, 6.255243510129109, 6.1202506525043185, 13.201479705624394, 3.7460436523038134, 5.213241672748952, 3.931574897782833, 9.911802384275775, 7.4749656778354545, 4.710848569346462, 5.126673200124792, 6.074908847986015, 6.871747726769444, 5.911372228638751, 4.248931661402385, 4.434461198619443, 4.629064241065276, 4.24993677540111, 4.739304412011249, 3.7320466452763204, 3.5130964469519466, 6.574894642036742, 5.181172761172434, 7.085952402571161, 4.023853751702331, 4.114860930056751, 8.250003643977776, 3.5320536344673665, 4.834246875927291, 3.7433057467420956, 4.091882167664185, 5.175898108970088, 4.0483250240533675, 4.851104737200579, 4.930103650549059, 3.6613303987006574, 3.9304708425907147, 4.527029627341168, 8.578225254961108, 3.7463854967280303, 3.95204065249476, 12.689694044947636, 7.824828497433527, 7.026183951770743, 4.114765453940923, 3.9236524059134377, 4.600463098359775, 6.638858786689894, 22.08937408235218, 5.330067192757221, 3.173499286718809, 6.125570767558455, 3.162013335074364, 4.337675774139437, 5.437168510243414, 3.912624127453287, 3.8487994410243385, 5.374277188774073, 3.1098273475102296, 3.3705573836834906, 5.308550861063871, 3.8000914463134836, 9.08501023990629, 5.970101474268824, 4.9569185974148775, 4.193256969797352, 4.540333742872724, 11.067705332361784, 2.958408280890851, 7.041446155143304, 5.115739865826249, 3.423616806927082, 15.603722566068143, 7.567372429844765, 13.352596820418144, 6.837890001233408, 10.576957073764978, 29.522097260941504, 4.627316725971161, 15.350058529952214, 9.69859413543856, 11.791180863254386, 13.92620007624339, 7.025923295177609, 7.411671524396986, 9.56274545576825, 7.456719208957914, 5.658688081233949, 7.584562504560932, 7.584591866423481, 23.21913049670807, 5.236599609054725, 16.20989492313212, 6.140098772672819, 12.318897751481678, 17.010509647333674, 6.232669141198142, 8.58895372629958, 12.313705483989397, 10.890542055767309, 10.125725699172317, 10.456496706724579, 5.416017385590193, 6.0434744686145745, 5.73373248583163, 6.983799764064223, 8.06596203421258, 19.35505777779958, 7.4257140595732185, 3.4873573079607247, 5.453388170828636, 4.633877470301144, 7.636528201054372, 4.90889959510778, 4.1235751072034255, 4.550986896090254, 4.057196103829819, 5.902530165464055, 5.248563237090733, 4.643497195582149, 7.592435625194776, 4.720944097027425, 6.1419389210018736, 4.220838213018245, 13.522167797677152, 5.220281964674694, 7.251076909162306, 11.958064332077166, 6.611808576443242, 6.676130235072342, 4.658118028216461, 3.9569944131887373, 4.761592168548636, 11.073446461267965, 21.548979444847085, 16.88196482342135, 16.975521177336848, 15.584980504567788, 12.440772449968199, 12.743668177448468, 11.735282221198755, 10.778273788529427, 13.833544946532033, 6.946902456255778, 6.70790872588446, 6.2392553400032345, 3.8164779581484223, 12.221828943850749, 3.3687744212011475, 6.001196932393433, 3.515790679039342, 3.913573166010381, 5.045538878755954, 5.7657640588899755, 4.854092185310092, 3.2881012033768866, 5.411440658603745, 7.2877769177354255, 4.30116733995217, 3.523288332347073, 4.924005496040026, 4.951470855243788, 4.605405799816427, 3.3766139274894273, 5.530597014716992, 2.865253571796202, 4.349583312266551, 4.485526331887968, 11.231272944701585, 4.894484867472377, 4.104827855712263, 4.79137492102186, 4.245953184656003, 4.951746027977676, 4.677117832490003, 5.263541270267534, 4.6685900289521856, 4.61153197632587, 9.704506364793268, 6.872931111340483, 16.26833730679325, 4.062065657306753, 11.298429510312598, 4.31536198153941, 8.648665050853614, 4.0794116280000665, 2.347442346318332, 8.3142667037218, 4.564832600078593, 3.3632819461273793, 7.138854602162559, 3.3395135684098287, 8.31323181836343, 5.186671165298115, 5.124833632051047, 4.885133020659059, 3.650684025397651, 3.2117462251526043, 5.013969307619762, 4.99734183265108, 4.670053574920417, 3.7099493557716654, 3.3510835958450964, 4.172743889208055, 3.4615172140745054, 5.407407246194802, 2.875133111508482, 4.45855840173276, 3.8610102071521313, 3.954886309791079, 7.10788241614179, 3.3512240104657782, 3.8017936080111707, 4.12642187880362, 6.085830792894219, 3.983350071112383, 17.731340569654225, 16.712606668192763, 17.836088680154067, 14.426940981351553, 12.903176372450718, 11.65399624162719, 10.576920725650973, 10.646003024621605, 11.402686363145765, 9.290108236619472, 4.4842582801102155, 4.595513614650399, 5.894899602464803, 5.928845356864326, 2.848549792217959, 5.397069774258763, 3.932822684530047, 4.699838244626391, 4.961690809287102, 5.490080972474923, 3.772012865185792, 3.20101672739122, 3.7294706965671907, 3.6122125393148132, 3.7077058045685467, 4.032505897296468, 3.2862570409428673, 3.6843836720215575, 3.8070714547177493, 6.011985072266559, 2.828112589684883, 5.4173490466949055, 4.1617661351484685, 5.038327718487502, 4.013574668549155, 8.432615588111608, 7.2558140329455165, 12.487783287466808, 3.756279704524362, 3.333703059274491, 3.926845009520749, 5.197508935313614, 5.053503795628775, 3.2841469206949045, 5.460443757851017, 3.4407278377547414, 4.715404185952636, 11.131576753679271, 2.676846951742252, 8.918337661833649, 3.8818402565733394, 5.06628401528002, 6.960042773127267, 4.020413929774526, 4.207045357682639, 4.448552793424699, 2.994338921908493, 3.0485801714684158, 11.263787045992224, 4.87289611609138, 4.796963032652308, 3.348701731322003, 7.781388431977231, 3.9323538363991424, 8.882226347604234, 4.346673071626512, 3.598927031085841, 10.056853855506247, 8.222680324331698, 4.013808331532398, 3.9631899320074635, 3.1775098698438082, 3.5609668498081066, 10.687673894284256, 6.45764599065791, 5.1274485512937975, 5.90038902938917, 11.78937792535148, 5.9268326205062545, 7.447662395664225, 7.9102958741577645, 5.518926067599598, 6.541498581265923, 4.553964818300764, 6.6754274699556, 9.003616309134161, 6.7178408530567095, 9.837538062822135, 4.090982030885929, 6.136462819809283, 4.04722908778265, 9.184775869999003, 12.128271923632585, 5.517767528866489, 8.602332029033231, 4.309927802828802, 2.7669096670618267, 6.113013586535868, 10.682544394304266, 5.476269353098022, 4.292390928346008, 4.80154073369176, 8.809356989842783, 8.375953989072492, 5.71510455509906, 8.783284523423122, 6.286133206541386, 9.301571359772227, 9.820668256237008, 12.908055285310343, 6.195728982086001, 4.057383997316021, 8.181087240575241, 10.52806168099759, 5.590587187947251, 8.118344348299505, 5.829746640177202, 5.587793044187959, 12.341618773943518, 4.963659146250606, 5.226017577386982, 7.067091683797403, 10.23538630474534, 7.815804697854296, 10.388348999212283, 9.322181813638917, 7.494591595733548, 5.5348879035984995, 6.480854976766361, 6.270189846761088, 5.124710125946366, 5.075988942637873, 4.4614747418077725, 9.626182172521592, 2.807229655868284, 3.4471325084431856, 4.312942979912615, 4.098032489752092, 4.007850283003421, 2.5757054616336434, 7.1101325368907125, 3.8266079323341664, 3.6581610887006155, 3.9653452821761372, 6.472250851957749, 5.956174244685849, 2.6692875494110915, 21.09444599436496, 9.921104225410849, 16.108722138140507, 9.50428220765853, 10.276943124988117, 22.769185910256486, 8.887566053818295, 7.206551779675692, 7.190932476412392, 7.230671497589701, 22.333146776010448, 4.099891160732316, 4.7462021562331165, 4.635602073194205, 5.825122453595383, 4.100663501472116, 10.820663134360736, 11.736001545174735, 3.4189365900448205, 3.509291334067783, 4.694323564538365, 4.015833894146136, 3.989250142222992, 5.2283183358291545, 3.7719341730017026, 4.672827351770443, 5.593851326239573, 4.444223170406584, 3.8842293301909243, 6.673278499347454, 7.913868659452715, 3.3442312919456803, 4.890365957598562, 3.7678930138215403, 3.619994761178696, 6.052255795167339, 3.269961177226805, 4.623323028383875, 8.142514621883127, 21.731769749333168, 4.80077354677642, 6.580527864738228, 4.262290315309012, 5.577833778996793, 9.004247355128902, 6.56350854350297, 7.046180114638806, 10.126938059386216, 7.2856871612831995, 3.573853794004729, 4.674145178241749, 6.451073516453403, 5.682976696287693, 4.040143317662511, 3.9361798347377843, 5.361468406876896, 4.831492135177023, 7.643264886069756, 6.246157688074398, 3.331890306652224, 7.106157513527549, 6.331875292835417, 5.209997076088932, 4.443400897227835, 13.366032321640265, 3.3858202140150127, 5.870431833169372, 5.718708433413832, 2.874043810103459, 4.003051115449028, 7.8348220361843195, 8.978133049412195, 10.203229174933325, 10.123049437992629, 6.284540851531956, 6.863785501708004, 7.9082339363368686, 5.474455666322577, 6.253731727903682, 7.739526183700254, 12.780782284624975, 4.778030067184727, 4.86067189791058, 3.2402907560821452, 3.981773707459536, 5.165474121350659, 2.8342288664470354, 3.152780454123743, 20.40037197088954, 5.281747016988943, 6.589912741251522, 7.546099930367288, 5.213064933366107, 4.534533003497214, 6.109988902636805, 6.149287851248538, 4.338673217232784, 17.102662845584533, 9.052950140932403, 19.01002179543948, 8.771921007196985, 11.52942448441011, 9.826402681967712, 14.648313039266588, 7.575916294953363, 7.827650014309091, 7.000804008268017, 8.661713349646408, 4.2325112949092984, 5.4819703311156225, 7.773186943875151, 6.628930604676233, 3.50172290181508, 3.4272395336800114, 2.702458749744782, 4.023765458069583, 2.8316136928592552, 3.352952921714224, 4.051498796499127, 4.68688522519979, 7.24746344966927, 3.60292380098483, 5.287458548280604, 9.81876028820829, 7.708571513012477, 3.9961497564229918, 4.9818166602566, 4.0462287027727, 2.9385542864306315, 6.391902268156559, 6.109019794322099, 3.9558019366963757, 8.921091872505839, 7.363435049732751, 4.040484032599768, 14.304334713776791, 9.669750353177538, 3.778980967069963, 3.226344064832275, 5.050885996375801, 4.4134033059831435, 5.083277056902859, 3.6362704018764007, 5.36098431711142, 4.546504384441457, 4.869523740949126, 7.962578119331306, 2.5744811624724875, 4.350641889997813, 4.0757629942487545, 5.397319771982204, 5.114903019558934, 7.064689498807153, 4.353400483934482, 5.280203155133984, 6.56059521069841, 3.69513926220116, 9.65083013703337, 3.565471960909514, 3.3008978286602297, 3.357044572970152, 4.359749461457035, 7.7744056002064434, 4.01203148093061, 4.405515476117301, 3.601189281428917, 4.057604010234479, 5.142290273504133, 8.59845770892335, 3.1679925726251104, 4.32448400286811, 3.5297422062873047, 3.992135145010265, 3.8644145556183425, 5.7995036542993965, 20.37572284605021, 4.425913359525032, 2.384424072838074, 4.028813881601182, 4.892361343246459, 8.541731435020536, 4.1492979117207875, 5.156127776847885, 3.4896915479674826, 3.520506786285593, 5.980289897150819, 4.153067195475636, 4.968502373125841, 4.768990476959189, 2.644332411004585, 5.877697784690322, 3.6251140121560037, 4.806435587452959, 5.013660371008031, 3.5717947159320054, 7.134751689723671, 3.587044051045628, 3.869002845075023, 4.670614821948942, 4.459059057464788, 2.750238654639675, 7.875537447314384, 4.087673712378427, 4.305791478436394, 3.411851661128887, 24.625275351208977, 8.786894325255208, 3.7653124443973067, 7.19666735270319, 5.191519193339748, 3.9875084051508654, 4.438383474569945, 5.501833945397028, 7.0764904220649445, 2.822391610758884, 6.8923006150271195, 7.574647929126608, 10.441314569500799, 2.5177284309572543, 21.74431280040793, 8.795500567203034, 6.618090181790036, 5.606793586731364, 6.091402867782813, 4.345983431966464, 3.7706871806367452, 6.980369445184155, 3.869239289174264, 10.275501681718984, 5.330619919357645, 16.80718736264187, 16.746655841651684, 5.029643045844561, 5.318637812417745, 2.643046064543513, 5.35459594400107, 7.852285316252416, 5.0527123453798115, 8.92627419147951, 4.007571046206722, 4.179491545246707, 3.2708469071665482, 3.7804891987434894, 5.398854031694837, 4.933085903582911, 6.293038962507073, 10.158056414320914, 4.614311507542295, 5.972431251918587, 5.435471605836937, 3.1485378118854683, 3.311816321433669, 18.163590907156625, 10.994420299752697, 4.294033938435281, 18.711505859579095, 22.447096448294545, 7.212616445977151, 7.122474176721901, 12.338161045851686, 12.93015554270464, 3.5787349259832304, 3.0543451140160895, 6.14614607709531, 16.07650774629747, 3.9067588012388637, 7.566150643880425, 8.870129982315753, 4.394105919168084, 5.224770652420143, 11.52077750886984, 3.191361136509951, 3.649744965456559, 12.194185552189778, 3.2090557689897192, 12.324233005644691, 8.281114122695447, 3.747541713334515, 3.8705990187448305, 7.740664718617739, 4.217793285389954, 4.912416919959865, 5.875349264269433, 6.780646444751703, 7.454538578037667, 4.378372302549647, 5.261915319763992, 12.167328042055983, 5.559959375965804, 3.6923683207683733, 7.328703556118778, 4.920404449018786, 4.463436985870618, 4.842641584464821, 2.686004235089077, 11.58497225897152, 5.190289835247763, 9.64980977837769, 5.0113493540727045, 10.67657908923699, 3.826801484738366, 7.1600213756885545, 4.111051377099103, 5.486935901865073, 21.490289221997045, 3.4754728714950525, 4.784595070393816, 4.370447407022614, 3.2724423400098837, 7.085131309832237, 13.008669122058093, 3.8252971124821102, 5.3766985593164405, 3.589944459209124, 6.405155962953442, 3.800967392449986, 7.0445139796486425, 4.3132477408158065, 4.0309810102279675, 5.591203907653842, 3.408470817264228, 3.115564332893876, 4.821265449786647, 6.689649062178031, 2.5840983483861484, 8.847829546583482, 4.088798335707672, 5.1876068812044815, 4.521163708819568, 8.544335255948896, 3.606824392087075, 5.059398925811546, 6.141274424506601, 5.974262969504761, 8.32992939359385, 5.090360602216307, 6.762143018390245, 8.861126419690164, 6.953693235741272, 5.463278559079072, 6.845057597550894, 6.586495261029365, 4.591413340782024, 3.919567079119882, 4.225279575384912, 4.179781086547756, 4.743080293910165, 5.010251223929384, 3.8940056831722223, 6.252980426909254, 4.753482051128411, 2.7944352989756855, 3.816998715968787, 9.477022452060782, 6.056300827712757, 4.536518896490324, 7.981578866777504, 10.476736261399498, 7.848442922731945, 4.519526571281615, 3.2247094444155455, 7.284574714417116, 5.1433238285410345, 5.373977415284375, 4.538148425982288, 6.611250484891668, 9.007524959857431, 15.622671920671921, 14.646111509830346, 7.643614586164337, 7.758672022922881, 4.733104487669711, 4.748804455021578, 5.231860914190055, 5.8741228069968425, 7.118839712056925, 4.069745364291165, 5.536292210460878, 9.94486339041452, 3.812932099987262, 14.248861048606301, 6.270198634398307, 3.7307638831155727, 4.1173401564607675, 4.405256635018837, 3.7338226057141917, 4.805193280113106, 6.385604736296115, 7.683631911180864, 4.681453947468968, 5.369400245366145, 4.411213807553868, 2.5013999509951645, 4.527480379794574, 7.406028494206587, 5.931795867461378, 4.157109084012133, 5.216344220364696, 7.69799963645802, 6.2114138498886415, 7.272926023472512, 3.9941905548526186, 5.7307249690270625, 4.264526749656802, 11.267952922019854, 4.497230527316761, 7.300905630365926, 7.82254261978912, 8.803026367820104, 6.855419330260412, 6.0196996248690855, 5.804647265838481, 2.5574103662087135, 4.959670525881059, 2.994454803430579, 3.5464055270210575, 4.928815943751715, 4.121801581116372, 8.026309005098634, 5.247702623260371, 2.7467656668977365, 5.786328850763656, 5.076844469655679, 5.60029613230467, 6.862062985379579, 7.324355954680498, 6.848521022081459, 6.79954233753212, 4.081889359759071, 4.3117327800411305, 6.137335283712846, 6.405844302935758, 4.202525147115527, 6.166786652568869, 4.146184597555263, 4.618795205178939, 5.92476603565639, 2.891310946121879, 8.650490239713006, 4.4730992112724355, 3.1258589751371684, 6.065393787169515, 3.981435179834243, 4.807437147944368, 4.427245658771087, 4.161020485118998, 4.21318428642252, 2.9850707424826255, 6.142935918788386, 4.4576159892184535, 8.83310105416919, 4.234785286720113, 5.151003667713847, 3.66539674070353, 4.771755345777772, 5.491483808664606, 3.7681584597671374, 3.703113941349894, 2.83636930709599, 4.341630252385727, 6.284105510650566, 3.4745144482487933, 3.3879555290980408, 3.0648135842882707, 3.245382758979372, 5.61295422362846, 4.270568733093532, 3.351758552209911, 5.472043581658037, 3.7244165038620407, 3.390573638980381, 6.544081853121376, 3.8402313115655566, 3.5547388186958235, 6.100747127872127, 5.866780289386627, 8.138763208958, 6.076762529972635, 7.2049096532636865, 4.308669767472324, 3.3946810121189026, 10.469992110014172, 6.9837253173954945, 4.645868118393884, 3.1187215637464405, 5.198487204846449, 11.14213712360654, 4.009404945475443, 5.674773920662597, 2.4822144794066743, 8.82718902482118, 3.282896505398628, 4.007708024146202, 7.9733193551944614, 6.460288549432972, 3.2523935916144007, 7.911955260474551, 4.227578658031086, 4.1164941410156946, 4.111581422571524, 3.8037258804511427, 5.304177858806988, 6.026154733747925, 4.171622983040312, 11.205376498499259, 4.008597382122888, 3.872679406557616, 5.394417909282918, 5.595122040187351, 5.431667418467231, 8.801384104345846, 2.7335476628527813, 5.2198435346569445, 2.970234873542162, 6.4617789644677, 6.700453197882436, 11.016786023723906, 3.6271006474201664, 5.756425719304202, 5.003612362262757, 4.216441558824696, 3.802964274389882, 3.7195149741263718, 3.481027483440326, 4.039501655040489, 3.28008947933217, 5.2956480588817545, 3.844286128548527, 4.9649923167160726, 4.499250543490512, 2.770758449005204, 4.217348268845353, 4.602375120726939, 5.486570086895347, 3.3562650532064606, 6.088514297099174, 2.956358171475586, 4.180425432821159, 4.60881261811456, 3.4815921264950997, 3.181530709431052, 4.7896481828527, 2.8948976110351747, 3.31260160364969, 4.36139398081627, 4.333090462028286, 3.697140072445518, 6.200890723701539, 3.8911484508129117, 2.6639707566170774, 3.7009931589583323, 6.875502894469514, 3.505202971803464, 4.856380086338238, 7.637682803988268, 4.08486461688427, 3.538172926119913, 3.974445590177409, 2.6637639425991217, 4.573391977751682, 7.593572720127368, 2.92162082056442, 2.7167906400832305, 4.910899230090448, 3.7994493574937596, 2.740410887385721, 3.5327925617062577, 2.9096559667113726, 3.1026385845278766, 4.134102771903004, 6.3206917243500165, 5.487914807697035, 8.137884393673675, 3.5315729544029724, 3.6748616418945823, 5.082525163871543, 4.0726284185645545, 2.7112546985557047, 5.205079922108951, 12.654031344891994, 7.8770917952821335, 2.5552050346652084, 3.2658231228743606, 3.2206595999720165, 3.7466919384743536, 4.545634517507811, 5.135923324969202, 3.029885479822321, 4.156320043555282, 2.7256068712084596, 7.632327561602478, 5.524444778811902, 3.3003324209608356, 3.6492404407742676, 6.629277798980862, 12.144929286902007, 7.123746113046962, 6.775532593091474, 6.132311439490024, 5.9325215576943835, 4.7464582718404165, 3.077597629502513, 6.146673215568036, 2.9108389395821552, 4.2805121167201, 11.266074876860449, 2.4948090431318195, 4.131914011671249, 10.531224347447175, 9.533565123151208, 4.437418848809609, 4.6674254073073245, 3.032079526022466, 5.479346650600891, 7.648467524537353, 4.7233137124874265, 6.831916085267647, 4.4702911076654726, 6.960571513810367, 3.712575802233751, 4.891003534430778, 5.0526028842674915, 3.8714408745280853, 5.357052561209916, 4.485825916936287, 9.454046699017285, 8.656556259820691, 2.847811410229246, 4.7686283033934895, 9.048782328473045, 21.96431867257785, 4.653509798257835, 6.036290958777085, 3.5666401371486076, 2.6375387397505192, 9.73102916503574, 6.681376369038257, 4.121170024678062, 6.0089562321417995, 5.041579224387918, 8.588209904789123, 94.76829870129869, 4.685200112852383, 7.866262955661999, 16.55671912693265, 11.338650268247399, 12.431006137399237, 5.039059837085973, 3.8838783152909033, 5.716166443785992, 4.041996143919808, 8.037934757270621, 7.024480395228028, 6.056598081658089, 5.571075838502746, 15.454640259745368, 4.176168509088619, 9.509626494678345, 5.613114563028903, 3.526302039583177, 3.4270822834322385, 4.493415051699832, 8.391864522609987, 5.078957542878558, 5.43774930355706, 4.159684451060332, 3.655314558472071, 4.83864385881008, 6.037772161467409, 8.639154543492419, 6.1150137509020555, 44.20601252622824, 30.171565582810494, 39.38983160920384, 39.10261453905573, 72.60878571428573, 59.81536228099386, 40.65822095010252, 38.62287951814271, 30.103705114330122, 24.058418494903794, 22.866493555002823, 20.179109868437706, 19.39148344392891, 39.07224186427606, 22.690729529486113, 14.796108171073367, 15.649483016740326, 17.365160536746053, 13.15297899497392, 12.782053183961223, 14.659948424563051, 13.376005441809193, 11.001088338434396, 9.34993621455559, 14.142686497691074, 9.170348404298934, 15.035650252006546, 8.570749612554206, 14.758725221845564, 9.843548038383561, 11.610944112537174, 8.738474912691858, 9.537052876849302, 7.8608445373032545, 8.879896656543654, 6.812484295496908, 8.971225838869376, 6.954656009738415, 8.773782217358395, 7.426102619734873, 10.766707301944086, 7.121745844997753, 5.299798583971406, 11.799191797878313, 10.463152500040616, 8.650381592465893, 9.605564037256068, 8.008211003767435, 9.594023337046194, 10.325267205496987, 13.165665423735266, 8.361048279161277, 8.713389983409156, 7.1526651219403155, 2.468887809574799, 8.287210551754919, 7.060888078798421, 9.16604778192848, 3.3251467299164092, 12.943639309187185, 5.219307733880996, 6.3726424912289, 3.8511744901404317, 6.042981176571082, 11.206620731188744, 6.080776025033656, 9.359988190102577, 5.725096989251338, 6.223509299742282, 4.683780748116623, 5.400369198383509, 6.580046049266981, 6.440179265665403, 4.253445080086358, 8.361741863175375, 10.668557725523032, 6.58867978098927, 29.203241241679958, 6.596171040002346, 13.168082935757138, 6.343238109954218, 5.486813373305359, 6.44823115311572, 10.798835616424366, 8.459320603471303, 5.656334615089923, 4.526117164459638, 6.163072129921332, 5.713987731033939, 5.677546515219553, 5.401431552601688, 4.422068273682845, 6.73932815637569, 6.139611616808912, 4.804983831780422, 10.288955959244754, 7.261904435494899, 3.5658557893827503, 10.10472284545959, 5.635895674098167, 7.269804638760167, 5.614953507372918, 5.378822643027163, 5.87922000359906, 5.662236996116468, 6.96630815243412, 9.372536865296377, 5.456055097720541, 5.306873084318993, 5.444552514881686, 6.085165173674724, 4.483476375997588, 5.070161273400807, 3.982576116837548, 5.789891676352513, 4.405204992162402, 3.999375569439563, 6.10104429399185, 9.45541692154307, 3.983146114923972, 5.128810252415604, 9.077339773774856, 6.172972059896755, 7.300914954119133, 3.3249258430960653, 7.095439596847065, 4.594899623718022, 4.649485131919744, 4.325499711128692, 3.9982507656041166, 6.623889594552862, 5.756201914668538, 5.058526565005389, 4.924248425965991, 4.695961868610263, 4.049849776894671, 7.292917553932985, 129.51498599439782, 4.519047937478157, 3.434663942443439, 4.841293058562232, 4.11693748023297, 4.137480321655468, 5.824645599560246, 7.0108436776832574, 6.322214090836037, 3.0896760341205733, 3.4784248041097316, 6.144646866914819, 3.1757706697197903, 7.340563276237152, 7.310907246303368, 3.9236412636639013, 4.276855074597494, 5.6333880930881906, 5.026651704556797, 3.9567035407227418, 4.620034148810427, 3.2433523230538603, 7.332178261028282, 10.405922060074127, 5.858040034452761, 5.640180395323522, 5.1301342008541235, 4.205687036802062, 6.315779439733623, 5.439686775396836, 10.604537232406845, 3.285157370365463, 6.389147376593601, 4.386927780693748, 4.394652037304491, 4.3566122898602435, 9.135663190878091, 5.232190659581933, 11.652524719586802, 5.484278491837244, 3.6980621158891127, 7.838446654919538, 6.636328497481468, 4.540058798284094, 9.073874701420786, 6.063395181532116, 8.741445390853327, 7.819638560470175, 5.690595761054216, 4.226496747415231, 4.643641469341386, 6.368142142902817, 5.24577684186377, 5.324804571010703, 3.0600975368534704, 10.331555963636228, 4.00963065558649, 6.583477969752567, 4.9425252813726726, 6.375623172312577, 6.233908851380532, 7.124290605911116, 4.50186102326282, 3.3996605651193494, 7.085558581994309, 7.792159012137649, 5.338861255059457, 5.040192218220889, 3.1696239481340758, 11.992139041826848, 5.922926039716544, 8.680312458644078, 6.744647280046148, 6.158211027052593, 4.609878940783684, 5.406724534963077, 147.18111111111122, 82.03507894736842, 5.360917268869188, 5.430696122374889, 8.699327990656895, 5.319807650674913, 3.863873422375692, 4.825566653266516, 9.417247430691578, 6.5761242085666, 5.320063842309854, 5.341664704358449, 3.193234443817718, 5.361417521618971, 10.76342008424458, 5.133418938668703, 5.361846724473586, 4.0048026397104275, 7.890902200312426, 7.287193211730818, 3.6453674143302264, 6.060204797379544, 4.73036260692523, 4.937747635254292, 4.937154014302193, 3.3051628270349602, 5.631574025355275, 4.138221765345868, 6.776208096597393, 7.963399967862702, 4.043329913979629, 7.784323534647905, 9.073318981437788, 5.239598309085664, 10.273742181234988, 4.967668859339338, 3.4081867590911026, 4.7892184178554285, 5.0429550696232495, 5.879211518672719, 3.4307585642756115, 4.25578513625569, 9.72350021443984, 5.6873581733805825, 9.457754124742111, 3.376177690630181, 6.423470364546526, 5.83990613851831, 6.871234795573648, 3.5279935527482427, 6.874842373302724, 4.753397271053217, 6.049237650894781, 4.193717971924145, 4.799383765190311, 6.799007920694345, 6.298301110466996, 6.341228844032677, 9.661165357677188, 2.627516470761575, 5.790976849808857, 4.186421642353896, 6.03346636853149, 3.6635948409528503, 5.0189643906027746, 8.367381613128073, 5.775298765574026, 5.265391885436336, 3.863782458628351, 4.3737736529133535, 4.071783787803321, 5.1277110619705955, 4.402651200708879, 4.186398109549284, 4.196792415576707, 5.668426260909546, 7.568096795265548, 9.292307217107394, 5.051044550409435, 4.132093381398567, 4.2217273560470865, 97.29488888888885, 66.26816666666663, 6.237670190385758, 5.622957172926471, 4.302570637492721, 4.880827596906889, 3.8086406079248483, 9.375374416616342, 6.715897211558038, 6.079825232805795, 9.494391296084421, 4.889260620670184, 4.233239047524358, 7.523751322264191, 6.8063345559646065, 20.380239456461776, 3.7025868115283656, 7.438878788054096, 6.129113371717546, 4.9179619461435085, 4.251955830470874, 3.7071634769783373, 6.090744604352569, 5.2594491502980905, 5.852262779568503, 5.025793757499098, 3.9966788724650515, 4.364940152550607, 13.663837028454974, 4.700869883113112, 4.099321651037315, 10.250209803169671, 5.046102260422729, 6.206661677733161, 5.406361677397119, 4.288136678154523, 4.596322473102389, 4.723720502837088, 4.897710150603821, 4.034829478003066, 8.214111910936111, 7.828131156539749, 6.201048539687028, 15.492316391765634, 6.043200115569382, 7.052200377011563, 4.261586012036277, 8.411917576467514, 7.981390098877698, 3.574133833083381, 3.454786438381386, 4.540778079950542, 4.392844903307048, 29.00879243590427, 4.377830068791293, 5.555610480435336, 4.577673731622643, 4.555576546815445, 4.37122697153336, 2.894203492144206, 4.674202193640017, 6.30015136349084, 5.038453438218378, 4.208697201320879, 4.244991035405356, 4.4011916639756645, 7.251681111810195, 10.803354373201266, 5.596074714446724, 4.994923260865365, 8.790247460492743, 7.8495721546985715, 5.301593441459031, 4.279324176967204, 3.1840788057731393, 4.165322166000811, 5.706739267561335, 6.849489940692547, 4.401370573574197, 2.7687915790809527, 8.824254133453627, 9.71369273532552, 4.386018301583167, 4.8985542184821, 3.917305398551384, 4.606528181525343, 6.219583681565519, 3.6765751497238663, 5.47128722767311, 5.733056347194424, 3.6452468428186044, 4.26370695178542, 9.584822285956298, 5.354323728040059, 7.782012681793131, 7.429094736866489, 3.7363703149844034, 4.620673533983204, 4.459604490403156, 5.25198040552244, 3.23281678105037, 3.7694221672056303, 7.196843510240111, 5.396712055491674, 4.253575661403775, 4.731580239689265, 5.71743187513416, 3.8799468501845045, 5.858795674693981, 6.801908523009723, 4.625969630045596, 3.7734474142587597, 4.559784554487784, 4.834759482314112, 4.187197516305539, 4.625686429612667, 4.311487926031674, 6.4140532478383525, 3.9615320240796823, 3.4620001447097324, 4.111782213605684, 5.620714205033215, 4.027112824067371, 4.292445034563269, 3.8631511220121815, 6.488626951598416, 6.507513390200724, 4.352248420185873, 5.1307540124963396, 3.7096049332733125, 4.892804794514216, 4.708386849305684, 4.755258265970722, 4.508343539508159, 4.868828414071053, 3.9762761143016805, 3.768940362123716, 5.101427977425816, 4.37547686529949, 3.6212313968067793, 4.729903580455659, 4.221568486307198, 3.85037508363603, 5.337330258795018, 3.7289290005329514, 5.569706475962594, 4.276915540268076, 6.839750017951274, 4.9981458814422615, 5.227341340002415, 3.6782613295616304, 4.622861596864769, 4.804177142217066, 4.390384662973872, 4.852087540167619, 13.377855356593564, 3.8749388374327207, 3.910970300790168, 4.941049228927528, 3.369390875365896, 6.709672423856375, 4.719618052422424, 4.4655783559412106, 4.166180613112291, 4.629749537245985, 5.538155823040079, 3.8168426335446286, 5.943207449482545, 3.323975692318149, 4.269967690208776, 4.1011734543357585, 5.313641778391295, 4.027115629822574, 4.795494333533069, 4.263576988400444, 3.788091285854472, 6.249189284656604, 4.968514052466778, 2.754510243557821, 4.32067734796899, 4.928203050503743, 3.744176835751671, 3.3073925782118767, 3.851255127485667, 5.055746679145809, 3.3697859689726313, 3.8837326470370295, 5.701886006017811, 5.042610376266576, 17.56438467771775, 12.415832910374075, 15.435616288950117, 9.974399472886521, 7.616332458018695, 7.874399675123488, 8.90683583961688, 7.78351091046122, 7.5097637505179655, 10.821982577753866, 8.628293751057198, 7.100131558901686, 7.6031819477931775, 8.461106354857872, 6.275946546551497, 9.871585621900982, 7.049661671515037, 6.28331467998645, 8.463195512514154, 9.853548981211745, 6.445338080798086, 9.393758198237654, 6.992465721901105, 6.134199616674131, 6.653558632954318, 5.5020182763276955, 5.146123549871103, 4.8385954841054915, 6.17716294903536, 4.850676235103922, 7.807537510140119, 5.883543960258013, 5.531737034400415, 4.30421377602095, 6.036973719332232, 5.3932589152366335, 5.042528166539527, 8.669341567409829, 4.360286947206637, 5.936607414507268, 5.619218848673004, 4.942741951665849, 4.2543797789327495, 8.37477326030453, 5.432770487439379, 3.683451420373219, 4.721103387437868, 6.048275311645468, 4.121960817332709, 4.921510726075136, 4.260776083646142, 6.590043540603585, 5.5833378236240305, 8.891012072692153, 6.270728910029087, 6.574751775648028, 4.734916089543115, 7.48662457709139, 3.9562149573169085, 5.207139562368511, 4.1893011086776015, 3.6774755947122015, 3.986464517291323, 3.635053402871312, 3.5996219281974673, 4.035532730954525, 5.5988682028449865, 5.299057672027236, 8.03135757829362, 8.123261217054262, 9.636145338113828, 9.09122704858066, 4.956508301041939, 8.075078371631804, 4.1999036136314425, 4.926197228160329, 3.462262909586298, 4.1068584157652595, 7.424591515342076, 5.323294323889298, 5.985425929854952, 5.123073175759697, 3.7241624868368315, 2.7909294373517803, 4.796921959292838, 6.49085206750516, 3.479076892767038, 8.914049241225712, 6.07482707546228, 4.287772125773406, 6.912995428721241, 4.594299384515856, 2.7197482007901277, 6.161117396667964, 2.621868712176081, 2.969828647409121, 4.156528432544286, 2.9745133916543516, 5.317865422378269, 4.168118782252585, 4.49675707551514, 4.1481046650122355, 6.480750486000364, 5.008378929163997, 3.281905172638956, 22.26398415797723, 7.433757258649371, 6.680911417287367, 3.340158616171093, 3.8659296942062467, 4.502350970071804, 3.546519995102158, 4.115984435469698, 4.642764436589908, 3.817309976559611, 5.9674709849499985, 3.552250081905424, 4.254813913184482, 7.785970048372776, 3.4901518404029166, 5.242722553453374, 6.4653779945078265, 5.862436020432917, 3.1764429704756916, 3.8908551936579934, 4.795881414068517, 3.7361982031063268, 5.7462736021332255, 4.995553652667109, 3.719597098516353, 3.6356989784252547, 4.390083979862387, 3.203711651456272, 4.608049968520982, 4.4200549263312565, 5.635102418456098, 3.499735526814227, 3.8847093619016793, 3.9966119264328355, 4.692496109864695, 4.763799671560273, 6.060714013180659, 4.482904741045148, 3.9471012006586106, 5.584923368564398, 4.312284716091817, 8.336114250328118, 4.3055625681057075, 6.467632266718286, 4.024312702777532, 5.060542900165584, 7.376155380427277, 3.17983578077853, 3.8154668561548286, 3.6909347850622125, 3.16346314215092, 10.254615533014809, 3.9946125135933235, 3.5778936395363248, 2.50877958013063, 3.581381010216032, 7.492986960910026, 5.569180635064503, 2.7751704490258104, 5.656100650816214, 4.004173439029981, 6.2289180725975966, 5.959783262662868, 4.0577685602963145, 2.8882180919160634, 4.5585454906054, 7.671798358016593, 2.786621060663832, 4.818402700815653, 4.563783388848692, 3.0802643672029104, 12.802473311280076, 4.771956152449098, 3.569983936642849, 6.590405346873049, 3.895471147106052, 4.738712743864805, 5.743312410455915, 5.16594928627395, 4.594780716527437, 5.321319024691505, 2.71693396504661, 5.2321811021891715, 7.354171534388504, 3.2296330763893066, 10.915393926477048, 6.6036195795354775, 4.595375459882591, 2.9568124916921024, 5.397550330603928, 5.28847136935368, 4.089544844340577, 14.91348863380498, 10.691738558147238, 13.067398034123476, 2.9280725225458633, 4.0637588029775715, 7.169141655142938, 4.068484070970738, 4.818742236838488, 6.164470572905355, 3.798473703819308, 4.598051191971775, 3.613560653961746, 3.844932829337806, 5.839975901000949, 10.939614116138683, 16.18311001479345, 12.457866327646126, 11.879766389661597, 10.218267378327043, 2.878682554041179, 4.794886832043442, 8.71077746995247, 5.759691387700622, 5.2295383080174425, 10.645030544609082, 10.374851078150565, 9.291700689230542, 3.9635272021232053, 3.9125905123833267, 6.618848158138618, 6.157369010211389, 4.551973201854935, 6.196088327404718, 4.809854152218261, 7.108764588773082, 2.9049831464021403, 6.732521949641853, 5.263211479153496, 4.559253016862864, 3.385261707615797, 2.8033451484861165, 6.224454243343598, 5.82950057592, 2.8646639156191007, 6.0654265164253225, 5.603071683336548, 5.398510967137673, 3.559804146447972, 3.1452625191955494, 6.63457951758863, 2.9684968698711476, 7.633920450820151, 4.108789372803592, 4.820228808136871, 6.094734097766838, 3.5452838380344067, 2.4246650606931075, 5.087184093301136, 7.568657230518704, 5.900422116950988, 8.73860760794031, 7.022315142762158, 2.8141503343036707, 4.190122441770588, 6.79581946102902, 4.688814862676711, 4.95978967323674, 6.894916942132898, 8.888679711852166, 30.021676887702746, 4.375541295835945, 5.197069266226742, 7.73583018621173, 7.475369294772927, 4.434290058479407, 3.459411870859517, 5.678422418459163, 5.919275798579065, 36.09585263816441, 47.013043363499214, 31.805333333333344, 24.82273997495133, 14.05866529969605, 16.662068650871717, 23.876833900226753, 29.11510395976573, 12.531015796202647, 22.701459218559226, 12.000979306606183, 18.74380715045189, 16.634060904781492, 15.385970178514295, 9.260564207358597, 8.83873667216085, 12.094851412175716, 11.620828888204372, 13.9386936086092, 9.191690703740703, 6.71734712960073, 6.4641530704734, 9.447359820131563, 8.221914669579414, 7.8010276027107635, 5.512222259908836, 9.706079297895084, 8.317825054331633, 4.858205182094497, 5.365389294159355, 12.011357381420272, 17.780887473637478, 9.970905410980485, 6.2853446701829565, 4.171786268167379, 6.4209452823162545, 5.858239938321812, 4.732060566257683, 5.147404014296237, 3.4752408727892314, 5.0548569337184315, 5.787531372231645, 7.899339641052103, 5.031305476138288, 5.612210372076339, 7.7027596273490655, 6.145649244773728, 4.977394138251331, 3.6580482611658813, 7.362186490154625, 6.291876644870453, 3.708889673805709, 8.425802844857683, 6.409159211572461, 6.275504418311909, 4.639645295373496, 4.438280710481817, 4.379893873740917, 4.184077244854065, 11.052954628893097, 4.742062983402157, 4.240114096990724, 4.656708005629149, 6.106864603179406, 3.3882226346422897, 4.580074599926089, 6.350122936560536, 171.3551944444445, 3.6809986597562223, 5.663002464177119, 5.212323674130593, 4.329111465441836, 5.481546389370895, 4.001378153980949, 6.071487269141651, 3.49284894646915, 3.664085145472891, 5.52721979381987, 5.385515468018064, 4.368782981638265, 3.995633379027675, 3.0098839841839116, 3.930262957110139, 4.660834980342281, 3.9770533736093445, 5.874416389028312, 10.038998313090415, 6.3092832160166195, 12.584961805889845, 8.897339309421769, 9.201673035495036, 9.790438228111759, 5.4814693502131835, 6.863725064677404, 3.2975973607104336, 4.883797320195832, 5.237211832275947, 6.416258446465171, 84.35333631947762, 3.8706222433330817, 3.0539995826357966, 3.1954037717614434, 3.855474519998994, 7.616031438627657, 5.717858172321162, 4.189164025271178, 2.4082566228450886, 4.348513322694327, 3.0658074170272522, 4.67867341908273, 34.85361424022837, 3.913377512461532, 4.4403305601364655, 3.650670663981253, 5.71231748590018, 4.640814736077653, 3.6017524811389703, 3.3974687480985692, 3.130830391222797, 5.136112049189844, 5.555079492464973, 5.911633998948163, 8.249333802316718, 5.07896146815743, 3.3370779115434757, 4.122689271300441, 4.745712016291385, 19.95596156978734, 3.2172268871820653, 4.219145001894795, 2.566616203941772, 4.524247883631892, 2.758134312797727, 9.519126436838267, 3.644841717265539, 4.23662561578985, 4.225699283811591, 4.318894785588958, 4.861465799427952, 4.337075170631879, 5.3299971388106835, 5.388136007414813, 4.728238755766002, 3.091998576655405, 9.94778159828729, 3.242361861720719, 4.553319203193981, 5.9715900322901705, 4.717511653058966, 3.2365669022098493, 6.641013961688011, 6.057544785167984, 6.793319915233578, 10.188112695668353, 3.130915762697828, 5.418436031797026, 5.491960453875852, 8.595584104874957, 5.782292399320839, 5.189018148973255, 4.049114584106804, 5.278032670925427, 6.6425807762430615, 4.160044776865722, 4.87139027708143, 6.145392234646788, 4.2278617614475715, 8.592693703143532, 3.302485293391376, 3.5578131552897436, 2.682190381988288, 7.749242263885161, 4.897604171820617, 13.328101865732725, 3.9769132321029423, 3.7586297697800712, 5.237222452958348, 5.205980863729169, 10.199612739161683, 11.144788015160454, 2.595145993749385, 4.727373408784217, 6.2337799244837795, 6.031431502972324, 4.671141766240999, 4.702527212912818, 4.822182101486367, 3.7542683780630406, 6.866635806656835, 5.778020935017027, 15.927388728795778, 4.21116524228977, 4.3215061681118065, 7.466437267263072, 7.367292671052615, 14.001184924357219, 7.588815524398045, 10.357116353055057, 9.803459000929733, 4.882416468338954, 4.347947194716688, 4.235915800754806, 6.951176591790806, 8.196045416509063, 4.713695627885859, 5.414163389316366, 8.931937987835395, 4.075593732954946, 9.700790984584021, 14.456942838775314, 10.46608992038485, 5.39258434408386, 9.14804011562608, 4.249881066764769, 6.000823299408433, 21.387856580193848, 11.673581180513473, 8.109304691434389, 7.594167026283082, 3.9061051205341073, 3.480239787823373, 6.045916037325523, 7.818074431796403, 14.434694618453438, 8.419493346519117, 3.3824204117035075, 4.830493792545132, 3.416494761633251, 6.856595661646325, 6.85933900452484, 4.240623312041031, 12.4967263795728, 4.537333702154109, 8.272809912902574, 5.540292488012593, 7.64125254793132, 5.962199960063832, 6.837468013217818, 3.5588594625709207, 6.041745927443149, 3.184453221932502, 3.642667211240343, 5.357378438337434, 5.201065819803439, 2.8165093855286054, 5.004372307516017, 5.448401913823673, 3.343997025234736, 6.765115067213115, 5.0416828180139035, 3.907433009613606, 4.995945696854848, 2.9219343413326127, 4.00366026286015, 4.9126793118345145, 4.670383053153426, 4.084356754830334, 6.999188451824051, 5.994891125371338, 3.9531049923165353, 5.673476105476902, 4.76509842570754, 8.881610791985795, 10.856515131338496, 5.668970643210199, 3.407197514729739, 8.951304552172973, 6.996884092166727, 5.528538453077156, 4.3413545536724, 5.104033575546935, 3.344050402903096, 7.200593786676861, 5.802166656557587, 4.386697989603317, 9.736001115133925, 5.9277483608277075, 6.539260887850833, 6.045652665269564, 11.13517131048817, 4.59110464181527, 7.496301785379372, 9.65352609874673, 6.637551894031936, 3.6626722489036494, 3.529052045553696, 6.3308703877344, 3.6004620967826106, 4.174016329943572, 4.626570446781659, 7.325814184410303, 18.13778845397809, 17.644753627003617, 13.921883139771454, 10.063800749395615, 5.588763648494696, 4.22716215136708, 13.486815800101468, 7.687843948252877, 5.927322205357423, 11.352498274436112, 4.5507419931643085, 17.13273714520774, 11.525963579248412, 18.5371715657614, 7.153695897980269, 3.427881301456036, 5.585286505403297, 68.80204865424432, 7.283265467675976, 7.293020480689311, 11.454446834222315, 6.865040067500917, 9.062470896547989, 6.172541200582425, 7.373954686729602, 5.444756957462495, 11.25628283071938, 8.476524145262164, 10.317876907732792, 10.818521977496976, 6.690793559940631, 9.474490297009027, 20.197391022904828, 3.6791762225386764, 3.247611376094277, 5.11364630538961, 8.134073202293136, 6.288232053684313, 7.248177279087481, 5.116594394478233, 3.994551752792111, 12.357967188673264, 5.142380639494601, 15.710112314542108, 4.510471623549014, 3.8967515164527624, 3.635391378343738, 4.479287478781789, 9.717800520829025, 5.744151221798436, 5.33270176244462, 2.9188810301343584, 5.091875298452071, 10.08890585295979, 3.3256427432244333, 9.28158635528149, 9.934719623603605, 5.225385005233989, 4.451284395988883, 5.2208688112574055, 8.852431545259154, 6.2556345801002795, 5.442935374772535, 6.316624111811027, 6.276270492169061, 4.020980992306652, 6.852536432877719, 3.6302802207695946, 4.167321623999084, 3.9607436257472686, 5.685345638466058, 7.0641100128390955, 9.170466812873643, 3.1774524554019306, 2.666669990198215, 5.321205088550855, 6.648448529716237, 9.113741564110724, 7.5747615502063335, 2.4645027717280374, 8.696366596726936, 6.654945963839472, 4.730997597351856, 10.472800976800979, 5.778440203083629, 4.2924295547752065, 5.518210811799133, 4.380852879953574, 4.965384507661982, 4.749630904435754, 3.55549947590729, 9.03166923366279, 9.385903991409053, 7.469716899517325, 4.427734896708884, 3.9627835531406608, 4.9698923618463855, 2.9161405779836453, 4.7280098192977436, 2.660993112844426, 5.186764644423421, 5.130685799497565, 3.3245911677214353, 3.5307488707881007, 4.46002577059619, 4.969815371054484, 14.894330073022038, 4.283012156028213, 3.2406010765394124, 3.9661464047341624, 4.711542648779084, 4.82737285336148, 6.698870026552593, 5.6164073700223645, 7.2093421141299325, 4.775736174721655, 6.966953275767553, 3.694314424161774, 4.2653658716839296, 4.189986435856242, 17.96376627259476, 14.000326146076143, 3.6781121978647535, 5.046349526138026, 10.777969517776414, 5.180338688544456, 4.1280425603695425, 4.018599551818349, 5.827998906890111, 4.0240761279308686, 7.902151840591937, 3.3233875319649337, 4.62629702701398, 6.207585496689943, 4.3013610032776715, 6.748573669452607, 10.682522290552416, 12.081255066656764, 3.392478740745957, 4.031340069031387, 9.030623137811526, 3.6828285276330286, 10.154344964745857, 7.453825406283936, 4.018586760433915, 3.4713407623682992, 7.827599359191623, 3.3433596180049565, 4.268783086995586, 5.066206826133491, 21.44923642549578, 2.933726128705546, 4.6456700425912505, 9.954412667135315, 2.933776237505234, 11.115579078694235, 14.478563589188589, 3.0417281408815424, 5.244627841502659, 5.050299040934874, 4.015221470532629, 4.838712861143894, 8.856245222084835, 9.862257630841876, 5.32352360660343, 3.2521542637843632, 3.137682942305549, 6.352278311181141, 4.003931752332579, 2.9057085218995105, 11.404920823357596, 2.2653444283981496, 4.789716857381254, 5.293082297090942, 7.98509186923614, 8.61186955579063, 8.405209578424039, 16.802620155716518, 6.940497184683924, 5.338711276577953, 11.57172286504893, 2.9170025741370282, 4.28836272048898, 18.22980344885318, 3.7815875446305376, 5.421372006087968, 2.9595829975213968, 3.5531354530612527, 4.49719693134406, 3.263435940041142, 4.897797214600438, 5.910413449237335, 5.034090894438685, 3.878193024134645, 3.664423208484557, 3.3475601469533016, 7.518822177874765, 6.062243452413959, 24.22123029318823, 3.2025605057866207, 3.0298666759074564, 5.479254632841512, 3.440811879186946, 11.827590780161776, 4.091311244414428, 4.788123472207093, 3.662094546525827, 11.03429737459188, 5.315400788172144, 5.335123740800169, 7.255206542792198, 3.8338191320345074, 9.515879122635688, 6.623115345684009, 3.3084405132457313, 19.085097347889835, 16.910965129315123, 6.270130168179134, 8.880157128577247, 4.974414437084038, 7.709411674400974, 13.228929749800411, 13.773290742753986, 7.016385904652037, 3.785483180867867, 4.330283726531605, 2.9194335041831603, 4.432441387342, 11.649188877388818, 5.5897363593151335, 7.23445710782593, 9.165384296796395, 10.996778057874133, 4.378819548196696, 3.949336646663866, 5.68306141824793, 6.697715027499794, 3.2138444498496854, 5.1472578368424955, 3.6364370719561956, 7.687558738880166, 8.880656442397054, 6.225110879881845, 6.415356026372289, 3.9624946816089044, 5.967978323146318, 6.817471379437553, 3.3713711765168024, 3.8621841921838307, 4.42954518669753, 4.488174571793223, 5.9430993823575395, 4.039940770678097, 5.810542033153413, 10.348401206732921, 12.148357068852052, 4.825293246859806, 7.924789852001572, 28.40010743965333, 5.809349533453918, 2.998257218250778, 11.281774733294032, 3.681546102793222, 4.6603278404552375, 3.956903675807132, 8.14689462636025, 3.811438993183003, 4.928428807626223, 3.699058199393287, 6.626026232368618, 5.754449373125666, 3.354357621176302, 7.9013060877906955, 5.9156023517522, 6.947962484377532, 3.7589596108225924, 5.086625726345817, 3.936480749096185, 6.596974005906108, 5.781251609798051, 15.691574634408065, 5.556881451769493, 7.096306966075754, 3.0878199448245125, 5.179522164220165, 7.507899496127552, 3.695079832794788, 5.931413576640144, 8.103358279115957, 7.030463190058864, 4.06334399835554, 5.056021012883968, 5.041284038638247, 5.009608687960161, 5.547332814959075, 5.304067914322143, 5.032802942209445, 5.628319664616717, 20.15796815738074, 3.924936266406374, 6.301318547083522, 3.512465698206529, 6.285458116120849, 4.765872777968036, 6.1859529343710165, 7.746364435458199, 8.088091022222372, 5.24198235108679, 3.960078239108171, 14.345682952220367, 4.99519855831391, 14.194116045112102, 243.76000000000013, 5.138163208259684, 12.960939199999656, 5.048218555117643, 3.7940301083776946, 6.142121843521472, 17.5935798882096, 5.482344519186993, 2.982325207831194, 8.255255522223052, 4.9792755458701805, 5.169753047435741, 5.19473380972364, 9.197025057226242, 5.416963159880485, 10.936104314677893, 3.754567302370649, 4.593584291398962, 4.070150735229729, 24.137464408585846] hash_iot = [0.0, 1.0000000000000007, 1.2400000000000009, 1.340000000000001, 1.344999999999999, 1.3350000000000009, 1.3350000000000009, 2.3133333333333326, 1.5616666666666663, 1.9183333333333346, 2.3824999999999994, 2.343333333333332, 2.6008333333333304, 2.304666666666667, 3.5000714285714274, 6.295999999999999, 6.213666666666668, 6.9682499999999985, 5.34975, 3.638619047619046, 7.359166666666664, 8.558000000000003, 6.495960317460318, 4.100190476190472, 7.186035714285716, 6.251722222222222, 2.922777056277056, 1.690562049062049, 1.8741226551226553, 3.461854867354867, 2.4259630647130646, 2.197174603174603, 3.2272539682539665, 3.212884615384617, 1.883344187675071, 3.061654761904762, 6.417389027639023, 2.7823817163228926, 2.8350476190476184, 5.6996071428571415, 4.468387085137083, 3.335368566074447, 3.5468506909756896, 3.1430435511770645, 4.070275499354447, 5.275549311799313, 4.348577267503737, 3.8471958041958034, 4.00211544011544, 1.7258531746031753, 2.7155298573975037, 5.357351261519098, 4.551278429903432, 6.682389517345397, 4.586332764457762, 4.938274022760864, 8.3375111000111, 6.376989700623333, 3.5321557757459936, 2.538084738361053, 5.286734793586183, 6.586697472634006, 2.965383033633032, 3.3093974145064955, 4.876700440082793, 6.353001702770969, 8.71879305008716, 3.432531054993501, 2.604368891415652, 6.30948580395577, 7.890378968253966, 6.203003472550836, 6.107053422176952, 4.843865507755433, 2.772715367965368, 4.256667138417137, 4.634162987597197, 2.895761419403316, 5.16255899608647, 3.548728175129985, 3.9762256308506307, 5.361434319836796, 5.428485250659785, 4.919606208328985, 3.3493792415823216, 4.174270449407831, 4.379872529431352, 3.0200302949502866, 4.1040433849775955, 4.81912430284149, 8.268310061682651, 4.78421611385753, 3.3731095425230655, 4.262109333476978, 2.2490929348429356, 3.4127482258891404, 3.3114775281123205, 7.214437415942518, 6.6670620013074045, 3.0152729786994814, 4.663930520176775, 4.640397582661425, 7.036931834165507, 3.545402374523854, 3.6081707473812727, 7.522615759971023, 6.212399437727022, 2.988507319434951, 10.749830979234613, 8.451753484841683, 7.66056692554889, 8.344062033932698, 4.007729263655733, 6.6194238739321, 9.384520396972514, 11.356688431382855, 8.65591246511611, 11.014038400926559, 6.267395127016322, 2.3775508690038003, 5.970104384177913, 2.423163051885043, 6.6328991027208355, 2.8256129129802714, 4.073024471766697, 3.723303531238358, 3.9245251877854574, 7.493255501909366, 6.707313507156043, 6.582756952188836, 3.289055224893562, 5.923144917463939, 2.6385877563925377, 8.954137814792636, 4.384985980570799, 8.272673998842379, 3.4312090648721387, 6.984950724815704, 9.782464492866925, 6.201930995736899, 6.532503794956943, 8.201576035875656, 7.547545778967524, 3.095734475655064, 2.900958608314107, 2.8492669463150446, 7.47016878733206, 8.013341596069825, 8.909321590143714, 11.432485802151156, 6.826305333174754, 12.428044852851855, 9.088764745228282, 3.1880192586048746, 4.203635855999819, 6.0778627643287715, 3.127282390002782, 11.890221451447795, 7.286801723106977, 5.571174735981904, 3.329093157809452, 3.236128669887194, 5.321691062091757, 3.821218412121726, 9.56725546462107, 6.7278091166789995, 4.853585337987771, 6.365904791607714, 6.342299842881939, 7.178106038552826, 4.534639703954028, 4.4471763412652825, 3.072827586372112, 4.485775871127318, 3.9541118353367235, 10.0540747955786, 8.686832028170544, 3.1792442730533312, 6.595746273397799, 8.853064868763719, 7.310770450666192, 4.253755424401001, 9.902755373613807, 7.197130438926902, 8.133596811717403, 5.066711996480747, 5.1255686990262745, 11.6698048991692, 3.506544259832767, 7.24994054416406, 12.094821540678556, 5.041641305540678, 9.770801425697202, 4.5586967938069485, 4.965033623652601, 14.978075344385386, 7.67029339809509, 2.8114240548862965, 6.28627953622697, 10.196740512942753, 11.138470425093598, 3.5170467487152046, 11.270771576385961, 3.568363405955283, 3.8424393026093786, 3.722597077585566, 5.379180619954404, 3.436529432115466, 5.153622166157859, 2.7623603534042562, 5.447242547995968, 5.463626328982406, 4.793681084583805, 6.150084276306579, 6.91523070835223, 6.633675985063067, 10.294234320142397, 7.3500253598505365, 7.7360547314699, 4.116329785468257, 3.2541670690114772, 3.0505246450668206, 2.9060761308996352, 7.459316313678652, 5.83800779845691, 9.13404937619111, 11.26378900660862, 8.44644981561896, 2.4653725497460113, 7.365774800660854, 9.12098726825734, 7.227865461170756, 4.478714458861164, 10.398800033096704, 4.342427803669182, 9.508729862140664, 10.253175487348297, 4.098649904202758, 4.272863048838843, 6.322822031251696, 6.098329480939197, 3.123612742830949, 9.830730809404225, 3.5555037035423163, 3.675791865362861, 4.944154154676101, 3.9739088275118783, 6.242552024902968, 6.8315395370867, 4.02067422932193, 7.948243266645263, 10.321650570564177, 7.032533775465638, 6.709349473860092, 8.457463089345598, 5.444558033697652, 6.001811393115918, 3.9384421206596474, 3.1646178377377665, 10.934820917105812, 3.1289427500895943, 3.528764136152102, 6.264453533966777, 9.78390666643032, 4.017015583902551, 7.222088340242646, 6.282119633145865, 7.6197779779104335, 10.482408626481604, 4.333429755416599, 10.599389623318434, 2.6892405522065923, 2.828431674615575, 6.3659135882599545, 7.525542239273125, 5.553152418077149, 5.360713900642415, 4.8243268464088445, 4.83856324128435, 5.818181398747473, 3.508618391785355, 5.882459502419716, 12.254216181542207, 6.384208776710969, 11.350298550666333, 5.779757227651663, 8.851337527685452, 7.521646663290655, 9.117402949116064, 4.001398962566209, 10.825930654325115, 8.550111705740672, 4.590255903727684, 5.231958007475398, 3.4186923505580316, 8.15567424299363, 5.554969869863465, 9.666083839410941, 6.17702178354606, 5.292446367620873, 3.587385986902902, 5.094006471417566, 6.722785914397973, 9.620846888246524, 7.02816193050647, 2.6244679228563914, 9.1159781955716, 6.1395183739568395, 4.348049224113971, 12.283241584331217, 4.796855694443276, 3.6015029065571382, 6.693667845719407, 3.9795922750058286, 3.7947275596866796, 5.8687775915655465, 3.9479696782717877, 4.058219546067907, 7.38207396699663, 3.534559383975276, 12.235351637466703, 7.152789313115458, 14.087564233363382, 4.942958507295725, 13.478047258151154, 3.6385329137280538, 4.243801282587682, 5.804451926587802, 10.491985442127419, 4.959489145150097, 8.041248479945375, 9.871678560960708, 8.765834777484464, 4.20311897953166, 3.09410677751876, 9.237897191439615, 4.953015786685418, 7.945886724678767, 5.544870069222768, 3.064600932811326, 4.736268907623317, 3.4978222627439624, 3.058039046854627, 3.0510268986220193, 4.550938754356966, 3.9216378051373932, 3.8715288638239005, 3.8902174976490658, 4.001615344959142, 4.960441339560946, 3.170859532709945, 2.874847289448398, 3.837891660814572, 2.2986154781623287, 5.05836887435674, 4.4631662289727565, 3.529935085847457, 2.185097147224014, 3.30832922469809, 4.191100168803095, 4.193607045324531, 2.3589594748744753, 3.1888709110762794, 5.273459185531186, 4.567530814186128, 3.2393986456505757, 3.7279252585478955, 3.498366247932638, 4.469063655542689, 6.362175692229644, 3.694141397312646, 6.264271690815019, 2.9748624553586884, 3.501958761595269, 4.688987102461635, 4.492733524708754, 3.9832031785752022, 4.789401381957554, 4.476559490558134, 4.234799491171077, 4.802765066066705, 3.8419143186500704, 3.992951094011132, 3.6144646283676662, 4.473382054101055, 3.401945778991226, 2.707533838841748, 3.9991415476902445, 3.2951818643688013, 4.308497567357236, 3.9405855051323284, 3.8742154970727776, 4.93867881486024, 3.003917442308602, 3.5273592306103443, 4.027106130268924, 2.799880610688156, 5.886200217213134, 6.25327727943535, 3.4593189743286095, 3.4835673042239934, 2.6013454984884334, 2.8280853508500545, 3.06902394393113, 3.790294414827107, 3.410975779490071, 3.043910904646292, 8.613398672197057, 5.923087386881358, 4.670493422438883, 4.130904796730692, 2.601363649947727, 3.9251875531368636, 4.209019396326432, 2.944589121961087, 2.814287226299245, 2.616115615138487, 5.125137291082776, 6.161624366339985, 2.524693616012006, 5.703765783234969, 3.4132010499878787, 3.3025923700365194, 5.087996292895498, 2.630161622939043, 5.524729100511803, 2.65298071889725, 5.648095927651687, 3.851262985478674, 2.828474396531518, 5.096895271356622, 2.7706909224086074, 3.5387375028596906, 5.209093025755294, 5.727190327681057, 3.586053252814751, 5.580060463254205, 2.4835875942466292, 4.420022391287891, 4.700785689884067, 3.0297292677297607, 2.855419570310786, 6.437264012448126, 3.475953144937994, 6.18412833894508, 4.509134651613091, 6.18096221233545, 3.8298205352351657, 5.5142890694333255, 3.068941282463789, 3.77104795296927, 4.895389389104176, 5.023475308708158, 3.7190632204728256, 5.964467201313101, 3.998002060850448, 4.769570689271374, 3.6764128793645194, 3.7948399893988527, 3.2292322151912076, 3.2680864696784444, 3.1661524045996523, 4.973841346375908, 8.011468309493852, 5.116925887209583, 2.6136167497973704, 8.423845471683487, 19.337816157271895, 7.355112989850582, 4.548314930115923, 4.213858990682082, 5.0497312350271235, 5.085380294932137, 2.968274884795125, 2.73508078163854, 3.7054053790419554, 2.9702339950228227, 6.9969283644873155, 3.599191092451104, 2.470901825441746, 3.6967802226598807, 5.981455287084891, 2.442613816449754, 5.34051630737104, 6.629165493582261, 5.6415091004746305, 2.917112169061345, 3.584256827784329, 6.175137247577345, 3.067353960152336, 5.113741577507178, 8.256615281599746, 5.739898184964249, 7.406766499508592, 6.559867090922452, 4.852751515458196, 19.86037313521683, 8.529295986592247, 6.485884714015638, 19.140730280779476, 16.883753160760584, 12.438706885684741, 20.62028775936648, 19.100002172555403, 6.880165049357838, 7.958397063662706, 3.696629087947402, 2.7975539570631347, 6.49827695883863, 2.394517701599447, 5.544167319052418, 6.995472515068155, 7.32338607999062, 5.730888400131323, 10.980992277597267, 4.254196284978857, 8.071873823231288, 4.729207590552746, 5.39808566179773, 2.960196565189848, 3.989772588602888, 3.5314701890759905, 20.03602572249731, 52.952694546551946, 86.57450986575255, 60.993164579701364, 72.27847826584912, 62.11068219624514, 37.496110250286016, 62.729005837761925, 12.51325284088538, 37.34565850508068, 7.04193881896575, 6.031191598155185, 2.902649723435112, 5.054621678296406, 4.909125907381262, 3.9284368867191315, 3.0888711428864233, 6.451237687731252, 5.617216553867651, 2.7076656565543065, 3.339267439288864, 4.094043299653049, 3.4060999747793264, 7.981425786432124, 3.493535454510016, 5.480001934724632, 3.247392127487388, 5.815788823456812, 4.085591627945998, 3.3450248744921574, 4.081728015260896, 8.412311020423411, 3.0626112436109145, 4.352554522700656, 7.575768230327004, 4.434731381097703, 3.5751956993465943, 7.402277330318561, 2.9662984408205366, 3.826264368128745, 4.401629639009273, 2.9131067910597106, 3.234844735687387, 3.6242884852670314, 7.301152947780209, 3.9228485779978466, 4.058033321424104, 2.762287229231924, 2.8172547545396696, 4.87346668947926, 4.66267720359991, 3.6169111547499626, 3.401528618322204, 11.281547665090756, 4.508066574196679, 9.917260710365543, 12.028246897287024, 8.37357256878016, 6.51845387582161, 9.893824663748232, 14.478875524322762, 9.768029559485559, 4.713363973295529, 15.683370289473693, 11.816621958810122, 3.185376585725596, 2.8605579998301525, 2.948225525883604, 3.0337238223501797, 2.155364907440155, 10.039927063585633, 2.5608862699276416, 3.2236243875109305, 4.851083015804508, 7.006111661770816, 5.679959209981224, 4.173852676040742, 4.847049239821215, 4.035585074558172, 4.367452415842902, 8.288051451253274, 16.50646403551848, 11.541996224915529, 41.54354459014755, 32.819858501363775, 15.53856817701086, 21.949156889560584, 23.006477737010123, 33.435553585543495, 16.338968623252992, 11.515439229640114, 5.728492746551315, 4.732273492394679, 2.723541429298613, 3.2509491217116215, 15.156725605162077, 4.060073197792625, 5.079403428048276, 5.853739161450485, 5.2956419838791575, 3.189741584141711, 3.434212466886845, 2.9138770115800248, 3.435671354166466, 6.290824161608015, 7.202541880227638, 5.214195389336967, 8.151684955116817, 5.7624293072363635, 5.371190692508675, 4.5744624833953935, 9.630987874852794, 4.551771772594112, 7.47356264165251, 3.631599860213424, 8.306672131138235, 9.680857402851684, 6.396167517390512, 3.2761620327413916, 4.526436515685091, 4.688928233518425, 6.367014290189777, 4.566735577033671, 5.716356816680438, 3.538323553024375, 5.595427885670923, 5.63600960568435, 3.946681392471302, 7.728698977932326, 3.1912220996308482, 4.799882451683525, 2.492391209023448, 6.546619454453905, 6.643054053786869, 5.640279219950902, 8.353109329683608, 9.538191043742279, 13.27399283065624, 10.745831978250449, 18.818336030335633, 5.201224837312506, 10.364987579735311, 11.158021875661426, 14.957203325532658, 6.508251626308062, 12.829082312362365, 3.0936546128556173, 5.748083508481645, 3.3987237780805164, 6.281433260452031, 4.828385662884121, 5.943309847217292, 5.781392741198976, 6.507650697635008, 2.3139668305865677, 3.0024553344436926, 2.146865891974307, 7.794989409342106, 2.823070370997524, 7.155719670463319, 5.7332802408035, 20.0800852080452, 20.91613914128844, 52.72811048665717, 16.605929984706744, 14.596409171283028, 14.050345600202506, 19.15382864051937, 29.51896429085192, 23.436195827606756, 33.324069528803655, 10.79610753416116, 8.8728299306132, 3.980404444972414, 4.3640440432332195, 8.911596085170302, 2.645438863674478, 7.690879756621944, 5.330073126680547, 2.8335604411272155, 8.70350072069439, 3.120785182990123, 3.307721608172043, 7.901367067867493, 7.2207609809117175, 6.915554985347174, 6.016302867952235, 3.6022834834871715, 4.595363332847403, 6.000703400034075, 6.726537053578202, 7.5954098615361465, 2.655243624388372, 6.0100079339740144, 8.116916731356804, 7.464749692021134, 4.083936791083267, 3.6886315067518356, 8.419685951784617, 18.060060605090158, 3.413106877419356, 3.3745674739207825, 4.674255824391086, 3.1658408951614603, 8.149734573467498, 3.5992424649691395, 5.806231999594544, 3.035318583872536, 6.389827361646786, 7.007865579534734, 7.373424129459319, 2.7357419482111887, 34.62400061427831, 3.7990502711569256, 6.477379430856836, 5.144290577205988, 11.718643721019623, 7.3143372638389526, 10.448475677309297, 4.972416286201922, 8.53823779906907, 4.716858360583632, 4.935010365129859, 4.047476512532908, 3.5101851022515262, 6.218767539679149, 4.579131673404132, 8.24931462159908, 3.788606628536848, 7.772691850972698, 3.2226194311146594, 2.4889890686937868, 5.806744284052223, 5.509804234505577, 4.3682468056945, 7.286186920823269, 13.319964828746535, 22.86796334338672, 12.918078448333322, 7.501299648101446, 10.603571491038641, 16.098111833319965, 21.876045427930432, 7.97393575532647, 33.3925713880522, 35.73589507182429, 21.330684815674804, 19.281584194275688, 14.583319726537933, 32.477309393095055, 12.297650919608719, 19.22549196380054, 3.0069431525946295, 4.469969914819337, 2.7329810047993415, 5.193912965504772, 7.404472178195685, 3.2848996520102616, 4.469994180909202, 4.892110133389397, 3.9932074038212173, 3.9106477656659284, 2.8819521938327304, 76.63258402817891, 12.58219038986674, 42.65940569839322, 44.40598313660346, 28.19082518550583, 14.04364940351137, 24.796589533730653, 82.34150378382719, 42.39593259126415, 35.177287495243675, 4.757558034113577, 6.2206743847328605, 6.119464394233648, 6.717389478175927, 3.6264632386622435, 4.501107411702116, 3.570035822998629, 2.8880928609121264, 3.065355271863205, 5.4329169610500605, 4.574116425534922, 10.353236089159475, 4.081369428624282, 6.439638823005458, 10.391121417538093, 6.121121226300382, 8.44138004160227, 6.493674596091943, 3.9676172568313577, 4.513733920784844, 5.248637554917851, 3.089388476455401, 3.995576550120385, 8.305210040604775, 9.043237422055643, 6.535717503971999, 4.969777954553464, 7.137600258570765, 9.364618947220206, 13.450665558912224, 8.632967332060305, 11.134795205605727, 5.856793617270375, 2.5643679085069953, 3.0553026165199184, 3.0472905090534397, 5.099393978453454, 3.3563675183512136, 3.6275551712134164, 2.8855836624651263, 5.198698797626296, 4.964989434065943, 6.551681448044658, 7.0857950601811375, 7.595332452608063, 8.446908507853347, 5.383637085801952, 9.5174508265753, 9.163089913790161, 7.002741743401999, 15.941621305059888, 15.221001634328172, 17.014782101692447, 7.851167909675023, 14.220283209220653, 35.823982083479166, 17.16391227093817, 23.906764451226522, 11.831993810290447, 9.593724543534195, 3.5518874197546424, 5.4401395794687195, 4.099607961152194, 6.583287602035645, 6.139616673696814, 3.877929265808286, 6.38861672743503, 3.404749821698446, 5.837755569595054, 6.545496603727314, 25.45371843340056, 23.318054382703355, 6.708293773073531, 24.88480894881828, 26.11341566120214, 23.567459651414378, 18.722459519280026, 13.234509573288513, 13.10860729495523, 6.520458055692848, 7.629108721779208, 5.670025647494327, 2.517963932340736, 3.7701807799667764, 3.5252928211006402, 4.009036596911257, 6.242001587805655, 3.1621111599030223, 4.9580258270790125, 2.9745075600257485, 8.148304599777916, 5.120481546025142, 6.175040811957552, 3.6936407775930187, 4.316658310483921, 3.332761878287842, 6.710673761375561, 3.7394591265687422, 2.9573760767883717, 5.384386873934752, 3.1459586077309267, 3.783614982505173, 2.779751217872771, 2.5262389063261037, 5.560191321088815, 6.5394693979066165, 2.9392947857536713, 5.466666668438875, 3.821111583790836, 4.56790648298637, 7.000275487308456, 4.492488879813413, 6.237772379287259, 5.7834336768969115, 2.574819819515059, 3.9920097970802764, 2.724119799371785, 5.396568730038304, 2.9655047785773294, 2.7260417681874327, 4.580043540917787, 5.332641193561158, 2.7412232130666223, 3.3445861001655253, 6.2581445925749914, 7.298952698673835, 6.955288257945391, 13.521675863320215, 7.495620229497189, 7.739406240282028, 8.157301277110772, 10.422784506399056, 11.813982517437061, 3.0964574128295714, 7.092868572837783, 3.3805351739790233, 7.7046081685904495, 3.884945419103315, 4.263479885757297, 6.473930272351335, 3.7354653685016084, 3.85232871479421, 2.710996268153017, 5.652347261339292, 3.697280450320948, 4.760498333129332, 3.7231248421957353, 2.500561334964779, 3.607140018860883, 5.854889815622193, 32.076296834739146, 42.50338417287421, 33.969551053284455, 32.68683937642301, 26.235649761567934, 7.614465586228026, 22.965702911545335, 31.098332115407533, 23.308690300274044, 11.5046591506814, 3.0116029218836458, 3.1380220547419113, 4.922595506206172, 3.4472843441979566, 3.674381863258244, 6.537285503461502, 6.333113232226259, 3.1811740748566293, 4.643681094600633, 3.25080240970587, 3.137954739973258, 5.379845144762039, 3.783174159326378, 5.527697115875741, 5.40431262861764, 4.685049096574779, 7.185904449109588, 2.5822809332876613, 2.957680737776432, 3.915403514425419, 4.093097452754124, 4.579281016833472, 3.6680147947175548, 9.687357882742658, 8.601367457716295, 8.246951197620314, 12.468458731609191, 10.019089881885323, 3.238452749004999, 12.841138745456018, 5.995744883339635, 4.268875297916952, 5.844381305032305, 7.2429804228791035, 4.429857068857487, 3.0213113080667706, 3.018197076932572, 5.745089910862937, 6.764428841978734, 3.0442002001134707, 3.862650403506034, 2.9891496887186118, 5.367598411869761, 8.542542477274763, 5.480736882521046, 5.153782754530545, 3.5205310897023825, 9.803360838810711, 7.64682793313054, 13.342258649651706, 39.16602824849565, 37.279294242701035, 36.679086993001135, 12.40123090836013, 21.28268341232093, 28.172942586464707, 11.5034328642206, 23.1050249795375, 24.293445812655843, 4.663381051634802, 4.341437436789427, 6.123923852733471, 5.431759752209445, 3.167854356225282, 2.3891262607848343, 7.50071019713513, 6.051057550500193, 4.758770305307621, 4.955401139824594, 3.274312831459364, 8.81971178259383, 20.015709443865585, 7.159710584148699, 8.896073275434375, 12.03229168084513, 19.714670173517185, 6.378347924190007, 24.779995040778072, 6.450580132965072, 17.793776233358034, 7.288823697269777, 4.6912332858587735, 3.568549601381977, 4.531497039273159, 4.487750997027109, 6.071294759167782, 6.566226674651886, 3.3392404912842966, 3.5386769841815444, 6.191476099760984, 6.544654199213823, 2.600599217975443, 8.855533557069098, 9.078383143964926, 4.178198144827277, 3.6989061968523047, 6.094218583091412, 5.730318206274638, 2.6735990255999456, 5.112489453253088, 3.6712238593965614, 8.263787485576406, 3.8448326233473913, 7.144434282682488, 8.379219008468993, 7.505162789372213, 4.712499770674844, 5.353093492838499, 7.266619648072216, 7.2011332702773885, 4.590365992550055, 6.7961903783359485, 7.973816337664861, 4.93390874802068, 3.2906997774359343, 3.209112373412052, 6.626260608685527, 2.9929899718168578, 9.419706990458854, 4.576238624587113, 3.106615176881492, 5.531572937180708, 3.7042346891260634, 7.5058507090383, 5.794074586991048, 5.236314072037718, 8.077802898675296, 5.1010281181890464, 11.817103939645785, 4.063503762390465, 23.051831448202762, 20.581414602702782, 26.505418290515955, 9.039446734889511, 18.480851840179298, 9.060981228959347, 17.1270291955646, 18.74318747080399, 12.009108674483711, 10.161891846517749, 21.407416431310835, 2.5861239314559477, 3.492743831514188, 4.061321856798172, 3.670067181465447, 6.16939719404816, 4.778296553551914, 3.9579294773758487, 2.8108969483833137, 11.205890111964539, 8.63136448851694, 20.332246614712425, 22.239121958513593, 21.360444453765783, 21.585950427069807, 10.90814490902417, 9.763702931163541, 8.850279831609466, 16.624759944632938, 29.781431308653925, 3.2608998968079836, 2.287462490601741, 3.107928992295603, 4.6252707430012014, 4.195453829042166, 4.297563984989526, 4.056436720359585, 4.0788585910049795, 3.5752746767632684, 3.6911298341473278, 3.1971310312337637, 5.058617520991526, 4.002925068900064, 2.3888487644684533, 5.572748024646359, 2.5373534641246365, 6.884566547804613, 3.9376341312996455, 2.985956104338499, 3.3375961195618156, 4.9387410479971114, 2.5669113949638915, 4.069975620337335, 2.7138667102693965, 8.256287120520476, 3.8284924832299287, 7.288002882125739, 5.264495921680871, 5.544987180085951, 10.524022398659126, 8.154683889179099, 11.631078654739653, 12.19584117161956, 3.500277026946177, 5.016427894440327, 4.278422184460183, 4.182268498966923, 2.9951927363775446, 2.7031965310240786, 3.582602903412927, 2.7948641522454665, 3.402852484849224, 5.940925920898702, 3.801923411229293, 2.1034633026171727, 4.7519960427014345, 3.6450088996843233, 2.8917456070315093, 4.853056682508289, 5.0419313583495535, 12.172250644658076, 21.15509311741991, 18.84013270540655, 6.163855014620652, 16.040940042539326, 21.881485054944072, 22.72036433890723, 9.47558499525688, 15.439155322143616, 16.929750319989857, 11.036115109101901, 3.138847298438976, 4.124214798593069, 3.3933496520798436, 3.522790077446812, 6.079793257598881, 3.3856800727961582, 3.9629721927421038, 3.309512288230127, 3.210930696955926, 3.1176639605252103, 5.22462071375628, 4.903850894860758, 9.03102298019572, 5.025372568357777, 3.241861440016121, 4.558406220991583, 5.815709075412695, 2.664115418169422, 3.274396536060096, 4.139266064512589, 2.96736414628598, 3.5859611288867987, 4.538060094941841, 6.115900989690328, 3.4649800385023233, 9.364344482104592, 5.633823954543776, 2.75776655124637, 2.86194422729071, 3.4724843341410065, 5.800107882314098, 4.810300402464175, 4.775731287985067, 2.709523106475791, 6.6068297245119005, 6.426240587656005, 2.7946274595545044, 6.235472573392101, 4.929755354498033, 6.495325984347366, 3.1997857005761023, 3.0880466269074027, 3.1017412844242847, 6.483176904019727, 5.797377115701385, 11.238638053661457, 8.567047198294713, 5.185030800335634, 7.843861889844466, 6.542625830853641, 5.744029749080359, 6.588517321287674, 9.46346605358226, 3.3768563285221544, 6.3793965248730045, 2.953325920632667, 4.104619045786302, 4.703496738541721, 4.403133075643025, 5.286299102516402, 70.07315329115329, 5.11205099088446, 9.863784973447448, 3.2193513165875873, 8.902144659699843, 2.6441994284275725, 6.019232211888685, 9.698980406517192, 16.22310052654966, 13.091156173918186, 11.703193341620228, 6.4792958426441185, 8.349395161972206, 18.98990013435536, 14.948275721348438, 7.248278527448933, 10.690159013319969, 6.964342640470721, 2.9518917199263957, 3.9903362660990416, 2.1679360609172047, 6.071343861071269, 3.2502357767662775, 3.393566748794818, 6.0698078636960044, 6.857121986004453, 6.993584567759357, 4.487411220596423, 6.588784928987196, 3.8434624194350975, 2.518644962785985, 4.0018852097254864, 4.819934448543077, 3.0431008183181767, 2.72313837470974, 7.120654539828848, 7.391216448586894, 8.0736150031018, 6.017044591614271, 3.0567765342512154, 5.261658528020729, 3.2110591173927996, 3.5587622784643846, 7.358279228728234, 3.1167672349383095, 3.141207568192616, 4.8720041245219, 5.302246667961381, 2.6078704955119583, 3.4367431071948134, 9.17782294932008, 3.7595895737074776, 7.219280131319879, 4.822137061738725, 6.236645666602487, 3.4179139877504574, 6.767767782096392, 3.426990212889061, 3.812733644420423, 7.052604990018652, 8.040304761304908, 9.45334906893153, 3.920235543547016, 24.140274910468708, 16.726607208415373, 18.39396409990483, 15.945057315426567, 14.275309546793608, 18.919723583905572, 21.281743468982, 15.160395982931965, 7.079424029882872, 3.7525467362249407, 9.658355991840908, 14.535632907466235, 13.952036835571231, 4.378507018765073, 10.966444307810228, 5.292022433620729, 5.597450433857566, 14.008386565215638, 6.19047682475005, 7.262623740307481, 8.153147896305404, 10.957672550137266, 5.154901970970102, 4.122310861225713, 17.162521801724623, 21.167693474121165, 16.890395629598917, 9.996246437245007, 13.341016511716399, 22.27730077661001, 29.72364811655569, 22.23532624604615, 11.430823027362807, 15.578028123238925, 20.70703269503203, 11.584029746189852, 10.172120718730339, 5.036305959553789, 15.090401221382661, 8.853611958496977, 2.735843605291692, 5.510120172244545, 13.030455005570902, 16.935886490699605, 11.300445519191037, 12.845560503533951, 6.14234195668414, 3.8138499749582175, 4.888274297042865, 26.585811522032024, 5.194686361200219, 8.48564207086925, 10.068238032734108, 25.9765411019112, 18.800928659381103, 5.127556993769006, 10.811584958781491, 4.52316324809774, 8.804753652509516, 10.495744981828011, 11.389387852108726, 6.141154023554028, 5.117304291556906, 14.154232343242521, 3.937493560749994, 9.347796863872706, 16.425230076751035, 16.853543900594644, 22.059106134775586, 5.125125318977247, 11.20372204310112, 17.490571898724884, 10.708945773177248, 13.421376784547396, 14.274196208161817, 4.016155263980667, 11.566666225759912, 17.040638273721285, 4.808280530162632, 3.4780871193847, 20.008833832217924, 8.080858517893295, 14.483295654648533, 11.720068266857133, 5.532869460128043, 4.608381246878645, 10.52128354517991, 12.885676586885948, 13.876591445790426, 3.3797336449253153, 5.26835662820248, 4.569113090209291, 17.68121153498964, 9.172391231295906, 4.394093295065547, 4.837763126445579, 14.266832274694737, 5.021564583862353, 14.66239145873043, 3.8362504200361838, 3.762149808375539, 14.821494723773984, 7.288953826272036, 17.81618928146806, 10.275968537127616, 11.48509164485372, 6.026892950500826, 14.126033667585592, 5.1609674987548955, 11.197842665937396, 3.9824221626623975, 13.411577567077165, 7.251668289126805, 4.22783291522232, 7.455375297764388, 7.519005010891975, 3.6360087467218944, 9.861037003108583, 5.553645718507204, 2.8135614728107265, 16.947468189737574, 8.777986972097182, 9.103362659771888, 8.746511638404783, 11.413380402179948, 4.228386725412032, 6.926004425646948, 15.252245687367871, 12.43191363469764, 9.57251502938809, 11.258159905852462, 7.367851024936711, 4.225235896048393, 4.092021318550058, 9.646326350869096, 2.8372503425240856, 14.54999110789449, 3.5253902044940726, 15.643034742054017, 59.24215187538014, 7.977298061407684, 6.739110908871665, 13.004443101511796, 11.859732761195144, 12.382360004308662, 7.934796266370814, 13.24541733930039, 5.773022453032543, 5.609736463033397, 12.732923660501987, 12.032303017391968, 5.831263303331625, 5.658796325278847, 5.601727049752569, 7.755801828328254, 7.407464375505707, 10.281498732905847, 7.46306107215211, 7.625247030700318, 10.217811765549783, 3.293180870232421, 10.918314276040423, 4.560024069076222, 10.032159488924897, 2.8053608688123877, 7.136780239098588, 3.4517323331989704, 4.493349338554687, 3.502276596795915, 4.920393309385979, 8.93756780770564, 15.97274711773493, 20.510653614266953, 10.957077339810413, 42.479273248171936, 11.717620418533265, 15.36736908460528, 14.202841580296308, 11.682714403477284, 21.447296788669007, 17.277241697897473, 6.780946365170147, 2.869656390402709, 3.9032219361834, 7.894976593602725, 3.523380144993407, 4.527929511620875, 11.641788207646625, 6.949916071900364, 3.710555943973125, 3.58879798248702, 3.20884319469832, 9.84209189368317, 3.371783242969484, 4.987907961700459, 3.718109741605437, 5.590799318221182, 3.9277585849332044, 9.86319322576861, 2.8312314064861193, 3.352342841544187, 3.3935871897290917, 5.454867483720171, 7.762316194925872, 8.077753361916509, 3.7504300806539335, 14.253317408483307, 10.069101382621831, 5.484734574593849, 10.888972580594888, 3.1889575093294047, 3.645241502576995, 4.607641727655479, 12.45389099144125, 2.7131988957586666, 2.7155996825713924, 12.484577463019159, 5.052586303377851, 7.587243888484428, 3.7493340653047307, 8.74727225096324, 3.0670931992618793, 2.7138728286420033, 3.3181484032309916, 3.8799367209633067, 4.518851772111289, 5.1315193961390255, 7.80731095838294, 4.664166257510239, 4.053094645060024, 10.481795443351182, 16.90114482981695, 5.020740645009772, 9.068174812319402, 4.037045354867673, 8.112196812608055, 3.065699619109473, 4.69692793394486, 4.3237336883454605, 9.59382616548621, 8.987815187704456, 4.487222954834788, 5.27049732487799, 8.542210708402799, 6.82151282267552, 3.165827782465366, 3.6483629763171113, 5.32401178594072, 10.522615494315012, 8.768230266943785, 7.716090287341801, 7.660909196943245, 19.61405890820911, 27.40167521556625, 10.652535715922541, 46.96552032001368, 8.622556611203676, 18.553271008777685, 30.96398794608433, 20.849706182479554, 12.644646903121485, 12.228283844761261, 3.2226146083532656, 6.365065616062494, 4.143338422310123, 3.4798204504712635, 9.992428963398682, 2.937322526216514, 7.283758198468368, 3.008422022733467, 4.207292082306272, 4.134282345218025, 3.484996512190913, 7.877661406656472, 4.396732664397171, 7.637666550031153, 9.557679573849946, 6.9649179769704395, 8.15274115326374, 3.7873944197108407, 4.535692475259665, 3.0453664722516196, 8.366668919044837, 10.483212127615102, 15.345277024227792, 3.660088548839865, 3.022639945700637, 3.805470583007338, 10.893922372744228, 3.712393491898829, 7.798755616214913, 7.759666051329997, 13.963984299221211, 3.7606696831941018, 3.7137431913955967, 11.176020466762834, 5.719579462831584, 3.2579315495327537, 10.232766762264463, 8.344991690931097, 5.188431577784888, 8.244531202853732, 3.64802028741265, 3.367282620575064, 6.341449237815112, 9.927007359790428, 4.979974463942783, 6.906657231196722, 8.416288913652602, 9.469159100896656, 19.89784741884555, 14.095433823209117, 11.799045703971109, 8.189555675207245, 8.121671402626948, 7.862663015473439, 4.5765407422661335, 7.74018725338823, 4.3935996237085355, 3.568334049045269, 9.635638158005733, 4.169479068592448, 16.648861062958897, 4.289332387808704, 5.629208794555762, 12.155687406107678, 9.387047990726911, 7.737560674365102, 12.283353888892181, 7.437557479988481, 3.4603942846862794, 20.23293551403756, 46.54268163420294, 8.173127736625052, 35.755642726083494, 16.628220056129933, 32.56197215986155, 18.71270416402033, 20.639713711751238, 27.273703802676938, 16.900217926958724, 8.299900248120322, 6.817369800093209, 8.508805827052573, 5.838825996004275, 2.8311629154651, 3.4684512855758447, 11.300850819829346, 8.826317880714424, 9.632584254282678, 8.695068638059666, 11.49018974101276, 21.842529895577677, 10.846417859151568, 8.164523264271308, 10.675759131812976, 10.810754677413348, 4.211198532773591, 3.7313533918903112, 2.269452492149787, 6.424854847533752, 3.111790950094388, 3.865164911057402, 3.358395369876235, 3.310109842959582, 3.617910752951364, 2.74406761106117, 12.687455071631076, 3.036363195848304, 5.159968080180939, 2.6623857583749464, 3.7136089396710084, 3.705329613611548, 6.887514179358085, 8.94697871962016, 4.864752516167815, 8.066203379602655, 5.951951463183984, 5.599057235558463, 3.058599483038205, 3.3279008060358484, 7.534791429500982, 6.296877326768833, 4.770531321505954, 2.368016339736143, 5.206649655706146, 2.9689838271413316, 7.665325607302241, 12.366985140858956, 8.20633022657538, 3.785095129424615, 8.594904193683226, 4.89536930020818, 6.463412303290406, 4.504745210600457, 7.115442622310662, 2.60638858328504, 5.057270101409401, 2.586651264586798, 6.570054198993553, 5.333344159004647, 10.770975858597899, 5.608322980489671, 7.038880416149962, 3.637262765987791, 3.329399114980602, 8.012490343780527, 3.633129130287918, 4.6254289869675675, 4.036084535368058, 3.357956960917213, 14.893468642614224, 13.386684243446899, 11.860219027841449, 11.20395413922192, 17.389928638632675, 13.183626343658117, 7.820512791408323, 4.689684620541609, 23.034580669427875, 11.565169055497204, 5.505467587074295, 7.415210342870524, 4.368040972493068, 5.037578310068089, 5.654588080202841, 3.9292577898070156, 3.5756965045827425, 8.737621784795033, 12.290196031168595, 7.063217042491342, 9.459229819723069, 8.103206993435363, 18.077731176314654, 6.4415215392516405, 6.8988542416866405, 12.409449003813654, 9.559051599079597, 4.0833955143849066, 5.614577275735931, 4.493844982528387, 4.50470740288563, 5.753090331167483, 6.233969108917396, 2.9656434838301, 2.5671371236826452, 3.277038363755231, 3.376341662770828, 6.512903080806546, 2.8675292363168348, 3.27076660879281, 2.560284032558511, 4.158934251068675, 2.973045012088548, 5.501022553491417, 2.5367141091775136, 6.057660217402429, 6.017195744532922, 7.90943751852253, 4.696886272329031, 6.770222366827443, 7.284272029067325, 3.3024033577574294, 2.7523721365405476, 5.417383948682464, 8.83682734329944, 5.436063319565541, 4.036253499830207, 4.288999314907721, 8.777819858489828, 7.997470617820766, 5.534292770718881, 4.956981914977649, 6.781310079791937, 5.029523478234474, 6.103834948165019, 3.622707558183582, 3.5473257541134564, 3.5790164882310425, 3.478937097141681, 3.0659082511406797, 2.258898445327799, 3.507067273474326, 3.2322450131992264, 3.3656915404951224, 5.449940578545181, 3.05930683815454, 2.7032544976897532, 2.360104817539978, 2.705808642217565, 3.5381154994579553, 4.566902755130427, 4.359937653378471, 12.858401633342776, 3.3939122419098715, 21.290917747776394, 20.2761275228594, 15.944804169106554, 7.617373164570897, 3.965934134011157, 14.443736867134708, 2.6223124529075372, 3.134503657862256, 2.7361551835186724, 2.270264295531612, 2.916382747262638, 2.5768030479747024, 2.268277568312747, 7.390698248914471, 5.993684030424378, 7.931112890283244, 7.163810605577094, 5.929503714501362, 4.294111200867232, 7.084365226926482, 5.013880855989286, 4.6490477465708215, 7.860656648692573, 4.1772130033593005, 2.812883123714382, 2.7889591545819044, 3.0816540333180282, 3.3923030327806707, 4.940071651410667, 2.9119395295897794, 2.2309464299660378, 2.739973506277833, 2.6472666980933233, 3.316862471469453, 2.959841840927193, 2.2475490537647467, 4.3114956328375085, 2.5944364043620274, 4.686403171074727, 2.5990126331383165, 2.3765125204048902, 3.0792044041351936, 2.9506695658846027, 2.741376280436682, 2.460110455154268, 3.6491044050755512, 2.508775135848317, 2.420180385687664, 3.160318750910789, 2.2365034800955743, 4.169423918450627, 3.512325550391684, 3.262269695401675, 3.531544472954328, 2.9594315573491374, 3.396802236208445, 2.1252681280468066, 2.796986576156452, 4.43392073172576, 2.6870703438367594, 3.7965722856043134, 2.752989482718234, 2.1355460012310035, 3.001362273675583, 2.9401141605317953, 3.433752911313424, 2.5571576533317555, 2.2358456130562683, 3.151850562661432, 3.0376278769316483, 3.7582178910951516, 3.0747433972993474, 3.5001722166219027, 3.2750568373966793, 2.8566703542257668, 3.780369586423483, 2.34943618108787, 3.8773140140108158, 3.7402409108265418, 4.307227101595946, 4.347369448235522, 4.915290202197936, 2.8060638247095318, 4.526656934095484, 3.0608330703265767, 3.3611490631202194, 5.007145271628859, 3.6561395594829307, 5.495939920797788, 2.9021687059570818, 4.786616274740612, 5.174502102446473, 10.142773792213314, 7.677906702948434, 8.028559432863503, 5.3915191557602355, 5.993627263558019, 9.298773464556355, 8.275414916803909, 8.020647912788824, 5.97943530422236, 3.6932169569898257, 3.452162033371866, 3.2956071970028518, 4.373432273950126, 5.096460004360178, 2.4800624851220894, 3.347410628108694, 2.7244837881358683, 4.349988444860549, 3.917101419816923, 3.70791273184553, 3.0943380218613483, 4.022304044265548, 4.225854662800932, 3.706021367489652, 2.4404496832209106, 103.02003889890116, 70.40771255571916, 180.6244839743591, 106.22368905217593, 110.87827705719971, 86.8767836564889, 100.93608323253547, 80.19309249875894, 66.57364158502315, 64.89750736702915, 34.002826708336485, 5.168372559114647, 6.645501519706832, 7.728356866698716, 5.551895268412036, 7.201452437337248, 5.513527516207154, 3.8194861557639737, 4.144568596858828, 3.1452537780733247, 3.6652273670440705, 4.6864499884014235, 3.2426718750699113, 4.388439446347201, 5.362850532126129, 3.08205754711917, 7.946577193148589, 40.360344778012546, 6.772657295326393, 53.00105932424203, 4.289001018015423, 12.39472625504509, 31.295457303333908, 3.8180044106921573, 45.684845323809036, 5.053499776237123, 7.530680598111018, 4.300144214475564, 3.809288974151031, 4.6091287329146375, 5.523169718140998, 3.165742893413625, 4.082970127009586, 4.92886092362174, 4.314185073326914, 3.5576515767468675, 3.4385759220082144, 3.452237412634648, 4.195171863070958, 2.6752994083366524, 3.70240451098404, 4.3115350084376125, 3.795568235172236, 5.703487568298817, 7.476569097172632, 2.871619616472362, 3.494394966803423, 3.0037813197909853, 2.930672376632257, 4.819625156186446, 4.39856821489666, 2.1593345060576774, 3.4815771676338567, 4.5255471607301745, 2.3607704405360987, 4.117837512887315, 2.5441361048719386, 3.5571373641290682, 4.259943929254141, 5.961281401644279, 6.639738614331113, 4.117662061469291, 2.447264454331968, 4.950557321888224, 3.455236924488182, 3.5316883659929124, 2.8096721811291094, 2.4943600742281893, 2.336627864822367, 3.2949858791944315, 10.132253940073886, 7.333925753879853, 2.794826802728041, 3.4892963826512915, 5.548226530871039, 8.538430756379421, 6.9550045237121125, 4.899488158233342, 5.578868932887036, 5.749647705853837, 6.40417650911605, 2.259669113401129, 4.892768526537242, 2.4238813867667246, 4.580124716999003, 6.006025278135545, 5.067199891347418, 4.975921980835404, 15.67934330580299, 3.4165293630926574, 3.4623645914631758, 3.2527042363948744, 5.222861110795416, 6.92610517114132, 7.4536659034791715, 4.079179337368171, 3.9548514415560234, 5.397500989512707, 7.095310759653726, 3.311937191546731, 6.034353645708594, 2.844105212752255, 5.765453260774987, 7.047000417261657, 6.072164118678977, 4.2641315866559975, 6.3237184383407135, 5.539726086185245, 5.985508826383043, 3.517005984794344, 8.52662292040507, 5.986040190315875, 4.662217770957539, 6.870252380191421, 8.099144388662541, 3.0569350766300265, 2.844792938967704, 10.495001433143173, 3.257222219927121, 3.1221070602630903, 3.5061467338592225, 4.05445066076739, 3.2912425276452675, 5.777515014162055, 3.1254353406620945, 3.2932386027795717, 8.089268451770726, 7.643946864182857, 3.0629984928646325, 5.986780465691433, 5.155658223380775, 2.9001141606691427, 15.783029743925661, 13.854904722980494, 8.459851398849983, 17.927829401181864, 8.279202461523791, 7.949118671269329, 8.776059892207893, 10.845941384623446, 12.922195903812893, 7.129866801945511, 4.2773919327581735, 14.060671420514758, 3.806070597468839, 2.6824123189785167, 5.276042714776686, 5.7418663486165356, 4.317086215885608, 11.394888434795925, 5.222584976056337, 7.244761157525283, 6.759644967259903, 5.7624700117897145, 7.984955891307418, 5.183606892879907, 4.17963224418948, 8.298884837179802, 5.900945776466822, 3.431056887352082, 4.83133860898341, 11.569049061381875, 8.24903053892364, 8.600560000322082, 16.10193271692533, 18.02423657328949, 7.65031426296694, 8.185906855177839, 18.471253816806875, 7.005974594028252, 7.760203179543396, 3.9532189499428445, 5.923421910562973, 3.5908370591102328, 5.637797105561912, 5.201599433280265, 6.8170713290370895, 10.393524117269713, 4.7758653089831045, 9.396073867101725, 2.714946255562941, 3.5828680588836748, 4.310145496869162, 6.413586975246427, 4.903696265751731, 4.689869381555078, 5.031969552145111, 6.26752426213372, 2.971212260074257, 3.236763551977485, 2.3633899937777283, 8.30638342997146, 2.0859909216062613, 4.746502547494249, 9.90814492770871, 9.595919408426395, 4.121644790649564, 2.737064488092508, 2.5622363132631416, 6.068373541465563, 2.6590789983036336, 4.273171999357153, 3.9785190201369867, 2.49583975516715, 5.11863199414596, 3.571185951465736, 11.53325615330259, 3.9466105659833395, 4.201776007005962, 2.719906632254561, 4.222029163904216, 7.095424029824869, 4.446316182692719, 2.9270080053597964, 7.640671430453893, 4.773142977701305, 8.697817821267964, 3.8352035880508017, 6.320756077680003, 10.271060358885114, 4.9938951268716725, 7.1652613140524055, 7.854073494293902, 5.552649113324983, 4.533400900176378, 6.122769287346334, 3.269985398335661, 2.4952657989982177, 3.706291022569077, 4.125035794397414, 3.797435722794625, 4.969539888985517, 4.2041535662052745, 3.659330876096824, 2.7332480550753986, 3.309877976139648, 33.370315082144316, 6.9911811827670105, 5.365437739164386, 6.331900997491527, 2.982344736276564, 8.702715273685858, 12.459969149943925, 13.041992242754342, 11.552798315967168, 8.239452947872437, 36.75099355063425, 14.131077714590356, 13.351680904851628, 12.010877908167279, 13.959555983770437, 7.720245906535382, 4.905038843563577, 5.425944574441751, 2.7665844590494717, 3.4866808268371674, 9.911987751392811, 3.0445583440098782, 3.532443917584546, 4.877678236101232, 3.601892977183959, 5.501425516662163, 2.8896790502656, 7.243938600948006, 7.807835040620713, 2.7229141458116977, 5.190297187226156, 3.7249204597736343, 5.8297959867945846, 9.678508172876798, 10.69634258948747, 3.8227457493780577, 3.2297153187280556, 8.978772834575281, 5.506612728380773, 5.7058145633040525, 4.4672092308072004, 3.6022830917751, 7.748161136718273, 2.628923236842614, 5.656955049301413, 24.459097920258184, 5.97037569155976, 5.928202754913303, 9.317322176617516, 4.970114927876474, 3.4862431565504584, 2.8278481281879673, 3.323750937525128, 3.169952048072448, 4.600226272744185, 3.950482860328107, 5.538061634541076, 5.673130457681242, 7.7169111390007625, 4.875083979005232, 3.014093288429582, 4.5531008533647235, 7.800031515863035, 6.634378540354421, 5.626363257594054, 6.2290547959236955, 8.367763044684908, 8.255733590543116, 10.054293939249751, 12.011540173322704, 6.131448771715805, 10.709195606142092, 10.102418586361718, 6.391647785729172, 3.9330585556610362, 8.326518933797056, 3.1748198128854614, 5.818445777610672, 4.557652623095314, 5.759436456395255, 4.7329520135901895, 4.93046751456584, 7.140138889742822, 8.825399099509223, 3.4131855593752634, 5.036362991514621, 2.9543137128106576, 2.921686568471504, 6.325068065884269, 3.050715645478427, 17.706271502865306, 38.374075760998494, 17.069411731830918, 17.547229188675207, 18.806742002222272, 16.45076776799318, 20.404696207035208, 23.370365005156167, 17.158555106030924, 31.434577380653348, 5.854996525278141, 9.730732163566751, 6.6825768276295685, 4.061858626535552, 4.041261750924303, 5.448587249655748, 2.595000527346722, 4.884667394193217, 6.042703375294487, 3.8316486496354876, 4.274648933292585, 2.476451963603585, 3.409698455666196, 3.1652969640596824, 7.917295331830167, 2.9098436884585506, 7.488543419339277, 4.502061465807829, 6.218234867264257, 32.78562130270683, 2.8129403667634545, 5.349402965666192, 4.264049548151717, 3.922361628756294, 17.765649862973508, 12.013342945935445, 12.064024654077235, 7.255085120510392, 6.868594893634655, 12.662305056219514, 7.70439897206031, 17.644979733345547, 8.940236930847739, 5.8739188528302275, 8.697895540925247, 4.132209540751541, 3.4711405470370402, 3.739721518211714, 5.621872631969175, 4.209307636893434, 4.654412256817546, 9.121363094085396, 3.2647484168975542, 5.973648387234284, 5.617401149428839, 6.15537255227385, 5.354299449562076, 5.46102555886536, 3.1617826309572306, 5.7557007118241215, 7.6457741406484105, 3.3362267933178305, 3.0525588703995385, 2.775635743465162, 3.0412281851208225, 2.81843899997926, 3.2993598834310403, 3.250095198383283, 5.614546379899227, 4.751236691087626, 9.976366700737644, 6.803135623025459, 8.049371250718544, 2.802905592783449, 5.060505656495743, 3.5950990414261397, 7.229155271835554, 6.150469183621696, 4.699062993331795, 3.2329326685013813, 7.430015565703948, 2.490029604953869, 2.714889214793747, 9.014540315230798, 2.653697325898705, 8.057812770008475, 5.244401301748407, 7.7447204835133485, 7.211574860138066, 7.968753882312335, 9.151623116956568, 6.90578592866277, 4.487062862185948, 4.39966210480259, 9.832357529545586, 4.841861165794376, 11.063498929860497, 2.8416731980510432, 8.054306787570956, 3.484858810463458, 5.112470358910272, 7.216791291138096, 4.437801439014696, 8.740077637740882, 2.325834612852726, 9.524994649061693, 5.877095211755484, 5.5307223278787525, 6.264548524249454, 3.2529916436414847, 2.653601735203634, 5.238292807686522, 4.990060943555328, 3.0954489060132544, 13.03199238184501, 17.58760823705973, 8.495414905816297, 18.948414386291454, 16.471476449616354, 13.489806554178845, 9.03080052835052, 15.271186391683676, 15.114290444845937, 10.320260317964246, 4.625320509408049, 7.823896876187891, 7.1311043224114625, 2.677478178412229, 4.67884416239633, 3.641010459588523, 6.779943676194318, 6.186700397522294, 7.133739422877434, 6.518808123027156, 6.688740876357269, 2.893249760996005, 4.028736930175087, 2.497063373060643, 3.5069728858421985, 4.006057822526708, 3.810954895657643, 6.984082389603492, 6.398329862254185, 7.527349386757845, 3.087011730993767, 5.796158256369011, 2.7047649416761685, 4.425779117828655, 5.04921393603735, 4.2674770963793405, 4.39983671655441, 3.1077933041571235, 6.030892297087978, 3.2500635987249753, 2.9743076855604396, 3.3719717909679803, 5.466292281881506, 6.98008677146489, 5.9289277914966645, 4.711522295961104, 5.162412066025217, 4.839241953182652, 5.4011038343808915, 3.229668082340384, 3.855879279862835, 3.4522535773246537, 13.162788507583127, 2.440339958785702, 3.0414510543348756, 5.919859210029704, 6.206465761044553, 7.0223490605553796, 5.262879746517702, 8.103943115687443, 7.7885652968704475, 3.010319015908654, 4.077959063921685, 5.274319028943069, 3.1484788065251212, 3.0647050162760663, 3.20428060655076, 2.994627728505977, 3.8129884187499177, 3.423463859016988, 7.301833344284249, 2.617808601640788, 4.0943540074474125, 3.0252608855629117, 4.7718995718674275, 2.6489281786992582, 6.4980758907862075, 2.9576623070743886, 3.5786997535958465, 6.489599708248586, 7.523133709959249, 7.5446630233048655, 6.453812665789381, 10.485785173542444, 12.65927861148177, 5.96002146160436, 9.890029328008241, 9.507077927839317, 7.24957293728593, 15.2477463876882, 13.90558198597666, 5.436405100582933, 9.212184987202628, 4.925763571970065, 6.5507591033672865, 4.275617831607011, 9.754286520264676, 4.927800927127125, 7.50077803899694, 5.9408252920801505, 3.8625548775886624, 11.803326610393668, 9.205911716909313, 2.7414542943772933, 4.318803846944581, 3.0300849594918864, 3.3285467202206114, 14.50644911972236, 34.39424811553083, 48.99945244736792, 28.035882186583237, 54.63777789078253, 24.45383103539534, 40.48119640718159, 38.08602336833397, 43.6457974828582, 31.577215930014642, 6.790487254317565, 6.614580495234386, 3.0648037900952243, 5.180242526495527, 3.8931289893879613, 5.57005462038368, 5.575234401876747, 3.0200110868971004, 6.5222995009738245, 7.239044610608168, 3.624553072844144, 5.261960520255466, 4.072978852602629, 3.4007003440899095, 2.758911668377369, 12.0094442773684, 6.52404376499338, 4.1435983008112505, 4.102011169951315, 3.799068801139292, 9.44655903098224, 2.9887373972072155, 3.1625365970142982, 5.5954974999060205, 2.6395728781352834, 4.962668121942218, 9.382854530861822, 6.05704807712451, 2.634946638145308, 6.40539204122914, 2.748839223333725, 9.589187163347582, 10.257111481066504, 11.75039563173441, 2.6495029014489777, 3.957041794340962, 2.555327319947246, 4.798990933079088, 5.694245395499197, 5.241672359917894, 4.738691156827919, 3.2687979274797083, 3.7826525818278376, 3.286526777227643, 6.249788027271565, 6.379843833824836, 2.492474651621771, 14.016310821369066, 8.325541215731487, 2.7003896552113105, 2.99053749542958, 4.060557926675135, 5.819351417515419, 5.104042599115926, 3.362197374831105, 7.377875237221308, 4.203124588504332, 4.423964388614304, 3.7285160830999047, 6.123582259733729, 3.0104764287509487, 4.280633954031796, 4.062312290949731, 11.163621511995856, 4.00627308892518, 9.179407142152844, 6.455924629481684, 11.234313314156381, 2.858666732213055, 9.10037470137159, 8.102844106340818, 2.888765323613952, 9.26308181068016, 4.083400014142999, 4.123424838944773, 3.296802143646017, 15.49897229726233, 7.71553925815442, 3.4465325674933167, 4.336185196597064, 10.78738561782857, 3.3784479591223224, 6.658725112083446, 9.516831915149933, 8.121185189535879, 8.071873900707446, 9.013154047729241, 2.694177743544208, 3.029220718224051, 9.829350436254494, 3.5409276189276166, 2.682777038809556, 2.593771418584911, 6.028598534693677, 12.159306707816656, 7.133246577239325, 4.127783984520293, 5.7180044695693475, 2.712764317646821, 7.114438230386027, 4.502870448700853, 4.476244257532711, 3.381137288245874, 10.87733546637831, 6.0908575215981235, 7.02914343328227, 7.771746426189061, 10.63093198812842, 7.454604947561871, 6.603093890515776, 6.482158950360995, 2.47441428982584, 5.169842447587334, 3.6049881795681262, 7.478573770395284, 7.633849434622604, 7.697493141790402, 7.231446442684691, 9.32461053658714, 6.364267333981056, 5.158867951070134, 9.109196183943318, 3.54323936240141, 7.3152924737586424, 9.414527857995427, 3.3146650154628925, 4.870627062164225, 6.007553212317974, 4.1288290459010435, 5.483964756456672, 7.449261633198478, 9.687496680154345, 8.238639622667755, 9.877549893297372, 4.712634821532545, 6.849624857648048, 9.995417237394111, 3.462764622861181, 7.012524990999436, 3.6298942742091254, 3.9733893644681357, 7.119647591272701, 3.0315822339835905, 5.792510731881585, 6.56805244983266, 7.034768512388214, 4.35071275992634, 5.465100020193843, 3.83054974776277, 9.780194495746864, 2.7980730647556364, 9.840638530987986, 5.335626230252562, 3.7679761282848303, 9.117621552008545, 5.220432560675393, 5.99299712474362, 3.3875760210003873, 9.19599038090359, 8.86736715696457, 8.470101811182074, 3.623383390294599, 5.28000315706547, 8.67208527828728, 6.433759795866079, 6.521896728357908, 12.621715424444831, 4.469176424068329, 10.035333571319907, 3.4244042456250092, 3.191349524038447, 5.2734099253136115, 5.918884576093391, 7.017604844134411, 5.310797769575329, 8.604858668183041, 8.957725127270002, 8.660203258462094, 3.6661185500431412, 4.694590731851757, 9.626361961310344, 5.987437187406836, 3.7161498132197717, 5.162831443547606, 6.120218499397834, 5.126143576560046, 4.969199559440727, 7.510339466671459, 5.996260400704754, 10.689042952872539, 4.585257767295362, 5.948149664872591, 4.503337311050491, 2.8056552768111365, 11.6596842715022, 6.9688987515927705, 8.441683108661202, 6.020003617715756, 8.789475100033695, 3.1518534848663724, 3.7852547189030563, 5.534540449061766, 6.496867686558373, 6.532342432995721, 3.2944963536820833, 3.7887165200598005, 3.065663470068808, 2.6035902297116604, 5.091913515582489, 3.951618847938339, 3.619582936230644, 4.06093733123108, 7.920808967074201, 8.983706026512502, 11.599721577216716, 3.6233070111562977, 2.6706109077661933, 2.73609938657314, 8.631378750460858, 9.76225831242544, 5.378838876834081, 4.081239711822675, 4.5010301272225846, 3.0030775917405688, 8.430457162779737, 5.912435586276472, 3.470138651402609, 4.3910068428458295, 8.02369740775271, 6.701405445826675, 7.1548106866559555, 8.249668071983661, 8.015722541891874, 11.571012646978152, 2.97817100963793, 11.057879568606605, 11.71543355368072, 4.826973193324642, 2.6159084462150974, 5.882012612228434, 3.0728416782227392, 14.73726710276824, 5.418777458132183, 8.99718319916911, 5.1790310600119795, 7.120420702857877, 6.386195572704271, 3.8208247851811388, 7.895418273324715, 3.5745446197125155, 12.43960106907263, 6.4668817469188635, 7.572335014353137, 3.192432209397305, 6.957405700896787, 3.98793025351143, 3.7653987328062484, 9.265211090987215, 15.20264412553098, 11.84260678088661, 4.6226667658432605, 5.406383406499994, 4.599429086339869, 18.60761632149822, 33.03247514208147, 26.11318753095651, 4.316191724652569, 28.835265633182726, 38.36441690545177, 4.459179842869363, 22.467840918098833, 5.5361351740628955, 6.762171605882886, 6.732333933047687, 23.184692093404166, 12.415639530289349, 5.548423201804777, 12.158090281412717, 42.17835459621407, 10.63442069657175, 12.11193768549774, 11.663381243889107, 24.513228460498446, 32.75456957028759, 4.597053397912539, 38.86004597230255, 4.504791930986434, 23.256606376134783, 37.996564148264476, 6.30746889931372, 13.490745957036548, 5.573978222043056, 6.544054973657446, 5.091619961389968, 35.49402499029866, 23.70494933895443, 29.832071800928514, 5.215670098076765, 18.06645595693064, 6.25194780750674, 17.56526481145768, 8.620956784226646, 28.912906490229496, 5.685437112766233, 26.944340882866776, 25.994322662004226, 8.218756837338422, 11.662704001020261, 15.797887088355004, 19.695712066164873, 20.251361025273397, 26.369102535746777, 6.002121556943812, 13.824167787062695, 4.206867272599866, 15.867995658828637, 22.866349995971234, 27.913886961523335, 26.75074118679953, 4.718049267088629, 12.12818350309399, 3.248443576828045, 16.243473190807542, 5.81636636450254, 18.42767325194149, 23.565571974583765, 25.095081948632412, 10.771531537731192, 5.29654238729732, 5.558169972785147, 4.399062465166658, 4.80070823695219, 5.418791176120214, 21.044421024550708, 5.327747569715868, 13.518426197593742, 4.160584678021028, 19.961548568612347, 5.705251814469526, 12.6785617441062, 13.251678469121037, 11.222617121241559, 3.800990010777522, 14.19361194197014, 11.069232636543578, 4.327291101366174, 20.264720005742774, 4.376990379786579, 21.011414185426194, 12.837558441456542, 9.027904184957842, 22.812800288777836, 20.916281943646, 5.821086574177914, 4.048841937696893, 13.956614501094707, 3.722862163850442, 11.264653443696607, 18.590952018519634, 3.517434849350527, 14.5621123387613, 17.366868451193092, 19.033836688848684, 5.7412755258731565, 12.39903675045373, 9.680719098753945, 13.464588237655597, 21.24342146549714, 20.16696125568254, 7.214729546701717, 18.658712458977735, 10.853450143737758, 17.296918867833288, 4.090629124945512, 15.141959103908581, 7.41500836705563, 16.35862163071782, 16.133625752723503, 11.800433297142941, 4.514950899162305, 10.876643936419859, 5.961260015304717, 10.545444593958962, 4.07868232609331, 22.2115414316145, 14.12059230175346, 6.291060712044432, 25.468265515601267, 12.433886486155453, 3.1866973335915274, 12.02064688916139, 3.5620952512898687, 13.84334019566392, 17.451323257524137, 13.526518582078966, 4.230500704061419, 20.76715140868544, 7.565922348651547, 4.337338833529124, 43.416361596176536, 3.530822565556903, 16.343860197557312, 15.226870135153947, 6.394422590412261, 5.452078344707595, 4.679784447306479, 12.548988054618201, 4.841561722275304, 19.228180960825167, 4.135800392313648, 9.69550585584241, 7.1423927727272565, 10.687717096287784, 17.06548430579383, 5.0022440509957375, 8.978607995879866, 14.346592901727934, 11.931785873575574, 5.468030212188936, 4.063172672014839, 6.447499570291681, 3.578706655588882, 10.400019610232647, 11.66469172743359, 8.646865502514611, 6.777843662137956, 6.949063313539031, 11.469677767512291, 12.774625105114065, 3.651674943486829, 4.495156836721025, 4.101651069528145, 4.235227555139838, 3.667990517056854, 4.593444516302684, 12.665579549203482, 13.081080083765576, 11.822779192877828, 12.096547308658366, 8.759064861237896, 9.339590520579177, 3.5769960617225434, 10.90864352326886, 11.84963377310537, 3.765326379229348, 3.98413672664496, 10.424128203976016, 8.439149475109872, 4.734923326036782, 19.31346773732936, 3.781681486397402, 14.634020026570202, 14.056161023618882, 4.439630938471684, 2.940209767429307, 5.749061637929041, 9.128734789713837, 3.223552205977086, 4.717075318800704, 5.722361170388145, 2.973873264188549, 10.057916170077657, 3.6994082468392246, 3.661654165271881, 5.227483984680446, 12.03182341957444, 3.858552599000147, 4.18798620881323, 11.034573560153214, 3.3057904038101356, 3.2467962087378948, 14.69692286891402, 3.1484789842009935, 8.661870408871527, 4.22692621050883, 4.045128603842658, 10.525384495231467, 4.056802408319849, 11.626730667945875, 4.5620662682731075, 10.446990707782312, 10.296482495894546, 3.686586850100845, 8.325000720134685, 5.383982667634935, 4.767918223352743, 16.186098747479967, 4.446669791145568, 8.838164598964074, 2.9596734874682116, 5.554009960659008, 3.5528964736048803, 4.427223337307448, 10.748556411902934, 3.050306981931847, 11.20914981930233, 3.983095426623552, 2.830357597240472, 11.17190664571075, 5.679267282882302, 2.8225601800783484, 7.347557001465007, 3.6824751725554554, 9.524526642310688, 7.763883285478781, 5.469558081691723, 6.453071658322648, 17.66246562008396, 17.980639088894957, 22.56205328744703, 7.396196329219233, 11.779704225040073, 22.9272861836162, 16.778520965888514, 5.052162080830259, 17.042604736100756, 16.632992934589588, 20.003395515924716, 25.942596112466166, 42.50662858369954, 19.18623148215876, 27.484124200058705, 25.993230809379643, 18.750532748212027, 22.341704169774488, 30.808527476270793, 28.862501064145828, 20.924035935115224, 4.309190334737217, 6.185742022208711, 5.102443632747493, 3.4684043007030296, 6.550520055462148, 7.985354066550762, 2.8375165091812002, 6.14112904662584, 11.272742237530055, 8.424141326935771, 3.473384143339438, 2.620182238726482, 2.730369944866309, 3.386489169047065, 2.842029278336231, 2.7891970339239207, 4.920896874714933, 2.247468101367381, 7.830761791799828, 9.599799795353148, 6.697285484546289, 2.4741624193612006, 4.205388314158815, 4.955324534766471, 4.62071568406931, 2.79379749435223, 9.934252209282556, 9.558972987679766, 10.770824852288678, 2.5574802565981267, 11.595687283072428, 6.344410812633401, 6.447067232476028, 10.364949041484747, 8.070636019110045, 7.139069917162849, 4.198443698653705, 6.4168340124493355, 16.898403714449667, 8.756090732531534, 7.517434232109983, 3.201369558760965, 2.631158960396196, 7.5029105412182355, 3.985223194642186, 3.9901569809763946, 4.920971213007663, 4.686499113827814, 12.064978206848636, 4.782596367760372, 5.5133119847111365, 2.570194092983736, 2.3211491170511858, 7.4035747122909905, 2.655377476345507, 2.4288500961961637, 2.745210208250367, 4.595664818874259, 2.7771666588489365, 3.2106000704521955, 3.333949581988168, 7.946237194012389, 7.743781592669176, 25.550514946774026, 6.862100428274392, 12.7030904740986, 13.009221530691333, 14.86948381200924, 10.86327215667861, 12.809996157476938, 8.826922226415542, 9.943102923576934, 31.342952582381095, 107.51791874773016, 124.21957108961448, 113.52072673160175, 74.54606104808451, 84.19976180591856, 99.13238348491076, 66.64818870273841, 62.526633899216236, 59.823388525749394, 48.18698458720986, 43.193150233100226, 7.335442961566241, 27.107651017539187, 9.45021483453059, 29.375166207604128, 21.00621257439534, 9.392406503934074, 23.853801101132564, 8.08981779717946, 8.844771278501165, 5.936797848433455, 4.984075681002415, 5.8050835339151705, 2.0589509634269274, 4.116793935681019, 4.59318383761648, 2.8160660738428835, 3.6558816469579356, 3.155424312919561, 7.634154452835306, 9.937866636697954, 8.112311493276183, 3.09457614014851, 2.799593036846957, 5.442547156197017, 3.9345749566281887, 3.0236505506774036, 7.883699780512482, 6.703264811523185, 6.188896615759474, 6.662960239628122, 3.0543267712537836, 2.4267063028057283, 5.241560519718843, 4.75052647361678, 5.829706747106425, 3.8655200596398154, 8.607259292817737, 6.186869088671553, 6.798212526514859, 7.629168927957155, 2.9087125454241156, 4.565041086589514, 4.919073035486731, 8.726905863039475, 3.539064941283163, 6.787185892149555, 4.112158549591671, 8.103350088045616, 26.962991539004147, 17.842002205703196, 16.19782015734258, 22.765770929287715, 16.133710835775254, 17.00469377670666, 16.684533068105118, 16.286077732086913, 16.429953684368655, 14.204540835410953, 4.306540270643781, 3.9794891638989442, 3.62690463161325, 2.689964644732244, 4.619475470183013, 3.0991321821516866, 6.08467600464114, 6.047732686265035, 3.880889420558996, 3.647153618406205, 8.29363588617274, 6.02318931484458, 5.215552448936197, 3.4480179788830276, 5.065328684009574, 5.165887748751946, 68.5526064476454, 80.21462704370792, 86.84292844618984, 82.53363084560368, 69.25516045912293, 58.11331807897984, 53.93400281439727, 50.72193343855186, 43.454519907927605, 42.51097617262503, 29.862252229231398, 6.85369179600557, 3.4374900859331587, 11.558676156792359, 3.3490161716619733, 4.007011697376318, 2.739637521209239, 7.559325786295918, 5.362829228241062, 3.9763451315618923, 7.031134922165569, 6.3168668624539155, 4.618230397796988, 8.71693142957982, 2.9832307419219664, 8.916155881931031, 4.305555734448363, 106.95683317121478, 68.72237375124877, 89.28090690484221, 88.8600109552284, 64.57058684447148, 58.836528907203906, 65.44614192274089, 49.1223461594185, 54.81472736080692, 45.887471791662065, 26.095011421607836, 7.734125879445281, 4.784802680067867, 3.6761632489513945, 3.1236370750427565, 7.5611301706382354, 2.974971107181734, 6.670111561345791, 5.5253411014289915, 4.458713142547236, 4.255959630439764, 2.752264389871381, 3.4276409677515445, 3.4311962153549382, 7.0016311713061725, 4.502416482999484, 5.018262192565006, 3.502052797085878, 4.1094055854141, 2.522470280422342, 3.4545715116029916, 2.2267150795096256, 2.1303212710511557, 3.277183064186941, 3.2426564061747216, 1.9224679910172244, 3.3570144403628843, 2.877699105284255, 2.452229130142851, 2.8888724190469253, 2.4386289474001064, 3.351393756484716, 2.7593102082894063, 3.6222469859528905, 2.984463352646809, 3.016463296246468, 4.2650666432601225, 2.721471998475372, 3.270082233710374, 3.96061196217941, 2.5493312272385524, 4.319377448270949, 3.2328722506957805, 3.8916608883681336, 2.788501037350442, 4.302581375846947, 4.22887215910252, 2.2849772839893716, 4.201920357681088, 3.888988011986977, 4.752363348943373, 2.966467134506757, 3.7513187466526468, 3.9094251437063314, 2.675408881097237, 3.71416725992076, 3.2894855188121324, 3.881994174160829, 3.147828260907773, 3.952211195326782, 3.593551507801654, 4.08531590343438, 3.9785069185820197, 2.500512939459791, 3.1260030113495842, 3.3490911502230944, 3.4461267213130875, 2.1943148121919656, 3.1625988112406445, 3.7176067442005594, 2.252347840306262, 5.820186120817378, 3.4059910901586132, 3.2470411263504158, 2.876177267650788, 2.6570867141921437, 5.899242988754538, 2.322300993933451, 2.9440143773208156, 3.73042255978315, 2.920784041437859, 2.242576033262458, 5.169035346246281, 2.517247924948073, 3.622565529693471, 2.7941242520317084, 2.402663028067593, 2.978377180919094, 3.904697252196373, 3.7235616547107666, 4.629108727057257, 2.4495480512647556, 7.2008141652946325, 3.974493524871618, 2.949902381863745, 3.566794002799843, 3.3168489980576954, 3.3181168105406407, 4.300886474269274, 3.3944658719453895, 3.005905545434957, 3.134981803432657, 3.271708398364478, 5.483385231520634, 3.9705926724785687, 2.590477384816541, 2.9017194526600005, 3.212741234136862, 8.164976871299949, 4.229456552686933, 2.4671330298616514, 4.5821250007710885, 4.990286023899423, 3.815519714668241, 4.351205582730525, 3.263994091975598, 5.629713676259086, 4.768517762930956, 3.418611668712614, 2.742473939146242, 2.2954297668032035, 9.576492913806321, 5.23957010372297, 3.0216409087140703, 3.5681524560846354, 3.3045861134995076, 3.629705118802669, 3.841466426988847, 4.9018264584078794, 2.208608572924301, 4.550907993888094, 3.2977543304855725, 3.8920954917477233, 4.688105112516748, 5.490027101298474, 5.233390881700264, 3.3032160772837202, 2.865721784512712, 3.186925239994047, 4.004571641732329, 3.2577940560732754, 6.383974327035956, 5.344925290855721, 3.9473982665051413, 5.601216350433401, 4.214482958501963, 3.6847959858175443, 2.781792084548018, 3.0101774719801524, 2.493493797848027, 4.367355581091404, 2.9043288455141103, 2.7137921424254645, 2.891110352182883, 3.022047471504317, 10.638838233679044, 2.71348306323348, 6.02418412453116, 7.1148680307176155, 6.097405512774264, 9.422202555330687, 8.25424593293796, 3.4902152621816502, 3.2235797915185587, 8.847254813978049, 6.786058726205678, 4.953317158161035, 3.347855752547448, 7.955695662228186, 4.629305150049306, 2.748573738882991, 3.1885885118055373, 8.083145975706945, 4.838298146843252, 8.458436404732154, 3.1687555918718107, 20.80289330499212, 6.005666619804106, 3.7604781450161044, 3.7263633477570086, 5.916268601513957, 2.8299535252837225, 5.149337107749195, 5.186502591518587, 7.689738091480538, 12.825131918028953, 4.739866091080442, 7.508014783808134, 5.485594668286053, 2.611036393787776, 6.864885183404397, 3.4757093430515855, 7.332577830468929, 2.739344421301801, 2.6765741181718177, 11.622343640525138, 8.995618312011219, 10.562826398820038, 5.498400376389171, 5.9035399136967905, 3.0196445852071974, 4.638429303042313, 3.4541500720099925, 3.441044527636459, 4.736220306537507, 3.245766239486012, 5.042848304155034, 4.340076808293659, 6.113101152415268, 5.025598379384471, 3.117677701115376, 3.7199997583369395, 8.953737060872456, 2.5292380047247, 10.711103555934434, 9.051281957737428, 4.595103563989071, 3.485633097023152, 6.739648234338648, 4.989917269527312, 2.9663848402129847, 6.966870793178031, 3.7244639256156784, 4.127692295899647, 5.852418082068181, 4.7937182717732565, 7.201115924991852, 11.831501244186159, 2.7779191591712333, 8.19577467993697, 5.0374999333863135, 6.220082910688286, 7.870739611926701, 6.157458594848711, 10.288151174209878, 7.224895540699669, 2.8254232116869797, 3.5747197704108777, 3.4289676616898843, 4.641470852310593, 8.340102091931685, 10.883038722227385, 3.4859212270078195, 4.103826838571459, 3.217959059659829, 7.7949585527004155, 7.596660254556355, 7.828651511580289, 3.06960074156417, 9.412903684791264, 4.052738552128316, 7.700279464605342, 3.53511215888851, 6.338905053942749, 4.093605555671396, 4.109353759364835, 2.405085305504333, 2.4703974622008755, 4.339221746516977, 3.4541400461188907, 9.290063281467143, 4.095581442437475, 5.79757283119215, 4.009697764976339, 9.430814630441136, 4.295627350480178, 13.970901461094805, 5.357603789940505, 2.249545428256719, 11.611071035683693, 8.037255092511016, 4.824216149159523, 8.639864294172645, 3.7852859416833247, 14.888935685698891, 6.326469467909176, 3.294224436821447, 8.397023330020525, 6.316057147789708, 6.32919351166199, 4.104764605502281, 7.764454775871793, 11.065655316679374, 5.861802498548549, 8.428501306010386, 2.8128156720125035, 9.866772788865951, 8.596352820704702, 6.38459539353626, 9.630395042393614, 18.86011314361914, 6.5842849380469, 8.132947400338871, 8.485663731406378, 2.811223432775999, 10.613844966414167, 3.175057459902549, 2.453687309342368, 8.975221541024405, 4.504252109044837, 4.6566132233647, 5.992868274748189, 12.582848638340048, 5.372827611515768, 5.522276441496758, 15.405607336298749, 3.5581559235536178, 3.9505805480418514, 7.0096289318599, 7.264035915369571, 2.475302249653538, 7.62015221892418, 10.7430855552281, 4.5393173676405185, 6.223957705402661, 8.067086657112535, 3.247600717509458, 15.052854053613958, 3.7188686764256245, 7.384746368524639, 2.945830218797888, 2.9440914521133013, 2.7561163021296973, 5.148254753109461, 6.854938548090571, 6.728377281416721, 14.768264829449535, 4.256656456221305, 10.41480809272551, 12.425096223819303, 3.159334154260626, 3.384836480471438, 4.544206292205045, 11.710952332481687, 2.699549642372633, 4.313361449262194, 6.468810998895439, 4.3083839452960415, 11.282047439275152, 3.970642786308747, 9.18037935774927, 5.095414572273767, 4.14817190912188, 9.784086824350302, 9.351908805403243, 8.818877866795512, 13.127340975617287, 10.328739607609542, 9.58519084356269, 4.543117081483739, 8.144030240409304, 8.245029713005499, 5.105559560436222, 2.60399987108011, 3.4819394220794098, 6.839655291315125, 3.146516492012769, 8.213266902604182, 10.579917585608573, 6.852625183443063, 2.8608529353885648, 4.280229861938994, 8.199039746726685, 5.155168636032756, 7.644877302731386, 3.38613405339459, 6.443450468568222, 3.950319456598658, 8.79216643002766, 5.495058793872147, 3.226034608228526, 6.441339848165155, 3.2204872243285485, 3.0935052491453723, 3.0392315824839575, 9.84559556643928, 2.6902587553441406, 8.598464904395678, 4.688195231857894, 3.7870283299897465, 8.210469653639773, 14.167771993014801, 3.4076700115158784, 2.7982619852146446, 6.52579695074507, 7.696628229054958, 2.9041427590124327, 5.316732592746073, 16.191674307804057, 3.494315098936342, 8.886698976287855, 3.3682644827986077, 3.603495549235197, 9.130234546856949, 9.015679338811761, 127.7247494866246, 5.768832900137865, 4.741902171079083, 3.1334238720153422, 8.03701487481385, 7.041620477934559, 7.136407172561904, 7.2171774735596745, 6.126921038075533, 4.651788336432312, 8.930783487440797, 5.5683846638217815, 14.267766352875807, 9.002499816472623, 6.938035829947499, 7.577245987968936, 2.575703779848149, 6.953079208697249, 11.389121038106968, 6.667107148838256, 12.348193175102793, 7.04059316782453, 6.354103355455657, 10.91430136290015, 3.215613280019551, 6.349834828705959, 6.791707060241743, 3.1773663530148926, 2.830940667703536, 17.834052012473574, 7.108758305826499, 2.876183235993017, 3.496298221299548, 4.121320229201627, 3.3649511966690415, 3.9648034375246892, 3.845705860558579, 11.57537606650322, 8.793409896720854, 7.671030895395152, 5.9509216919413115, 7.982178733938553, 2.9852004948433613, 4.185216046958202, 9.567438677248735, 11.073814199979568, 4.569126166901678, 7.409860540866494, 5.908132904684162, 9.698936769086451, 8.273076213595028, 4.887120987691224, 12.077225178715349, 10.570725378173949, 3.178320215360297, 8.35390139162637, 3.239921175105375, 3.0185229110303773, 3.785786541529388, 10.815402475578365, 8.59649778040145, 5.691796547907473, 10.124535788034686, 8.139152960897086, 3.6043683973988463, 4.24804223174762, 11.371646846024655, 12.433466503456604, 11.732427774126808, 6.945881773968442, 3.7696453597276403, 6.263765048906839, 3.3033959397830825, 5.314701684810067, 5.471849840238279, 10.546650962874192, 3.038841446765786, 6.748754556917334, 4.927331121372604, 5.131394516951419, 10.959732326720324, 3.5266266849397536, 5.190455142704173, 8.487488724031024, 10.43022561864445, 3.1179579966847153, 10.974777092504565, 12.226779688017407, 4.776191094406732, 9.269258405014519, 7.233599385562898, 12.207953518340776, 12.631573996582404, 3.8404460844395993, 7.9408542426442725, 10.07522425028875, 4.8347070793804034, 3.8792785493105817, 14.499837055523349, 4.456719076529271, 4.089530993538506, 3.2149788938054664, 5.268412286826904, 5.671345481565603, 5.022978240461148, 5.041256436023582, 2.804311085597666, 9.134548478946405, 7.5085353403538155, 6.018365357028278, 3.3868376059176803, 7.4676273350248294, 5.500679085138013, 6.827728785494941, 7.2776326367184065, 5.235616666308093, 2.9864947821097934, 9.5362026626791, 9.203961363910034, 3.285292299087267, 14.962005681233794, 19.42795800124956, 9.752159783197087, 5.119629890397285, 2.723397213694545, 5.588143808278446, 5.056844811173566, 2.265451444100655, 7.366225966326423, 4.191574431187447, 3.0323496245735084, 3.3927660991518325, 5.85943793777718, 3.2306344551947235, 9.799953681548871, 6.061499229176028, 6.559175696973937, 3.2479152511987635, 13.704281894565904, 2.9353886581945967, 8.22421033666883, 16.76883536960327, 6.249572713433329, 6.134673450488634, 8.357470079579496, 10.750148593901423, 5.434565529343043, 3.412203422793881, 8.551373865338181, 2.587471372718647, 2.8686044418296452, 2.861483658506099, 3.7356353921761816, 6.429796658993656, 5.410699323601643, 5.93441648600501, 5.372612633456963, 3.555622266032588, 5.74504523148297, 6.902110451915528, 6.988918408893389, 2.8164768768054724, 11.666767744996903, 4.328637561329391, 5.777357394276593, 4.916141913216509, 5.137369040890288, 5.896846282639422, 3.0114249399137365, 4.023807497863708, 8.375653887465893, 8.060429046677038, 6.333123264673268, 4.191880252820876, 3.7206246393642837, 4.6697070660482245, 8.346405794158084, 7.095730366526672, 3.224109187977151, 9.649531871408797, 2.7222019563617255, 5.431120543012153, 9.120407187095944, 7.641567905825297, 6.203081208052243, 8.0868113487044, 7.368552216245388, 3.2082663931919733, 4.76908987790565, 4.441037252437858, 5.458014004718534, 3.515559193759658, 5.025806565601868, 9.811921277684636, 7.606463966514809, 5.746773249292364, 9.728412380134628, 4.630301823846997, 3.513453024075167, 2.8735835832785304, 12.079008332287914, 5.677321354023815, 3.115662511436475, 5.87090925108768, 3.56811763429729, 2.5778493784934624, 7.927677239516537, 13.755891444782296, 3.4221573059263077, 2.884288930395055, 3.4879491832042384, 4.05247731009167, 7.379002529525395, 10.164860870300373, 7.287935393542235, 6.250403809859221, 8.876289727778659, 5.4586952610546, 8.863929060438059, 7.831752331288767, 8.437845442364218, 2.7392308451569303, 6.627252039337445, 3.3562500732347584, 3.986237197275719, 15.390341755665931, 2.769166048542603, 3.8664684946544408, 6.217889213413547, 6.606556233868529, 5.556597830162623, 3.3561738777192383, 4.018752836738608, 16.158594217201237, 3.3735560968637217, 3.135948851545968, 2.6722806895222173, 3.8659383089245307, 10.182161342243623, 4.92990790182635, 3.7699988852920385, 2.586120709978571, 6.586332350951037, 6.659438899842064, 7.572476113716045, 10.675687933209419, 11.71766613752198, 7.847863410595921, 2.7408974973300295, 3.6090780198046524, 3.1571550559748838, 2.763764001835288, 4.803483945475473, 9.473873386484058, 3.381143389955411, 2.504566088775425, 15.179024064791529, 4.507086528165313, 3.587711917176651, 6.469114180901936, 7.827643393612763, 6.297363804199972, 12.326638170316984, 6.9585532387239075, 5.014712382508514, 8.179274082806202, 3.9107577653014776, 7.569444211125028, 4.699178486494775, 3.739387724717756, 3.3191976662384666, 8.882493560929877, 4.51931116050054, 2.7176013346402383, 12.13927170816418, 3.778535521403106, 7.445938436946143, 6.818904043128986, 10.289388995564876, 3.3375839489729704, 8.966882782046868, 6.194329200216558, 4.102854316402453, 6.159082347941142, 4.055337633391903, 6.572469817706674, 25.63698103253498, 8.526173826616617, 3.7176695635518415, 11.80347066173855, 7.397025194111655, 2.5474486511959364, 3.635058909674017, 3.1967650383795965, 6.225062750054678, 8.510217637059275, 3.475819881375476, 7.931230854194867, 11.65378598114021, 4.452027007078481, 5.850744540076587, 5.007551984131879, 11.26697498151853, 9.605147313222792, 3.935473624244505, 2.748485270624791, 6.456791789689578, 5.8019516122966115, 11.5152930665961, 8.440175434022096, 4.588205471150587, 8.012789718877729, 2.955631913094575, 3.326031847463514, 4.205363856594592, 7.996408081448852, 9.643556602336485, 10.412925628703485, 7.1547172429341925, 13.364411223051938, 3.5628533561411753, 3.917676806810251, 5.346153381533818, 3.619970267562925, 7.361920867131996, 9.46824955175773, 2.9794844877420226, 3.5918511318607735, 5.3351120901875255, 6.134943023294695, 11.907736012027168, 3.7654743758262867, 2.679339378183393, 16.48539850662881, 4.186552126369266, 5.931374224981173, 3.610985872447057, 3.6953845227066937, 2.997506447384937, 8.467228304553394, 5.179040496862988, 7.023246761702728, 2.5554718152196556, 2.7870577637378258, 7.285931847652633, 6.542855088198561, 5.113407293353653, 6.520417858656563, 10.139676919162708, 3.0875850602409654, 3.540940947311639, 3.4762245249444557, 9.895769919837702, 9.478412983492937, 10.400663449331613, 3.5044398794833582, 6.073909087462772, 11.699796602693295, 2.9759831042113896, 4.711026757319193, 6.571173316209351, 7.4586569955669395, 9.324951322497627, 4.822378420209829, 15.532173553146782, 4.013405115621023, 7.602827842238666, 17.726605634496593, 8.380778607249738, 12.03995629967579, 9.944835911791234, 5.942808748438271, 3.570658809935781, 9.247399209092029, 8.550776726731518, 3.2413479464557557, 9.269003833570926, 4.232721578883064, 4.380886091851967, 3.592819355142108, 14.881917553986321, 10.048801603861374, 5.457873024149355, 10.649666703446115, 12.82854722234055, 3.92328124708446, 8.455609749167369, 5.956286359992755, 4.806972633895611, 16.00801015618417, 6.5910139698729, 10.825677302893675, 8.960025867700354, 2.4312830748478595, 5.949995343722449, 4.051402436777164, 2.904730882286751, 15.905217409748095, 7.702767916720655, 14.49963266279189, 6.795675931469885, 3.7518945469432614, 3.5799068757712478, 6.836110848995817, 3.8417805426321867, 7.236123466621301, 12.791471498795728, 6.243338887180979, 6.057860146986171, 3.304008826016977, 20.31719140159816, 7.315826995462362, 6.230881509411563, 8.175704197383288, 4.879751590113335, 6.026781314267263, 9.700037702974713, 2.889961330868497, 8.173277552049361, 3.9348248116120006, 4.263405299765877, 8.84534800364754, 12.050698568380609, 5.6537389571776115, 11.44886510067177, 4.067290746907538, 4.039778599268743, 3.6531129730884, 11.520311394751367, 2.5978740477285993, 3.3553214761160928, 13.793388136253277, 8.416928883075672, 9.116284050133604, 7.471607952878847, 3.2226243284988274, 3.6436517494740355, 13.807985221560154, 6.728107961551208, 4.820210381740549, 5.939710164210818, 2.3507268269449875, 5.462818554347754, 6.272081304841315, 10.39331916170195, 12.028056537129961, 3.227962261416347, 3.0054446677950644, 4.669550140549914, 8.015185150641127, 13.53529435775717, 3.151010692417865, 9.500498008299399, 8.37215332953638, 8.570289774083168, 5.348844317771018, 10.740018839172906, 13.428147212170261, 3.7464404669140996, 12.57800634161781, 3.5257360511050297, 14.35567847075436, 22.327109845483736, 4.498300357467349, 2.416339259630721, 7.944339098763288, 2.2377445905150606, 4.7127659816472205, 3.243126087786712, 10.059997778093951, 13.33778088274102, 7.353085819851772, 4.414000911116186, 9.57146067556459, 6.373947473944643, 5.1784238216538485, 6.858866766641004, 8.571060313237037, 3.2917114088019646, 2.979212558053627, 14.411683118668364, 14.621912761137006, 8.7048627093595, 7.454379252410851, 4.627826304982929, 7.130452447677955, 10.979037119641594, 3.4159804729227843, 7.663494849855078, 3.2443143400290944, 6.469617601040695, 3.7842367355029993, 5.911532956551721, 2.4090290925800666, 3.3131508611806195, 3.6297900750413192, 3.6995418172368453, 7.08438123490922, 5.8229891081038545, 3.8092132154813045, 5.812579860017754, 10.590204124480742, 4.475726510427494, 14.40943914426395, 8.459262331179238, 9.473535774032886, 3.8076108307623846, 8.21387095627358, 5.6554782089118305, 7.2262114514166615, 6.014468902509981, 10.661711672652267, 8.036399926310335, 6.652239675349147, 11.951606885903375, 12.081681895324628, 2.8344568608456098, 6.75441004425956, 5.200413078871063, 5.903259129811917, 4.931003583824951, 8.980618585056774, 4.850325014383528, 2.818470078634158, 7.223023667423568, 8.061280638858184, 5.039411546606106, 5.816122632839907, 3.8105161760026713, 35.56104489402728, 10.45680272549538, 3.2816809657473254, 5.908428012833845, 11.261376337524045, 7.845862327851184, 11.49216597125718, 5.774005835417194, 12.724872380963848, 3.4511872812828224, 3.662225557436508, 6.5893865028529, 6.564542117717482, 5.712556569513227, 10.761616552755934, 8.21729108890812, 10.478554040781246, 12.852727152836755, 3.4899501050512707, 8.929597120527006, 4.912355679266188, 3.0368481765370117, 3.265858231538154, 3.2333171303312356, 3.349904682417895, 13.696226788134206, 12.277857289887297, 10.047819569359465, 3.328128674052158, 10.092294544848233, 10.616265807901259, 6.817517871383561, 3.1160766343264434, 8.857504123589637, 9.087158115485773, 14.027017372982131, 4.555944963837041, 6.652700526810616, 6.100493023914055, 6.7581971722948815, 3.3041332119837157, 7.916776572642488, 3.1852618016332825, 4.3242852779567365, 3.2220131402776904, 7.616550740189477, 5.878461734579647, 11.976860449017458, 3.411931311819445, 8.368814116723836, 2.9663715554301717, 12.966419001268797, 14.017900849788997, 3.953750463287197, 14.573865849311423, 12.249154693991803, 36.643050810764024, 31.87459416360215, 5.117195738544168, 31.530412806842325, 30.298926370166953, 7.237186597114612, 31.247761267208865, 39.940939548755345, 36.58672073861168, 6.095402804315151, 9.323471255605448, 21.953965147502622, 40.218398128303384, 13.971515704117467, 26.88820231459362, 24.61735023982453, 12.175347394802653, 4.183474535433708, 29.686864136173234, 29.296373033652674, 28.60519683958064, 24.779797796643898, 27.298234426148863, 18.057377139996323, 23.231709457833084, 3.3669842429659473, 28.02843732185338, 19.825258152967784, 6.135376845513947, 21.475206520885106, 7.531382700093945, 5.960878418347869, 27.256089922980635, 13.678741699849427, 16.27338529835753, 8.312547908026533, 4.894280603351804, 4.456655682643492, 6.186442777276613, 10.747045770854038, 3.776335402730141, 6.311225348626282, 20.704025480979748, 35.22064488251727, 36.69777527614395, 5.119632972143994, 3.3193032121369916, 4.093710356865397, 13.304604330349411, 11.742560596273707, 4.477508356671667, 32.34177095201273, 6.880663352313595, 8.632980159755713, 26.426222701702688, 13.869136700161024, 6.12852209853312, 8.471831115541045, 14.766685486924354, 38.843692236960266, 24.475013141832907, 22.967863949929278, 23.567822312700365, 16.271916280032652, 22.178477186645434, 3.8646107122013014, 20.887608061219833, 24.399274284703115, 9.074690617930536, 9.460715223805053, 9.854598970906846, 17.69263627942004, 24.52933530748455, 6.113553566969778, 5.512580693652314, 15.90733259113884, 5.550445981958094, 7.0534214937590765, 19.95601040261842, 5.0361028866322854, 3.713189869471746, 15.913835057986544, 4.862647242444774, 10.369313681397669, 6.073091300564874, 20.038986954647235, 17.64565340573417, 25.81901139668886, 24.861938754938553, 5.156925899042502, 5.306215296148686, 4.674776080843303, 5.3727596621507265, 4.29425429200127, 15.43862683573293, 12.361284165897272, 20.361466472826116, 15.447549365283834, 12.662721277565511, 17.4431498618701, 2.7621475398139115, 14.758105326001882, 4.91366175314544, 4.9214132075026695, 4.558300129708953, 9.045642932629196, 4.101040975618714, 17.419601006260958, 10.06401212442902, 4.685317118249695, 3.583280656197712, 11.666897978721694, 14.207105317145494, 6.199457107392653, 5.554554369492593, 4.037383430438074, 2.874119151699331, 13.163412693651683, 3.0162278699731826, 6.0391171392904495, 13.814435930851351, 4.137537940868752, 12.226153225002173, 8.973893630966076, 15.737121282838924, 14.445429032415634, 19.133138667077592, 4.241946319478441, 3.413587614998494, 4.651103455347, 12.691267046229486, 3.167656843065153, 12.66317103238968, 4.562643329692473, 4.739164768806161, 53.250300916854506, 26.57017812354175, 10.622040314992732, 13.965906848693654, 14.617828313294167, 5.198614390805028, 9.078353188307497, 16.90201939614466, 13.012036364288008, 6.28421917287742, 12.022997452274447, 4.150172691227553, 21.050236106114085, 17.836527526986124, 3.1545413129503648, 10.026959418490735, 23.59463172607077, 16.72409877493076, 11.018035038225033, 18.8813890051717, 3.082287581738539, 8.685366204564698, 9.710256627172463, 7.132984817644629, 6.424783340153026, 3.389172614105931, 3.913114096652916, 4.352124529705422, 3.5856106326485384, 10.155792431255476, 3.927795178398138, 5.8051491337151955, 4.013451699252536, 4.458247688690887, 2.521315197332936, 9.055755751787117, 11.657596922152297, 11.312795003868574, 3.1997753839620517, 5.477796881406889, 4.670737536424271, 10.060274398053858, 10.217480250065984, 4.886238568808006, 3.737722619723989, 16.165790099260253, 5.308570958609277, 3.748726487467503, 3.74085040684749, 8.69800794472715, 4.477726808889796, 8.324145620401573, 13.07504934414968, 4.9997825611459215, 14.777487587277031, 10.887107033101254, 4.671440321385944, 12.652955660470244, 10.324232609252396, 8.140481689711988, 3.674384287317552, 14.294621941540594, 19.7420722698839, 16.499642309668133, 9.382608238296267, 4.113209825036248, 10.418506750627575, 6.381653309452665, 9.350277067136979, 14.258717743393378, 5.0007169162742535, 3.9175630330601985, 11.415091888965527, 3.9519028741484123, 4.721481639438277, 8.737398761475, 5.474321986674324, 4.417064187977463, 9.439096293827928, 10.022512256355938, 3.7931064232408724, 7.529263074753477, 10.661053060344795, 3.4105062768479573, 10.72795565426598, 4.619110769313968, 16.085723345648283, 3.294619494376145, 4.080867615822125, 3.3890711172929104, 4.4214121338507315, 3.764990526733612, 13.711748087482553, 3.4870614818170567, 5.892662553574192, 8.01310376234429, 9.838562282539609, 3.4514717706447273, 6.12638337627895, 9.980485346593074, 11.760800832674798, 8.658906009514283, 11.306914419289106, 12.767455530087055, 9.353716341673593, 4.984655649625954, 3.254990172047474, 3.627128258930374, 5.762233894143215, 10.709820145756224, 3.3561608181211215, 5.522633885568033, 9.557550249633472, 3.0214714013578963, 10.814144584374237, 6.610978718025988, 8.878001177651239, 3.1117585772828518, 5.074591827079878, 3.432458053765813, 6.013664412793285, 9.629796782952505, 8.550048776305463, 10.521531182751758, 4.4415777795360585, 3.5345139719226752, 3.594978459183952, 3.3185648629578712, 4.519075642732631, 8.768694932854068, 11.748233420890845, 3.0220269054146627, 12.314575905620686, 7.7412369660780165, 2.7212337907596202, 32.323021255157826, 8.77977075759361, 4.199441672306571, 3.8694962249845566, 4.908385849540951, 26.627471231949585, 4.2779820306351155, 3.2111521622475743, 2.93941610223386, 5.834067813258773, 3.02840570761429, 3.337008425371714, 6.089532726051029, 5.267391728592215, 3.3147449257747397, 11.312665728170472, 3.7814570701607275, 3.14481391032662, 10.251703141264198, 6.981838207498235, 2.5282317717572456, 8.541775769864119, 12.947803211925299, 6.143349884066362, 6.537964088778187, 6.948005371483575, 16.63626082980025, 3.435951785339317, 2.8712484689546924, 6.239240797721478, 16.919292660129674, 3.7487880216132634, 11.47997354864655, 3.841181684227836, 4.1667809810295715, 6.10816242161825, 3.1418258463852258, 11.847609398925234, 17.113434519169374, 11.316246570887936, 3.4675891009267685, 11.79775105935348, 3.454214115207459, 3.3495854270479493, 3.1736059264182446, 10.662049643380787, 8.153771469436354, 10.97242648071195, 6.470640538526658, 10.938985303865183, 6.5134863057872, 18.329788930714695, 14.423011246732491, 15.110663529544803, 13.08282729674499, 6.249516961585935, 6.954885647360961, 8.833565532601668, 5.9129121335970325, 4.853733978318508, 4.4080604492642745, 3.2046726748796277, 12.90289887904601, 9.28261209723613, 3.78090045048421, 3.1169538218687496, 9.105657279785227, 3.189584759992523, 8.317189598703441, 3.1634327082930085, 5.4535757489364975, 9.487190009291478, 12.098761812802575, 6.746458974671802, 9.63370982235434, 2.68090991543549, 3.103630053221105, 7.616825058043971, 3.81591544940132, 2.8580698680509555, 3.847798414512371, 12.329452003027681, 4.176800932522957, 3.2239507667294687, 8.83405412659126, 3.4619701683015576, 3.3240456094728685, 2.6906721932482935, 3.0956890486735653, 3.565180873132627, 9.645360267753663, 8.582749277021893, 2.9411936398276923, 15.365532794784889, 11.422789280453781, 3.8589905360636583, 4.31069634984565, 6.173335666478685, 3.6317746417205976, 6.210930669706695, 3.97058185298592, 3.989062629574282, 6.125354388270028, 6.67840603840011, 6.740244238931369, 6.532484481335799, 4.596461412671968, 3.4002378977345815, 4.74297211447098, 4.146028510094519, 8.173434082198213, 8.243348969012814, 10.392053585195313, 7.505163936773868, 3.24320458198547, 2.8366565654315306, 3.249364964037114, 8.094009658523907, 4.692907613995269, 3.5185863636482857, 4.782293185636442, 3.806414821377866, 6.368961987821404, 6.870128216260293, 3.475565465537118, 2.6293732486104155, 7.259139548409313, 5.838232886466205, 8.83403421344822, 6.180139614891342, 2.7461204394578145, 7.940767399007096, 9.439041575606144, 3.0813200912191387, 4.340731721238134, 3.16613282304892, 4.635028920460425, 5.339179550994468, 2.8686300323230736, 2.310757985280599, 5.765749172074822, 6.625156560824448, 2.971371039515282, 13.768595101234078, 3.8314552877995522, 7.110224805116724, 3.316571194570368, 4.064796045418759, 5.248816267523681, 2.8257142410479665, 8.739077388200167, 3.3010544996829316, 5.026780458548616, 11.469706272805082, 2.934752651973694, 3.4925293046905894, 9.741855234634889, 9.89977614817935, 6.882497019573544, 2.710482646844229, 3.234143884585062, 2.9697220356657383, 15.616970440787561, 4.286387804732634, 12.332377628291152, 5.372334509862359, 3.5309060752150057, 8.566595863453857, 2.9670456992690344, 7.48383481825686, 10.731662603709488, 6.562432978837528, 4.930748278927825, 4.481392844594389, 2.8948690668175927, 7.514972335675699, 6.939903081255578, 2.9235842813692354, 4.37495676868328, 3.3476528899105045, 7.729564445370869, 5.4092233124388684, 2.656964806945369, 2.753495120426346, 2.854114015807356, 6.393186849954006, 9.508374749786928, 2.5781638583053748, 3.27913060812768, 3.306747642492932, 4.024715841492218, 10.141970280317125, 2.7245505581283074, 7.073759059993084, 11.032904402531186, 9.991313690043672, 6.4788290059686595, 2.774545202122762, 7.302775492792943, 11.203196116520866, 21.788653855281098, 6.821340531881564, 3.604705693334836, 3.8425908108644413, 3.5539238467316228, 9.743202609686081, 2.9125478452053093, 5.359517461451314, 2.8974260877630633, 5.483007128865724, 2.6498707411985984, 3.5634061613517085, 3.9426916543608934, 3.7556961489997067, 2.9542661374184136, 4.973992373144846, 3.402986601642142, 3.2374659324135826, 3.745668700867379, 3.4039479210565884, 4.549005747431144, 2.5779586557725884, 4.026860195636601, 2.5458763804587914, 2.4022013897172063, 4.7364913529935455, 2.4319501368514524, 3.1038380524003992, 3.2761307861892464, 4.569311685654947, 4.588557849519722, 4.430246920713556, 3.950205602940488, 4.219289891170871, 2.9663136332204285, 3.193803267825604, 3.171712215835531, 2.8753928023199395, 3.0946866684803167, 4.385903483574309, 5.474716769736863, 2.5275983111736844, 3.204133809549469, 3.318539576390068, 3.3025238391307434, 3.4366396674835875, 3.5147665102224774, 2.7245857733067678, 3.2064534440607755, 4.821999608507502, 2.5458402487003315, 3.805499571104497, 5.306227860206673, 2.9586495035582474, 3.491026989364559, 3.930358601689889, 4.980964195705094, 4.590332677240302, 2.5695528866449817, 4.071711385775342, 4.4886475158875765, 5.077700171043926, 4.272875785963069, 2.76337534002557, 3.296426008375256, 2.7970761939274014, 3.9584543864793758, 4.085783921327782, 5.231144817895711, 2.7418207344959855, 3.4370970650845725, 3.8154360667756952, 2.510778249641176, 4.364514278591729, 3.1503914732035754, 4.497653306528688, 2.9479127780784986, 3.629570917050479, 5.477285203461198, 3.524186472000716, 3.695638093617692, 3.5555093407381664, 2.713900697795487, 4.0693389357929215, 4.630053185695836, 2.2219712729464645, 2.357823044860596, 6.733996796397447, 4.6276076472684275, 6.608462640996836, 4.915931533077411, 5.918029830837385, 3.5087812199327466, 5.271936129402038, 4.942066300160518, 4.725552403582594, 3.3512898878789796, 3.1871061111723558, 6.0373188922880425, 2.896475254394395, 4.348559288054274, 3.458707802847591, 9.150032170504558, 6.001004664184934, 7.112223424171946, 7.012822004056657, 2.491174061500504, 2.7778463827341047, 2.2718878641383466, 5.933510298607318, 3.154244371802385, 6.209925323984385, 3.0443526197830377, 4.038680196952859, 3.6752110124258857, 6.392568105834134, 6.233446668030269, 6.284765743628046, 5.843723757846508, 5.13642095506886, 6.353049227918837, 5.327912694427844, 4.131607877695616, 7.068679552404195, 2.981369282500801, 8.83058108408646, 7.852041207808591, 3.00132003154218, 4.917168882697923, 4.655191772405727, 4.498655333308491, 5.120108049308959, 10.12323854597177, 2.3147012967722285, 7.054952289382355, 6.533182477844971, 4.651339752955774, 2.833520233714299, 2.543180510291933, 2.611330963432612, 6.597230979314109, 3.4791771605401665, 4.780276138639942, 6.628583065918901, 3.016739533239286, 4.1293664921645545, 3.7439692841326218, 4.3778649582965805, 3.4215024987273357, 5.134752510107687, 2.8417479806581687, 5.281138567397937, 5.580820736026303, 3.444944135879771, 4.822737491928847, 4.508933155522002, 5.976388045599443, 3.3229777503967326, 3.471385854371431, 5.864003445640509, 2.7028589762576076, 3.4150209301118903, 6.236766974689207, 4.029056396470635, 8.302408725339392, 5.226774263762397, 2.6535792466609167, 3.843210520579256, 3.454472843064587, 8.136934172987123, 5.196783326176446, 6.844727665752878, 5.099163567911075, 4.5971315421608265, 3.949303810093251, 6.221611003985619, 4.311730721666757, 4.474623649290966, 4.393752800806453, 4.9103095656686655, 3.040467684668115, 4.509505207279561, 11.86660807940033, 6.8850595025101, 3.7337107178362587, 4.714672461041917, 6.142379489744473, 3.725339272215684, 3.9113000981149475, 6.718013961903953, 5.7240757546622465, 3.1771841919336596, 5.052956157658125, 2.753571743973874, 3.2948400467353602, 3.3624902588592986, 2.963893773225552, 3.992047490503091, 3.9572826895906283, 4.5906341947465785, 3.3599669653011217, 7.852283358497859, 8.369233596224385, 3.5419782369264277, 3.529137104835186, 4.436806848104107, 9.195359810767101, 5.6250838612361385, 5.840831313142985, 3.9177434997372704, 4.865710199706222, 3.7696179735568327, 7.9451795595550605, 4.225910548411743, 7.145059523324655, 3.7060232464455956, 3.4077079608805216, 2.8895547557781938, 9.000483536540223, 3.146034517760889, 6.761569665866704, 4.29745072352747, 8.011816257216369, 9.780936788153447, 4.3427036419225065, 4.798716909596118, 8.197943535594243, 2.75003004416377, 8.584675987608549, 7.993848769609294, 3.2419189733092644, 15.480618971402489, 10.864625065131467, 3.7106162563450207, 2.780042310047095, 5.3455067368763, 4.776331157494311, 14.576766967702065, 2.2975625093793037, 6.398423924201774, 9.992624798321707, 3.518281020355727, 2.7630392179495065, 2.7069622080347058, 4.279853448534321, 3.119354692315771, 6.028151775309522, 8.918007625670402, 4.8005513993624005, 5.342523953107943, 8.771729089198782, 8.274633674192046, 10.58320663272648, 7.906115100268729, 15.913348280083978, 3.326599706549285, 8.431417644236987, 2.8530985458527107, 5.260753456502823, 12.233969334703763, 5.38917905876043, 2.8373710157956573, 5.148789657071421, 3.914300104980317, 8.54505668521302, 5.787340909796755, 6.3952307536735535, 3.5949056950182285, 7.345214670871336, 8.186275964223443, 7.871978893739808, 15.753200622160454, 4.453218369081413, 6.21218847044207, 8.158341239488122, 3.0202008647524097, 10.798401845139196, 4.548276804078653, 19.777755218434653, 3.5552184892956986, 3.51472714374183, 10.008565811929287, 6.980498201724265, 7.040189431037105, 8.07894097888214, 3.1503154851606796, 3.456034065035301, 7.060844004817075, 8.479438523629002, 8.258529363509146, 6.6595347232727296, 5.041993055339783, 5.234447597895502, 7.610534141512141, 10.599251503169137, 3.947518948924496, 3.765652160405734, 4.051651434032456, 3.9759575558462545, 3.741073604808266, 4.01126711095678, 9.72426028681695, 3.8369073164846874, 3.3451986125120654, 6.513055509551605, 9.225976462026289, 11.851561712853684, 6.845461642674336, 9.09610670954151, 11.296355834519472, 4.117196258137658, 3.540871829384796, 2.5351185082288286, 6.5879989849802145, 15.234149571865435, 16.762700419810358, 6.659269654719194, 8.484629187350476, 7.060457529269347, 3.9837996853901134, 3.760363842986534, 3.215953145756947, 6.2292554413125965, 7.872326897846188, 5.568947645364061, 3.7843425119088514, 11.055563227567157, 14.395628434321189, 4.088354303905632, 11.397871308251476, 3.8248465253809343, 2.6785594334412606, 5.049917690379801, 17.045243695375728, 10.330629381758088, 14.133139366496216, 5.1013696511535045, 4.483279817159895, 8.48629281491424, 4.972343706007779, 9.586594093734396, 6.719865684085359, 10.459158544744387, 3.791317079622661, 7.408866146171703, 7.64208294960564, 2.486122566393942, 3.3892187692970195, 4.436966273859748, 10.404335072225761, 8.045111647249186, 3.7780933135686867, 2.9748920465705915, 4.1343863033428745, 3.3255298633389443, 2.8903003214322087, 7.918804144801008, 9.434980969483162, 7.031075550817116, 6.471771895426674, 9.61762812734874, 7.557908985610414, 3.552913393785256, 11.139384871905241, 4.615393258750789, 8.036444468669309, 3.539159414251598, 4.223902662617979, 5.2109492417195655, 2.6652797247622844, 14.482932203072876, 3.6344847758551806, 10.652044920284427, 4.915663291414804, 7.346788761817392, 2.7772202013441802, 12.765151257046577, 9.913670016040326, 4.000663873719735, 18.045618038685454, 9.433748382500326, 12.550639804785902, 7.202600658778104, 12.125544175228757, 69.40621988651097, 7.945595551301894, 4.33662577617013, 8.374356534020723, 9.431437293245958, 19.17262614274489, 7.683303469994548, 5.705071625206319, 6.422963062021328, 5.422169216862193, 9.293033274411675, 4.378057580282043, 2.782322972956837, 10.761367858017952, 5.834402963960392, 6.591798639655348, 6.9187220198537815, 8.489287801376545, 4.045815785987955, 11.093949270974738, 8.986450011859311, 10.482522438791532, 10.071069850871362, 2.896497380825058, 2.7748680144792566, 12.868637903243606, 6.687844559145245, 9.854020257811149, 13.680904996185319, 3.493246222396169, 3.4603359051750897, 4.868925276273035, 8.308428918673153, 6.940917162656831, 10.990258486943763, 8.958790935218916, 3.636007213139032, 9.92513469304043, 4.101105423610124, 8.842641306533515, 6.22919612983293, 4.1717542058163035, 3.2043357999847597, 9.844706295679416, 4.96981499683285, 3.454933742607128, 5.561045407640096, 2.4153250254389618, 10.087195439421935, 3.6213570312278667, 6.956506186925066, 12.06823399408778, 10.208802180993493, 2.452465461557321, 4.326743960323372, 6.69402269093276, 5.304195931422371, 6.354439315110408, 8.914902544566747, 7.618153084761189, 4.503241211401265, 3.956223590340833, 6.7558210627053095, 3.7728005027047797, 2.5007944553687023, 9.522371082990885, 5.7466170851357505, 10.913341370274031, 24.145518915090875, 8.092342177342617, 4.605660642007018, 8.515292086854492, 2.9462610577195565, 4.862786348220753, 9.343670233411725, 7.614500418996341, 10.082717768169653, 7.401185214186286, 7.138843576387882, 5.503573075704798, 4.049485396589796, 6.344210800123616, 9.183389643960592, 3.4780953662692955, 4.762585659332422, 12.701573436682475, 5.232177695567803, 8.391008995104707, 8.30639311663039, 6.504438248421349, 11.3737966488065, 9.868554356407259, 10.60266780421949, 11.20234619833793, 7.846548799263554, 6.177492059240337, 16.82623480750831, 8.655539302200902, 3.1918643678413643, 6.763217182281936, 5.68589894918841, 10.471619026500106, 7.332602183260109, 3.3763024928821306, 11.265656845127642, 23.677169868419103, 3.1982330857776904, 6.981634413568953, 9.423558572453302, 9.209100531330977, 6.379925064768182, 5.428747523717074, 17.31555851104267, 3.3992639395317283, 3.6277674918591845, 3.606837307887106, 7.418824348625899, 13.811302717311746, 7.963431925989242, 12.980440791979463, 4.3157307647105485, 5.754948324684089, 7.448153765568166, 9.945148313529758, 14.498095123753844, 4.523151790861303, 2.7383275550592914, 5.870949215499171, 13.333984114202655, 5.595860640054436, 9.47804711411935, 9.006366238946207, 2.6328309755915256, 5.807423145184898, 10.214434302568343, 7.259123915877021, 6.8013431659009855, 3.894632717862479, 6.640199286125081, 5.594605143006481, 9.716848380292843, 3.192100654578742, 6.576648014729192, 3.356282521512613, 5.308077017910255, 10.280441454548503, 4.05539190798856, 11.194535195617949, 10.704805094124142, 3.2815740349609124, 7.304175930336814, 6.683263152647184, 5.376591269460988, 2.9261657003748542, 4.917664612433133, 8.467955094069493, 2.911215964418374, 19.306658538642886, 5.267493158606124, 9.77546115648566, 6.855998004960082, 6.478046175594243, 5.981059364484054, 3.1905893785730606, 5.1251517603681345, 3.1263747621875204, 7.560823314027093, 9.779460859716025, 6.223244004264856, 3.3464900687554966, 5.138126746169451, 6.726775932313343, 11.127729016200819, 7.0457333792825665, 3.392952260700182, 4.015436305762317, 8.6981440330687, 7.7070817613517075, 8.234765195126572, 7.94888628417559, 3.8359266279925337, 3.6431664619839323, 4.100109922890538, 5.735271974454976, 3.133486133669373, 8.361418812148575, 8.2273194977295, 6.741340271838544, 4.451830772608524, 4.742362754382715, 3.250934027764885, 2.8624736062031118, 2.612646861762202, 6.270764282633625, 6.376107174712151, 6.868616598005021, 8.463131024067598, 3.436693912898385, 5.839249374206836, 5.097523191772154, 3.6020147954008266, 10.62385900837205, 3.0233783072932785, 3.4526477999668437, 5.4144630459805, 3.0420556461559762, 2.687961809001836, 5.465262815547357, 8.838600369220615, 5.108600312493304, 10.316509777210536, 3.8575094609160963, 7.607226845910035, 5.834144801869596, 9.711721212254, 13.34615432247575, 10.259568133508791, 3.260881581364904, 5.126955889325999, 6.9784360949568764, 9.025038110921043, 8.598579743549285, 4.78329492826795, 9.571349136910575, 6.9723568972481225, 3.9248597827045026, 8.580725005677632, 9.393146892136427, 4.634023953442841, 5.8194088663364045, 4.419379971011358, 2.978965131752837, 3.5528024513621967, 3.1178252085437266, 4.263046048243909, 6.296653856927598, 4.129116957976185, 3.8502731408741373, 12.760170081512612, 2.732703429308401, 10.061198789538496, 2.405282773992663, 2.7256390018499195, 3.37091452671283, 5.761063769693531, 3.474877181341543, 3.0341669459697522, 11.61648959195294, 2.930911463233315, 4.769848619863011, 3.198088133961724, 5.289868380411791, 8.426872089095026, 3.365975064996236, 6.132164729775739, 5.729108636653296, 9.81381753516471, 12.083234344015453, 17.855259875872267, 5.395370329660705, 4.379569102905852, 6.871600188500432, 5.634298327239914, 6.307123284687228, 4.332951860739591, 9.556150570033132, 5.642166274005952, 2.67035741059052, 5.001399649208594, 3.794044018678026, 4.19543026546402, 5.367885001138204, 3.064028142400654, 2.8591366729155383, 7.2721728605019305, 3.338101757171174, 7.478828990375882, 10.094073719997112, 10.834676347496181, 4.243414341915717, 3.6915311930052654, 5.248827793341667, 4.462572705621293, 3.3702426015205487, 8.0715380294763, 7.811404347257492, 4.291854906870521, 3.7968143622629507, 3.1414243406423186, 3.6270767712358323, 2.758688904423007, 4.1382499524295016, 3.4948927238547824, 6.256497700976598, 11.116055954407326, 7.565042306353551, 4.747166755243036, 2.6723127102588187, 5.034442217869085, 2.587513278144093, 3.3276813654716926, 8.107318817223168, 12.543431244252435, 4.408597678412867, 7.238925152292362, 8.384660150133959, 9.053450488463097, 2.732512530181657, 9.837291263948776, 8.229442697560854, 8.304534098099438, 3.2854237453090698, 6.546968340021502, 2.8884288291683484, 3.3109944899748696, 2.4464592732642054, 3.569503163694193, 4.250679302324561, 19.101575771181654, 10.218398849599623, 5.051364643941507, 3.4242779508822117, 11.665260848767858, 2.9899673770496262, 9.098179346979023, 8.91883431348333, 2.608063615211925, 2.7682129023347772, 4.4372620436746715, 9.14786856405227, 3.754445865197127, 6.556567526543189, 3.057877249521567, 3.6216802950905844, 4.609718741249372, 2.2609878065170976, 4.539609505379771, 7.561076707349678, 3.1829792345826653, 4.241474976959678, 3.9806061767795864, 2.6761859736313935, 21.272720327769953, 15.26359038809462, 9.736576661540047, 5.8815727053170015, 7.959086202352558, 7.358304205872768, 3.6159983234537667, 2.730592881241953, 8.787074899957078, 3.0853953900184874, 2.909184003433104, 5.463749012951497, 2.6033884115307546, 4.882423765400689, 6.2027964284917365, 12.612105734094108, 8.846564485833431, 8.922672964059407, 3.1465308330377373, 9.495729993971445, 2.71497645518945, 9.645634824017362, 4.410968777298628, 2.697273196935654, 8.035806693732772, 6.34887394138775, 5.459707097555756, 3.3749835739575995, 7.471522984734227, 4.042816649107801, 3.399346055308048, 6.882610281579413, 6.436453947958659, 7.356952493870505, 2.9070969284591293, 12.941245990319132, 6.403683102791085, 11.464815508542772, 9.464116874664294, 2.939860318670972, 8.369528250415122, 8.965604728702754, 9.591620668235716, 7.6888887987621, 7.913104001969909, 6.017083855371941, 12.296231315379398, 9.548505160218886, 6.442744238532019, 3.5183413368654, 7.554042835842973, 2.6762441231772858, 2.8446091288363644, 3.097793859631168, 5.282160582273106, 2.870271691420533, 3.8344948894906437, 7.592456699174579, 9.093866631162351, 7.760592147732108, 10.449269886953209, 4.351190247469586, 62.42473698418923, 20.26837075830583, 24.893098732190307, 4.087966175707642, 11.24764684113481, 7.544003443369242, 9.877716627208509, 6.244230053737912, 5.711082345951361, 9.290210573514303, 7.496588084478022, 3.068071455987902, 3.6504139033020655, 3.9250041479468543, 6.2446758584810755, 5.963411024891126, 8.24201674335486, 3.621209873171199, 4.905758440522071, 3.753302398051762, 6.216589521548714, 5.433939510684843, 6.641767559390175, 8.155340875265557, 10.555533790441016, 14.281616209049039, 3.270833011893416, 10.725132457683598, 12.770644766075069, 4.467413247590116, 8.046278385861594, 5.2596229360089675, 4.1036032415313395, 6.427012128460044, 4.529381124377534, 4.906947543377637, 4.989941339523857, 4.039703675288276, 6.491185021946983, 7.8992354343541145, 3.470049238729166, 8.139193387890328, 7.557312829785853, 6.081181334216501, 3.054399962032044, 6.405357667489257, 17.10194967882872, 11.828661971760427, 13.922605175948608, 7.925303863859081, 5.4889987102814475, 16.35507469501691, 9.794847141319526, 5.168115404446339, 8.99407305610196, 5.836050079656802, 10.566781999665015, 7.965998606031703, 3.6358187016726395, 3.9404736753024157, 13.128353149793728, 2.8978576811611263, 5.907513823088584, 7.472867913713091, 7.517261199037275, 3.2973248445968903, 10.230885173885156, 14.83554512923529, 4.524425685022157, 5.569274198920983, 2.907983238784184, 2.772886012594146, 9.720507262382945, 10.371753709267537, 7.766784866261043, 9.403847866686753, 3.948706603277769, 6.909276968590676, 4.816441286243502, 4.127241032274742, 12.622531636976294, 8.219704612077388, 7.813855995475295, 10.195668920039077, 6.415933917517526, 10.254404519625991, 4.905730777503581, 11.99905483161574, 12.211297514976993, 14.201960382855694, 8.648300590438216, 6.315807198496669, 7.645563515587746, 11.424991413616873, 2.5153456748652094, 3.6837884732170023, 7.778137631075169, 3.5035973731186583, 8.227838622831275, 5.732620364084407, 5.725958684055178, 5.1269693037275195, 4.233524805917716, 2.940988707944999, 8.80417958118527, 3.8832284089469753, 3.9643366960116793, 6.364302358391394, 4.530186180361371, 12.660185901629372, 3.142547164280716, 4.912436098694866, 7.3558519823586135, 6.3782568906707695, 10.299812446339825, 10.415806863483718, 8.28140097738861, 14.316315629010068, 7.711892407240071, 12.60073915202982, 3.354395543234725, 6.1169766736857945, 4.723274602039476, 3.4628087600911313, 4.194679951259055, 9.547762145614012, 7.707347274383712, 4.609055296233584, 9.492414503277123, 3.485140221224046, 6.4236747797606295, 3.319769248276306, 11.014351985038072, 3.8131595636906077, 2.670034385678234, 5.610134833487342, 5.890147063188126, 8.063360482191454, 7.5080921638705, 6.852224559206349, 10.517137124260147, 7.429515747016211, 3.821653593934285, 16.55636368435002, 6.2850950123072264, 4.609487229807522, 3.1607418613950746, 4.9424619678043635, 5.023862876298015, 13.79297277084731, 4.3328229558029525, 12.457529051905624, 4.567924965811212, 5.713019127403408, 12.445394961855337, 4.0543967065786015, 7.014529491913476, 2.8519754239801736, 11.142315144810176, 4.348445574082739, 7.086319981847269, 6.503480059781713, 12.558687028656731, 6.885204626294971, 8.079249137995177, 10.32163498319444, 9.401861306283477, 3.133473005213718, 3.365602798150325, 10.115976375949801, 4.179401956275537, 3.419623183701203, 4.154738508472091, 4.737299930914469, 4.750850345144184, 6.4836665446725785, 4.214243393956397, 23.603670162485262, 25.06577421545046, 5.092810153535034, 3.211293780530762, 5.108777795285954, 23.30597542359882, 20.93748851602932, 9.114481601134326, 31.45453345600863, 15.80512147335522, 7.7878372445865764, 27.26961932552034, 30.231739104947167, 5.925220266098691, 18.238932954705597, 27.757671670204306, 4.792031448379486, 8.668627397824624, 11.681060673536313, 25.60403939430675, 7.853519069809089, 35.49863915934936, 26.48716468135795, 8.500279824264899, 6.040265560332117, 40.780527029805704, 29.566856241268717, 15.344444871450225, 7.113832411563521, 23.362889333856767, 16.971355508709077, 22.09049085071717, 18.210454416304703, 22.491342166386982, 12.683778238641603, 19.506470218940517, 4.928784316574412, 4.866335335592846, 35.639573756406186, 35.48203983783229, 23.70797720403428, 25.313153321072935, 25.475627457917867, 3.4992497627730734, 26.015218682294908, 6.927630306836228, 13.889063936494907, 25.56597821161504, 4.536332439147457, 18.966223536778237, 4.270757813849561, 3.374100504905042, 16.044435552678397, 10.41969218351244, 25.43673426202235, 19.504487099950573, 8.033499523032615, 19.382118367700084, 12.035223828454832, 8.288977628856797, 15.041582403451104, 11.167206049299702, 32.70270411282869, 14.639112740041625, 11.491847665714769, 20.468559010362004, 5.0106375776971275, 6.334039525757115, 13.028264327613437, 12.492600263135266, 5.553311893612749, 23.616350906368996, 16.935415904127456, 5.666771036392052, 14.503526224363315, 3.2346545431125318, 4.956685022626517, 13.717172788491299, 24.32545294949389, 3.677780025374699, 16.07843196155679, 9.477164338065732, 7.242083076064344, 19.01504066546954, 5.036116347117814, 20.361897482537255, 18.44454319493998, 18.328550445756168, 7.144091806041291, 16.15701557434713, 13.739111640277727, 5.302989555105154, 22.497076128228983, 19.286850700168554, 5.7602130333561785, 33.16847807468558, 5.462340360465199, 3.421816124563045, 10.759700438867357, 16.916605268655424, 8.823423932633395, 6.14716854787721, 19.859290541347054, 5.378195063976498, 4.067469205841431, 5.055340698576991, 24.112888118121695, 12.610417278296477, 15.918413721169365, 17.357651810119417, 4.904009064251259, 9.92802257706025, 9.753916588985367, 7.670033033163966, 3.5394657521418917, 4.72504973856521, 2.5200245832277255, 10.570810920930093, 9.181746204702597, 6.648724714625449, 5.149952727582681, 3.011498904431073, 8.10034338523783, 6.809766419919266, 12.41957216399514, 6.691863592455497, 4.790488826617804, 9.429836668910278, 6.266917685861969, 2.8761744776975906, 4.221351658316407, 3.859495134171904, 4.908223447442345, 5.8014594064580765, 17.104972062048063, 7.523406620591621, 4.572987408560388, 9.937769281210699, 11.61080343926858, 2.7431710045344775, 2.8315861483268483, 17.74641863221839, 6.776476223224308, 8.839965310496927, 5.619837739832977, 5.931702385504278, 16.42507915712642, 15.784669907764474, 16.807102144789262, 14.073468752509108, 3.2685770170371473, 6.586194763413018, 4.661607237517934, 12.074458102149984, 3.8366338061438605, 24.003189259604053, 19.676793867296524, 11.78987125477215, 10.688969324672152, 16.56252185109432, 14.683104130593897, 23.36591195197453, 20.63370191484711, 10.957175687400806, 3.8934217491619747, 25.110813362484233, 15.566929909756906, 13.371483573765406, 7.459887438175867, 4.962585380795973, 12.854403234492704, 4.134849559936914, 17.628449242218682, 6.061320007052886, 17.938216951295747, 3.5393548154831524, 10.059449040194817, 10.782313701989148, 17.265354339774383, 7.661851990281822, 10.160159562674469, 12.712283019647156, 17.184556911873006, 15.424481874717703, 7.036886642346759, 4.730937332534583, 17.786156435608834, 18.173552799475335, 27.319258529915412, 8.846180243610782, 2.93469371860529, 5.570008222870367, 7.007473292039789, 12.445698302535705, 4.004067278002464, 15.552827242164003, 11.088004950526193, 4.573463647590492, 3.5561691980022183, 5.3900290154395405, 14.95706631383666, 13.945235002669094, 3.419318933718152, 20.581705446844083, 4.520242178290521, 7.755729931266848, 4.144279090598843, 8.479958651001517, 5.963722509615106, 3.6869173878691504, 16.137477817385687, 4.2380232214987945, 8.303129153805145, 15.573068211919056, 4.65879198201313, 7.216176411903633, 11.68433666153252, 5.218950607968452, 11.67611306245701, 10.362056187514533, 3.4847640977044327, 14.590691848113991, 20.659876516282967, 16.051958538225776, 7.906152596204103, 26.507449978606715, 8.755085933512014, 7.733942820169339, 19.270034982059634, 13.517041235510574, 2.7099903278350848, 8.327167469587858, 6.06188537618116, 2.998847990699676, 7.752769713114262, 9.766503082662297, 8.864035901435656, 12.261915076799095, 5.840477990237241, 4.8562911397385475, 4.693858302504964, 5.689683011111911, 8.552141127466617, 3.554604176515287, 9.068577838060904, 10.22888270065337, 5.701813014973421, 12.294999840479862, 9.402261073332973, 6.66320488258684, 3.501850790486774, 14.00848326710189, 4.18576769238792, 10.113650258790003, 3.140826557628686, 5.249793777518894, 7.498993440496085, 14.293992173879854, 12.27588955476222, 12.98465696512233, 8.867336025251339, 3.325065702062469, 3.2015488853498595, 9.237806341601239, 3.6749148358983503, 7.755477849367162, 3.2019958340978976, 78.31466853514422, 4.725537776358904, 2.984701073131662, 7.335955975370707, 5.137031834490448, 7.541416429966384, 6.280937931242514, 2.518242092043728, 2.808815832947556, 2.952776013173919, 2.6629687351254057, 3.789295510604862, 2.387739439666624, 3.8442785311848944, 5.804197995508188, 7.506097802365157, 7.790910343423852, 2.745315763474263, 3.593721591710844, 6.2041924184751895, 3.7243838302967363, 6.35681556582193, 4.376077895858556, 6.072908590985342, 4.493910707236595, 4.156791034313386, 3.114989053155817, 3.9295553171249873, 3.842757722823905, 6.545311055571213, 4.4992287698093305, 11.357949004106507, 5.280399953865332, 15.682695356416318, 9.349673123126454, 8.096920936908603, 11.060520478750172, 3.2441294063854706, 13.671670330041897, 7.772205741332084, 3.5563421392020036, 4.694892258291029, 5.725610153180432, 10.281267377669145, 5.495086453285134, 10.14548066704718, 5.6895981748158455, 7.8208895186311205, 3.488490204091315, 6.723646007776275, 3.044939299347959, 7.359218992991523, 5.284525813505364, 6.988161776392334, 8.796562039521794, 3.4954582325154027, 9.025046995993776, 11.62960151798794, 3.7630718795536953, 8.283115000316581, 3.034735094189545, 3.3449925859290253, 16.892535294782522, 6.2754765024640395, 4.897687208507159, 3.1597092092501655, 3.3222533800737732, 4.404669102639694, 18.696780440818113, 8.261358719430392, 8.895480145654732, 8.830249824011393, 2.9980773894926487, 12.506220313530783, 9.326893163067686, 5.828152542692463, 3.127370056463749, 3.150098842874453, 13.667283472656298, 4.240221393231623, 6.884050942881361, 3.395433946588108, 7.2297294919762205, 72.45527761127761, 6.352635773415774, 9.523572709033218, 4.3183873488232285, 3.222951074973684, 6.821592530131555, 10.883714595616881, 2.4946444942226673, 5.847267490498121, 4.881892934728466, 3.7111489740794013, 3.011378624642537, 7.710547871399483, 3.325105761656844, 8.005683435601897, 3.279964056955173, 7.19067424016186, 2.779170440114459, 3.99509116444505, 3.075480392807824, 8.796348144126279, 3.0280129421628836, 4.752575700765846, 4.0885056052145945, 8.17835715560111, 2.7589354064822746, 3.752118914709753, 8.684306811854082, 10.14354045905031, 3.4477220922572593, 3.50388959525972, 8.420876353018059, 4.866230315539222, 2.769754108134926, 3.341485378519159, 14.179048218430303, 7.090802171054747, 3.042929752682792, 3.0718011240219036, 15.066214624611177, 3.121677473495626, 5.841156385469081, 6.747730353014408, 13.980688790373494, 2.617043869138945, 8.20081014559246, 6.95721665683652, 6.610057868336746, 8.798734435631737, 2.5856663689884862, 8.484798194924299, 5.940039420734551, 9.283867557004108, 7.342554989188685, 2.828335944319321, 3.225049522565966, 6.0605999954588725, 2.7113558819299026, 3.8582176664753858, 2.9948416662089676, 3.789640801218099, 7.271154498535708, 8.282344865750389, 3.1089310676724944, 5.2158325877680705, 7.117247593918364, 4.393044846101411, 3.436265440009971, 4.056273521866954, 2.803246738252281, 3.937245549518258, 3.5101221356122356, 5.327968722869963, 4.281896314830853, 5.474485239190822, 9.008508905310048, 2.5044033982872986, 7.1603881278398775, 2.9008088896113287, 3.317359919089824, 15.198309749042098, 10.096013663263449, 4.762715150756756, 9.006409668035143, 10.691292589907881, 5.569028240665563, 2.642276123339309, 3.0069284860035133, 10.762740347958253, 6.814380096402115, 8.351027907946, 6.705801381542128, 6.179900763287593, 4.876710930707644, 3.7650134003868345, 3.4505679818972324, 3.2155558664573203, 3.3727822178171865, 8.099526664984273, 4.082082524789694, 11.6607467783333, 2.660151376719733, 6.796049304832361, 9.548899722752966, 8.580256093795011, 3.0342769487240053, 7.980916102806449, 3.002957209201671, 12.740531542697815, 2.8330282805776035, 13.32502383214231, 7.839629292486219, 6.20037888695634, 3.5731572853117797, 2.165350165828214, 8.09594014765192, 5.474192616187835, 3.2663315855392803, 5.299500793730082, 11.253409989861126, 6.057091490494059, 5.708898301921334, 10.80334754313427, 6.1736356486096, 6.259070248058076, 7.244124620158739, 8.126062254684888, 3.1175779679825775, 5.199611950814286, 3.5834086895113595, 3.975499038618381, 2.431022845842531, 2.832347892910111, 2.5904295842601917, 6.304628396887701, 4.453632799615918, 3.0321644275648083, 3.360133870557426, 3.9145910451658157, 3.9123022547499047, 3.90425182879196, 4.475177481352737, 3.254767961523986, 4.549607044596316, 3.119131387651847, 5.164516179694727, 2.7380557045222007, 4.745593113902145, 3.5981849691901675, 2.540794693992294, 3.8931494100845088, 3.2002641944678207, 2.114881126132094, 2.986128798299466, 4.185252884877404, 3.1990925684992924, 3.3227902413460004, 3.950335298392781, 4.738799617965852, 3.6623099610511143, 4.983141498229379, 2.4016464809906957, 3.6719380764732086, 3.76971617551063, 3.9956053274366905, 4.503939846814886, 5.317887190017741, 5.138340685609925, 2.4088073116109836, 3.087433731074019, 3.1967293496595772, 5.620169244230272, 2.8100609800448675, 4.2319643657184285, 4.031592511160726, 4.837622475466087, 4.461750686014145, 3.9522499093606003, 3.141501327194486, 4.205153609043823, 3.735474016360876, 3.8140651296132377, 4.510440338491015, 4.729736920026572, 3.0801894984370874, 4.962974938220056, 4.417065756450517, 4.802253279649531, 5.493866854753569, 3.021067668629836, 3.1910177109348585, 3.750622401064183, 3.3538173836417293, 3.8461907586859745, 3.682263971366994, 2.619918859414901, 3.1188190892369207, 3.3480036262834116, 3.5787026377097946, 3.334802041468408, 3.0874453680704668, 4.8880338197270925, 5.523356262014126, 4.477752922434904, 3.160894961087213, 2.961684187364248, 3.9814771245859446, 3.370044366075515, 4.5916326823642954, 4.57413601271131, 3.6213783422049106, 4.057694360785521, 3.7683415490308403, 4.818307951395422, 5.313952965925091, 4.98841452342254, 4.897510370775692, 2.913219062293421, 3.9705808672344722, 5.400887331496428, 3.627572093657984, 5.33251952007603, 3.4157497896748987, 6.621518166072423, 2.5486699232328904, 4.0826959676277195, 5.804139280733203, 4.848757132655042, 3.000402636658858, 6.521875146469529, 3.350912244194105, 4.815242752333571, 3.361449241112279, 5.978474167120574, 3.579972517684353, 7.065004574913586, 2.305354550233301, 2.901488385533886, 5.956679954205273, 3.049310186454003, 6.008103411661481, 4.8974787025835935, 3.266222900197226, 5.012542404003901, 2.94622989063427, 6.112876313664472, 3.2800601651604695, 3.536170060074323, 5.620940747361812, 5.107534147620061, 3.3965069079490773, 5.111124779294664, 2.935547169748344, 3.4858377063621977, 7.129949973229582, 2.9124715333847595, 4.66816997158475, 4.446160814727338, 5.434336972694468, 2.52071627675286, 6.116504887104728, 3.46370778898375, 5.4333378537831845, 4.071730110175219, 3.3341107563276107, 8.331774126858162, 6.172664496225333, 2.7990781196877483, 5.185296099906026, 5.100009806513886, 6.2048534283538785, 4.7932894057029385, 2.6225851902750064, 2.862706368982609, 3.2095895013110654, 4.184119328323392, 5.6056755942236185, 5.826372440852299, 5.144865695581286, 7.215823985583835, 4.983948523630836, 4.682783264129746, 2.4291738657669746, 2.8831256727163357, 6.357803527828494, 2.869515306463309, 5.198718245262075, 3.7485983283821054, 5.353824442796343, 3.636823575774076, 6.018408057582215, 3.4362127098995776, 2.7842965659690724, 4.762111642329841, 6.327063631357018, 3.393532494721483, 5.2221203535191405, 3.463179332015636, 4.4732824233003505, 12.230647340718562, 5.416704716845567, 3.525387001142119, 3.7654293977671176, 7.230378699843347, 14.9769484135779, 4.41528621529365, 2.9540828917805575, 7.800143630803774, 4.155536164713296, 3.477529080015375, 3.1953795465327044, 13.159236446586013, 72.42136905960146, 7.294303297713899, 2.338229595872998, 5.856287599095775, 3.5002827670426737, 3.693286996010444, 9.11994790712805, 4.430895575210079, 8.451201390319945, 7.895471576444828, 3.404531249920161, 3.958762206886917, 6.878043560042313, 4.36936048034647, 4.9791307312917015, 5.056927725516309, 5.518527554509946, 7.992895700072447, 5.685274637879909, 5.214908169221887, 5.335044022588432, 6.974751091404433, 6.513947422293189, 4.149364184510574, 59.913477811272585, 3.1192211176143556, 3.5033017870782057, 4.303855222235558, 2.4722860917782095, 4.386617310960477, 3.448678311472612, 3.6874960903601597, 7.38621175398325, 2.8599024927695122, 6.4025293791516, 8.540866752263222, 3.1378565192570727, 2.584239721728216, 8.24720591477786, 7.0261334072173005, 5.69704117338125, 7.0714739371659965, 5.5836950232911535, 3.1022187026205565, 2.395620189646704, 6.840684358242129, 3.4954069929838427, 2.8062089291140806, 2.8992009200880187, 10.135091332249758, 6.785604290186372, 6.394991345148905, 8.235076021619795, 3.9128154481530877, 5.736817522181362, 2.981824845053735, 8.565563548025667, 19.23030100752064, 8.07316912476307, 11.783357142538872, 14.98427827521142, 8.369260165983716, 8.478820397789384, 91.41955970345445, 10.873259308126276, 11.421495347917219, 6.07032685102861, 6.391779198033769, 2.976381615160123, 9.844254716418522, 14.090284314278131, 7.328779177424368, 5.6317921041882855, 7.030507184390696, 13.038182353625357, 2.9835319639896793, 3.431163497543103, 6.657753725352227, 8.711548964895623, 8.261001409252112, 7.941555356350464, 6.055559582380187, 9.610861499235698, 37.128884708704824, 41.94303425797556, 36.83337220713409, 34.11432087806141, 19.934755314141857, 38.753893516805974, 22.37403508807192, 35.224064739029984, 37.10565286817419, 8.291939508324539, 9.081498587261322, 5.462994353838671, 7.026895207964657, 9.232625766974516, 8.628870673949624, 3.0287412646546064, 5.145871613226072, 5.974244289883629, 5.45033802175683, 12.610697631333172, 4.985509889544228, 3.589316739467397, 5.3342308581190485, 6.431665404485365, 8.907880240210238, 5.726347308023, 6.669741915743065, 3.354885482606106, 5.011515197466003, 11.232669074600693, 4.237330014266034, 2.3647620018137583, 3.787896221879851, 8.920340108040051, 3.080054680218667, 5.1217360478380956, 3.658941341134826, 6.157622279457984, 6.611042934986789, 9.445862227548345, 6.845269515012106, 3.145863112681814, 3.980565553692057, 4.071562061585721, 3.8497771510787135, 7.565667705085805, 4.074470008743615, 3.7120254662665473, 3.2490712363726235, 8.87161642011483, 3.1253105799269387, 9.397222977059906, 12.59697629920163, 2.8875808277443165, 3.258078102560032, 4.089914797702956, 3.3650250904478565, 10.613807635793728, 5.86450989012706, 8.975653873601383, 14.744751482710067, 10.07840930759299, 2.715617565424604, 4.303113347692894, 8.197779830439561, 9.65716830464314, 4.690600327676785, 7.831653489858048, 4.656992890442606, 12.746305481232115, 10.231115773458072, 12.785772834388553, 10.456340135599095, 5.964239189434251, 9.849148733167286, 6.447326127654019, 4.155047990202036, 19.395117317053607, 11.934923930319671, 12.660418397002143, 7.57160999174707, 6.120073149513895, 3.0158714184380715, 4.858681371356695, 6.710564774087786, 3.8843203091185483, 7.845952025014437, 9.570050836200831, 4.658659828818362, 3.674504757886083, 5.911730362675402, 6.125591853097851, 4.7668896912331284, 6.567842558713736, 3.0380614846171783, 2.5518632849813114, 9.743247163013782, 9.217257991560983, 39.991964386103746, 11.009519519256456, 55.26938492368934, 17.195479251043558, 40.0715964044551, 24.143213203172348, 42.94175134418376, 44.827457141837506, 25.049468142074087, 4.3218511842729725, 2.66785512026205, 5.96959475725831, 2.932568709541815, 4.905729467084195, 3.408124330395754, 5.551535528879795, 6.494242366681205, 5.902997734600218, 6.098966453211773, 2.8440058864437807, 5.634703457341754, 5.25593828909399, 7.075902176691636, 3.648473074782409, 4.593512276879957, 7.6589218427218135, 6.23104709088418, 2.9050776373929983, 4.578823567834173, 9.818393654112636, 2.9808574003345063, 3.403395285048415, 6.753945456397474, 4.933214302837192, 3.103688982470223, 3.4974673682240676, 2.733916175643122, 5.504346884914076, 7.3198113950255905, 2.9847139427597784, 5.240437920764255, 11.269384628632867, 2.9900334759955784, 4.049885159104743, 5.298162099867721, 3.0421828449545187, 5.747445756272418, 3.2288880936338864, 4.47631650500651, 8.294640875775313, 4.761281861731172, 3.2181813264673558, 5.6260587442131165, 9.593471829720444, 6.097658075381995, 2.988147186816784, 2.8356557564188423, 7.358019209655077, 10.84147379522019, 17.116104498663972, 15.960726294929163, 15.051634869171592, 9.267102697931124, 6.797141844025001, 14.1747163282954, 6.930813976906139, 4.177278694276846, 12.492983093654587, 15.936472480119988, 3.76760623788759, 5.307150307340468, 7.050264179335674, 3.1405203938749437, 8.888048213324055, 10.009272785682112, 5.769138078079162, 5.745849032108332, 7.707734161579329, 8.9578097258116, 2.7353703896711563, 3.728023112447594, 5.089617330403959, 2.9084902539684485, 2.7011685259324874, 10.154358526706098, 8.7252366625503, 31.21207498454315, 44.885581348523694, 29.531867792841062, 37.835215794161776, 50.840427840052186, 37.65577949636044, 12.980728212994952, 21.10985049045769, 26.815746127800704, 30.265132239146112, 4.928258867142653, 5.8269553305162525, 8.639046266138413, 3.3346222077934895, 9.872945726692906, 7.470764206290751, 6.0401219828086035, 6.015982823004436, 2.6701437768871474, 5.449028197895645, 4.444342156633613, 2.829987684164684, 5.9740366752273975, 3.2586626145337543, 3.974681956399245, 9.44689681714761, 4.174249800984347, 3.828201027889094, 5.412459284632833, 6.493270707803935, 7.633597057385573, 7.1892223956545775, 6.659658827503533, 6.7612779360870015, 3.586432788640832, 3.58812827135784, 3.648206577341999, 2.891482074175374, 4.13212650559949, 6.677885625458829, 4.974830558881555, 3.7719907915670117, 3.0766277597820655, 3.6295464691894677, 3.2340394447811542, 4.066655243125419, 3.5177278151389597, 3.001626774928801, 2.8201852545728734, 11.081851778099564, 4.194964437777043, 6.5645225509557825, 4.630269849137764, 3.690731881518846, 6.156590980760444, 4.023986150896678, 7.795667689882007, 7.919351734915148, 6.492163802666232, 14.844596516884732, 11.28875945944893, 6.391792132558646, 11.150838167434488, 12.044679025497604, 7.871087575444676, 6.9333804653649755, 5.348418360101582, 4.415009965743415, 3.546633019451675, 9.158656859419061, 2.8693234822181757, 3.3576081921021133, 2.866443198849004, 6.556753634562339, 6.431524190366973, 6.851684936801939, 4.643330353426498, 4.82719487188953, 4.3514312486428475, 8.014270660908524, 10.120402750935899, 3.1897375271830795, 6.308578684570957, 11.679159416907895, 28.40095944855791, 34.99140992208457, 33.88882547503636, 23.293946464185694, 22.947246602253202, 23.280595624327713, 8.954048575672303, 12.891285604552362, 35.48850493003917, 11.576198378551418, 7.468911770511211, 3.321954314062198, 4.9685655996151254, 2.760535274838681, 4.439772449436828, 4.274735276772285, 4.975330320460386, 4.579166430682481, 8.124173059739855, 5.658396596152522, 3.080711026666766, 6.856017469267782, 3.139191544795432, 5.439971571826227, 4.6835212143423215, 4.8927975001536685, 5.782648065162441, 5.731996506546987, 5.906013781782445, 3.333597135656417, 2.980672486774808, 6.090815849958695, 8.780628849939747, 2.6192319295339366, 5.884637546136481, 8.644483512524705, 5.495199113251823, 4.23613837728931, 8.293705298340562, 5.9228847866022605, 8.264516581169286, 3.6736854514363886, 8.050362898106156, 6.084889294059622, 2.694516852938779, 4.364539786540644, 5.015240154950076, 5.908420178175895, 7.484806692551312, 6.662782127068893, 4.014286529767626, 5.021390822144596, 3.619235916399202, 3.6993297545132244, 4.918519266395937, 5.7039537861898495, 3.024824600027789, 4.344870793870148, 5.203257900214276, 10.263626047350446, 4.755106904171667, 3.9909981154513376, 6.460947451936467, 3.7513102457929155, 2.7984971661464684, 6.397194636148026, 3.7879399955803614, 5.341450633518507, 2.927938878201528, 6.78643370414793, 4.8772216060707105, 13.188716283811539, 4.186013837753752, 4.0685247318991795, 5.964339157514519, 3.782980973682026, 5.9337355835490575, 2.8008012698746296, 4.7089831946958585, 2.3841868082290105, 6.472073568086011, 8.29776821353427, 3.4048354587707035, 5.293710349744948, 2.9019032581307953, 6.248082666662921, 6.365004272676428, 4.0148981140996725, 7.166260680610912, 4.388943983544639, 5.387877993498237, 2.5177046922161233, 9.125167910068571, 3.6956328876929705, 4.78450455648966, 5.368198999058486, 4.934993155553585, 6.968192160803983, 5.499852897455148, 8.882350915675238, 3.3915113920272018, 2.6971289139942196, 4.85483270656337, 2.749117157045689, 3.262357479700015, 9.466325679620379, 8.814967870911945, 4.549175411889206, 2.777797470153159, 4.815706190779658, 3.5335865189634874, 6.735712273051265, 3.2201249396553315, 7.907901244424253, 3.3292370243848364, 5.785450249773111, 2.9812922564746813, 5.696289994191929, 4.02259714282262, 7.428058796370218, 7.209269692408342, 7.595631605036531, 5.12595066077482, 3.4559882237085398, 2.9944713378053947, 8.447837812233637, 5.72527727300267, 7.166487964184465, 3.308475892501262, 5.139951749041272, 4.278189728437982, 4.041666704734464, 4.327293983740233, 5.008631941617307, 2.726536066310492, 7.000608886070359, 5.799251431638528, 3.592707211039909, 5.133044974307849, 5.800981474136676, 3.9441559962563475, 6.63224647476663, 3.4858412202696547, 2.8094124540150758, 7.181876925398042, 4.124334782381566, 7.240118369632456, 2.8216087669803542, 7.5583256219412585, 8.201650593698252, 5.161651866317119, 3.5494196817975676, 2.809224133362579, 3.599914922976776, 3.0010698712465924, 4.224793949022019, 7.773448921719311, 3.252391835596836, 4.815971206990074, 3.040632580075426, 10.492931951044556, 6.777295205704674, 4.146369654169918, 3.275056218580332, 5.567746106663186, 4.441091683220551, 5.313829846363674, 5.168078973161799, 7.395291059126768, 5.410777812991453, 6.3537172802940445, 3.746111919863563, 4.547123135557156, 3.3326685507128566, 5.237641089368241, 7.208434249550665, 4.1792443459841575, 2.9036392358008056, 9.230740345214347, 4.927188223505374, 2.898634108817788, 7.115953402517446, 7.544589011103823, 5.12294446822597, 3.2900797802227526, 4.276690111793817, 3.2051233621945965, 7.536369914179445, 5.786833199636202, 6.159436866255466, 3.201686573201883, 9.459586247521276, 5.99490607291421, 5.543319896399693, 4.4805526178068, 5.873686805210926, 4.770843680629913, 3.698610974757623, 5.481380472892087, 3.3839989310465723, 4.4685940903302015, 4.258614233645417, 6.5368283661093765, 8.233920512835322, 3.443695638219972, 4.729045160486879, 8.178825382682259, 2.989992048454235, 5.265043341798066, 6.9283703891192046, 5.1722935961794585, 3.2720989179866993, 4.173259524909556, 5.108325641466989, 5.958399389323984, 7.249820654804537, 6.924982860040261, 4.796500602774172, 6.114793035836898, 3.7795942354402494, 7.822453904599114, 3.4363094221343244, 8.374921086666479, 6.733789532146304, 3.4361723774877673, 4.958823271897056, 4.4286352947881165, 2.501497748150251, 2.157392290192661, 11.171910803522392, 3.680222634835747, 16.334996779900624, 7.80633285871577, 5.396071942847059, 16.648060063033427, 5.622407791188573, 18.04107721430052, 7.722478410823025, 23.52170270283415, 19.697084299625732, 7.937385366059021, 16.195232996020618, 17.199983758687697, 3.8899655854344664, 12.882688537444782, 4.397064999454078, 35.44543147261821, 3.8059729504177082, 7.178412678057525, 18.0513780056259, 19.55421697710451, 16.16679583261899, 4.705382380859264, 8.164795988911253, 10.116307619847085, 23.210789454506955, 43.74718950789309, 32.557513252313534, 13.097254004923997, 20.366906247383447, 5.191124263365863, 28.895361749257248, 23.737155341689387, 6.113434009351137, 27.37030652621764, 36.17564520867364, 22.90819971375876, 6.749566728457261, 16.2260195453554, 5.670132824938514, 18.435456015139184, 17.559685931185413, 10.03154808228195, 4.351726962741623, 4.481581270449118, 13.56923122560667, 21.98989087592481, 19.82846290796193, 26.271917774997455, 9.49508360682217, 7.883803022039252, 6.079634016005795, 10.497451034881687, 16.23275188102773, 12.45700863057218, 9.519272232658947, 10.911105216655871, 6.552600159005227, 6.265411086204155, 13.49019612182528, 21.143385850976266, 3.760769102454099, 17.388959601059124, 24.02989660293809, 6.817224273455932, 19.252203712052548, 25.636018780790664, 19.433709463129734, 18.421217303902377, 5.941514906050034, 5.353005254634922, 6.226563231040256, 15.184556126464807, 4.193956968019113, 10.819973249401102, 24.800132561011804, 23.037356441898645, 24.923775924439994, 14.11051922986307, 5.897794240569086, 15.738074607715243, 5.2377828141945635, 6.117465897546229, 4.848031372263382, 7.515966155677436, 14.861531672957243, 14.894946950206366, 18.29888158369377, 13.234091953395886, 5.965194328858788, 11.347409876214734, 5.099238238904, 4.39876752423544, 18.358518066186132, 6.549579836303567, 4.458609821314614, 7.650548971449074, 3.2477177884215305, 7.055869764984765, 17.728201682460647, 8.831526069983815, 26.00823417849659, 4.911656206074663, 18.161758771057833, 10.981129584170725, 4.436199002604839, 14.171477689010915, 7.2220101568600406, 13.806430342282836, 4.254735330328236, 8.495917102187924, 11.565647692111309, 10.998087474058087, 15.178974590656084, 13.556257366692185, 12.354439220966972, 3.817820739668936, 26.76941236766277, 7.016187077761886, 3.5517351341999643, 15.28553978603406, 11.135892578309562, 4.30582343968923, 4.0191759342519955, 3.930498193290652, 9.814696181128012, 24.136332475246963, 12.2067423009031, 4.569485417056133, 7.341957004094373, 11.34087506997233, 5.652208097129634, 10.665538972625729, 15.342783788386997, 4.0932810608149515, 3.050424999134487, 20.275456928671385, 17.780019108875724, 10.595974784984548, 45.79437148036911, 11.91265133381164, 7.366141932424251, 10.516258396650528, 38.04680398925114, 44.860049667984185, 29.34187448480447, 29.296098606972848, 3.692359111302206, 5.663383971539455, 6.639189567160966, 12.413488948394274, 24.212043527254565, 18.011388368379304, 9.443281351765833, 20.172346942946977, 6.832004283324199, 5.668441291363832, 10.686382747418925, 9.098287500772665, 10.936553399937736, 10.157031301906999, 17.16462185426078, 8.826940884933192, 5.185505205504877, 8.968791170467881, 3.7213528899667305, 8.250176485113933, 8.06411029536279, 2.7797973671334604, 13.596137128277748, 12.9002050583479, 15.46772518314279, 17.62300223872737, 50.12962956955559, 28.206480207893424, 47.01839346751816, 6.896168516156648, 20.090265805545005, 28.731120015357877, 18.60210697262133, 3.1976858184223, 7.275068257790257, 7.90062599878026, 7.236151742888642, 14.7174966961537, 4.497980698251525, 12.091001981687066, 8.799208347028374, 6.258898796903356, 3.345814486209769, 15.270785462747485, 3.861322947657002, 6.340792357862956, 11.321717691368491, 4.459732784400859, 5.14599748995019, 3.335254222335119, 14.899366085763601, 13.908544184984596, 9.211408244734825, 9.261010518980902, 10.789138732630786, 12.388162956422102, 3.80397712172353, 3.7342021916586257, 6.38316023696426, 4.1855908312248005, 3.0660080104448775, 4.836809418098778, 4.420917583018515, 6.806322981378681, 4.1557958522041005, 3.910604078436807, 7.941608620091319, 6.114780851982991, 6.502217807368365, 5.351477763554971, 7.26296564436196, 5.258635069713655, 11.783023633146154, 8.466404554507132, 2.8730175863795573, 5.410291121360252, 3.4991399440235176, 12.599369770596917, 3.314281867595741, 3.1119162062447163, 3.027299896695229, 5.32048287517386, 11.520840665247137, 8.106239701945572, 7.399033817168926, 8.281623933363493, 4.720470605899092, 3.377839618004121, 4.717983055742117, 9.905643055643925, 3.0813169017399527, 7.971584103678801, 7.271320488511194, 6.427362625104089, 6.146714929253331, 5.094043470350057, 4.466370418310522, 9.115723629457337, 5.5113759973548575, 9.799673706667402, 4.45500738581079, 3.874093662217571, 7.5484844903236334, 16.513325350864427, 4.883325152017041, 3.584146055885841, 4.241334428739586, 2.7818816660754866, 2.8499020871457916, 3.2044630856062306, 5.220139008738785, 5.215609732381977, 4.832920738789231, 6.9954948175082, 10.600901755298045, 3.7457815313028813, 4.920480179538535, 5.412599906277899, 3.161957787064757, 2.415344612868408, 5.232164642153753, 8.976165621911225, 2.7185230109217104, 5.424509749924741, 5.636571664719517, 2.9842453300253644, 2.2191245828087496, 2.957783280858908, 2.5093860524719087, 5.056797613406541, 2.9469619719492606, 4.24955488739001, 3.8747089360801366, 3.9770401411853045, 4.097810921933752, 6.828076992657515, 9.051495366154413, 2.628737563366795, 4.196992965928023, 3.881383252730155, 2.712545780546317, 3.5361097027991484, 7.860922362510028, 5.072211101966905, 5.680031079351835, 3.4640527216692325, 4.333769289246009, 3.4070696307602666, 7.499167118213738, 8.591277938073604, 8.849960431019158, 3.094591031101159, 4.6287464855030445, 2.3998591809470127, 5.090276639198388, 4.819827576060178, 2.8791650526503303, 2.860748454519842, 5.521694575871482, 4.177472495675231, 3.206507398797636, 5.67486520653156, 3.2629428445934483, 6.2451067740089625, 5.15771219163873, 7.697492035190939, 9.45435606326878, 3.507851215467021, 3.0716219941020295, 4.213076325403498, 8.777507814921277, 4.014815221535009, 7.019487326087645, 2.7128750449678036, 5.07717072184726, 8.150440540367658, 12.855657635910616, 2.5062010121478178, 3.9143553249496597, 2.8461249494510215, 5.743429674419148, 2.8954671041331634, 5.178066689712053, 4.709746213146028, 6.573653144484559, 7.663270205511852, 9.173807638981199, 25.079317895417002, 7.787751131787531, 9.169584392686408, 5.307472639882481, 13.187248435381282, 5.353930528498123, 10.429866788167791, 8.189950157458844, 8.494935414376107, 13.395668659172772, 2.6839085374750704, 6.059091238100466, 4.437562849922472, 10.62719047731787, 7.563956650154441, 3.292600382526463, 3.2028313829677666, 2.9044303324688605, 2.7700541841161685, 11.291700111268154, 4.991587890656644, 10.63284272272838, 10.617242716458179, 6.634119525095249, 2.958082893462232, 41.59233112665932, 26.50119490215136, 11.394776284962584, 14.799028347184494, 20.437531992692225, 23.423364680446443, 36.221023530554426, 38.15625995754351, 24.745064665980358, 23.505735410081996, 7.482969488867159, 3.1083126318878387, 3.0320645838085136, 3.8065298662469815, 2.9327961707725274, 3.6851738432534025, 8.072516305182269, 3.040389140039804, 2.8541452738173483, 3.0462817070377297, 9.782365897378213, 3.614618457410399, 3.0346475529611205, 3.480298789367444, 3.241640017850123, 6.767946704619839, 7.16043743785758, 5.924297571283075, 2.657364574071112, 9.695363044443075, 11.053290444512903, 4.868196114546147, 6.55292908965069, 2.85984253702434, 6.354928559689431, 3.694729721510092, 3.104741856812996, 3.767687280838382, 8.461761245416328, 6.269857052868623, 5.951245652904742, 3.0849268626759394, 7.270459097101635, 7.519732155452355, 7.170827843911382, 3.7503239314239014, 6.547986449005954, 3.4686039548814662, 5.1971357815684405, 4.127024918859487, 4.920726704521732, 2.642216876539322, 7.461343224978061, 3.0786055383337008, 6.068407103756376, 3.707638748336413, 4.494295597850368, 9.290374624845885, 6.913670999692852, 6.448452966127664, 3.8168314165366435, 8.822938333858373, 2.888082714889426, 2.1769634268656133, 5.885883108141561, 6.136780367074579, 2.7433089769686574, 4.668317345851619, 5.957675573275779, 3.8495677876608743, 6.2654942991785125, 2.756807905720775, 2.9593829978768555, 5.120084926532027, 3.9465031389501632, 8.317263633547023, 9.913821268404455, 3.503102213338166, 8.386812940213105, 9.423811647633675, 8.966992251301837, 3.0902885213347524, 4.545040325695874, 9.470877335574418, 8.342747082571798, 7.047168693592473, 3.46773662264178, 4.06787249817395, 12.497268233022858, 2.785302542517556, 7.100708148054337, 2.845162826228402, 2.5367617249693035, 14.686052289775851, 5.015406695807419, 4.913914681485458, 4.88573151683527, 3.950250138078035, 6.941968336857898, 5.18601055234225, 3.3403620910109435, 4.604427148676781, 2.8936775587518713, 3.047852243999217, 6.368881269349315, 4.049937255249614, 6.673185565289028, 6.102471511393934, 5.322448220030913, 4.90162477113284, 5.664565300211634, 3.9719061051061195, 2.784830236827609, 9.103723036753541, 4.349255026041167, 2.8662311931383497, 4.379442614029758, 2.3853863674826696, 9.714171649266984, 2.9844119126198914, 6.0309272984656275, 2.460988958138028, 11.605910936956391, 5.276667544957002, 4.3324512029310345, 2.8821842442018486, 4.4373721892075535, 5.040670580105301, 4.300234080387842, 4.380597096872693, 3.9030131553485696, 2.4883801803530834, 2.662778693365279, 4.208658653179626, 2.698147492067633, 5.090141455086369, 2.658163156715785, 2.717990647682599, 2.3636713707054695, 5.259928532209745, 2.842227290152289, 3.8183609007944144, 2.5426200707838227, 4.737449449413266, 3.4905150133361555, 3.1968638895058374, 2.9858837454219547, 4.276700044097683, 4.365059818776351, 4.069081267610679, 5.957784378412948, 3.8255622438819867, 2.4329968911847324, 2.8618838223219827, 3.2421756941082864, 9.271488617627826, 3.128074150860252, 8.305123079033889, 8.57930445349246, 6.757522893815077, 3.371955009070694, 3.3304758232716116, 3.7269651653743363, 3.827221853874106, 2.6930626890297105, 4.050917101911849, 4.065156897828169, 2.949408390594758, 5.593922179573607, 3.627086172544695, 3.318157790680541, 4.062831156918544, 6.040661679692259, 3.161047573356189, 4.4893817255180295, 3.65795679011635, 2.5956494242122985, 4.453191361999065, 4.483936223858133, 5.046724429053458, 2.4402211041095407, 13.29932804423587, 37.34465809878423, 27.64683728463548, 32.603004012907235, 28.174041643069174, 8.981051438004867, 6.534041921154826, 21.008924345313552, 12.59399906229464, 6.789927329944657, 4.444360488753082, 4.213421624031016, 2.699462811591279, 4.157897648518732, 2.6588543896704806, 4.865620650971042, 3.8610083269262345, 5.201737061683349, 3.8950475673986658, 2.7458272778456485, 3.2841390416345044, 3.6065915758424727, 5.295518995440672, 3.375747671606223, 6.295262839099406, 8.334127538326134, 3.815430190532373, 3.583995081142031, 5.487577806591884, 2.535207963165646, 3.9475263806093546, 3.9428821203642417, 2.3944249285370427, 4.310667188435277, 4.9180294687347255, 2.999361812813114, 2.889236688533456, 2.6185419607495004, 4.059208899745121, 2.9614486594686595, 4.102540985400887, 4.715430097607793, 4.430601338262962, 3.5503813014409302, 2.1697317917719574, 3.8673008605054218, 4.112110968764455, 3.836033696068674, 5.549040271799132, 4.056130671182009, 6.696307473533138, 2.5666918921144877, 3.2634083839694186, 2.906278418453312, 2.409765207308194, 2.9711240396538035, 4.853168611039198, 7.033848159200166, 11.26420103069044, 16.666675932435307, 8.398600540411595, 9.569102344069021, 15.919571225696679, 6.770012723880018, 11.290238617585665, 6.401243535626609, 5.679063574000828, 2.945277783270857, 2.675918008364857, 4.14333695284444, 2.8600725859999208, 5.256388154108944, 2.854932808236735, 9.608319841764816, 3.9701491764635635, 4.887082678491401, 6.497383760210483, 8.100051292188594, 7.030709690726867, 4.1355358602127, 2.37923366518058, 3.476201908983881, 8.456601480129905, 63.87488008453328, 48.75599997806784, 19.71921581751924, 77.97476827921713, 18.054576005896145, 16.951470109041022, 14.781836816059524, 61.72313464985924, 58.23645613645614, 53.70457950843655, 2.4889408629187852, 4.142405404545309, 3.0987977069669754, 3.1888532227885644, 2.949012854230907, 5.257170652629633, 3.876844698889524, 12.899923834833071, 2.1678948814415886, 3.3843853543202687, 3.1024243404048097, 5.133177641696259, 5.747602756133614, 6.671820069618222, 3.3130925980493102, 6.605902974446002, 7.360508119957885, 5.802027903445363, 2.5588637288190843, 3.5116097014179015, 4.888768182824835, 3.418763690153212, 3.709933033504296, 5.786101993679744, 4.3056470167975025, 4.528894191784035, 3.5509099569523284, 5.616815057567791, 4.334565093809392, 3.970246434315084, 4.598152307755948, 3.4239666471027914, 3.0700770622456117, 5.916114190978405, 2.6885917372648054, 3.4816230700742135, 5.604404830613924, 6.013511924878114, 2.2891155841832123, 9.067029293903904, 3.233969109558481, 2.476605525741872, 2.4567358086721853, 3.258643774364527, 3.277539568014481, 3.372942377440272, 4.15734259769067, 5.308462114671033, 2.1976460932988306, 9.539056853677925, 4.44120630297613, 3.300726416401836, 9.567997853467189, 3.194322056443367, 6.594334477413836, 3.4123313422953796, 4.973469245525733, 4.90935416651097, 5.911619883305793, 4.085826193171404, 3.7399559856214193, 4.611146944015213, 4.144787449988404, 5.4876277029237, 3.0167992760011395, 3.4691641195703795, 5.092142430303837, 3.6001234035948135, 3.1095066309186077, 6.069687540009715, 3.9808375169339034, 6.774945872101097, 5.327749185643013, 3.9376821570540748, 5.078211389568086, 5.439877529369433, 4.437651137547948, 9.44235938492323, 3.5375621754777558, 2.0794319751894714, 4.215749720477624, 3.498557271263407, 3.4291805852064137, 5.265156937057119, 2.4248012911453998, 4.761566533219707, 6.886535714910485, 4.241105624378688, 3.715872976076887, 4.567262251777967, 5.177963146690905, 6.126603366238409, 5.410092808539078, 3.7169534018616095, 4.778945671869483, 7.23174824076874, 4.4022868906320936, 3.8199982475651026, 3.4348680252891293, 4.8402176643761, 3.8139333282774768, 2.901840163417512, 6.173111406179758, 3.548310052437605, 6.9279648767355395, 2.7416341687881496, 4.484996212518753, 3.2631006649433254, 7.470514991015937, 4.524746306904417, 4.537395539690431, 6.717168091593624, 7.164512974784347, 3.52247353772517, 3.747295596765178, 6.736796656053033, 8.458615931668016, 4.464732468963061, 8.992448502375238, 10.408802581142893, 3.6513532348644797, 4.613605448345374, 5.402593439765984, 3.2274682125902268, 8.293299138286446, 9.895368852351712, 11.532391929849675, 13.528148182041361, 2.7525438676063945, 2.390588866214815, 5.093851182765457, 3.92164903239105, 5.834447034885047, 3.444047367198486, 3.7605903435402066, 2.3180042638351748, 3.7362646682849006, 13.017315298044458, 16.72351279206847, 39.15191127447514, 17.88032530704574, 30.537404982617367, 56.967324310112545, 28.233809821012766, 27.55768218581899, 17.208821282647754, 26.869024815361517, 15.493701889371419, 5.851063722646831, 2.5399499710691584, 4.271241109766647, 6.138974723831527, 5.339432501519007, 8.304017372988962, 5.259290752028562, 5.166196308580925, 5.705618659399, 3.7400278902551207, 3.5859960417295964, 5.7453005723676736, 7.973036199852526, 2.794556285466611, 6.839378852926041, 4.679949501473042, 6.5689673400990864, 3.6295839171176305, 6.566364339454488, 4.6960151528181715, 8.203082930451032, 8.637504608927351, 3.7672776152665737, 2.877774457755699, 3.0909695180264873, 3.015667540081465, 3.816632584069327, 4.117855205080889, 4.7127599303134895, 14.143474374093424, 12.955732318873727, 3.522602435988217, 6.13528514721885, 7.446678291835774, 3.298631872631514, 10.37420257335587, 14.628274988314311, 3.437365542494333, 2.8700128425703393, 4.060493349888016, 5.871112598718659, 3.6372644472380484, 6.8683784745095675, 7.6140219631349035, 7.418746391638471, 6.383973152147881, 3.444601922837585, 3.1757386941394388, 7.142588277298745, 5.170338047767852, 4.602523455435361, 8.452383644562806, 3.133923480546739, 2.6344497158552156, 4.755096029556115, 3.319604100464866, 3.7872838787292284, 7.940272309789241, 8.587156125528553, 4.976510445486622, 10.716835824220327, 15.37385496061064, 13.430988096234982, 6.1604983547040195, 15.719589044866664, 16.394247011962605, 13.520115065779457, 15.528440918205954, 18.27225039365284, 4.722021876816871, 7.228620885345473, 3.0635924355867648, 3.49452909615676, 5.53344095293638, 8.309151011462234, 3.91179103624421, 4.1974385510998005, 39.47926469584159, 3.7136351210327, 6.116704084908092, 5.979420131473642, 3.174413999146392, 3.6443016514273094, 3.1866595809570284, 7.0204873276665145, 4.13535154008957, 24.33712895358495, 70.17993022573648, 42.326762414775715, 24.436723438261026, 50.24303353259187, 19.944704613003886, 27.64815514413865, 15.761388236475671, 12.299483645293206, 54.41964633461954, 22.991321310592856, 4.585285428156334, 3.99714975710241, 2.694168440635946, 10.066932074498498, 4.710336849476866, 4.294152459844717, 4.940485563684814, 7.276778970719025, 10.555559603246175, 5.777791157271204, 2.85199615655822, 3.176989077694886, 5.502808047096259, 8.89009196971461, 4.035585960744358, 3.857774359071225, 10.081535719708208, 10.411184585867014, 8.501606414413311, 3.8021543010787497, 3.9754196242216224, 2.899674390026802, 4.074545984753418, 8.885759055338305, 11.994358198703033, 2.997699924738359, 6.34988329740601, 5.380731035167708, 11.860633759311863, 2.8711443568969472, 5.495123713994561, 12.339841280630804, 7.4378377629669945, 8.324686085576316, 12.58537149911884, 3.277230710430793, 7.150760000785917, 3.937807897040407, 8.17724088340811, 8.691292268523565, 3.43838787136537, 3.680379120528333, 6.128691246050855, 7.638169175027553, 9.574890941901852, 7.154160924297002, 6.370934919855259, 9.164213740409915, 7.341596202516094, 8.076304965307655, 4.115762553689939, 8.046136449966385, 4.433108207043586, 7.630613064570262, 7.9544392383783675, 6.128173877229342, 9.888287643221181, 3.8679509948896555, 4.70842131775256, 6.416087440333007, 4.598439958114676, 3.0397534693176365, 3.770413051225467, 4.339199664774192, 4.981727539871889, 6.7517394614713755, 3.2167830531251034, 11.683589820914612, 3.878659213665751, 5.445495269058434, 7.825271307639148, 6.787395170796158, 3.617592875799451, 3.2560245931003147, 2.7525389318020994, 9.510184164317184, 3.510008480208017, 5.460393778993783, 2.486864729246996, 7.439184668326172, 3.331626136414645, 5.165156418004987, 2.902042249099742, 6.612759070294905, 4.092139251333416, 3.1710578003611496, 6.719229974496008, 4.295851635435085, 7.004282924799979, 9.404506342178879, 4.1021316475458605, 8.708232978438012, 3.7925654247123006, 3.4301956127521476, 2.943565983697562, 5.308043810295118, 4.756524575453493, 9.562773229424318, 13.253709657883954, 3.7168568234259474, 9.462122435722808, 12.901938659680749, 5.2685397636147515, 7.686222953904833, 2.572840501979668, 8.135657741994011, 4.696997122489686, 5.277335579033973, 4.689135829612708, 3.0829003349070363, 3.395576004091011, 7.305029936366286, 3.7566688746958414, 7.236274455839128, 6.784973849763848, 9.261193953379992, 4.263824092082922, 10.675627336402233, 5.490864292955705, 4.25413885803438, 3.3638007588795658, 6.066108256773258, 3.7919698748156327, 8.17188108255711, 3.6776693435402725, 8.860813260087422, 6.492924452130993, 3.0728770638561422, 2.586674096386952, 3.017643929939304, 6.0121988722725686, 9.041429554156833, 3.9253624864561347, 6.992154467624095, 3.595909838191088, 3.389962665284676, 7.086627698607579, 8.54441473499749, 3.2396372696043287, 13.480878172086753, 9.755154653477101, 8.228237984689565, 4.765226714658557, 5.8713109535373444, 4.842528985693426, 6.846213902114844, 7.994081350279718, 4.684321684404069, 6.557432014199678, 6.92383433012076, 6.21455854632294, 5.87280370180296, 5.729336510494817, 6.067315613825997, 9.761342068202502, 4.775670237577854, 10.709925513515746, 6.481099579038816, 4.188707608036026, 2.888424167092322, 5.46020910466811, 2.8070139343960956, 5.564097847719191, 6.2767361182562444, 4.297911836252055, 5.099858306221283, 4.513011649586568, 5.943024907023007, 6.807793605940961, 3.4763911900041675, 8.84885041254213, 5.958524723553822, 3.9185457855892314, 3.3792857883026857, 5.835183505037137, 4.294209448256296, 3.510020295288956, 2.4012270238499704, 6.470646644085511, 2.6906316444682408, 6.561939565372818, 4.854137238601107, 2.631634507053355, 4.748984254944185, 9.275242059372976, 7.63928450976011, 9.103127350434342, 4.298253218288266, 6.29539548025194, 3.413698812014894, 5.691865687341773, 2.748973429414671, 8.471320978101124, 3.713625019626191, 10.00039677375324, 6.804743387768813, 7.437590494054536, 7.176059023153307, 4.632618891402548, 4.06024221670686, 10.061099164217703, 8.36644310073063, 7.367114798037523, 3.313870855296004, 11.499519185956574, 4.8102173104106205, 5.3525460952070185, 6.807381276958211, 4.5048538086037935, 5.376926548991964, 4.27643858635205, 2.759521123034401, 4.044812910399368, 3.6133208496175273, 2.7017448513757523, 6.131027296748424, 3.017147547024786, 7.8483816297824, 3.39180189995763, 3.3864550586146795, 3.0822346834641987, 3.8326130813769934, 6.6980532066369465, 4.205669906108417, 2.623868557897379, 3.7422735447606943, 5.3039894015007185, 7.029801848311604, 9.561907069810454, 9.762884239418552, 5.143134170382837, 6.0628780700212594, 3.2211367852840005, 7.063591910664993, 2.679636873933776, 8.607458992164366, 10.94819599584331, 7.585320368737556, 5.460521183416201, 4.928957055798849, 5.395525623995153, 2.6171461677237096, 8.493520865860129, 3.0374881790975605, 3.2914225861250097, 3.4669223373325173, 4.864678344030025, 6.42719944763316, 6.499757508111121, 4.079993172139978, 4.171428980897542, 6.811847715927343, 4.58480139562228, 11.539212330118211, 3.988578107492886, 6.62617522578663, 5.958310152604601, 3.7006786008387933, 5.766660697095033, 3.744324309971073, 8.386212006211405, 7.504923075475642, 3.52967362799353, 2.507726120031857, 4.148894390534455, 12.825917024357501, 3.5008801482377065, 7.465995489098657, 2.626707585194708, 4.037250378117438, 3.434674164631888, 9.63308497464796, 6.671572316905903, 8.09923047506144, 3.7021223049402727, 13.44559004963195, 2.7670355034623197, 8.023361263564226, 3.63563532969802, 4.165951014424319, 2.939015264418648, 3.2956077798159304, 5.404148637379485, 3.7067794606461155, 3.583054645431554, 4.335200821163282, 8.869716570562137, 5.9818255138817165, 13.510958411517642, 3.3214320843570837, 3.1917536959881034, 7.548008893390401, 4.3571122537239, 12.344523546775505, 2.876765833200564, 5.036283375517526, 3.0232805985478093, 8.973506069033151, 13.671531537049038, 7.8810607835449, 4.717887441550692, 6.874196944304436, 7.787574013507859, 2.92292162976024, 5.956415645198924, 5.8721418758978645, 7.497215888929964, 7.228438994722271, 9.22411480761807, 3.4138111211464537, 8.309639241028849, 9.702620304184755, 5.785649821299991, 5.649388555079299, 3.006887301273084, 7.224810015715462, 9.79982325871372, 14.60123412760159, 4.831593794108789, 10.233941831935889, 7.61123561166884, 8.798353369038681, 3.644939838525533, 7.000430694136691, 4.391191417409997, 3.1343393703560865, 2.7720536872445156, 4.159493204175042, 9.448076871150176, 7.058700143730416, 3.0068290175720245, 6.72662964320313, 9.658486280527608, 8.41497220246419, 3.2464453387847785, 3.3873891650737975, 4.992496912607339, 5.071477479419729, 8.365047598489864, 8.049557193191774, 3.255594331065661, 10.169677177471492, 3.9383960853738547, 14.179661999098816, 2.975901674511686, 4.2446250228752564, 3.2437020064234336, 4.032203711054131, 2.6933475499822475, 5.633266306692393, 6.223423448013057, 9.90719214466464, 13.624581390454628, 4.615548640543631, 9.949527696691133, 8.435081195807982, 4.880115311300203, 7.417064612185395, 6.234257620769599, 12.518780098844037, 3.8278482422448667, 5.325629973242827, 10.601817828990557, 13.706475775461, 13.479935937582345, 3.861763154330168, 4.914316107890903, 10.935041018903501, 3.7567033190541883, 8.650201553619105, 5.33915559233668, 4.4444393279406285, 6.704421327130398, 7.191628195723204, 9.64071339036405, 4.371786395710307, 8.730458772222699, 4.299420830651938, 14.518590792846235, 12.022417952029247, 6.358671925327406, 10.928249785265566, 5.1475782487941, 14.234848220494605, 5.843083411565897, 6.086201161898005, 7.301558212089155, 18.60225538828541, 10.00312615260786, 4.908250068956941, 6.629373052028512, 10.107929569867094, 3.7976266729754085, 4.001503211967791, 9.439253475537292, 12.475022848197023, 9.375039138278696, 3.1029628884270446, 7.915367385444096, 14.617045132603637, 10.912227921409851, 9.619355547893992, 7.233993325239354, 10.123978321017457, 3.190706017534427, 12.52398566962512, 7.725290169124727, 5.103656776681417, 3.739400941348626, 8.232184032728115, 8.485910005543753, 4.879889072109381, 6.878799934688217, 7.681689017880899, 6.402529938242835, 2.8611788888228378, 4.4491303199298295, 3.573993842034278, 9.806932289410451, 6.305346235240652, 7.252923676975741, 17.449800857372583, 2.2127741998207937, 9.683346380542641, 7.0074642601057295, 3.6544987269437508, 10.28984488736829, 8.096789747550424, 8.758195738253917, 6.698807071144672, 4.846517227237776, 6.463061127040442, 5.795717716048098, 6.000079439102163, 8.584863006494018, 2.8651384868137484, 3.533423149125374, 5.7031172604414495, 10.239839682228176, 3.1282371406853398, 7.58136013085077, 7.0464941268175885, 3.009913513370861, 7.361030838096751, 2.6345788640559253, 10.9364719796619, 19.838973650927947, 5.9723415159312445, 6.738292567289952, 2.535487815541627, 14.5663773129035, 2.4479106223678264, 7.5297536278339425, 4.308659621454708, 3.491772372384196, 6.807232976560645, 7.992122069107788, 11.45276010969335, 8.838700050520167, 11.09173387223587, 4.625574089967695, 5.040534815088896, 2.7881456667994478, 5.042552531611675, 8.078338823562536, 3.3688783450420727, 13.721647647144334, 11.417588122574092, 6.617145355479972, 4.225866405563114, 3.9098668921810216, 8.495310236795792, 4.059379370275384, 9.356161413349282, 2.742837551339543, 9.165850558928847, 3.0643482898431937, 2.571855847670346, 3.6931786405094127, 12.29486534427348, 7.798794078321253, 7.022521186758775, 6.033248890542843, 11.001906801019391, 6.257854718660285, 6.5935024031281175, 6.53377426547866, 3.1847103839474995, 3.5911761348238453, 4.281376585521999, 8.358037935834673, 3.0994962367168233, 5.307003402665644, 3.7972898105948247, 3.208597058551648, 2.748999976690995, 3.872467071044856, 4.222313164154216, 2.803406603800088, 3.6611828183458517, 15.554431891508976, 4.251565271951998, 2.7570991071411215, 13.299931395318904, 4.649925550002788, 5.33952255890659, 10.8238286462378, 5.496523306433255, 7.109968186416155, 11.48665309301428, 11.86299453274108, 3.715330254796501, 2.9561317264708715, 7.040576956303553, 11.04268365531808, 13.047882769435292, 4.718721666486776, 4.523451191177117, 6.758327297552147, 3.5987885317107016, 6.481878654754695, 11.68530107666876, 20.050696342863784, 6.011666090299486, 3.862833539828914, 6.856706093344461, 5.022656450437554, 4.350049520296562, 16.450171401126777, 3.193732282465056, 7.959740579211088, 3.962223934337184, 8.176926283556307, 6.046950845469827, 7.302258962724152, 5.606859960508049, 8.028272061089744, 4.019221074037741, 2.887230745534951, 9.361772990350904, 5.521647826841663, 5.112212219679122, 3.6030751005180597, 7.012537597029874, 5.150484795795407, 4.692590496366855, 6.205374802853205, 8.555511219467745, 5.798530354413308, 7.844505220790256, 8.369619340349036, 6.404549392391064, 10.342274666387326, 8.458187640084605, 7.531213616712376, 9.456487015017004, 2.576966741801996, 6.785941180635246, 7.7964172426482525, 14.520829176003888, 5.913970325938125, 12.939148515939168, 3.9794989232675637, 8.524667516278793, 6.963782108773976, 5.058395182362501, 19.32070501353637, 10.782014487989093, 37.39173496044185, 18.954521007107285, 21.70055163501595, 41.61118312682277, 4.176721946253334, 57.004408911906, 27.810164680741433, 7.069027907529077, 30.996939933823363, 6.623022916032682, 38.49269193375815, 15.467681757930746, 3.816706583528362, 25.40440312882041, 13.422851896894548, 20.686682337619366, 25.22744245001822, 4.031770661989313, 24.739614017718914, 26.103297767454062, 30.61943440629715, 9.72552377174975, 49.69117853645554, 27.459315791871287, 5.972441639116501, 6.3917638287123015, 10.488657179725328, 17.55734534629066, 22.329976007540797, 5.513060876813221, 20.40566153495469, 9.213425228025521, 8.276927273119249, 21.67673158691802, 24.84977082217395, 5.819829327731902, 17.021519821645686, 5.8395925617577245, 7.407017315708912, 6.312040485285249, 3.493751279347547, 13.218879857117289, 3.563573293790164, 10.4384610862662, 4.972963936456483, 9.418079466537087, 14.113603291307351, 3.8369515601262716, 14.234294521789124, 3.324628137234342, 3.6179567487437136, 7.475090853917677, 14.687958933402147, 5.935667643654105, 8.272284204663436, 5.30701039308291, 4.772549550438095, 5.33160830042001, 3.2882646238363527, 4.994550444041321, 5.140307921075547, 6.986977550764331, 12.84961008679499, 12.860309731258798, 4.606048076408732, 6.142642018651879, 3.5691463978462554, 2.6029876481563625, 4.319591266036898, 11.164326468482527, 5.50009759610245, 20.439758182665788, 19.81580554026208, 20.830879517508784, 17.597894335364337, 23.635830888376947, 14.963910380974982, 13.764649493228001, 14.103044871082465, 25.384531809999746, 22.702600395992025, 15.1244280847026, 11.509321588804717, 7.095838910829242, 6.070567887859475, 21.213184170823617, 7.196475964902377, 11.734061183497559, 31.001598264523484, 7.35491820147088, 18.679695831362636, 8.020782800943117, 5.0172556292550095, 5.890569328153666, 6.990279908721193, 27.04687900324904, 3.901833541733863, 10.652416178841753, 7.7509657631061195, 13.059334700316974, 4.5978232641501515, 13.461198169509409, 18.96231587762318, 19.29626713218744, 6.814156232169481, 20.675104334976886, 31.153498974060984, 10.044028905656496, 6.39124852787015, 24.788684158690696, 23.903364231868967, 4.032124267922493, 6.292061903775382, 14.64873896518733, 6.301652591849486, 18.759818589228626, 2.9939204669575905, 16.129811024457506, 14.889512198864368, 30.25550280059388, 5.616971500048872, 20.714255507170765, 4.221818194583041, 5.776577644938003, 17.188639084646727, 13.06633785464389, 4.001054993046454, 5.568739091966023, 11.503885368324333, 12.630065651809806, 4.228644003238663, 6.844866179902467, 73.59584347870091, 10.139976778921715, 10.119024592429339, 6.230476861566647, 6.211797600136261, 10.802512471996927, 12.792792156346538, 7.5932036372636595, 13.20951030275071, 8.81431823664116, 5.434841806119742, 5.109837071032971, 23.615339422901766, 4.677906949568996, 27.082077316113192, 16.289672528853565, 10.706996586036103, 26.145163224588046, 10.298352189233283, 5.022053580929558, 8.190340210244122, 12.97713682933142, 7.814012306783551, 20.221531483786222, 10.172454984171605, 12.155845809241969, 6.127980737369955, 10.65613371126597, 10.976816076094183, 4.556120999379441, 4.255930627754653, 15.249775696053861, 4.206018046306232, 8.14991104483023, 8.255622285053644, 5.087382442888386, 9.928365337377913, 10.082339083198155, 11.684871173190777, 11.188987905980454, 17.892929178773603, 4.607161873068519, 18.071201064998863, 12.440765474786652, 12.614697510451732, 4.110764163943617, 4.099595101619883, 4.560591947919579, 4.8771593429117965, 7.360812332460226, 9.54612001832786, 11.436068444286432, 9.830426142985761, 14.199902903681412, 5.031698454848095, 6.733725126908172, 16.19408757153223, 12.906857460759516, 4.431055055724267, 5.140582287939175, 7.293942282994511, 3.85422070332508, 9.173629187690475, 9.232133590831214, 10.81613225550061, 7.386658017724312, 22.405806275611443, 5.2267475632001394, 4.803235208940021, 7.978351818555999, 4.560240069050599, 8.64816481731848, 5.36181378881733, 2.80839442605523, 6.791632827227037, 6.935305169404362, 49.2164399203089, 25.75447960929539, 3.048705186132802, 3.094305821550214, 3.1642417696361456, 6.5670978685603405, 4.160034354560455, 4.812404700750982, 6.707162520870553, 3.0627346127053725, 4.731279864233028, 3.225987742024573, 2.5446006306540228, 6.9116390678248685, 8.043882142958516, 4.133891663589696, 4.440532348601292, 5.062586623430949, 8.107123806275427, 3.484610606868059, 3.8080164735318833, 2.6564177930945374, 4.613949172604488, 2.966455820086784, 2.7395440045050328, 4.684395892692017, 4.320126407285925, 5.0422148524390895, 6.524676598674857, 6.155381278482469, 3.82956242245189, 2.5683686095822416, 5.8641175219082555, 5.593635199065661, 2.741843601600643, 5.344592095568776, 4.311130245982153, 6.144132557220451, 6.515511440700447, 5.0203313380904255, 5.328744419364172, 6.065308642070985, 5.163666239433011, 8.23200155475766, 5.130509716751592, 7.200164032415042, 7.169726012744822, 4.014533087557549, 3.8425484259089013, 5.674572969087065, 4.150414428332696, 3.2204473065606334, 8.358580672669833, 7.472449230475491, 5.125377985367855, 7.731548895440733, 6.3761463214309835, 11.745294306413504, 7.48940735878306, 13.022480416298428, 4.702688387952312, 3.6274664741477944, 16.262510930092258, 5.49507894725715, 7.27445232449155, 8.037678291294766, 4.085532846321302, 9.715079898734855, 2.8733491699617493, 6.055840212106441, 10.54628428022878, 8.41387955542496, 8.43531815242625, 4.692700841724441, 6.531502549786963, 3.201554077838796, 4.059524591188559, 8.71909025571247, 13.312453140281477, 4.739417106009113, 11.729624786851781, 45.343855465587055, 43.994860227894726, 3.8815869587369494, 11.22402379102238, 5.910259377602043, 7.043291702819769, 4.119694869331715, 12.985918637273949, 15.285008170104366, 9.16016590561373, 2.8681854200448145, 6.846775609545578, 7.471394445123875, 9.385319319192398, 5.301006377271233, 4.960779632873689, 13.333248088780456, 5.014165069010421, 2.7210787123995215, 4.213371258575413, 3.8189286663973405, 7.855259885773182, 2.5821508430770006, 9.15347725762662, 5.03897356526893, 2.275896132196167, 6.4325991452168045, 4.378659582479173, 3.843159220273751, 9.689166076917667, 5.316702715783656, 7.472322507770236, 3.4245370453460784, 3.1988221103136296, 4.66379018360747, 3.7537089579034904, 4.56766394184803, 3.432104558613251, 4.025110299485624, 4.788345101925101, 8.880376023754215, 4.927716181451391, 6.507222817360416, 2.139714197302733, 7.813219371216441, 2.5668378348091814, 4.656262156760142, 2.6724774590178564, 7.885066630495284, 8.224728931238445, 11.739875266670404, 10.138340598367575, 6.292229092312594, 21.95266640085776, 4.022104403942416, 5.013193937506167, 3.4624205414025195, 8.645116846428397, 3.7449012672647357, 4.110815319031213, 5.278910952822677, 3.2767411514547695, 3.40959238934158, 5.255016830586873, 3.0481204694665296, 8.15269066417048, 2.6985920594672996, 3.458177186207806, 5.402221174653362, 4.626008783272666, 6.953558230957264, 3.5368870727619646, 6.53868164452711, 3.62815147869424, 3.3706279097651577, 6.179725940274092, 6.181284714289703, 13.233038180846114, 8.463116113487175, 9.39418786773812, 3.5871669290562513, 4.010164887540538, 4.8645747973869184, 4.655278554790716, 7.522572559649573, 8.85854393076447, 8.005718863993586, 4.38218974130139, 3.1780837219180267, 11.801210632731678, 14.81738009755571, 3.1251579316473923, 4.520398803580419, 12.218323161270607, 3.7660243195467014, 2.8490457270566445, 3.951357435605475, 9.911752169411654, 3.804248758759222, 3.3602199528134675, 8.349958771224252, 3.5991500024726544, 10.360325349428557, 4.868160338925767, 7.316784328548145, 2.601828852700717, 2.8090907987228917, 8.878209778810294, 15.941817581883324, 15.541886926010381, 5.462584152143873, 5.414714418385758, 6.7942859665826285, 9.406309846303229, 5.295357375223564, 16.709059912627318, 7.495635445021069, 5.541457102838204, 10.13563764917502, 7.5250424951152945, 7.782161574101973, 14.204583793141078, 4.205377762268934, 9.574019318287602, 7.240873464601098, 6.671483105927555, 5.044729557603468, 7.105353183254372, 10.401968516974403, 5.753620383231261, 9.000976136560974, 3.8064370217771657, 12.927124365164383, 2.8871912124904853, 10.829333073582598, 6.833336047816312, 4.851995617089144, 5.645024191825412, 5.307081670405943, 11.091322979791407, 6.043119055607465, 3.1134582636826913, 7.056234643812602, 3.5677705719543464, 6.55249122036515, 10.200118291099644, 14.217270231721717, 3.6563151090012984, 8.608509210460511, 7.654773118593198, 3.4521726863383706, 3.0279810355670893, 5.8140319377059795, 4.356271275447044, 4.437781614332195, 4.991454845932433, 3.017279124547675, 3.6851219342930035, 3.3229487689717527, 10.972515844322889, 8.694542203824838, 9.891873403943585, 12.438817363043404, 4.586177180167158, 6.167017746456721, 12.535135796374487, 10.153219114960462, 11.382934639601737, 3.4455282575573922, 8.088267956017559, 7.2126576723427975, 3.816575777974463, 6.44015096527565, 6.651480770378765, 8.297299797609973, 7.878873927439109, 5.447490061986303, 3.8762163857201806, 7.450009078789165, 3.4579446248708523, 6.172615384057401, 3.4823033125097993, 4.388090657704433, 10.26317835744575, 8.716790905904015, 3.5278599810913396, 3.2804745453586586, 2.4573828468435828, 4.921109977475982, 3.881011671851484, 5.166117294965617, 5.776565433971983, 4.485683069758255, 3.0355244402365855, 3.7669322526582834, 3.8099025175357832, 4.108095556945839, 4.895361416014725, 3.5981311115456234, 3.549610833901154, 2.82924152073319, 4.372621282188723, 4.205598347121025, 4.876076462544546, 3.056182686999871, 2.273464058456111, 4.300356866687318, 4.925715604735087, 4.876652280845885, 5.218784437405032, 2.695419408565391, 6.736172511786205, 4.225314720229301, 4.578347962095716, 3.8394011970056097, 3.5798935272619565, 4.415507250907487, 2.843842118668357, 2.649317941375609, 4.888830991012092, 3.201158901225666, 2.622195552130491, 4.695827752193074, 4.0766636496226525, 4.592492645510376, 4.061319276677023, 3.7256580479442425, 3.7812814633382588, 4.124168754423316, 4.664511539852812, 2.108531218270246, 4.191908453918378, 7.2011157064318345, 2.4474813619628497, 3.568059232323302, 2.407473058689394, 4.821986871439927, 4.191527883538498, 2.838836160542253, 2.3776224303785862, 3.883235113889012, 2.6899321850772218, 2.4775028524686453, 3.1096577350532244, 5.9637178907262625, 3.181786301000497, 2.824398823331979, 4.5640067990508815, 5.101746904193135, 3.240257435984601, 3.4399573488628046, 4.626784303771126, 6.224515676146603, 4.67598999248127, 3.70068016763016, 3.208645015172991, 3.3797308407415825, 3.2959548955750297, 2.401926537628992, 3.2097134460348427, 3.5958710872943587, 3.1568587524623863, 3.820298318895454, 3.5262296422607293, 5.762081629397361, 3.769250192494148, 4.176108766610594, 6.047363688301249, 5.612363166089976, 2.5553521465862756, 2.440077269277601, 7.477228923199928, 3.5875966590899067, 3.1325976360992223, 3.815192594355505, 4.130098014407306, 5.324887413488901, 4.0293697715526, 3.7855880595004616, 5.4857933031842006, 4.712364288484466, 3.5414430307706013, 4.005206501092406, 3.428061338428398, 2.5862896216947666, 5.428375045770668, 3.0565021717030088, 6.88332813135926, 3.5157296886725664, 5.383787867278493, 5.309828771067739, 2.868973988358683, 5.73441065500491, 2.9363462048469797, 5.262414126269302, 2.4842481312463285, 3.9468575024224317, 7.160672722741019, 5.6842631929918275, 5.3846594642083785, 3.217167148889696, 2.8795150123290947, 4.822593188502276, 4.959738879073421, 3.4847221872971104, 4.3894956706704615, 2.677970426252095, 4.304678793502986, 5.453850101121076, 3.436388541251816, 3.445691281852309, 3.0677708839767366, 4.1354685347455105, 2.6098233908478425, 4.478518272824466, 5.896530724064514, 6.485295295729226, 6.022785832261278, 3.3208617154470166, 6.784526551091251, 4.23719563461937, 6.341096299638958, 3.5371119395963673, 2.4751359182347747, 5.330365900224888, 5.436526188808061, 6.55377071299232, 9.874166038884729, 5.555539106886324, 4.875730892562853, 2.342316608327096, 2.62848807717353, 2.746140860756325, 3.1044399809357537, 6.158894685547486, 6.529412605420135, 4.780725257246225, 2.5934658112255673, 4.885532290945236, 2.6139477589599256, 6.416918289367848, 7.508012201481509, 5.828330821416622, 3.7553464227918076, 5.888721896418373, 5.338820200285632, 2.8780305976441056, 3.7769764951222737, 4.32084552260917, 4.574202165629892, 5.277495974265437, 6.939153873383257, 7.998003868032879, 7.2934325765989, 2.8722992510710657, 4.387713496506572, 4.078563422614271, 3.8468216102766064, 4.185684931684357, 3.306227752778978, 5.007154982842824, 6.3754373275551925, 3.8536784742622094, 2.258439444921227, 6.48986271552212, 5.819531970238624, 4.517575115662506, 5.675275161862746, 3.592896095795015, 3.3838796989300053, 4.70110840986152, 4.859423981129573, 3.42651252679344, 4.553532996222317, 6.870553154573253, 6.797996246103568, 3.1029934950457325, 7.707762809033348, 5.34391327985726, 8.213335673073114, 6.2849466518796, 6.109663514126424, 6.180524278269597, 7.271654465221008, 5.0925327877284055, 4.312189225546272, 7.906285593948521, 3.589109460108639, 6.906773112382649, 3.1852459115896607, 3.252044531335879, 4.6647876369071755, 5.433537003061712, 6.291867202473046, 5.58587793895984, 3.438983734419626, 2.989587406329575, 2.979516970658356, 7.2567223087189205, 5.093847141813405, 5.350514329107566, 5.306739323417922, 8.520309570682764, 3.6726533156153507, 2.7147778852551974, 5.87651361162542, 3.2744054238673606, 5.5165517193371505, 5.944535999572096, 5.076348121442564, 7.6516008430371745, 10.237818281880806, 3.5537973174470903, 4.763304517792262, 8.051235037257044, 7.416743533299166, 2.8792841894008476, 7.124265231536284, 6.3015050443396605, 5.985669011654227, 5.071879752602709, 8.280429582755948, 5.602640293495084, 9.119667895992892, 7.361375760998429, 7.324848267504498, 10.980182837106987, 2.930344284223121, 9.872345326452807, 3.540351632834546, 9.584491078466401, 6.060920491959633, 5.516674162386754, 6.167920794161975, 5.9822377470544845, 6.793237525814827, 2.6416355855903317, 3.254949933940223, 3.0219395756692533, 12.331996935385154, 7.487642037487513, 11.309851115404319, 7.286018330013579, 4.019693137671359, 3.0598838459988547, 4.946270717347273, 4.0457562642467675, 5.868357399016651, 6.920776049272143, 3.490926315537537, 6.865819560043252, 6.511525272659416, 3.1847397571157496, 7.675608607823192, 3.3720506295007775, 8.256572619260702, 4.83107408728261, 11.165457723575598, 3.0982443967219075, 3.168301288713038, 3.0939191150679, 6.615737602250894, 2.7537683581721897, 3.4187608316953026, 2.666858837076645, 2.266827103814008, 2.0947638495007332, 2.17944616770195, 2.659162259636854, 2.2156046586707796, 2.60586774415319, 3.1714198799500006, 2.7438015337341857, 2.013495299002913, 2.7217175733697574, 2.8198578186230105, 2.5545075470912026, 4.0801178014451995, 3.2744424475225093, 2.7912121017759524, 2.9259402437812123, 2.7521480659599518, 4.347914510416266, 3.451798977150686, 2.354401551680283, 5.618551934984759, 2.193482996740131, 2.208056644948886, 2.492867748897141, 2.4710474352228573, 2.971141130701564, 2.301743874720598, 2.0936613503523076, 3.878145893490144, 3.055443647699325, 2.85783239515972, 3.6052117973893987, 4.998268768924948, 2.4077930178616103, 4.196643241591237, 3.894661626344177, 3.0258204682304, 2.7419352062133893, 2.8640673672465105, 3.1834690524856915, 4.389762811374038, 2.5815241534185, 2.673474770292786, 3.5991390832294643, 3.0860972063416887, 2.307465893321933, 2.678070973597986, 2.2793103635410725, 3.999763276304212, 3.2537697959615457, 3.8463176397533814, 3.5469250357214555, 2.5175578342480684, 2.4706082072559483, 4.362880494887253, 3.564866267442155, 3.77742109831946, 2.830570793120928, 4.876455534651667, 3.6108804055587416, 3.0356393735990355, 3.589611841024335, 3.1883026754530914, 2.9467070821751262, 3.3350450183157014, 3.8629712613747786, 91.57271031088794, 3.6813644758454553, 3.1728465048858956, 3.618322218636689, 2.5716970055826494, 3.643314944311795, 3.025809527167376, 3.614198431574549, 4.946629160941255, 2.969584244385842, 3.5229829823864645, 3.5452883613791433, 4.044783107544041, 3.6564880061522222, 3.397265548043926, 2.8819341345759275, 2.706058061113446, 3.2119145803189872, 3.2532082933294575, 3.2504013829050193, 2.6014615288927923, 2.829021074553617, 3.7784134273113206, 6.352880654409728, 3.024809541596215, 4.179745476077816, 3.4913135196954586, 4.94536047231928, 3.6910711851042133, 3.816857550483803, 3.538012694753943, 66.8326012788017, 3.1641909766359366, 4.0221451348193735, 5.106141799879855, 3.8706411129146483, 3.433867024896049, 3.960220097463302, 3.7070151791302735, 3.4003388296394492, 5.017397707382227, 3.4381016942069538, 4.027255017098147, 4.738046374644824, 2.731076788883799, 3.6558387341001164, 2.8372485355519848, 4.468082887298003, 3.8210304168513987, 4.681046142719956, 4.8972248772528575, 3.103946325659504, 5.051769664563316, 2.6970636893931186, 4.611031710185289, 3.6935915619328505, 5.02081321273067, 2.7587115359267242, 4.182216276415231, 4.3228623146672795, 5.514156444596005, 3.1974201885273255, 4.856676664802623, 3.601672046990712, 4.024780651442594, 3.0902998026480297, 4.1087528270220375, 4.289562526438588, 4.643364901265132, 4.265819300523597, 2.7842287502740546, 5.432025910999075, 4.369088484838574, 3.9766669689682783, 4.905547617073449, 4.929480819822422, 4.212358978945036, 4.395140274926752, 5.6610931546025185, 4.616733137070813, 4.449113511919491, 4.094760761873677, 4.131434931144262, 4.645167401436923, 6.103674562825525, 3.273782014356874, 4.2188267760566935, 3.892894899601086, 3.0524471984062087, 4.721039220191031, 4.325348247923329, 5.657456820480561, 3.9032993841442902, 4.028720851032231, 3.3909942730696225, 4.04864496358901, 3.729554157071643, 5.937048450290638, 3.783694012053614, 6.480918428227767, 5.691380219865798, 5.085733478083838, 5.929019615735686, 4.788209316276908, 4.624350280907178, 5.160270887130513, 4.2502992165936275, 3.984762830867011, 5.208770394607292, 4.817653013154668, 6.891459297362692, 4.587789939688247, 4.0102863146674395, 6.689871210679345, 6.0893627030132365, 3.6696850982282574, 5.260170653616448, 3.7503143894469217, 6.531246236311823, 5.2452582631814435, 3.6968751717447264, 3.3814597813645544, 4.162020832251603, 3.3835093113345236, 5.455368331978836, 4.044859992139678, 3.9842830397851845, 4.809276745044106, 4.029341510589877, 5.92622141049532, 5.350674888771843, 3.7075702233866514, 4.685122689397689, 5.8900827194489445, 3.7731546781215615, 3.5668277483393007, 6.053951687665202, 5.0813269162585035, 5.859255204271522, 8.133942571880246, 3.9568335893514472, 3.73618948900399, 5.911673617860075, 4.464972268092369, 5.556295371089113, 4.416309828385478, 5.891875715609339, 4.6917835290699115, 3.931233333905804, 3.6727973366691753, 4.392488502839559, 4.220744508842373, 3.1536078471743343, 5.226812686786021, 3.760695424336947, 5.239661568029946, 6.565186591335937, 5.0171466403743725, 5.975016202887991, 5.016365747747235, 4.536435827133136, 5.323348296410992, 5.810985363288084, 3.5599755400457824, 4.728255913364705, 3.8841760692474008, 5.1783029520067725, 3.543671105513529, 5.1877294342622875, 3.546222050875989, 10.347320302073099, 4.76668183807907, 5.189019369227344, 7.238626640641681, 4.707683257915951, 3.9326195652962066, 8.075293048863951, 3.4859346829174465, 3.5603918365274603, 3.498442275401647, 5.504125343176911, 6.248822610751388, 6.1791385444565154, 4.93427452007578, 5.084014726671218, 4.089159447557775, 5.144025038759577, 3.7496642685911783, 6.9653661035057475, 3.2800372217441627, 5.864021266160139, 4.173150247526068, 3.3912902284331055, 6.522514255946558, 4.506129352710574, 3.785969518100486, 6.5580137991737235, 4.135595721333201, 7.9709375254688, 5.219994362868715, 3.969199746160271, 4.226416365585985, 5.9028796112747, 3.9472565373918944, 8.209847841045546, 5.555233714153534, 6.287188795817716, 5.41280273288215, 5.9177074389376925, 4.525923346489139, 5.791191793112085, 5.184116708119972, 5.631392925807962, 5.673229146173613, 6.187064799458805, 5.690588941374298, 4.400313305117368, 5.21614414254065, 5.00183306094884, 4.778971446538463, 6.484802989541971, 4.906886844260922, 3.815969607724091, 3.9264442547987697, 4.665983183675791, 4.1814439072985765, 4.1834551178074015, 4.831303081224841, 6.687328730529086, 5.1465432618850055, 7.000377236647454, 7.669140371827743, 4.503662587345473, 5.414653395760954, 4.6360168127229775, 3.241249163728489, 5.080079407538785, 9.457863626316756, 4.446201482327788, 4.715387045652026, 4.6404336229001375, 114.02916666666667, 11.158934740111135, 3.6179372595988086, 5.002406960922434, 4.558376940416139, 4.511700501759067, 3.3624464538459575, 5.315464114360807, 3.5021117624091023, 4.575735709830039, 2.931167808588573, 4.807231945295333, 5.426659043302755, 9.801917397591227, 3.606664501239785, 20.000134687043616, 6.055099280377348, 3.5678678076438706, 7.8040039337343154, 3.6490092710444446, 3.240174887129827, 4.500183640682787, 5.448395637838076, 4.045854720323608, 3.8961196442437553, 6.836282537322123, 5.011870102085729, 4.315908925306105, 5.418986002334764, 4.679576580580485, 4.45438609638087, 5.586790831191458, 7.84547566102708, 5.885675211455833, 7.01649637341442, 3.694461608356389, 4.634581902510023, 3.6437450473184274, 5.047927237682657, 6.293101720989712, 6.557146208913808, 4.828446961420891, 11.013992064437781, 3.6829293010554975, 5.194868209867976, 6.270873540518401, 5.247203636505837, 4.8972279414137825, 3.9126458622783984, 6.537271230644535, 5.882622658615142, 6.753197814342202, 3.7930020765752137, 7.376822735936295, 7.237223889089434, 5.380025485659588, 7.643469548980505, 5.976578493720602, 3.98425822140471, 4.531865509268334, 4.008622353714991, 6.487385634064572, 3.120205005153734, 4.937216622996019, 10.166526030270436, 5.33915761844896, 8.759060791189931, 3.1712918365304494, 4.652062988233563, 7.196814460893425, 4.284467687112782, 5.0520456712438255, 4.945205181435234, 4.44438579257481, 7.2066521308337155, 6.761718658924465, 3.963772498165152, 3.7692938750806957, 3.7748700201947747, 4.888456395873874, 6.084115454206829, 7.347942394826268, 9.552670421255813, 4.563708506456302, 4.6945606412814, 3.287730115701165, 6.627206238310917, 4.231002375363244, 4.47334423502774, 112.17164281663736, 4.405458880380222, 4.171069326729994, 8.870677165734453, 4.074771194451311, 3.7434416310805037, 5.698674809975017, 4.501616093146417, 3.9159627210236305, 5.8730473556205975, 3.9903570993159367, 6.37423019007103, 5.172724756813935, 4.58515949857763, 7.9850717604634, 5.414395800499509, 5.915227069420454, 4.67997499348663, 15.651274203112605, 3.8319491698687753, 4.075266016201829, 5.919704658486967, 3.5188534123870943, 4.782542605087985, 6.328257747846602, 6.227897023906547, 4.48309764668923, 4.9671455336978765, 7.390168962902779, 4.98568965791647, 7.266773332876196, 8.412956231908932, 5.48375069406418, 7.304278638879564, 4.323423020170953, 11.157372426960256, 3.6996826438829453, 4.074172944502642, 4.83158867964644, 4.457618289219833, 4.651540069858034, 4.588892332484567, 5.3627602298130235, 3.5446623600241476, 6.897544922462426, 73.54592488230713, 3.581056998077067, 5.9238092721629725, 4.276748760979162, 4.287828005409622, 15.776662968687486, 4.8219372726266645, 5.936965874078089, 8.383031773804413, 3.5528720165977674, 5.9581041742565555, 4.188658110611031, 3.920504226828131, 8.053123157367732, 4.668529739940333, 8.41590145173515, 3.6492106761835887, 4.656950310851449, 4.727182218523711, 9.738121408156632, 7.56547656631185, 4.5156682521285365, 6.426305932713351, 5.621130480623295, 7.5421604636783375, 4.657412403729312, 8.892899210206338, 5.163551873783113, 5.046241309743411, 9.219722334499348, 5.689805198476793, 4.752440741088711, 5.160585278510019, 4.618670921083705, 7.786209704206549, 6.309770264920504, 5.004721189405228, 6.908694263956865, 8.874429048978833, 4.942388223511625, 5.60091646689914, 5.267473455480562, 5.020882099279326, 6.764731325820961, 7.48902313208815, 5.093917779359989, 9.502668225621576, 3.7841151372351503, 4.587291422879952, 4.704452371210945, 4.704888813517309, 3.1647171365994886, 5.912495265677926, 10.828133522556133, 4.6289694592511275, 4.585820551791321, 10.603682775546957, 3.6611302972007147, 5.6969333402294025, 7.892222233520258, 4.8707119863738235, 12.768949521760167, 3.7454050236670673, 3.891410721341946, 7.104276184984107, 8.680172107820319, 4.080642353768982, 5.784738568169765, 6.900408796762545, 4.438949572159638, 3.773086171473992, 4.029547922319234, 5.438490529955845, 5.302302711385762, 4.461075322221949, 4.712363634866054, 5.546813928151976, 3.98453183666606, 6.714540149799347, 5.319514512822134, 11.36237559157177, 4.552022149152446, 7.156785147494494, 5.288562889581543, 5.904109387012734, 6.5831100538100475, 4.86876425880585, 4.870498362165367, 4.703307292426606, 3.5642690689331094, 3.025718932343065, 4.4620065984622235, 4.746831735399072, 5.917194043295348, 3.3374201095146203, 12.283095440867807, 4.659496073108648, 3.8781479310750444, 6.531958504341498, 4.421132817996439, 5.5750296718900225, 4.097888417384225, 5.057477409936974, 4.249051696490203, 5.8392091443212415, 3.922920121125648, 5.160174876720053, 16.183900660932007, 7.270916113093188, 4.053010491311951, 4.9803996535127695, 6.770116050891237, 6.7818346442614175, 6.967568633118546, 5.914101563211945, 4.380256770536154, 5.1814173838251705, 6.253818092578327, 4.422314575221432, 7.708296155915895, 5.192401403145199, 7.955853781011071, 5.638174256690393, 5.728373215176868, 6.342684739966915, 6.989658691082775, 4.887781929457405, 5.696999413189341, 6.055909608527767, 6.367848761419463, 5.81634857287425, 5.583309272912332, 6.218537593342466, 11.323709281711277, 6.092126853163, 5.394679136793757, 4.478248676510953, 5.652953468653985, 7.856802888720715, 3.6250683124934913, 5.000035892121128, 5.920869530871397, 4.3998786101028005, 6.32505776774248, 4.38175735462799, 3.718287043085531, 11.248670089341333, 6.178975484652476, 4.433129639845597, 5.998182418224579, 5.199652794316691, 5.704427737588539, 16.6353311652237, 6.284513692598696, 5.551214921670748, 7.125492703885347, 4.989500890302429, 6.57986820470262, 10.218872967101005, 4.351644420396437, 5.490953740155567, 212.3285714285715, 4.839548289998201, 5.299953999645585, 5.440232836061417, 5.596103284688051, 10.829980535626834, 7.824135060349622, 6.829418782013274, 5.778855577392975, 10.68623218122373, 5.723417350065048, 3.8043043683572235, 6.697167139579886, 6.200785955307497, 3.7657465681360383, 6.051100727274255, 4.617849110377838, 4.102702360029696, 9.08664754227254] disp = hash_iot d1 = pd.Series([s for s in disp]) sorted_d1 = d1.sort_values(ascending=False) N = 1007 pred_rrcf = d1 > d1.quantile(0.9) print('Displacement: ', d1.tolist()) print(metrics.classification_report(true_anomalies, pred_rrcf)) for k in [100, 200, 300, 400]: top_k_real = anomaly_detection.get_top_k_anomalies(sh_vector, k) top_k_disp = anomaly_detection.get_top_k_displacement(sorted_d1, k) anomaly_detection.get_top_k_performance(top_k_real, top_k_disp, true_anomalies, pred_rrcf, N) real = [] for index, row in sh_vector.iterrows(): real.append(int(row['anom_count']) * 0.05) plt.style.use('seaborn-darkgrid') fig, (ax1, ax2, ax3) = plt.subplots(nrows=3, sharex=True, sharey=True, figsize=(8, 5)) ax1.plot(real, color='blue', linewidth=0.5) ax1.plot(hash_iot, color='red', linewidth=1) ax1.set_title('SnapSketch', fontweight='bold', fontsize=8) ax1.tick_params(axis='both', labelsize=6) ax2.plot(real, color='blue', linewidth=0.5) ax2.plot(sl_total_hash, color='red', linewidth=1) ax2.set_title('SpotLight', fontweight='bold', fontsize=8) ax2.tick_params(axis='both', labelsize=6) ax3.plot(real, color='blue', linewidth=0.5) ax3.plot(ss_total_hash, color='red', linewidth=1) ax3.set_title('StreamSpot', fontweight='bold', fontsize=8) ax3.tick_params(axis='both', labelsize=6) plt.xlim([200, 2500]) plt.ylim([0, 120]) plt.xlabel('Time', fontweight='bold', fontsize=6) plt.ylabel('Anomaly Score', fontweight='bold', fontsize=6) plt.tight_layout() plt.savefig('results/iotplot.pdf') plt.show() <mask token>
import argparse from sketching import Sketch from anomaly_detection import AnomalyDetection from graph_utils import GraphUtils import glob import numpy as np import json from collections import OrderedDict from json import JSONDecoder import pandas as pd import matplotlib.pyplot as plt from sklearn import metrics from sklearn.utils import shuffle from sklearn.decomposition import PCA def parse_args(): """ Usual pythonic way of parsing command line arguments :return: all command line arguments read """ args = argparse.ArgumentParser('GODIT') args.add_argument('-d', '--sketch_size', default=256, type=int, help= 'Sketch Vector Size') args.add_argument('-k', '--disc_shingle', default=32, type=int, help= '# of Discriminative Shingle') args.add_argument('-p', '--prob', default=0.2, type=int, help= 'Random Probability') args.add_argument('--directed', dest='directed', action='store_true', help='Graph is (un)directed. Default is undirected.') args.add_argument('--undirected', dest='undirected', action='store_false') args.add_argument('-l', '--walk_len', default=50, type=int, help= 'Length of random walk ') args.add_argument('-n', '--n_shingle', default=3, type=int, help= 'Length of a shingle') args.add_argument('-f', '--filename', default='vast', help= 'Dataset filename') return args.parse_args() def graph_sketching(args): with open('graphs/graphs_' + args.filename + '.json') as jsonfile: graphs = json.load(jsonfile) print('[ ', len(graphs), ' ] graphs read successfully') sketch = Sketch() sketch_file = sketch.shingle_sketch(graphs, args) print('\n Done Batch Sketching...') return sketch_file def main(args): ad = AnomalyDetection() files = ['graph2vec_mutag187_dim_128.csv'] for f in files: print('\n\nFile: ', f) sh_vector = ad.read_sketch_baseline('sketches/baseline/' + f) ad.anomaly_detection(sh_vector, args) def visualize_taxi(): anomaly_detection = AnomalyDetection() if 1 == 1: sketch_file = 'sketches/nyctaxi/dim_64_n_3_k_128p_0.2_l_50p10q5.csv' print('Sketch File: ', sketch_file) sh_vector = anomaly_detection.read_sketch(sketch_file) disp = anomaly_detection.robust_random_cut(sh_vector) sl_3month_24_24_1000tree = [0.0, 1.0000000000000007, 1.3069999999999837, 1.5749999999999693, 1.8219999999999728, 2.089499999999967, 2.1954999999999685, 2.4909999999999606, 2.805666666666629, 2.9281666666666295, 3.0729833333333003, 3.1683499999999607, 3.7842666666666394, 3.526116666666626, 3.547061904761867, 3.555507142857105, 3.844892857142829, 3.760817857142824, 3.6357361111110755, 3.715322619047586, 4.015897619047585, 4.13106785714283, 4.2710889971139725, 4.4617252525252225, 4.676477020201991, 4.354473448773429, 4.21600274170272, 4.040540223665191, 4.136821212121185, 4.377090945165925, 4.151008874458854, 4.3032929292929065, 3.893516883116856, 3.761827056277031, 3.848441341991319, 3.7394662337662092, 3.870903066378041, 3.839645707070682, 3.7634993145742905, 3.662225288600264, 3.557498268398248, 3.546423088023067, 3.437322943722922, 3.516349458874432, 3.7988536796536505, 3.5630521284271026, 3.5901415945165724, 3.820980303030273, 3.9180819624819345, 3.734498015872985, 3.5302974025973737, 3.6719216450216186, 3.8837171717171404, 3.758740548340518, 3.848997113997084, 3.8676169191918874, 4.496036760461739, 3.6177753607503376, 3.8619676406926144, 4.147067929292907, 3.5590136363636065, 3.6623922077921858, 3.7350548340548118, 3.729756782106761, 3.6178666305916067, 3.754875396825372, 3.587275613275586, 3.686499531024512, 3.3453290043289767, 3.561392027416999, 3.576660858585829, 3.56763726551224, 3.895365151515122, 3.4605695887445607, 3.6585208874458655, 3.594863852813823, 3.756620274170249, 3.622473376623352, 3.8295047258297004, 3.827783802308775, 3.887875072150057, 3.62666792929291, 3.827956782106755, 3.7893905122654874, 3.825775829725811, 3.6092622294372076, 3.589380772005751, 3.6329274170274, 3.6515268398268144, 3.8500302308802055, 3.561327489177468, 3.7184640692640496, 3.712509343434319, 3.546767243867226, 3.8106080447330215, 3.472430266955243, 3.753269372294346, 3.6059611832611607, 3.606277886002855, 3.5701953102452837, 3.7618476551226276, 3.82646277056274, 3.7214350288599967, 3.6715644660894373, 3.8966181818181496, 3.658271681096653, 3.8297926046175745, 3.5934492784992567, 3.9022642496392215, 3.698930735930712, 3.7655356060605834, 4.22597597402596, 3.6396637085136834, 3.729202633477606, 3.623097691197661, 3.959602344877324, 3.559363203463182, 3.7172894300144144, 3.3392061327561167, 3.755216738816722, 3.6067015512265224, 3.6207683261183017, 3.9007072510822227, 3.7254467532467253, 3.477940909090883, 3.8705008658008397, 3.5902923881673576, 3.900582287157263, 4.053705988455959, 3.796682323232295, 3.780787229437203, 3.9704607503607203, 3.7233017676767424, 3.697792171717144, 3.7598486291485975, 3.8793067821067546, 3.909909848484819, 3.7378263708513493, 3.8320799062048794, 3.9601289321789075, 4.308169300144279, 4.2086202380952304, 4.1125421356421175, 3.8586067821067593, 3.718154653679629, 3.809078679653647, 3.966138059163032, 3.951136435786407, 3.9802998917748615, 3.9425713203462953, 3.7856691197690924, 3.910652344877321, 3.9663066017315733, 3.977958946608921, 3.780931457431433, 3.820317316017289, 3.6599736291486047, 3.707707647907621, 3.725441883116858, 3.5673902958152763, 3.5991937590187337, 3.8827389249639017, 3.8220121572871335, 3.5044704545454297, 3.439539393939374, 3.3874304112553855, 3.3518844155843888, 3.3086836580086327, 2.9474969336219066, 2.8205874098123855, 3.2005816738816444, 3.1988915945165606, 3.125726515151481, 3.2303779220779036, 3.1010323232323014, 3.102419083694056, 3.068896789321767, 3.0816936147185885, 3.215689862914838, 3.385117207792184, 3.3956795093794767, 3.195732323232299, 3.265265007214983, 3.1392999639249446, 3.264929365079339, 3.4748344877344643, 3.208597294372267, 3.622541450216432, 3.4296585497835257, 3.5167829004328715, 3.7117974747474483, 3.6494369408369183, 3.6282344155843878, 3.7499116161615835, 3.72148538961036, 3.4892155844155557, 3.6508107864357613, 3.7926731601731336, 3.391973881673852, 3.887472186147164, 3.7511802308802067, 3.8429490620490383, 3.847867676767653, 3.7793133838383612, 3.801909920634893, 3.745292316017292, 4.041810064935048, 3.7616010822510555, 3.955913167388137, 3.963381349206331, 3.8228332611832396, 3.579587121212097, 3.4770942279942068, 3.7541075757575473, 3.79021580086578, 3.912270274170249, 4.066463924963898, 4.003379906204885, 4.0052485930735715, 4.156482323232299, 3.9260842352092147, 4.097521320346294, 4.045806673881648, 4.1314053751803534, 3.8381345959595765, 3.587890620490595, 3.9608605699855457, 3.668929040404014, 3.770212914862898, 3.5402694444444123, 3.585081060606036, 3.4611156204905957, 3.354173665223642, 3.4407172799422505, 3.515055014429991, 3.533650288600266, 3.619540079365053, 3.357846428571407, 3.2724475829725543, 3.3691640331890023, 3.688166269841241, 3.5040137806637435, 3.3259152236651937, 3.540546212121185, 3.5978412698412443, 3.5661549062048783, 3.4603155483405175, 3.381314105339083, 3.664481168831142, 3.559792316017284, 3.800688311688291, 4.76248813131311, 4.174080050505028, 3.781430158730134, 3.7634084415584184, 4.048151154401126, 3.7405865079364835, 4.0043095238094955, 3.739411219336193, 4.270551118326098, 3.8755366161615945, 3.7922791486291203, 3.971384379509358, 3.8612339466089214, 4.005365764790739, 4.140303354978328, 3.9664880591630367, 3.8060173520923275, 3.931700649350624, 3.862881168831139, 3.921066486291457, 3.756006782106756, 3.8823032828282575, 3.8607837301586994, 3.8950672438672154, 3.832847150072125, 3.527478751803729, 3.601055447330423, 3.698805663780636, 3.4474857864357644, 3.750525793650768, 3.599419264069234, 3.4653589466089207, 3.829073484848455, 3.447042424242396, 4.093282828282808, 3.6722832611832312, 3.564764105339074, 3.8253759379509096, 3.767274494949472, 3.939715187590156, 3.8363546897546583, 3.571977741702715, 3.8106083694083455, 3.6345401515151226, 3.924849278499249, 3.7938874458874174, 3.9271287157286885, 3.8956906565656326, 3.965942207792181, 3.9157770923520667, 3.9402582611832373, 4.490846067821058, 3.897951623376607, 4.0916613275613125, 3.7592698773448507, 3.903860461760436, 3.9230887085136796, 3.844913780663757, 3.574144877344853, 3.9054419552669337, 3.5425164141413803, 3.4547947691197436, 3.6863794372294136, 3.76660689033187, 3.787290584415554, 3.5852249278499024, 3.3435772727272455, 3.3772877344877075, 3.6352774170273934, 3.56096558441556, 3.701559415584389, 3.4648298701298454, 3.9327364718614426, 3.809838924963904, 3.6214967532467277, 3.820830266955253, 3.6022968614718383, 3.5950069985569777, 3.5158109307359133, 3.3681872655122373, 3.327917568542544, 3.257087301587282, 3.1492856782106555, 3.131523809523785, 2.8823072871572584, 2.9961978715728543, 2.838357828282802, 2.8527597763347474, 2.954603427128402, 3.085678823953801, 3.186112481962456, 3.1077302308802066, 2.861977813852789, 3.0699853535353263, 3.1257018759018496, 3.2181551948051696, 3.1954116883116623, 3.041358405483387, 2.951494877344863, 2.922761940836916, 3.036607972582944, 2.9529673160172902, 3.062448015872991, 3.335139718614696, 3.497888275613258, 3.656845670995646, 3.7393582972582684, 3.7651746031745774, 3.787149531024506, 3.913758333333307, 3.983562734487709, 3.7659469696969428, 4.034907251082223, 3.7833126984126695, 3.8380386724386404, 3.8034597763347424, 3.75308964646462, 3.8597727633477397, 4.166514935064909, 3.987993975468956, 3.981965331890302, 4.159145707070686, 3.9931064213563956, 4.164266666666647, 4.548593181818168, 4.005048953823927, 3.8002693722943457, 3.9042592352092123, 4.215628102453091, 3.837902813852799, 3.7273817460317153, 3.8264467171716903, 3.8019875541125288, 3.983259776334744, 3.8695760822510574, 3.5565028499278215, 3.675079292929267, 3.636276623376596, 3.5744255050504776, 3.6771806998556738, 3.5959114357864097, 3.660600649350634, 3.734209848484838, 3.714772546897526, 3.6122490620490395, 3.7443204545454254, 3.7384215728715473, 3.3945695887445693, 3.6578407287157058, 3.5878882395382132, 3.3685573593073377, 3.6852617243866987, 3.535026984126958, 3.432802922077896, 3.8117803391053258, 3.389550865800834, 3.407892893217866, 3.3898312049061787, 3.458620093795068, 3.4856037518037213, 3.4122480519480214, 3.3716331168830878, 3.5281458513708266, 3.480547835497807, 3.5022249639249368, 3.5978719336219136, 3.6419860028859747, 3.528142929292904, 3.6182410894660597, 3.5675144660894427, 3.5687557720057494, 3.4306428571428293, 3.6162410173159922, 3.387638924963901, 3.457994769119747, 3.6762860750360526, 3.4295958152957926, 3.3442378066377763, 3.3687195526695275, 3.442358982683957, 3.6152843434343236, 3.377038383838355, 3.246517243867219, 3.435268542568513, 3.3391543290043044, 3.363836291486265, 3.4306038961038663, 3.341835028860002, 3.396813564213544, 3.3936194805194546, 3.26737204184702, 3.243939610389581, 3.2504365800865607, 3.2946102813852636, 3.370105339105313, 3.4209319624819403, 3.453070382395357, 3.418980808080788, 3.5703095598845342, 3.430544083694061, 3.8854875541125358, 3.4231378787878497, 3.5119530303030078, 3.6576691919191675, 3.5083237734487493, 3.7449314574314316, 3.808185930735905, 4.129641089466064, 3.9677842712842377, 3.974645598845572, 4.1553882034631755, 3.900088816738788, 4.24138719336217, 4.111257683982658, 4.087929401154372, 4.049108008657985, 4.0701995310245085, 3.9891628427128145, 3.963061363636335, 3.994612229437209, 3.9874138167387856, 4.0791575757575576, 4.121156637806615, 4.485716810966793, 4.025023629148598, 3.9784017316017017, 3.9088161616161394, 4.3901150072149875, 3.59272734487732, 3.899371933621916, 3.5207989898989593, 3.727648232323208, 3.8047510822510584, 3.838017424242399, 3.7218655122654862, 3.589245490620465, 3.650242821067796, 3.5364736291485994, 3.7116599567099287, 3.561733369408349, 3.841637770562747, 3.632162337662319, 3.6258198773448527, 3.569407683982657, 3.476981673881661, 3.5824769119768893, 3.520297979797963, 3.480156493506469, 3.5367308802308544, 3.2851445526695304, 3.2986308080807785, 3.117983982683955, 3.1411892496392344, 2.937624675324657, 3.0914075036074746, 3.024083044733019, 3.1415005050504803, 3.1317475468975213, 3.065906024531001, 3.0378583333333085, 3.079317316017295, 2.9872506493506292, 2.9378844516594285, 3.192442279942253, 3.097848196248177, 3.3933005772005527, 3.2199513347763054, 3.2792361471861247, 3.387874639249614, 3.3847071067820798, 3.2992914862914566, 3.3895871933621735, 3.5103193722943455, 3.8033667748917517, 3.8142067460317213, 4.185297222222198, 3.8993333694083394, 4.163558838383809, 4.010114393939368, 3.9951099927849687, 3.895227092352062, 4.0262886363636134, 3.8292652958152695, 3.9305909451659176, 4.0220564213564005, 3.985374819624792, 4.072601010100987, 3.912447907647882, 4.257089285714266, 4.10203957431455, 3.8865015151514943, 3.976708333333306, 3.7658345959595754, 3.7606777777777505, 3.9296894660894406, 4.686601875901852, 3.469238852813825, 3.3356275974025724, 4.022192424242403, 3.565645526695502, 3.7199209956709667, 3.5822755772005515, 3.7018393217892904, 3.562673304473283, 3.538736616161588, 3.662297582972556, 3.5100280663780383, 3.841917821067789, 3.4954447691197426, 3.637116738816711, 3.5369760822510607, 3.3660578643578396, 3.272842532467507, 3.3586895382395117, 3.3367314213564025, 3.7297417388167067, 3.486798953823928, 3.393612590187564, 3.5102509740259538, 3.6423803751803483, 3.550006926406902, 3.478563455988429, 3.466908477633452, 3.253095274170251, 3.2904459235208976, 3.312834668109645, 3.246499386724362, 3.2734208152957875, 3.2372036075035835, 3.320627813852784, 3.390543722943697, 3.348068073593046, 3.340807070707043, 3.3954007215006925, 3.627350324675299, 3.368369660894638, 3.3558003607503335, 4.468613239538213, 3.931026551226531, 3.232941053391027, 3.1400388167387963, 3.1127095598845314, 3.0500558080807787, 2.954229906204884, 2.897004761904732, 2.8382976911976594, 2.90321186868684, 2.998626479076451, 2.919464790764774, 2.9667556637806385, 2.8921312770562553, 2.9477972582972316, 3.014097763347738, 3.018316414141388, 3.2628918831168594, 3.041845562770536, 3.0241494588744318, 2.906570743145716, 2.9782071428571144, 3.22624325396823, 3.102931457431432, 3.21499581529579, 3.5689703823953542, 3.7453371572871283, 3.8508089105338845, 3.8520875541125275, 3.934362914862884, 4.2473748556998325, 4.374470129870104, 4.34331100288598, 4.570180699855675, 4.436586507936485, 4.657251190476171, 4.698761580086561, 4.734169336219309, 4.507809126984098, 4.569170779220754, 4.431891919191898, 4.195352777777759, 4.312986075036055, 4.291649891774866, 4.370642568542543, 4.329778102453078, 4.643488708513697, 4.157881385281362, 4.155911544011521, 3.977417640692621, 4.1996764069263826, 4.003964971139949, 4.16765494227992, 4.1777886363636165, 3.887695562770535, 3.929709704184683, 4.073664682539657, 3.8862630591630323, 4.119496320346292, 4.2433093795093555, 4.283841883116861, 4.38894606782104, 4.071688528138507, 4.306836976911949, 4.128269300144277, 4.229571284271262, 4.34458658008656, 4.297584668109647, 4.264283513708491, 4.107510750360723, 3.956600793650771, 4.207434956709934, 4.148274458874427, 4.068585678210656, 4.138097655122633, 3.931196969696951, 4.166243181818156, 3.663754725829699, 4.874830483405459, 3.7658516594516325, 3.6013600649350357, 3.4461573232322977, 4.120573088023073, 3.6990381673881516, 3.3915360389610205, 3.1195303391053155, 3.014289213564191, 3.276704978354951, 3.2121335137084883, 3.2805810606060364, 3.025265764790739, 3.0342666305916093, 3.394932215007191, 3.3480020923520653, 3.2993644660894437, 3.5193159812409522, 3.5682007215007014, 3.5242158008657705, 3.3401055194804905, 3.4553292207791952, 3.4600530303030097, 3.321127777777753, 3.419877669552644, 3.7292101370851163, 3.6583158369408126, 3.8965307720057467, 3.8725435786435525, 3.790794877344855, 3.9469353535353315, 4.1162538961038795, 3.700244624819597, 3.612354473304447, 3.727044733044705, 3.7304282106781854, 3.98598737373735, 4.138390440115433, 3.919290548340518, 3.8524636363636087, 3.7910224025973758, 3.845505158730142, 3.742465476190453, 3.7556898989898713, 3.8262547258296986, 3.5784878787878527, 3.9114307720057595, 3.4552044733044456, 3.567600180375154, 3.4313984126983863, 3.401360966810941, 3.5103294372294087, 3.6384211760461493, 3.8652794733044473, 3.715522222222193, 3.779893470418443, 3.6110560245310026, 3.9477557359307105, 3.7382902958152635, 3.6272431457431145, 3.8114130952380703, 3.589814754689732, 4.252455014430003, 3.5765370851370677, 3.723493903318872, 3.8770554473304273, 3.5736971500721255, 3.763515295815272, 3.642213275613256, 3.713972005771983, 3.5998688672438446, 3.7088554112553878, 3.5845093795093517, 3.4722577561327275, 3.8659555555555354, 3.731688528138506, 3.521431132756108, 3.615512373737347, 3.594215548340527, 3.552064898989872, 3.5401095959595708, 3.3778671356421075, 3.5239008658008393, 3.4611955627705373, 3.5396725468975285, 3.4097870490620243, 3.5159634199133967, 3.6654182539682316, 3.4436435064934776, 3.615361832611805, 3.6146317821067577, 3.7560909090908914, 3.3622375180374915, 4.104397582972571, 3.722199747474724, 3.5234742063491766, 3.6003060245309992, 3.6847856060605766, 3.752629365079335, 3.7615515151514907, 3.513890404040379, 3.758673160173138, 3.6348085497835307, 3.6885209595959347, 3.6889089466089167, 3.695586760461739, 3.695525865800843, 3.563030375180351, 3.5564725829725545, 3.615255663780643, 3.7019891414141175, 3.577038708513681, 4.0729453823953685, 3.650629978354955, 3.765920851370834, 3.648463023087998, 3.3420334776334553, 3.763137734487709, 3.3819734848484626, 3.26821186868684, 3.9324963203463033, 3.172318578643555, 3.2652910894660634, 3.1897095959595747, 3.2310531024530795, 3.2905143217892956, 3.716587806637786, 4.029511111111094, 3.6463707792207525, 3.633013528138497, 3.4885319985569705, 3.702043109668083, 3.546944480519456, 3.814472258297231, 3.7556744227993946, 3.9050549783549493, 3.5125460678210496, 3.9588702741702457, 3.6082806637806377, 3.55336446608944, 4.242823881673867, 3.8487084776334544, 3.9865926406926286, 3.8501867243867, 3.973974458874434, 3.9300356782106567, 3.8559718253968, 3.6832797258297, 3.6501042207791987, 4.025721969696954, 3.98425378787876, 3.727824350649324, 3.745838455988431, 3.857619769119747, 3.930786760461734, 3.8179091991341743, 3.785076515151491, 3.498643542568522, 3.6796484126983855, 3.7284332972582748, 3.6319017676767436, 3.8150584415584174, 3.5664540404040133, 3.8854465367965108, 3.572286652236628, 3.7530837662337495, 3.6120602092351852, 3.850244444444419, 3.4907661255411075, 3.8779781024530875, 3.5696285353535084, 3.5098210317460072, 3.622768362193346, 3.631566738816721, 3.0385994227994035, 3.130394480519464, 3.086548917748889, 3.157018722943694, 3.400051767676741, 3.145829761904736, 2.9783553391053186, 3.0482968614718358, 3.147028823953802, 3.171622438672409, 3.2258710678210387, 3.182476984126962, 3.025765656565633, 3.0395357503607263, 3.0063014430014205, 3.092274170274143, 3.129396212121188, 3.0029436868686554, 3.1793716450216167, 3.3833673520923204, 3.604640656565636, 3.72475786435783, 3.609415440115413, 3.80944704184702, 4.076176551226528, 3.80483755411253, 3.925393145743129, 3.7568223665223384, 3.754287878787853, 3.9045321067820824, 3.935764971139945, 3.6598338744588452, 3.7121851370851133, 4.102635894660883, 3.7114001803751613, 3.868902849927823, 3.8516755772005493, 3.937645202020179, 3.7874272005771763, 3.6604439754689446, 3.4287799422799186, 3.43219303751801, 3.5928251082250826, 3.2985247835497553, 3.8608780663780453, 3.5349104617604437, 3.577312698412671, 3.7108986291486046, 3.664618253968227, 3.503300541125517, 3.5352585858585535, 3.5271295454545215, 3.5093473665223396, 3.618159054834027, 3.6370218614718373, 3.7659032467532154, 3.6995065295815035, 3.6806322871572617, 4.3698994949494825, 3.703552561327535, 3.7189281385281134, 3.5852573953823677, 3.5550431818181525, 3.531359163059135, 3.642188167388136, 3.6219871933621732, 3.5426464285713966, 3.68183946608944, 3.4348717532467306, 3.351419444444416, 3.4285865079364806, 3.1619481962481717, 3.440192568542543, 3.451569588744559, 3.3076804834054583, 3.406962445887417, 3.538660678210651, 3.407075432900409, 3.6088866161615845, 3.3670910533910314, 3.3870066738816504, 3.478925685425656, 3.473933585858563, 3.3733989538239286, 3.269482828282801, 3.282260642135618, 3.6610709956709653, 3.754557323232297, 3.251024170274143, 3.4031607142856912, 3.416929797979773, 4.728027128427104, 4.149669624819608, 3.4141779942279675, 3.615061688311664, 4.057926479076467, 3.665839646464629, 3.768276551226531, 3.804749639249615, 3.6634088023087723, 3.6283515512265234, 3.8206473665223384, 3.692359090909061, 3.505370779220755, 3.6949172077921855, 3.952349350649331, 3.6727893578643336, 3.6294423160172915, 3.47851601731599, 3.6835749639249427, 3.587275036075009, 3.616297258297235, 3.563546969696942, 3.4416384559884254, 3.4944915584415344, 3.60104884559882, 3.5511900072149882, 3.5097429292928983, 3.5381064213563937, 3.532453030303006, 3.74723993506491, 3.6675621212120926, 3.4147556637806398, 3.584078860028832, 3.5540986291485965, 3.7009708874458584, 3.5700239177488897, 3.913049819624798, 3.9272742424242217, 3.729306132756109, 3.7916727994227744, 3.8425975829725525, 3.7705885281385116, 3.7748132756132518, 4.016561688311667, 3.86728351370849, 4.082539177489154, 4.224645526695504, 3.999303535353502, 3.879151767676736, 3.854950288600264, 3.9064401154400863, 3.7516939393939155, 3.688508658008627, 3.4958256493506275, 3.550826659451637, 3.7418735209235, 3.5866668109667863, 3.710135642135618, 3.660099747474721, 3.655001262626241, 3.4882670634920414, 3.541265440115413, 3.625677020201998, 4.040849314574297, 4.153912445887426, 4.072568614718597, 3.7927190476190353, 3.5551117243867005, 3.538172835497823, 3.490922330447304, 3.4323579365079144, 3.4711061327561077, 3.3090009740259454, 3.408359776334746, 3.079012734487707, 3.1662414502164227, 3.057004148629124, 3.1421230519480345, 2.873231746031721, 2.880029004328981, 3.402081637806613, 3.243077200577174, 3.1650222222221966, 2.9905377344877184, 3.048860497835476, 2.9624621933621715, 3.1720605699855398, 3.2693377705627493, 3.0494310606060364, 3.212281601731574, 3.3837195526695223, 3.1435154401154146, 3.3310893939393673, 3.470911760461732, 3.5475894300144044, 3.5205901154400916, 3.713963564213534, 3.8042854256853933, 4.0473790404040155, 4.108113059163029, 4.156097510822495, 4.234290331890312, 4.205331782106751, 4.250613383838352, 3.9982195887445613, 4.093688167388143, 4.233216233766214, 4.3351252164502, 4.289782828282806, 4.067612409812386, 4.167921717171693, 4.198703823953802, 5.091683694083672, 4.222208225108202, 4.008938744588721, 4.028236760461737, 3.7938362914862727, 3.694744372294348, 3.8182236291486094, 4.387076731601719, 3.774653354978341, 3.6516845598845356, 3.6201071789321575, 3.7929100288600037, 3.8905396825396545, 3.885323629148601, 4.040750721500694, 4.001989754689728, 3.7492523088022827, 3.881028066378038, 3.944119696969666, 3.9500112914862675, 3.6578525252525043, 3.7131976551226313, 3.8047356060605857, 3.8232858585858343, 4.086534632034612, 3.877719191919164, 4.066037626262604, 3.8448527417027254, 3.8503155483405234, 4.1260839826839595, 3.7476251443001254, 4.014519336219313, 3.683418470418439, 3.4499757575757353, 3.765331421356391, 3.6876022366522103, 3.714670670995648, 3.402627633477604, 3.541385786435762, 3.72142474747472, 3.5527836580086296, 3.432399386724365, 3.6766056998556684, 3.550921031746004, 3.62999736652234, 3.5474865440115178, 3.599895165945146, 3.7800305194804955, 3.598352597402574, 3.656241558441532, 3.708330339105314, 3.6655175324675136, 3.674650757575739, 3.540394300144273, 3.4105452741702487, 3.696750108225088, 3.230444805194791, 3.384690728715702, 3.52733358585856, 3.503625577200559, 3.4478310606060343, 3.4920450216449948, 3.638375252525227, 3.477314502164476, 3.625184595959575, 3.7734333694083477, 3.4876297619047354, 3.6059088383838067, 3.269282395382367, 3.800552958152933, 3.529877489177457, 3.362266486291464, 3.747488708513687, 3.5825629509379247, 3.5042013708513506, 3.395532178932154, 3.4275414862914557, 3.4830607503607287, 3.580583225108199, 3.500523701298683, 3.665647510822488, 3.872947077922065, 3.584489682539658, 3.6708925324675015, 3.5474015151514884, 3.777408008657997, 3.692966486291472, 3.618909668109646, 3.5757731240980974, 3.5262949494949276, 3.5530803391053127, 3.481832792207766, 3.6205724386724096, 3.5976252525252264, 3.7133051226550995, 3.599511796536776, 3.7823583694083505, 3.4381701659451394, 3.8987237373737123, 3.5573990981240726, 3.856887481962459, 3.9940503607503364, 3.8908225468975237, 3.7740568542568376, 3.821846428571406, 3.746914826839797, 3.6169077200576916, 3.2548594877344668, 3.518979365079344, 3.328475036075012, 3.3889639249639, 3.663383838383811, 3.644399675324653, 3.7738939754689476, 3.7552752525252227, 3.34849595959593, 3.4327408008657727, 3.484907647907616, 3.4551621572871314, 3.7098223304473055, 3.3567260822510656, 3.4373492424242125, 3.4018566017315806, 3.605701118326099, 3.425207720057698, 3.3183412337662075, 3.4041341991341825, 3.6121794733044443, 3.5707371212120913, 3.2857360389610175, 3.158868398268369, 3.3927949134198876, 2.929000865800847, 2.9289778138527915, 3.2477839826839565, 3.021589862914836, 3.0477374458874245, 3.3390720057719814, 3.113381782106758, 3.022324639249616, 3.0006230158729865, 3.025646031746001, 2.9532886724386476, 2.942975216450197, 3.1820893217892983, 3.1149862193361946, 3.0362110028859823, 3.00963181818179, 3.3555391414141225, 3.4641644300144034, 3.203723953823926, 3.4524067460317247, 3.1666521284271, 3.4754823953823673, 3.6918847041846705, 3.6687070346320003, 3.633663383838357, 3.7070770923520633, 3.751210642135618, 3.565179653679628, 3.5964057359307113, 3.4051089105338854, 3.4659439033188697, 3.6208987373737065, 3.5815098124097875, 3.4765953102452802, 3.8375349206349005, 3.6348504689754515, 3.8166445165944927, 3.5392779942279686, 3.5053556277056, 3.5751520923520697, 3.5955927849927587, 3.5317110028859835, 3.718763347763333, 3.3279729797979516, 3.3952230880230654, 3.4970351010100775, 3.3201727272727064, 3.2392367243866995, 3.4472941919191595, 3.5568238816738584, 3.328016486291461, 3.7425002164501886, 3.465884920634898, 3.3093776334776077, 3.532860137085107, 3.5723238455988215, 3.3786992424242164, 3.4528802308802073, 3.524616450216426, 3.3484871933621716, 3.5609398268398023, 4.230960317460295, 3.3492879509379243, 3.747972330447312, 3.5152358585858345, 3.5934850288600004, 3.6876378787878528, 3.737392243867215, 3.378313059163034, 3.3405634559884305, 3.357274098124072, 3.390972366522348, 3.39293860028857, 3.4620321428571144, 3.4012681457431215, 3.567406998556971, 3.6901374098123925, 3.3887406565656386, 3.4519253968253687, 3.5475782106781892, 3.4543923520923245, 3.488014466089438, 3.3217930735930454, 3.3198761904761684, 3.3984684343434086, 4.11145003607502, 3.4125689754689494, 3.599721392496363, 3.482291450216428, 3.448991233766209, 3.4894246031745797, 3.441404112554087, 4.243472582972565, 3.5159278499278264, 3.2503224386724163, 3.715845238095221, 3.245945815295796, 3.3797849567099307, 3.214529617604594, 3.324103210678187, 3.2365272727272467, 3.28815176767674, 3.2866053751803497, 3.3371687950937683, 3.392729509379487, 3.4547364718614455, 3.428995634920608, 3.5871498556998347, 3.310544047619021, 3.4340365800865595, 3.299150505050485, 3.083853715728694, 3.7427075396825247, 2.9459798701298485, 2.8768970418470174, 2.999882142857121, 2.955184668109641, 2.785895562770546, 2.7430041486291246, 2.790803968253945, 2.893322546897523, 2.762410786435765, 2.9726768398268137, 2.9602033189032944, 3.090735606060583, 3.175223160173133, 3.138036652236621, 3.0272509018758713, 2.836163383838361, 3.0564254329004017, 2.847228102453077, 2.891564826839795, 3.0693087301587063, 3.368072835497809, 3.595876154401134, 3.6598950937950594, 3.699991450216427, 3.974507575757548, 3.983646392496367, 4.012746861471838, 4.337054329004302, 4.2291153318903065, 4.46325479797977, 4.7486314213563965, 4.383993722943699, 4.821763311688285, 4.668473124098103, 4.455313095238064, 4.5120257215007, 4.522513347763323, 4.601010714285694, 4.685158405483388, 4.470778318903293, 4.593516847041824, 4.580314393939367, 4.404052741702714, 4.462382756132737, 4.389771500721481, 4.177826010100993, 3.9995901875901674, 4.077643759018734, 3.658597474747452, 3.8917732683982447, 3.6595940476190227, 3.473395743145717, 3.3430933621933394, 3.4365319264069027, 3.2920729076478765, 3.1480229076478854, 3.3340397907647703, 3.066109307359283, 3.1994374458874173, 3.1077954906204637, 3.2114945887445656, 3.3088594155843922, 3.156869444444421, 3.077884199134176, 3.099526334776309, 3.054787914862888, 3.1024123737373484, 3.2875344877344608, 3.3598628066377776, 3.2682577561327357, 3.612439610389586, 3.252631782106759, 3.6361869769119473, 3.6793295454545154, 3.5063454545454342, 3.667554220779192, 3.809126948051923, 3.7246248196247906, 3.8221960678210456, 4.062295165945142, 4.063088419913398, 4.083283477633451, 4.119543867243842, 4.035035822510799, 3.7553963203462946, 4.130683008657985, 3.9910497113996817, 4.047036832611807, 3.985762734487709, 3.818288528138501, 3.8200203463203217, 3.8086027777777485, 3.7982616161615876, 3.7707611471861218, 3.7282270923520624, 3.881247113997086, 3.6468468614718366, 3.484032467532446, 3.4301384559884305, 3.525814538239512, 3.500676515151489, 3.474614430014403, 3.7051179653679416, 3.643699747474721, 3.5270752525252265, 3.6891347402597137, 3.5580662337662035, 3.562460822510802, 3.5563359668109435, 3.561443181818161, 3.5538552308802056, 3.641700036075016, 3.7322275974025647, 3.824146176046145, 3.7148089826839574, 3.6341572871572625, 3.5741961760461476, 3.8127721500721217, 3.472552380952361, 5.007212662337634, 3.4344297619047333, 3.296914430014405, 3.3470517316017054, 3.000426046176027, 3.471682539682516, 3.1341779220778996, 3.208550613275586, 3.4899698773448495, 3.674571536796503, 3.612525468975442, 3.882493145743115, 3.63531544011541, 3.4734796897546674, 3.5509739538239247, 3.63261976911975, 3.53714397546895, 3.761255555555528, 3.7784161616161316, 3.796268362193333, 3.6849472943722703, 3.8430957431457142, 3.537596861471834, 3.8313782467532196, 3.8123887806637526, 3.7303450937950697, 3.7882775613275346, 3.6153183982683794, 3.5546108225107993, 3.639353751803728, 3.634023412698388, 3.6693432178931866, 3.7169387085136796, 3.7799597041846784, 3.8705729076478788, 4.383102489177467, 4.090602056277038, 4.607881385281363, 4.309742460317443, 4.075919624819598, 4.69260165945164, 4.426657683982669, 4.463382503607483, 4.4292094877344725, 4.266624062049039, 4.693021356421336, 4.47987456709955, 4.120433116883095, 5.445057178932162, 4.349536904761878, 4.4787084415584175, 4.132246356421341, 3.98522081529579, 4.0722166666666375, 3.9166806998556756, 3.6461792568542344, 3.5739689033188733, 3.482656240981212, 3.1817195887445613, 3.102289393939368, 2.9363459235209026, 3.220350577200546, 3.0759430735930495, 3.2428633477633277, 3.065655591630569, 2.9258775252525036, 2.8245373376623135, 2.885929509379488, 2.847835822510796, 3.141396067821033, 4.123756818181802, 3.3283982683982405, 3.3551668470418217, 3.469151623376601, 3.588056529581503, 3.5172375180374966, 3.707937229437204, 3.792969696969667, 3.8495720779220473, 4.1010886363636105, 4.0254714285714, 4.230333225108203, 4.144254112554085, 4.453803354978331, 4.405859379509361, 4.237852886002864, 4.2488108585858315, 4.280167929292904, 4.131469119769101, 4.147667279942255, 4.234430050505026, 4.231316269841239, 4.358060822510807, 3.965940836940821, 3.932766161616134, 3.9281330808080526, 3.936576334776303, 5.01256305916303, 4.481213564213556, 3.582252525252502, 3.58674303751801, 3.5034094877344675, 3.2564583694083367, 3.1323357142856882, 3.091564682539658, 3.4974136724386526, 2.8989238095237804, 2.9286343795093543, 2.935892460317438, 2.966783080808059, 3.0308311327561146, 2.9853348484848223, 2.861385642135623, 2.9544055916305716, 3.07706118326116, 3.241348051948028, 3.159161868686846, 3.2673410533910276, 3.1919691919191657, 3.0836797258297, 3.192661399711372, 3.556702128427096, 4.232829581529564, 3.427763275613248, 3.9546266233765945, 3.93401345598843, 4.297913419913389, 4.140230339105317, 3.922471428571405, 3.9459054112553837, 4.173370779220748, 3.89303614718612, 3.9299927128426777, 4.131626551226526, 3.8384411976911688, 3.9826668470418207, 3.973119624819598, 3.989994588744564, 4.153181746031724, 4.035403571428547, 3.9838783910533637, 4.5994581168831115, 4.04563077200575, 3.8968884559884285, 4.120914430014422, 3.7723794733044467, 3.922632647907637, 3.644429256854234, 3.651460425685409, 3.513464646464617, 3.613408621933594, 3.5075748556998314, 3.621296067821046, 3.6046654401154106, 3.4264020923520655, 3.563468073593046, 3.610537193362166, 3.481652092352064, 3.5404494227993952, 3.706674098124072, 3.4848266233765983, 3.724952813852796, 3.333707251082222, 3.6118688672438393, 3.528052272727248, 3.4551668470418186, 3.3200620490620203, 3.4355573232322953, 3.6605646825396585, 3.4954063131312907, 3.5781034992784746, 3.6235484487734233, 4.321021176046156, 3.628949386724361, 3.820735064935034, 3.686220815295791, 3.9891574675324466, 3.5791516955266656, 3.6274341269840984, 3.7459085137084935, 3.4290627344877085, 3.6371598124097875, 3.816576082251051, 3.6369959956709708, 3.76666161616159, 3.6521615440115163, 3.7363469696969447, 3.5247033910533703, 3.4669192640692352, 3.3905061688311426, 3.3995422077921837, 3.5062495310245074, 3.5310145743145553, 3.512273520923501, 3.5535832251081945, 3.38581785714283, 3.3415177489177212, 3.6360838383838097, 5.020492460317439, 3.413107178932155, 3.605816341991322, 3.4917253246753006, 3.4903841991341737, 3.492014466089441, 3.4872818542568265, 3.4369271645021415, 3.441739285714254, 3.472251262626238, 3.5228091991341763, 3.507680050505021, 3.365162987012959, 3.5760692279942, 3.4577910173159934, 3.7806882395382115, 4.209211580086568, 3.6073501443001157, 4.031098556998548, 3.6546077922077633, 3.5338572150072016, 3.5994022366522147, 3.6581154040403803, 3.478616883116859, 3.7388532467532194, 3.468500757575734, 3.781568073593053, 3.39025043290041, 4.028590692640669, 3.8072081890331697, 3.696199855699826, 3.891389538239512, 3.735673376623348, 3.966468759018731, 3.940980952380919, 3.9333091630591346, 3.810640728715697, 3.8695416666666365, 3.7972052669552356, 3.9164990620490414, 3.7991493867243626, 3.8866386002885767, 3.8907735209234944, 3.959802308802277, 3.8854520562770283, 4.54199025974025, 4.166458080808068, 3.6550197691197375, 3.906744805194789, 3.923299206349185, 3.801204870129845, 3.6787455988455737, 3.7737968614718373, 3.888365115440083, 3.883305880230852, 3.814968903318874, 3.862485642135611, 3.765743434343408, 3.798760786435758, 3.4568361471861184, 4.019614285714265, 3.7850037157286938, 3.6909094877344613, 3.874967135642121, 3.7087071789321557, 3.6411883838383527, 3.757339898989878, 3.6925074675324434, 3.6023813492063215, 3.6729069264069025, 3.685534199134164, 3.8001212121211827, 3.466937193362166, 3.351460858585833, 3.273947077922054, 3.6920158008657857, 2.9931516955266724, 3.0878660894660643, 3.167833080808056, 3.2559413419913197, 3.2818389971139674, 3.0093848124097855, 3.0745007936507656, 2.972009379509356, 3.135062842712816, 3.1816250721500468, 3.1019498917748667, 3.58701814574313, 3.0519202741702522, 3.253430483405452, 3.078886038961016, 3.184248809523786, 3.2980088383838138, 3.711589285714251, 3.763777597402572, 3.675025829725802, 3.9835266955266704, 4.0374524891774675, 4.121505483405456, 4.056063636363611, 3.9521447330447033, 3.935231168831139, 4.170119119769095, 4.132315151515127, 4.1645151875901645, 4.02005393217891, 4.6730371212121105, 3.882482683982661, 3.7362297619047395, 4.373409235209209, 4.052186435786407, 4.264481457431436, 4.695877813852806, 3.877949278499256, 3.747563816738794, 3.8395481240981, 3.315633008657988, 3.7853284271283987, 3.520634271284248, 3.4188125180374924, 3.685002453102424, 3.445049819624791, 3.651210137085108, 3.9083362914862736, 3.7680653318903072, 3.7850908369408125, 3.5324563492063246, 3.701922438672409, 3.8863807720057437, 3.5133732683982446, 4.314837265512251, 3.990737878787867, 3.574594769119743, 3.626385281385265, 3.6097825396825147, 3.6975930735930507, 3.5981031385281175, 3.7321361832611584, 3.3828260101009846, 3.6517975468975203, 3.6547629148628906, 3.6851978715728535, 3.783434054834028, 3.697980844155819, 3.7010505411255172, 3.632802164502139, 3.7282152597402334, 3.6584825757575516, 3.5914136724386525, 3.660747655122639, 3.66823030303028, 3.6058588383838135, 3.9395663780663464, 3.738607251082217, 3.606458730158708, 3.607536075036054, 3.9030045093794867, 3.657496464646447, 3.5602068542568315, 3.510492207792195, 3.4343507215007003, 3.335928318903301, 3.4871500360750165, 3.317427308802283, 3.1683257575757366, 3.3308224386724206, 3.1399943001442763, 3.030599098124069, 3.485240079365064, 3.5230786435786174, 3.3378488816738536, 3.4408932900432645, 3.47837265512263, 3.4192793650793387, 3.324550324675299, 3.424444047619024, 3.2724970418470134, 3.4097431818181567, 3.3535486291486145, 3.3555806998556794, 3.461624639249614, 3.608790512265488, 3.4881579725829512, 3.5838227633477433, 3.879206313131296, 3.5691301587301396, 3.7241358225107972, 3.9124936868686624, 3.9552411976911817, 3.6279888528138198, 3.6201834415584098, 3.291108152958134, 3.565459632034608, 3.36971976911974, 3.2426462121211888, 3.7276651515151307, 3.4218157287157056, 3.719019588744559, 3.720400396825371, 3.5690141774891484, 3.558388059163033, 3.8153114718614423, 3.5644150432900137, 3.4774637445887215, 3.2958042568542316, 3.681305772005748, 3.6088640692640497, 3.7238213564213325, 3.533561075036056, 3.6808332251081968, 3.534584090909068, 3.6073131673881416, 3.7932964646464433, 4.001544552669527, 3.981020815295789, 3.479214321789298, 3.6734788600288386, 3.7162086219335935, 5.062761399711381, 3.7307555555555303, 3.807125360750334, 3.677757575757547, 3.9131952380952137, 3.9751470418470176, 3.60247817460315, 3.875976911976883, 3.892301803751776, 4.008585966810938, 3.7773484487734272, 3.9559837301587044, 3.9280708513708253, 4.037997150072124, 3.75458827561325, 3.9151349567099336, 3.8782044372294115, 4.511528499278483, 3.899776984126951, 3.9850315295815175, 3.7937445526695264, 3.6646091630591453, 3.682100901875867, 3.4093005411255177, 3.187770165945145, 3.2736734487734167, 3.181744444444415, 3.274162770562742, 3.076474062049034, 3.32521969696967, 3.282427164502144, 3.036281565656536, 3.0100977994227716, 3.052452417027395, 3.116139971139952, 3.127094047619019, 3.0874271645021367, 2.981730158730132, 3.0194982683982414, 3.13850389610387, 3.201091991341966, 3.3534962121211884, 3.5114834776334534, 3.5978278138527884, 4.525003066378052, 3.7970881673881394, 3.9081646464646176, 3.8580670995670747, 3.9713975829725503, 4.066283621933601, 3.931145418470397, 3.9322401875901587, 3.9747953463203247, 3.8636198773448496, 3.9453597763347443, 3.8244569264069006, 3.8804652958152692, 4.058970274170251, 4.196596536796506, 4.017149711399689, 4.137318001442977, 4.011108585858563, 4.196651010100982, 3.9923190476190196, 4.7472481601731475, 3.7403093795093487, 3.7432763708513472, 3.8651509379509115, 4.351109740259726, 3.992832395382382, 3.5597772005771704, 3.780063924963895, 3.9714248917748685, 3.629176659451642, 3.656200396825368, 3.7582309163058834, 3.658012626262599, 3.6192933982683746, 3.7862576118325824, 3.792035137085104, 3.6920035714285517, 3.676818831168801, 3.6062029942279654, 3.575573881673856, 3.5218569264068975, 3.648130014429986, 3.32907925685423, 3.266649422799397, 3.280972763347738, 3.5371432900432636, 3.5066583333333075, 3.319223448773424, 3.7606086219336112, 3.3407224386724117, 3.5894699494949176, 3.533440800865776, 3.6340980158729925, 3.5276604617604352, 3.8509398989898713, 3.4207478354978105, 3.6708613275612985, 3.7488463564213292, 3.5494206349206, 3.4619766233765947, 3.5912321789321546, 3.680754942279914, 3.772236111111085, 3.7719970779220553, 3.528842640692617, 3.62966677489175, 3.875104437229411, 4.02232157287155, 3.761499999999976, 3.7492127344877093, 3.586716017315989, 3.7399888167387934, 3.6403657647907406, 5.200108802308785, 3.911311760461738, 3.828817712842687, 3.7751465367965085, 3.864730158730135, 3.874567712842685, 3.7758336580086342, 4.0169356782106505, 3.868820490620466, 3.907320634920611, 3.7426252525252286, 4.709969841269829, 4.05657640692638, 3.795475901875877, 3.853848268398247, 3.698862409812388, 4.202230663780654, 3.7178312409812135, 3.906308766233749, 3.670550180375162, 3.6478901515151327, 3.700392352092327, 3.5938353174602917, 3.7975800505050286, 3.9959237373737087, 3.7264661616161345, 3.4314088744588505, 3.4219763708513473, 3.5101462481962273, 3.4890120851370603, 3.4895567460317225, 3.6263214285714, 3.46878932178929, 3.648952525252499, 3.7010042207791947, 3.6117383477633225, 3.869600649350625, 3.769640295815268, 3.839774134199115, 3.6599261183261005, 3.7550195165944973, 3.9134483766233545, 3.721798845598818, 3.683633189033173, 3.5769201659451406, 3.567008730158706, 3.567863528138502, 3.151488708513687, 2.9059575757575544, 2.856980844155815, 3.0642838744588534, 2.864378571428545, 2.9970473665223403, 2.931676046176018, 3.0085950937950696, 2.9676823232322986, 3.1455094516594273, 2.7825022727272466, 2.5226681818181573, 2.4790196608946355, 2.48060977633476, 2.858106962481931, 3.1311031385281067, 3.8778554473304148, 5.038908405483376, 5.588305158730131, 6.384457251082216, 6.448848412698396, 6.615093867243841, 6.482520707070685, 6.869166810966786, 7.179295274170262, 6.7603117965367705, 6.8514709235209015, 7.0796906565656474, 6.774077200577176, 6.4462605339105155, 6.744988528138503, 6.660980483405461, 6.56218759018757, 6.173062409812393, 6.609772619047593, 6.168924711399689, 5.983095490620481, 6.158300108225086, 6.251628571428541, 6.200761868686854, 5.538820129870103, 5.45642453102451, 5.369608189033167, 4.893993722943707, 4.4650806277056105, 4.129773412698389, 4.012198556998528, 3.904589430014403, 4.062622763347738, 4.251428210678177, 4.411094011543988, 4.464506096681081, 4.36641836219334, 4.360503391053362, 4.27609473304471, 4.174827128427101, 4.382302453102429, 4.549327453102438, 4.412901695526676, 4.143914105339086, 4.185889718614698, 4.391764754689728, 4.2366633477633195, 4.138259992784967, 4.215189971139953, 4.312622691197661, 4.200580735930711, 4.180838744588723, 4.123136327561302, 3.9940251082250837, 3.8531331168830874, 3.6719004329004012, 4.031084956709923, 3.948914754689727, 3.923011075036046, 4.313516991341968, 4.238485714285689, 4.088623701298682, 4.028209379509355, 3.928770165945141, 3.9226798340548084, 4.25351623376621, 4.053818037518015, 3.9646333333333104, 3.8848540404040137, 4.115364213564189, 4.148201731601702, 4.201911435786405, 4.3359993506493275, 3.8507319624819374, 4.381612301587271, 4.206507828282803, 4.131642388167363, 3.6537212121211846, 3.923167424242395, 3.8371445165944897, 3.9720079004328723, 5.787071212121185, 4.116758441558416, 3.8039911976911682, 3.833515981240953, 3.693162554112527, 3.7065032828282582, 3.800587121212093, 3.6803543290042975, 3.4905672438672184, 3.5923344155843857, 3.8616450577200294, 4.583809235209226, 3.8428816738816494, 3.699369624819604, 3.734815476190451, 4.147355699855699, 3.7038864357864125, 3.8060365079364944, 3.6600371572871344, 3.6930040404040194, 3.652369227994204, 3.4439484848484567, 3.618333730158713, 3.522498520923496, 3.4004883116882842, 3.3317001443001253, 3.6309562409812233, 3.536525180375155, 3.5404503246752976, 3.7210344516594205, 3.3844740981240697, 3.4892343795093574, 3.6357587301587, 3.592806204906178, 3.7445549422799114, 3.610277922077893, 3.73282925685423, 3.7260506493506336, 3.5033815656565364, 3.6581927489177213, 3.756174062049039, 3.6107436507936264, 3.632887950937922, 3.821334090909062, 3.4988866522366275, 3.5083881313130982, 3.476830591630565, 4.005355014430009, 3.6768844516594386, 3.561733766233747, 3.6891393578643297, 3.9335702020201757, 3.8541274531024263, 3.5998069264069006, 3.7550411255410965, 4.05691064213562, 4.029887012986988, 3.7161354256854002, 3.846540584415558, 4.181954870129839, 4.144015512265492, 3.8723285353535055, 3.987701875901851, 3.975181457431429, 3.9734597763347494, 4.029689393939384, 3.7574518398268193, 3.8820197330447064, 3.9878107142856893, 3.8765952741702474, 3.9535232323232052, 3.8711541125540823, 4.4251883838383765, 3.884870021644993, 3.550796536796509, 3.597238852813833, 3.6996158730158446, 3.401019011543988, 3.5508829725829494, 3.6277203463203205, 3.6376094516594275, 3.6493319985569705, 3.538988455988429, 3.4788629148628925, 3.4350053751803515, 3.896739718614691, 3.648218506493485, 3.5878346681096422, 3.606552777777752, 3.75204527417025, 3.4170852813852557, 3.654445815295793, 3.516288852813831, 4.600868398268383, 3.7274884199133913, 3.653447546897521, 3.4595936147185893, 3.7164913059162794, 3.502328282828257, 3.294467171717146, 3.205231854256832] ss_3month_24_24_1000tree = [0.0, 1.0000000000000007, 1.3329999999999849, 1.5799999999999699, 1.8659999999999726, 2.1699999999999653, 2.412333333333295, 2.3888333333332943, 2.5274166666666353, 2.6574166666666224, 2.7595833333332975, 2.8151999999999564, 3.0721666666666416, 3.006366666666634, 3.7124738095237997, 3.258157142857102, 3.4130511904761507, 3.5969535714285406, 3.616549206349173, 3.583492063492032, 3.562311507936477, 3.7134559523809325, 4.389495274170267, 4.061337157287124, 4.151419769119739, 4.3163510101009965, 4.110110245310216, 3.555886544011528, 3.215689141414145, 3.0994366161615936, 3.2528543650793442, 3.4149517676767505, 3.6325010101009845, 3.631707467532441, 3.46850905483402, 3.208544227994204, 2.9705792568542457, 3.2353697691197385, 3.500612481962459, 3.306249639249608, 3.290618470418449, 3.483748412698386, 3.132439285714272, 3.157937373737357, 2.791249458874439, 3.0505470779220527, 3.1924967893217673, 3.1740470057719836, 3.247793434343417, 3.2376004329004076, 3.3602558802308553, 3.324749025973993, 3.0909079365079117, 3.376211038961011, 3.2522187229436947, 3.2632582611832417, 3.11803131313129, 3.230373015872985, 3.244136760461731, 3.2417231601731378, 3.4065972222221923, 3.2890272366522084, 3.360997294372275, 3.14307846320344, 3.201389646464617, 3.2561767316017027, 3.253134848484826, 3.166831277056241, 3.101116666666636, 3.181716089466058, 3.1762659451659174, 3.474047186147165, 3.1866436507936204, 3.25883600288598, 3.3674025613275336, 3.299854329004301, 3.1793006493506164, 3.2029855699855436, 3.377116630591603, 3.030747619047606, 3.167276154401123, 3.1544104978354843, 3.116975721500704, 3.171920743145717, 3.2686136363636087, 3.3189502525252226, 3.197428174603144, 3.274423665223637, 3.296039790764757, 3.174584776334761, 3.390939646464618, 2.962060894660883, 3.4358563852813555, 3.458771428571407, 3.3396124458874157, 3.12551024531023, 3.2880533910533614, 3.255798809523787, 3.2443214285714106, 3.446616341991315, 3.029158874458847, 3.1671040404040185, 3.0127953463203196, 3.2283405483405203, 3.1728769480519254, 3.161988888888862, 3.1150445526695334, 2.896329978354951, 3.1757876984126687, 3.089727741702723, 3.1015059163058867, 3.276429797979771, 2.999434307359284, 3.391308946608915, 3.4482933261182946, 3.4907042207791883, 3.3410086219336024, 3.378124927849896, 3.2703357142856895, 3.3537577922077735, 3.1058992424242264, 3.480178210678183, 3.409717568542539, 3.1684301226551, 3.3083067821067655, 3.067633261183249, 3.4474495310245, 3.5691814935064774, 3.349110606060588, 3.4267053751803536, 3.771781673881642, 3.563572222222207, 3.4458077200576938, 3.533197582972551, 3.9051849567099275, 3.4807538239537887, 3.5189957431457097, 3.721677813852781, 3.644154040404013, 3.806764718614698, 3.6267095598845263, 3.5693204545454313, 3.550493362193334, 3.6456230519480224, 3.671228066378036, 3.5877527777777547, 3.860542279942248, 3.7509724386724086, 3.5400497835497555, 3.7452131313131014, 3.4678009740259523, 3.438513419913392, 3.563632034632009, 3.6510000360750134, 3.5036995310245005, 3.4124933982683694, 3.4718207070706786, 3.648727453102424, 3.6925342712842424, 3.5476460678210406, 3.5925590909090612, 3.649585245310212, 3.47679476911975, 3.391588492063464, 3.4802790764790488, 3.2800634199134047, 3.3088433982683654, 3.4610658369408, 3.4448101370851063, 3.3687260101009766, 3.311314718614687, 3.595174278499252, 3.5296698773448423, 3.7003593073592804, 3.9385151515151233, 3.735803427128404, 3.41480883838384, 3.585302813852795, 3.4745279220778973, 3.9185570346320056, 3.7592962481962178, 3.486479978354974, 3.8393852813852494, 3.8573654761904437, 3.4592840187590146, 3.6372647907647564, 3.491373917748892, 3.5222782106782127, 3.1037520562770293, 3.1427710678210454, 3.1038980158729994, 3.4805213203463055, 3.4273725829725574, 3.5533672438672124, 3.350636724386692, 3.277879401154378, 3.087824567099541, 3.354064033189007, 3.3639781746031447, 3.4742085137084886, 3.408402922077899, 3.2825458152957903, 3.3410189754689545, 3.0895797979797734, 3.345407936507911, 3.2742588744588463, 3.323565476190458, 3.342159343434313, 3.3118380230879905, 3.3105143939393584, 3.574543686868659, 3.2456749999999737, 3.702095562770528, 3.484882142857116, 3.4412795093794815, 3.3610001082250855, 3.3259004329004056, 3.299636940836916, 3.310620454545423, 3.3106068542568217, 3.193811868686848, 3.193097294372282, 3.3568299062048905, 3.702316919191894, 3.5013550144299823, 3.4215923881673738, 3.506765584415548, 3.3899803751803486, 3.6945169552669253, 3.711533333333305, 3.428347150072119, 3.5407994227993957, 3.415917316017286, 3.602492135642109, 3.3516905483405233, 3.4937615440115164, 3.3465848124097883, 3.6431656204905853, 3.455759595959565, 3.5507610389610096, 3.735513347763312, 3.5690356782106485, 3.6626385281384994, 3.4214403679653413, 3.3458831529581228, 3.4223195887445623, 3.214317099567075, 3.520089971139938, 3.50148300865801, 3.285295779220757, 3.513967279942254, 3.2146534271284053, 3.775198196248169, 3.309313744588742, 3.51221118326115, 3.5190541125540897, 3.6441970779220503, 3.2737312049061917, 3.2533346320346204, 3.534920165945135, 3.34213506493505, 3.5647300865800644, 3.5926136724386377, 3.5824129509379157, 3.215714754689727, 3.576672655122633, 3.428462698412672, 3.546287121212088, 3.579698232323202, 3.398850577200548, 3.590693795093765, 3.2800432900432677, 3.243457467532437, 3.0973876623376397, 3.181476948051925, 3.3555856060605724, 3.1973164862914554, 3.438973629148602, 3.325483658008628, 3.3268675324675043, 3.1676551226550926, 3.516073773448748, 3.1720977272727016, 3.268199025974013, 3.3382970779220615, 3.5716723665223387, 3.19889238816737, 2.967476010100994, 3.4313112193361945, 3.344845707070678, 3.210405808080794, 3.4367728354978047, 3.409192821067799, 3.2581446608946343, 3.729139898989863, 3.5155786075035853, 3.552393939393917, 3.510777020201993, 3.3265735569985337, 3.5611388528138184, 3.7272744588744278, 3.606727308802279, 3.431069624819599, 3.2805018037517706, 3.680867532467507, 3.6769692640692315, 3.3799514790764436, 3.3568438311688062, 3.310554148629122, 3.3588836940836684, 3.421560245310213, 3.112643217893189, 3.372487590187571, 3.289213708513684, 3.211331024530997, 3.448871284271258, 3.3918985930735683, 3.4484406204905924, 3.286959487734463, 3.6204026334776, 3.2932676767676465, 3.4531854617604356, 3.4464982323232016, 3.478259199134165, 3.74755256132753, 3.665920670995643, 3.3949281024530813, 3.431939466089442, 3.5051549422799138, 3.5807889610389365, 3.5628576479076264, 3.595267712842687, 3.6470455988455726, 3.5960507936507744, 3.6910909090908857, 3.5782125180375033, 3.72950537518035, 3.4206854256854227, 3.8216659451659187, 3.7421142496392217, 4.147200685425667, 3.7451773088023073, 4.147426334776302, 3.984676046176011, 3.685232611832583, 3.9935109307359045, 3.9439207431457213, 3.5962713564213558, 3.80488759018756, 3.7920375180374886, 3.948422799422774, 3.7927737373737123, 3.6001641414141363, 3.7742449494949173, 3.388156673881654, 3.9485348845598573, 3.4053584054833914, 3.954560858585828, 4.0226882395382155, 3.629492676767648, 3.5969270923520797, 4.010415151515122, 3.4300081529581283, 3.530816991341966, 3.0276393939393835, 3.2839277056276877, 3.5785658369407987, 3.6461273448773133, 3.340764862914837, 3.3068593073592796, 3.3210115800865516, 3.361639646464616, 3.1694581529581307, 3.4587358585858277, 3.434646464646432, 3.2456739177488894, 3.444018939393904, 3.294210678210661, 3.248437626262598, 3.234373015872986, 3.2943115079364746, 3.348665584415553, 3.6170267316017055, 3.2962321067820883, 3.6319436868686563, 3.506721861471836, 3.2707587301587093, 3.580264790764761, 3.6538567460317157, 3.781592929292896, 3.512024855699832, 4.065627777777755, 3.4558023809523557, 3.7071216450216204, 3.610629184704154, 3.9740994588744334, 3.7783087662337316, 3.8356606421356125, 3.598921536796512, 3.85647849927847, 3.6112081890331953, 3.73320519480517, 3.5666824675324382, 3.5021754689754476, 3.5095670634920655, 3.5592421717171434, 3.5639668109667864, 3.5277828282828043, 3.657736688311658, 3.4651095959595715, 3.305879978354954, 3.7847322871572646, 3.503737590187556, 3.5043554834054595, 3.2887750360750063, 3.433892316017287, 3.4998115440115183, 3.552966594516565, 3.4754791486291254, 3.356924242424243, 3.456035064935035, 3.445798015872991, 3.535082575757547, 3.2947570707070515, 3.567877849927818, 3.681597763347736, 3.5667389971139745, 3.2683188672438575, 3.4642796897546697, 3.3572144660894465, 3.3607319264069133, 3.212450577200565, 3.6525105339105033, 3.4793737734487555, 3.4775085497835345, 3.6062082251081877, 3.7482332251081965, 3.442379473304444, 3.3954452380952045, 3.412177092352078, 3.5495773088022857, 3.564922691197666, 3.6205212481962232, 3.2609438672438387, 3.6752559523809274, 3.272239610389584, 2.9801947330447147, 3.3564827200576963, 3.3343944805194585, 3.48683261183259, 3.4518416305915984, 3.348361002885978, 3.2040485930735687, 3.3199879870129547, 3.205026154401122, 3.29963235930733, 3.0919650072149785, 3.279641666666645, 3.3240539321789, 3.0736753246753, 2.9690643939393744, 3.1888418470418256, 2.991413455988431, 3.0258325036074756, 3.0204678932178632, 3.021924567099542, 3.2882160173159933, 3.204095490620467, 3.172494877344848, 3.1429314213564026, 3.246805591630561, 3.2295435786435545, 3.1916817821067593, 3.1849388528138296, 3.264594769119737, 3.253323232323211, 3.313783946608918, 3.3981207070706776, 3.2029621933621715, 3.056548701298679, 3.281959776334753, 3.37488766233763, 3.4568145382395135, 3.3975631673881375, 3.4683910173159886, 3.4598494227993952, 3.547852380952354, 3.513266630591596, 3.6119147186146905, 3.3860443001442895, 3.798192135642102, 3.5819001443001177, 3.6458766233765956, 3.77522160894658, 3.839735750360718, 3.8205463203462906, 3.748179112554095, 3.6778824675324375, 3.9560442640692393, 3.6466014069263792, 4.105456890331881, 3.640036507936488, 3.74033106060603, 3.768739538239509, 3.8072537157286863, 3.9062840909090686, 3.4260369769119814, 3.7863055555555243, 3.78164051226548, 3.746045021644992, 3.51459336219334, 3.7599053030302736, 3.4996638888888763, 3.4753845598845423, 3.332392784992764, 3.563137770562745, 3.8073939754689374, 3.5301629870129583, 3.499234343434307, 3.9113434343433973, 3.479814898989867, 3.4890277056276755, 3.5892221500721218, 3.825701334776307, 3.861177561327532, 3.502567243867216, 3.81579650072147, 3.7933328643578426, 3.675196717171684, 3.8624801948051624, 3.56947189754687, 3.6386884920634697, 3.6098101731601426, 3.7604594877344626, 3.8828071428571134, 3.7859010822510566, 3.70667229437227, 3.5614331168830917, 3.41912168109666, 3.5976551587301326, 3.4759791486291216, 3.479969805194774, 3.564036652236621, 3.5070527417027155, 3.4022931457431267, 3.449955808080775, 3.4480512265512075, 3.2308383838383596, 3.3704260822510643, 3.3097766955266743, 3.3018385642135386, 3.3617386724386575, 3.3001290043289764, 3.405646392496369, 3.3733556637806377, 3.0916452020201723, 3.1092012626262338, 3.1114504689754385, 3.0636422077921766, 3.0900715367965272, 3.4386662698412422, 3.4645195526695245, 3.2662871933621718, 3.209582251082224, 3.1671649350649154, 3.267487770562745, 3.405252561327534, 3.482654906204877, 3.410225360750333, 3.4568589826839466, 3.409731673881641, 3.3557760822510487, 3.629376443001414, 3.4271317460317245, 3.4689937590187303, 3.4349111832611547, 3.3502634559884306, 3.728931457431433, 3.545914574314549, 3.643766053391028, 3.64771673881671, 3.5042599567099253, 3.4796288600288263, 3.4890362554112238, 3.3576122294372106, 3.427441450216436, 3.582754076479051, 3.220858621933602, 3.3574342352092055, 3.437404581529551, 3.675140512265485, 3.424168181818158, 3.310525036075008, 3.845993470418438, 3.3430877705627493, 3.688813419913398, 3.587023124098101, 3.607982431457401, 3.4523918470418202, 3.5150403318903085, 3.740563419913391, 3.4170972582972365, 3.4382436868686623, 3.4544801587301355, 3.4700048701298405, 3.64237027417025, 3.7181522005771748, 3.76773235930733, 3.8036698773448556, 3.603340295815268, 3.4686201659451372, 3.3965019480519185, 3.866855086580063, 3.5083548701298386, 3.519097258297231, 3.5275872294372017, 3.4367401154400894, 3.3442108585858414, 3.516039935064914, 3.6635513347762982, 3.5473786435786105, 3.358969119769091, 3.2345472943722724, 3.3152066738816472, 3.346451370851341, 3.5728712121211808, 3.5150260461760245, 3.405284595959571, 3.3147844877344608, 3.43919390331888, 3.3951339466089183, 3.3184705266954966, 3.2932339105338797, 3.5346379148628864, 3.201012662337648, 3.0851743145742914, 3.333957647907621, 3.3140123015872724, 3.4374105339105028, 3.3955465728715457, 3.5061332251081923, 3.4130918470418248, 3.3304228354978065, 3.4586151515151218, 3.5243240259739927, 3.364735533910517, 3.526755735930707, 3.440016197691169, 3.457657756132736, 3.7400516955266654, 3.5854507215006857, 3.3935459956709706, 3.7254863997113703, 3.603810894660871, 3.336609632034617, 3.7665870490620175, 3.7118640331890043, 3.606733369408347, 3.9069281385281083, 3.689419552669538, 3.7960822150071887, 3.3901930014429866, 3.81042189754687, 3.798904870129839, 3.848026046176016, 3.3415179653679545, 3.467704834054814, 3.4236456709956435, 3.6321060966810634, 3.575284668109639, 3.425004437229413, 3.6091154761904494, 3.48379411976909, 3.3744406926406656, 3.5401090187589963, 3.419716161616134, 3.525866991341967, 3.5295922799422534, 3.493885786435757, 3.6651790043289707, 3.415164971139945, 3.37961136363633, 3.3236186147185927, 3.2771879509379325, 3.4328628427128174, 3.461671825396794, 3.270994480519451, 3.295196139971119, 3.1723265151514917, 3.536570129870099, 3.2166522366522186, 3.565144119769092, 3.223754076479058, 3.051684415584403, 3.255904076479052, 3.3915213924963665, 3.2287569264069043, 3.016065584415568, 3.388320021644989, 3.603103751803725, 3.139857467532448, 3.1313317460317243, 3.2494726551226254, 3.1663018759018478, 3.4029310245309907, 3.222074242424218, 3.27107308802306, 3.2571795093794793, 3.585937914862886, 3.177328715728687, 3.4052170995670767, 3.3472803391053048, 3.229482323232298, 3.024075793650773, 3.237213131313113, 3.301861940836913, 3.2368190476190195, 3.1758378066377886, 3.0288887806637534, 3.2554718975468697, 3.3707642496392176, 3.301521031746003, 3.2818984848484605, 3.2945293290042996, 3.23685479797977, 3.5129128787878523, 3.412845526695512, 3.4340351370851288, 3.4781696608946473, 3.384022113997097, 3.4147492424242136, 3.4334671717171448, 3.3263230158729886, 3.3432296536796344, 3.3406843795093453, 3.422551046176019, 3.4054839105338868, 3.537198665223648, 3.2646361111110846, 3.3341910533910233, 3.3316004689754437, 3.3864097041846692, 3.570943578643548, 3.509339213564184, 3.5152765151514846, 3.6746996753246477, 3.8705205266954983, 3.7263535353535113, 3.577780122655094, 3.5061430375180134, 3.4275291486291213, 3.660867424242391, 3.5146336580086244, 3.6771347763347424, 3.3864599567099325, 3.5480509740259403, 3.2973889971139703, 3.6186298701298427, 3.689237806637774, 3.427964393939368, 3.618039971139942, 3.5546121933621606, 3.501055447330411, 3.6057705988455657, 3.4794660894660634, 3.3378413419913167, 3.4324266594516315, 3.4498295815295474, 3.6464845959595635, 3.6624040764790475, 3.578464357864327, 3.479970165945148, 3.377106565656535, 3.2680892496392286, 3.3914451659451386, 3.352194769119742, 3.2496693001442756, 3.3503813492063195, 3.279417965367944, 3.175944300144276, 3.156163600288571, 3.4042874819624496, 3.037520093795071, 3.180649711399688, 2.919877308802283, 3.0414498556998244, 3.2116134559884277, 3.092088492063465, 3.1874730158729885, 3.2426882395382193, 3.207126984126963, 3.071506349206317, 3.1465034992784737, 3.1830806998556755, 3.2451583694083546, 3.370305844155817, 3.4590401515151368, 3.3565412337662175, 3.296729942279917, 3.732933225108192, 3.812640115440085, 3.5067418109667923, 3.3286001082250856, 3.565257720057693, 3.357377164502144, 3.4495586940836636, 3.4649602092351826, 3.6682970057719766, 3.593632287157253, 3.435684487734463, 3.191418470418451, 3.383928282828253, 3.4826384920634625, 3.4158879148628865, 3.3031393217892937, 3.3177154761904464, 3.234603318903287, 3.34059657287154, 3.3962244227994014, 3.4314681096680784, 3.252552417027385, 3.3811533910533784, 3.478087662337635, 3.499653391053365, 3.363267316017299, 3.3992860389610184, 3.6059651875901597, 3.527818362193333, 3.5988312049061744, 3.3269517316017048, 3.5070900072149778, 3.2580101010100906, 3.342906601731585, 3.8459952380952145, 3.553795670995656, 3.46734981962479, 3.6573095598845304, 3.3555522005771796, 3.528958008657978, 3.16862774170271, 3.3643081529581242, 3.1067647186146927, 3.267607251082217, 3.521641017315985, 3.568632575757546, 3.388342496392468, 3.397970707070671, 3.3222712121211866, 3.311816774891755, 3.494348809523783, 3.4307514069263774, 3.4696966089465793, 3.5920419552669283, 3.304076948051914, 3.433621753246725, 3.4626255050504775, 3.6986308802308607, 3.5313507215007176, 3.5227820707070405, 3.510237229437203, 3.5611455266955003, 3.7341239898989644, 3.8646229076478895, 3.6309011183260904, 3.4476814935064874, 3.489286940836936, 3.723016305916281, 3.4772640331890092, 3.531453066378036, 3.1177441197691054, 3.1153114357864204, 3.273820238095216, 3.284969300144268, 3.7154511183260883, 3.4367958874458635, 3.3604604617604314, 3.4309742424242176, 3.5005072510822206, 3.542159343434319, 3.515248593073566, 3.338075360750336, 3.492381565656538, 3.379949242424222, 3.5675239538239176, 3.399956782106751, 3.4335354617604295, 3.5673384920634668, 3.973664898989873, 3.9762284271284027, 3.420767316017318, 3.6485971139970896, 3.5923964285714027, 3.5358263347763215, 3.509409018758993, 3.2662573953823912, 3.4314336219335946, 3.128323412698386, 3.51868647186144, 3.433025649350624, 3.3481677849927594, 3.71658492063489, 3.478176190476171, 3.4772314213563953, 3.468484632034606, 3.311258946608924, 3.246793939393928, 3.391692027417001, 3.2549115079364843, 3.4633527056276723, 3.3167235209234915, 3.2556463564213316, 3.1392842712842453, 3.3337230519480263, 3.363893109668078, 3.0325428932178715, 3.297155266955239, 3.419098484848458, 3.394329906204877, 3.128301118326095, 3.3238247835497607, 3.526084632034606, 3.348428427128393, 3.163891702741679, 3.5406242784992514, 3.535791955266924, 3.2986476190475944, 3.2868034271284077, 3.6051371933621637, 3.3741913780663473, 3.3029564213563973, 3.5529274170273886, 3.285558549783526, 3.44070685425683, 3.118360606060597, 3.4695370129870016, 3.320935101010085, 3.4321410173159865, 3.4427227994227767, 3.371411183261164, 3.418395815295788, 3.695612121212088, 3.369096067821049, 3.350593759018732, 3.5114657287156934, 3.449411327561307, 3.762176370851344, 3.5213013347763136, 3.465448448773422, 3.4717955627705384, 3.3451326839826607, 3.348158152958127, 3.573898015872994, 3.3418505050504823, 3.5892918109667775, 3.2881344877344607, 3.225565945165921, 3.264094155844122, 3.580417279942252, 3.438658044733019, 3.537395670995643, 3.4818023088022776, 3.7355999999999665, 3.415030844155812, 3.585942821067794, 3.6696440115439897, 3.373930266955245, 3.5444771645021325, 3.5229137806637545, 3.4505726911976633, 3.7583227272727013, 3.5054104978354674, 3.6540463564213272, 3.799247258297236, 3.551510425685395, 3.5837524170273958, 3.833056385281351, 3.848905086580055, 3.6971187950937767, 3.9262800144299903, 3.7738882034631804, 3.899403102453076, 3.7568143217892924, 3.4896533910533623, 3.7308550505050135, 3.697004581529554, 3.3937535714285465, 3.535686976911949, 3.2267860028859787, 3.356195129870107, 3.63035836940834, 3.4226680735930453, 3.442715909090883, 3.3858884920634607, 3.423125649350624, 3.5948661255410985, 3.6420011183260863, 3.708495057720032, 3.587235461760437, 3.683907287157255, 3.7002438672438376, 3.4861068542568243, 3.3675042568542253, 3.5612965007214705, 3.500470129870099, 3.3602507936507657, 3.636046176046145, 3.522916341991325, 3.497580663780642, 3.690469372294338, 3.6060645743145447, 3.644811724386692, 3.6536642857142603, 3.965334740259709, 3.879871753246727, 3.9511494949494668, 4.277502922077899, 3.7832327561327506, 3.6596574314574313, 3.748019949494924, 3.921633766233739, 3.8337047979797827, 3.8343445887445595, 3.7774083333333266, 3.4919866522366307, 3.7019623376623083, 3.6722295815295687, 3.6322216810966514, 3.5369191919191807, 3.5602589826839584, 3.528700685425659, 3.6395221139970877, 3.4774062049061767, 3.60382658730155, 3.5219669552669277, 3.5630664502164278, 3.6118990259740036, 3.1876184704184434, 3.4022407647907302, 3.402097113997087, 3.2882639971139733, 3.408768434343407, 3.4178721500721303, 3.319721284271258, 3.7166531024530745, 3.473469805194787, 3.5031987373737055, 3.60094823232321, 3.2954556637806487, 3.368213492063471, 3.4729846681096346, 3.4928088383838105, 3.4075845238095064, 3.5050091991341783, 3.215383369408348, 3.3048231601731315, 3.3146879148628883, 3.214261111111085, 3.3294045454545143, 3.4625344155843862, 3.3597731601731287, 3.5401110389610206, 3.5354791125540825, 3.2840710317460147, 3.4231416305916063, 3.3915059523809283, 3.4895091630591364, 3.299442821067802, 3.6742915584415274, 3.7748194444444185, 3.3984292929292788, 3.2398453463203296, 3.3642381673881396, 3.221906709956688, 3.23176601731599, 3.3734101010100725, 3.4290704906204623, 3.0402055916305706, 3.3874865079364764, 2.994383116883088, 3.3437816017315765, 3.237695021644999, 3.330110173160142, 3.3629887085136874, 3.3908475108224816, 3.484928174603156, 3.0881104617604334, 3.202745274170244, 3.255394516594499, 3.409432683982662, 3.478451334776305, 3.497638816738791, 3.2357585137084866, 3.5552397907647637, 3.2918890331890007, 3.422978174603147, 3.8572849206348883, 3.510759271284247, 3.62890349927847, 3.664118001442976, 3.600905555555533, 3.7091292207791913, 3.6392762626262387, 3.572951443001423, 3.5601971139970914, 3.660110317460305, 3.6765979437229133, 3.412322727272703, 3.7703290043289757, 3.7946293650793357, 3.667029076479054, 3.4011636002885743, 3.2417950937950804, 3.270664682539667, 3.13488391053389, 3.224727128427104, 3.1870563852813647, 3.0858820346320126, 3.098735353535326, 3.0390556637806423, 3.0424986291486005, 3.0088238455988243, 3.062605591630571, 3.0816245670995444, 3.1512796176045876, 3.0633242784992536, 3.22363466810964, 3.1604117604617334, 3.0620321789321574, 3.2911123015872814, 3.1203882395382165, 3.262742857142836, 3.13222507215005, 3.1551866522366234, 3.4478593434343234, 3.7096640692640364, 3.623038131313101, 3.631649062049038, 3.4473424963924764, 3.5882760461760164, 3.355024819624791, 3.1721180014429806, 3.3838642135641854, 3.436767352092324, 3.6077505050504817, 3.599784307359275, 3.560177092352061, 3.5208250721500454, 3.737729184704158, 3.4897681457431284, 3.3540463924963637, 3.309455122655091, 3.322567857142823, 3.465579509379475, 3.4635800144299838, 3.2191497835497604, 3.3907672799422546, 3.410657683982669, 3.5393303751803384, 3.5435823953823697, 3.3462692279942097, 3.682383658008629, 3.7238622655122304, 3.2819155122654986, 3.5930227272727047, 3.5576072510822274, 3.5780936147185813, 3.580565800865771, 3.579368506493504, 3.428713924963906, 3.6912698773448502, 3.5260678571428357, 3.7393293290042964, 3.5925116883116663, 3.3407744949494638, 3.6755432900432647, 3.609734054834021, 3.276879725829703, 3.4092208152957895, 3.4774647186146876, 3.4124670274169966, 3.392202308802283, 3.5979439033188743, 3.6049528499278223, 3.359168434343421, 3.5331833694083388, 3.245912770562749, 3.6636321789321546, 3.5765584054833757, 3.515837265512247, 3.5235558080807805, 3.388322691197665, 3.4548350649350392, 3.312174025974002, 3.454804545454517, 3.4240432900432647, 3.251796103896093, 3.499100541125515, 3.559444300144273, 3.404926695526667, 3.150082287157269, 3.5468947691197448, 3.5719242424242177, 3.846645887445854, 3.5003994588744254, 3.466363888888866, 3.5936204906204607, 3.317161796536781, 3.550737914862882, 3.398055627705617, 3.3350317460317305, 3.3182979797979644, 3.1948424963924733, 3.392061976911944, 3.315793326118302, 3.234455591630566, 3.339489213564185, 3.1336337662337383, 3.4555170634920396, 3.1809435064934855, 3.4091295093794742, 3.2885829365079147, 3.321748124098094, 3.348441810966788, 3.3545588383838085, 3.328137229437209, 3.4937378066377733, 3.560633189033164, 3.3632632034631693, 3.6589178571428342, 3.3410982683982637, 3.631804076479054, 3.708197041847022, 3.4343059884559533, 3.944843578643554, 3.7046336580086288, 3.818107575757573, 3.5653866522366253, 3.728965440115411, 3.5002593073592987, 3.4668678571428284, 3.511678643578617, 3.723541269841241, 3.504458658008651, 3.390659343434324, 3.1621963924963703, 3.5616936868686606, 3.5128092712842425, 3.3239455988455693, 3.5653143217893146, 3.3234410173159916, 3.2450533549783414, 3.059018686868667, 3.319816378066349, 3.4442416305915993, 3.3818784992784656, 3.170984415584388, 3.3056177128426913, 3.3042667388167106, 3.2166712481962265, 3.3423686507936226, 3.111225649350632, 3.027165476190449, 3.2639813852813595, 3.366237049062023, 3.4600901154400856, 3.4695975829725527, 3.297142424242402, 3.3276815295815036, 3.39976803751801, 3.6052043290042977, 3.498164393939372, 3.6485943001442687, 3.8511086219335904, 3.5735156565656396, 3.7778273088022827, 3.687921897546879, 3.933171608946582, 3.6461312409812194, 3.566362337662319, 3.865998304473284, 4.039666089466054, 3.5157979076478894, 3.7220935425685213, 3.674063311688286, 3.5653184343434132, 3.5493777777777518, 3.7755687229437007, 3.6763974747474517, 3.7203016594516347, 3.944386219336194, 3.817850974025948, 3.5045197691197485, 3.63245775613273, 3.5731492424242117, 3.4249717532467248, 3.392762770562741, 3.6517767316017076, 3.2314377705627484, 3.1691238095237906, 3.123347438672417, 3.4578244227993933, 3.370463564213537, 3.141715476190451, 3.117276298701273, 3.421816305916277, 2.993917748917723, 3.0623917027416776, 3.085419227994209, 3.2477714646464415, 3.030100036075013, 3.008508766233741, 3.3561304112553825, 3.06931850649348, 3.2820080808080556, 3.2633246392496082, 3.350994300144277, 3.258759451659426, 3.3789427128426834, 3.2041819624819357, 3.2528822871572602, 3.184001551226532, 3.5099234126983894, 3.324015584415548, 3.334224639249613, 3.4060054473304238, 3.381776984126954, 3.4260869769119493, 3.5324176406926084, 3.4742656565656262, 3.7628400793650503, 3.5655944444444265, 3.744225324675295, 3.648027886002856, 3.498587698412671, 3.5333209956709757, 3.510369191919163, 3.5610697691197384, 3.468517316017278, 3.439311075036044, 3.3486800505050316, 3.1200852453102286, 3.568140620490586, 3.4685592712842475, 3.658890764790734, 3.452325432900419, 3.6286344516594258, 3.4652862554112214, 3.1714975468975344, 3.5588746392496122, 3.518435245310228, 3.3351255772005577, 3.444261183261156, 3.3945371933621633, 3.2532058802308557, 3.523356601731572, 3.3199512626262466, 3.336163780663762, 3.624222546897518, 3.27864527417026, 3.383857359307343, 3.4687199494949184, 3.3775718614718366, 3.36486388888886, 3.3247165223664874, 3.1915815656565427, 3.487166486291452, 3.4084391774891474, 3.3289493506493284, 3.53820367965365, 3.2706604256854037, 3.5810324314574014, 3.586733549783519, 3.5832416305916053, 3.7530400432900137, 3.744382467532444, 3.1157256854256654, 3.420584379509361, 3.4392482323232083, 3.349538095238066, 3.347660101010074, 3.34180750360748, 3.635148196248164, 3.478687518037494, 3.780362806637777, 3.7351739177488867, 3.4630984126983906, 3.478062662337649, 3.372355880230862, 3.471221608946589, 3.6175063852813563, 3.3491467893217695, 3.4133934704184394, 3.495904617604589, 3.5395332251082037, 3.4271725468975163, 3.485637121212097, 3.2350181457431226, 3.4853507575757354, 3.7104887445887154, 3.5993306998556727, 3.746912662337635, 3.3442119408369173, 3.5813937590187233, 3.317807503607479, 3.515325541125518, 3.3407977272727023, 3.296764213564186, 3.606743831168802, 3.3111018037517836, 3.336507900432876, 3.5167633838383576, 3.610129076479046, 3.5471554834054584, 3.4708850288600055, 3.4971423160172925, 3.5846604617604325, 3.3250670274169964, 3.551883658008628, 3.59935093795091, 3.5694747113996956, 3.856062662337635, 3.6670086580086214, 3.48545667388164, 3.781880519480494, 3.5229841630591365, 3.6372426046175743, 3.936560714285702, 3.5249467532467333, 3.5286906565656357, 3.7459687590187474, 3.467804906204903, 3.5765190476190436, 3.2939776334776085, 3.3860852453102215, 3.290873304473279, 3.314410461760432, 3.326697077922061, 3.5158777777777455, 3.6511744227993956, 3.6070009379509127, 3.756421572871551, 3.450377561327544, 3.5984530663780405, 4.037453643578615, 4.022092135642114, 4.448527705627676, 3.9957113997113742, 4.271315909090886, 4.164157972582948, 4.178872871572849, 4.158167424242403, 4.276667496392467, 4.155344372294351, 4.321037193362181, 4.088869624819597, 4.249960209235189, 4.089403066378038, 4.140151587301561, 4.2251545815295515, 4.008581818181795, 3.9884704545454253, 4.110306457431437, 4.109988997113972, 3.7899787518037233, 3.713131565656544, 3.6306691197690926, 3.5057138888888604, 3.5010483405483135, 3.349766378066349, 3.3140680735930417, 3.1471725108224855, 3.509508838383807, 3.5799866522366273, 3.9397041486291378, 3.4254500721500447, 4.285101659451664, 3.371495743145715, 3.6270672799422505, 3.440475216450196, 3.939636760461752, 3.707285137085113, 3.6440493506493317, 3.6337319264069072, 3.4206152597402317, 3.4766953463203216, 3.645578391053363, 3.5364712842712787, 3.3782433621933396, 3.3004218975468627, 3.342176767676749, 3.1945509379509205, 3.4491018759018437, 3.508118831168803, 3.7443132034631774, 3.3601994227993894, 3.5442215367965004, 3.4196651515151246, 3.63979310966808, 3.424614466089444, 3.315955519480494, 3.378141955266924, 3.826569588744562, 3.3523027417027205, 3.433705194805169, 3.3523681818181554, 3.5237727272727, 4.023938961038932, 3.479545021644994, 3.4745572871572614, 3.5017689033188772, 3.716824386724349, 3.6588534271283986, 3.6964095959595684, 3.739368975468943, 3.5996099927849623, 3.613793975468953, 3.611695526695507, 3.704940404040386, 3.6758972943722688, 3.557323953823934, 3.4368426767676534, 3.2390504329004095, 3.526259704184679, 3.5329863997113713, 3.447791378066345, 3.7927203102452864, 3.5176984487734213, 3.441510966810936, 3.516128535353503, 3.5686651875901587, 3.496300144300112, 3.569259379509364, 3.65160790043287, 3.3929287157286967, 3.4763750360750105, 3.632346176046143, 3.625511327561301, 3.6000547979797726, 3.4161343434343197, 3.3325566378066145, 3.487288852813828, 3.4927690476190207, 3.246955627705599, 3.5028846681096413, 3.4991487734487468, 3.6180824675324432, 3.604977200577178, 3.665578427128402, 3.7045176046175747, 3.363262770562753, 3.7029059884559645, 3.5607610750360443, 3.4711203823953536, 3.64831006493504, 3.596419552669521, 3.3775670995670706, 3.4016603896103663, 3.4494856060605867, 3.1238439393939124, 3.40199494949492, 3.342463095238067, 3.334388131313099, 3.423255194805163, 3.3052384199133953, 3.456070923520902, 3.7392691919191714, 3.5142265873015615, 3.6688252164501858, 3.531621067821046, 3.461052380952353, 3.44930039682537, 3.315392784992763, 3.3503586940836665, 3.340679401154373, 3.5511273448773175, 3.064562121212096, 3.2278831890331623, 3.2610421717171456, 3.488687229437205, 3.2828787157286947, 3.355658694083674, 3.5122380952380756, 3.6231826118325867, 3.4042028860028624, 3.6339021284271085, 3.8676437950937617, 3.536569805194786, 3.7001546897546618, 3.346895238095218, 3.4263069624819398, 3.6255772366522026, 3.7808272366522058, 3.4349837662337435, 3.5832102453102155, 3.611504797979772, 3.4380056998556734, 3.5092514069263805, 3.517610750360727, 3.3764633116882967, 3.598326515151488, 3.6246312770562468, 3.4501836940836665, 3.474727164502134, 3.6527933982683662, 3.396318217893184, 3.5723413059162787, 3.4645700216449953, 3.5002759018758915, 3.4343788239538164, 3.2907455266955017, 3.5791827922077823, 3.5811041847041523, 3.2080687590187362, 3.395273845598816, 3.296913997113997, 3.3370277056276767, 3.4184201298701087, 3.5207560966810934, 3.385987085137057, 3.6008587301587056, 3.562529473304443, 3.4884353174602842, 3.6302541125540957, 3.655049206349201, 3.4293432900432617, 3.603386616161588, 3.5594039682539367, 3.4276949134198866, 3.5731476190476013, 3.205585569985554, 3.5695164141413787, 3.6405999639249353, 3.618561219336193, 3.660250360750329, 3.5690231240980976, 3.6049422799422612, 3.5725487012986776, 3.397205880230845, 3.442501334776311, 3.499210028859999, 3.5931566378066053, 3.5507364357864137, 3.5834439033188734, 3.479485028860012, 3.478391919191899, 3.310271031746012, 3.5914571067820766, 3.59273351370849, 3.6750512987012716, 3.607822258297232, 3.55760111832609, 3.7067989898989624, 3.362148917748913, 3.593859054834024, 3.4050120490620444, 3.5975595598845334, 3.3239717893217646, 3.3990839826839627, 3.3267614357864193, 3.509855303030277, 3.202276551226535, 3.4406770923520726, 3.6713771284271, 3.4813761183260956, 3.596760173160144, 3.6847953463203065, 3.716108116883086, 3.600093542568525, 3.6075520562770294, 3.595976875901851, 3.7360333333333013, 3.5165599927849662, 3.4992221861471586, 3.5285116522366247, 3.5480345959595785, 3.6082134920634688, 3.6220694805194547, 3.67156269841267, 3.6052178932178642, 3.4293011544011334, 3.508401695526665, 3.3518581529581355, 3.4332445165944865, 3.796077777777752, 3.43247968975467, 3.673125685425663, 3.6116721139970918, 3.69820508658006, 3.468771645021611, 3.539292676767656, 3.9654474386724057, 3.5753493506493186, 3.5659643217892913, 3.646480483405451, 3.7614234487734186, 3.743483910533883, 3.677483405483375, 3.6442661255410935, 3.6370542568542232, 3.6693554834054574, 3.8534254329003965, 3.6992376262625917, 3.6259961038960804, 3.6497096681096464, 3.7212052308802, 3.518662987012963, 3.626205266955236, 3.6703412337662047, 3.395637950937921, 3.3346030663780395, 3.438943542568505, 3.7228614357864007, 3.486473124098101, 3.6825029942279692, 3.3514910533910256, 3.528390476190444, 3.467328607503571, 3.527324206349173, 3.532494516594491, 3.204221861471843, 3.3100978715728555, 3.3343236652236454, 3.7396380591630316, 3.4669422799422485, 3.651525036075008, 3.5661218975468665, 3.2572421717171456, 3.3703782106781865, 3.4356599206348952, 3.4426006854256577, 3.52744747474745, 3.5517226911976643, 3.8167528138527906, 3.351922474747451, 3.56634711399708, 3.315893290043271, 3.3682616883116667, 3.5770427128426805, 3.6553499278498944, 3.6734190836940623, 3.3596617604617367, 3.4726179292929005, 3.421943759018734, 3.392463744588717, 3.4646640692640367, 3.5472951298701036, 3.4068395021644733, 3.591805627705602, 3.152540909090888, 3.3409378427128096, 3.6109486291486004, 3.552807106782076, 3.3760063492063237, 3.566610497835468, 3.4967387445887104, 3.322296428571404, 3.711784740259713, 3.2046276334776125, 3.587404473304442, 3.7483380591630366, 3.6487572871572604, 3.3524051948051667, 3.333438167388146, 3.4012370129870084, 3.536367929292898, 3.299234235209209, 3.498042893217867, 3.238408369408351, 3.534621139971104, 3.2058287878787657, 3.283614574314555, 3.20107579365077, 3.4033217171716883, 3.199304040404019, 3.4405079004328774, 3.3154903679653454, 3.3920802308802043, 3.2419352813852513, 3.320750216450199, 3.3448606421356177, 3.2142973304472995, 3.3397123015872685, 3.2660753246752994, 3.3130229437229266, 3.141910064935051, 3.3448118326118044, 3.4276056277055997, 3.3064205988455684, 3.451471825396798, 3.312898809523784, 3.342003174603147, 3.288666341991337, 3.4104757215006956, 3.2790400072150057, 3.1991698412698204, 3.384275901875886, 3.1948836940836647, 3.307539538239521, 3.3580050505050245, 3.1081702020201862, 3.1228773809523496, 3.307134054834026, 3.1510627344877142, 3.3209016233765976, 3.479646861471835, 3.4748538961038644, 3.474859776334752, 3.410531132756114, 3.6174274531024215, 3.5371584415584127, 3.3994079004328825, 3.514477272727245, 3.4363025252525023, 3.7218170274169977, 3.6358874098123852, 3.506348881673855, 3.4350543290043003, 3.617922871572844, 3.6134994588744322, 3.830190007214981, 3.6608829004328745, 3.545925937950904, 3.8678587662337347, 3.7508575396825052, 4.00299527417024, 4.1395118326118014, 3.8700648268398044, 3.697943614718585, 4.250540764790739, 3.6429310966810706, 3.6568993506493217, 4.122653643578626, 3.9118182178931953, 4.009558189033159, 3.8579217171716937, 3.910020021645, 3.9288633838383498, 3.6442356421356177, 3.572199711399689, 3.4879789321789265, 3.2705241702741468, 3.35403037518035, 3.2403025974025774, 3.248706240981215, 2.8923446608946417, 3.1936047258296987, 3.0712568181817965, 3.416106782106746, 3.1766304473304254, 2.994570887445865, 3.1402626262626065, 2.8315124458874257, 3.3640485569985255, 3.426519769119744, 3.510397113997085, 3.4856349567099265, 3.2369883116882923, 3.2682865800865604, 3.1922568181818, 3.285399314574291, 3.5574947691197365, 3.364213131313097, 3.551962842712816, 3.5838068542568213, 3.448910137085104, 3.524935461760437, 3.4287505772005535, 3.388999819624796, 3.4520884559884304, 3.486850180375154, 3.288185101010073, 3.298004004328981, 3.235140151515125, 3.7271895743145427, 3.4914124819624623, 3.7120948051947757, 3.715360497835467, 3.42893080808078, 3.4509375180374944, 3.5101240620490306, 3.4411117965367692, 3.5749021284271043, 3.72602968975466, 3.896334884559856, 3.641075072150055, 3.469741594516565, 3.499399278499258, 3.4940156565656286, 3.5175891414141134, 3.351470382395354, 3.7038156204905937, 3.4022489538239284, 3.6769700216449923, 3.602125757575725, 3.625870779220755, 3.6582954545454287, 3.5921053751803558, 3.5201286075035756, 3.513108405483382, 3.4777691558441317, 3.2880247474747195, 3.324983477633447, 3.3475782106781797, 3.2891756132755936, 3.107030844155823, 3.267221753246726, 3.327365909090883, 3.0455752886002667, 3.575517784992755, 3.4836657647907354, 3.235919805194784, 3.2626624819624555, 3.025963239538212, 3.3861622294371996, 3.1655125541125293, 3.3055551587301295, 3.3473224025973765, 3.304992171717144, 3.510782178932155, 3.380530663780633, 3.1728139249639007, 3.3474877344877116, 3.6445877705627407, 3.385356529581502, 3.660799314574289, 3.513949675324647, 3.2966316378066076, 3.65127427849925, 3.7438681096680755, 3.8357191558441364, 3.4628260461760263, 3.2598133838383583, 3.5265018759018565, 3.5011014430014122, 3.35850948773446, 3.6043847402597136, 3.4303568903318706, 3.6693863275613006, 3.494725721500695, 3.438726767676744, 3.4408869408369145, 3.4315762626262365, 3.5394078282828, 3.614963239538234, 3.479173015872981, 3.309512012986989, 3.2107059523809336, 3.539382215007182, 3.278323448773435, 3.405395310245277, 3.061225505050481, 3.246955411255387, 3.3028983405483157, 3.1950409451659194, 3.1305961038960817, 3.3173962121211824, 3.034025649350624, 3.228019624819602, 3.2047064213563847, 3.332253391053361, 3.2388595238094924, 3.314918795093765, 3.3618299783549497, 3.283075252525232, 3.465293434343408, 3.3088450216449994, 3.463889357864339, 3.419786219336196, 3.2087825396825203, 3.522573268398245, 3.3360270923520674, 3.424782034632006, 3.367450757575722, 3.4591977633477367, 3.2789356421356155, 3.6316588383838115, 3.6825156204905922, 3.9001475108224883, 3.862914790764771, 3.8830613275613057, 3.8035015512265207, 3.714767063492031, 3.8134426046175753, 3.587301262626236, 3.3655253246753007, 3.8412998917748764, 4.059842207792186, 4.284045707070687, 4.169291450216422, 4.293944264069251, 4.256984126984106, 3.843303968253942, 4.041025396825378, 3.9166680735930544, 3.8722202380952173, 4.049738059163038, 3.7550568903318675, 3.71240443722941, 3.483060064935031, 3.8624164141413884, 3.347439466089445, 3.5778279220778955, 3.8550708152957913, 4.248108008657984, 4.489894769119746, 4.396559848484826, 4.563660173160153, 4.342820598845582, 4.236970454545442, 4.13688614718613, 4.1565161255411045, 3.945583116883095, 4.237365836940814, 4.3258683261183055, 4.228977669552654, 4.346015656565634, 4.392648737373719, 4.485096789321772, 4.207221067821043, 4.504071753246733, 4.644336219336197, 4.558519841269825, 4.29503279220777, 4.283737518037495, 4.514020382395366, 4.218733802308783, 4.255114466089451, 4.0093888888888705, 3.7060284992784807, 3.902351406926384, 3.5842570707070514, 3.50645266955265, 3.5928034271284037, 3.558307756132728, 3.416949314574288, 3.4641007575757383, 3.208823881673855, 3.2894423160172797, 3.5185549062048813, 3.4904814213563964, 3.6075619769119456, 3.5799585497835196, 3.613853715728691, 3.7100060606060343, 4.105699891774864, 3.673746933621902, 3.9589537878787575, 3.8795498556998282, 3.77941114718612, 3.4756365079364815, 3.7126886002885744, 3.587670959595931, 3.687042424242398, 4.021024458874443, 3.8566215007214795, 3.738314249639221, 3.6091256132755936, 3.628927741702714, 3.5086377344877073, 3.472952200577178, 3.5387726911976634, 3.726934595959568, 3.692004725829703, 3.746876551226521, 3.577973124098105, 3.4958566017315786, 3.437313131313107, 3.4413020923520703, 3.656373051948025, 3.776435750360721, 3.842288311688287, 4.01849570707068, 3.7744726551226213, 3.7897423881673595, 3.5102832972582743, 3.5768917388167107, 3.292435606060583, 3.6728684704184476, 4.157170454545436, 3.5345207792207622, 3.4960542568542294, 3.599462049062024, 3.390737121212097, 3.5566846681096465, 3.5339489538239253, 3.7530128066377797, 3.538101046176021, 4.01714134199132, 3.724827092352062, 3.896990007214978, 3.778241702741681, 3.8946558080807834, 3.7854972222222023, 3.573991450216432, 3.5667772727272453, 3.8854299422799183, 3.8094425685425506, 3.947839826839798, 4.238178643578619, 3.7105190836940576, 3.7696475468975175, 3.611162373737343, 3.996808080808051, 3.989477597402566, 3.7724437950937713, 4.169715043290018, 3.9015271645021343, 3.758420598845573, 3.8888927849927564, 3.6642214285714023, 4.114003102453073, 3.7498011904761652, 3.87393214285712, 3.6473646825396546, 3.549368290043263, 3.5539690115439826, 3.5105417027416825, 3.71054325396823, 3.768528643578616, 3.658768867243839, 3.683383549783529, 3.6796175685425423, 3.651033333333306, 3.742247619047591, 3.7100461038960755, 3.81932330447328, 3.447403066378041, 3.7545474386724127, 3.4887262987012755, 3.6876364718614516, 3.795770670995648, 3.486950108225079, 3.4286481601731302, 3.630055808080781, 3.642051587301558, 3.64739563492061, 3.774097186147163, 3.608849314574286, 4.074280808080791, 3.777415584415552, 3.5965112914862636, 3.5197398629148338, 3.767559307359284, 3.7046252164501903, 4.113040512265486, 4.096717027417011, 3.9257302308801996, 3.5444796176045914, 3.746505375180352, 3.865215404040382, 3.98939765512263, 3.825869913419885, 3.721755699855674, 3.9998325757575564, 3.768903860028831, 3.9001917388167144, 3.765781565656535, 3.7642763347763073, 3.885239502164481, 3.9098973665223395, 3.449542532467517, 3.8661339466089184, 3.7893130591630375, 3.742495598845567, 3.557431204906183, 3.9245551587301395, 3.683747691197666, 3.6981939754689486, 3.3842016233765917, 3.588271356421329, 3.4919087301587046, 3.5403440836940563, 3.671433080808055, 3.8135924963924697, 3.600260678210655, 3.4482345959595735, 3.635264357864336, 3.6944480880230626, 3.6880526695526465, 3.581007611832589, 3.6345391053390834, 3.750940259740235, 3.776628607503576, 3.770705699855664, 3.778300252525232] d1 = pd.Series([s for s in disp]) pred_rrcf = d1 > d1.quantile(0.9) sorted_d1 = d1.sort_values(ascending=False) anom = [] splt = [] sspot = [] for d in disp: anom.append(d) for d in sl_3month_24_24_1000tree: splt.append(d) for d in ss_3month_24_24_1000tree: sspot.append(d) events = {'Thanksgiving': (600, 648), 'Nov29': (672, 696), 'Nov30': (697, 720), 'Christmas': (1296, 1320), 'NewYear': (1464, 1488), 'Blizzard': (1992, 2040)} real = pd.DataFrame() real['event'] = np.zeros(len(anom)) real_s = pd.DataFrame() real_s['event'] = np.zeros(len(anom)) for event, duration in events.items(): start, end = duration real.loc[start:end, 'event'] = 1 real_s.loc[start:end, 'event'] = 7 print('Displacement: ', d1.tolist()) print(metrics.classification_report(real, pred_rrcf)) fig, (ax1, ax2, ax3) = plt.subplots(nrows=3, sharex=True, sharey= True, figsize=(8, 5)) ax1.plot(real_s, color='blue', linewidth=0.5) ax1.plot(anom, color='red', linewidth=1) ax1.set_title('SnapSketch', fontweight='bold', fontsize=8) ax1.tick_params(axis='both', labelsize=6) ax2.plot(real_s, color='blue', linewidth=0.5) ax2.plot(splt, color='red', linewidth=1) ax2.set_title('SpotLight', fontweight='bold', fontsize=8) ax2.tick_params(axis='both', labelsize=6) ax3.plot(real_s, color='blue', linewidth=0.5) ax3.plot(sspot, color='red', linewidth=1) ax3.set_title('StreamSpot', fontweight='bold', fontsize=8) ax3.tick_params(axis='both', labelsize=6) plt.xlim([4, 2180]) plt.xlabel('Time', fontweight='bold', fontsize=6) plt.ylabel('Anomaly Score', fontweight='bold', fontsize=6) plt.tight_layout() plt.savefig('results/taxiplot.pdf') plt.show() def visualize_vast(): anomaly_detection = AnomalyDetection() sketch_file = 'sketches/vast/dim_64_n_3_k_16p_0.2_l_50p10q5.csv' sh_vector = anomaly_detection.read_sketch(sketch_file) true_anomalies = np.array(sh_vector['anomaly']) sl_vast_full = [0.0, 1.0000000000000007, 1.490000000000001, 1.7100000000000013, 1.7800000000000002, 1.455000000000001, 2.203333333333333, 2.5816666666666648, 3.0725000000000007, 2.468333333333332, 2.618333333333333, 3.1201666666666648, 4.885000000000001, 2.832666666666665, 2.8755952380952374, 2.147166666666667, 3.6497857142857155, 1.838214285714286, 5.315777777777774, 2.812238095238095, 3.2381547619047613, 3.078515873015871, 4.529853174603175, 3.7458189033189018, 4.538138888888887, 2.3045234487734487, 3.9079166666666647, 1.9696340603840605, 3.7305703463203455, 2.6001663336663334, 5.102301587301583, 4.11497619047619, 6.937190170940167, 3.3317508602508594, 5.671685637891517, 2.6808455139631597, 4.393103174603173, 3.5497279942279936, 3.46266989443305, 3.0899802741118507, 4.084215673215671, 3.6542838827838815, 9.099530483405484, 3.1833452870658756, 4.91520404432169, 3.5223060689310683, 3.513890062551827, 3.4316554556554526, 7.361717046238782, 3.034030247530244, 3.5310568729516087, 2.922128819280134, 7.7212221455445125, 4.079142108730322, 9.254576312576315, 2.432390327305543, 5.455857618301886, 2.1478042199748724, 5.717154465904462, 3.8056670117322278, 4.421209786945079, 8.25086314289575, 3.9806453075648105, 5.727092564298445, 2.2562179417804407, 4.726554874616326, 2.677858543417364, 4.647202617322312, 3.7667160478410473, 8.502338286713286, 5.371667172696582, 3.7220769479058933, 3.576872840746761, 5.672282716738598, 2.5096632245168564, 9.910175995573049, 3.7785037460976065, 4.679637417536024, 2.716194069819068, 8.629652946976746, 5.139533376711007, 5.80293475274725, 5.964897491397492, 4.9442456430043356, 2.580831972780479, 4.06149549146569, 2.8358605887099064, 7.453780982905984, 8.303637507045242, 8.939271899668952, 3.1272130815419152, 7.212484656361171, 6.0686778583559535, 6.4849147969677405, 1.9282294054311582, 9.1355835577466, 3.6393741215011333, 46.1344817251462, 10.535195634920635, 3.517713645901447, 13.903026048895066, 10.986628982128975, 46.87568816110287, 4.502153165109742, 2.3054975305856416, 3.9902068301925087, 67.18650000000004, 6.436401108076753, 2.9037945225053585, 26.276562895437905, 38.22192063492066, 7.659223675028898, 2.522062522103756, 39.35848469994057, 23.99845426824637, 29.993268808533507, 2.6173386692584395, 4.040253601184814, 69.4936666666667, 3.0327631390127134, 29.84829747540043, 50.814211376858445, 4.523049856432983, 43.74888023088023, 8.065274023338803, 2.5897766484663363, 9.986485255924695, 7.6404389382547295, 32.95801323340515, 26.934599137222552, 2.122800695507033, 22.719991302526008, 2.531943126662511, 2.1558683074106626, 2.5708741409260822, 1.9434624011492079, 2.0757465872643626, 2.112191638790354, 2.1096226232500697, 2.877354582108181, 2.018921542056945, 2.3010023212314104, 3.468095728869127, 2.9194415187548293, 2.192044953956719, 2.656430041857208, 2.247205654490438, 38.94106878306877, 23.100060904008263, 4.288507682349105, 22.36149772449771, 45.40354273504275, 39.483467352092354, 4.040192685218999, 2.062892591069062, 2.6459853032547698, 2.3301549219464825, 4.53012095596005, 2.9772097452807142, 2.8574584285347373, 2.548702471322061, 2.65944699872955, 2.3178856199551947, 3.534616098190533, 3.73302985152985, 1.515600041087059, 2.5456805194805203, 6.110558996558996, 4.519910499042486, 2.2248168402956487, 2.8929118477498887, 4.901385737844415, 3.0371780894668152, 1.8101252678667985, 4.101566830031821, 2.369464362967107, 3.3470473701906855, 2.427038507535658, 1.5092799924770854, 2.2393657326208065, 3.0204576584312086, 4.952721740884551, 4.545370277585918, 3.924783566704709, 5.679710899880955, 2.07507759482395, 3.689693986577186, 4.410048364585616, 2.395058360658565, 3.6105811351207198, 2.115178011484056, 2.8206351638239213, 3.853601344470662, 5.629191429184849, 2.688231487467939, 2.0287039034873398, 5.847567952148525, 2.335106430051789, 5.12541678257092, 3.117835198159749, 5.275337101555593, 4.574242697844625, 7.278482289017314, 7.196986561756102, 7.387243180155941, 5.759555818450555, 2.608319026470451, 4.323878181497967, 2.435695102799575, 2.5092351455577186, 2.4582267426944915, 2.5584739131116807, 4.855368125535241, 4.865108087486137, 4.122068797191757, 3.4873005866257736, 3.0433521286770286, 8.639741025911903, 2.201531830484797, 5.025303611525683, 3.755774402366179, 3.555147106457937, 2.5364964085130333, 3.722142841228145, 2.48247885796658, 4.271447546666749, 6.776819864615641, 4.277098861935588, 3.709109123203335, 7.183871606420256, 7.806880290238749, 5.138150428165338, 5.030142926030408, 2.7982305694827194, 7.09283679668314, 7.6988370345551225, 2.881321122862117, 4.163881733806376, 2.556985623498055, 3.528237524678694, 5.852479341137831, 4.109318090561147, 6.1545703356341805, 12.344342507710156, 4.131945865247535, 3.9870180327335487, 3.1779193852350267, 3.472430132464246, 7.8153322360666735, 3.620740995335953, 3.323551554097161, 10.810294973000854, 8.63308429742397, 3.632960134708154, 8.11147760808906, 4.336612368661363, 6.89291983150511, 5.82210924531265, 14.330259048456808, 3.494165167016899, 9.573348636018238, 3.7180761212323588, 11.202624465320335, 3.5557115359266405, 4.172923984092086, 4.500268075284338, 9.687788267998425, 4.140257106161449, 4.8787484102923475, 6.211739463108268, 7.372484195237485, 4.1178916374103975, 8.89759647073753, 11.326268564376145, 6.9458143337417075, 6.106456541856061, 9.170521105019516, 9.42727084425986, 8.40229245145132, 2.802653113145537, 4.141863946771091, 7.182149471621556, 3.7302128901799922, 7.247612138486243, 6.658189470038223, 5.815450303923129, 9.073282476112974, 3.5132360508852547, 8.799354414422949, 3.996735892005669, 5.791928514455155, 17.375807236064585, 5.716573824007423, 6.040451151859592, 13.252769128390991, 4.459342597781656, 8.304756656212426, 1.6980046914404392, 5.252022282785437, 2.697608278171014, 9.525614042146932, 9.649622163790943, 12.597816726256198, 12.087499700462937, 17.26588324235, 5.416809380839663, 6.744729129692225, 11.52585637934218, 9.038647712028743, 5.55738532923505, 7.148217616449185, 14.971559308625604, 5.484246597550578, 6.604505788028619, 4.706706504272274, 6.056393192282342, 14.422203111007722, 5.968753545314402, 8.43818908331422, 6.739394866846011, 8.70991038247342, 15.882690106243881, 9.519841064185808, 3.6689399466244503, 5.374653857232868, 7.285325948650889, 7.708996100034014, 5.522543807038958, 3.8149253799356084, 15.373093136038582, 6.125296988550094, 9.776068773617684, 15.77058670162355, 13.82363960521091, 247.6191666666668, 241.33333333333354, 234.42900000000017, 232.09750000000017, 210.64066666666673, 221.72516666666675, 232.2900000000001, 222.12333333333342, 195.435, 188.7107051282052, 212.0550000000001, 184.82833333333338, 174.603, 197.49654761904753, 201.08250000000007, 188.2996666666667, 168.91083333333341, 140.90283333333332, 182.10469047619037, 167.76266666666666, 201.27583333333334, 128.51128571428575, 163.6542142857143, 144.93942857142858, 165.571619047619, 126.74703968253968, 132.71890476190472, 132.64626190476187, 120.56686111111115, 133.08200000000002, 124.06377380952382, 109.44774603174604, 119.52338888888892, 132.30933333333337, 133.28711904761911, 123.43590476190475, 122.62227380952382, 119.69415476190476, 124.21578968253968, 101.97053427128431, 121.55083333333337, 97.77622222222222, 118.32983333333335, 85.58539105339106, 93.25142857142859, 92.86189430014429, 148.130974025974, 107.23876082251078, 99.64868109668106, 106.35083347208347, 124.41839774114771, 92.82343434343429, 79.42896667221666, 115.31892857142856, 102.09249603174604, 97.60596031746032, 98.39762049062051, 97.84232029082025, 74.7981453823954, 117.20717460317464, 82.88765778665778, 116.06709235209233, 112.63099350649348, 77.57687301587299, 68.50434188034187, 68.74346683871683, 66.55115656565658, 57.29339610389609, 82.01547757797759, 78.97707052669553, 59.293463203463205, 80.68080203130204, 68.20699583749587, 93.13353715728715, 82.54827380952378, 71.05218829373243, 94.86532683982684, 81.07937770562769, 58.239944319569325, 78.67548490398492, 77.73863247863247, 89.3007863158084, 60.59544094794097, 63.535196311858066, 54.066168898911535, 58.69705555555553, 62.112702227511036, 82.83547150072157, 76.60754390054392, 66.45232736707737, 69.87924711399714, 95.8731394993895, 60.590718475968465, 64.98781875580559, 40.28886784925603, 42.83568489190547, 63.44847224413014, 44.71849708624707, 57.9525066045066, 64.72960320480175, 53.59518587784764, 66.21941450216451, 56.599784756909735, 44.74083139199121, 53.34800285825286, 83.39110589410589, 61.71693729881226, 49.89878665044107, 45.469751470751476, 38.22292039496449, 63.3234285812227, 51.26063616397362, 48.50249020320923, 47.96220337995338, 41.76456023388377, 60.32749657042304, 78.21711122374357, 43.71192171218873, 74.69666076957098, 49.90576030376571, 39.539820534943225, 37.679378791057594, 40.80346641185612, 37.977084683290585, 32.41200153114859, 32.30609088602318, 45.93041749418451, 58.983918257009606, 61.89522984939897, 49.95603525567998, 52.72657009167304, 59.49734652748351, 45.7758046158348, 35.79614894337689, 56.338855168077544, 51.79309429154439, 50.17492246423167, 49.45681448535126, 94.87377564102566, 5.583283140835772, 3.9162921604302654, 59.28472619047617, 11.883705882494882, 6.915702521893311, 10.396591880341882, 6.91654627381261, 6.546112079441025, 11.451208101470254, 5.696588820477437, 11.162068886832122, 9.775125576986621, 6.667897129916862, 4.07249083943068, 3.427912597767718, 6.855468166852067, 5.262775517441072, 4.217759079737734, 8.438877241038531, 6.139497244793982, 4.155880007939896, 11.924343073593072, 4.112602314098305, 11.264307262182264, 5.586391976444605, 13.835801871822309, 10.366778818403816, 5.224708357337165, 13.664748223998217, 5.775802314352313, 3.7491118402825703, 12.640176046176046, 13.278944583194585, 10.60006447997059, 4.545913295038295, 4.137727793507116, 5.322219585969587, 4.137522028506548, 3.6467037770963953, 15.298778345837171, 19.10643365330322, 20.12315502144914, 16.2593566017316, 22.72560515873016, 13.387081353115406, 25.970498168498164, 7.15262736315175, 4.508708978752147, 23.648555707337977, 10.06831043895718, 22.33236464266728, 33.119184820081884, 8.204233006990385, 7.612921109806563, 21.478803054377366, 17.0805397935398, 6.8324731088767665, 15.51072815107598, 11.11415237452606, 19.32150271950271, 14.106476608187137, 16.141752961950328, 27.431247585747595, 12.988704068154068, 3.38169460598815, 4.0732080205394565, 10.804547558922552, 5.12622014341008, 17.40577338674397, 20.495269896769898, 22.278985181485194, 5.649780350182326, 15.86570876637982, 10.942273236567345, 14.617256521256516, 10.849919946599298, 16.393261994541408, 10.034207796451916, 5.222813611645463, 6.966476149667325, 18.843976190476184, 24.03774325674326, 7.157834376715055, 6.605692477654003, 12.482704532881002, 21.278275432900422, 9.492165812129052, 6.7409658798752705, 27.940258731464613, 5.186259425952376, 5.821990818508626, 14.840411772536765, 27.982968364968364, 7.2517002109144055, 26.41445592571679, 3.2213331698750385, 14.973314234511003, 5.891178387583598, 14.134004470202997, 15.104925575632095, 24.396750000000004, 18.53616784121676, 13.568361705545916, 6.126727585666205, 8.451839101716809, 22.887695669526547, 3.0808813504708805, 8.127122518909283, 12.862281399521528, 10.648651695526691, 10.34753681318681, 8.152438186209926, 14.650473216524126, 11.638633667956539, 5.927901170149454, 11.733014675520558, 7.434446923446925, 6.409333236938498, 19.368656813602644, 9.17803330796629, 10.765351883665227, 14.477716356107656, 13.71163424702459, 8.444197508947507, 5.251662244890185, 4.697624808198339, 4.8688349170587815, 5.3173791223396485, 9.202607416219262, 15.353170601650431, 18.94445810014359, 16.71226147670699, 12.653465651995052, 8.256661825103, 12.731945883743107, 11.498063149384548, 8.055364233332435, 8.451854445354789, 8.111012981159027, 15.732954315555835, 11.457314212642716, 11.153882807232547, 4.313494070269162, 8.952838488202627, 7.666871714714594, 5.964522730308335, 4.554589636001515, 8.313256336370884, 14.495610997786484, 16.115692661203532, 6.56816189202954, 13.195922991288455, 16.706598361820493, 5.705755287893645, 7.860273627688101, 2.475742251547555, 19.636313081703747, 6.293349770440286, 9.97330286380286, 13.916166379370408, 11.36112190907819, 12.218882859010904, 4.45602520842071, 2.9430648885164987, 9.025770072486543, 4.874773443840634, 3.8403056188378226, 2.8356793287432316, 2.855574242612899, 6.488899660764235, 4.486395485812943, 5.247979789309864, 8.037945376377852, 4.061050134918251, 4.754734366596591, 9.506047402509525, 3.6984312289018173, 4.560583411510789, 7.581555760018381, 27.29878766869413, 4.21898278916216, 10.802250230150907, 5.322705895268154, 13.011138349157132, 5.120299777237376, 2.5404489153808196, 4.138665206832909, 4.523924983014456, 10.399930040607897, 3.690950834342338, 7.718602409380349, 7.190240054659171, 9.394291920669092, 4.56354511183656, 7.22336542326033, 6.963257201059073, 4.663388387611124, 6.463243831952779, 4.957760749908201, 2.5029190324668145, 6.1018353564735905, 6.895868406921364, 4.432062112051939, 4.932937399202103, 2.6209314302551325, 7.091240085829241, 2.7871860363765397, 4.988536916009182, 12.238069121170813, 5.902388181856735, 2.6744604526694373, 7.069325425637308, 11.389871317161333, 2.4032967990235172, 3.187427619233651, 6.212646670287652, 4.425432562138935, 4.888203613274407, 6.156376357212045, 4.130593305332705, 4.145753257068871, 4.472086153368514, 3.406484848962027, 8.105159937284936, 9.513209739638093, 5.830413010819851, 4.5679915077027635, 9.370917975053096, 6.474360043387983, 5.161303263360733, 9.393186871476933, 9.212958309655408, 6.362967118111655, 5.4360638814985105, 5.37057641965138, 9.402097665722074, 6.2496566006257215, 6.718457246261504, 4.779065757174989, 5.801093469590185, 6.938687223226251, 6.641724404459532, 5.910398084692218, 5.8420188830094535, 13.003173856654671, 7.488764560626808, 6.499377551469278, 5.0326612993215925, 13.501693734180861, 14.79726454147782, 7.3638314988559666, 8.136374053949105, 10.157367763170786, 8.648649934721831, 8.964934614807692, 4.590364661220342, 10.598533660024756, 4.000223090379563, 7.573014177807931, 7.6784310654014485, 7.9139903781846055, 8.142755867503777, 7.142233541675048, 5.878573375073361, 5.670243636775541, 8.813096891169259, 6.734255940838059, 3.3130886984740853, 12.202141468242083, 6.387797699321444, 6.811708665110413, 5.554487659992712, 18.393146091997103, 2.994229282708331, 2.9695969357744114, 4.640360104551808, 3.682165193500811, 4.979289774586387, 8.858425964827523, 7.046054002189139, 7.98036349179714, 8.699491386212072, 4.419739449154545, 3.4725895947005783, 5.1913184024041055, 12.522598765542384, 6.117596536944922, 5.410794590563778, 9.785013886997014, 5.410251095625295, 10.010762259104451, 9.724111506361838, 4.967477974468255, 10.478704672652107, 7.491293348879519, 10.084161043651182, 4.4765761536025614, 3.466113433732224, 5.764284346867644, 5.4375955369737765, 3.5091357996576655, 12.567910943578498, 9.082663640804247, 6.690770057321501, 3.8115607700336396, 3.766753484055016, 3.9775284856755677, 4.575929096227209, 5.748117873545612, 9.337037842258484, 4.279955245147894, 9.681489324680681, 6.202011384519112, 2.8053369264758663, 8.31513280555846, 10.272768843193841, 10.65789559682535, 10.475383805206182, 11.034965760957187, 4.675316935859336, 10.865258550832438, 4.07388252496779, 7.572939770995434, 3.8085544510567124, 7.623991132603425, 5.137287340440001, 11.193981948159058, 5.909353753935898, 9.268760260913087, 8.955359571864085, 4.014580026441012, 5.783108316173687, 4.522790867868221, 14.196439538739313, 70.34369737484737, 4.420739714417686, 4.192648929054516, 6.755636028781819, 18.299101852543046, 6.009912819777623, 11.608528403857347, 4.613083979706875, 7.052186105893475, 5.89841834432738, 5.917525188891852, 9.759138943460524, 11.894002594812457, 5.318167697946567, 5.002751115447399, 5.667061495095006, 12.657578149992789, 12.893289230021516, 4.905139305470335, 7.804551722924032, 7.579083475601618, 9.737115593973188, 10.330092413671368, 4.150206989499608, 9.621892645473329, 6.212767623817634, 5.371412395802045, 3.574867981327862, 10.225843296967698, 17.79178735153735, 5.66193372729291, 3.2262970764499475, 6.691210613076483, 33.61721026522496, 5.279902660377963, 21.597245922115, 7.942735948378962, 9.820111805843547, 6.288531092731508, 5.483464801507197, 14.24396571374063, 12.288671587069855, 7.648183652162015, 4.49184730808679, 10.78408653406847, 7.916047563553965, 10.489721257899507, 8.630210177791842, 5.133489688377472, 4.988057771710349, 4.965948976407311, 14.906004091384158, 6.066853482418141, 8.04587416598969, 6.680791732941142, 6.748698835823832, 6.311640957253616, 14.772305215167336, 10.797241173152855, 12.925805755288334, 4.264731259403715, 4.991710649380493, 5.009271174146117, 12.21672969666499, 7.414331358072427, 18.424103042046973, 4.51772492030994, 6.626874183507175, 12.62415436255304, 5.653644402834151, 9.546078996439292, 13.699696013716462, 11.89458706164477, 3.754389272346343, 17.32610468760255, 8.754448698915068, 6.4897363681927045, 4.04352252024941, 4.868542880223281, 3.2102328729105993, 5.283628285627627, 10.524642258119613, 6.773285703419255, 10.674523287396676, 19.420218140122646, 9.998369183603351, 13.609883437712076, 19.3932482464248, 4.487370887609186, 12.986820797565757, 2.5420520660560784, 2.8856621144412378, 6.116537736021501, 19.096490651249862, 5.027251285024823, 6.9718180403904055, 6.762863513717259, 4.907092191807456, 10.60909334840158, 4.613728050760086, 19.275985998144694, 3.647090180360135, 4.3343234094174905, 2.689343739718656, 14.944138794692185, 3.13080891025279, 5.330096755819715, 6.594407900866148, 6.719093609901944, 7.8524017565607585, 7.661996043790779, 5.603077628357012, 15.323181350793758, 16.612217106495326, 5.317194150079851, 6.5429150108163245, 4.38369888326027, 7.362772733118935, 10.940129646980385, 10.129733702899857, 13.561220853097494, 12.09612063750999, 3.2941071755403044, 9.146874310570814, 8.589547131858351, 7.533941865535475, 12.262955331347356, 6.174453733217691, 6.005145247834839, 4.100829624985816, 4.520033545194874, 7.875817455035052, 7.5598141326959425, 5.5256151602266135, 4.046506117565845, 6.460446272804329, 27.27896449332679, 6.487522879099003, 3.9962592754433506, 31.77882415184669, 7.075552676673064, 37.480402163388526, 6.564832671603695, 8.896854961386197, 21.364714674876634, 5.869871578320369, 5.958813637728498, 10.04284395869471, 14.726459474163036, 13.88743471369218, 8.370435062561826, 7.433452116490029, 4.253337067935477, 8.09878282349033, 7.78021399438485, 3.6298005266318336, 18.366575469804783, 22.398342227584962, 11.723666172558136, 6.24254031316392, 22.157740779265975, 10.445440048082961, 28.038730907980895, 5.544169911164545, 4.132413440108247, 4.333925061289477, 12.321951254145775, 10.316776464854128, 7.064362815795455, 8.424710328641895, 7.274401335638768, 3.772645744903738, 13.009179776200051, 10.232214528192872, 23.46117859498315, 12.875558268580404, 7.751365183680181, 12.52365987585898, 5.746000489335289, 11.151511647605007, 39.982383726739364, 9.76667280764577, 2.2735913244954267, 18.72279609627788, 33.143790393816715, 27.495152314849886, 11.684390394787442, 11.081526872949073, 19.127169768495992, 5.60331921434815, 18.37432462460853, 6.308808108682307, 8.150610756048675, 4.810981873543789, 16.32845226995227, 14.588555401603227, 19.28176605836574, 6.641807450843539, 6.136436046634811, 17.107405655646225, 25.123840676627562, 21.66451049667179, 24.61830414389326, 5.7046207232732735, 12.614526194505343, 13.59728276884813, 9.548434354622666, 13.554886281398204, 15.673559487403196, 15.9552585371285, 6.98932740803902, 5.817134993957514, 18.214144216267194, 5.798175249169598, 4.267671729131833, 13.262312208170547, 19.079132412769603, 7.125461867838604, 11.754135321990475, 22.148579125977342, 8.578574070727024, 10.276744372853672, 5.0502720120293905, 5.970507084011388, 3.130244919722136, 28.954526055405868, 5.62301064926638, 11.800487685924763, 3.345262480736936, 10.498201817171141, 9.56996193246838, 46.461462121212115, 21.69526041785871, 10.496582672079382, 23.88074521047069, 34.12727716063756, 16.68236225009041, 5.424904862625608, 20.898953132033814, 4.2312944680765865, 6.822008221286105, 4.371855701402526, 15.466577961461379, 3.663659159889427, 13.40868321243321, 9.754579851915203, 12.230988984788594, 6.258843613642201, 20.425590798479472, 4.872608515828295, 11.608897620934158, 5.118909876293218, 26.443981681967042, 12.278645721378409, 24.478124463795957, 5.500293925321154, 8.570961797334416, 7.52108321541819, 8.436497916989225, 6.419179465365417, 6.191619571948149, 5.642184287412434, 4.957901731992718, 6.4396313507970175, 4.791422746133915, 8.335201034995388, 8.025210720019958, 10.407089202574634, 24.312817079643562, 16.371659443808397, 6.772955871663006, 7.362698837039819, 11.305929357452744, 8.335691214445319, 19.663817688936682, 8.938002928507967, 17.037557076026683, 6.91425867280519, 26.539163483397818, 15.456143633007251, 18.432423683302165, 11.709296604751223, 16.219493586637483, 4.8865261714593045, 3.904912929185273, 4.77389779272011, 10.510798262794212, 14.29571332611589, 2.8963376280319237, 5.34906045121291, 5.297092034154884, 22.39875627324412, 3.897874229247449, 6.835601243574589, 6.502496588728675, 8.385041421199093, 6.476506668947719, 5.759031957040077, 9.852994228479085, 6.360295947005669, 5.135699164288796, 4.827434262824485, 3.687625113906477, 3.7985735228951114, 4.021726966027275, 5.444005340334725, 12.586068381269467, 5.550495358840311, 6.355901085780496, 4.759641440345736, 8.76004449580553, 2.8724083724278984, 7.282940685468586, 4.8968816118504455, 7.719817990095814, 4.5890498179825565, 2.6559463205846385, 9.358873394742984, 4.175046510961847, 6.121327319435993, 4.562476303178764, 7.769590196730136, 5.909757838769212, 8.166563986768635, 8.2715977300226, 5.765039009248197, 2.258992826352867, 8.780992427426527, 6.46267635776547, 8.07447649697314, 3.8912436130581356, 3.501094355448997, 4.583656199797027, 4.1693054762106465, 5.11838193362818, 5.177908139084728, 7.093736384865986, 4.383821612983267, 4.7417069914377095, 9.059579397334968, 15.056223185365495, 2.9903823476123894, 4.909923070806315, 6.044758151816731, 4.222712232560273, 5.4325999447868405, 4.3142043339961065, 4.41020587769659, 7.3948189693364155, 3.315013380168869, 4.950332516900091, 6.950534350883, 4.234082173937385, 4.593613975909927, 9.140618025705814, 4.17786657976753, 3.6590805254829353, 3.6562201238404715, 12.025285635006938, 5.3577289609182435, 2.764185272894862, 3.175876506374693, 4.5695279008655545, 1.5224232307542054, 4.034824772179724, 6.514772292658305, 9.39556613721005, 5.825124048397003, 4.912957356835825, 10.84936886232347, 16.806353810305893, 4.6671401341821594, 5.706686362546352, 5.620026685449318, 7.639066208116213, 3.8196507348109363, 9.549884120119895, 9.436067701768419, 2.381261943040097, 4.637575193357027, 5.824513493286397, 22.635317069403225, 20.286803263566277, 12.021027908873934, 5.399289416914467, 5.293309410762931, 11.66791629146699, 4.236889959007673, 3.932433283342532, 22.637998234715727, 3.3856957442414544, 6.225912840656325, 7.44990595158409, 5.920706718390405, 5.068278923675923, 6.741666787554045, 6.4117694367435, 5.1423954258701645, 13.340009955977699, 4.100491163027525, 42.4583556204164, 7.158175050441313, 6.316560454090386, 3.075419187067377, 5.781655678983319, 21.368297872095738, 6.911367842580244, 5.521236040398778, 4.150402179361338, 10.608082403630666, 8.961739539247823, 7.0128981065233225, 5.270643591038622, 4.8272914582481095, 21.513526867807595, 19.24524848868969, 13.08883750445682, 11.106315259549739, 22.485291365678687, 8.400316426476722, 4.213453174001138, 8.609830977322915, 6.349807490335054, 5.753819203768615, 6.754217337087104, 17.77277854622577, 8.739618149763867, 8.923116544699507, 23.526541449001165, 3.904753301366436, 25.81270803959474, 4.495805725801664, 7.879876250567199, 5.055846679665509, 3.8629918221454633, 3.3866294834700468, 6.545951996260416, 5.066935391801311, 9.953089509213722, 5.094357421074281, 6.742167295252234, 8.260326991523595, 9.35903277515232, 6.869527782948236, 18.999408835283397, 8.691836882367857, 4.740870593380876, 6.431252208649583, 17.94370960902315, 16.56120962357321, 4.852514005930007, 4.906361867989892, 3.8661173277535643, 3.6293981138280653, 12.87857334235837, 5.248298415230963, 3.269042024250639, 4.0244484483722465, 3.1992859181527926, 7.6212804806996015, 6.346689388908598, 11.850165464391743, 4.81584099947576, 12.882745133632804, 5.024954851664175, 21.141225286229822, 7.31816996213415, 14.057575932939116, 13.328513053641041, 13.319237238922303, 5.604037968461136, 16.33455539132995, 27.793965565802612, 4.28885866319966, 3.6356025477868816, 17.644601468082243, 6.921641095977537, 7.571173729375573, 15.058266237628379, 6.467898201808389, 4.779795241345447, 4.440845161786979, 6.697790669353766, 3.6779568665665603, 6.950859181350681, 3.646611598909862, 7.398004789939606, 9.882421608286853, 6.643880222494823, 6.471825580854626, 10.769653287234302, 10.565460379285454, 4.066041671047592, 8.39445761564493, 6.524423605275287, 11.451637844445798, 13.674422424021476, 17.797956848890323, 11.129609651869954, 7.494167240463715, 3.174917423945621, 3.5210026706233686, 4.988267461785916, 5.32019474841897, 4.264214093455234, 11.49934044093448, 9.272824544085418, 7.213943182857975, 6.42674762586472, 11.376023458802905, 4.16110100495977, 6.8814588111891934, 11.96614367261914, 3.315691363796779, 12.770327244033606, 10.69638424927644, 7.581041855058365, 9.901148412295525, 8.708700396825398, 6.209075822606015, 20.57490986215866, 6.239979752144355, 9.149753816992488, 3.813186595081301, 5.797123902988166, 3.1112190817689807, 10.491925437480374, 6.264145432488714, 6.304395122052313, 2.953762353056263, 3.6580223939863177, 7.053397784057207, 3.1683782325110466, 9.933754230177188, 10.211928141722659, 7.846197633091597, 4.299921326071041, 5.034308358598116, 24.9167307706424, 5.2614090389264065, 1.6965423108907323, 3.4979671830326278, 2.830371914775606, 2.382483641764512, 5.321921248937085, 8.079326513057161, 6.196294018071383, 2.8648131684483378, 19.040185351988605, 5.013113261262615, 5.120040083550557, 9.35556047283063, 4.6169863390409445, 8.462181120905331, 3.9794556815810975, 10.261177510426695, 5.065160297506375, 5.739174864380309, 3.657911040389759, 7.094503693422968, 8.4646729378028, 4.816889630975927, 3.9956209853767337, 6.115604430803648, 9.727023029487064, 9.13341305225004, 4.436192745254049, 7.723617892806342, 13.023882466916847, 11.702058365873032, 5.479499483649542, 2.0663483286523237, 6.2324153761425185, 2.3922840575388546, 4.876915447520157, 9.389428843277122, 15.703787821568639, 12.692224113553975, 8.05781357836058, 4.518006900667411, 6.51671089291499, 7.606699256496376, 5.002354629337845, 2.9527939250116653, 7.57930867453637, 20.052117836187104, 5.327184792013411, 6.739023326082021, 16.20881996914667, 20.53829714500149, 10.292291613201021, 7.154396095772808, 6.204974243052325, 8.390521360408563, 4.468496146937139, 31.8862381893469, 9.23281614442116, 8.552268015627577, 3.954238497238485, 19.731812007709056, 11.153800119916141, 10.179487379477933, 7.21443919857401, 5.730680655393299, 7.177315966744833, 5.010006364998353, 6.7325330397615915, 15.071427229660314, 10.861593021585124, 2.4631703500240985, 8.144476313789712, 6.002946504112475, 3.850788306302886, 7.9960873552549225, 6.1567175197005035, 5.521919416404644, 4.17249006724567, 9.483908652147068, 19.71314559333581, 11.139693935009154, 12.408991928712858, 5.912648161443951, 10.622397016357613, 11.012450738724873, 12.611876673891105, 8.6310357968322, 4.931290955895879, 5.4569163371521725, 9.346391428109335, 3.7028743654227854, 7.215036715515788, 75.92712186663915, 5.826102330559747, 1.9988100172765526, 4.839004293137091, 54.799213274506144, 7.117459729008697, 8.444333906921493, 6.149922469219011, 3.1743569757705825, 14.835260830963767, 4.686197610147247, 2.5920873864697387, 9.281874567950343, 6.051469835719837, 12.148308680680964, 7.55670268241166, 5.930223001753931, 5.932242042572403, 4.096824978123931, 4.678265807437728, 17.334617952375503, 6.210568749208691, 3.0489205645827004, 16.238976708010494, 6.710454483972813, 27.39898107579571, 11.018166743144631, 19.97467744480371, 7.844345272805788, 5.596868694149338, 4.253798868871739, 4.792923286546565, 2.2758321908541705, 7.029245350735423, 19.16703093685938, 5.333349780147723, 4.941629590612227, 8.538756267680842, 18.957519909485075, 7.82926497897766, 6.37587615676167, 5.553522612563944, 7.055656100497035, 3.177637158504278, 3.8695127105660485, 4.816158196593598, 10.541696349703912, 6.502089135912557, 9.598871132816825, 3.954581710508178, 11.6595303043984, 17.411504633308073, 5.811574361519297, 8.017156103333656, 16.082199296660107, 7.001072307632092, 11.151115114145487, 11.992966476780976, 7.414089286997061, 3.5792677813487574, 16.402860625305333, 3.2071630975161822, 3.7789662711536627, 8.663576217343621, 14.922280747328212, 5.630570076172603, 12.395673385913726, 8.464426639438031, 15.12930621153679, 15.20708183578615, 5.46607894619787, 5.997729615613641, 12.808098998479492, 14.77616432713397, 4.209865560794379, 24.84612419588782, 7.233928525833469, 11.378960867602594, 8.157116370980559, 19.628730537776995, 4.653725463127432, 4.094516612939164, 5.7956446916190645, 21.45407006877558, 4.892724202502492, 4.495300586614007, 12.200338431201212, 17.09875693081339, 6.550018415465836, 5.069237105544719, 6.210888040127815, 2.9874262366658866, 3.3468639171820005, 5.598039154211833, 13.688221685506486, 19.69138489269868, 5.747165664896292, 9.249634695354027, 4.651562388907897, 22.537294377812085, 3.611300576766086, 18.070437780669206, 4.249528007988983, 26.100475664203955, 4.4129928112257, 3.738363181033513, 9.172547465662577, 5.506908125668041, 11.633118092814637, 3.9625176270199267, 4.78558646254703, 3.1874065051097697, 18.04297207271067, 12.93286323464707, 5.387761700179083, 7.993462048179355, 9.091343341372063, 15.785258626647021, 6.967481125406733, 6.806599701924643, 5.908750193953117, 8.04388289564685, 4.281447117257351, 8.353068074011805, 5.9411235823945585, 10.318198096420193, 4.030022867106396, 10.00963693739524, 6.951152541429556, 6.855974793769826, 7.646496213823191, 10.971262435383599, 10.429542227572995, 18.622066372353142, 8.182477960182272, 16.5037290954536, 11.865863504201593, 2.587937721340759, 6.418813156808198, 6.486269691406053, 8.607651056314795, 8.232549477668618, 9.6648803515112, 12.6593210486812, 13.514734110292954, 9.806547891775969, 10.312070650719265, 24.550412052214448, 12.244491017200804, 5.814318581461162, 4.565518382037574, 4.425117446860761, 5.37475143030316, 6.365054196796288, 3.043442710143448, 6.0605912030243525, 28.74066804376455, 11.462687461312168, 5.181234190112623, 8.907548307799447, 3.2676313328722717, 2.7723237553962656, 3.887633769902192, 8.984905534948211, 6.559384729349868, 8.503925283308302, 23.547916063979994, 6.568812242515167, 17.126703584043877, 6.927006719547506, 9.726996474682444, 10.537010639108884, 7.083189347200626, 10.312845085719793, 4.9232063967973625, 7.644425961651089, 4.912174888954818, 27.23269085836264, 8.266921915337194, 8.852272940510696, 6.0751498822422025, 5.150600576434679, 6.723720791679342, 8.29194302801152, 7.3520003413869945, 11.336141348117806, 14.395780546006423, 4.479157793426355, 8.263916490090605, 8.585589741323405, 9.939123866088792, 16.024930245772374, 4.175380909458602, 7.0542094678418765, 21.99593776474689, 9.5528256727881, 11.064200042520351, 3.8609889909442683, 12.247833244166213, 3.8541804992514876, 9.919220302554054, 3.725314260672789, 13.861237641310778, 31.759412303506835, 8.514254930372248, 5.710483212787123, 4.242388352699626, 48.17469222582218, 10.606267301371208, 4.721979838062604, 8.32525960546342, 9.178193455387111, 16.892396261804933, 5.0258828190504055, 8.549911168593665, 5.887956304604292, 7.4806286154249655, 3.354009953915761, 61.94569298245614, 12.22576094389498, 3.8997547124350187, 8.857999711613111, 34.243424224496486, 48.796215140629066, 5.775442544318576, 20.46144494881336, 12.392209164149431, 16.4153783189969, 11.60707559186728, 11.933736377650463, 10.712611595530811, 23.991659565698306, 5.400807227458303, 21.26896142965458, 9.446843266830967, 10.981981311824745, 5.823905827262828, 27.911417636037616, 5.22802853209439, 4.427500451887293, 4.3568432262619305, 2.717481826658528, 2.393851292440523, 5.200637159826839, 9.519963346643094, 12.226697016272523, 8.588218815053516, 5.9492524626597305, 4.6551175918210905, 5.697546148539092, 13.022301532211678, 7.2223572676321215, 6.927677470890193, 15.196334401742835, 4.540811967120863, 21.43143455764161, 23.46210749522669, 4.832723831229602, 12.348584337718798, 5.401110642495526, 7.808905531880198, 3.880963414274634, 8.130302763332434, 5.941628034348454, 23.388220168791882, 11.068107631143024, 3.725549509701481, 18.897976292093578, 4.511449404102183, 3.738415078002015, 6.174905580036896, 6.606117499239378, 3.918728215360966, 11.009465304248582, 14.156085373138904, 15.536950062364532, 9.279120621482091, 9.08980162865324, 7.209381907982097, 15.190120021187045, 10.510898940101127, 5.31014776366279, 8.502027930165506, 9.787254519608359, 8.492530951011593, 7.073948650515989, 14.174882425418373, 4.674037003587778, 15.209358082226077, 3.983136726888404, 9.180197517281554, 6.139450475945979, 9.699438714919996, 22.229111218846505, 17.218274607993603, 38.49296447789937, 13.040214230196632, 6.27266873929869, 6.090271443922233, 7.86081108485591, 3.192555046906884, 9.806178411168032, 3.986162235310443, 5.4550852597359025, 6.47120976088684, 34.06629851957666, 5.755276798609125, 12.017574714758931, 7.353045550203165, 7.983952459067948, 8.205851137512427, 5.4772053918232855, 7.852225657482755, 9.310157809393482, 3.9377279255762345, 5.4340465195629815, 6.464358122084535, 7.304705912819562, 39.692705091326786, 11.293657488572757, 8.408318105930496, 5.041438636836622, 7.555393198357362, 10.829700468330664, 7.584648735227397, 5.535492523448054, 10.751273384215832, 7.388212593061557, 9.221565004070484, 3.9867649404931362, 10.316049956209072, 3.6355689513343785, 5.877493943193312, 5.076311209805827, 10.41743698707375, 15.753995338335303, 12.755807875060432, 7.623567403572548, 8.144733896187173, 19.133214777361154, 6.374029751261652, 4.744631789227512, 9.197443350443514, 19.66775173630057, 12.452341176927385, 12.935189966218202, 12.89301532981893, 6.983275299915448, 10.956805715201266, 15.282838154925063, 3.2040025301291597, 6.8192532082464385, 8.191832221887001, 7.927495772114315, 8.933716608151645, 6.261496811999613, 7.672866109474354, 15.48031926270327, 9.831560370190726, 4.02088719871801, 5.788456539913445, 6.404147444123141, 6.04154162474451, 8.234889114787542, 8.947127174661942, 6.941855597450226, 24.104596785282318, 13.27215582517136, 5.787065417371858, 5.4140397149836454, 7.737850256030146, 6.89415441128471, 8.292782844501831, 12.190591164972599, 4.390802025972559, 6.834657092366682, 5.8999214386348005, 3.2107798358005053, 11.098796353457343, 9.350735531333639, 13.88779152589756, 7.9377232458186855, 7.068023126547957, 10.85458878615111, 9.688772014926636, 3.938327261333751, 10.117317198625253, 10.37078552520714, 8.850131887578176, 3.486804354858702, 3.0875919909464518, 3.0237270499380315, 3.914244550002287, 11.15170802456127, 27.95138892489144, 4.2312173305480405, 20.114182231091572, 13.04391566952999, 12.645683596496097, 21.547374175426175, 7.2876674754722455, 7.4924888264054035, 7.704364950875452, 20.805509138282105, 5.411602765324307, 5.132325457456683, 7.881179871598986, 6.993544139632175, 6.789931201975646, 5.3013680362067435, 13.92460257209149, 7.310486988225737, 13.921655089854884, 4.3881374366380115, 27.977488028053, 18.676168130086307, 6.2584970005771465, 9.501170200465591, 8.438881833944729, 23.1662568627126, 2.233322870547618, 6.815704632119698, 4.005799738979591, 6.538631022824141, 14.632775232645502, 25.83692542825887, 21.73803330038257, 45.20799618850171, 3.917856978015019, 7.981508268181463, 3.1974831103558534, 26.58530753637822, 4.074504704480598, 15.741650488861456, 4.016434105023951, 10.134856914926505, 10.075090168466772, 5.741821509593228, 83.77561038961036, 16.254242892489764, 8.473630529428227, 6.7179136146116685, 18.1876447563874, 9.593567667703226, 16.541027253547604, 4.1717618868450845, 9.191806290365246, 11.569957921576073, 8.820152268968084, 13.426664818868076, 4.337966404075075, 3.417813054170824, 4.048703339956507, 10.037448845386779, 19.051444688021355, 11.951901560397825, 10.868107902990259, 5.874626453858863, 5.9039602695602165, 15.462766535097414, 5.6697692360718825, 7.055221852015359, 4.7845798530106105, 8.022482106973579, 4.696510480607568, 3.153499796387361, 9.965040458055176, 5.008322864887911, 5.17887182087257, 4.931479814878407, 16.877208772522074, 4.868236509723786, 6.981298950177241, 10.679169870932483, 9.491140168589961, 3.3978154450468674, 7.891841076681302, 9.119563827902702, 14.617082052020779, 3.881856246139176, 3.71220154907418, 2.990326304495647, 3.9290766558739105, 4.300100602398586, 10.919730875119741, 39.68478769031121, 3.995688113948439, 7.8959238317900695, 4.501093756191927, 5.978342919051536, 9.761428843846636, 4.147962510656495, 4.934014350265355, 7.901970452489504, 5.47358591673653, 6.086457736518798, 12.306512264036986, 8.090444261255117, 10.081915330108322, 7.370675504001194, 8.084204790975837, 3.3925643224242807, 7.186564733706643, 26.059801373350563, 9.330492091483018, 4.920972192663959, 7.077298746649848, 2.5140251794854676, 5.050244060923549, 4.3186523139125805, 5.488990217924306, 6.0119131565131685, 10.545761172204594, 4.664999041378637, 4.395972096694571, 13.482387032834016, 7.31650928968859, 5.884840881960686, 3.749113650094172, 3.8486278555587154, 5.2685278698717335, 39.344286882682546, 14.575966670833154, 12.911559313350537, 4.113172852890344, 4.3993961031572075, 6.861969821442276, 3.4541934704648414, 7.492970487346816, 8.141401147934605, 9.922443104156764, 8.091826396382, 7.250741781009178, 10.974869572068698, 10.032059723210082, 9.171750545347233, 3.590774641202003, 10.766217945349409, 13.315394506511382, 4.3089048569065405, 4.561989498490873, 12.956994229111105, 3.7113032745521837, 8.372959816012147, 17.439457390957397, 11.460425211404756, 4.310601565553097, 2.420807561498785, 5.607384965692218, 18.62242689499595, 14.016143276981659, 10.959263651678983, 4.234544638306588, 23.100607284314588, 20.665077717451297, 5.047362263985754, 6.580098072221818, 9.837113307197837, 9.49899082191888, 11.059953129457607, 11.151821676500028, 10.019770423527914, 10.022862899459707, 15.002289361945657, 11.998671597813583, 3.3268674830453233, 8.947137475149196, 14.24396220560522, 5.847556738510811, 5.757338678753938, 13.198478732254221, 4.3908203276227065, 8.979980706934125, 14.049629944605336, 21.344707411829813, 8.405436787224605, 3.5085474606066054, 22.397256094909416, 4.629801871898122, 6.9730466337669395, 9.10011163899167, 7.745283756416652, 7.343959278969712, 7.354535666557634, 17.760070282230476, 6.167347150549566, 10.137723420575718, 25.415382079262812, 7.895646356549281, 6.4434960886898285, 10.5141159127874, 6.901465001327911, 8.16896764852834, 9.279863997113997, 14.222862196988578, 3.9827050066312464, 10.283559727328978, 13.551294781134668, 12.475378871213476, 7.239567663466878, 4.812448040778229, 8.819537888135962, 8.58786275759184, 6.756180193438427, 17.840272370508416, 26.201372231827342, 6.7738388316476525, 7.658232646882646, 15.794613837428697, 18.83204674524234, 10.965805051264354, 13.54880548993682, 56.74566537833081, 4.347975368591587, 10.617703925292055, 7.906352675198575, 25.7780005755961, 7.6417043817603965, 4.715220541192695, 5.973950666969344, 8.843369587805986, 8.104552142177939, 7.243107498036564, 28.931420845596573, 5.791462668052331, 4.852764400900038, 21.97749306411775, 11.704692297269627, 7.657812734461681, 5.401130585518517, 6.490177723548177, 4.138706992914091, 4.019431268929987, 10.135339848797974, 17.48651841622407, 5.8072323003111, 19.086667999256335, 9.186889503995785, 28.854248776310275, 6.985466715120929, 4.634561305818927, 7.600916313914842, 16.574248960433223, 8.839250131562359, 4.691588184051666, 15.087182204732848, 12.299354563953559, 5.653897261643733, 9.33595379736235, 21.948183918637064, 5.428317550401152, 6.108281323728257, 10.511189548623419, 19.013656373541814, 22.812263791604366, 6.689820088235208, 8.133607810732503, 12.56888188582364, 12.444039904732685, 4.424598538183805, 4.773567696055602, 6.192304810866182, 3.6551816494906917, 5.755123691224868, 11.83555656081329, 12.070227185598128, 3.6729694608684, 30.094650098058242, 7.386322715287205, 14.262172297181836, 8.87494903754826, 4.447710280713821, 30.7061796743013, 12.560810283924452, 4.609459614798261, 11.708846935019793, 6.9980124841594336, 5.131984153197703, 7.860782395960912, 5.583299881280569, 8.519661209396528, 7.194644419191028, 4.82742952146236, 7.402045787911461, 5.4123310997833425, 6.53166433776548, 19.728496153563224, 7.472040293500193, 7.652353429376844, 3.7798853033901754, 7.339384184352598, 3.29482090119315, 7.692107323317127, 9.459431949730622, 28.423530731859366, 18.879592931259847, 6.7603990945173305, 13.776086012057883, 2.913651887154564, 14.187327699471634, 7.4973093531057, 3.416322444279233, 12.363219952808967, 12.275322493137669, 5.209665796366865, 2.247310146858424, 16.399704745220973, 7.297765565064022, 7.28882913214119, 7.138919273998935, 13.582190846808075, 5.196705225333775, 8.291592789933635, 6.8956536964940485, 15.79680419524698, 8.615094123506411, 9.44922691056078, 9.946534191484067, 6.518781322898558, 6.750563160135847, 15.493193684684037, 3.511396255755573, 5.112747566258074, 4.982724125649725, 13.891798214246863, 3.703361263440025, 6.5936466528866235, 5.199978466423328, 4.74570960169367, 16.52361359617242, 5.342901741260504, 5.3104986711550515, 3.9591326728414002, 10.18167256878019, 7.345238613462263, 10.270781942441104, 26.982509703531772, 18.576702235100196, 6.933386473293249, 5.907316570425173, 9.56943673560273, 11.407653838148402, 19.00553982978202, 11.20264982948567, 19.21010894225597, 8.9601328834412, 10.51205869139164, 14.110108132939086, 12.489609850243275, 11.065914640359265, 9.258941098497834, 5.429679578910079, 6.166871722451963, 8.430040339123218, 11.308583305105959, 16.546140897746167, 15.546374696611387, 7.27413687080053, 8.676449029523425, 5.580483074891191, 7.10243025052904, 6.5054236822146505, 16.035822420863713, 13.268579012450841, 5.8095924722606815, 4.774484401833607, 14.828447574605736, 5.932375720647418, 10.098545741137933, 9.067991566665942, 6.992206505133068, 6.332384822335955, 8.541913151788359, 15.599370248163174, 8.434714564923073, 8.311275360871612, 6.938177956130223, 8.27859765345483, 8.290922054816859, 8.26854869717614, 16.663786674964356, 5.862367406446742, 14.09179517363459, 4.9407654655485205, 13.064098543064778, 10.025809868626878, 7.669656043026568, 6.545843674736865, 5.067451727272577, 10.062647454145266, 5.916450395681582, 10.634941497240526, 6.397495860292902, 6.123027446042261, 9.548024737822175, 9.678072952995509, 15.246276599707489, 4.788679375020072, 6.369885689609286, 9.80021621492874, 9.169049239662334, 5.028730397321919, 4.6026784643348035, 12.767159143507973, 6.410295960338068, 6.437744461618016, 21.022515010920827, 5.041271984276267, 4.306784247455186, 6.542596716108062, 3.158579515116257, 8.07214547678405, 5.826453323349181, 6.999913913513847, 27.61748894140193, 16.023873456351215, 15.130505544901338, 18.931435603436547, 21.397004817078347, 13.904505460317878, 10.91146365069484, 7.858682070790505, 7.020505855029726, 16.306014960530938, 7.608936501847312, 8.181750167710234, 13.326081579090713, 12.665350559245656, 10.762486680552085, 14.934992819022503, 10.396663968468806, 6.616849616106926, 7.432704808917247, 3.7174894936584337, 5.101503780963642, 7.69712764465926, 7.059063755246728, 8.847988858876661, 5.411818003774829, 7.111789825620757, 3.551903878399639, 7.707738609756108, 4.901642513071194, 6.28169922401591, 16.01019789427943, 7.67931168693082, 8.540494396876564, 11.153177945137953, 6.195544776838442, 53.84183851650141, 6.175681915870547, 6.249154910090326, 4.74867819938777, 26.189212552724868, 5.319818205528572, 5.250762575773292, 6.645202775537235, 7.096125389428218, 26.477237672050173, 9.178818351419922, 3.936784527425826, 7.075522982436399, 4.839792912454828, 8.216424269806078, 17.46182847847835, 9.579861340220969, 7.662116344086812, 10.710757136495326, 4.487963690546854, 5.9119342523703535, 5.730608758798746, 6.886853883360552, 9.060403967973668, 5.30409515891038, 6.185598451454303, 13.37431732230928, 6.611144399910029, 9.914311219313078, 5.6790567352809935, 13.743888482876926, 4.550676156778085, 4.819878987651913, 11.469036002138548, 11.656487268431926, 10.12058568885091, 3.4643386430096865, 5.482478481651011, 4.572219985320612, 5.602833328854698, 4.9190338968633665, 10.66818993647742, 15.77054189814369, 4.7642578851546356, 12.093648797949886, 26.074850853059083, 8.318916785724431, 6.285503805450807, 7.167544272232638, 8.441893647309511, 4.783344934807822, 4.563012186019585, 3.6683621661028862, 7.354225353996698, 3.4116797977572153, 14.857025486989555, 8.334715803919961, 4.758060352249258, 7.166219743312315, 6.088429734186327, 25.431853625711064, 24.69067632145921, 9.309890328045174, 5.029801352294837, 17.31094728866328, 8.261707076616718, 5.135652113659637, 5.0651885366412515, 3.999905395215885, 7.385658547165633, 6.373992112439257, 4.644263043783147, 5.684864625259941, 7.5666199661029125, 11.940447161191397, 9.493549775701666, 4.196912658810758, 7.049508066006666, 7.65282698913018, 10.841743692768471, 3.657592915762696, 4.1276679789167465, 5.869004090491986, 11.154436272892408, 10.083940442267084, 16.81099792841313, 16.467845972280745, 6.142442269426564, 4.8720381278946645, 5.067153461239785, 14.380016700599858, 8.600405149758643, 11.446022963424955, 7.447582167417332, 6.673288813988872, 10.510021899258074, 9.535914366009788, 15.454509571684383, 6.689210777874944, 9.969077479082662, 7.341148706012817, 2.9671887250470435, 9.943260416296381, 4.8538557041290655, 8.458246276655844, 21.040828757330978, 3.6756979175737143, 10.5486167998668, 4.741291142522634, 7.205071131160896, 3.632251837622062, 5.299991566221829, 8.076747639006273, 4.961304104799081, 6.700997852943775, 9.058147889331059, 17.660380030625976, 28.708090891263886, 9.014444723334138, 7.662274112393614, 3.0027971307301167, 10.24826173137117, 5.483013743407209, 3.116102963187991, 6.225447557852249, 5.780640059268157, 4.72388796895102, 6.226398814225451, 3.171465440731145, 3.7785193785333973, 4.958210648619986, 6.47552322903748, 5.502130621039259, 9.284580404148691, 5.26838211993714, 38.08753681417679, 4.64947612295916, 7.853894115579653, 8.958705229466865, 6.852447058237661, 3.6468494782007506, 4.317749955690622, 6.276197037286591, 3.9428940645349315, 7.2256173102390795, 24.38765535853037, 8.96838076132095, 7.27801264896112, 4.725124172661822, 8.288910073488095, 17.95289219420837, 5.9677093876280125, 4.959524744184077, 7.567669017752461, 7.898698634574335, 7.223105688972204, 4.177825669082097, 42.89719558113099, 3.208395286018363, 4.363676466603786, 3.7850105536661123, 2.9880180308349185, 7.663107235617991, 9.006054273083269, 12.179302161614292, 4.805373384518153, 5.496891394808283, 16.131245194220877, 10.031205637919845, 4.705926715306426, 4.920105794894221, 4.7509568340386865, 5.265232380331265, 6.92829056413591, 5.295117448571836, 44.04787726872449, 15.30897619609246, 5.977263685034859, 12.422705924891277, 7.969063772908903, 22.84043278227501, 8.96011439138579, 6.022578898261145, 6.131658223389956, 4.746592364131122, 7.132407372648792, 11.182220492539841, 6.640837769991687, 5.199065787408646, 19.858310829312913, 59.54167634697685, 5.5470872590135265, 6.183490228319156, 10.160110609793614, 57.50669304785251, 54.79375517374631, 8.08324023214306, 6.564344401022343, 24.80546706284502, 12.538940428520261, 4.219328803213051, 36.83689928453626, 8.068145052176327, 8.425262570177342, 26.767431408022617, 16.728028140996106, 10.463975854791556, 4.845757718114527, 10.616477048888282, 6.843165233098705, 12.173363778647861, 6.409442164134019, 4.993615778271519, 4.772058694298475, 10.086664325552702, 8.474035277280427, 9.37301235368842, 11.744534273563026, 5.397528473336163, 16.961199574526773, 6.153328507282435, 9.451244455858038, 3.9462265252399717, 4.7479565244929915, 3.364581172841034, 15.20204609314095, 8.073840757178843, 22.053427100962548, 9.986048844593656, 10.636992259278319, 4.040917076614769, 2.9174226793832534, 7.173900817514712, 11.0256010489216, 6.9628367263880415, 7.991917447181942, 30.0761965336812, 4.990856805761688, 6.041366850805293, 3.8509491867660564, 18.003937702914115, 17.985743671289725, 6.8827876446770215, 6.698229965740028, 8.355211622198496, 5.495774555537023, 11.207675645371792, 16.79798091644153, 13.281822904890344, 7.593630288851235, 3.749839251781833, 9.261658398541327, 7.802597909290156, 8.336017468764044, 5.139425327425365, 21.30644381759486, 8.045065690245444, 4.930693067013283, 15.569059684652201, 2.9713913910261205, 4.474129282628867, 5.4605342992694705, 3.049499287490356, 4.348440290127113, 3.633348575457624, 8.734476328195798, 7.486353083976629, 4.752753421112131, 10.446931654160617, 9.212948472299589, 15.38985054194367, 11.812706729330325, 4.810341734752247, 6.691115695407101, 3.8905247516476065, 13.30204438572077, 17.267658039287628, 14.682634388852609, 7.2082140922327165, 7.489523545927584, 6.438988446149295, 10.709616561452583, 6.580838651015501, 3.9951831916053204, 9.304278884995487, 14.995361431650892, 12.045727232903316, 5.295121567813516, 11.18229922765287, 5.360902447430085, 22.835305533365293, 3.9212683307609626, 7.999393116325372, 7.873529144970675, 7.177800512552967, 23.07287258982726, 10.184604978004414, 12.854042818169797, 6.090077734380018, 7.131849328092789, 14.494928793202162, 12.416376689659524, 2.9429062728713595, 9.290216372656865, 14.972420156173552, 8.964955415590955, 9.188377598129254, 4.452237356249441, 4.953965327781026, 12.767618122152447, 11.877689009196086, 13.814344420715162, 6.101470358060409, 8.207655244529278, 12.151816293859756, 8.123055369176337, 4.4798119777732754, 17.418805230234476, 12.050763232948414, 4.836222111905063, 4.270585841015363, 11.082068422340722, 5.077630123387898, 7.743345722633846, 8.651882327788943, 15.119487477700705, 15.700708556914853, 12.962049893301268, 8.856459952351225, 15.875326293388051, 9.416066025836686, 11.376590030003536, 3.7808039978042474, 14.727845822345575, 5.58481269928982, 4.870030346494157, 14.292611024101795, 17.475206823177892, 4.892870438610866, 9.922989522698213, 4.260445048907693, 17.67619235719401, 5.8622008150764096, 7.620731777156808, 19.363222937344162, 5.1287944653919135, 5.855927411360027, 6.111220289855072, 11.37222828809051, 4.76916202900799, 8.127034538232765, 12.248668829281293, 4.858131422073862, 2.470477882835571, 8.797942452544744, 8.169734598514731, 16.7361061763314, 19.86129404806301, 19.957034955788917, 4.303043890110557, 11.709020913592711, 6.673997972002217, 5.152787242432608, 5.561741211220309, 5.947823644437439, 5.7815927168360846, 6.248810987537355, 27.469366175099594, 4.196898533579739, 15.036539528703694, 5.0690714158403924, 5.590576307958039, 13.506110811676612, 9.822109766566426, 5.6312296570062506, 10.36339740729332, 4.32430039662294, 11.234395953387654, 6.958346754452864, 5.138775771095086, 5.081248803998748, 5.3393722580085505, 6.004653270917271, 5.513504854581473, 11.47597159305693, 70.48402143058179, 8.32558832249315, 6.536462684608457, 12.383816401871796, 14.712069017795532, 13.20046276815131, 10.967497412502654, 7.800972284208743, 17.860646355312078, 15.215635033386675, 7.721736826745279, 30.0528694271426, 29.551761718772607, 4.7462287392963605, 22.22571945550721, 12.857561463057028, 22.016587841566828, 5.077851178505586, 6.026872495039591, 14.6769815538291, 18.355290018307763, 6.437778178662763, 9.984232599424297, 21.701144888082275, 7.312228737120376, 4.396296877005828, 4.171387585561038, 14.304608277767159, 3.671248757187105, 4.406314999332337, 11.591604178803848, 38.15418285551255, 6.9040721493905854, 11.434279567071128, 20.13112585785077, 21.39099884331916, 11.348004013168719, 18.223794412600785, 9.726201360880664, 2.8960243357271573, 6.928887138694854, 7.64942873280316, 9.225547708308676, 6.793648553235593, 6.135238812041799, 5.874010155834435, 7.29742061930561, 6.628084630253089, 3.6183676604917845, 15.92377664844926, 14.701607813243308, 23.751142785913885, 11.699499898969785, 8.685407283935294, 5.87393200615692, 6.90929285443166, 3.3816956987535693, 6.208006850304838, 10.975773505211157, 7.3645448154570134, 6.816868814311902, 10.51684822546287, 8.153164338454928, 13.633537437618973, 11.436635642860463, 7.670893644445047, 19.099193643754276, 5.359833382706686, 4.231170428372198, 8.38060325777437, 18.567685828092515, 6.75990181034858, 30.658215003764482, 6.654991028251202, 15.059205847630864, 25.76100144462819, 15.748223831047584, 13.61473474003137, 4.683349172872582, 11.307666296747538, 19.770999746461236, 2.1478753633485765, 10.280177198428657, 8.623464154771979, 28.738893426794494, 7.601086981063902, 6.268588457281112, 4.818955449000079, 10.02409203678383, 211.08416666666682, 238.88000000000022, 223.2891666666668, 208.6516666666668, 192.51250000000007, 165.39916666666667, 74.3100210698536, 207.28500000000014, 177.13404761904766, 79.95185998856196, 180.72450000000006, 206.47733333333346, 131.58951515151517, 4.006734431834675] ss_vast_full = [0.0, 1.0000000000000007, 1.610000000000001, 1.350000000000001, 1.7350000000000003, 1.545000000000001, 2.1266666666666674, 2.043333333333334, 1.9366666666666665, 1.787500000000001, 1.633666666666667, 1.7291666666666676, 2.6831666666666663, 1.7413333333333345, 2.184047619047619, 2.6536666666666657, 3.017607142857141, 3.5431666666666657, 2.223972222222222, 2.721591269841269, 2.4456666666666655, 2.501591269841269, 2.2428084415584415, 2.595282106782105, 2.563206349206348, 3.6822792207792188, 4.090297008547008, 3.1897428959928944, 2.503088744588745, 3.3329585414585403, 3.6262044067044035, 4.535511904761905, 5.754773809523808, 5.230098290598289, 3.1477431759417045, 4.381201465201464, 4.526019758019756, 3.629815476190476, 5.3852813283208, 3.530430097680097, 3.7079058704453423, 2.089884615169831, 3.480077943298531, 4.3206568022620635, 3.074368593953346, 2.6074047831253715, 2.8101329257687615, 2.316904402786755, 2.097452622925601, 2.517491247314776, 3.8955429244668376, 3.005391070362685, 4.035090774722353, 4.077996520387823, 3.588200439660696, 3.962928066378064, 3.514162524101882, 3.1681044102955873, 3.7835892313000996, 2.5344028070835867, 6.523561050061047, 9.405019841269842, 5.917159408319877, 7.030597473301169, 6.265939054409642, 5.717573529411763, 4.2021984126984115, 6.565499999999999, 3.1704352869352856, 5.933319979856748, 4.088169866365517, 5.21350974025974, 7.661133123412536, 4.893430562532554, 4.006962726569133, 6.050474858474858, 3.777503945571337, 4.319855688429218, 2.50214072039072, 11.35328646963258, 3.914229825729827, 5.1598691761454925, 4.176439393973758, 2.8794218761630535, 9.644536514835796, 4.547099905458526, 3.858818568600301, 3.257425422326986, 4.460229893468802, 6.244460146826373, 5.935232754718047, 3.862399941402765, 4.550704302402577, 5.271911114484643, 5.524398091159044, 5.152712881433689, 12.40983254245754, 53.88163888888888, 19.41338815319378, 18.188429902721854, 23.5880811965812, 25.57162806637806, 40.413129037629055, 26.347939227439223, 17.47032500832501, 28.773504710975303, 35.78372402597401, 14.505976495726497, 15.176151631825643, 13.423378558575928, 17.098711596728005, 9.948780428721603, 9.311170417037095, 14.304828330424309, 13.21492194730557, 10.401243753798957, 6.987455443885322, 7.65499889885998, 45.55698596286754, 6.3971096665053295, 10.83585114926017, 13.19807457102285, 7.948615266636368, 13.189130560260999, 9.841313558003291, 5.686140685970303, 5.9678041569535365, 6.212143835707632, 10.236074814621844, 7.820182617218663, 7.021783942931789, 6.80636292554697, 6.481279839465633, 6.081589681645849, 5.343069449962749, 7.060440498437066, 7.036945391944243, 11.467710352706831, 5.1284644282497345, 4.896903032488303, 4.187982943728577, 4.5087252738003505, 6.845671976325315, 3.38189069927783, 4.809042556201204, 6.777229155862521, 3.7964116468409204, 11.104032019923658, 11.479308371953111, 6.222597658609701, 7.4007098038091, 11.328810997696488, 11.390515020201661, 6.827678037688418, 5.155339582032291, 4.216758828799619, 5.836526397678142, 5.724225751162181, 4.784789819355283, 6.951005267890081, 5.355720129990177, 5.296425216947378, 3.961170065377181, 4.729046703135839, 8.109865202913022, 7.705903839736798, 5.239328442484015, 6.4411745792712845, 4.423962743087215, 5.510129530243154, 5.62525934017285, 4.246525595953542, 4.363529931697539, 5.183307184570041, 3.9729676778250576, 3.464146991531922, 4.9844110404215645, 3.8271011412136327, 5.940224129265269, 4.188283369133097, 3.59672357406764, 3.8685618188485247, 4.6288781214223675, 3.227808380584662, 2.887948404227081, 2.963739425779569, 2.7607397603388217, 2.7763589512641578, 3.3943760538694017, 3.4381434774527406, 3.6499260879517745, 4.250855635064442, 3.056492426769624, 3.3737998740787662, 6.279345517722414, 3.300716631373041, 4.275117686603405, 4.054278154290544, 7.214489660194196, 3.8594524349432238, 7.916694330080086, 7.218914673046253, 4.151134562794706, 6.854801884281384, 3.096161143823969, 7.747189827480196, 7.14216284250748, 4.666146124771757, 4.377830960373329, 2.8874431043016995, 6.4451528600753445, 2.344819788824938, 4.577319511044511, 3.5229178953289932, 1.8741888352890748, 2.9795282633455296, 4.463073379488837, 5.95032818316874, 3.7920714974635605, 6.204140314916242, 3.5720571917875774, 7.530421735077666, 2.588298380493065, 2.7191843593381604, 4.5295402363850545, 4.63684546890158, 5.448846461348201, 7.105374313173218, 3.3267144820998062, 5.34825298484723, 6.173868569641863, 3.939992627372442, 7.989554643188245, 5.133562866449007, 2.4141612480458536, 3.730491487402097, 4.631595290532387, 11.290146331938478, 6.600367706902804, 5.372490814740812, 3.361935750316196, 3.542716110150347, 7.658179521977373, 5.5783800487804704, 6.177897943785554, 6.8413325438270505, 6.686933744953177, 5.028956356758634, 6.311990206967954, 2.7147863332455633, 7.568474936298765, 5.661845496565516, 6.3283105393693155, 3.485388968917179, 6.266688427879682, 7.3377550537680465, 5.925291045119596, 5.5474245555024115, 8.161870774245683, 15.710492628197022, 15.174715867465865, 3.2885000147027275, 8.970193914745382, 3.8613475976770344, 15.35009227813631, 6.172777790558765, 15.052837344542771, 6.277445650048603, 10.372782724986278, 2.5593512205668034, 2.8676770059160015, 3.5835447135621306, 5.823279434224117, 7.551516325779483, 5.22393027243342, 7.130527680951507, 13.339591329079102, 8.358987465019633, 4.294492946035177, 6.861808524992659, 8.324893640876363, 8.362880987655876, 6.950714354820872, 15.732880403227, 4.205150250588607, 5.237235381348363, 3.756558637796797, 4.954204726203783, 20.060138584921145, 4.7727168140966265, 4.330846105804302, 6.353190268223107, 13.128868010098266, 6.9800661380960465, 9.53928435952194, 7.279895726254519, 7.931857840457585, 32.137074820604234, 10.65449569805019, 4.911883514097227, 10.398901879705463, 3.3570910875080915, 2.318265205978205, 8.13259487734424, 5.8282850417295515, 7.548158472320214, 15.29943818637275, 5.945498302035301, 6.9253911507340185, 7.201474101889934, 15.402258341984412, 14.94764504368192, 14.230504365774435, 5.365915075664811, 13.76135081321216, 9.33620768382364, 9.209969921657596, 3.318232529101634, 8.141777835386607, 9.581241887629417, 6.786182312813318, 6.862194222574507, 6.127414252903815, 6.119411793567267, 3.0148255174351064, 12.504629846408355, 9.6937996356682, 7.157820205478446, 13.860355831848006, 23.77414152187566, 7.726572457577576, 3.168676546086535, 6.621839081443347, 10.42031041398029, 243.22923809523823, 190.50916666666686, 111.4131666666667, 81.37416666666658, 58.496309523809494, 48.31958333333335, 39.84426984126985, 34.49076190476193, 30.47272763347766, 28.973611111111126, 24.43203069153067, 21.93387012987012, 20.20577680652681, 20.1052706043956, 17.792001256913014, 16.17832142857142, 15.014621189568933, 15.015656671759599, 13.251853843052375, 12.493227692500136, 13.216078568774222, 11.968701630412943, 10.76889827929508, 10.37213107944687, 9.871954005374658, 9.31295424624396, 13.097196020642276, 8.745779655529656, 8.424420247196775, 8.040078833827122, 7.60162257350908, 8.077461794607492, 7.741731166543884, 6.831942837267171, 6.703315261989779, 6.836571857969582, 6.935180334494725, 6.563032886640078, 6.493473854421221, 6.992756634602977, 7.5333723811168705, 5.469592410231103, 5.635060514358018, 5.931116829067011, 5.210256647226523, 5.1231242132126, 6.818829309384225, 5.969532029123706, 5.644087474479095, 5.81235098986963, 8.589672776517174, 4.302042506736659, 6.826684354244847, 13.717074361806997, 5.1166572494218086, 3.936571045199097, 8.836524365313839, 9.957153375437574, 4.579200405184814, 4.627755063166853, 4.043092815761099, 3.59706337514975, 4.237837204567095, 3.757850768795513, 4.378696685485488, 4.44780122041701, 11.603212121212128, 3.3867642715138175, 3.2434630894702257, 10.618807692307701, 4.249503155238177, 3.3567879037510107, 4.6216350232956795, 6.523690400365582, 14.415628881344404, 4.3401815670243, 3.2613139202258856, 3.557351336694193, 4.513551713284332, 7.342239236780844, 3.2492163280619124, 3.0387278114750327, 4.0944925528844704, 4.058253663282277, 3.8746589826924294, 11.748854341736697, 2.584819480158512, 2.9098332964585105, 4.3784952086892215, 4.8940442428472695, 4.211011736685196, 5.385077011134268, 4.058407666152808, 5.557302763794536, 2.984991994253381, 3.959108505910351, 3.024482809571943, 3.9294525386078116, 20.372147186147192, 9.460837702115569, 2.9340251384310116, 2.788867781088396, 2.8733729216821446, 2.783979190080347, 2.7281556551556565, 9.876465741709387, 12.219202380952375, 5.234439662631313, 4.671139084350273, 3.9210595389044247, 3.0147692956266097, 3.852693304302882, 10.939170634920641, 6.599271078544725, 6.437528460574512, 4.484890872827372, 10.145000610500608, 3.284217609901817, 5.007512356025198, 2.665893938434698, 3.423528619819705, 7.932354029702195, 4.224605527846579, 5.267479159892263, 7.948358710607335, 3.7461439722494627, 4.288761325115727, 3.6120582359220457, 3.3543502391405706, 6.10718067930354, 5.936209138861903, 2.3195387098733287, 3.009217726126701, 4.275738616043249, 4.4577216575465135, 4.148175382424991, 9.02693765464439, 55.97848190583716, 99.55500000000018, 6.79725387376034, 5.59863919761349, 64.4183239556692, 5.778419138743524, 6.117692655022729, 5.171557685232345, 4.417776676208052, 2.754996257196058, 3.990732979011123, 6.6066350089518195, 9.980008634463145, 13.383311738983481, 10.079784956402083, 12.030061488148938, 15.309821947269835, 3.2803010581784755, 6.596664386195156, 3.091968621315326, 3.377043480058105, 5.240849544870486, 6.808335006357992, 3.123559543036389, 2.6106245146510085, 5.496308140309005, 3.7494064287325677, 21.105405997869227, 7.017750060033023, 6.411037402033501, 8.292643577437055, 12.528176520290614, 3.8691097470520828, 9.240819639179607, 5.573905641532098, 6.940823624280668, 5.657274816552426, 4.898395258741228, 3.6670584901677974, 10.091320331173257, 4.378322414422638, 11.89508333012033, 6.668272289350616, 17.806672129319956, 20.569766992186562, 10.34346531609145, 20.584071733821737, 21.062909947070484, 13.668658202908201, 12.30592987543645, 11.745685955384479, 15.971637445887435, 22.705868854421983, 20.71653890407837, 27.532179377854675, 6.606968595087406, 15.111406658482151, 8.516692959530596, 12.309389929693959, 21.879765569397915, 7.536893948337523, 17.08356378339248, 7.301879639115206, 6.386914526993475, 17.571528041403038, 5.677004941335877, 3.9692172381705704, 3.831236812853309, 5.2342456758429305, 3.8036813451878375, 7.747037870094438, 15.440072149518576, 7.679148228382251, 6.4869993082230595, 11.364830964816345, 7.295633030566124, 6.992579347045234, 8.699648521762175, 4.638216659862833, 8.621463223324229, 7.99266025259776, 11.942828430882845, 6.227238652929987, 5.88610603886522, 5.915757217576025, 12.676094680572321, 4.9195555452791355, 6.0790730926158005, 3.6024884700297393, 4.380442164789533, 4.70222858014315, 9.310414959665675, 5.006202184651085, 3.1486366726260346, 7.889669223242012, 7.88693800952466, 14.027499923468898, 3.5833564249209098, 12.198652884152883, 6.50205599526507, 5.880408860727798, 4.247556865504819, 3.396621006134396, 6.387786201883059, 5.352498665900178, 12.307598562993087, 5.533781199240986, 19.465821428485516, 8.502202663419123, 12.516734826362521, 6.407883300279255, 5.83886360402001, 16.865851012506965, 16.558954822954824, 8.120675518925518, 14.121467543961252, 9.104379034816438, 13.973004165877049, 4.940104523716085, 6.830400866433764, 8.228400618853081, 18.10012815044432, 16.99368507536621, 8.624231133815847, 5.227232738616281, 9.830061162040574, 7.925663626766888, 10.457191888391991, 8.933785296674099, 3.718596617665995, 6.03241328625508, 7.637286956235482, 10.636477230695716, 17.144018556933265, 9.554165568129003, 7.51483785689533, 6.057566833966419, 8.772401775872574, 8.243013722299404, 6.256134072693854, 4.8705504559995125, 7.718848879769474, 14.313492416132942, 9.321739506109388, 9.257836160730987, 4.140804511528155, 10.43343573786946, 5.660000424288618, 6.75797390872303, 7.439718019644709, 8.022038146693342, 4.631597479498286, 7.4955830927952425, 7.628649075273906, 5.080952946352518, 4.240342499230491, 2.7056172733598283, 6.019768681095304, 13.396298481640356, 10.424955461918278, 5.16237829727658, 9.17519807009078, 5.408892758914686, 6.891807607962035, 5.535550479445962, 7.1548600889697855, 18.702623773871853, 4.361950929408542, 2.992402173202204, 2.5054608091873445, 2.4118077599931196, 5.331332514668973, 21.083712612078326, 5.972298865622393, 12.666106159126047, 4.982676445824328, 2.4730280317153737, 4.762413478191338, 2.473206858646153, 5.2335013534820884, 4.586842040732939, 15.102406991838574, 3.71256521034785, 3.0261606788779623, 4.5896874363195685, 6.927182654114193, 6.399581420832942, 7.175478124680878, 3.8146244337350894, 2.982767838796117, 4.112230917385933, 5.100311074207667, 4.426977843219568, 4.4860797418974885, 5.584909114240602, 6.82576171259913, 3.149480907291949, 2.5745418061212937, 4.9146789940877005, 5.1257545693737825, 3.8796410417537746, 3.1260687235805222, 3.367656387782178, 5.3443581315646, 4.067109834742056, 4.749351440299679, 3.8158112312734773, 2.555942019097123, 3.289782952787176, 9.140238841919208, 2.945699675163197, 4.000783811954023, 4.8840071291456555, 4.72118355128622, 2.752803204316909, 8.760275705349406, 9.073673070440295, 7.1700719740893915, 3.188280692441329, 6.2981524489748875, 4.290475922120275, 2.879340093437189, 3.9095127484015957, 4.7760010359971945, 4.681505283439204, 3.8167810643169346, 7.757913407188154, 2.860378166582211, 4.4522204815193245, 4.125171117038529, 7.639892160614413, 4.9233538521168905, 4.923717141780811, 5.654760023795314, 17.477251145906152, 8.357578191971086, 5.068493905346498, 6.967708078402978, 4.512212038578024, 4.7092841972205735, 5.635650163798511, 5.932193651614615, 3.781987871411093, 4.031381392196628, 3.487383225316296, 5.623170493327339, 14.284380007053885, 8.800071212995807, 4.166696787163318, 6.330041010689251, 5.402281562690499, 7.326884310258575, 16.656900170981775, 9.147818307297218, 12.68165403933439, 19.07799701577826, 6.746613748901975, 6.453294722406516, 4.052513105291304, 2.979908808660571, 5.022558361978486, 8.257876729431086, 5.6343533227994875, 6.720304222016208, 6.95281551267529, 5.941495473880956, 5.185750797581147, 3.4959380783102154, 10.80457912583637, 3.3456053858361896, 6.651655419922411, 8.042106681287999, 5.3660254745207325, 4.814160473088147, 7.689731892217304, 14.46057270206813, 5.9452595354608055, 3.352173226044365, 1.8519009073109975, 3.692003837227918, 7.887469452036401, 8.53037279010612, 3.9616760886507065, 15.138957304290948, 22.700676152394163, 3.092124678187194, 28.46860481695573, 4.5684261877788614, 10.313815512683632, 5.729049084626475, 3.7572060010052044, 4.661860760593103, 4.28429002771392, 5.167915305776376, 4.088706159765366, 4.611967874501532, 3.3174165074268704, 2.5641274682708612, 5.7746827976925825, 9.045055040092786, 7.111971768012014, 3.811525330694016, 11.049101405259883, 5.10617403694337, 4.88018840116837, 5.735195111956566, 3.5596580694432682, 5.036496214832601, 5.1970163954720325, 13.00423948450189, 5.774208667709625, 3.3351362017910406, 2.16919284923644, 7.786915429197889, 7.174143482052082, 3.177843009900516, 4.607499996505623, 12.769136816030061, 3.6526902078691377, 7.778444300473401, 6.960822713570406, 5.327996488319122, 3.9652018868968786, 4.320371126970474, 5.3653181816598075, 5.441417818200018, 3.728832918070757, 3.090939062344042, 6.134020910256342, 4.462337550509075, 18.5543045558309, 5.871070669772459, 3.123801692023508, 6.5923862825154895, 4.146384299114528, 5.036395844929764, 17.08820357514986, 4.494519717246817, 5.442481103338771, 3.1917483697071094, 8.34924930174096, 3.348453788757699, 7.292693967450897, 6.337286849755709, 4.103445809210521, 4.5850392642119395, 5.057093364349607, 3.848750333523377, 5.277807360693435, 5.26642247112902, 2.7459855877286943, 6.1905732170312735, 8.19519694311251, 5.913966730383516, 10.3634388279603, 5.581984033026646, 5.324437847697102, 8.850163349900948, 9.420653429468436, 3.322069421896923, 26.73559643319518, 5.309486924847618, 7.034494093328716, 6.304838373610757, 3.097524931907907, 24.110261720985978, 4.430587635356009, 5.089718028512845, 2.6840771703988633, 9.184380828937627, 9.199986534292288, 12.89444546856519, 4.955951078348218, 11.78599281725232, 5.201082678231846, 3.8321568826394463, 6.278557064015495, 13.213911030775822, 4.027052052597246, 3.475633034408614, 7.25712327490598, 2.7344558502882124, 16.369680498805128, 7.773808322818547, 4.511892769306728, 26.711762394525838, 5.3360106300708745, 5.402252003443662, 7.203141510313486, 4.9167718694129805, 4.526270027813033, 7.118627881765672, 3.8938936048068387, 21.14483835007833, 8.96750679858855, 9.580843230589972, 3.9041098951357185, 4.375196788035029, 4.052054795003316, 43.25566561325284, 7.776162932919076, 25.13106182853175, 5.075131259225567, 17.42804849001524, 7.317415968142205, 3.417094079140668, 4.498596761671743, 10.083490695652184, 12.096849426107198, 10.66516510691251, 29.5066450935713, 12.761536665860028, 10.645006122366475, 6.860220812063789, 6.255475946269228, 12.924897152552525, 6.241158773303134, 3.9376845685550173, 3.977905739503266, 6.510770371980226, 12.138420993369513, 11.66967942473257, 3.2417079782816933, 10.523678262111787, 8.52338736196433, 12.285514187160734, 11.279616197924804, 2.7339890563300355, 3.583850968556231, 5.475270531481759, 3.745124128517835, 6.55976431491149, 5.197534105364151, 8.547213043355226, 8.238709736561358, 14.910379629014008, 6.619170032038475, 3.9338035322237563, 4.384117224507015, 3.4467602043543253, 6.542081796095856, 7.723185871266737, 5.318637143656267, 4.69175099109687, 5.777133652532866, 5.217904422409642, 18.147205528166, 7.130852313993208, 3.3937842887048677, 6.5603016322925765, 5.686140413265776, 46.2376565730832, 6.747898026063194, 5.673728770559225, 8.92718217871695, 6.45406469422689, 5.993648090206872, 6.822350610542726, 8.604153830918737, 6.288087726394491, 3.8769504771190606, 12.751484423639262, 10.393771777635887, 5.15736966296133, 6.291662593391402, 3.7263883830312214, 6.237152887892637, 10.838961912276742, 5.1268369285561555, 6.776077814489963, 5.948727321983139, 13.614790099467866, 6.113245996077964, 9.057805845652746, 39.14970152872764, 17.028760434010426, 11.013588927289513, 16.72046375538583, 3.5076055452037886, 12.889542953307942, 15.226993845112087, 17.910950847174608, 3.137323212845872, 11.268374887912577, 9.479696796950083, 8.872780047102596, 11.076063522808324, 19.394076099666993, 9.067493977020982, 19.82616906082624, 15.469501780091251, 7.128820755086305, 11.780252065628519, 13.743464256824733, 23.2325870747096, 5.8858704495524545, 16.96321060817066, 9.510217721166226, 13.363439628998638, 7.060765038127701, 5.119585685079844, 6.791820955473384, 9.053102615993875, 8.144057337116406, 9.27741495300746, 9.124336723297427, 6.371676444412296, 9.680990542210175, 11.882422897301995, 12.623794137868405, 8.467287827934882, 18.671343587775237, 2.7062835446705233, 9.039925001168882, 14.35125579839841, 8.002664440894966, 35.779763542885746, 6.993036196371506, 3.303743512265181, 8.89828112870831, 8.89426779172843, 18.842263280381527, 7.593673354335515, 28.45931413228492, 16.276360868942255, 10.067105782474153, 6.157146826217997, 8.47414539466703, 10.028817960490976, 8.036670415836511, 5.993490693233814, 27.388456901748064, 8.118412909995754, 9.081482850916505, 10.140066729004749, 6.577513419559202, 10.141723788654014, 6.58118242681813, 14.204994569839322, 8.818138669030082, 14.216916272647765, 7.406351478467742, 8.886114448265774, 6.666573922281396, 8.361220587823947, 6.926579040023649, 9.09824200917709, 12.46697106918378, 4.397040903634903, 9.771492206671025, 19.763888602550782, 8.71165168044092, 10.300240897749006, 6.978460342871235, 17.872146754123644, 7.657668235698957, 15.96865122516248, 7.703179611336996, 19.49029751348308, 4.173124048102969, 13.181294675879842, 10.781401349736377, 37.654679863077575, 30.51192969188814, 4.320555913000756, 9.572503608113715, 16.48202391358939, 19.98177606807094, 14.724308043840416, 8.707708764234228, 13.132119767768497, 21.660039749185227, 9.294022479744708, 6.393875105292177, 23.52628970379635, 19.016750546647376, 11.093476713656646, 6.779677293276037, 10.176643267473139, 51.47065109257878, 8.204547867549296, 41.283406778937014, 10.282406786705492, 36.52265974545545, 13.173583293626418, 20.255692334958358, 17.26661793864983, 14.967408943423603, 21.608296961112114, 11.53137480052082, 27.907257395597565, 36.55986503537169, 19.63685170024146, 11.281921390451128, 14.473831704901011, 19.052612224434114, 22.046560940637203, 10.89252769138805, 13.111076033017948, 9.364753040207814, 17.35064198275633, 23.395167577312495, 15.678137141519468, 7.7552977504892935, 8.74544230450943, 10.134651387024455, 12.223826715276038, 37.315773024579705, 6.464012467560361, 8.26856813927038, 7.440591251831878, 12.4252736341444, 18.814923139384852, 32.210464498729436, 17.700268067095998, 12.68773153327073, 16.828272890613476, 32.2900751290484, 17.094743012763463, 8.606771881317101, 6.483289532043372, 8.03660356369249, 17.28982197399157, 5.488688861189077, 8.704904447456878, 6.509744328133466, 7.026530571095089, 10.447082686170887, 6.3467420462966135, 10.721752287869624, 8.73045246996459, 5.002415090529427, 6.075042983773206, 6.4147737702587255, 7.479546939791197, 6.775784960130278, 5.456702567676142, 3.8532262582377257, 5.640225965374088, 7.959916082898032, 3.9456026148457943, 4.965896908321996, 12.306195507250507, 12.851135868906896, 9.76384694433652, 4.165441977496339, 6.613730064002306, 4.780881636766679, 8.207950114756512, 4.874199047764359, 4.680417980942588, 3.9249436697319835, 3.847237624134633, 5.423318082853923, 2.7629406229297815, 3.382066404716585, 5.958379037035155, 3.39853517933313, 3.3753046481083753, 3.0914789249588033, 3.8225767012673364, 3.167727324219464, 2.627308235339734, 19.676288821766473, 4.4800738275356, 2.554240310567391, 5.532626314668199, 4.1653628716735, 10.065378813463278, 7.165311573740336, 3.8617132682461257, 3.493479197422221, 8.652230321679486, 3.538048160720788, 5.744494421853457, 9.715211559138968, 7.326262167444052, 4.8538827048497, 3.6119755756422767, 7.583064267850052, 3.218456037038131, 3.612656545319661, 5.382627562547582, 2.2128384578686497, 4.420621288294859, 3.20302651104651, 9.167560735209824, 6.952236587728966, 2.880690356892287, 4.057671854240752, 11.890092419646507, 6.12007843804101, 3.3814330170196456, 3.4539819574903534, 3.3236493136851877, 5.222286464419832, 3.311300698234595, 9.657309389688137, 9.625317180931765, 8.573191340793434, 3.450154285855794, 2.4304678428567206, 4.207668477614224, 7.241252348966884, 4.270599239963729, 5.157049918530046, 5.986585770098808, 3.616271382817115, 2.979678480880911, 6.48499361583548, 3.6230568917804042, 2.5571335766626486, 5.390724119036219, 4.647078913078448, 3.912148175864558, 4.218310507480991, 3.6487868527292595, 5.973087655213438, 3.622246251395038, 6.265799711184742, 3.5048043486672746, 4.034004187119578, 4.636681001214305, 3.6049859001528732, 4.251388167754712, 4.476468026837329, 2.16147966648599, 7.2322466338125455, 5.695090813447923, 4.603266670973452, 9.6654553045587, 10.73989264787193, 7.412548076138782, 6.458444870520282, 6.787847277584561, 9.267586458981855, 36.12265180768666, 5.845707416480068, 10.941516407126192, 7.079011313417018, 6.814471174894802, 16.40565095126998, 3.6442916380794044, 6.61579896476365, 4.747083102969033, 13.908498051939246, 6.645425601098268, 11.5511666932219, 6.463696745503451, 3.8516826271656956, 3.086950273139932, 7.4745722368692356, 18.95818175372258, 6.396176892177969, 12.328424856234244, 6.736743967730758, 7.100125927021454, 16.577167036323548, 5.036557687806332, 21.341899397164344, 5.702191124454367, 15.676448537377718, 7.202797297064319, 3.695149166588638, 12.594927686363931, 5.17410326383264, 7.718522056062632, 7.769844533872699, 8.342283191069571, 9.823018031704951, 2.9764469988131435, 3.9994684290137053, 8.33073679053682, 5.5787356739905425, 8.821933773920318, 5.31340880362229, 7.451736791391655, 5.838585598767442, 15.134969777106248, 3.6292269823430066, 6.542477202238461, 9.509603548704462, 14.717157519368145, 6.092455209762424, 6.755790127295222, 7.1158961210438525, 5.9876850931311285, 10.665146420197507, 6.333592013237682, 10.173974583513598, 5.33159975202019, 9.986459329659834, 3.876484225527051, 5.981540110126046, 4.981556606007947, 10.176411287374064, 9.341667601772155, 4.378028123087903, 6.675870037991941, 7.622210261393323, 5.731589705722979, 11.44511222316974, 13.043594692862795, 11.132771348595993, 6.555752853396203, 15.498543750528118, 7.190704749343894, 8.47967387189988, 6.555781499319016, 6.98539918944281, 4.655536980112358, 4.9673036500156815, 12.968910486838924, 6.475426867286256, 7.97400636953182, 6.228230812460336, 7.476282028621267, 4.2402868374955265, 8.04852399381347, 5.210179048965863, 3.850842323431837, 3.7399414208508994, 8.36409781043932, 3.949973936108111, 11.934978402751499, 5.001281890078899, 13.376203004896235, 5.532414175067969, 11.823118887787452, 8.87405256689522, 8.582257910339253, 4.404735496817864, 13.131773864739715, 8.521265655069183, 12.600991425892957, 4.854676014817793, 16.035898300575713, 14.464085992048272, 2.3832439470912394, 9.028082535396152, 3.565785444723366, 5.873823991802777, 21.57824041308795, 11.366025758435422, 11.989111019742676, 9.454255352890081, 21.38694247180469, 5.5060602036064425, 12.683172738615188, 3.4785728941476366, 8.072697912411051, 15.624136906013124, 5.393740322387761, 7.625798789007849, 11.47271942706272, 20.728974669233406, 7.767518079241093, 6.915503523178395, 4.508273865024383, 5.920949528706234, 5.709263278000951, 3.5886080269853258, 3.48223346036427, 6.110229095018159, 4.139365258443038, 4.120707081843783, 5.652357381984099, 3.710046597159165, 4.7384556679362655, 4.349196340196067, 3.8245841653684622, 3.8246657068917957, 3.3105963123669193, 4.120241511538982, 7.358338328240398, 8.047685086332224, 7.500481664460933, 3.4413513726654226, 4.678487100033714, 3.870505091173514, 7.612695975889445, 4.184560131247796, 4.875164159562264, 2.8039070017773917, 5.111413189394434, 13.131622843351701, 4.931715142838431, 5.292720863447, 3.0653798458828176, 8.676127034742008, 5.747317851736019, 4.868712521212098, 3.681049426015205, 4.964182914693074, 4.39272019777068, 8.927725181130977, 16.181123911921695, 6.08173045814988, 5.5442603427071475, 7.328481415436079, 6.821112139702579, 4.235242727732831, 6.467076548168842, 5.32218209384725, 5.833875111773006, 14.146616785316532, 6.22104972611593, 5.78680293592279, 4.819491707932415, 4.0800273772914615, 4.492361076173556, 6.073414245364855, 5.296972538148999, 7.8034314734583665, 6.022971242118372, 2.2258766438845807, 11.675379869893613, 8.372450504136085, 5.644163429630762, 3.835951524430439, 6.284846891784312, 6.689039110788817, 5.06546068804733, 3.8066832444622336, 3.6381613787129528, 5.2182895569571945, 16.647726923021704, 5.06834782989106, 3.956002215184598, 3.540319482432098, 6.5157802129778855, 13.740782464440231, 24.596432453281512, 15.1296814199627, 7.0842453958114655, 6.549279460650761, 10.750129082562493, 12.020284818124335, 4.262741857471925, 5.0161985151936594, 5.037200979411362, 4.834829718549365, 5.194360949091123, 24.495180631653877, 4.2551919827757745, 3.4458285388408507, 4.618171513921044, 7.047458998292819, 4.387099939234511, 12.632425144053602, 23.433777020098038, 15.581155492710176, 6.507318902452752, 5.617078737339156, 6.083229071897519, 9.150885149602342, 4.740935567923931, 12.814153880458935, 4.573322355563096, 4.418350080793259, 3.73938167640638, 3.5906598322108048, 3.841629565286016, 7.08768746240661, 5.69971567831054, 11.593573872846074, 5.141178002123109, 32.03809337443889, 2.8790828838863547, 4.872624782719695, 3.131061979993798, 10.152281543292906, 5.031033792602787, 5.21980469789965, 6.932776026145645, 3.1278094045224694, 7.917374431877509, 6.267355663915088, 3.3199629433411983, 5.87251416389103, 3.9987079961824508, 3.3488726212095514, 5.146334657956826, 2.283506642117731, 2.7727282294044615, 3.828297450396821, 6.520096758301603, 5.731531846015899, 25.190289130531788, 3.1904075554791373, 3.534207633823991, 8.746023801116936, 11.517368103898088, 3.631854872587607, 7.925176192232579, 4.809131656014299, 4.939615245320029, 12.646621709949708, 20.11354083526589, 3.102440274933981, 7.24328964699423, 4.407507152281575, 11.683033670709149, 5.439726996761711, 4.046951474345454, 8.781488855910888, 5.099059157363012, 23.354735238873, 3.532044392416472, 9.88564213514775, 2.7977268987009736, 2.834049551197628, 4.443272852634789, 9.836617561959194, 6.452712347284199, 4.805401179662565, 4.958897461983098, 24.653043064693787, 4.284235437215048, 6.821849945419262, 17.931653921694235, 9.264198113531037, 4.121355789560243, 6.763015971736628, 11.317670515486462, 6.7524597171679215, 4.556068867667423, 10.150717606422056, 3.846345031686042, 11.826510904472663, 5.038091480781996, 2.8209559128702604, 3.7067984189194605, 3.581891294212323, 4.583996667027102, 5.017071241710025, 14.997340265498625, 4.479339779582827, 49.13744834328455, 6.472258618511641, 12.896789881291008, 7.536161542204167, 13.97863325563324, 5.839796405186311, 8.025937939269202, 8.256077227790291, 13.063847326991743, 10.890200884771195, 5.071747570709869, 9.47677268351764, 6.383100720594805, 13.426634815919982, 9.384943892909893, 4.976995147044789, 7.024942887101395, 5.068876152919323, 19.267869247912156, 4.560116019847054, 5.343700221894241, 6.2838022614384075, 2.251427701668152, 7.1452151812950495, 14.332281535161266, 9.18610349476785, 5.660320770938009, 8.38394411443446, 11.730334434979214, 3.900042966061245, 29.545255140049566, 3.76632984516461, 21.526516219133498, 6.586360572932944, 4.500304174663307, 13.61592319837913, 6.399282286632547, 27.583853970202334, 14.510492409300339, 15.532380913434626, 3.0395860323422537, 4.801350124548441, 9.84566472368985, 8.85702715649108, 9.135525777742949, 13.767505237901183, 8.691041150271847, 18.610765105546914, 7.338611566770299, 8.466887706677566, 6.431208614119904, 8.749681837747, 2.692891224263522, 11.414253653671773, 5.9823325859408465, 27.72787164011109, 8.421318787077992, 8.498677382250989, 25.631924427703527, 8.246619281177757, 5.406952332565256, 4.45423468281841, 12.15125270733268, 5.978825132429761, 4.736833603867829, 5.834997267883182, 5.417743053428507, 4.879643775225897, 5.781682471419344, 5.310432070870112, 4.975716371651636, 2.9225588419449684, 4.091217156262695, 6.455471080933543, 4.993628555328171, 8.265302896133443, 6.283275315813516, 9.63218176034456, 61.5537136844637, 3.9583811018764328, 3.3893691851707004, 21.770023675973615, 7.03819670089834, 3.8428313083633556, 17.62177992838991, 3.5384462992217633, 4.278284141857476, 3.1380836047159972, 3.9821145370339996, 6.407437884138632, 3.12946534904629, 8.325510664270684, 7.0955535788931074, 7.929687802991112, 5.527767229228098, 8.251841609033335, 4.311315691354549, 10.766402266883619, 14.869278142825472, 55.87182364837243, 18.524855471387355, 13.541213648170425, 12.561793361355484, 4.325651851832371, 4.631397884167498, 3.8784794059607077, 10.508633640650633, 3.4302114005184166, 12.12784335711767, 34.696104324736325, 4.141523197592549, 9.82009594775072, 37.900827274109744, 6.835975815229517, 3.327493494184536, 9.761708637367846, 13.607057029395964, 5.125028840542606, 6.47499139586107, 5.822184627656128, 14.45721544439392, 7.9673142795635945, 3.4829031510133306, 5.40247293782755, 10.260085114056261, 5.138043770693206, 3.8517847753135013, 4.672681826364149, 4.751984828303473, 5.892391617668507, 5.814904592917355, 3.192902016681597, 10.473837640046247, 4.912748357395075, 5.305519307453694, 5.30005221506584, 9.970609534892192, 5.952143256351046, 6.193688751204839, 7.851370946526063, 7.587463059400362, 15.27348094711069, 5.453960628374414, 5.709547517329282, 2.7761759520474065, 10.64154873475998, 3.6495144306973604, 30.58537698412698, 4.271077232306083, 3.5654846924412955, 4.78077889707243, 16.62457745515524, 20.985671131331372, 2.8285935391570995, 5.365326781435876, 9.187108153811034, 13.244631008454776, 5.078409595648318, 14.311964124484756, 6.521718028121231, 9.666011553094798, 8.455052969530543, 4.680351722105738, 5.861418102348017, 7.124079522516078, 5.818683593117469, 5.947027579565568, 5.206666901889421, 6.8934449938758, 4.088593761556058, 6.302262219409214, 3.702818153830435, 9.767266645173308, 2.8835559847911805, 4.151126357061434, 3.8495359317157307, 6.949545755505983, 14.319916851349182, 3.2867355075454725, 2.7568802351474586, 5.842716074656195, 3.507575040035684, 8.51401447986039, 3.363823605446613, 14.380943024771435, 8.758647239059275, 4.097830660695419, 6.055461352981475, 8.611442092142568, 6.194479936169286, 2.7358556512715353, 2.8324678395077862, 6.556976431522063, 9.87876204952551, 3.312603736566109, 3.341397846077514, 4.8628637033289515, 2.939671380572769, 11.439700606749703, 3.875049007076098, 14.487769116767627, 11.647495395022803, 10.51052766454881, 12.225088015058885, 3.224551884079638, 26.06288342995986, 14.779324061010863, 12.308516631054099, 7.0497152031938235, 7.956833984861025, 8.304701803490321, 10.822188708169387, 6.112340990764525, 3.6253090708841222, 3.200749142598753, 6.194112942836478, 4.124176115184951, 6.470584938088354, 12.01287220817132, 7.661737417805864, 4.680749535965232, 5.275846735128513, 3.949176925586444, 3.045737262002232, 6.054275724407181, 6.928093595077071, 19.47311815838989, 29.733456400640296, 8.228710184568603, 3.379348925856311, 8.461889337556855, 15.241547668456343, 28.64125294313529, 23.604844863917446, 7.8893614645879655, 5.256432178711735, 6.472911551901184, 15.849713818573617, 12.583325694146398, 5.596474216565164, 3.353656334642691, 6.699418530030366, 9.0139529690792, 6.574229331863982, 9.611347202401966, 7.906698925184202, 4.43800805061992, 9.217523508382778, 10.364137705873425, 10.51396090988328, 9.729312461794152, 7.879427047372615, 6.068305750505947, 4.554542071984087, 3.3885417681299588, 10.938050409917631, 9.232367872603508, 16.930945206229104, 16.251415973031197, 25.797694916752445, 3.7691211370948987, 7.178609893627522, 29.353684687871954, 4.610575780537476, 11.054074805234125, 5.81034810654052, 18.74683757783045, 19.426504406016143, 4.143334752707501, 9.305929550666349, 6.233813492078981, 25.01945566163582, 32.38979668837489, 29.573567530012763, 6.300440947215322, 15.84541476436188, 7.481601120589138, 32.29788409244281, 8.913665009825056, 8.220999205944524, 5.473339151834446, 4.221147004334737, 5.943616383647505, 3.2450847346145544, 15.08663726260984, 17.113450957542597, 8.68206154802608, 14.138509981089692, 4.991524900322029, 14.251764038276713, 12.171798636252184, 7.446419448574121, 2.829308434312948, 6.9386949354199, 7.946528314226442, 10.829356959844183, 28.031737952535945, 9.257472628720974, 16.18882842823983, 23.027375314717958, 10.613765157912834, 5.842483141848829, 4.673771033226173, 3.8576817642096968, 3.2647623015234846, 4.1139153940894015, 7.863734574697982, 5.77966379998555, 5.1272247473929635, 6.003109049181816, 11.035475480834604, 11.208172100105957, 5.50364629173854, 6.315670891148708, 5.383622587992693, 6.763453460741172, 5.824023008501006, 10.690986283409199, 6.294448856336544, 3.7949472505914206, 2.7671811153426753, 3.191996761298318, 6.141363156251724, 8.675998620925565, 2.5504579335444473, 3.6224048236914728, 5.114267685204321, 6.1261206923107245, 11.721438799763435, 3.996872287361375, 6.347368309864664, 13.454211064605532, 14.682894785332149, 3.646083243953446, 11.612125995674244, 9.941433915753848, 3.507537934170463, 4.191801435157826, 6.831370943584352, 4.712231754023648, 3.2856697443748666, 11.858094934345116, 10.371178584258088, 5.215954056050952, 6.576549285138021, 7.956802009315452, 18.327133605284285, 19.485736025369484, 8.906047967053698, 9.975015809183354, 4.848521621251858, 7.734719994992088, 4.99963833531677, 9.853493256503459, 5.997737447863766, 6.756141618101834, 31.701173095854404, 3.8871328913935863, 2.7420670350756295, 4.182913072218974, 12.650448309103822, 4.670626969465878, 6.102077686354625, 3.474862883157778, 9.601012748770062, 9.377102566569418, 5.508916349931226, 24.640213732389032, 4.404074396257511, 18.55504125553261, 6.520622349742245, 17.295827703125457, 6.979522764397399, 7.332738562102261, 9.306076721948113, 4.36923722731561, 5.757165751984068, 5.0064294847763176, 7.512533001618251, 4.581522419796865, 10.241805413055248, 5.183324868501838, 6.390505490355763, 8.089732268381493, 6.272143672243181, 5.781886978973144, 7.160228727670387, 5.619320695338206, 8.918628153618737, 2.671643459151879, 6.240538428635606, 4.125798162184652, 8.063215505885664, 6.087189078432615, 9.10741759661721, 16.900536700970274, 11.202838257014209, 5.116528470162036, 4.1268800445673355, 7.277239439439798, 12.792657945601798, 3.632957553766786, 10.84594026843452, 57.81035706606784, 7.779257743676468, 9.007281374921057, 4.631533226460808, 5.197413214834803, 8.681490316301906, 6.174160973841399, 3.9585437935575274, 4.640846369781558, 3.496549276757766, 5.285078392685345, 5.369636728815393, 8.722626911264236, 17.696735492247058, 7.514218747862719, 10.143051416960924, 5.187803789147636, 4.610814974715186, 2.5032540729053725, 4.603269442511095, 6.058648683407153, 3.3024537564869143, 3.6889719748717735, 4.758460938522728, 4.6496097458399985, 2.9792840871585216, 4.363964542353639, 3.2484870372077963, 3.869220132221478, 3.7338149123005744, 6.606451330254179, 4.365106542394324, 5.667890942643846, 3.6023815022321615, 5.846397071147915, 11.425200396235116, 7.068742633999578, 3.786393140364495, 19.495026807219237, 3.791355362823042, 3.424990682417127, 32.26879582117495, 7.625625001833563, 6.80883688379913, 5.887367143266095, 8.836845447384206, 4.8526983544451445, 5.149519788318905, 6.216773460510728, 16.39454980928639, 3.848440186900523, 3.0255124544500367, 6.22465344337033, 3.3652116524098337, 4.605036587475218, 5.726873476419084, 4.803454057764471, 7.711514104357305, 7.1262161385116425, 5.757649097460818, 7.48565270349451, 9.80134450693411, 2.521161508813635, 8.10340314487977, 4.775418242727904, 9.017944670116407, 3.0477478565221996, 9.596220808120995, 4.319719046957329, 3.9851870069587334, 3.5105085623833485, 5.41483909058945, 4.376101925889554, 5.655132501302446, 2.9612793737217062, 5.679236275052477, 31.741144596580494, 6.354260546598431, 5.175239536264615, 10.693877956691585, 42.86289089188874, 8.086463703186848, 11.572391457157307, 4.656079254847969, 11.934286566567156, 13.598586183856975, 9.368844460081442, 16.341360837239403, 7.153003834477214, 8.124090393447743, 7.778971490968056, 12.602175705671879, 4.5437354660625004, 7.381937177992689, 10.71846937731057, 10.216151587942115, 29.588471163449515, 8.571575986306225, 7.03963754159075, 11.934279199737029, 5.789800377346494, 4.904035601963038, 6.128594550790093, 6.448848545516938, 6.665659431461182, 8.821076588240112, 4.767468124068839, 7.67704834867366, 9.943954615521319, 6.453818740861246, 35.932271466165, 5.423073048610366, 4.3357710847389335, 12.545833089511113, 33.88122247319955, 7.315885254087242, 4.623775204041511, 4.115871647546105, 3.3469838191091887, 7.195579435196836, 9.01992026601854, 7.532389771600525, 12.747340781900162, 18.506510104830117, 26.769264095838782, 8.34316012030257, 16.793271779921934, 12.164486046259926, 8.971787672817396, 10.143447655062896, 6.817736889045322, 7.852768380739106, 22.07212566629275, 6.645292379115008, 20.149394176120154, 19.874955961366663, 9.675282845760956, 29.074629316831793, 27.271903607013904, 6.114757724188924, 5.281799789815672, 3.14933744549059, 15.318678614031553, 4.146328460116972, 3.4135922552353066, 9.019771585163369, 3.3970817434807126, 5.151078644354292, 5.5596517513816925, 6.782424084847141, 15.048344673491291, 6.749357373797587, 5.137972817542476, 7.658473656562194, 4.111973101907997, 11.927033495310281, 11.705158423592874, 5.603902967964662, 4.7899387437330425, 3.335648136548961, 11.705398451049302, 6.9112134884978635, 3.892708704843425, 38.68750107945889, 28.2582972657005, 4.498475915666721, 4.171905515327453, 5.751282508704645, 9.036417647370849, 8.507107167055871, 5.587324433165266, 6.760912854118121, 4.506960309456234, 5.541222520443668, 3.135582078380013, 6.25568606792513, 4.959340455321014, 3.6693773206081226, 3.002549595253874, 11.935589938362508, 4.762335884384007, 5.7023635300271085, 5.845222937204753, 9.990675957776014, 12.792786640086781, 3.7235826690364098, 6.481872259056407, 6.16941694798728, 6.701784294877861, 4.162015529320613, 3.29925855906149, 4.925981726959877, 4.691951176910097, 3.914296067029885, 3.315575050926989, 4.749606750386784, 7.365086936488375, 6.597623535160247, 8.115675162626026, 5.873308796036664, 6.315925264911377, 4.723161181784616, 10.026435958912153, 4.403845911846353, 6.446129270359189, 3.762866278951812, 4.554552739174263, 4.959692961678571, 4.751826765860811, 4.541836995848003, 5.6325262262140035, 3.891834501183026, 3.960997984983092, 4.808872127319778, 6.094131668037797, 4.3745422354220365, 5.2434685771620835, 5.508507671681498, 10.355698480710434, 5.100927708528482, 5.574528488205751, 4.873176255039511, 3.889839398299324, 3.0797652971484375, 4.449252801187311, 4.435141662519876, 5.961549757998014, 6.707787055425346, 4.832711166314533, 5.241573516930189, 6.539412534272725, 5.930681589560717, 4.018364596992657, 3.6267135154079724, 7.476212128221307, 2.271833227922319, 14.462475584213134, 4.77337060788102, 4.987043237082845, 7.806994932496761, 14.14076668863377, 7.597802546495483, 8.27590561891807, 3.985230228424694, 7.119736021650193, 6.363396055303706, 7.426104583929951, 3.832898735750548, 6.956974990841678, 19.18784090570974, 5.981297999922699, 6.158134387814199, 4.020305488371199, 17.345877853076683, 7.308461290078046, 4.408841407492331, 8.397816559665236, 5.657071592515379, 8.430754523438814, 7.073038344323704, 8.745393392353563, 3.233124560756208, 4.330708578892487, 8.502070331069751, 3.7830786296409884, 8.417588802665458, 17.82798104480124, 5.131361591339746, 6.768039319149854, 8.700183587858595, 4.613263688418212, 6.615441980052778, 16.560262390304757, 5.649528840524336, 4.440174998744167, 9.198814016968631, 7.315832778432175, 4.50189069989324, 17.60802397912227, 15.097214804284306, 4.637628398837419, 18.039185774180925, 4.04729351703526, 9.07588687141271, 4.2806894815143925, 13.23875992493225, 2.9800268234337053, 2.9908020084504114, 9.144543060186063, 5.834400921760536, 6.958294093178832, 10.84836660493784, 5.746069757605405, 5.171056895593867, 5.004854887493789, 5.056825482816804, 6.6059798669405, 4.55035686498018, 9.846816298968921, 3.095451566197688, 5.4801607255685205, 5.903843858872448, 15.328024875081914, 33.5811917525683, 11.949759385884642, 5.144280151242698, 6.497321391221139, 9.866790687191028, 10.736395803866593, 5.46282697828372, 5.785629551282477, 5.542764180305799, 9.728096977526716, 4.854435828564403, 3.4834091795011015, 10.193289776161622, 8.338691815733814, 6.697812524424513, 5.283177983761645, 3.1357124012010624, 13.7340797557679, 7.634332134326042, 9.999349603126985, 10.158096906769106, 6.950784900710087, 3.3130579079825364, 9.693648285621617, 3.00103791769962, 7.943308745793474, 12.486109826352937, 9.235056978614958, 18.30010460322807, 6.370663082185829, 8.30804014033368, 3.923264163054067, 18.78725901160268, 6.664019650186005, 7.577561828313528, 5.56203234325541, 3.9513821417603308, 23.90161589832541, 7.4406730190778685, 5.467088924338255, 5.432163037397449, 11.173743934706675, 16.8444616883641, 5.3450212663095105, 8.99568389251761, 26.121562097419286, 22.39026775743601, 7.769289311794607, 27.17356390946862, 5.183348557588493, 17.7332280323427, 11.190582416211088, 12.297890350868375, 4.4837853876352805, 2.5950552696742837, 4.945659152063762, 3.8661612700640324, 9.540363173850421, 5.394788040187463, 4.571458343714551, 10.533878202852872, 10.463080985182799, 17.221488665132856, 5.474929106085753, 16.896879158836168, 13.728286690998718, 36.49892302416531, 5.576451784261432, 5.456703090487443, 3.991744213934253, 22.96500525368793, 26.482705915435236, 80.352206377769, 4.96374036887337, 19.879856019075945, 10.537448889199519, 11.105236313513993, 6.75006556257471, 3.902300187216403, 4.028645507693791, 4.478399681795918, 5.303735520091472, 20.553835888289132, 4.094223908081453, 4.059095358099321, 7.923648938822544, 21.343536179955386, 5.424480753945943, 11.099488161619663, 3.4453011088443892, 10.69705633332862, 3.125297144304181, 5.527412503727933, 5.312450217987057, 7.641870247969587, 8.197199220735365, 2.8075972956565765, 5.294998198525077, 4.855955975829562, 4.37341648005169, 25.35215362791962, 3.721638817212205, 10.353897663175102, 10.165660292878428, 3.8011976784004324, 14.293478048070815, 7.878062280627568, 17.416262257507995, 4.1920247013226275, 6.571346034428551, 3.3032993211610804, 2.8673016213524454, 4.326910300776788, 5.701585750289625, 6.995192021646759, 3.917232956151616, 7.089492294160853, 6.898856812354332, 17.02995606056707, 3.4933645413243064, 30.127605195319514, 9.219346140020326, 6.863065303485863, 10.733078962171067, 41.207708193323015, 4.591158968988751, 4.515083551529023, 4.507537291144586, 4.688979081293415, 3.298582559373227, 4.631178970700603, 5.346534190003381, 5.417715992773585, 4.982206372792216, 9.517984562520665, 4.217139857768305, 4.7958749437851536, 3.7690198035538884, 3.2183723622396068, 6.8613569209881495, 4.891860532807078, 6.317018631219338, 3.865235272783267, 3.7700321425382413, 4.77385910836939, 10.373835548754963, 4.311410040167134, 6.219007554598962, 7.712085022692014, 6.180325925666361, 9.025154824902957, 5.6866167348696095, 2.813325799022762, 3.386188712289489, 3.7465321825498448, 3.446653799305904, 4.543655637612946, 3.696469951991111, 16.1879954849923, 6.600892941158291, 4.940933619044217, 6.953243601891233, 7.799068046813703, 4.186258192472536, 5.978112032882579, 3.6573255525544712, 7.231014945787176, 7.5976203986787265, 9.78972949748075, 4.66986212970157, 4.718327884180999, 8.521220891392456, 6.307716063257928, 4.038192504399238, 7.198386265624158, 10.43484333913709, 7.685324888957897, 5.060781362822875, 3.124603523108737, 4.254602649567519, 3.5977695974528987, 4.56060399614951, 7.802865976301906, 4.744322152322994, 5.290050514248599, 5.085429655704539, 7.671908347824095, 8.832736293041432, 3.6906725966218943, 11.812376500132142, 5.45336510351925, 4.1836539963909845, 23.171734686516373, 9.195458809916401, 12.871644616025177, 4.444944936406545, 2.902802557870095, 3.8984579581367638, 5.424336120138798, 3.0471480598463376, 5.325866278373315, 3.8859340549498667, 30.03653647647151, 31.307870209529213, 14.30308021588102, 4.942419222427668, 7.115629356754355, 5.478705973581337, 2.7840675054993547, 3.910226859295189, 23.376838160732618, 3.5861200178460884, 4.640094082683826, 3.2141744537292904, 4.593282735087466, 3.5833596962804473, 13.896271846828505, 22.1552425940073, 5.430873597692535, 5.259315856439655, 33.769686629576796, 8.952953730588014, 4.577878749847645, 9.699162791844316, 2.639965229334251, 3.986631424535483, 3.0148411923765166, 7.093295937946718, 4.744774633416941, 5.848714359798775, 3.700273018560549, 7.49923424850588, 7.942055074181912, 5.610012029856253, 3.577589583915895, 9.209167069494873, 11.030617747755992, 5.720704811430163, 7.870863043434015, 13.256050848658704, 5.475774369071188, 7.836124866814362, 4.712245523433429, 7.918808483563229, 11.198552130283693, 7.6390400946279975, 8.48782885665498, 6.14943216008, 5.373908476778614, 5.103115304744701, 5.325357259992283, 4.573029300075507, 6.596884201245451, 8.264814962330233, 4.967699583280098, 4.028371325019063, 10.180444668130784, 6.125593920851535, 11.417145047956808, 6.37768696383657, 11.933085247720083, 6.089189330091174, 36.60068797026233, 7.537439756601175, 6.722219202132156, 16.76477901505109, 11.940318901434862, 13.052454511818956, 5.409651831463152, 15.78959024801856, 9.959055165986612, 7.813444335262989, 4.2935975996076605, 24.85243269079527, 10.491800121116574, 21.845259439909743, 9.645793164539882, 36.633603173482584, 4.630317286889535, 3.5974870019172585, 5.442316783557465, 17.139173867622453, 6.7547056867503805, 5.897265450731509, 4.236642127596219, 5.327373896705648, 9.456804442130966, 13.1280248703945, 21.413665352878013, 10.70003040162215, 3.712978172038231, 9.70927232990385, 4.708011109882146, 13.11807240188373, 3.4879884788040245, 3.5230215910003033, 12.444551927421342, 5.7310830907196175, 9.190271926632258, 4.504117686705615, 7.985641911022094, 5.438554964691417, 9.064139766076707, 9.024772969215494, 4.3244556213185605, 7.161776540625287, 6.786423332689946, 6.430156591602907, 4.604520115056411, 13.158173316265074, 19.515252965481377, 9.055337643791674, 6.296033827863806, 31.17866817146097, 13.548339140331478, 16.598643644531812, 4.054575798854779, 4.15933908357578, 8.119008313552726, 5.668235026975534, 13.832912886961632, 5.609850932546354, 16.202756996142245, 4.3560441519454045, 3.6323183657166727, 5.2166541593907825, 5.533726823410904, 5.107063705556773, 3.485045664896496, 3.5798792599257085, 3.3653737576289364, 5.167664118476599, 3.9353763137811293, 9.773828993548742, 4.564924782763457, 8.281956017227389, 6.435402302668965, 4.421232305340476, 2.7953677962404506, 3.71919971228111, 4.017090058369151, 12.520485688497493, 5.061314809665785, 5.026103150849356, 3.926708224449853, 3.6835486498348344, 5.465930035459657, 5.00776287549737, 6.257817874764033, 3.9998029266969484, 3.891073454773397, 7.312617771020319, 4.784182960586324, 5.927280564507869, 3.371366028913933, 8.03573922401726, 3.5621793504354047, 4.3109266803293815, 2.9792396791613784, 6.062371761080185, 3.4995581683380386, 4.202620167574864, 10.435584948650689, 7.7667402064453706, 9.238851399823, 21.398384201852938, 5.546060975178506, 4.998096937610588, 6.596826215057189, 10.392124790918816, 4.963045289644483, 6.46222159544622, 6.2688612938352835, 5.539792610647881, 3.55584275849333, 5.9325014104766245, 4.924031932862491, 4.529632960609362, 4.617217342786777, 6.9642496954259485, 4.477881375504603, 6.274923482220143, 2.9581882896045637, 4.708180981661648, 13.226787739432035, 7.363914742984098, 17.055413050619862, 5.937770444632421, 7.115507022936839, 5.9177030751794, 12.312366452431533, 4.213455319353664, 3.4151652358750284, 3.313370433922311, 6.82117389447937, 5.1179058761328005, 6.609138816464878, 7.097012203375249, 3.8190127146618065, 7.443728281470853, 22.18217847058376, 5.625624389943032, 20.548237934439914, 6.3722342394156035, 4.22341584552549, 5.384151571479134, 3.4748501455871135, 6.869661779916626, 5.336252539787203, 5.785025227856389, 3.0145626733443263, 5.561684328045606, 4.31214235434573, 5.61618408756758, 7.255011293183203, 7.922038066631852, 6.474334974301879, 12.470340010312636, 4.388950007025997, 2.722056950933836, 3.4584804662466366, 5.017295508427172, 4.312787450238429, 3.1357084532026733, 5.378364899986384, 3.033146138258301, 11.686070101444347, 5.512990816221309, 4.0460717363560965, 10.959177026976544, 5.048634887506822, 3.43490520310483, 6.407265364405028, 3.946320362621253, 6.809133687176401, 7.132418913652385, 3.1527887880830505, 4.74984119543506, 10.721130914576566, 4.878926940958672, 2.206135393085696, 8.585076376950346, 16.956724458177177, 3.203569346948641, 5.032535400355347, 3.424450732543473, 3.607108770046668, 7.649639713394501, 4.91923777477829, 5.710652464981575, 6.231354351298216, 3.9899065073084814, 22.88391081792106, 6.060100895618763, 13.554831932282983, 8.908266064654145, 16.32534251229476, 25.47711101573754, 7.395065206866156, 9.868054288435724, 4.652781467761203, 14.470255138481097, 12.723603452344605, 5.6358363029190635, 36.88919565347702, 7.1458454291252265, 5.604416131105586, 8.418831819053647, 24.356143714591834, 5.176303604785377, 2.9343866831277245, 7.01597049574644, 8.823693989674425, 11.152532646772684, 5.793274213296902, 6.464461998861531, 5.741066172203698, 18.30747758426046, 3.1637309897142694, 14.51809320917205, 14.882594643291267, 5.34441527910203, 5.708282351102021, 5.024275697667294, 8.84455284105679, 4.748333096628725, 10.018230432118166, 8.847400224502035, 5.818123260372329, 11.273005312319714, 2.7885651287507267, 3.371497018828274, 13.535684275033741, 4.294224977107795, 5.353828216035466, 9.06390869437302, 3.6102214458736315, 7.1749955596631905, 7.9994557941000055, 5.33754161659642, 5.4846933840725605, 8.286917630773422, 10.607836995624528, 35.22697374536671, 17.416908181687585, 14.843755450668498, 22.567716653490304, 4.752250860723012, 23.121292419617642, 5.795907305820576, 4.816601006069565, 9.645698154692667, 6.557487986434411, 4.708974953067092, 4.200804705876116, 10.499303929245162, 6.9758216795993695, 11.890492648109648, 9.7033925972866, 2.9726335359651164, 6.056978721052131, 6.172042097585656, 7.233728977651893, 8.363207887456303, 8.165516015346183, 7.313420896185071, 36.996648901004995, 18.30429184612562, 7.880660907286411, 16.65201630227358, 3.6278455291092007, 13.71563502976439, 29.403488606994788, 21.40287670937027, 10.748602564687282, 2.637156995527578, 5.031258871569934, 7.698883264232863, 2.746005947831717, 5.302684848487314, 4.202988029329397, 50.26924553889957, 22.18070040205025, 6.903931325358423, 4.985716359355113, 6.751081292328291, 194.4214124649861, 219.87355555555575, 161.43200000000004, 144.63296969696967, 97.65705555555554, 97.01960379094592, 133.66688619713622, 122.03943754313322, 89.25500595238097, 122.0256563240681, 76.61718636363639, 53.611720783602365, 63.32708716478454, 12.508229455427305] hash_d64_k16 = [0.0, 1.0000000000000007, 1.380000000000001, 1.5600000000000012, 1.684999999999999, 1.830000000000001, 2.0850000000000004, 1.9466666666666674, 2.1975000000000002, 2.955, 2.8928333333333325, 2.397166666666666, 2.7390000000000008, 2.7524999999999977, 3.1905952380952356, 2.7048333333333305, 2.8171547619047597, 2.8150476190476175, 2.855559523809523, 3.0081269841269846, 3.0618452380952363, 2.9779166666666677, 3.279576118326115, 2.807281746031744, 4.479670634920633, 3.5455873015872994, 3.599864718614716, 3.17834163059163, 2.9124267399267385, 4.918124819624817, 2.7582105117105113, 4.2992856587856565, 2.7435873570873555, 6.09244444444444, 3.1532694943944914, 3.839006493506493, 3.3833313075813067, 3.8623630421865696, 3.648791292041291, 5.684544955044952, 2.740150920158272, 3.0090841658341665, 4.162438117438114, 4.635921101774041, 2.9413738206238196, 4.525793575619425, 3.6020656383090572, 6.3997579365079345, 3.5403714522491616, 4.622477799977802, 3.5784554954961125, 6.282277629233513, 4.112729116351484, 3.7773949938949953, 2.633717888106047, 3.1632118698295164, 3.2263816378989003, 4.688184274875449, 3.110607659446937, 4.9180332641215, 5.430401368626212, 3.3572225609974278, 6.39829102674445, 5.646405582979111, 4.219616081716702, 6.848138874713179, 3.826576628207198, 3.579621975399378, 5.976289612511671, 4.687845753919284, 3.98477725645814, 6.2368180708180665, 5.421206003405914, 5.106302438890133, 9.425979574773045, 3.3730919448687673, 5.36467384004884, 4.210500000000001, 3.5123889060363314, 6.567789562948227, 6.19618021804773, 4.093686184366209, 3.8252129021911623, 3.54000480597658, 4.488469702629612, 4.928181562008605, 4.529177801338158, 3.038990014155817, 61.24139285714291, 3.0126051519509405, 6.043039362001694, 3.3213602506616495, 30.901519385585168, 3.8868836048703326, 4.657450002790363, 4.106119720676204, 7.2461696636105195, 40.81965151515152, 4.018822605384156, 4.021843202798979, 33.174642743221696, 8.737379332259072, 36.615600427350444, 6.601705478776723, 4.519466224233635, 12.407898096885194, 36.536307236623024, 21.61928705499294, 4.766309323062993, 21.144017178083363, 19.406318542568542, 4.96205827349465, 13.211305686702358, 43.98135607959291, 27.106148281950606, 20.744022515904287, 5.461497782624, 4.244601711061268, 32.57459962259964, 4.710403162903162, 23.836733755375075, 26.22471500014146, 3.9264195151296213, 29.314475371656954, 4.892083806114623, 8.427751857361763, 12.390216761454095, 12.362554628421119, 19.872883462942283, 18.498082115792926, 4.463715750315821, 25.452839329903288, 6.051522877706348, 3.387040415663894, 3.0645374640836103, 3.4214982257485858, 4.475165717038744, 4.534136404233257, 3.8631626449281633, 3.4614186494895582, 4.158542913607383, 4.813015320169574, 9.513014725137845, 3.2216517666807807, 3.2949415409903717, 4.784823942363612, 7.9917681086886985, 28.31197003618352, 30.713398198035197, 4.553949252623011, 24.38238899470942, 24.32970751113014, 23.00888687023508, 2.904761458149336, 4.488661190141801, 4.667956880520622, 5.548232173508052, 11.28143342346509, 4.149601894915022, 3.143443184700261, 4.973604156305296, 3.9426541968026187, 3.594159475999211, 4.6946097404955545, 5.874376107808128, 4.728038593344501, 4.61204258865266, 46.68629473450527, 4.536174603893877, 4.088266549339534, 3.3820746086530877, 23.105692015955054, 5.726787564772249, 4.742733140413696, 4.172160134086354, 3.6395531511212553, 4.570981614840745, 4.617211796782356, 5.9582009501943105, 3.9754055051036405, 4.705646054425398, 4.660186320453835, 3.448418077064677, 5.190516443857579, 3.3785039648913906, 5.220906341047645, 4.041367728240402, 4.216220550373914, 4.427311008828882, 4.977942145722972, 4.022866816345856, 4.2567556302531155, 3.9801209305985275, 6.4113756386804575, 4.753248101296979, 3.818906470724643, 5.042585039983472, 3.1547373971737174, 4.742072662389099, 3.8700822814282687, 4.575833735693393, 3.687332880012333, 4.191728516356183, 7.098814557887826, 4.919821467744433, 4.760060267644871, 4.051854485162256, 4.961768452982834, 5.630974303831769, 3.447102910576475, 4.904441097734193, 3.292002816176007, 4.324805893323714, 3.605550303631862, 4.945530087810879, 4.871373356954013, 6.066859699962059, 6.354385103501081, 3.1061243838117534, 7.2040404386620285, 6.252545986790944, 7.965212210181691, 3.957741246345329, 5.211243122687875, 3.9790045960242626, 3.4380266423154064, 6.47236308206559, 3.6671087949495194, 4.18822188792178, 5.813029689874007, 5.841601293049146, 3.843480588900359, 3.540864046279373, 5.516761742563303, 3.8888605821175863, 5.1693605846756645, 5.688094912759984, 6.220577198794681, 4.6828514566709725, 3.2122395767552296, 4.637384751410522, 4.301536512873919, 3.775837911570016, 4.026253028125037, 7.462610515233246, 3.384427754968601, 3.1058339121992202, 4.045306180655183, 5.0156311119855586, 4.047296464424852, 3.182878794331547, 4.527621259941916, 6.347344630560056, 6.3838802629824025, 8.25112170890559, 3.415445960873646, 5.752543094397615, 5.621912593039154, 3.624969729403404, 5.2478065532676705, 4.119364794135799, 3.8173560222332434, 8.246317009522286, 2.4420319479831742, 5.696156857276708, 6.382658243543114, 5.073698544514499, 8.003143166716185, 5.302507052840072, 4.270982404586025, 6.487440114716659, 3.425050064776935, 9.200642125871704, 6.860852754350688, 4.078374126989185, 7.517995931313244, 11.785243886348155, 4.48491285443017, 5.144374602817137, 3.6612823401210908, 9.162060063409399, 3.801476395088532, 3.8700952361553735, 4.94351821069566, 6.34164277340846, 4.593843758338161, 4.919096311877926, 3.790094345807487, 52.38341981639641, 7.257619545913024, 5.750638878257577, 6.119915881615413, 32.78842457047687, 4.588550945241049, 14.205879428582161, 7.070169834878364, 4.4544690641944085, 4.1650910101012615, 3.8172525092247263, 6.129879019941336, 5.105825911865695, 5.880203923614348, 3.4775225528810725, 3.963758230480601, 5.168025052945455, 5.365020157998925, 6.979504319475095, 3.5606498071090815, 3.679545192464918, 7.898649550123077, 9.589857333550144, 6.883097929768899, 5.171332332318216, 5.304426375058862, 4.969832256587819, 5.199307742946105, 9.124681574050303, 3.7652301557855794, 6.157385436237178, 6.725118096593249, 2.94008937507364, 6.047097823997014, 4.950991933651789, 3.367224544518757, 5.619865928572133, 6.092077026846566, 5.230338597516927, 4.95167278303011, 7.085365381034621, 5.825037700612022, 9.034156221541805, 5.63628981951455, 5.9588518445362775, 6.192747122390419, 253.3535714285716, 222.2113333333336, 194.16166666666683, 163.26583333333338, 132.021, 141.26787499999998, 123.65216666666664, 122.88492857142857, 115.46036904761908, 107.2412887488329, 99.22940476190479, 99.39775396825394, 90.53080591630587, 81.04327561327563, 101.68389057871953, 78.56215337440341, 69.7724671162171, 69.23227189477188, 79.50743248418247, 74.42570826395827, 63.166856740481734, 72.9854080747684, 68.41684677658942, 54.20995695511057, 65.9691852761102, 42.633399395768805, 53.966370119560516, 42.94965658945456, 51.45441226420266, 38.4943532174269, 52.056721852245126, 46.297085193699075, 44.919487871422604, 51.853008826721414, 36.209185574257326, 41.34793207679084, 50.82109691638969, 35.18485035094837, 49.57839972086074, 43.317239255150255, 31.125491743701005, 30.67934063616667, 31.2945135489635, 32.46969200957355, 42.37360271143078, 33.243745366284834, 26.903400129506984, 30.930233817917355, 41.8251285547405, 28.404654141348686, 30.81698981422551, 36.698994668503175, 32.634475504248805, 51.4387759516308, 27.416690357456165, 36.813140605368105, 19.536448583013044, 45.85981860727764, 38.274271733513196, 28.11413743343678, 35.16631191617051, 34.34090876086539, 26.334632893659922, 33.590835685903976, 21.298205748559546, 30.059847805991375, 16.538603788318976, 20.120438023178778, 36.371168949581794, 35.57311544321137, 27.87200317901737, 33.63302343029623, 29.53310704003906, 24.148555436438297, 22.931990315075762, 31.385744148538805, 25.11438041460531, 26.046321001451194, 22.277063956959708, 21.31325293518181, 30.51054619382644, 19.189904995852626, 22.42777631147613, 24.939640559163333, 20.297058991803524, 23.68993189117389, 17.478530224597176, 46.321052652028726, 17.433684804912897, 18.732153164916536, 17.571584482310733, 21.08618674811509, 12.876662489870712, 14.395896502922687, 14.943222823709952, 23.680896289927826, 24.11789498373879, 19.716975969604665, 21.004783838972713, 15.204684364703553, 14.305726892470679, 25.115972569411404, 16.51905985266357, 15.35132179746887, 13.834740002307987, 16.90145506097357, 12.29754494924142, 11.283974857860043, 13.86879368596928, 20.37954365302613, 12.789154160185925, 13.66538109561941, 18.559179320223294, 15.475145555364861, 21.408368042355374, 20.19320009548891, 11.714789030758078, 46.06684414059545, 16.039837533510013, 20.471155245001345, 16.64663649352662, 13.093687257621076, 17.15531372346817, 9.448324670028496, 12.091577185521361, 14.219176507475806, 21.063208242487743, 18.942977858468936, 7.900881500874676, 9.29439914600382, 19.213099229992196, 10.040265272471302, 16.94754458191024, 9.577918582874421, 10.732501471720946, 18.824922908430135, 12.899070033378168, 18.99421329499996, 12.791015584603663, 3.9495528877263046, 8.706655497803323, 81.76535056136274, 8.62837336770867, 5.116371875436389, 7.281322505112635, 4.140145933084819, 4.862392603664709, 4.109600823719489, 2.4938319807581717, 6.178531941075942, 5.727764369240042, 5.941122989025078, 4.026884871797637, 3.608180679174043, 3.8943477492564718, 3.5339919059114777, 4.001422433111459, 2.9522383580357268, 3.2649347498901493, 10.99744369806096, 4.882198223532907, 5.248299187534383, 7.492231851367548, 6.08377224070804, 54.96571367521366, 6.97312580788284, 4.252509325219589, 4.373106185344951, 45.43225225968857, 5.866233783130011, 9.37954187659993, 10.51472779106858, 6.479689073493621, 4.72547400786784, 9.11176624489548, 4.560651312779645, 4.758522286536992, 4.527488752584916, 4.633751031880057, 5.002635496650199, 6.820655701029101, 3.9551366382196944, 5.375555813864502, 6.495916618253846, 7.583727714838007, 4.006715143769907, 4.86924245025737, 4.287360960576516, 2.595719976867515, 18.426982978374284, 11.119405951406897, 25.70790013771242, 4.005010302224261, 5.225529046638488, 10.872603011883609, 17.21405518492664, 3.918337985183624, 3.3627954398713906, 6.024612691173063, 5.826323919525763, 3.742824681922231, 18.196355356002847, 9.935669091708876, 5.302947093043465, 5.956027448083297, 6.20531098068598, 12.245004863727099, 6.253124405830144, 3.797200842531638, 4.081134244901724, 4.448617734888462, 4.675046825552188, 5.051709973879562, 5.029750251982916, 4.369787941449349, 3.78926631271373, 4.262377227603313, 3.684748859226017, 5.397673435961397, 4.573689788294448, 12.10536350084015, 7.808586640211639, 3.913627054064934, 3.8094540974949767, 4.809303058968351, 3.8272073383740586, 3.377217235384358, 5.0755599970205205, 3.0772787911574193, 5.051282688222292, 4.714161326017749, 7.498816892073166, 5.046746253572686, 43.11288658175843, 3.2940132565867817, 9.2040687716423, 4.3466746215641185, 19.021299393174235, 7.598726108948225, 6.048088128105836, 6.7702107909571305, 6.198385894741769, 38.71054587969718, 7.574705009369711, 7.2121455953168, 5.893397732128689, 13.15881565824526, 4.65246840187203, 17.451174325347857, 4.894476325373551, 6.498392401127534, 4.240385607603683, 6.554602499047408, 7.194130462831462, 3.950528350754461, 4.519539489387186, 7.736608247077988, 4.391562317943581, 15.223643280067886, 4.585687793865083, 5.7795724669220006, 4.258800013083161, 9.20870505360343, 4.520669882832344, 4.532206302414678, 6.705358178043526, 11.959261331480468, 10.761187861802659, 4.624506206981328, 8.295034553795238, 5.672418023070101, 6.801402508693354, 4.233672389604216, 8.399925313329726, 7.111609463197102, 5.973606432357573, 4.0769930283730025, 7.586947271627778, 5.923456378997382, 5.089932631384575, 5.099114352443143, 4.980623637382984, 6.2981367882701145, 14.534879107004103, 4.557490828037145, 4.322404277016606, 4.294119704192764, 5.7057709397643555, 4.134526951367136, 6.473346970046266, 4.4602914547512205, 6.607501664456959, 6.57186635042488, 3.9825712256921655, 3.8648969455296016, 5.837981852270468, 4.510217524689041, 5.335768671161923, 15.595150125365368, 6.448556762506432, 37.856313852813855, 3.526398354418198, 4.3054927183262475, 4.452255928833646, 6.9101870978673405, 3.3730728552298457, 4.220171142108538, 3.4359222853170057, 4.7404530378328085, 4.29700596169826, 4.103316384937175, 5.7823275607915114, 3.2864808699690284, 4.610849711762641, 5.627874807231791, 4.5207473596760375, 4.923807780574207, 6.449909010305686, 64.4294350298824, 3.8231464327463045, 4.035400337441707, 2.956328722464208, 55.01515748194228, 3.3972009895413664, 3.4778141627535293, 3.7100157770261557, 5.0012686062884795, 4.528261406261089, 3.812081673486147, 3.8664982660411997, 4.434950921129585, 3.8300302800847774, 4.27952258980596, 4.018635468625593, 4.948406815325217, 4.569542573634014, 5.756027207617354, 4.957711341270261, 4.8341660109778, 3.292664017077823, 4.93695268407577, 3.996737537629296, 3.7050746309580864, 4.088761881519161, 6.238146377375166, 4.298651131259823, 10.900546451027358, 4.7732679873041475, 4.768583183481773, 4.33868885998219, 6.3539714562821805, 3.825749138789539, 4.234546183074665, 3.9946547418842413, 6.0084436547526145, 3.9574676643892186, 4.9597244975101535, 4.768911906019775, 4.108857508485613, 7.349604301207851, 3.97649591893114, 4.433121363947868, 3.4037619994624873, 3.4433628175719853, 5.013769032116486, 4.0691984880688326, 12.830657746802, 3.7258289242277565, 4.36741407918891, 3.2206256421010675, 5.925071682371936, 5.287736570819048, 7.788200030388506, 5.948493780962625, 5.3157940646903326, 8.008696171711696, 3.120602939363422, 4.0823318523509675, 4.135979360007195, 4.176078877487195, 4.948849103519435, 3.7177452951405425, 7.222971916202278, 19.536383265997287, 3.8313844313077454, 4.353305180871888, 8.206219248393587, 5.1357157889718215, 5.38429927440598, 6.9583333084903565, 4.7765902123908965, 10.630580274000986, 6.0156434995059795, 4.271320443328613, 4.199396832085865, 12.124318888122371, 3.9790107091391382, 6.632428529585515, 3.5883478033367586, 7.123184008059706, 4.749932145136451, 5.074863393146203, 9.954480979356472, 4.672102906366967, 4.909878549901924, 6.0054819611998695, 4.402497297505343, 7.37440909355196, 5.6518303390144595, 4.192517805195282, 4.2222987355914565, 5.308303848992029, 6.415783129752548, 4.676056247785585, 3.456076054875811, 3.431675816413403, 5.377254349253488, 8.68008901779966, 9.756988066204713, 4.276450209211423, 4.218987344376318, 8.641515520028658, 6.309095213878649, 4.875120382390565, 5.2027705966498194, 4.5666827695215, 3.410751428844372, 5.472052873827526, 4.140752110698307, 6.186760495887669, 6.068236928502007, 3.863006176348991, 4.988738094959887, 4.511650722075897, 5.322480692468325, 7.014590726615224, 5.4732842101126495, 5.097430472946419, 3.6852469817989157, 5.443520752797291, 10.560965198357806, 5.932097205255977, 6.094039386757542, 4.578603587508579, 4.475843256809096, 4.199227156514666, 9.41641056408922, 3.5859490234097002, 5.2767589917787, 5.027503455885986, 4.272210759772436, 10.93302009260659, 6.475425174185372, 5.3564991546761345, 4.814983235166664, 10.854252641864578, 11.516435196284009, 5.334671508242384, 3.7685945691315363, 3.46787213760456, 3.9230116196658953, 3.2962722415829275, 5.519941249619518, 4.927356001844554, 7.807543233721472, 3.4251658766512496, 10.454426534829619, 5.868787268844258, 5.874406909638669, 3.5778862012180594, 5.146057203514086, 5.513395779963328, 5.349694927740676, 117.32450306637809, 9.486420592308045, 3.187528917472293, 5.184854001004473, 81.99055345471523, 4.2509444320512175, 5.146936407424559, 4.048341317946439, 3.973233029482906, 6.992132770566766, 3.694850098445229, 6.137014907412307, 5.73134319248439, 6.387772034671311, 4.400733055484912, 9.18534175650478, 6.010467013529879, 9.11145512662386, 4.673813861971811, 7.084939773471615, 3.2668478812150195, 16.89713387385662, 5.031806529454641, 4.52883581322346, 3.635962151965087, 2.8995430148995633, 5.233594815263489, 7.536881479451256, 4.658069461069737, 82.13938477902812, 4.062225652894502, 3.6653359471484595, 6.835069950063075, 67.85043134411882, 3.580788752868208, 3.927801532805478, 9.460659032475405, 11.59018723785984, 7.0723498538404685, 6.422317684419081, 2.7743230545902082, 9.068497624817308, 6.887561431105427, 7.8073074722348705, 3.7840392730412997, 3.67751758292826, 7.772284547940904, 6.707275562325838, 3.2388101112602548, 4.686844896825149, 8.161649750040878, 3.3806181859041082, 4.510287370388402, 3.247905697608337, 4.690030741683099, 4.073605052594782, 7.20552751388578, 12.172675851733587, 6.73280885776306, 5.87785847431231, 4.5731545153803514, 4.492559870117857, 4.508125549506411, 9.5231094314824, 5.169327425809325, 4.491675319048568, 4.970416199927924, 5.873208593451313, 11.50350400092757, 6.150727443725811, 5.889308805634453, 5.90258197630872, 33.669245698068046, 3.9546220081039847, 4.672718121342066, 10.191227438473456, 5.901462625541473, 4.921032581817656, 4.267315135235156, 12.752342073213768, 4.567272715897558, 3.9675635883720233, 5.066144918194302, 13.964338043325279, 18.87898761719268, 19.45697072728804, 6.143610206991126, 12.001030107561657, 5.578187579928824, 10.452571265549786, 4.28796606547593, 4.969653879638903, 3.5479455913974487, 15.814860779183075, 4.014009080955706, 8.541255331550815, 6.71769363645259, 4.555469187073753, 5.554141596488823, 3.8179884570945775, 28.20582550195979, 3.8093031404568025, 3.6407361321121, 4.791576966307805, 11.11296091259354, 5.31795724343949, 4.52202000424276, 4.662489370916568, 5.373297158384177, 7.782564075149989, 21.02092813383294, 4.407898075725379, 5.879064103928036, 6.957808532785323, 5.678667039930207, 6.855726622772152, 6.355875311401285, 6.4029696679137835, 5.50116722963601, 18.197678713276133, 9.033195650227213, 13.014886431584015, 3.5107711797746832, 12.590935521614583, 4.698539193306021, 4.987938214698731, 9.626680394092983, 5.625926417006723, 4.173395259087993, 5.053166081555947, 3.809360792533341, 5.159344552037937, 5.343669873190661, 13.557504998045223, 3.2140852422742054, 5.073308010608321, 5.486280182269641, 5.1522909402736765, 4.996149982189293, 24.517070400387997, 6.941386025814103, 6.730868197706553, 7.023084325104663, 4.007324485861022, 10.773286895326699, 13.41641977746099, 5.253394675213449, 9.32930704167193, 6.151456620093904, 3.964222035530309, 3.833211318317877, 4.42300798652835, 5.772546846953493, 10.877593542698465, 12.185307547163465, 3.6465377493889393, 7.091373667315063, 4.235799358860073, 7.465102320572203, 6.694161355097706, 13.229958261983212, 3.7882662766912087, 8.864248131391042, 15.668405150314003, 7.1035394741524875, 4.047331240745043, 5.658215968182944, 5.803362042514713, 23.22998714926473, 4.690085030852736, 3.755957362217163, 4.233910306049663, 7.003024052237756, 7.476929822620332, 4.975416511173395, 10.696464311061147, 3.7624031041141963, 5.166006259780815, 5.338084188385034, 15.563342880061528, 100.11749179415358, 11.478665479296243, 4.624575295001733, 7.633678164165454, 57.5313534410615, 8.748870545589106, 6.747813370558742, 6.40002695918707, 25.394275024883722, 3.160543054718841, 4.985597895334965, 5.549280159217666, 16.235645904925835, 6.6113213956173364, 4.739283247596806, 6.127623840308204, 12.091242904626077, 8.230014274788623, 5.302579175903191, 8.298754562237297, 25.898051327641323, 4.5584274387036325, 19.145440290559574, 9.444211959722676, 19.210100103431188, 6.4507880336867975, 10.869711672131048, 6.960538890586698, 6.364299666379223, 5.238905620220971, 6.405453417771934, 8.596166108170232, 15.49777687433142, 8.154009183295928, 4.163033078790138, 4.366006239013703, 6.523351699806144, 8.010208290559298, 10.781548762397199, 5.645791913737846, 5.8498134282732375, 20.435446577710973, 2.862997588749532, 20.75314167604415, 4.819879172433078, 9.072147723765585, 4.767043416589563, 10.347310953548579, 4.03242508078129, 11.313318132829728, 11.161152839701, 87.81763482705841, 29.801708593581, 7.158187671999367, 6.712768100177855, 57.55855209235381, 8.96028465491732, 5.782040252498856, 9.357135449130551, 3.3106401887205323, 10.2087194733962, 14.23342907804055, 10.670467400092166, 5.215078326891438, 10.287950590784503, 3.84618271557314, 7.440741919082424, 4.771618227317023, 9.929170024142866, 9.51516440427155, 11.219519088177861, 3.9353114380316256, 10.465453158441449, 14.382345362757196, 4.716405469405042, 5.047570504791744, 18.96685460340566, 5.082897078503178, 12.792836280720387, 5.244366506430007, 5.1116424407384535, 4.788078043891969, 4.661658043768249, 6.994872465867988, 3.8520987844586547, 5.054418194451167, 10.033196525171665, 7.779976838639389, 8.388220083063494, 32.53871939594034, 8.231720332371635, 4.368889760308863, 13.475634299336221, 4.9874073251113105, 13.24230164849433, 5.637841227996441, 4.787090318567689, 6.346298430293311, 10.48041334921366, 5.636208553939759, 11.893730548190728, 5.451887257096928, 9.711447729964403, 3.912191391260718, 4.956926779459748, 4.249039424529107, 3.3448563788633785, 4.664480179045106, 3.502776310517483, 5.943804141314044, 5.817065453689742, 4.7824057175577686, 4.612822726282896, 5.731496474792715, 4.5136269595703435, 4.640692707934831, 3.638935239003426, 3.125737780242337, 2.8997550504675713, 4.5806916306947345, 3.6451296682460494, 6.847038117650234, 2.9146224874757567, 4.338547034761181, 4.984530931258522, 4.230333344705208, 5.396348342714061, 3.825875721298842, 4.127091089266542, 6.3652265304694176, 3.803678045332679, 3.621946943936245, 6.4008343817419195, 7.995863461036908, 3.3068175844476264, 7.085712507243291, 5.525262236284755, 3.745847147544945, 5.328010312965102, 5.971584411395176, 4.0835395502217855, 2.9319766080589957, 6.584199510860627, 6.346457611179587, 3.941602026423623, 5.079407700829298, 3.9324082907852524, 8.518444997433376, 4.563208052957809, 10.57269446391646, 4.140379523180657, 5.305842503411829, 4.373159747052065, 8.073089838657824, 3.2741192106720525, 3.440504568189366, 9.063768642634976, 4.026470138758419, 4.314947377509836, 57.447190760062206, 7.371674708637624, 4.318980377241584, 3.8865714507773066, 4.673563097100287, 4.297893651906997, 7.804574491192801, 4.1900688695417, 3.6089916227200622, 5.322198640627838, 7.432415154777939, 6.410779787178536, 4.328278783166354, 5.634624755114558, 3.33964705241533, 4.631248941532958, 3.4229182012689807, 8.20254168217372, 4.230568964129573, 5.744865408477235, 5.736403547218008, 5.271866707932465, 5.598472880857904, 4.599285352899097, 5.029733372966707, 5.626695205868036, 4.571187210923358, 6.544135919912354, 4.2448067027796474, 6.218735653729263, 12.872325838441178, 4.846782384826498, 6.644067033185977, 5.114996646443623, 8.494036338868279, 6.799205513834225, 4.630584319131715, 9.12469232565397, 11.836599200394526, 4.865630324421395, 8.515744636680623, 4.264215752902743, 14.03486452104578, 3.840671781574434, 10.490850994251609, 3.6268541247073403, 6.07981087925745, 5.367146430284468, 3.8826829736770243, 3.7739538347333466, 4.317311970272641, 3.8808172044941216, 5.119409199336183, 19.37286509813916, 5.305854282249385, 3.3105483643640787, 5.735867926536909, 4.876291479890379, 3.5845570475957564, 8.90543713654488, 6.234660645569407, 86.6488444277944, 3.711624251941669, 11.867855680739757, 4.821129456461794, 26.603319402599823, 6.70636571568083, 6.715533746102769, 6.232081542687894, 4.147005413923967, 6.898875607424889, 3.5018257949967815, 4.57332907465186, 5.527164858428656, 6.22315652629415, 5.935184442813478, 4.722278353734514, 4.74088729363582, 7.4914439911281425, 5.788033413984336, 5.12535784113553, 6.686110092586525, 7.477203338782415, 3.2256317177963596, 3.849360424303821, 5.31888196393741, 5.066191153913051, 9.83681499413907, 6.864752555572173, 44.2994778264115, 3.2045784579082257, 3.894670905596922, 8.494698941524936, 4.653933555405478, 4.843729452067801, 4.13719630160643, 4.285469730597592, 8.214605491294776, 6.710854669537004, 5.035937973200938, 4.733695208608097, 4.710400514539009, 3.645088919396292, 9.41104387158643, 4.537441918211587, 7.436578486812259, 7.207104461289823, 4.705843936068644, 7.839429349204351, 4.101827616096886, 5.718886244398414, 5.400941665790989, 4.9706346098608005, 3.981212543753104, 3.1412759592564754, 3.8529710160134987, 4.523115061614346, 4.188428295239213, 4.35858672381184, 4.7590175121273575, 3.3822409126012336, 5.180901526427113, 3.5846002954695217, 4.556614347071929, 5.84424132209223, 7.509648393804657, 8.331557195168719, 6.39241459869115, 34.32182838793344, 42.84735349062664, 6.974062868038511, 5.308487491583456, 4.101253405712823, 45.67153977350121, 4.170245328366604, 3.5907014950825693, 4.8087080845872485, 8.51947990339692, 4.642685074964303, 5.996551871331986, 6.213095863118397, 4.864728322611435, 4.62965266069655, 5.254161349092297, 4.1169563675795935, 10.72309066845607, 4.041328490481162, 5.667226021058598, 5.4945906922864385, 10.015186671145157, 9.082148656249707, 9.07814634743601, 5.604098708206957, 6.285100285127696, 6.489917153717737, 8.84918215860843, 4.354470590933004, 5.739020992889553, 4.551098523453433, 9.400091112086645, 4.582075247597539, 4.087561594002276, 2.9625693837279057, 3.755460211336087, 5.128858676720836, 6.8445024276213235, 6.636796718116405, 9.548994296683087, 11.405771573252855, 4.715977036142946, 3.904447134499188, 6.039938059185575, 7.222011063444944, 4.435678182709681, 4.854138906380048, 21.905178262145956, 4.939029969728931, 6.0742236386079185, 7.848973848591119, 10.072328019054458, 3.96714889995823, 5.135663970916455, 4.624247811279557, 13.64552593380891, 5.910822628651783, 4.128933416313667, 5.825806656954034, 11.343252434662176, 4.7094023936671325, 3.9649882905103904, 4.405225037575543, 4.540989636179267, 4.401791666138643, 4.249559603766745, 4.57026505333286, 4.735284924601945, 4.203451175822993, 6.201102587826277, 4.9052798434764915, 4.855708434990895, 3.85114186822219, 4.355346489097752, 4.16818278038852, 5.020377502211314, 6.024330811066152, 4.32556924827692, 4.124496675450922, 4.283592815798169, 4.026939318620315, 3.6733485590914485, 7.2748776628138945, 4.541822417632991, 9.88080643906299, 4.40557869833084, 9.13165850602582, 4.1463674835916215, 6.5655989250131706, 3.9898291174659897, 6.249448941324927, 6.558603302752992, 3.793324076850173, 4.176383275273717, 5.229699609351755, 3.011376876961345, 3.0157762298231847, 21.1432920499511, 4.527810415879351, 5.77109581117, 3.9529696322596872, 7.642409458783628, 11.570501367856036, 7.919756382875755, 3.415839890021782, 3.9415542820881426, 5.443110941263357, 15.222112293076488, 5.0655877831374205, 6.480974449476074, 7.210221344575724, 5.864280563653123, 4.077141801249079, 3.60373403499765, 6.043052053187474, 5.900648691743049, 4.1608211578190115, 4.68517799680854, 8.160447612578835, 3.5812520003877846, 4.423548605029885, 7.944020943023386, 11.422385082290276, 5.46258343769722, 3.872879756675663, 5.36434408604376, 4.205721454131917, 5.547809705998751, 4.85162398620493, 9.914702292124366, 5.071783652590853, 3.179145505376703, 6.31435745750361, 10.336746456788138, 8.438740927758563, 5.719941686742195, 4.96939098949475, 4.440794063108836, 4.021362469564175, 4.230272629773342, 4.078057478011621, 5.784058405349274, 4.624104368250979, 7.733516419856946, 3.677594210081542, 6.524768143212142, 7.066374074487176, 5.143447270639973, 22.440995587575134, 4.229688175915656, 5.0752793516411865, 11.993992744867843, 4.268123348023843, 6.798146204944138, 4.634578232000967, 7.5198140580153305, 4.4876266633495945, 3.8989156586308873, 4.601249353657101, 4.996028051666647, 13.470575018258891, 4.4796399717274165, 5.400347469197467, 12.713326340357966, 97.30145060855062, 3.46263236581296, 3.8906105059499883, 4.369294851290587, 61.41476879349774, 15.157002714942557, 4.4045778091289876, 5.680090522510075, 4.693316210711594, 6.553564444563638, 3.501747396295945, 3.5450137342635686, 5.48979203067526, 4.273106938909612, 6.427995147789099, 5.6563920821344675, 3.992117127668658, 6.003342560074616, 3.582772106546129, 4.493487050095118, 4.180082961107665, 81.01447239941805, 5.061015524338627, 3.896189913625548, 4.82103830738019, 51.077838001616065, 17.288887251021674, 5.845819873893094, 7.003882753440541, 9.583183624149628, 4.426987521192454, 3.0132054478214605, 4.649102600009726, 3.830027021278617, 5.827128025194808, 4.697873439950875, 4.043771210661222, 3.6195032226011725, 4.500837211504956, 5.270657516036255, 3.5389609091188143, 3.8645323079041702, 8.92058558506467, 4.346278824685438, 4.92931858023679, 6.984804689401747, 4.718640966604109, 8.707615881435732, 4.203473159488001, 6.299972717588432, 4.173827468748365, 7.59155375061731, 4.437008912136734, 5.469878790985787, 4.912087134007971, 5.9699566982944425, 8.586962999208332, 3.581340171487345, 9.772536255258402, 3.4125044259542103, 4.308990206038409, 4.712768047936717, 6.362780594624093, 6.545155998574394, 8.081610641877887, 5.187987303244811, 5.010259380413237, 9.061963603126307, 5.696048975381467, 4.965162743767697, 7.962555372026547, 7.062147796945563, 11.061092418896013, 6.473767833080628, 9.613079846605991, 5.491381545065283, 4.413812424114696, 6.123180261856331, 4.026090687521655, 15.584569118929442, 9.296366203139886, 6.249179883724336, 4.238540702356132, 7.130319017985013, 7.483750627083126, 5.222070314588011, 7.833576985611429, 4.780236882306156, 9.609208594319181, 8.830539124153656, 13.391624401573027, 7.3899831369868805, 6.432511324691714, 3.711724675691236, 4.763137995803572, 7.4449849984248475, 4.015123659103607, 7.162961646923322, 4.032477713065998, 7.052348870811501, 10.348060560091536, 4.279800232070412, 4.328793450564379, 10.800440668036977, 5.309561978374725, 6.079144392609833, 6.060111063929426, 3.2671086501458415, 6.478118768374161, 5.777677445349716, 4.872496173054208, 4.1287038539714, 6.026276551334028, 6.279040376673887, 5.848468250083247, 4.9517713302681186, 9.76825003748939, 4.217907382582055, 3.833993390103513, 9.440618981458282, 11.942066745374609, 9.690050269125994, 5.315451173758536, 5.4393494956478445, 19.011115603801333, 11.11859343443306, 4.08544724419464, 4.318310594741711, 9.188190703984333, 6.124518527171524, 7.085864044704064, 5.904904459492124, 6.843707058809332, 36.85998200230058, 5.226126872216242, 5.79935860767464, 5.510729521114107, 3.4922220169569846, 3.9574188373460686, 7.573795665684751, 4.255370705899032, 6.384541040298559, 4.0164337617672805, 5.492217842157691, 4.95043917125404, 4.63023521364397, 12.03780207482615, 7.893219250710325, 4.350959749532263, 8.107577016727594, 4.689287971082338, 6.53954235163071, 5.005927197035518, 3.7834061880829912, 7.006777093976195, 3.8157821990929053, 17.036802175233234, 4.416585126302539, 8.712968476044312, 3.454852738347294, 5.70372870622193, 4.305901427642266, 4.5898614645166305, 4.428448414343846, 8.024727402655087, 4.855421749635699, 9.540789206692033, 3.7585510337929677, 5.957112147155145, 10.193981913003539, 3.7089405905387944, 9.11903129448991, 3.846747195888775, 30.824499300491613, 6.634383305283439, 6.708600434346098, 4.747702602816254, 7.6492030218518146, 7.532437251787794, 7.215172512332695, 4.525065817235199, 4.041665622779477, 7.831380532109241, 3.459394082494076, 6.073321072733902, 4.807624064325001, 9.488655866214522, 3.591192401532257, 11.791380954878415, 11.621881815107981, 4.916791511235199, 6.3602197265156155, 3.7469125009510145, 4.773138565529527, 8.262824374106833, 6.409736483179723, 5.255376613728241, 4.263707460833194, 5.885906020108325, 3.788652057339292, 5.721141648581647, 4.20392500664583, 5.0763623885129885, 6.312560599605449, 6.321929493345352, 7.433960626938249, 4.681874776046969, 8.628409327332609, 10.345453392789414, 10.648538133025808, 8.336371201277172, 4.673542294485675, 6.2215282218211065, 5.461591852244218, 4.903543067284811, 4.667504141669467, 5.628386909492049, 2.7848425738928873, 74.71155059268212, 9.853037839532398, 4.389975341555492, 4.443525874420843, 78.0367441933795, 79.90598358585855, 4.481149762902938, 6.607647175286152, 7.605733732876104, 56.07756881525337, 3.62117641585723, 4.1168425235921555, 3.9171549243649433, 8.466822797529097, 3.693598359007282, 7.616385641436109, 4.962652871655363, 6.197816554324354, 4.388756651834837, 6.089992981731396, 4.741807785837885, 4.03481462652021, 3.7817158136250826, 4.1745434363506995, 4.232058148256014, 6.097097496224208, 3.7488270992702426, 11.700398565873149, 6.281088359936362, 3.9211730288511055, 6.083397376715437, 6.257893700269734, 5.663518614705044, 6.049773454808169, 9.13330784173635, 8.32490975321935, 3.8967345994203737, 8.504030314454575, 4.868888484763653, 4.153562263587045, 6.656528242611954, 6.053672906499471, 4.490187875181513, 4.444054118683632, 4.22862577149739, 5.9709292511208085, 6.443455882483703, 10.884872402017457, 4.142371819044738, 4.640390205717368, 3.5611256017905535, 4.027009117617833, 5.395943253892097, 10.453947425140438, 5.468238045480743, 4.6804193965328675, 7.076125496095378, 4.315999136628655, 7.7119153845908714, 3.138882300132296, 19.11512783494011, 7.170986604939493, 19.798402797008134, 3.3394272102799483, 5.613343384062103, 16.066807890678614, 5.888184866322412, 5.5881138509899975, 7.0508011065837115, 5.150266052860032, 4.503684703994943, 5.1636419592312155, 5.237754607875664, 5.019462305960814, 7.519838289108709, 8.074847104933475, 7.911339309901398, 11.643645484111387, 5.773705895760619, 7.139743919508444, 5.228079145084267, 5.834440445291204, 4.222654965427714, 9.146632902432318, 4.659777636226883, 3.7000973923426566, 5.337100748032939, 4.7731330304105555, 7.830731743971186, 3.6769934812482776, 5.057136295684619, 19.793700107931233, 8.07426523766116, 4.058605652609193, 4.500640884969426, 5.533924831842904, 3.6722605844788303, 4.788993177141626, 4.726002880896287, 11.623697122239149, 13.42541693514147, 6.966453825818134, 4.529649074700707, 14.372261605545955, 4.719277903118388, 6.36823824374302, 3.796677232260053, 4.016846336969032, 9.600911616470059, 4.448622164698111, 4.234132438130352, 6.625064346894625, 6.4596403846718236, 5.35684877317826, 5.244840709688381, 4.492275835582461, 7.661584343292342, 7.113438610217785, 8.362745166994838, 5.650032468530412, 8.621492859184077, 4.852051010514424, 6.624888055869182, 5.18555122102833, 20.21185987095237, 9.97190579207576, 17.435244794068545, 6.8551572766741184, 10.63014639121177, 4.316948946544505, 7.892116084060777, 18.055059153351333, 4.54507034336949, 4.948613420310915, 7.16646352920542, 4.01816617407955, 7.04339852251297, 7.1015337001073995, 9.215886216017275, 9.74521288260765, 5.6745322411599615, 5.174913178402194, 8.18776683072722, 5.943722668351503, 5.3280932350755785, 5.529679701228951, 27.91886359107246, 3.39147347297507, 12.461537943095728, 4.492999998688725, 5.608605988775144, 6.272325650217502, 4.325273271284277, 5.247819285728877, 6.379726559013119, 5.412685604772375, 4.45715210092852, 5.634231524798324, 9.524270288517853, 3.9710412582562666, 11.024532292144785, 5.426147006254066, 19.4590161072569, 7.914158600351719, 6.719869717519387, 5.350797535756458, 3.986593857234563, 4.675378269200718, 9.808597418746604, 3.3064581809112443, 7.926954110447761, 6.205469380132573, 4.7158632186855085, 3.791894852387377, 4.256961127408792, 4.990668277838074, 4.928809003822286, 4.4346376555035745, 5.350858899681473, 7.227314659645908, 5.353333256451478, 5.669107954565869, 9.694818121575532, 9.504298070491204, 7.199129352941574, 12.114636836531638, 3.892024284423771, 9.252644650444275, 4.7585781169715995, 4.775142449436908, 8.89412195873714, 13.547555335878751, 5.65588885840728, 4.795169065971136, 3.8825092515811916, 5.0392005723694036, 4.966965772167838, 17.704552914761788, 9.487804946356565, 7.254390053647155, 4.481347770053769, 20.661517358037592, 3.1972705562576698, 3.8620245053514535, 29.271705674049088, 4.339500428820203, 3.5512395262932803, 3.6495962841487155, 6.348097826660865, 96.39141797584116, 4.344582263600271, 6.6597184286629565, 4.346861806335845, 46.985908876709566, 4.4626901841578235, 5.3413768055558615, 4.499713087987705, 4.782361535467278, 5.0889190059898555, 6.893504415087577, 106.39455613106274, 9.732839734951233, 4.079561538871624, 3.984081201927759, 60.19564745410154, 4.2670948296752504, 4.933385736748947, 6.359109755562769, 6.074809859788866, 6.491214079217952, 6.57935814071693, 10.457523777907399, 5.810216388282369, 6.857495365350347, 4.800212897748511, 7.73894116142715, 4.942875908828293, 7.0147188320204, 7.256962076394831, 4.22387998668078, 5.478080489878519, 4.219313710283973, 3.6575689961294318, 5.315639348149862, 6.213080760955669, 12.796126770279837, 4.578873469700271, 4.739701809234731, 5.9824341650104484, 5.055801847824093, 8.704860057583433, 5.02530012776716, 25.581879528249296, 4.714798370235959, 6.1827481709002825, 4.535743653772277, 4.849245014266849, 4.507821072173681, 7.167099217362901, 4.523725242187399, 7.492717906749569, 4.366702293659084, 10.621957608620885, 3.8922915999189076, 6.940050574265407, 3.8054490368687706, 20.002736597349447, 12.608064070743946, 6.4261550737196735, 12.973849948433397, 3.81763023871588, 4.579211308475125, 8.017931959582732, 4.758507892327098, 6.2798165108781845, 7.3604062665852235, 4.617255313830386, 6.333988187997394, 3.8362517915611445, 4.788385649090258, 7.7995966173534, 4.342878748321515, 5.606745024564772, 3.9840646881637727, 4.815499368957855, 5.246201928211123, 4.289224515277654, 5.663411273391354, 8.480100521656224, 5.071252735607, 5.160127213764547, 4.53624053244735, 10.58681619345704, 5.209329932522391, 5.369305444705475, 4.173447549846968, 4.038379326479908, 18.458799366894336, 7.01827369872429, 31.089323285588268, 3.7926589258484737, 4.673081241888267, 5.379553503435119, 5.060093679521548, 4.574115291095061, 10.745941991778293, 4.742908808649098, 3.735449362256459, 6.412221658497908, 3.6629670564529717, 6.778038255288373, 4.862063374872832, 9.743430744762845, 7.721993778458546, 12.192976788810702, 8.868736052709298, 3.6291384436701626, 5.94674670050698, 3.288543432187872, 7.411632498495848, 9.12045246633228, 6.659162228044054, 4.115906216748908, 24.21532870917519, 3.951975547687561, 5.74539973857174, 8.429737884798515, 6.006669802900052, 4.187970190313094, 6.08889093690921, 5.376420484795904, 6.3935641213023615, 10.904596132407457, 9.204757842236951, 3.9172711047970594, 5.528851448075698, 13.891355556775126, 4.746953981927097, 3.865065277164962, 5.805905357304684, 6.931340594117201, 12.029615564984518, 8.425371024529602, 5.085184457950282, 3.280609489693107, 8.205840203416141, 6.431918192143181, 5.1438579797414, 6.237966310639673, 4.7217009943862, 6.044580194465542, 8.112861610882568, 4.468604122083538, 4.941038027236907, 8.653643012419089, 6.85859557102304, 5.589608007996393, 5.321441726080196, 3.407308324305435, 4.115526908037804, 5.319017978527499, 4.371558167167956, 8.534515601376901, 7.793445252564381, 13.170515109445383, 12.940050176941833, 13.876621907427365, 4.210255029958452, 4.949766828721009, 8.744333088793061, 5.338644674058964, 5.930230548591903, 4.298277313804668, 5.339493884931879, 5.4377146791473745, 5.218984930986356, 8.423420014688961, 3.0110084263655064, 5.654685177165838, 17.07034085764611, 4.6351295588841, 6.045744136072352, 13.36158620860923, 8.759215900211307, 4.248885286520975, 7.30974021181997, 32.63274189204161, 5.156316528050113, 3.2152397848718364, 5.493284229334652, 6.658415758378075, 9.949410185075989, 12.557949837894705, 14.270039948835203, 96.47247763347765, 4.4546491009725315, 5.32917615657373, 4.076866201063356, 48.057929650991916, 4.214839976030131, 4.053433501905146, 5.660294345311738, 5.367432174303512, 6.960233511726815, 9.922608858470506, 6.213648839420147, 5.814721512943981, 3.5693835177417115, 4.350409998547591, 3.736180684351418, 5.231794568133515, 8.91431915719982, 9.470174401222394, 4.696216490915048, 3.9808891463034386, 5.138015959660937, 5.753859611633492, 5.050128131800863, 5.1235060891007045, 7.7062240703113, 71.48784454292752, 6.825803450636586, 5.100129220835478, 10.925549297112228, 38.12541664137584, 5.449964011118487, 5.3063753492859576, 4.6111919923762965, 16.483474089218557, 4.893046658787131, 5.87044342679265, 14.078419470957442, 6.692102532227791, 3.9990680915229064, 4.37574441769043, 6.926845212947712, 8.385377026131087, 5.880953043258881, 3.8110233866388024, 6.662585556216499, 10.3619983497534, 4.1628384509555945, 11.457539470274272, 28.74406940473319, 4.635177899331946, 5.254809065853005, 5.721574647686535, 8.017944633481154, 4.325918718994144, 13.460829506376832, 4.633505602214586, 8.693285724460967, 6.174374616296545, 8.448419203654886, 8.010910774984154, 7.1421747626892325, 4.705500900602683, 4.843092735462783, 4.54363217387585, 4.582397111947013, 9.382505146080929, 6.0759973743049445, 16.5515373470651, 15.288657637130626, 4.486265478458969, 4.862151021455249, 4.897859905334749, 5.431506975610722, 11.533116238931333, 3.666482573822144, 9.191574166403944, 3.7886896922061744, 6.613417574053774, 4.4631429469123844, 4.678086087873755, 6.862152225472449, 18.421655949072548, 5.07356880442428, 5.016872471168126, 4.664865423562431, 4.920880840924658, 7.738996946616494, 12.027150039407031, 5.648425493558797, 14.548022686188835, 18.1697463147409, 9.091437380847163, 3.7965075426581287, 5.19359377289507, 4.983347581840493, 5.022134110728351, 4.445498014852892, 8.680529108879307, 4.961389181595413, 6.595963899387285, 5.638385485226645, 8.658172394755681, 8.240082384797514, 4.566208646141089, 5.023432571290552, 5.240936840604281, 5.689323245963404, 8.19835468249718, 5.1558570777971875, 3.8506315877027397, 3.762193812880188, 9.257686879362911, 3.732168077560872, 4.453574547405246, 5.824650497405196, 4.38313720726955, 21.48589025007454, 4.235621940781383, 7.925705465277665, 3.5420255693497635, 5.139841413987035, 4.178271340909672, 30.83129583449978, 7.470639907605776, 6.119095288614959, 4.461094672255623, 5.329738392180714, 10.196535247138582, 6.579685254458529, 12.04773379704316, 4.981008797506586, 7.440865157022765, 10.572615176505991, 4.776204575971024, 3.844241956249167, 7.575950748952726, 16.846836501786374, 22.094932925858664, 4.843832760395906, 15.027926658906145, 8.639954892147877, 8.585711797096746, 15.533737882656224, 7.980053756063187, 6.82459375820547, 7.309205841634009, 6.838541069804603, 5.200923876418877, 4.636014006111041, 2.5526625191549526, 7.504703714333534, 7.10452098214158, 3.7750078401702827, 5.010918743105055, 6.593636676962553, 3.785170967037593, 4.080565576720883, 4.923011123568876, 4.437741203761117, 35.58729442780021, 3.931989409241744, 4.382251528268847, 7.964636688325425, 11.514145804674087, 3.445798139507279, 13.20805836043085, 16.861905242723086, 8.814593175115936, 3.896392969094484, 12.79224812186171, 3.3456327711851186, 5.06889046774407, 8.19637748494281, 4.270746491008874, 4.4445793527267154, 3.694935603972859, 15.347315564003553, 20.377787974701786, 9.438302728175412, 8.854074122627217, 5.513549449515017, 9.518138007551933, 5.416236021482268, 17.83675358714541, 4.693326730433356, 5.719923773849992, 6.9959841397489235, 7.5484651695100995, 4.138223177250136, 5.9703640899850345, 6.265982512558192, 3.346046515467288, 6.5728485789935895, 6.958124879801262, 3.0151226623005303, 7.053528424914303, 6.52032465676714, 3.700722746283858, 5.84479369466134, 5.384910186842543, 4.594555668911704, 89.32372979797982, 7.3184630542856155, 7.0826346582337605, 5.268022394952462, 53.81057865818388, 7.987862588992585, 4.412528567818481, 5.423719897378626, 6.524999786626248, 11.898727155120145, 4.757906126296604, 8.203651948192617, 12.337721955671459, 7.750752672183431, 6.698997972003267, 18.80425671624694, 11.069676907678167, 5.493928476417855, 4.408443853041393, 4.997196853630912, 5.865467748429236, 4.274692409823381, 5.467460556619783, 5.714741005345589, 6.284847000006847, 7.504307218645388, 6.075751790782945, 5.691890431818707, 7.494434090915378, 7.988721670790352, 8.824553424416592, 3.920469412050295, 4.197949941923195, 6.617548121873491, 7.276486726927269, 106.24683783173353, 3.5891690056591337, 5.17529283283749, 5.69073562392182, 74.0923241466136, 4.31415127282138, 18.331079593072953, 4.884144118999509, 4.3431219780202595, 6.707639548174727, 4.286779978469495, 3.375343433936151, 4.444215372844148, 2.8991830236508673, 6.491415546579535, 4.736286076603143, 14.448132865952553, 4.708927223752809, 6.061057335153116, 3.802702841750057, 5.911293668565118, 10.097951139099003, 4.711973927040004, 6.712553459192512, 4.983884163967108, 4.123336896511393, 4.4746077369970765, 8.870701146545013, 5.102364124225052, 6.238455479805944, 6.604833668846406, 6.851027321042884, 5.414851570282144, 6.132331500484442, 5.792227881349751, 10.383213680817855, 4.586490470415602, 4.588039023927166, 7.366478402006874, 5.319050140142637, 4.881157575928772, 4.418079002117587, 5.2751736414096495, 3.1512106434078455, 12.85589105193198, 4.473216179632033, 5.029226226138273, 4.130620564768121, 3.1296011181659624, 7.495322716249779, 5.0616695521133614, 3.8240312811561066, 4.539220353793917, 20.878494957389343, 4.341434624731889, 5.663774039095819, 4.971268190988804, 4.454873646628871, 7.133919914293835, 4.3247519469400295, 4.078670252765944, 11.392840777507866, 5.1785573286172815, 3.6531664491514673, 9.702959925220206, 4.253151331463266, 6.052924680837613, 5.514666049286846, 4.088058245820178, 5.178157891208398, 4.071490397210668, 4.380542442191832, 5.304980445599756, 4.748449510668847, 4.6087084506889795, 4.845283853934818, 5.232120277655134, 4.942451544284616, 3.8114406261204437, 6.47061152474121, 6.10287732384041, 4.7421062116282435, 3.7418445213672764, 4.672418543037096, 5.652149197833138, 3.819485988434009, 7.226234281232544, 12.898882968896372, 3.389469928474437, 5.208582299929198, 4.37347058472928, 3.070137165380015, 5.468294140409445, 6.484221858881405, 8.383541645711917, 7.494251500443652, 4.247053544710369, 3.4247638761383006, 3.94025299343362, 10.982276741994422, 7.400441784066865, 4.756987414628638, 5.744419358924994, 4.559860932386488, 6.291628903592943, 7.592068390793693, 4.551027462674331, 5.541364972994601, 4.647094506209214, 3.935881926604759, 3.890443257792303, 10.28910987676883, 8.93890139903397, 5.064015105199889, 3.3172598216100484, 4.1332652973098565, 3.9122253610391846, 8.169228036820567, 5.663687420287502, 4.682269201610077, 5.146887174733895, 5.562195278346267, 6.558643746025055, 3.426451247249198, 5.037236039224802, 5.354866938672836, 5.911013947393742, 3.713013202719885, 5.041145523001034, 6.066281513917537, 4.726193639646821, 5.29454504482428, 3.0357904616653415, 3.8552864093591532, 5.129494493390832, 7.100354763100173, 4.13637374114932, 4.091764492762668, 8.046202815190185, 4.389489283929181, 7.233481715497053, 4.830340833444482, 3.700334878569339, 4.7447342565937625, 7.438086433530066, 4.2645690091195005, 4.450526861031847, 5.15409992945452, 4.529839652907426, 11.396014556411922, 6.935017118348567, 4.666557859319071, 5.71820065577343, 4.1389015257098904, 3.8521951359801188, 7.414426756180776, 5.5293306360535714, 5.109297313674496, 3.8512496566712016, 4.170284639853617, 4.485310252987355, 3.923376333439818, 14.781754185451081, 17.07818954695582, 5.891850827581667, 7.662196323862342, 3.9921504279160307, 17.530625493919285, 6.255460169044325, 15.154404354080242, 5.032593085373171, 9.012802943992801, 4.379994929544328, 4.010316403188316, 6.118614854775042, 10.206521785948357, 5.169978380181049, 6.2732290923958205, 5.997743753781235, 8.675525763149992, 6.80000471825454, 3.336519832081901, 3.6245429943139618, 4.351133256180397, 3.98855353835253, 5.540531238429681, 4.898114156544732, 3.3909106632763764, 6.724361925869456, 9.280109744453908, 90.98158394383394, 3.5435526494303717, 6.238779203315486, 7.154373895817096, 51.96964146147972, 6.455506249527327, 6.060167910186619, 9.672663082836667, 7.578215806109628, 10.345417648108997, 5.157577358009241, 68.67602107833686, 4.596868983150261, 5.289617753948291, 4.267092636195443, 53.31936804670552, 4.346481549904992, 5.704993000443485, 4.9447038101964, 6.273575022075576, 12.815555907433415, 9.878782935949957, 5.442716075069811, 4.302360175781767, 6.773115692142414, 12.329037285485686, 9.409616426007991, 12.485208744564904, 5.96139923693845, 9.03276465517973, 3.6363921240025596, 11.137802801386618, 5.343887113514807, 3.7509485329042493, 6.586234043379925, 3.440946510791815, 4.784711601478, 10.35266818732416, 6.665347414405268, 14.945789119274226, 4.359410674061038, 4.2441757961924615, 4.022063862654319, 5.243362805735359, 4.357364800738818, 5.985273142488592, 5.517780793492746, 4.61296417193103, 5.572827416846629, 5.694451086003136, 6.341996351625966, 5.446074726609395, 8.500301393046556, 13.03329274744092, 11.496410179907038, 4.204502406661319, 15.082194518253692, 5.463190655673827, 5.864543949702261, 4.401393573178707, 4.01559714460999, 6.469176246357146, 7.102570377160952, 4.507245566323382, 5.67774429669077, 5.535460114473451, 8.402005779401476, 4.549831464332064, 5.204590849354795, 7.86586866865239, 4.473354382368581, 7.718949212155101, 3.992178266079432, 4.553065926045751, 4.489391642790594, 4.119201351721222, 5.070552336715513, 3.6940571094273613, 5.103685581368194, 5.629042626106282, 4.827201955213366, 6.357577613410335, 5.618315862429423, 3.8283524715852297, 4.493340644174309, 7.933194682855006, 5.349495458346115, 5.002451111719425, 6.6034694351283445, 3.752872117729314, 5.0809557757556165, 5.490364553729335, 7.0488714068475335, 3.500272992086024, 4.594350314047062, 10.064148313290252, 4.395987717469432, 8.018787546387507, 4.999416695911521, 5.457312234067203, 20.036073569706858, 7.0451121257428175, 15.735689052241797, 5.431357858327, 7.356403732198251, 4.8735780340207056, 6.458713345722017, 19.062922482956374, 3.923284203442875, 8.407322659269198, 5.4275323423177735, 7.566951082785211, 3.0605766573099076, 6.313793288754308, 4.374346561063539, 7.653598119248807, 6.26316517224047, 5.5585099151606, 14.660605378142902, 5.48256618384375, 4.224145152240332, 4.823383351186576, 6.267866596109082, 5.8267522910758345, 8.794350005945956, 4.546099958403632, 4.789392605553063, 5.445800730265066, 19.85649132480237, 4.480652110690157, 4.694551331423652, 5.416387084252549, 24.00014885536387, 5.280013322705469, 7.183756362838304, 6.0539170669191185, 6.162627160828433, 8.860593841795659, 3.6508035946834534, 5.536919207616954, 4.229190533569512, 9.593880179909734, 5.393514307700737, 5.298205442213041, 4.221195824073728, 4.319647194151816, 5.935815648366723, 3.937524754872264, 5.2687926114155985, 4.175420514176529, 6.791009954035219, 4.214317412007233, 4.783562559498678, 4.382220636077555, 7.186023709928945, 3.8101691502496147, 4.170050189740205, 4.656222631912055, 5.182360623148151, 3.6704790562491523, 4.704678647174085, 5.423172206561201, 5.4585155278904045, 4.022163627490244, 7.27729592041331, 3.1917806245356735, 5.223467722309978, 54.05799180355065, 8.806076232088042, 5.321424285991631, 7.530577934991345, 4.325440796106714, 4.494142395129428, 4.503712293152162, 4.787721446306103, 4.805335187114755, 5.286394524056076, 4.114565024157908, 4.84634938523383, 8.287898441944941, 3.550966916293093, 4.489734263730584, 4.740123837418329, 4.215939187429979, 7.584062698782617, 6.758790784939823, 3.484655733494167, 5.266119653622785, 4.063540078105357, 3.911872514001788, 6.811297764271617, 7.089170001110997, 6.944550608246189, 11.870103167753333, 7.534969356436415, 95.03692090317092, 3.280283229780598, 6.888340265073104, 4.382451945847729, 16.79981921519696, 22.21617025466301, 8.658456203127592, 66.31422651149816, 7.554545455820509, 6.414425967555687, 5.8397248394077925, 57.17700365137866, 4.850437396270492, 3.3641484472894776, 4.853834239797295, 4.455878927723499, 12.167640252949122, 3.3824276544358236, 10.899007702264312, 4.920564082566869, 7.1933566164809015, 5.0031878394032026, 6.026098185001474, 16.337197033268147, 4.0060566069929155, 5.019364482142843, 4.294086383175312, 6.99424299832918, 5.422639018020572, 9.748197970159408, 5.516794668670503, 5.0351036763950825, 4.756959660313524, 5.009131792778426, 4.711952656506742, 4.0539185412321945, 14.694755432224378, 12.478996429500498, 7.081815331114763, 4.603579218997312, 5.882212096853533, 7.247889453009348, 6.430912837956567, 5.345386910438969, 5.295440426935573, 6.452357458557856, 5.2182439500746245, 7.918400871457242, 3.3909678743246285, 6.814595197874945, 6.286240359423917, 12.138022049332204, 4.079368658531858, 9.822643017740281, 3.4400144737482936, 8.454516543070689, 4.285817957164266, 5.275949583417665, 19.158778408130754, 3.743532936281448, 5.394816600035037, 5.478942168424618, 4.750166564438174, 3.5158941215221975, 22.81217891434468, 4.5404289252186585, 8.84706474396011, 5.269676306156845, 3.4818148218984386, 4.252892557738076, 5.990617372177311, 5.270814317980557, 6.542075480198961, 3.839421349220167, 7.881098371221939, 6.074923673670978, 7.996994826174421, 4.6230999888793765, 4.350915675237615, 4.828605458332533, 3.097526700727491, 3.8373491782390055, 8.896256570217373, 7.91317649118198, 9.742374635484941, 5.913793393796919, 14.367247743791681, 4.451204775308458, 7.22232590686502, 153.2765665771011, 142.6251917562724, 106.57551785714288, 38.35177037084983, 42.15812837120763, 23.89646246763309, 5.8546481851499275, 105.80587229437229, 92.45917452186059, 3.050450196504593, 71.60443894993895, 76.05857395382402, 48.67401159963142] hash_total = [0.0, 1.0000000000000007, 1.370000000000001, 1.480000000000001, 1.5400000000000005, 1.5150000000000006, 1.5450000000000008, 1.9283333333333346, 2.6275, 2.3708333333333322, 4.436833333333331, 2.5891666666666655, 2.345166666666666, 2.0541666666666663, 2.887666666666665, 3.0416190476190454, 3.335928571428569, 3.13297619047619, 2.789976190476189, 2.6104285714285713, 4.321916666666667, 3.3618095238095216, 3.0660555555555544, 3.046063492063491, 3.7963769841269843, 3.136785714285711, 3.6055981240981234, 2.898527639027639, 3.316326118326118, 5.345642857142855, 2.377603701853701, 5.5427561327561286, 2.7614300976800963, 4.891527777777778, 3.128548733129614, 4.92867496392496, 4.770721819846819, 4.519309357309355, 3.6516469261732394, 4.63085187035187, 3.0794931179931164, 2.617604150751208, 3.2066953185703175, 5.091088516746408, 2.6908068043068027, 4.347160760807816, 3.8107554896794027, 5.179540200138026, 3.3254698471463175, 3.0936308136308135, 2.7597177267177253, 4.430002490629426, 3.5005616157148665, 6.1161093220504945, 2.7428019994281594, 5.216418211905053, 3.272062590187589, 3.8437909590409602, 2.7577418268006504, 3.5392025818384503, 7.296163856568271, 7.220718116034292, 4.0377045671219065, 5.449168467752189, 3.184595178063943, 4.997976546114704, 5.269072966961923, 3.740358318968612, 4.628531198686372, 5.971318620992534, 6.879275242280818, 4.8046163478017005, 3.8574880118555375, 3.341905969597997, 5.371752898572017, 5.779727022994206, 5.347512574382137, 4.173584424633336, 4.695841497246875, 4.453745412818007, 5.340867946381103, 5.345200098210965, 6.578836985691202, 4.308112807943691, 5.946055363219156, 3.15356547064047, 4.338007105874399, 3.0486007656161136, 55.680031746031766, 3.345044424796398, 2.8817170932167158, 3.8318769761059306, 29.750252062550974, 3.912754125447035, 3.712328218255384, 6.078671820955102, 4.593785282205062, 32.605773448773455, 4.524485792562566, 6.5172087133275864, 29.829859279609288, 15.813620668284461, 26.616475930931802, 3.446981501157077, 5.34559567150743, 17.853489329384068, 29.01935155122656, 17.39361060508119, 3.6011181988507883, 17.24020196537881, 14.600713847555951, 3.4344154940246456, 5.112650034688494, 28.510584665334676, 23.301322982572977, 27.361794670607175, 5.756550957737914, 4.944926630603637, 17.112726529026535, 5.447868409368411, 15.660429194726541, 11.017437099546134, 3.6587961829414657, 20.114800434644476, 7.318447663447659, 7.149026994083102, 10.244183318446915, 11.089980800841243, 18.03152468542627, 19.84193617575502, 4.602386796182308, 11.759328516905986, 3.456858028045741, 5.339943957716154, 3.622143311031125, 4.10047082917083, 6.947706017672773, 2.89044004656924, 4.8507075477885815, 4.203221775265099, 6.164354545192569, 4.021954052710275, 17.479796320917647, 7.858442436043904, 4.608196276892795, 4.753762280014237, 5.175352552518802, 33.50072208407535, 33.859732854234394, 4.814521169446285, 20.137925663664223, 27.480219504351865, 29.49867861965203, 6.85399068546552, 2.774933753269552, 3.5438718866640033, 7.723537691237746, 13.96513242128645, 3.6691071325383606, 4.466778995450812, 4.196546916538465, 4.5246168285900366, 4.295684852211096, 3.3864602099751058, 5.010407563168896, 6.3697114284248055, 3.6802356870192434, 36.22190476455089, 5.311817170690737, 4.101441978596438, 6.581971338978733, 26.095092566927168, 5.437794870811646, 3.6414734433419533, 3.2513682581356873, 5.248974967082237, 5.526143609949429, 4.120736136959752, 3.6894299241408244, 6.040114280936402, 5.847077030983218, 6.409954164527981, 4.092860200338839, 4.3023643482026355, 3.6333603675983115, 3.525799161276523, 5.347597901625286, 3.5790794215375423, 3.526744829259409, 5.911561200715774, 3.8789691430885567, 4.44996875886121, 4.3188848480746636, 3.6336423075847044, 3.2842547644493543, 4.851637291573674, 4.329119040920045, 3.2388364381193844, 3.418037728642145, 2.7549817240068, 4.258297749962227, 2.7276299660964267, 8.873005844479326, 5.124731414367305, 3.8085879639374536, 5.4346108868570715, 3.828563754904701, 4.2788102435280795, 7.16046246599874, 4.869242980187677, 5.286800829236123, 3.694699130821793, 5.229704113033511, 2.9924794460757678, 4.804161235964438, 4.6319133959603676, 6.936922182127253, 10.258215589598217, 3.4728458083398284, 3.5646972896032434, 5.678827453650639, 4.239343137840533, 4.041486363033127, 3.9847149776649538, 3.290269685892484, 6.194987127666591, 9.570265003209308, 4.889929007951815, 3.8480749721757443, 12.797580468934886, 6.866735014269158, 3.834316024276235, 3.195395397906302, 4.2644815520765915, 5.842922260721511, 2.9466675010333447, 4.583710931773336, 5.6109644968704195, 6.120615622904864, 3.027295976524202, 6.494514396866862, 2.9001390052679916, 4.2771731980299315, 6.14850173583913, 4.139811117360308, 4.253711206118185, 3.4569419186393153, 4.737197990292212, 4.726963082009917, 10.603573092731274, 6.36647672822481, 4.700024159928488, 4.572963393341579, 6.774468622490044, 6.073102715211463, 4.67601732219726, 5.912915443144219, 3.9278442412343653, 4.737408293615949, 4.462808870699439, 7.001330203459879, 3.721745476657147, 15.678806580459934, 3.4960323986301596, 6.02559442165706, 6.053541944357682, 4.0023120265136845, 4.595141095397793, 5.107577808778385, 4.329189906482331, 6.793055190039062, 2.7935224362162985, 5.542319873291132, 11.145571210190795, 3.90821505834543, 9.917700798039109, 5.347142849375628, 5.9777261073187065, 4.165452331280944, 5.295799816448592, 7.045790192467125, 6.603974517998712, 4.162709275443324, 11.974491427064859, 5.137688523564575, 4.655118812349199, 4.913187657394458, 3.32385088102379, 48.34320237744516, 6.2048949870398, 7.045804924230284, 4.204907775171661, 14.958632945677989, 3.9346151463059353, 8.363089858064274, 13.92104731927803, 6.4949914750655, 3.844515983249122, 3.6728702475745503, 4.435206893084193, 6.347260847555153, 5.305730336123152, 4.579898796434006, 5.960849180786521, 4.511321735376219, 9.255241895729629, 7.312844194155281, 12.18619191520712, 6.249220565892574, 6.478348129262939, 5.528169473926321, 5.203972513643349, 10.993169623441927, 5.832821794857073, 3.641885701269975, 10.252885173629151, 7.01418301261511, 2.969084025530879, 4.562532374477739, 9.692820210975272, 4.115537013929998, 19.412608920551918, 4.011890810257433, 4.682626401077979, 4.726089121172255, 5.1469508857126804, 9.72305400282241, 4.34073572304049, 5.72300559173256, 6.130884034150061, 10.170063534387005, 5.161735805165327, 4.52635925538217, 12.847627418236872, 256.00000000000017, 206.60333333333364, 173.45000000000016, 189.01499999999996, 142.3478333333333, 161.8728333333333, 95.4618333333333, 107.06003623188408, 112.66694047619045, 89.82233333333336, 85.21278571428569, 116.38327813852813, 82.58558838383836, 94.2065235042735, 97.84561202686209, 69.1951612831613, 45.9307011044511, 78.69003626928625, 54.319138320013316, 55.02407005168032, 60.33871499415616, 47.24183176034494, 60.43372064863239, 56.8904927918688, 48.35422062376048, 35.14489440938041, 59.1210749042624, 50.87443496304175, 79.00043656699448, 47.683756708428184, 57.95635194117699, 43.790416732054254, 48.04163357662139, 48.624886367475554, 45.20110705072875, 42.94233190738644, 33.80064376496544, 27.028638697082837, 49.11952914749669, 24.54271056600699, 43.20164763427416, 36.23512917133807, 22.32940478064256, 33.70623194282591, 49.09644640698212, 43.24190004413066, 25.30534947176471, 71.69365946472345, 26.624910456756858, 23.832067024218794, 23.738683244971146, 30.41995517747168, 20.62962736005726, 78.27540139766847, 18.178889098697635, 51.633368095449036, 53.39163023610123, 48.435073755391834, 31.70642333352148, 17.380023788154762, 24.502663696533656, 35.084277719423646, 20.372545261367755, 18.740446140633583, 13.895596080175165, 23.38809231909508, 22.525589156710396, 15.570400817636317, 33.63387773283659, 21.179010234032223, 44.62096338294047, 15.647453411639155, 9.990425075744467, 20.038917749820335, 50.37810222769657, 25.352745070499974, 17.130067366465465, 29.466511279418544, 24.311717473872932, 18.50742502982995, 25.69091894475654, 13.81675887892718, 84.57528307216303, 33.20869029111403, 34.04531251187813, 24.199478026154306, 15.73940163541811, 39.55697027841076, 13.288827600095798, 19.244020247408205, 16.89203108363686, 13.587053481837527, 14.888557827724625, 8.0156621640645, 16.62222633491103, 11.334914126462301, 14.841287905351848, 8.594662785251284, 17.809784677155402, 27.203402211955794, 10.410479287020058, 20.089683012594467, 22.082046960779664, 11.404345123174004, 13.126248218652846, 8.337339146088025, 15.618139063552912, 10.288512070114336, 28.991959191696175, 10.404020381430316, 16.936247041378152, 8.670081207251055, 9.594434050070955, 16.42933629547147, 14.851434023097848, 19.96846761732323, 10.297930092017028, 53.84387718584273, 7.886537925605216, 22.770360287111853, 14.882486598719913, 13.839518007851325, 8.718690322505438, 16.328833796498603, 8.907139816034768, 12.503438931576332, 13.59024669921626, 21.301715036641962, 28.250217019652258, 17.392989984450164, 13.38232450288639, 9.463761154112202, 17.649868921752443, 5.188432714288377, 12.653304567618072, 18.795831373132412, 7.397639416645063, 17.590149494689097, 14.683725723787177, 6.916155737911229, 6.444824630018432, 89.95999618473896, 5.306602966633537, 10.505985956572157, 8.265974250108153, 4.752938683423392, 3.6228163302458705, 3.5518858525156163, 3.837889991373686, 10.293663555685617, 6.1751189865653915, 7.842416670824878, 4.675004831576213, 2.5298732491358717, 3.7535837149666236, 5.302180514136674, 5.38909239586956, 3.6526612614529066, 3.2617458125938374, 12.207637460827783, 9.576619743864002, 3.628619726033935, 5.999246225910309, 4.478414177708443, 47.82661904761904, 3.38820539347084, 4.5815661975569855, 3.7060557873499054, 38.23304722401779, 5.682986580611023, 8.405750199839478, 7.514439967737497, 6.350069399807935, 5.176205221927073, 8.062260159401397, 3.6829494376786487, 7.174294327033255, 3.4273226719745677, 8.804948199838297, 7.073814179229044, 7.715857059953725, 3.984036834510519, 6.023444435273737, 6.665973980139616, 5.979913184682535, 7.750364691229752, 4.393229810500844, 6.508401079252702, 4.596190757332169, 21.917481949629327, 5.4567491009377616, 22.538919415194123, 4.079561722956395, 5.230299877779971, 19.889418185760583, 5.061170122951232, 5.395844021402013, 3.0956135420696786, 6.266333172608005, 4.001268974297183, 3.4953870054952145, 9.102869479067545, 17.329446698081764, 4.814283407066452, 6.461083009775159, 4.641459949873304, 9.100701508494344, 4.3736697364025305, 4.022239817182738, 5.686152171450339, 6.123619735723342, 5.461840979860761, 4.575998364868959, 12.842423715428005, 5.276137795308757, 4.158697578780757, 4.295014585277955, 5.77085241912613, 3.5628194943719813, 4.187200399343336, 13.983498817230297, 4.083027079136625, 5.16219510000041, 4.781558978734831, 3.6723243760115487, 6.359837636909196, 3.4993147230449853, 5.590087070399095, 6.897926215252303, 4.757189672873912, 4.446342995588054, 4.441515544288207, 4.942140970942722, 35.44342986467921, 4.998921499381251, 10.370423659021908, 3.804046660927447, 22.525540293040297, 5.1152273172530744, 4.3621283528562955, 6.883927686862568, 5.130721610500324, 42.671852130325796, 3.4122222525644887, 4.706243836694735, 5.3801052437398, 13.506814249273184, 7.836259759041777, 10.49480924931401, 4.320942566519635, 15.476265831476184, 5.698813640263034, 6.129510239760237, 8.069742280380433, 3.9599112705096657, 6.453447852700025, 7.055306133081075, 7.3720857172472325, 7.3637040005368055, 6.882253522054403, 6.694117987535629, 4.240118055675241, 4.256359138003636, 8.062573851039774, 3.067837552956854, 4.320422994421556, 12.060789761901372, 3.44734424721506, 3.6683021367821396, 6.331045948639088, 2.728672169290717, 5.060517695033613, 3.768295549555026, 7.995517245936932, 10.014788192902445, 5.183106110636513, 6.569656301962519, 5.061565209087587, 6.866831903989197, 9.10686280948378, 8.119892039502993, 5.545161439702863, 6.464989848283602, 8.399691404860462, 3.5972933493192283, 3.7432750011641103, 5.129048008896491, 4.794537773694604, 3.13699083420132, 5.943789710253744, 19.88966596435202, 3.796608753802116, 6.909604558351847, 3.18740674962348, 2.984326146855458, 6.425435193935855, 5.789343880196343, 8.390353176744144, 4.994333002300126, 6.053990155312521, 15.583647274789103, 4.2236817768871635, 5.5907680139458416, 9.987760633443312, 4.484258958316696, 4.733549663193328, 5.076770160000369, 3.966232713933023, 4.297286663670954, 4.041770760639577, 9.702697717859483, 10.114113608150591, 3.7884739257578244, 4.876675276767032, 4.876442389039969, 5.443860989563759, 7.934715403532671, 6.848369249343281, 69.69566783543257, 4.451195155789844, 5.8320990274738245, 3.8225967304778865, 31.67483871239641, 5.631409801516175, 2.6774410263035278, 4.3522915207444415, 6.728306132066129, 7.266739054367251, 4.685138318901717, 3.552499270220073, 6.025940459970185, 2.9424031285208416, 3.551475749789613, 3.276524230496021, 7.331556469409709, 4.171156700953663, 4.187346753522795, 3.084871882049099, 4.260468026131223, 4.340730338667255, 5.660504891428682, 6.146334007483103, 3.1543491511462047, 3.8245951993995306, 4.27662949046205, 5.181996233834794, 6.107927791203277, 3.5862976644278164, 5.98396341530145, 3.127451249928977, 4.637029399145075, 3.8736641787885353, 6.497628092671161, 6.588205098802152, 13.952642085192172, 4.555666853574389, 5.239151514136963, 4.026075679631959, 4.0261277525867225, 6.495141228501427, 3.927841183175814, 3.1478914592796126, 4.56276558970257, 4.655820023275554, 4.492343798714695, 3.8737285283299308, 8.641958369108583, 3.7745315272968427, 3.5086048425454828, 3.1102558906893383, 7.220768678169501, 4.910007861254338, 13.157959892068359, 3.4185065446925336, 3.9787334162411567, 13.724860629033818, 4.0103763958663325, 2.6170190725179223, 5.031825382617378, 4.547090413178191, 6.568084241586703, 3.813607161583265, 3.7114222996590254, 12.499371801938125, 7.1561543911983225, 4.486373458487356, 3.045015263003888, 7.310697394041053, 7.577400315092797, 8.334914874541022, 10.553584679296728, 14.710373956650969, 5.8560055105888, 7.527950516286462, 5.528693996383563, 10.508229121257711, 3.1428009452109587, 3.9831739171266842, 6.220450950021309, 6.736380256972243, 6.652295332073811, 6.456076379618568, 4.695412258781951, 4.696029325447591, 4.536196031778883, 6.028537577285266, 4.872823254995748, 4.981787902575128, 7.5100928422389925, 3.1758556911896743, 4.573618639443587, 7.4583680738603535, 3.3862787059683788, 3.9306613961239343, 3.9088131911338873, 5.64700616038372, 3.680134138450972, 5.061450196976852, 8.29142415391136, 6.1472658873252835, 9.781731833891781, 3.526837235443678, 4.747605028507521, 4.350241282721064, 6.854911863247151, 3.513980531485211, 2.9759813372094266, 3.848659360571672, 7.850726305049896, 20.2991216591771, 4.448635584091286, 5.381649354464277, 5.981904310501906, 5.222604305910701, 4.402814997100649, 7.187051970060694, 3.963098275402184, 3.5957869603387373, 6.873660218275245, 8.411280468568393, 6.5461698488375974, 4.128991603926784, 5.101001822369728, 4.930960932709185, 5.876846810677089, 3.7535102252279895, 13.962944719007956, 6.1050212974795715, 3.6884127893585874, 4.43584267287276, 4.322736502293988, 36.11816632366736, 4.325502362043059, 4.950054966219912, 7.151150861390332, 17.283052773770287, 10.443726720870728, 5.226291381459381, 3.9480875826063118, 3.787560456289948, 3.9645631463936906, 5.957233283274457, 5.16996612683911, 5.407538867698903, 4.541603815727541, 5.729777348384016, 7.399371236220614, 4.939299358671694, 3.9330108787590685, 3.569777284883416, 9.735944822932858, 4.588543904672138, 4.1722121397259295, 99.26132305496438, 3.937956876420951, 5.605274392020021, 4.711369803634715, 46.13735164895304, 4.872635166850594, 4.187942157842644, 3.049395633644281, 6.398821391127863, 4.222453500657748, 6.529875592962625, 4.654894775429039, 20.088219169609552, 10.84890005483155, 3.896464563715543, 5.928450000959421, 14.127810871026766, 22.513873053313834, 4.561604239071968, 14.38520246081283, 6.177264413573306, 11.740774493450216, 5.462799676127402, 5.728231376481865, 5.193167354268336, 3.9755308652220394, 7.659524558398329, 4.199003314968515, 3.5553518480098605, 92.42705468866129, 5.312275558164018, 5.227823904337602, 6.364804848334145, 45.25516246601437, 3.1150790852627925, 4.8256617651930585, 5.90858656354247, 6.836282647304256, 8.029886033239258, 4.769285489393938, 4.085643118236332, 5.3799543256053965, 8.396422896718505, 5.651121940345203, 3.3965020244503115, 4.488716829465371, 8.685476286687814, 18.02420737623831, 4.7439058875746705, 4.317629531057453, 8.192161412199157, 4.263324786064531, 4.949295981477808, 4.244549199905214, 3.4331295811245464, 4.654131715034195, 6.88487935035846, 7.590644287786345, 6.3567291143737075, 8.193533237981997, 4.919037137410376, 4.592715734065193, 6.899807402920119, 6.222640745037287, 3.2824245585832417, 2.6336521598182214, 4.356346610061301, 5.456647972880106, 18.833514964166945, 2.757035908037126, 9.855498248722755, 3.8095409271571645, 10.938811639700093, 3.9982489945473425, 5.608572408073678, 15.02067289209583, 3.7637471296971965, 5.253773160701345, 4.67908797337093, 5.702393798483723, 4.36576132728234, 5.616161256964726, 4.846402861593178, 33.88330685979818, 8.02804883139122, 17.740647992316944, 4.344454881543151, 9.948507400837709, 10.93546303098698, 12.893043564054846, 4.390677009260528, 7.82240612033427, 3.4430985626280517, 11.066831068784905, 5.241480806594505, 7.6515799029155644, 8.207376900343496, 6.0359189682257455, 5.989294065228926, 5.265435787115834, 16.630691556278816, 3.2108509513297783, 6.115327883334297, 3.8900445267670016, 20.146703073224554, 13.289535794289343, 5.613912666194342, 4.904351336805561, 6.940933983725276, 7.377922006210218, 19.05931586594452, 4.606435005593459, 9.767593704326465, 14.821091111558797, 4.137704725169842, 7.214790707896992, 21.261092824290735, 4.125311135616368, 4.2734249020877275, 4.866406088502753, 5.26006244682358, 24.148545563831238, 6.446244245061676, 5.958345710325573, 5.016253857196133, 3.119643703969434, 11.89580847786905, 4.554196052071564, 3.4720881861872583, 9.560006506467793, 3.9379441419203904, 6.907871629354886, 5.0567942786003615, 8.483486020310268, 4.831252281020245, 3.875378410394877, 11.769055947603283, 6.354553744940638, 4.838910989288118, 17.5496031534373, 5.994388401743654, 3.472355030441222, 6.351187032683942, 5.369454079490605, 11.868449183044353, 7.832136817485156, 3.4254248054910654, 7.613634153101604, 18.849964089910614, 26.201565960321886, 6.25863024352835, 9.805596967242385, 7.58192646903941, 7.4704699665768795, 11.532172024948622, 4.267587278723473, 10.379244631678036, 5.310446445659429, 6.789628197755238, 13.661087573212022, 13.355214063619469, 5.460171068970346, 7.474152097033268, 10.632439402399163, 4.751425559905089, 5.573599815159975, 4.588477508178735, 4.954787036552212, 17.099140468691925, 4.857234050652183, 6.022188144718213, 4.213370397221638, 5.233134782240719, 12.224154730453366, 3.708863003743581, 18.57748680825134, 5.473604887298035, 3.9827518036113583, 6.204918622660923, 14.919116694148919, 102.05367348671625, 6.825680722593352, 5.390881068622671, 7.62104519893122, 57.53412363458358, 8.701282351043808, 14.171277348436512, 3.6403085640374666, 25.613157806465722, 3.780985214830239, 8.963280411782877, 8.005083491829893, 29.505700079203564, 8.512021685049302, 4.973477887615543, 6.4729138015043235, 6.060828590819323, 5.282039416385146, 7.840982794326656, 4.50887321133584, 16.057263935294095, 7.667785756450459, 14.064612379605279, 14.902602444464291, 5.376693585095885, 15.287070199622104, 9.247613123290629, 9.29315016032691, 4.408476695210489, 5.65546299733656, 5.820931845403107, 16.865842787431014, 18.06565902472134, 7.746742699527189, 4.552997902051323, 5.57732590212564, 9.235726067711107, 4.597612870754241, 7.5725698423740955, 5.591734090892379, 5.793448304859187, 15.27201455246912, 4.854337045873139, 19.502173747621505, 4.237021229557576, 31.035035951011697, 3.888384379782468, 5.330468750783977, 6.302177210048079, 11.579319846917898, 17.316735354546786, 97.7236661627846, 12.122504075765052, 7.400152487080239, 9.294712920038851, 58.22042094715605, 11.537978270860588, 6.440003981963902, 8.291681648500594, 8.778467631651948, 4.125408732095308, 10.068323351377893, 11.130583887367942, 4.851232971794322, 7.968985577588044, 5.245029325225454, 4.533606048623678, 7.3792056403953, 10.967367157297867, 8.229497925172138, 17.263487327635147, 2.8137626251629655, 4.73258070605688, 17.77215887818718, 7.333224112817215, 12.717329079989225, 10.688201994223615, 4.259880717722104, 8.365080846677785, 5.186442597217552, 4.730261913888361, 4.859887677130571, 5.114492330636918, 4.891838226149551, 5.778042639269554, 8.298916031369544, 21.959295507316142, 9.94340075741442, 5.856220112505582, 28.33886876242726, 4.390772102904992, 3.895897027200591, 16.364457618533848, 5.418554978578287, 26.942301289918582, 5.93232600980445, 6.853853155820662, 6.876204780824719, 5.8313973198597875, 6.1022908566014875, 17.24039441442388, 3.882493676393313, 13.14245364132226, 7.115615994980958, 7.138959579858204, 3.5113786468928287, 6.4674066312380125, 4.741126345646311, 4.736977984763538, 4.166621113394453, 13.42385800449998, 4.396239388165861, 3.9655013502367367, 4.588721833562313, 5.812971293267103, 6.254822507486526, 6.5024398918201785, 4.565409624786817, 4.098308366136023, 5.522148420294746, 5.227262741250819, 4.127652960847887, 3.142174194495657, 4.709687287671841, 4.025166807475409, 3.510912864172782, 5.766589701024391, 4.970157088235254, 3.316228036833793, 4.402237877985659, 4.280569306874725, 3.6304641455795195, 4.2654879134163135, 24.318432441833934, 4.591288233243504, 6.413133292207735, 4.584397166217185, 5.6740721244935495, 3.41376452528423, 3.6515477845036997, 5.636079415915172, 2.8806584736136474, 5.128853124515669, 5.068515973357416, 3.2859267294882746, 4.298781590234928, 4.13908993697116, 6.250822633691704, 3.8511784931355377, 11.029527340330826, 4.604584217829853, 2.405657913964714, 3.8652679126208147, 7.460449680058358, 3.2840128439198724, 4.105877231225552, 4.61213993922648, 2.90759122293461, 4.2554583182743215, 44.84339144567137, 5.506200616943247, 4.287970794641107, 4.684794096126822, 3.2422174880382806, 3.70995620283021, 5.396731612133346, 3.8956632821195276, 3.7867177939921293, 5.444673492616526, 10.489697737417188, 5.113670454369369, 4.0319037695584585, 7.309768116572641, 6.840444895212542, 3.3083322499024654, 4.405267737403501, 5.858645744098564, 3.7686103347482214, 4.484952241393195, 3.4973898105173085, 5.30609584087853, 14.329204360025495, 4.827580489897377, 4.77175766707501, 4.7963539996221956, 3.4526067582868896, 4.459816131490887, 4.646192277932853, 3.477548066016266, 15.678553782568835, 5.5008151126365545, 5.584668597457272, 5.2219403373190705, 4.815134665329988, 4.0921947572445685, 6.815024462541278, 12.232085427551658, 15.90729687788431, 5.148572028704057, 8.479912265099577, 3.5820329221408516, 6.927788995336828, 15.481987135158736, 8.37135644553301, 4.488881511786259, 4.614286213925998, 6.021751254248534, 12.663085296647795, 3.8880563063338944, 7.624689220380631, 3.5477426906033007, 3.8598978661796908, 15.967586093789878, 4.4640088031594205, 3.5376400554400815, 3.3610887260577162, 4.404287511577387, 3.768712081317265, 4.459268119825021, 3.699281574605993, 62.49823088023086, 4.888568257555104, 5.48240246756454, 3.750071666422767, 39.32923292992607, 8.276239140501744, 2.8301247220975854, 3.6559844642215418, 3.3763808382430014, 7.044081624589563, 7.1742036827339986, 5.480130860513483, 5.832544080704338, 5.469933464067111, 6.955259595387718, 6.621711125141992, 12.348445677974636, 11.375971844177485, 5.506978704677663, 5.682973873132405, 3.5173265791529054, 7.310730915301997, 5.012942838294337, 7.15487343330488, 7.607122734324938, 4.171576137696724, 8.572057688781044, 4.237175726159628, 34.29599407827331, 2.1943905774702035, 9.124358263856246, 3.5053297996976513, 6.689218814339734, 4.878347527661905, 4.4781130290572735, 5.902239561566548, 4.197297880194242, 4.318954385771064, 6.653152341715105, 5.4440673905331165, 15.436848150634605, 7.1933331589047915, 5.935911056448459, 2.71872354410436, 5.327739288386457, 3.8438748417239967, 10.62215856907254, 4.98132123976279, 4.460182388909975, 6.860601131611273, 4.853872347497453, 6.400893876324572, 4.8408659276927795, 9.386110464266483, 4.674058983527797, 4.815540636260423, 4.4218013402548895, 7.279686685317376, 5.048731471775273, 4.303141118348247, 5.788845807967062, 8.214906916851053, 3.643541165786069, 2.95404808460754, 11.540091095162081, 10.214625783914364, 5.122847091060183, 38.230228562383765, 32.546506933371894, 6.982416517721017, 4.437252274084765, 4.259775620799406, 53.22649592076762, 4.216676654571481, 3.862633967756919, 10.361116926699298, 4.528605863828611, 6.4384048025725695, 5.393288553146349, 2.8209255525827457, 8.987794624796493, 3.860501461888144, 5.9369545607184975, 5.22342458420442, 11.603491478272357, 3.7365588617196015, 4.066156546380156, 4.172660093221739, 15.649255457248758, 7.682379672200265, 13.025901955480004, 3.3818369476728143, 9.769270831798, 7.61379971669336, 8.140954046707847, 13.998900111887712, 7.341685469795024, 4.03075501474508, 9.333551674590435, 4.640489442845953, 4.644032463202681, 3.7213811183674164, 4.6431649362149034, 5.250796246357576, 4.549055891520474, 5.8364567924510835, 3.892422197480882, 6.050251309861904, 11.754626929341336, 4.423599594857783, 3.90145791233042, 5.404489275330774, 4.207393009710961, 5.402985440875136, 9.205143648067317, 2.721979110999525, 5.874898255656085, 4.405111093830713, 7.805800662279701, 4.501576221043738, 4.7369219683130614, 4.883838053567372, 4.897873991472897, 6.354126224679604, 3.883849869771697, 4.601955167138035, 11.452688961210407, 4.998362034017084, 4.205751390151167, 3.85172256159781, 7.0256396302182225, 3.8297866687179574, 3.951859634181461, 4.354093848346477, 3.4113905490688032, 3.6379483533893473, 6.146761490762079, 3.7985471443362964, 7.323022683530335, 4.1730595866396065, 3.580198546100938, 5.26987668097862, 4.016789814017285, 5.20297741524512, 5.842393628005731, 5.200044113693369, 4.239512745963366, 3.542584189832903, 4.7694654085602055, 5.053745429741391, 4.620780713981803, 4.980564562241774, 4.4566918285802055, 9.591669529914274, 2.841769997417686, 7.008816956333041, 3.6548828828829123, 3.849892419647106, 5.488099201341627, 2.916226958564236, 2.8337192967851568, 5.98904878835684, 5.306479504195258, 3.96465287251003, 41.81124000538494, 5.262835827235809, 5.2963589048090896, 6.349949730141675, 4.826735039874237, 10.169996564486505, 21.305180362781453, 5.028475219801622, 5.866270769524567, 3.1297213884794908, 10.898671259554321, 5.443555003044572, 9.917442177566903, 4.448923465734941, 3.7699154353650552, 6.022948112456969, 4.55682340254982, 3.7128337176653354, 4.6597725616091505, 5.507647642635927, 7.396519400294355, 9.956735649337979, 4.383625205846445, 6.590859606109844, 7.866471798276061, 6.124986913200773, 5.509584894126776, 4.989652959548868, 6.513819998001558, 4.739144880559427, 8.163177525631813, 8.414452228625313, 4.091240785798429, 6.031672986991259, 3.1070790045777086, 15.474033897599869, 7.517426271614827, 14.234779167676827, 13.380495770545348, 5.5089466271216105, 4.541528165340181, 3.3234602690527986, 3.537894095375288, 7.445221471432106, 7.490622910593649, 4.665934274128824, 6.5054638341037005, 4.887875353323235, 5.774989081669614, 5.084878209107116, 2.6941362284846786, 6.267890114702725, 3.570140518844968, 15.066071636801308, 6.082936984245938, 5.490055174654937, 11.611759010525251, 4.679552378621431, 12.152886603441333, 4.088536861116428, 2.9905486991730235, 4.218101373796461, 3.921099475197462, 4.590987895269859, 5.298755774985243, 3.8190966433425375, 9.480548226500513, 131.59373105111266, 4.245352731110115, 5.188666072088949, 4.123933174108046, 87.52241999125745, 5.294788354982236, 9.211251122615256, 7.639964711756565, 4.371026939380054, 3.9062788746204355, 5.403512534355155, 5.829883511550545, 8.214140967803983, 5.1237158790288655, 6.850599934112565, 8.553541224413632, 5.339672368401139, 5.280029812512434, 4.720740783847467, 7.151140679042664, 3.5692460026843498, 72.10244665571672, 3.7782284198992846, 3.257631155993482, 5.20661669555853, 63.19723868383078, 9.55101964362503, 5.453311247931178, 7.376279300332299, 12.611775500563068, 4.328418135141026, 5.7280664118106985, 4.160804318391321, 3.2392199776614072, 5.419788676376491, 3.8250096592277747, 4.2622752948110465, 6.378180507316691, 4.486356453990332, 4.233814523637621, 7.033420600491364, 2.313753384308622, 5.286334625748784, 4.309233460627237, 3.5927774109811215, 8.421414323858402, 3.796640078658833, 5.869167606916584, 4.827080685106284, 3.9175037644255464, 4.111949635808487, 12.291102047593842, 3.86222075366621, 8.966359491130717, 5.42124381985609, 6.482219031640723, 7.60757447934623, 3.8526101019451304, 11.694828100379016, 5.447362793063194, 5.902953740923306, 4.856357651296925, 15.278873928142444, 5.199413842615459, 6.774970323136335, 3.8792481062630073, 6.1564080896232936, 8.44025258731929, 5.512389590129986, 4.57842509773945, 7.0472841832704995, 5.171502157525633, 8.292887120064982, 4.743250450757501, 7.300397582957623, 5.813019144550904, 5.925828238666093, 8.5286667296458, 4.895156115124268, 16.27475993104781, 5.440867482955448, 8.383876794813395, 4.7452238192395, 10.108963331331296, 5.118371575553545, 9.980422461094216, 12.6267193624127, 6.225576075134423, 5.637487148904361, 9.177911272574779, 10.327267066317992, 10.97361387380749, 4.697808629118397, 3.624756771049135, 5.825214352307738, 10.44912137549208, 5.6449985094732416, 11.85509198747683, 6.062101085589202, 7.777732430715205, 4.6634431638743585, 7.7162106195635936, 3.3644313467359477, 5.626918515286708, 8.368033855836048, 5.731423795179883, 6.876067175977994, 9.465104709523374, 7.1239679147279045, 4.767575127224403, 10.34271086225646, 3.7614674290871646, 4.583223876754537, 3.3750184733220334, 3.980784546336138, 5.945256309706154, 12.705597389556923, 3.9340769649693756, 7.146489320455318, 9.405998662571252, 12.208811509697908, 10.456053276004631, 5.76596722971689, 3.9894609378898633, 9.211337876739483, 7.329606261534579, 5.3370120045552305, 4.699031002775291, 7.204321241606614, 3.9068940209294905, 16.396951107259717, 4.450219416636335, 4.698018691794827, 42.06990323802811, 6.405129324389397, 5.748794011038786, 5.09795740541239, 4.195335514871742, 4.663944745003203, 7.504891454736678, 4.208102465382809, 9.5250212197276, 4.484021987866008, 8.45016904640983, 4.518350639535859, 5.27038544873167, 40.534927347391815, 3.660963393506159, 3.9160221026353117, 8.264051903355158, 6.571357150608214, 3.5647621063662327, 5.07160900900285, 4.006141401060041, 3.302689927025634, 4.167588475731783, 10.093936860304323, 8.68559802547767, 14.427909125138068, 4.490132678233234, 9.798331920748351, 9.841737840342685, 7.2728739798349205, 5.791512500886614, 11.602919890828971, 5.766501495863139, 21.72156279780156, 4.559468287568835, 4.175500195474266, 23.31130511584226, 4.103828833109712, 17.720810080927578, 3.694139180245995, 10.913097215795016, 4.900265868465838, 5.222943418121083, 5.109640673651168, 4.327089923470661, 7.007841431656327, 12.774093490364404, 3.5679851669015097, 5.294336117342144, 5.696206011631795, 4.51273849460311, 7.068168294037622, 3.5406071977616427, 11.874148365073172, 4.1192029034541715, 4.792689799329113, 5.361411620351601, 7.472296761863833, 5.303666541691023, 4.113028296449898, 8.033873993377393, 6.359376343749499, 10.69554330418645, 9.081978536798267, 5.200082077420122, 5.202725389691531, 3.573670726143055, 6.760854933768728, 3.8400790597370573, 9.472461146669525, 7.988844589531036, 5.166338303582664, 8.973374399071105, 3.4146498627978255, 5.470810951401419, 22.2259802518781, 11.078359208010164, 8.308629488845312, 5.646939696612294, 5.043543373632838, 3.8843187203650276, 6.098757671389597, 4.858090119340502, 6.8467460109141935, 4.603781209200034, 96.00624170692434, 7.718097433938, 3.9729139921429426, 6.119316847241977, 65.05857773092718, 63.22244372294371, 7.647860540928002, 8.284220524544097, 8.659030191140667, 51.9528919217575, 3.192360076652562, 4.603383972347622, 6.465074074572228, 6.3447378079996275, 6.940269481685841, 8.726227197394257, 6.480407389359918, 11.71250112252665, 3.5417737840388086, 8.641220596099224, 6.422100057222647, 3.265607816751588, 6.759388361319697, 3.136587980283251, 4.909153542534759, 5.175421238791225, 4.658497283883559, 8.110828801341452, 5.329149419569796, 4.140472386688593, 7.590124886326516, 10.141227946663715, 4.889189805297605, 7.631710824249511, 5.099957739717213, 5.6539647388792575, 4.0678899914981645, 5.428926225773284, 3.7253035378066586, 3.430647957928786, 5.200372635860873, 5.007082043574847, 5.225682452880235, 4.551780702634472, 5.095768982840321, 6.00432054438245, 5.589366103007318, 7.077897768825921, 3.9593967263981744, 4.5395606891855, 3.734771811627123, 4.973523881185686, 5.491631246245759, 12.121074133226315, 7.31839042458422, 4.252450567587272, 11.892353646599343, 2.979253262486367, 8.75097678663233, 4.4015778308768265, 8.327419682565335, 7.09110614668492, 3.55123257251956, 5.204222443356319, 5.936216421288402, 23.305295544691695, 6.312714937616763, 4.0417543901707145, 4.912101488934159, 4.197571714180728, 9.143466555721565, 7.1822457601265, 8.033816593355816, 6.000071151457264, 4.579920314405342, 13.135490183391049, 13.172610529152115, 8.365478257295559, 6.081107395657352, 4.390743652250078, 5.214720021359267, 5.001278158894381, 4.886973030590809, 15.399745102879987, 4.882686357548205, 6.373142982944433, 5.030911788608857, 3.5072929286229484, 6.4957636292989775, 4.539598474931286, 7.283493414529499, 10.721045767391228, 7.913102454540966, 5.53278806663368, 5.301260543756994, 6.8568037139094296, 2.752039387265085, 7.01494094911633, 6.240928086125125, 8.332023405730627, 10.156703931942044, 6.0102601421798605, 5.055206188081637, 5.586269092037571, 5.048509724830527, 6.654258746270198, 3.419504268580273, 4.554322772960764, 7.223818418559933, 5.163158332658719, 6.880207924606838, 3.843815222526138, 5.861940600152432, 4.489159293608596, 3.5722329589962385, 3.5510325342954454, 9.67499643882283, 4.805583755762179, 7.105837743740491, 6.032968745114878, 5.4794538587285375, 5.864655663721316, 7.183662209975655, 6.119344458686845, 20.243645266066434, 6.359542436039817, 6.982163335525998, 3.9257152532884474, 6.170558869424338, 4.731107712181197, 5.1164414144698815, 23.319750041032982, 4.054748063938281, 3.4244213310567604, 5.10626416799627, 3.512311422102732, 6.966975448207064, 5.415640412352574, 4.559851792491192, 13.27231864253539, 7.179911559645389, 5.043302560564653, 20.388293540581568, 5.8706026562661835, 6.660786814068004, 5.942419339825402, 23.3858431066483, 4.585752296113456, 22.98528742070065, 3.8862896380695666, 5.158290564487303, 3.7280972572632334, 2.9458972712434006, 6.395531338202309, 13.60890399704756, 9.079554512406183, 4.858192041955569, 5.403257927532903, 5.287307525625407, 7.210899557313705, 7.2951151492055715, 5.483233029584732, 8.104306764523244, 7.273493648715359, 12.72823065686173, 3.3017387150835225, 4.164243826015761, 3.422720378286983, 11.01029334596668, 4.281087763024371, 8.071536288085529, 5.366323013023987, 3.8257384776828514, 4.834583785517996, 5.123204914861237, 9.030365157207303, 10.265271802172775, 4.082884916753802, 4.4054801434875275, 19.665331293190086, 4.818700942613985, 6.900810523315638, 5.577548457174949, 9.36090639975608, 9.405572927051521, 9.71338404054257, 4.815908323802247, 4.632858540773106, 6.537704509789054, 4.5163954935694255, 7.0285491451840185, 22.462025834836076, 3.8607145222184376, 8.313848093765081, 5.188704739427533, 4.047149619072533, 7.465848368956567, 13.704585680637935, 4.475183489702379, 5.069810005170972, 3.2909067122965405, 42.85868084097638, 3.8824992218445376, 4.565978598535458, 15.208764944017938, 3.79756654967484, 12.187769629203286, 4.896186384304875, 14.65586906220956, 88.99087527207094, 6.206036432998477, 2.98853288230209, 3.8972076840944436, 77.8985664613164, 5.340575965369772, 7.672666545681466, 6.451731364271385, 8.43414976857891, 3.5888417051986052, 6.970916605998342, 89.25170306654127, 5.24131570952794, 4.545980295476669, 4.443652487198706, 70.76748043623041, 6.658750271077607, 3.4257554306588807, 11.820224075988195, 3.5561688354778322, 5.110309901261683, 4.225028731458688, 19.099156319096625, 4.556853514691344, 6.9432079680615875, 5.069820843544164, 7.307037198780643, 5.28551581654005, 8.925045874871731, 15.55229802577759, 3.6856525306998535, 3.368913484237385, 8.617568762254898, 6.50938632553973, 3.120556336673061, 3.432731763672828, 21.05755827815139, 4.880811242988837, 5.620387618576774, 5.63922538956532, 5.038649255061763, 5.090506831711359, 5.433485412583556, 13.978845144665302, 3.5760948080392563, 6.094275097436794, 7.092143363211757, 4.308243660021323, 4.171962630827852, 7.311495568836342, 5.746516805510507, 10.912361364201809, 5.599755340439134, 6.2645732875256845, 5.056471161903876, 7.07230591633663, 4.078568781918347, 12.412162591298666, 11.445338299186057, 7.802842811473111, 4.858485734996276, 4.097023828853436, 4.629436405631504, 6.43849632214457, 4.363767614896927, 6.5547404200047525, 6.848230615680141, 2.70190045419373, 3.997951194069021, 4.848295458471198, 4.206879915684403, 6.521018309851089, 4.978842383826835, 3.80561570043989, 3.693937650187517, 4.17815513832992, 3.633893128764766, 5.256620073926068, 4.9282942741045, 10.797305493052091, 6.429627979128444, 3.798673097526656, 3.53742492050943, 5.157536641787977, 4.125707347246439, 9.076511050165513, 4.169785740658422, 6.239205287662089, 15.009723964653826, 6.6812092448391684, 17.944895987364642, 5.4235269423884365, 7.466008928052885, 5.623557099464735, 4.857587463768638, 4.257230903648065, 14.829669778972338, 3.286547563180595, 4.220859308803869, 6.40358281501158, 4.96307604175722, 4.490492324983599, 5.381763681097021, 14.784463795534597, 9.284703668771314, 10.238913535168276, 6.6848791526073725, 4.4043587802485575, 5.91852011370633, 3.120631283153217, 8.381667603674753, 7.7080553923825805, 6.3107616064218615, 5.057347560803695, 10.932972718798885, 3.992552607117055, 6.2203172520038335, 6.279019162573704, 8.912448640460768, 3.365269822043902, 5.089793896851523, 7.27940144827608, 3.7562736508561154, 28.000564316259474, 24.52189887800224, 6.088332881292748, 7.78954387241658, 6.372164079908193, 4.440632287446253, 9.039782678122315, 7.579755818900054, 4.419159961740572, 11.651867198172768, 5.132862793909565, 9.439037607480072, 6.1837292208077725, 8.279572153038652, 5.325471771460893, 3.723649903762889, 10.041131858386063, 8.485986338894485, 5.298864257216539, 4.778591982037458, 17.43265652811241, 4.049951462630827, 4.678332043943729, 14.311494219701926, 7.792042488787917, 3.7565142311932656, 2.6398113269440833, 5.008698303725858, 5.9308447983139, 4.957516005177335, 9.270650193983732, 14.18811945988825, 8.40353407222558, 7.668418898456487, 9.390597098894826, 3.842920773310571, 5.679796357076892, 19.49159840996966, 4.4324575422770405, 6.976183745476914, 3.9817966277715215, 5.08085910708289, 6.15885056999312, 3.58905711957294, 6.716360912647122, 5.072748546974682, 8.45323338000317, 16.10135518332838, 10.19643250727491, 4.870705129764351, 9.798415861185312, 4.88827792050047, 5.957337160429, 7.550357620952303, 20.92654345219328, 5.548154714200907, 3.1369581942091216, 4.015521766744323, 5.75547266282326, 8.350018029465648, 5.339205651370688, 17.997690573281986, 101.74103030303031, 4.1976015196051275, 7.309726114311267, 6.100844111143235, 41.687435406549625, 7.017490426412561, 4.07549262287961, 9.076406115217326, 5.044534072227583, 13.824923702548714, 8.295126485619546, 6.229638327932235, 10.84677862878515, 4.525871022223804, 8.074281943258926, 4.168498885787336, 5.992895478504521, 3.6433173320627446, 9.609745094347339, 4.600174686513494, 3.5138932091427804, 4.563893693526982, 3.796421191451038, 5.112549383782337, 16.468040730621045, 12.6942502425257, 110.52506652240035, 5.556189446830952, 5.192824422138159, 4.947116773912166, 44.6218759237103, 5.576326293477241, 6.377682842629314, 4.117157560588073, 19.893232066908944, 4.152309265080854, 6.580658362822054, 8.277401603049498, 4.6144632242065216, 5.28564346842367, 5.24698434586251, 4.463097816419789, 4.04297914723992, 4.9293079123009775, 3.8221164850440643, 10.145082821639633, 4.9677077813494614, 4.831740391670801, 7.944837185440968, 11.691100917332568, 6.835843530127028, 8.6767802559385, 4.119527314378831, 10.970125639848149, 3.5785986925202398, 5.919534525269331, 4.997246038027469, 12.140029212390004, 13.098407467194935, 7.178100405283027, 4.511602396615941, 3.972681069243441, 5.454397890610897, 5.234220886752167, 4.844225021442568, 10.22630209361536, 13.667978067777485, 3.7215825613442792, 9.384574302635365, 7.155418877697582, 5.689618647295254, 2.999992927959471, 6.213141719328204, 6.3484486897646955, 10.604959252472096, 4.925915118342775, 5.140211568088658, 3.8056505795363966, 7.49768792504455, 4.898939730092987, 8.94547391611354, 4.7096210889185794, 8.102599913411463, 3.687669959805206, 2.6556883811120646, 5.767741714240629, 5.002847596518113, 5.645947277064139, 14.416605908723346, 5.759299924145805, 8.300718831392524, 8.53781846373953, 4.074919947707334, 2.8273961399962686, 4.091206864365489, 11.36277172877854, 4.69069806063981, 5.503011297192813, 4.169436937792529, 3.227335979709522, 10.927397428988128, 4.651809062350412, 6.211176037265824, 8.202651425644643, 4.55140013939773, 9.276112935862553, 5.5793640821497394, 4.831738821825663, 14.335556364312636, 4.712004413959613, 4.131850094024241, 8.949034427005735, 15.09767539248144, 4.164010107842091, 3.0351288980277173, 3.7635277145792667, 3.9334441347729334, 8.1229969913426, 4.174933364580936, 5.469444242529065, 4.655265407435733, 5.115089494246537, 4.007535387839185, 11.038425542901994, 5.052376649140364, 6.011985646886391, 4.230650474998805, 4.713020261479946, 14.135825727913803, 4.524033167224263, 6.140640957898205, 3.367054764394021, 4.287068656591268, 33.50391164706565, 5.343432514636487, 3.2072694974904623, 9.46351477530971, 25.732486606692383, 6.6559933754946625, 5.326949710270922, 7.700448098163023, 9.623377196222025, 5.290016867006781, 10.318246630593064, 11.461276614000688, 4.899730136709521, 17.243929889510806, 5.7655490003853025, 7.7093964293703285, 6.71122268352426, 2.5904513597126537, 13.880125472166585, 11.93779872188574, 3.400180280000814, 16.709364926945955, 11.670224942230467, 4.184842382679839, 4.578218045197121, 4.582884649021197, 3.565759073710494, 14.524317514839522, 5.503138145637034, 6.238196683461711, 17.37220878781065, 20.434154485381526, 4.566787029804762, 13.975145735053681, 17.913545608559325, 6.3088131710986035, 12.210554128084466, 30.40746068494728, 4.827447692311119, 3.633284278162139, 4.1032110844421315, 3.31797008148174, 6.297678215654514, 3.2712620464394053, 3.709872068504734, 13.873046561745232, 7.323835385770356, 10.267732963177622, 5.524188548523757, 5.252260678752115, 4.010954034334723, 17.849252202690668, 2.717428598022562, 4.845309784015924, 3.588150991968713, 4.062358245225303, 6.5451953011362916, 4.594650998117036, 7.357212954984582, 3.1389851765506864, 8.155599887712313, 7.5305434677793395, 3.562559704028589, 3.8256866984521336, 4.161672991140334, 4.358439659411398, 8.175806749715456, 8.44925733109829, 2.5451409691372886, 124.2448057791355, 6.845275731725891, 10.342140409947344, 10.15561884780337, 46.86358071867744, 8.109758283078275, 4.728823941209188, 6.5954769007178395, 5.545256914810451, 9.85326934406742, 3.2157393937969823, 15.900778423566141, 3.1982417792285345, 4.289854078347183, 5.86527659162743, 11.544927404551617, 16.232418734444074, 3.057898031868858, 4.471957014796953, 5.206936491738273, 5.726270752686892, 5.8858024662886645, 8.990660740619703, 5.500586508383595, 5.264817521065193, 7.22545243886128, 4.265435581878583, 5.024075399314687, 4.382873514107971, 8.054286033925383, 8.365286052084514, 5.386371349005402, 4.84627035084442, 6.86109107089569, 3.9800194154174964, 120.42264703918288, 4.6910315210670435, 3.2779600617017404, 14.77103677143258, 76.04951159951159, 5.59717835438087, 7.208146610489702, 4.115273771682239, 4.921884396557897, 5.944808606025899, 4.195200296705362, 3.670358767437835, 5.145863145184387, 4.920670527026277, 6.279200579818427, 3.1012904123187117, 11.506139651028507, 3.1104296686970043, 6.245975221716039, 3.2316056706776695, 5.10035819455401, 7.53061693883638, 4.036234470283838, 14.563349377517, 5.267779411195879, 7.455462003840974, 4.430637090879873, 7.198560549183444, 5.248775198236952, 3.96895648524596, 3.6584862914483423, 5.650463593927018, 5.859260864850698, 9.108980264210008, 5.18051072642452, 17.305737697529732, 4.799317794891999, 3.1582815182487654, 2.7953608548807933, 7.240296823391461, 2.538957497910281, 6.651304218238559, 3.8882431343575825, 3.4505486491072968, 9.380542240066298, 3.369689205012699, 8.14420812869237, 3.8052677352809234, 3.0425601236589497, 5.702359888527926, 3.745680507246183, 7.0939399596565815, 4.84335022560825, 9.121713443449174, 6.793573370647204, 4.345075986194123, 4.524873022018129, 4.0978728158818996, 5.4709592216601335, 8.338998142586695, 5.264880013842203, 7.77800374494665, 4.711759300454508, 5.068280326085494, 5.293671002599666, 4.374937369959342, 4.283035196306944, 3.8280191538738966, 6.533628143028695, 4.324673648552489, 4.235564836752248, 3.5131775799173313, 9.465234097938572, 3.9624449844199057, 4.6570092578875855, 6.959980708774088, 5.199644453454408, 19.803562894236325, 4.375925742805079, 4.536184098255125, 4.586034209720847, 4.888118385738485, 5.23974726073579, 4.30720644872254, 7.320601213526189, 4.368802208014962, 7.7519187909365606, 4.762790099172769, 3.8753593657313172, 5.891853897183487, 4.722583725953089, 3.5466093412511914, 7.408643241285464, 6.82693110152808, 7.093303126162585, 4.680594262712849, 6.996386627101509, 7.327804297679037, 6.3415822151148316, 14.193108432314082, 4.030173909364596, 3.692230363050654, 7.8293511292817195, 5.784738608944195, 7.5889063293245655, 5.096278295534232, 3.746101786049061, 2.9919821734121177, 3.142188622251834, 7.358230595368869, 3.240346718412382, 9.11863385135738, 8.389137504029517, 3.4402517213808435, 4.702650682895258, 5.220843459233053, 4.517220453364481, 5.963155954281133, 28.550421333647698, 4.93714057863691, 4.670914274794189, 5.168806153082114, 7.16870761324864, 4.696063945402791, 6.584637115393755, 7.00269918912026, 5.130960764181455, 4.977492376617347, 3.251515420370515, 4.431062428217242, 7.682700802723183, 4.903494185488425, 3.528851521220606, 9.217290458047831, 4.18534470381575, 5.972318373472608, 5.2591364515332515, 3.8178467839019588, 7.679290012410782, 4.359930866965013, 6.209749921398044, 4.466098667334301, 4.35074835214217, 2.7613444616833083, 16.72524458456286, 4.402241542753284, 6.939970546380042, 8.297240870435441, 5.113116523281707, 4.740540751528764, 5.055747741686464, 4.022745917816791, 13.137256514943573, 3.6483731117599323, 3.4867979453521665, 10.222849232826183, 5.44526926404446, 7.77423201905466, 5.547698119559078, 4.52162109234846, 5.907769337511224, 5.722592273811731, 6.28274803071215, 20.23952127790497, 4.8575536643632775, 10.331131260798982, 5.279849215915478, 16.00043084572449, 6.899476437081788, 11.589425614503213, 4.242925522194997, 7.40819338515186, 3.5890713444554123, 4.9573216588424005, 3.7955871849022333, 6.141974232660044, 9.482789969172872, 5.143808107975955, 5.410408748598575, 11.67620107953851, 6.41779523791449, 3.4759992594037974, 4.635741323861855, 3.374276497853453, 3.076952914917783, 14.243249453802962, 8.550107804092484, 3.1644690646107003, 25.206608112607398, 8.514678531337816, 81.88144648208934, 4.03838253706934, 19.475949996762978, 8.69298425905638, 77.56302804140309, 16.99154529318515, 10.175701490182261, 12.235323949128562, 8.701438394142096, 7.053474190324598, 7.028903240835134, 98.16008881118881, 8.653968498412384, 6.140220718979678, 9.392051484642222, 78.7086210250804, 4.219458400907928, 8.090563413398275, 6.539354312376947, 6.993096866252306, 9.44147941190532, 9.376022306012919, 4.082741040407863, 4.496323206213832, 8.735737060263741, 4.855110825391274, 11.811151523313283, 10.798512248497625, 5.995242823780354, 9.667205604741838, 4.929436918620809, 8.012349600660778, 8.380470202977959, 4.895274133462526, 8.43796258605483, 4.6980071313934495, 5.605537416329118, 7.111768909317338, 4.837426710667193, 13.723565095581806, 4.237476278478476, 6.232069502267665, 6.95843319647167, 7.572192876082414, 3.8535901506152963, 8.945383848896428, 10.245353052702225, 5.773679264449326, 8.851156486611767, 5.18358587317758, 4.078695453583622, 5.926389033694539, 7.775306778288269, 14.701262168140024, 31.5559349203141, 6.3370981943614995, 6.084286502398295, 6.893686192349407, 5.85039978071514, 4.656068571549489, 3.9907279163162577, 5.803049172498916, 10.213612403392116, 8.802149038368533, 5.647589627061451, 5.682574509081085, 4.505895602651871, 4.7771723610001136, 4.954884489633116, 5.836035482551557, 8.48432459799846, 8.559520785689646, 5.080092088075714, 4.5143400922111, 3.2356411377139414, 4.35688397520755, 6.253646493330805, 3.2347681213577486, 4.1754490246288665, 4.246795169513299, 4.733331017365892, 5.399544811523383, 5.564378633087008, 3.451288489085621, 10.636772497444479, 14.134963848272129, 5.005722705038961, 4.15806604719205, 4.492440743943638, 5.057863665878178, 4.393856821746158, 5.811550332979167, 4.515961379221338, 2.7044037280266755, 3.586674866045954, 4.287671374082517, 4.519391614296786, 8.004253910390199, 4.383391110861225, 4.701812993778778, 25.22901575499826, 7.755497824386054, 4.959664943655632, 9.023873726302574, 4.227017026859467, 4.948121041718659, 5.353329291249265, 45.090020826509196, 3.566175953104494, 4.168202371194286, 3.0692349633064686, 7.960869020094999, 4.934509720541848, 6.410213167243775, 4.618053499871165, 9.478127760723714, 5.582944487523082, 5.704867829297357, 6.436000431445338, 6.841917236307939, 5.098072070748721, 6.3370368707862275, 4.553119367302885, 3.568697390609944, 28.031856254136947, 7.376789245554716, 5.038374893830336, 4.699700891705708, 16.019589659760044, 4.859629634401877, 4.41675014903738, 8.615531047423676, 33.254254357222635, 4.498705690337913, 4.209408988413425, 5.021513877849141, 6.154495252187022, 10.815950733178827, 4.898975986689111, 4.333347371161432, 3.3367879496291195, 11.119366957403923, 5.693470390689326, 10.093331611511582, 6.523024329671994, 5.313127910334534, 11.544399088207319, 4.640768235343204, 4.5906811013686735, 5.876647878104949, 10.032781710217716, 8.088181877012058, 5.007062806082465, 4.990841982428381, 10.381334674380781, 4.754486767388873, 5.145434397668821, 4.794402961816045, 4.5416664656796035, 5.497493323034263, 4.4240593880308, 10.072639246648427, 4.906330108661817, 3.9836192514115245, 5.573675306878233, 4.528693703895169, 7.15291368889014, 33.498251879291544, 6.056764760041608, 3.9349567796730116, 8.344128789379441, 4.233632936608567, 4.582922179948601, 4.363669173458646, 5.126811748713679, 8.053325017469811, 5.859751112097018, 3.6037688539479253, 5.018232307906261, 4.36824743891563, 4.074755624405861, 4.918462130933962, 6.8921597392245655, 5.631109247577801, 10.6405356300439, 5.74792698232398, 3.8744329683339616, 4.2451243679476285, 3.2206254165411092, 5.43161280107861, 8.272784850294613, 11.262044192385067, 13.34790269536158, 21.03973311226588, 6.637256912837035, 76.21368415356572, 4.170519658185719, 5.444735857901127, 3.511291366583334, 27.44086109313028, 17.2284553864111, 6.238288480830508, 93.42825235875235, 14.205268146312594, 9.370470424869858, 7.653869205092988, 84.90812245952397, 18.335954489820647, 3.9874612834410734, 24.94872355388109, 5.095030325030941, 6.2853069584719234, 2.8534773175150914, 4.067674711093241, 7.236127532729077, 12.702672836470757, 4.6294997878213815, 6.400526259198397, 7.002304109704079, 3.0079846147731684, 5.696283408470379, 9.285548003755759, 16.307335573979923, 4.79250981128249, 5.183219557314282, 4.271489314808509, 3.9649293523118487, 5.228027125352108, 7.931367896307529, 3.760562952298764, 4.9239291742590385, 21.847992503034092, 5.687764155336558, 6.7854367574116115, 4.053687054325117, 7.990017579965818, 13.541966545771945, 5.950335295074856, 4.898379498353713, 9.968785831023773, 7.319323979110153, 8.291096485429346, 6.019688618312564, 4.619755723667158, 6.037966108078858, 3.9786416038839345, 8.437999418080933, 5.066295655281356, 6.438209005367972, 3.614588178036152, 4.974102026431111, 7.513271924658028, 6.380559616320375, 6.214457905935818, 3.2273805194580456, 7.663188007219167, 7.38182560730083, 4.3737251770211305, 3.2269914229057757, 9.331663455275287, 4.815515498812364, 9.981319539439731, 3.003137153642821, 3.612970945213923, 2.9715983174974947, 4.978909250156718, 3.7546670177483916, 23.829626776856447, 4.80472166109154, 9.427197564202189, 6.893852204128162, 6.280011759944602, 3.672835019092789, 3.920436811705465, 4.904409218746314, 3.8965303558259428, 5.30437154108258, 4.519105958933951, 5.279126737501654, 10.447126806795405, 8.001379886800319, 5.479163464529284, 3.558483633961946, 20.173462483825126, 160.86820411935744, 141.5939125457876, 93.51120535836706, 68.51066008419684, 56.261066969213424, 25.035994011964995, 7.47022731347819, 89.10613414608267, 81.13326291417468, 3.959350977193689, 84.96572565811383, 77.96401073001466, 51.48801459792998] disp = hash_d64_k16 d1 = pd.Series([s for s in disp]) sorted_d1 = d1.sort_values(ascending=False) N = 140 pred_rrcf = d1 > d1.quantile(0.9) print('Displacement: ', d1.tolist()) for k in [100, 200]: top_k_real = anomaly_detection.get_top_k_anomalies(sh_vector, k) top_k_disp = anomaly_detection.get_top_k_displacement(sorted_d1, k) anomaly_detection.get_top_k_performance(top_k_real, top_k_disp, true_anomalies, pred_rrcf, N) real = [] for index, row in sh_vector.iterrows(): if row['anom_count'] > 100: real.append(100) else: real.append(int(row['anom_count'])) fig, (ax1, ax2, ax3) = plt.subplots(nrows=3, sharex=True, sharey=True, figsize=(8, 5)) ax1.plot(real, color='blue', linewidth=0.5) ax1.plot(hash_d64_k16, color='red', linewidth=1) ax1.set_title('SnapSketch', fontweight='bold', fontsize=8) ax1.tick_params(axis='both', labelsize=6) ax2.plot(real, color='blue', linewidth=0.5) ax2.plot(sl_vast_full, color='red', linewidth=1) ax2.set_title('SpotLight', fontweight='bold', fontsize=8) ax2.tick_params(axis='both', labelsize=6) ax3.plot(real, color='blue', linewidth=0.5) ax3.plot(ss_vast_full, color='red', linewidth=1) ax3.set_title('StreamSpot', fontweight='bold', fontsize=8) ax3.tick_params(axis='both', labelsize=6) plt.xlim([0, 1500]) plt.xlabel('Time', fontweight='bold', fontsize=6) plt.ylabel('Anomaly Score', fontweight='bold', fontsize=6) plt.tight_layout() plt.savefig('results/vastplot.pdf') plt.show() def visualize_darpa(): if 1 == 1: anomaly_detection = AnomalyDetection() sketch_file = ( 'sketches/darpa_10min/rdim_64_n_3_k_128p_0.2_l_50p10q5.csv') sh_vector = anomaly_detection.read_sketch(sketch_file) print('Sketch File: ', sketch_file) true_anomalies = np.array(sh_vector['anomaly']) sl_darpa = [0.0, 1.0000000000000004, 1.4200000000000008, 1.620000000000001, 1.8600000000000008, 2.4500000000000015, 2.660000000000001, 2.606666666666668, 2.163333333333334, 3.553333333333335, 4.0166666666666675, 3.8266666666666675, 2.5980000000000016, 2.075, 2.4666666666666677, 2.6790000000000003, 2.6266666666666674, 1.9041666666666677, 2.3625000000000007, 7.323666666666667, 2.3486666666666673, 3.3153333333333337, 3.063134920634921, 2.320262626262627, 5.969333333333335, 4.417166666666666, 6.199833333333332, 7.968666666666665, 3.1812142857142867, 6.162523809523808, 5.600134920634922, 8.386054112554113, 6.047714285714287, 4.551000000000001, 1.7697138972138982, 3.614246031746033, 2.480444444444445, 3.6538547008547004, 3.9801907308377915, 8.834181096681096, 5.261960317460318, 6.4440873015873015, 8.789714285714286, 4.714586219336219, 8.04961821511821, 2.5418132978132983, 7.096460317460318, 7.826078477078476, 2.5750670995671006, 7.68892007992008, 3.289951346039582, 13.420904761904762, 3.4483250670897743, 2.714681762681763, 4.418218118139173, 15.451951465201466, 6.739684550743376, 3.6353293650793663, 3.191541549953315, 4.221762570762571, 2.153847555952819, 3.109875457875458, 3.456950705727022, 2.0999702634677067, 1.7787056255054985, 1.764123928359223, 1.888398291251233, 2.1237179487179496, 2.3554988921579323, 27.04, 1.4998784545456214, 1.8871840829000228, 2.1192714078931822, 2.523507449178502, 2.239671578421579, 2.2529392409483693, 3.0643626177743837, 1.7397439836149518, 3.2541237553342834, 6.007199999999998, 4.979633699633699, 3.022961038961039, 5.0280000000000005, 3.695000000000001, 1.181985185185186, 5.990666666666666, 4.469416666666667, 5.625238095238096, 6.6290714285714305, 5.471904761904761, 8.187222222222223, 6.22639393939394, 5.630380952380951, 3.611518796992482, 3.755980392156863, 4.919714285714287, 5.687798346763989, 8.450095238095239, 13.118333333333334, 10.500526315789475, 5.1608359859095145, 6.445960317460319, 4.468441225441227, 94.62000000000003, 1.849484126984128, 6.652187590187591, 8.298173160173157, 5.727428571428573, 7.41424844720497, 6.326612612612613, 5.260150270781852, 4.67154761904762, 7.080579365079365, 3.9539688184156283, 5.400383394383394, 11.620560606060605, 6.3928064713064705, 7.091154061624651, 4.573704184704185, 6.098405483405483, 8.40033333333333, 8.324523809523805, 5.90677399738653, 9.351690476190479, 9.586746031746031, 4.338500000000001, 11.507795959595956, 6.9307226662226675, 10.670614870509608, 11.878396825396829, 7.195762597052069, 8.516702003878477, 6.877984126984128, 15.88485127629807, 52.858583105272764, 14.575487772812583, 8.832610667626147, 27.922016441891447, 24.288219378700596, 10.230674551488356, 9.96259378212087, 19.37658603966858, 20.71149731984562, 18.11692194476176, 11.720506869377614, 12.556118281296232, 14.40514704971671, 12.711814221023738, 13.611805977546764, 11.695705313453097, 9.0722865139116, 36.89595798259711, 13.599971055244287, 26.120275743359702, 15.813094768258562, 39.845679618163054, 17.78679301417537, 22.838877823016034, 15.62679340936206, 8.283368255660255, 27.842289826596406, 21.127534373749498, 15.221262595608625, 17.381740030622446, 9.146739426050868, 6.846115926499629, 13.071590108441631, 21.923272042996793, 10.317802546379866, 18.425980322620006, 30.234829644481206, 14.531590541059806, 9.573266545302635, 8.987315507648862, 16.427142411584526, 6.38453513760854, 26.95818628296048, 10.9001273295491, 21.382636009368646, 5.6808780355697746, 13.785458700084103, 6.208451253250925, 8.285535876579322, 13.75196263746655, 7.0574740066299375, 12.39048394540935, 24.12781351701881, 14.607803294602528, 5.907120080805687, 9.537022880394684, 28.923416540459883, 18.215603996608586, 26.229191444520392, 26.32272596263386, 26.439771672771684, 21.58314554772714, 11.215849289398824, 5.918494842282637, 8.92842238956368, 8.062072458727261, 27.439653670375037, 10.015162493688404, 29.779922410922403, 22.851694083694085, 9.900029127883176, 6.496280127897179, 31.12283203463203, 4.572369865562637, 5.786272283272283, 5.032613275613277, 17.240070485070483, 21.522490620490622, 25.278413882277693, 21.743482141473194, 14.61895238095238, 12.677347022860179, 8.837439198732305, 15.18930429864253, 7.245868686868688, 4.233264207433517, 7.6578774282402025, 6.6793896789485006, 5.597083333333333, 13.952092231619755, 8.786316017316016, 5.512380952380956, 6.562544733044734, 8.441238095238093, 5.790069675736741, 5.166466193373899, 8.4475087076666, 5.500767930152801, 5.12483543799952, 2.775991635543107, 7.107941169941168, 5.193493470655835, 174.24, 8.673855921855921, 6.023595571095573, 10.485618527671157, 9.90137228268807, 4.409333333333334, 7.986009984639015, 6.630210802269625, 9.920619047619047, 5.533016692801522, 4.587290043290044, 10.208107238392842, 21.54610844710845, 49.65733043769974, 34.89217267877051, 16.117369963369963, 5.2655962046904055, 6.129448051948052, 7.99017165148744, 6.420636392846921, 9.652349697404048, 34.35008129326216, 11.734443974383106, 15.562287938051423, 8.648869408369409, 7.01916688213747, 6.56917771701982, 8.584023549621826, 5.639651986575515, 6.725441919191919, 22.628654168516313, 34.157179059153165, 28.72741929323071, 33.914209571054805, 12.751380342289602, 59.56423990695492, 18.123795261927395, 44.88750797704535, 68.75638313538315, 68.84855960820367, 66.65561532058473, 66.4490010734879, 34.87412711580358, 19.30370496217802, 29.796296196875357, 25.745602983181634, 78.08579198910968, 37.06561628017687, 25.84962146907153, 37.46286858419658, 60.145880896174184, 28.8026926747768, 45.778784564969875, 47.00360624270333, 256.0000000000001, 45.765418059157476, 75.87339742141914, 217.4923333333333, 234.5466666666666, 51.611096143298596, 26.480645471444625, 42.8401704129204, 27.613920094485955, 22.4861896525969, 32.92889432390501, 24.508271045980088, 27.921504458934386, 41.08780572562321, 44.303331464358315, 21.904861023608355, 18.994658952034495, 90.9135948188927, 48.451170071758305, 19.610725088443647, 37.15938147749761, 36.828293539180876, 26.988203625818578, 50.42084675421529, 25.39270676488424, 18.69621855867736, 111.56150768551763, 160.23137468671678, 185.79399999999995, 14.259420460213292, 70.11899432584961, 49.45946264906402, 25.514827977984393, 72.91996915365337, 32.307471982403825, 51.804427351028025, 16.29518208087506, 17.316294907478554, 43.86812487507389, 12.880700724902727, 23.12664894119357, 58.12136223274934, 56.13361634199133, 34.4468547008547, 30.24839194012656, 10.030587700724277, 61.438566137566134, 47.396100807106386, 38.999710879763505, 44.52266685945632, 11.151174297924296, 47.5719480356245, 21.18413364413365, 49.04500356273154, 41.47301824918002, 32.55670766285434, 30.195910524073206, 44.124127381390544, 38.59233230859317, 27.730611357479752, 34.74411389193359, 28.71767957904165, 49.39840476190476, 40.22545850640586, 23.684163225663227, 33.531199134199134, 34.53729659498209, 22.01248595848596, 11.745338458629787, 11.950060425032937, 8.955575773899298, 31.23491965169334, 9.194701528771128, 7.786111214744211, 28.89396745525007, 50.94079412381619, 11.574547174985897, 42.72398173055016, 25.536105230526058, 204.72378787878793, 18.801039543381375, 32.54878533042466, 37.28801171319719, 43.24845238095238, 11.817689806151883, 10.760127602702056, 12.24435586314044, 40.608207749766564, 30.16583633247528, 28.105479831537977, 22.51133900564631, 9.895192528966085, 25.727486017430838, 13.063970993372111, 13.971930547225504, 13.097792429792431, 24.877006418569554, 16.71685317460318, 14.86511111111111, 14.36881007881008, 7.313338102537897, 12.77489438339439, 8.567069697622639, 11.185876971068145, 14.561406151983551, 20.377666666666666, 16.3628883286648, 10.158574296704328, 10.81099677282321, 17.985198646039205, 47.96712306674807, 55.569324188918344, 16.8274467767676, 32.59738213801149, 12.63999184578741, 18.116949928194476, 15.531208607795561, 20.411191059062528, 20.737816107126676, 11.997042372087718, 9.299228086757477, 20.051917924661495, 35.29627484441793, 32.59275738563496, 18.845067176446303, 14.862712375349206, 13.594655351127557, 7.854556982057959, 6.340112949882739, 6.745851567167713, 35.45828157153083, 23.68984778891028, 13.866494697110422, 17.323509087651363, 7.089541919250832, 24.605193639001296, 9.920252427745412, 11.173704926809306, 24.828226930729084, 11.074508891304925, 12.290277469000713, 17.935256229637808, 9.731490470387246, 12.170032960835517, 8.249946614336467, 19.40556474121583, 33.11007454966117, 14.977125397050896, 9.606475982376846, 13.877532562724964, 9.11897674106761, 19.022783928781845, 231.88166666666672, 252.21999999999997, 250.6400000000001, 251.08000000000007, 14.915925316076672, 243.4400000000001, 219.08666666666664, 11.756457822943561, 8.967071892926164, 9.123418816647352, 6.887436335073637, 24.195166753027053, 12.351597325235128, 13.25993005121449, 33.37107629728373, 6.57647696889942, 37.90155886284339, 20.479374785842182, 28.917224224641416, 15.981442890854035, 28.88646547741903, 25.004347948347956, 17.166059612936085, 5.17967965367965, 7.692126984126983, 7.197523632250102, 22.956412698412706, 10.573655844155844, 19.061777777777777, 14.007752348800624, 17.899779331779328, 14.213457070707072, 6.6261707410236825, 16.439956058434323, 11.643660054122122, 10.233145824330942, 9.004788270552977, 13.122549599805968, 8.064404437846893, 5.183224553224552, 8.45267434715822, 4.712257575757575, 6.028017536483403, 8.862937560478738, 5.508625159154571, 10.752853107344633, 9.942634725096026, 2.4791705676620936, 7.2607061923583665, 7.556027733923845, 20.150589043747587, 14.890556077199296, 10.478825356887516, 14.425177738927744, 17.585712121212122, 6.615474053976685, 19.04538993712381, 20.077621123321123, 25.90031818181819, 10.467523096022784, 190.11889822595705, 14.156410714285714, 10.45700432900433, 22.359520923520922, 17.225427664588995, 9.271538265438263, 15.295802780552776, 20.73142701581539, 11.86680782639681, 7.503165846543319, 13.18277736211779, 11.000525530025529, 7.773113730567871, 12.139197390026789, 3.8862393162393167, 5.39544461887319, 6.269925817216839, 4.327121794871796, 5.99380635704165, 5.070264814895251, 3.4309266409266423, 6.864625740160223, 6.93712601616936, 3.040166666666668, 8.388347278041653, 6.406598683891488, 3.3450517241379307, 6.91429093129093, 6.93480130980131, 4.171000000000001, 8.9450771096986, 29.110306369987917, 43.72591595931302, 111.7928724082935, 79.85671435053148, 110.74019321594322, 60.209269102308696, 88.48917355866017, 75.42280436230435, 62.28854612763098, 94.14734997389954, 61.51235318963802, 65.75828907882624, 53.973993251556394, 18.813522818655482, 66.28811877741428, 51.20159017214947, 46.786345268271006, 80.62459858389451, 76.02560145154185, 21.154291399211402, 86.33210830019655, 18.01776968765887, 40.528410248508685, 23.469283139486244, 79.27143470926833, 99.13234715284713, 16.369656907146297, 54.93751904957787, 38.98522029673113, 14.738483666972295, 95.21723905723904, 84.09281428571428, 23.42043289903588, 107.75021212121212, 33.803829021551564, 27.048853504092445, 114.44805555555556, 96.74256997356427, 38.02342926396564, 72.15724647136487, 52.51811760648968, 84.74594380370229, 34.948731891647455, 78.21082332308491, 15.357621461846476, 31.870309769499205, 28.175474900730578, 45.53038031302453, 51.16638156288157, 40.32344079968325, 36.017937011045376, 70.47261035321038, 62.35651626583435, 36.29733821470266, 15.04300261523374, 18.138884147655723, 33.68866407459053, 14.412407826150309, 15.282315831616073, 11.320003048470932, 11.82944183037174, 34.70633660122775, 8.532608323920092, 28.190830292658934, 19.43359308867978, 10.609073248240346, 18.53894442159148, 6.891641025641024, 18.16888622196517, 6.337180935922315, 17.234422258297258, 8.903049190889396, 8.457635870139622, 13.995785976441859, 22.00616017316017, 13.128644467853176, 12.005681045212526, 11.66190885040885, 8.858947496947497, 7.101690845386497, 21.117046641267233, 15.610370395997446, 10.99275240853917, 7.851375308901628, 23.41575885369012, 7.909174147250874, 6.218553111639318, 5.1874809152200445, 5.524517268985459, 10.351315789473684, 5.994930735930735, 8.601683938106135, 4.1046783706489585, 4.372190476190477, 14.452104542516304, 9.079083394675498, 10.998008055350372, 12.792810800310802, 22.805550671550684, 11.923546345879064, 8.911460492535921, 7.196103896103897, 158.6919696969697, 6.45527922077922, 6.287724716202271, 5.36442930741143, 8.585392253816517, 7.082503969759717, 3.9686774891774896, 5.796569976922916, 6.8838412698412705, 5.171501221001222, 7.203989745452569, 4.423616433587496, 5.524345519977098, 7.524333333333332, 5.990616738816737, 5.507054481466247, 6.333813513284103, 10.996441542203925, 5.6163736463736464, 5.120564781254078, 7.361165891165891, 6.721808080808082, 11.050766844266843, 6.050502290107555, 7.611673542144128, 6.4829684350736985, 9.282055555555555, 8.944864756158873, 8.649997557997557, 10.650099694423222, 7.744477370852911, 63.12181224898252, 27.474283792033287, 33.55237243286843, 45.95146159214024, 33.05257731817546, 114.72760807448485, 55.15915289163346, 25.685725570888255, 27.89554380375332, 32.33507761181242, 38.671361970193544, 42.85233940960225, 20.419355629672708, 35.81692369293833, 35.79624871414686, 18.13937556133584, 20.09381451287761, 12.896178332945368, 36.486976964727724, 37.49788894765365, 162.68834593837533, 12.45897715671828, 30.000273203957622, 15.609543464088292, 39.26531127761127, 18.028882178891717, 27.867956026239032, 20.99650399203248, 27.716657902236395, 30.141408922607802, 71.80829292929289, 16.44325065240057, 33.21517973294149, 12.508085430184886, 18.54703855765782, 10.59585138335189, 250.5200000000001, 23.666325985874312, 22.416518988540396, 41.60743682058681, 19.675083298436316, 23.772514832875316, 10.194122033185494, 18.776676244786668, 47.62400269259311, 18.252807390841113, 24.913350657400102, 13.318285935372797, 28.507110274423273, 39.123706206947595, 24.562357192456084, 20.67178882332953, 14.078844261640905, 15.909051792810462, 16.292526734699116, 23.765329727223673, 28.966229178990943, 17.108782970228194, 32.67459987052851, 17.351643348999, 29.121712259111195, 38.96805871274114, 27.686631285818113, 34.22033000822707, 9.381277640982923, 12.124605674687064, 15.224841310736048, 15.094291115420525, 12.124318764603714, 16.373483965393994, 32.522003108003105, 15.716379132265791, 12.266782378991303, 15.310450466200466, 9.529194449218648, 6.402413906559439, 6.1109996171751595, 9.263782505336852, 15.982723221176109, 8.670482097795565, 14.615797959925832, 5.772154410369651, 17.282689942446016, 15.639711935123698, 11.811944497531453, 7.20306615069331, 16.378459234241213, 26.69823532023533, 19.03183694083694, 7.202315992788007, 25.563247540041655, 28.165618159618152, 24.064854134589424, 13.413784682740722, 7.883887358811763, 18.051896901344268, 8.08764250072114, 8.72216583124478, 17.59643599187362, 16.712514221158962, 10.342004802711411, 8.62999381972504, 16.11061122211122, 17.424565130947478, 7.017944912923536, 11.543808611678177, 57.089363985635956, 36.96026713861723, 35.63886074155193, 13.611646312834594, 240.9899999999999, 8.887222342311096, 12.541217985025344, 12.24514227875884, 8.845233261163916, 10.190774457972001, 10.434057438493593, 13.204520430932053, 12.599280560775263, 17.93686290204778, 9.482841101218604, 8.924796733177818, 23.88408301203154, 19.65508189481573, 14.159095791514883, 18.999508569516518, 11.763818765813804, 26.477372426632908, 23.242178889467635, 54.13296071546089, 67.63379567457966, 52.701434232434224, 46.47126798303848, 64.71946942599885, 28.70470992009011, 38.50378204716598, 33.11695995495193, 11.772639328684566, 18.390967210946275, 16.479668850233384, 12.383137923080426, 12.926354091526695, 6.191814801040324, 17.992945878819448, 25.64966950727224, 23.38102163870335, 19.334580776400575, 11.450736169750666, 10.77296489067011, 12.404250567744494, 14.385363836707645, 31.26845829364518, 12.945658030525747, 13.21938605970696, 16.79575154710321, 18.466114861275297, 9.73461389984552, 29.256409245659768, 14.388686145838262, 13.878367082443175, 17.785061313278057, 22.76712259146083, 23.26950981612725, 19.172274250022156, 16.144825623220044, 28.498014011787937, 28.481873057670928, 31.040709590927435, 24.42865331469357, 27.630342598370515, 21.47040584415585, 17.258242035412703, 7.479677970963271, 13.002381891894018, 10.06353927325896, 30.460180708180722, 15.733849368972836, 14.521602318539655, 127.7264592760181, 67.37804381858845, 20.3598954248366, 19.679715727890212, 23.840593864805943, 16.188140382977693, 27.84820977331847, 10.51881406111533, 13.80736587127081, 4.79356200764165, 9.968798013326616, 6.1155441780441775, 6.037872143060122, 6.101244631185808, 5.946574390521757, 9.87301958161169, 11.153905246714068, 7.003413159939477, 7.775180799755799, 154.34385413245758, 7.998084335255388, 8.78329841838987, 4.763890886890887, 5.6696838118022335, 7.306309523809524, 7.203751082251083, 6.849120681605974, 8.968952380952379, 4.236905920922086, 8.378583805083805, 174.37911111111111, 6.930985058800848, 8.058793636188373, 7.71119011707247, 4.320030212462205, 3.318168456065009, 4.47753154849466, 6.954563642240112, 4.781507995925644, 7.028025030525031, 5.625716082392553, 7.937942287244918, 5.25746275946276, 9.006604434567992, 4.0362966305299075, 4.519234982638183, 7.67986404416839, 9.299982966309056, 4.496453432141983, 9.045960439563187, 10.07024156795585, 6.657494040956464, 7.674141971753734, 7.5601091149103326, 5.400342043920991, 5.612054663454114, 4.685338297125242, 7.018114076543423, 6.4317215007215, 12.04717857142857, 65.2564754901961, 47.57563861138863, 54.170948962148955, 25.158312099573035, 11.786538102541943, 12.297619222664009, 145.61323020117138, 7.3243349308793295, 18.748949848626317, 11.673275026369375, 10.051728022077945, 11.413848055105284, 6.97033417253616, 6.951179973152276, 7.310848602557263, 20.6258259233521, 21.23166816784185, 16.894346141209414, 10.685973158787927, 13.116974333484828, 16.14988081643753, 15.009285693677327, 5.86796849735895, 7.298271282866242, 29.694090061183854, 9.252867190471523, 15.815498407845459, 5.248800350634451, 15.386443123553969, 6.593052648074113, 5.924541358775022, 13.198962656796748, 7.09891718310098, 6.258356317945546, 14.786132836999483, 6.634399532985791, 15.587228590280834, 5.1554780452209545, 6.647110997406465, 16.278856417358007, 10.043795636082406, 9.871026783395306, 12.791951417345247, 10.301744460060101, 12.942346980962288, 53.012252487364705, 16.95789814529067, 89.26340905190906, 7.544496735987636, 13.999147289827686, 85.7027992982195, 54.931379290368525, 25.19438269421681, 27.43006695955061, 7.5115820571107905, 44.7806746560076, 17.275173684790108, 23.054579619557817, 37.75922832722833, 9.839630859652473, 16.934517483471023, 23.53676558996559, 7.670305462511345, 15.414912650244489, 10.936148030918094, 17.309181757997607, 15.992502416959736, 25.562446093397487, 14.08057073253544, 23.822601731601733, 141.0358403578403, 11.531176431869929, 14.162926295926297, 3.3081521517697996, 12.986149229232545, 3.9386443441410672, 11.888666454460571, 7.739673114981779, 5.9408126318126335, 14.006225601883495, 3.403572716555476, 3.38627147320034, 3.22352017719123, 4.074230722342793, 10.294681457431455, 4.174608252858253, 3.1072383040935674, 2.3257830261136716, 10.436968580439173, 8.090781763754118, 7.444439603451508, 16.852621745493067, 25.915714962299692, 8.34042751771976, 13.603175277345759, 8.277049293640442, 10.571624206253517, 12.631949456975773, 3.79588888888889, 4.077516339869282, 4.996506571859513, 4.258990052431229, 4.5972868817342505, 3.0576352583586632, 4.535858940649492, 3.210700778775765, 5.745734530175707, 8.397895180147772, 4.717836219336219, 4.490992016242353, 7.667530011265538, 2.9709682539682545, 4.35140876959298, 4.745807724546106, 4.687734739987229, 6.304261373129793, 4.435376162039447, 4.095651233871049, 5.4410939064375565, 5.36324050673808, 4.737084123770967, 9.23438888888889, 13.107914214651949, 11.105187560920369, 13.336247347767474, 30.104619788879855, 83.87077397625718, 81.20823628037574, 79.35238367994864, 89.77634594315427, 113.21479820424675, 72.5103487741933, 96.62027651515152, 90.23040875790875, 93.29369435154214, 89.7344322344322, 85.73326408662271, 84.82433073593073, 78.41589976689977, 48.42747973853712, 49.736491100297556, 76.73436180124223, 99.49315126050419, 67.71181659298539, 66.75177404479578, 55.806834859584846, 63.95115419540674, 94.02797396600278, 85.20255661881977, 48.38483610833612, 48.56257647254708, 64.7065273923523, 66.92286570183626, 112.84414492753623, 121.1408694638695, 47.298463724114136, 51.01297152804129, 29.408901496417656, 56.95806528559158, 70.25029820465129, 59.15171640286613, 88.56380158730161, 79.3584482850483, 62.63867996665778, 56.74702393684747, 75.23016666666668, 36.800279317439255, 58.71865445665446, 49.62617172113657, 58.101805187731664, 37.0013891582274, 53.484463644878225, 76.57571475235291, 66.28678068970754, 76.72343499516477, 58.89532063797282, 56.43946354068636, 55.728109968554676, 35.32652597402597, 62.27199353894481, 44.67383741331133, 55.091881634705175, 51.14136328051035, 59.25529946719948, 51.26011835522201, 32.62970907719582, 34.66946901986902, 75.33435858585858, 48.460432567432555, 10.493692957042958, 72.62858496732028, 46.57846172346173, 47.226715083442635, 39.68308357383357, 75.78681355572533, 62.96989177489177, 47.02605315962864, 75.75947619047622, 74.7656953086996, 59.95492868242868, 39.700184578189834, 60.94585353535354, 47.22959188034189, 53.410501675154116, 63.16333837578918, 44.540760298937386, 44.46919075135392, 47.00045709845711, 51.78621016184251, 26.529230619954753, 55.977142857142866, 59.34356782106782, 61.1691792929293, 44.377713064713056, 58.687858467803714, 38.63292495439979, 52.23369214119216, 60.65892982526342, 34.84249555752275, 58.452163326869226, 56.985016692120126, 41.62634537684538, 40.85975722664433, 65.74328776778776, 48.73435775423407, 52.95062426192733, 25.81150406729445, 39.79419153069152, 49.83476371657019, 43.18010103703174, 51.32846366435498, 42.031444406900285, 57.57648051948051, 45.33148129648129, 44.67683871329909, 33.16088934594817, 38.91234744667098, 48.3921398090214, 36.708893835209615, 41.8645989729225, 39.18689547280676, 35.84412348762349, 37.09969719169719, 25.721697178413216, 37.85942827356681, 34.87763252270605, 37.83895384027737, 37.56585553335553, 26.457909701409704, 22.78355368934471, 32.75492051306182, 29.999366082099506, 29.93116103607435, 47.24407142857142, 30.154439866646772, 26.589568546950133, 23.59526598547651, 49.20916456582633, 21.08763888888889, 34.72143903865387, 37.165773617187405, 28.183664630089552, 31.66283159165396, 71.23513492063493, 19.414290613669092, 25.107425925017786, 23.060075520970255, 28.642792878441153, 22.981016856478398, 23.402590351796807, 25.26766973658151, 31.716680672268907, 20.894511581555694, 21.303514213260524, 23.082222967381725, 17.344890640175322, 25.80493015334353, 18.33925516995082, 51.943547154081536, 64.14254194736928, 33.723571942677204, 5.399108876786296, 3.980147186147187, 5.4719312169312175, 15.471047179784984, 6.697329004329005, 3.8364163059163063, 4.978984612557318, 14.4706075036075, 18.974018913662878, 21.547986067196035, 17.404079596971957, 26.291296092796095, 24.95849850649643, 12.436152675584513, 11.073192705195057, 8.292873508010727, 13.2181435670679, 15.105852882347177, 15.426048535380504, 19.698545882480097, 19.295572382983377, 25.509699226937148, 10.248395431177869, 17.285284027580122, 12.27407818357376, 11.805642651849098, 10.323235316371028, 14.633317099333905, 18.19486527361527, 18.90693191048717, 26.420127350273262, 12.291542451710763, 19.1678121692968, 24.297645258250522, 9.714208126039063, 27.71489566546855, 9.682134736739101, 10.995160533910534, 10.475533778157956, 12.891965181876945, 9.746281623781623, 17.95920389612404, 14.891238095238096, 7.444642526260476, 10.513693330358093, 17.818857142857137, 9.434517316017315, 15.796762077294682, 25.351380952380957, 18.445815295815297, 16.647891152057813, 18.517083916083912, 4.204686257192652, 7.095984487734486, 7.971956971630245, 4.220255411255412, 17.876488687782807, 8.942502800622176, 6.676834249084248, 13.730334776334779, 10.234182853378508, 6.737056267605802, 8.954726107226106, 12.465363581910747, 7.497181615769849, 9.382777777777775, 6.4275333555333525, 4.314549783549785, 2.4680000000000013, 6.320599567099567, 6.660935546722781, 5.09759249084249, 7.918547168855487, 18.81112121212121, 7.168442141715725, 23.73347186147186, 9.429657598440206, 8.583438744262274, 5.285904761904762, 5.197116466866465, 125.85711111111108, 5.168373011046923, 3.786338603425561, 2.752855701036553, 3.0125246798119143, 6.895927990537466, 3.170558867846103, 7.720632756132757, 7.231617243867244, 2.836663596450832, 4.186298924479777, 6.144302099334356, 3.715598925170506, 7.467620629370631, 3.732775410413342, 3.2378542568542574, 4.181693861693862, 4.081260536398467, 3.770039682539683, 6.412923576423576, 6.476769841269842, 4.6841115273615275, 4.04998733454667, 3.466146627881922, 4.142351421789128, 12.09523772609819, 4.517017316017316, 2.508903096903098, 7.905286928104575, 31.620781635117687, 30.26401945440181, 30.72861456125573, 21.361970800867738, 23.26571602245364, 33.2886742146742, 23.114760867152174, 33.58511624514893, 19.74308720825642, 16.76272969187675, 25.87570234607154, 27.715251771683988, 20.82286292191608, 30.062838044933123, 28.450573717948714, 57.88563828184976, 21.314673228646576, 24.583627766259248, 32.883871199835596, 20.95164587944389, 19.307515739604813, 21.206248443476976, 21.998016630426527, 15.875301827784293, 24.137543643712608, 23.963885059145998, 24.795025031719312, 20.041420847704426, 30.081039901737668, 34.241785813099945, 21.382386508099746, 20.465076447025066, 42.6516899278882, 20.81124059167002, 20.013458966604766, 25.00583265865485, 23.353260612658758, 20.79274891022589, 32.54570942035261, 17.373984502052565, 24.673138499181974, 57.823472736076184, 12.665419839891904, 21.158723144850548, 20.709480987810142, 24.257585463863595, 201.48691269841282, 27.649108946608944, 20.516375595565194, 24.593939610389604, 33.14464893439893, 47.41507092907094, 17.772147325481534, 18.00588924666491, 14.74544646464406, 28.52336522717049, 34.24374147519146, 24.359223704400165, 17.309152150091343, 46.247691524677585, 28.277490801547984, 41.22883774367396, 40.18232876905704, 22.55259288393763, 20.19985994560995, 28.939996605132052, 22.883624721967436, 17.66046468465523, 29.28586695450233, 21.810593738235465, 34.94888131729575, 23.51128624903536, 17.52092476165494, 28.862658520040938, 19.15658534619539, 27.18896686156981, 13.485741974258449, 9.17479583065174, 12.541899444318124, 18.820996498149015, 13.068440292321212, 9.66048885507698, 8.957134660565659, 17.59404812859307, 12.516326842722055, 15.466106387129983, 9.654072604174713, 12.775403323390696, 8.441826555106756, 18.47132865113902, 12.73512357826543, 11.541960117951653, 11.473502269972451, 18.08643310209196, 22.43331623801036, 9.656425881784374, 13.56849729365635, 12.388588437264099, 12.534826012166391, 20.489001448006107, 20.0711799523188, 25.066041531067917, 10.321813465064642, 9.734024373226209, 5.964475213779522, 12.917162627861696, 11.54162519087786, 12.7512892556047, 5.810309945664639, 13.178496253746257, 8.294672490650047, 9.556702802013948, 14.881141745367449, 8.655713352007472, 12.619201687201686, 14.631356113831528, 14.39027144750674, 9.098933501683504, 7.016303172782378, 16.971898074148072, 16.722634920634917, 13.247672893680132, 86.33215873015874, 101.03894444444444, 103.5290714285714, 70.98661904761904, 5.379225629791894, 21.04441881548403, 15.79048011442749, 4.473923674364851, 83.76283127058127, 14.154985958485959, 5.078162951507283, 12.490193362193361, 6.701462481962481, 3.402948051948053, 6.896249182190356, 12.161331843595, 2.4165213032581465, 9.313732586233158, 10.306975468975462, 2.2858412698412707, 8.98158371693666, 8.431696995986472, 18.294001307900235, 15.548, 12.026425027586793, 8.422305555555553, 5.013378139919936, 5.293322193073423, 4.160107744107746, 7.618853387373309, 141.92906349206345, 4.930438339438338, 11.728678359652047, 15.699552187925072, 4.477749799661564, 9.659375252908179, 12.537577181596266, 5.48644231911879, 11.784211090496804, 4.985478637671621, 4.430986445917634, 11.486008238749204, 8.685319199177258, 4.019180063794668, 7.220752275502276, 13.762455553735734, 9.367694444444446, 7.880623937311668, 7.223747715030068, 1.1467184466019424, 16.19173791527522, 43.012240106951865, 47.383514332328396, 29.040192607138813, 46.46880586350768, 27.09453042581752, 42.70342486423146, 54.96290675990675, 42.05454621095752, 52.09415155991115, 46.480828848687544, 36.02166553178782, 37.506361920855966, 59.86695695611579, 46.15716788766789, 42.76431368341804, 38.40729780703108, 29.88016286817758, 40.36644280062358, 38.17887185621397, 40.61756992337166, 34.61852823565324, 27.26814435564436, 25.28587917429047, 49.876424444704064, 23.557834099509023, 43.95169215832971, 32.78447840755736, 66.45369885490852, 66.1960253456221, 39.61424932183399, 30.968039853335522, 9.5531437546301, 32.769420265214386, 45.48128354978355, 26.274608033728722, 28.84434849234848, 24.614850162908986, 20.801848155929036, 39.42287590187591, 27.430370400509325, 31.92621545121546, 46.11281315360738, 30.020816447707166, 21.975599415739172, 21.528639342088063, 31.360610336976904, 25.458193471698987, 27.092944099812186, 27.37129953040734, 34.255113275613276, 26.164917701863352, 24.08863508581531, 31.537085410887958, 30.31225933350276, 37.511783466533466, 27.636730411401466, 23.762038023895613, 29.99491693861693, 49.94961262626262, 32.03407215007215, 39.83446029460737, 29.405218999844248, 26.028093400063995, 37.3538836098542, 25.71649677239383, 65.46873015873017, 31.471634750354557, 32.97822996447996, 33.395580811345525, 9.787331890331892, 38.290896205244024, 26.063148384295445, 36.72728715728715, 16.98425950511477, 33.04600602665309, 21.45814029090747, 34.16297494727494, 30.62399808035102, 36.612081049218986, 37.50437506937507, 49.48294769180312, 34.47966606553435, 23.933602064602063, 31.69999428349429, 23.16838261179825, 19.908758817333187, 19.611893467643473, 20.29086706986299, 24.615571751419036, 27.005563112326268, 32.44740569561157, 38.01520961494647, 25.60732380038262, 27.92783658764696, 26.32038111760708, 23.386040049019574, 31.74789599878377, 20.31403219819396, 19.641644490227755, 29.25361283859828, 18.78109224358933, 20.242747803108482, 94.37061789838513, 21.92681286491286, 26.163925436881957, 30.598761682761683, 26.540729903007882, 28.635942102015623, 22.261664485840956, 26.152628091722516, 24.495113783800736, 19.310801987461655, 33.64128754578755, 24.392768035507157, 17.700211643018143, 35.12143374023637, 29.20232280584912, 26.906015890240024, 22.63982787010736, 43.35335536294826, 24.00659973798131, 16.632875583298215, 24.203931348727174, 38.535448370343104, 21.62976486220412, 21.274779864757072, 24.124983458195416, 25.46302148940384, 129.42658585858587, 33.84984446173322, 29.03890037837978, 254.66000000000008, 247.758, 247.76, 254.64000000000007, 231.38000000000005, 244.0133333333334, 17.251110163447642, 21.230596660585316, 73.08525532800532, 38.868570937516594, 22.60561031109414, 200.4112967032967, 32.493682478632486, 24.992143106467278, 26.208069503824916, 13.238566626012444, 26.460503586282996, 22.656516756164038, 36.67948723498724, 28.919488508223797, 18.579515034580787, 17.892794735658864, 30.54139198965287, 30.189167776152313, 21.971318533805384, 23.74420573327638, 19.78026849327568, 16.47058663011918, 24.736762684683736, 21.246527679836504, 23.973217618982314, 13.241479107725658, 20.437864909571566, 23.705191657376442, 23.820107911057406, 18.310933083256618, 30.649220892557736, 16.431876512359327, 23.411983151127448, 44.27308703577124, 30.746792558395505, 19.097788856729494, 22.928768600680364, 18.14233662143956, 16.584760845194925, 20.82039743675657, 16.078383714835887, 22.933882093740454, 32.03494445114568, 23.660402181152183, 18.644091821974644, 39.00311604251156, 17.328139623408358, 18.94904344067189, 12.93559401811019, 24.600620491701335, 23.16060663193016, 12.867837752306169, 15.719621325090461, 15.04566978646854, 29.314373675018892, 14.434184776161722, 15.314974449818445, 19.417324732285255, 14.82518250896613, 14.942085954061794, 21.041320924105136, 18.29682857863932, 19.31267024905431, 20.309164138683588, 11.30997660558653, 21.781030878614445, 235.78461538461542, 251.04000000000002, 209.71, 58.07369473173885, 243.03428571428572, 182.31666666666678, 37.786093795689624, 22.881367518210894, 44.784868838763565, 17.79309132595635, 13.275164583841994, 14.380026058482581, 26.154236378087003, 18.1817489353465, 16.89697816299478, 14.45956382383364, 22.935359947242297, 23.581069358178055, 18.27091620213292, 27.93252991452992, 15.567446332099276, 16.48366038683427, 18.447768030662147, 16.568370490620488, 14.375125943770676, 11.477321479174421, 18.775206547206547, 10.90608544590085, 11.434060077177726, 15.899811231252407, 12.188825006886868, 16.81376767676768, 12.323645361947992, 30.86890975690976, 10.148750890716538, 11.523688880835936, 12.545946302722617, 10.05844699976666, 12.849368620879885, 12.66777966389189, 15.029747474747479, 11.080185405686281, 14.50871579745194, 16.18611027861028, 14.436747365379718, 11.768849364687599, 101.5819998097141, 9.773641735674255, 37.99800745136091, 13.079763205250202, 10.845365782909901, 12.617916064893365, 9.418298370257196, 20.020336681931305, 8.371363844782072, 10.388915858811524, 9.392135775988715, 13.102388213180008, 7.342274929336791, 7.99721671743775, 12.27055832130832, 12.3205860704483, 10.617496575071705, 9.507700687655808, 10.748986711946463, 2.856221466364324, 12.666473001139243, 11.635196916630019, 11.105693231841572, 10.70034620008859, 11.478165943197403, 9.642063480063479, 7.815358151564153, 10.978944246426982, 34.45895651319784, 15.288327415676502, 12.876257474003113, 10.599754407244168, 13.43362373012862, 11.880469900951258, 12.068303659360938, 11.192493659186272, 11.356101756964659, 14.070156904420795, 15.307904374391832, 10.13223949011121, 10.612546917026828, 11.217950959684739, 14.60472148460059, 41.039306928432765, 14.83358585798446, 14.948764639508434, 17.878848601003398, 11.37139088250289, 14.253943707863565, 12.40768541167344, 10.614103747130065, 9.101826839498377, 9.828672216858937, 13.342338479762638, 11.733065421992194, 5.74624045691472, 6.511400258103802, 10.809303604996078, 11.818839239271162, 10.516847240994297, 18.54030699280827, 16.67214109185162, 9.876123301692015, 11.454911092716102, 14.941738888888892, 9.272646826412002, 23.31140908156884, 11.720802118933701, 11.440335052615833, 9.09592597864862, 10.922736854321364, 25.757384345904175, 4.7380373602432435, 10.682787303140866, 10.912596435550714, 14.783997602484073, 9.443663742612873, 12.059086694895523, 12.596542732084853, 12.35239990505972, 22.605029060202643, 14.01970979431122, 3.21721794871795, 9.43678305959873, 11.36497913904694, 9.797993763135503, 9.954137568357865, 10.119131871674004, 43.65614916570885, 10.202283143327262, 49.818861925550216, 17.03336299317733, 9.287211784898195, 17.14164463967406, 10.14423774864726, 26.93103981606628, 32.37973131587904, 10.941549777908138, 11.562043385750817, 10.515171991437162, 12.107195292667427, 11.26033560581074, 8.528767109373952, 9.347270111975993, 11.416326892044257, 9.796587958744897, 6.873981619539124, 10.017093265582526, 8.853800581855417, 10.40758701927587, 9.857082473082473, 9.953800049129018, 9.985919796148126, 15.756614003484312, 12.542389728803176, 9.566772587151707, 10.774990212352176, 28.931862937715888, 6.3717815465216905, 43.56134271284271, 12.286473252431687, 10.079452065668773, 182.69730158730158, 9.090435315561631, 6.471923731169013, 8.887365284058832, 25.908869303806235, 6.4047559250175325, 12.337871886283649, 7.500911669127485, 11.26294277038751, 15.430986497162966, 8.450042430352736, 11.439436125965539, 9.656264720021957, 8.492132841691296, 9.019976190476193, 11.035514071669644, 10.86929598388042, 10.421832791506166, 9.784658722498616, 10.674730182022236, 10.565032702804437, 11.457007486631019, 10.294602232712757, 9.25964329977591, 11.442320088856567, 9.29813425901584, 12.687396456158224, 10.534930398625445, 9.183283699947657, 10.854637426900586, 9.745141404471715, 8.265275125537256, 10.931815201069753, 9.077421001687389, 10.289357964119752, 15.572625196313746, 11.538889266597314, 11.276146032089372, 25.699166240242846, 8.800488451150141, 12.135609140704492, 10.63965869055983, 8.445843358855345, 11.142225833136218, 11.401840310239566, 9.360430500458545, 11.913815730490894, 14.390670656761234, 6.868276436193239, 8.824210985216071, 20.983249611075962, 9.808161729398464, 8.161875658225503, 10.539999835628993, 12.89626239931782, 15.3036329980587, 13.661688307694082, 9.891261790384936, 10.484185888675695, 10.440366458436522, 89.54665294604621, 13.733012048953748, 7.734964557605241, 8.506606884059769, 10.963808453041215, 24.43161269690701, 35.84828228654745, 11.246661289919022, 33.665371641587505, 12.656206161674582, 12.751356061025046, 9.973704751635497, 9.395958387678538, 23.307617569938476, 9.799231724874781, 8.607621720013144, 12.839838739300957, 8.36941796703054, 11.867530050725165, 10.125878740490707, 11.377564554322525, 9.156573761364088, 10.794380351722412, 9.644205595276501, 15.32016765594451, 17.86577262800173, 9.470174840253788, 9.022596189636745, 25.56268748461111, 24.529668545244842, 10.924096714370444, 38.161828236337925, 9.349205724687515, 11.232016670464034, 9.241528172186484, 9.420166285796906, 8.628389171901068, 9.406817561861173, 9.193271102064456, 13.317450943680988, 6.978647084657312, 11.456508144940068, 9.64371315308684, 11.321983707263557, 30.54828376604239, 6.540480345027761, 5.755450584581658, 10.088532089104685, 5.542688271595733, 10.784139714636929, 11.25900492229611, 10.267989436611705, 11.81962584672267, 6.612118607595695, 12.952953237079397, 11.068643311639706, 31.50847379139608, 42.95126095668384, 9.727563501777697, 10.636348556814028, 9.617893358942103, 8.911481341428967, 13.580366054598667, 8.04361814373396, 9.939612613127588, 23.97970731065697, 12.917404368578286, 10.208660815792394, 11.512295681946231, 25.92539149094799, 11.238765575555052, 10.011948051948048, 109.18756483516484, 11.33220326831534, 11.086274680126786, 12.224112188053331, 11.704824313872642, 9.350046072292674, 11.094293981164288, 10.90872857917871, 9.576999856457384, 8.189930269206496, 30.67665860874533, 29.48729885886387, 7.347341675610251, 12.547833270427912, 8.569910533910532, 10.471304024080494, 11.344532148247152, 8.639428466599025, 14.173799928571595, 12.801544298796289, 10.669867357345147, 9.26502652241217, 13.027039475236707, 9.53790065425815, 9.056663642623983, 15.316227089335788, 2.0849247436866487, 5.503220733289698, 29.26741035985986, 24.76876793772247, 18.617943705123555, 17.282968412420235, 11.356300809059428, 16.13628349911183, 71.42385635782409, 9.465129524582737, 22.30941315610193, 18.024075027638204, 10.889514449658973, 12.237643924816304, 10.814661238550611, 16.602563859887386, 11.48212265447794, 7.472644077836821, 250.8600000000001, 249.9, 10.424746940546555, 241.2157142857143, 245.65000000000006, 240.27960784313728, 36.48403704404285, 12.062670133947654, 15.556019905875731, 26.20100284931176, 12.263198871577027, 15.54902265125199, 16.51428803833769, 14.61052770145435, 13.008079752749408, 13.676456511664401, 12.751422970780979, 11.233325811669697, 9.036198098520588, 8.611919951261577, 27.59543251452678, 10.872632420241507, 15.151637532569426, 13.765441195061767, 10.335638754385327, 11.580739329312491, 10.160666261432802, 19.042795036601525, 10.600700201793755, 10.584145628738979, 16.573020023731303, 24.582583566286196, 11.601864193756589, 10.222437510087666, 14.931409802516322, 11.072802535184115, 23.610951786656656, 24.280984139171984, 24.890282925651356, 13.193510289362155, 10.879649073860286, 22.168808977403238, 20.419197016123363, 9.942207035117445, 8.420024268311234, 14.605960380156876, 14.454535564911154, 10.68747338201692, 35.69474634527984, 21.93926446064389, 10.1448069540688, 8.75837685278635, 9.432856245120647, 11.352361619008708, 10.484317934138826, 11.119634209911887, 4.6338208957242575, 13.857949064437454, 11.257179530909408, 14.798186948761389, 10.891657404471221, 9.089522936615518, 11.53762952253616, 8.230168249774184, 10.121511387859245, 8.882061599781293, 10.182605128796768, 10.34045363861026, 13.234324561403504, 7.4538062502998566, 11.102980399516438, 11.656185369085362, 10.046861940342753, 29.976529449363564, 11.526871159423463, 8.655423943376881, 9.162415679095883, 18.330235808968013, 11.912689052250235, 14.103134803105393, 13.505194765332432, 12.513067381501253, 10.680077152259507, 43.66533538030597, 9.760920233142183, 22.499459244869023, 8.392823400737274, 10.112024588449044, 11.305325877460591, 6.760835472233305, 2.0139669738863293, 10.56114268164004, 11.21355080545081, 12.270818502524008, 10.186877316679276, 13.246732792611214, 10.584021836109674, 19.23217114553759, 18.103716312617554, 17.08413377775031, 10.296932141287439, 12.61438453408191, 13.039122290950296, 10.794905175321032, 43.45454502874176, 10.091117291902421, 14.718132984709714, 11.991397787455059, 11.482783208020049, 10.677683000043883, 27.579034748091626, 11.440398560560096, 6.779626468769327, 10.261487427630849, 4.219851445020111, 12.3971874870835, 14.883629273155377, 23.8693616597153, 14.59842753533353, 14.875494128006169, 13.54847542376712, 34.47888607890367, 28.24938481101758, 9.666832032968836, 21.259089990903288, 12.41908177297226, 19.94996860934567, 34.91760928175156, 64.43456694042018, 12.904148904056871, 21.4251358014948, 7.994142655421329, 24.839502122409506, 14.749333391637915, 12.037808106070758, 14.842868348806082, 8.35728969696858, 250.29999999999995, 245.80000000000004, 21.64167901471954, 243.20000000000002, 225.47999999999996, 29.747838060255894, 12.57936769809068, 20.927786312680933, 11.127396511699757, 14.891687292949475, 172.76333333333338, 249.82, 247.22000000000003, 160.33666666666667, 242.23999999999995, 198.35666666666668, 199.7761538461539, 29.47529976251882, 26.115533530933227, 25.025547036606348, 17.357651631323865, 18.55534445326763, 15.302563127019777, 11.715753645744616, 7.992465726558191, 9.709731982739063, 7.867370716105815, 29.769958835523678, 14.595463602250486, 44.853014090689385, 36.484546176331804, 22.35490514248636, 13.850995835590805, 10.192219687589652, 6.617814177188525, 11.938405370762249, 6.820361566778658, 173.63680952380952, 11.626954713792692, 6.707591162460728, 7.064193674319186, 13.60547107735152, 6.669282880968479, 38.876782873874205, 20.159739803749925, 9.057592621319884, 8.672016175581797, 13.984586442320591, 5.705569579571663, 16.954534878826138, 6.654651868756596, 7.9421095327387885, 23.85163578255219, 6.3749118590713065, 6.109995354572254, 13.643388361732361, 6.047078698813766, 8.126596356596474, 7.780819051064544, 8.124474314436855, 5.978175017315639, 8.002827958190188, 6.370630761396448, 6.539542563615227, 8.100864885084103, 10.062502230751875, 17.577141999698036, 7.466160316414261, 15.004574429724656, 6.985744741759502, 10.370895402943628, 24.527620190744372, 7.32515394097265, 18.89471849908667, 23.849337614125215, 9.811889328465442, 10.454948296854536, 5.865154515934177, 4.3016178321988185, 6.630015025273802, 15.307033034675142, 11.84866175252906, 12.409198577611047, 6.100450256243455, 5.552594948061732, 14.849654003040007, 9.01128207037201, 7.656095292355681, 9.996882653437751, 20.301483121575192, 12.447118158794812, 9.560050813562125, 18.021000752231863, 11.417763440349358, 14.186866162714674, 14.033701680176048, 10.736053983053981, 20.21250133703125, 7.9121595152635935, 9.50937613716631, 11.300883457135221, 8.080407160078872, 9.289023461004065, 11.048290422296377, 9.395525170493135, 7.284953089302769, 12.643164170403654, 191.48083333333332, 190.0088888888888, 129.17270995670998, 1.273959726891485, 26.972906216439146, 18.20421461938885, 16.95855288507079, 32.126805843034276, 34.274641016522125, 25.80530266955267, 35.18936158346158, 31.2184666852549, 40.63224511237555, 38.617650323499674, 47.89698633205085, 43.8657264367436, 31.170043898350066, 16.351353055485408, 30.924679301340884, 11.527222500374577, 43.50427723257208, 14.510591384974548, 29.82502875280893, 76.34741409701414, 29.146519927642686, 37.04853403273141, 28.318333610726718, 38.06805946873694, 18.063641244449464, 34.03263256381861, 33.79217713249121, 13.254350903941214, 18.236872220373428, 46.79677920974147, 33.96004231100856, 17.181993367102, 14.279621626553684, 16.02657202536279, 13.204100896958044, 32.31166978238357, 21.39385203181669, 30.073435942898893, 56.77680422283332, 13.607907045166753, 13.702573200481364, 16.084303659008597, 32.72869708573965, 15.607370521252399, 32.18190556138776, 25.044277787464107, 39.511731115375866, 15.10369864459092, 25.010671940807196, 23.112121412861327, 43.876943468296396, 41.55885009435009, 25.62851435781761, 19.05289375627796, 16.280697297256122, 17.10100545395437, 23.844731086970786, 6.974963982367836, 9.807751792724734, 17.10972938325965, 19.631241341991345, 19.529168303690042, 22.063867354147995, 20.848879033797804, 17.36013099147155, 21.206921609973588, 17.12721961956172, 16.45679331111662, 26.97202719789018, 12.233653837643288, 14.089332862479226, 13.748111673241143, 17.189734313456576, 29.165790940947097, 13.921506845006848, 20.724607706592657, 16.82666833550082, 19.254595939191525, 12.966885717579878, 11.324721293988775, 16.547981935532874, 9.224921512507322, 16.419204207639407, 1.3848635033928283, 14.496849084249087, 11.694559329559326, 15.429215155027533, 17.58743219461698, 20.383346965899594, 16.05709046251903, 15.167271593305516, 14.595852580168366, 12.188989204707104, 9.808641700404857, 8.828121986222735, 14.492296882855708, 17.448825670498085, 2.0258333333333343, 15.085652949217963, 20.224809523809526, 14.003280346588397, 15.155954078888577, 15.652199273138283, 18.16567858213911, 17.15549503829504, 18.826494810744816, 15.288272588522586, 12.591063615359753, 16.524828960513172, 16.706166666666665, 11.218332602323674, 15.082628717119764, 2.077605820105821, 13.882094479826103, 10.988833860583863, 8.603796417665023, 14.898100908695824, 15.16605883724071, 11.218098058803943, 14.310444444444446, 10.530126984126987, 13.332600481218135, 9.831791510418173, 14.845590744521182, 15.125351163048844, 15.423592490842484, 20.250729493581154, 13.778203425229743, 18.480245946432035, 12.975534667566814, 10.783044222381461, 13.043214034331683, 4.436666666666667, 6.62778522557658, 9.68260796242696, 21.192926862945928, 157.44122932330833, 10.577675887275452, 15.827115452865568, 7.736804651560958, 7.470651064295774, 11.147497506923374, 7.226782671993389, 5.3704893537765015, 6.152375464629088, 25.27368523293524, 8.551786877324322, 9.70744690127737, 9.060711818606238, 6.856298089454363, 9.32092419324298, 8.681005633058822, 11.646604517461187, 11.224589425793939, 14.755162894754198, 7.848407381219305, 8.29016502077777, 8.821302826813719, 8.61223341284629, 7.533222274460223, 10.331762329288644, 12.329565213527443, 8.336383442301594, 11.064173455072458, 7.190856936981361, 6.615239089844284, 7.255941880874904, 7.257084848832039, 8.094077058931404, 7.017003814317131, 7.396629118055287, 8.12368638311265, 7.008099318442046, 9.047135285689617, 11.60933059214034, 7.81847559248237, 11.000072213075343, 13.93839357083506, 7.824654026114505, 9.370329844825934, 14.84653548118548, 8.791217532642667, 12.302700041974427, 7.571324253545692, 6.817440576154542, 5.151770316391479, 9.12441729474272, 5.889675009078969, 10.239635083326263, 6.693236561604008, 5.623043856870622, 9.364342741345498, 7.9609065076921395, 7.779819499380474, 6.431811271828057, 5.225343669250645, 8.222147976355783, 248.59111111111113, 240.27000000000007, 239.39000000000004, 6.654921525339637, 9.081670846532303, 9.603689427183355, 9.846758670536202, 8.675662309814939, 10.765382130540022, 12.639094276094276, 13.874370751265733, 8.49889313879957, 15.814671471835922, 1.960000000000001, 1.4528571428571437, 12.414666224456546, 9.791373319662794, 7.146884920634921, 6.4499869574275115, 10.222731198685683, 7.882975580002199, 30.185149187968143, 11.769828403954715, 9.956506348038436, 7.319945857105343, 8.299796231250399, 7.201897494526409, 10.543335330355921, 21.410407870384134, 8.056128567039693, 10.85167930380473, 9.111353326709242, 9.829384655990388, 10.523131039967145, 12.808021157468835, 11.178836303407484, 23.09901885470852, 8.362466888725304, 13.213364465775278, 11.352127201391065, 8.226183810030944, 7.876598224195523, 9.316873261062469, 11.256903305611294, 6.396146921078456, 10.2899244196442, 7.418039653331103, 8.8728746520916, 8.598953245381624, 9.260909923377875, 9.11917560119135, 12.245145522290294, 28.765676365140394, 6.562053508064629, 10.889746695828341, 12.618653285960631, 6.733219874546117, 9.983862288865057, 8.591484009138044, 6.653125321940754, 7.465992297235404, 12.290337612228495, 7.8239531243774465, 11.257847587397125, 7.089320169006088, 16.66679145744139, 9.285775199385338, 11.245888310959984, 11.350681508242145, 9.624061916886573, 15.20946157187212, 12.597628550037134, 6.148384325992829, 8.3739303674549, 10.723160978189068, 7.38140923087301, 11.331555164380466, 8.66186611692523, 9.481574562269161, 9.046190132221067, 10.430725220883815, 7.82443659918091, 9.368766379358224, 9.973769590993694, 11.413947252747253, 10.424019567360743, 13.94208135811557, 10.886836488214788, 7.858424171018928, 10.702060611902718, 11.825765675998689, 11.02599688581027, 12.432194642723662, 8.473598989898992, 9.243477188291585, 10.74264448915378, 10.681720541775876, 14.292833333333336, 14.130540051030563, 14.773937747596706, 16.922598112136907, 10.29574832477464, 10.047198675163846, 15.795912022620005, 10.296064890579478, 7.7554025236755795, 11.653587673369799, 11.62434905597951, 10.084555107927596, 11.525389406458055, 13.443302185839318, 12.470775703808192, 11.828642060377721, 14.007137768061229, 8.992740981240981, 12.279253115658289, 15.82676160833827, 14.086699772662689, 17.631444677871144, 16.6858974048827, 82.42333333333335, 12.140341225088363, 14.082800486707265, 9.70708888888889, 4.088333333333335, 12.033549911368087, 12.783537061901663, 15.712921547750494, 11.414682529974147, 10.906551075676694, 13.509788942695716, 10.307549783549785, 10.596681408331651, 9.01104819438592, 10.627780000867336, 8.825824787974375, 12.88938136261528, 16.50790652197868, 13.73861770707423, 10.770652484357509, 12.644857694153696, 11.028149425257508, 5.5548715728715745, 9.452348093105265, 11.439539488803035, 12.438613239073897, 11.15227829985208, 11.94942544134572, 13.122116724110969, 51.50705112168542, 100.24964835164832, 97.77575539946247, 67.61632023619656, 80.63000831352555, 91.483108715817, 58.74979850173466, 72.72984668015371, 59.076687781173064, 75.84228128809714, 43.15740023296825, 57.07867223986882, 71.09032846842817, 217.8625, 36.95172097114122, 11.567528258836733, 55.413162987104386, 52.83149948700108, 76.31360829610257, 31.556757717905263, 22.458843229268822, 46.35023112675735, 29.04239885122358, 43.589561201518265, 30.755827052032934, 31.150637941972203, 61.098987256624206, 35.26282835536159, 50.353002782904895, 36.237670952314005, 48.54241194006171, 51.1946333666334, 32.102029295181474, 43.649683269345054, 41.72337176454089, 11.212408646338805, 31.30438484062314, 15.511343804053412, 32.97482799675958, 7.154274464563769, 59.79485866180603, 41.87682721611522, 26.40985686059283, 30.692191364916912, 38.21143532578123, 64.63081818181816, 51.663973805168546, 28.753430370844885, 31.330421852094258, 11.551497879285606, 51.611102727511245, 12.844515963219347, 11.558465186728016, 8.649910418673242, 7.740055417380442, 21.862325702075704, 18.925721947410537, 12.141613748470627, 8.736374286498966, 11.057590324491978, 10.086380159900711, 8.952717675557288, 11.46695979445391, 10.588084299882482, 8.688299270301442, 11.878931421398812, 12.09578502978503, 10.824156088412625, 7.273690745898903, 16.345002721867548, 7.204630397062812, 12.07626095956724, 11.612654434315072, 12.084846440539163, 29.815746968717562, 12.191503506867845, 14.867575387989088, 9.908827474296201, 11.72500926380121, 10.692762737709998, 18.441992370059666, 22.60608209301681, 15.008970775158085, 8.215707146906023, 10.544974469411587, 15.548940081089704, 10.454150365831714, 15.485512331464466, 21.491942577030823, 19.679659431006574, 9.408994511924194, 18.17901852023012, 9.047221316705034, 12.562167861710433, 14.29265308062352, 34.64426984126984, 54.33138489736069, 10.84274290513488, 11.412760958847912, 9.890481751548469, 13.660467912859266, 11.57728319716092, 46.414690032190045, 7.717509803921566, 30.563645251737263, 12.623922806845677, 5.114588744588744, 10.441199787025191, 12.533472713308235, 10.978340057857084, 20.06329919333283, 11.806410228520383, 16.225386667537002, 19.23844200206449, 23.792604056927992, 25.5239222694471, 18.56298229336585, 26.477740406651677, 22.958525555635774, 17.516056044801278, 15.83238122461736, 14.449927563318445, 13.026316219609697, 11.622340388024547, 10.548310382098196, 8.45360333365462, 7.3632592854131484, 10.890492576782767, 17.839688690290217, 9.936684157973998, 28.222838755493726, 27.690417598565556, 8.914233529603068, 20.747708169496992, 23.234912992029578, 55.44145655294695, 17.12252238681811, 16.031425089114098, 8.487396068645548, 8.932223658297186, 13.415027383999341, 18.861733756391523, 9.516802406637144, 9.452384527149304, 10.960886428486159, 21.46636400820017, 26.958988825828825, 16.660572838802146, 24.737894044917837, 12.164313468245975, 11.203890576298798, 19.095678153891704, 10.073500722368065, 17.249123669610313, 27.651514890906185, 10.327629709144867, 11.203219359805676, 15.242525887386574, 13.515331658692178, 10.482926270614586, 17.52409121053003, 18.290515614370648, 12.613150035077666, 18.54066830720999, 7.3017796631473075, 11.881651024285281, 10.427960645473938, 21.21099271362837, 9.052898154126023, 8.228880672157215, 10.22842761398428, 12.27598614294202, 13.552488573779453, 10.683500229205098, 11.03011030645404, 14.057502839783705, 9.712882808058161, 135.96574578239563, 244.6900000000001, 244.60000000000005, 252.30000000000004, 199.90000000000003, 226.8800000000001, 7.554837711087711, 10.554620088212557, 8.502317766631206, 10.175458715976106, 19.822300865800862, 7.839696164939095, 33.46412103027125, 11.564434908026575, 15.922994902545858, 8.105955816989475, 16.06883356088285, 15.309656096138164, 7.679534976443495, 7.379555541018848, 8.470335788222783, 24.34406041366042, 14.76601127915772, 7.878972914944188, 29.325563770133595, 17.505462518665947, 10.274534186531328, 13.869406556867691, 13.081339184664728, 11.384052377583043, 10.936359608817058, 9.358035382770687, 31.47814419660665, 7.652060563069727, 12.520223196286354, 17.22258147001929, 9.522233830718019, 6.113563179024402, 7.306015390644061, 11.534943206152017, 6.787486404364772, 6.974774457475145, 8.708142707045235, 8.159461600185738, 6.768558716957481, 14.61207493491984, 5.932416716115964, 6.973806606298113, 14.302527637022328, 9.159265724317555, 20.289244114505713, 7.009126631472001, 21.174650943431104, 13.296980057657487, 8.227226611972867, 12.435889361238555, 6.852437059364388, 6.428328551185493, 6.644996381011289, 1.0430226480836242, 2.589738095238096, 7.764411249674188, 7.9467441676792205, 6.728920932218238, 8.279728168169129, 17.854741107485864, 15.273763160722456, 9.141641774109996, 21.04307708530586, 28.836666791020452, 10.166896004744686, 20.10661218273305, 4.951726385567918, 6.954112473101799, 9.629222214191806, 12.332570254603523, 128.72444444444446, 7.306052542482406, 111.80916483516484, 17.439761803393274, 16.299365553964286, 11.918236879062968, 13.887423986797613, 16.298197066247504, 6.18017512423971, 16.86063731934698, 12.782949808078103, 7.106805206429021, 6.692610996473208, 5.4457716497691235, 16.53430173580174, 10.470665243682122, 9.115358220631602, 6.703677481640172, 11.93357167199133, 17.076539470112994, 11.949070187122818, 7.052841899554258, 13.21783654153125, 14.735146239140514, 9.47472920015521, 16.20214572000108, 13.52438516074318, 14.267977828829176, 15.476534437724501, 15.503221893912276, 11.916849772357876, 11.456894867138184, 8.869429223563063, 63.597023243640216, 8.32331092185908, 8.337686573169169, 11.808976553761015, 11.720505556473833, 13.284995060702336, 10.886000278543554, 8.122250966822323, 9.987425857193664, 9.767965985193676, 15.351012755560134, 18.40125113099395, 18.619463171504893, 8.120332367852878, 90.72360531400967, 6.7009731323659745, 7.599976524532345, 6.1927161335523175, 11.1389932769516, 23.2590080805337, 10.0853497355409, 8.966959782605715, 18.124130744604084, 12.131900759760265, 6.02055008438538, 14.401562798493865, 6.944021731810726, 8.025399452573328, 13.7739073378306, 4.536270611826056, 13.07753281375012, 8.236015010411728, 11.441061408698015, 5.094321075083426, 6.014607880461975, 8.905469605873106, 14.132928774287176, 6.95905961593861, 6.672568121132838, 9.405662354896565, 9.30696407323254, 6.134610166469548, 11.667444695504946, 10.09380316267317, 8.443391350197588, 5.657542088271163, 5.434045956675313, 7.683300810399797, 8.140549294528398, 12.199255152994192, 6.251573919163955, 10.293625671952338, 25.021778329601172, 9.106430487885769, 13.884159872806933, 6.456910671075185, 7.885496695289895, 11.009205509399871, 5.807247916484584, 9.812995708223564, 7.010904851736103, 6.295603907603319, 17.163208679963212, 16.042286685359255, 6.447818160109547, 20.497215128282775, 5.517207980922131, 8.36881226015127, 11.793082107859176, 13.680458586436108, 13.556780675176086, 8.079304112326433, 7.470320726904585, 5.024272202354811, 6.46672433847459, 4.591583833236545, 7.129470205438261, 5.516225699623337, 5.131880787766886, 9.57916899566682, 10.73927531074491, 7.153215157188403, 9.886180927131281, 5.690337999635207, 1.698000000000001, 4.830038140304529, 8.94754439872371, 4.413026790392772, 8.772272081856414, 13.744203385785974, 13.811035992979978, 5.455075744674821, 8.58872449076399, 5.814719903592116, 4.987656680539625, 4.672914063261428, 7.9338018353389135, 4.3181891299616755, 4.8798258305735835, 4.658201157885605, 5.712822933689953, 4.47243036052292, 5.667609382377076, 4.248862650697148, 6.363783479232961, 26.08664457819124, 9.888929706112982, 16.167631704579083, 14.758004352920796, 6.4813924092862685, 6.962345982129978, 8.301936505154602, 6.255038800573683, 6.663251914743384, 6.429431343866528, 6.367713405411091, 5.215412641968474, 5.157248483563984, 4.5496130365181155, 5.367557290723344, 5.328711413966634, 5.706869983457237, 3.4430372647319456, 5.513341328776847, 11.371381028717982, 5.091331859005619, 5.93794234021613, 8.85286146049197, 5.157314610287409, 4.951845485308932, 6.618881008885035, 5.245921988729788, 4.318219685765484, 9.285107636934777, 10.642273346102519, 5.392691900436634, 6.6904637680414005, 3.9174316249572736, 5.597079267443968, 9.1506137925332, 6.244417896563201, 4.713474980757235, 8.59176425013017, 21.40585315432632, 8.258471104886201, 14.455435355319858, 12.62639366572125, 7.524762206751921, 11.822070787481184, 7.973149448133353, 10.322817389026522, 10.917894084342743, 6.725812901983994, 14.625318874362351, 16.188519395014755, 9.48650944713825, 6.480202867371733, 8.933462628164673, 6.4344284393504285, 6.761228109029677, 6.919145192468087, 5.56999392252027, 6.043698227717927, 4.80780497069256, 6.327520347878522, 6.5751805575532964, 5.359794362832484, 5.207128511430411, 5.124824653237953, 6.094444319313519, 5.718856359170385, 5.883750496406492, 4.941009856343483, 5.0897439561580535, 5.2358206983010005, 4.815473899885067, 4.373395498456729, 57.495020753756044, 3.917968463635267, 5.338990278131, 4.752015089322453, 4.451048138403338, 4.923464444648928, 8.31411792527149, 6.476077908843451, 5.114810630283379, 5.667084747235964, 4.91310879120879, 5.822543045289707, 6.7008997011581695, 5.098102062010502, 5.503929838846814, 6.4081568305049625, 4.8060328123838705, 5.145858596321395, 5.069545109165399, 6.01099903481599, 4.940704611078683, 2.2802352941176482, 3.642937682472568, 11.79482211554174, 15.8065718145493, 9.131210031758176, 9.582339684226056, 18.442584971638045, 11.834612547918796, 17.52497828145189, 10.817399457055766, 11.281710406660446, 44.11026761007771, 17.501657350878084, 14.64747838939239, 10.816797735637593, 29.66218142494404, 16.719236703248985, 20.646106249140654, 10.632809683462476, 19.785960196632292, 15.551862935434555, 17.486330909668165, 5.545964438315507, 6.303322184921611, 13.526622653073368, 17.30067535652926, 6.3357062830429385, 5.763342214947691, 9.122720270855403, 17.44892421775538, 8.37347175158631, 15.41486383950991, 10.383930156101712, 5.715116024834161, 12.554523853897075, 12.393107005498551, 9.67948176628088, 6.23321815404169, 8.57302430208972, 20.98001450923804, 8.483537521598508, 13.115144208432241, 17.606900477416783, 13.696574028943765, 10.510901565470437, 9.674337389655642, 13.408176315530406, 14.139179583220546, 9.20368423458724, 12.45718206673341, 10.636984209107636, 11.743746040428128, 11.376403668170916, 19.89375357945294, 15.464393996766187, 8.393604293734901, 10.140358073018733, 20.894047180287888, 17.264409238087815, 11.197700748177239, 13.698776612276616, 20.44514371139548, 7.198737422524866, 10.464076238190055, 11.220046421870862, 7.591805466686774, 6.340690434799292, 7.115688005305824, 19.430098469699303, 7.205211457231113, 7.6896175518090315, 17.47003841999877, 6.479054568718951, 6.828225051421738, 10.679747498274669, 5.306090062083319, 8.905220157426813, 9.848772439657385, 5.4537608217544085, 8.692304770127611, 6.2279408594647245, 7.230976080525407, 9.32618366724592, 10.353158844198143, 47.997764340472735, 8.89185270062263, 19.75304097227527, 12.470575224777642, 11.762367027740588, 10.935203238131761, 7.4620647981901795, 8.348203109305723, 7.670632786753478, 18.815083955620576, 14.989857159717005, 9.436966594981271, 7.39778944739471, 44.35088769382278, 17.639388344052843, 6.69997210684053, 7.862831877739597, 10.820542071167468, 12.425248021707668, 22.488675502780765, 39.85922552272078, 16.88896753317974, 12.091558982956046, 9.46881031508301, 6.886254007060232, 8.68364442728574, 15.182667240162507, 7.089458495351333, 27.148801924699026, 13.420768286220145, 20.11102087317528, 9.522615743649979, 8.934637460870123, 14.164457597807152, 8.284157474733421, 26.67016054450935, 7.097252530915241, 7.539267789748608, 17.93966126566462, 13.464222432996255, 9.253602220278312, 7.118842873547744, 21.50560229773715, 7.106935678542001, 7.906402427989796, 11.82260104054753, 6.915191263973182, 6.294608878162631, 16.039265402471926, 22.869426443503105, 1.7801428571428575, 6.630363794445936, 7.863988934372816, 7.202038431822876, 17.890909356479348, 12.669064819905163, 13.606571436025162, 21.37032652350773, 7.061951333784996, 11.692678069748005, 8.681233448743615, 20.448629291553996, 5.325447765814478, 19.341273705191114, 8.976387550185843, 8.94098823538135, 41.997508002866695, 7.963903600712674, 13.626927235088612, 8.378580523292499, 13.945956226423538, 12.841003992093196, 8.409408950880229, 8.800753121482709, 44.06548577510639, 16.13919709306485, 15.305914910602796, 11.36296709101877, 9.416353484907454, 7.731827873877719, 6.81157023351923, 8.01459208435509, 31.350165871593052, 129.21147058823527, 236.4353846153847, 242.08000000000004, 236.29000000000005, 240.56000000000012, 237.4200000000001, 182.59567226890755, 18.229094061339016, 13.923532859484332, 20.42951410479669, 11.90590737381288, 12.403131439197153, 8.015212020745546, 10.61393599944644, 7.42309717699619, 6.324602970646044, 12.199138737887758, 6.4791617407978475, 6.485386398951718, 10.910447808089328, 9.688950782040028, 7.946212254206645, 4.182677381626035, 10.450080514680112, 7.198226469469476, 6.564667403820998, 5.168345198818945, 11.0385557822152, 5.463746020270458, 6.259488676940735, 7.629797937066565, 6.211050064554903, 6.081309295631783, 9.470895623110845, 9.138386335349097, 5.941184017059684, 7.716789140525593, 6.606794840070175, 6.2939879586987555, 4.094368630391136, 4.570213673541791, 11.113589529379004, 11.395234664865415, 8.218604276292162, 10.061302028507974, 9.856972280577413, 7.056336276490379, 46.619900547358185, 4.015776081641936, 75.4809371168792, 55.327003437738725, 44.70712607655504, 4.5510564182194635, 45.245662655971465, 3.5708397360479096, 63.16140788840788, 68.99807171586585, 39.391205648926224, 7.389219864168377, 15.461621522900437, 6.5400987692456125, 12.351924106110692, 7.5381071341134, 6.2701830961057965, 6.7039410192065265, 8.609806178670025, 10.752583136212449, 7.979074528163911, 8.554437374624097, 5.767512920701969, 72.81638461538464, 9.226302034156832, 9.276175911282312, 6.58297033624599, 7.266385711297315, 7.85820949723576, 5.9148679783819755, 11.941318126585987, 9.735151613919943, 6.546211681159984, 7.531534761156246, 7.08349146741189, 6.271992335858577, 7.365474062373169, 5.330791736299477, 6.657341322518883, 7.1930455095527215, 7.368344471633953, 4.823349544072949, 11.30076596488703, 6.2854716761171465, 6.647222346530012, 15.529737582241006, 16.086479118962615, 14.535314487353189, 5.233754710408019, 6.024588283573623, 3.8083550279391805, 8.397804053057923, 5.224061005843059, 1.4809523809523817, 6.825697551285989, 10.311992358617308, 9.734215901558427, 8.175275609142052, 12.096941234313094, 8.592301325029325, 8.021424061023406, 27.7493286242033, 43.471012220000375, 39.373282407434196, 13.927827891830056, 13.078981249336673, 11.69781453385507, 26.381729360296283, 71.35745432900434, 12.498319224092722, 14.004147176305942, 12.360784827140836, 17.532913988862557, 13.030970028778452, 11.675497786571986, 6.191877961557562, 6.4548734328489505, 7.969419993450488, 15.284330653877714, 27.945644447474535, 12.338252997957902, 31.985896082368928, 6.9359640873778154, 18.608036236256268, 33.0736844894315, 13.477599744711624, 9.143097423051973, 10.238493068696997, 20.492472145952966, 20.30220437134593, 23.098261989250602, 13.186929167158112, 13.56893968416078, 11.887071864327002, 37.76914567132766, 18.26567430564781, 16.34364694454306, 19.27194193984795, 10.764048563994587, 21.90077720215929, 7.980558047915876, 18.56359588700493, 7.888457128894203, 16.10854465384952, 20.45434793083494, 30.79893391434482, 11.994047627606523, 14.692139743237771, 16.455195508893596, 13.27843472473763, 8.46538714513623, 8.444208776502084, 8.04567929912198, 15.302185103256528, 11.439488694482554, 11.497575131619177, 6.854457820735245, 7.197151108614215, 8.891029559919902, 12.414550941991875, 9.227398582308943, 18.23114359132825, 10.292063259033588, 18.293343912285888, 13.47338012531227, 6.931913251755714, 10.036250978528292, 9.750028478426167, 14.144359097088515, 10.097257506589198, 17.563099359232098, 13.810631861355581, 20.787713726691983, 24.166215402938697, 20.180453367693055, 16.97860203731842, 7.690083855929017, 8.12961452174112, 8.25635148844359, 13.170717916456535, 10.854176593763498, 19.99765259897336, 8.1545125888697, 14.615335858226942, 6.068109659611498, 6.77174617394177, 7.071596057606198, 19.88993695843528, 17.90886764850318, 24.004181198369828, 8.002251083086328, 11.11108611586656, 40.550016211575034, 6.662482419516786, 7.350766822825659, 16.164051533760357, 10.352221002370744, 9.302565950324379, 13.725356730785782, 9.032164127762256, 8.831419354658426, 9.439852687030656, 14.226907681660759, 12.47067717785505, 11.31995855936146, 8.997184778982218, 7.678806596203891, 6.473876837428955, 9.161998784715522, 11.522001098171879, 8.996762531225226, 7.618870042665259, 11.369935185911096, 9.872220015149317, 27.63644790093024, 17.393950019962613, 9.17482002407313, 11.800903452058408, 9.87869212631924, 6.896950092557289, 6.499123380754841, 17.43747823733551, 12.461221799735867, 6.907273523885078, 8.970662066918589, 8.484278470824572] ss_darpa = [0.0, 1.0000000000000007, 1.370000000000001, 1.480000000000001, 1.590000000000001, 2.479999999999999, 3.2133333333333325, 2.841666666666667, 2.192499999999999, 3.3899999999999992, 1.818333333333334, 2.3178333333333327, 1.8816666666666677, 4.51283333333333, 3.4455, 3.1767142857142856, 3.39935714285714, 4.890000000000003, 4.4642619047619005, 5.215833333333327, 2.2203730158730153, 3.4738333333333324, 2.383388888888889, 4.84099675324675, 4.398749999999996, 4.202912698412696, 3.297258297258296, 4.629690476190473, 2.4776706349206337, 3.9398015873015875, 3.7835746753246755, 3.984190476190473, 3.427429181929181, 4.501248168498167, 3.0603411212970033, 2.8278383838383823, 3.5661758241758226, 2.5414819624819636, 1.868693473193474, 3.703209595959596, 8.400609649122808, 3.6349201680672247, 5.194741702741702, 4.458728406827091, 5.62196681096681, 6.899766782237364, 3.8096919828537463, 5.430405122655123, 3.06800911425176, 4.056868307131465, 3.657538614163613, 2.458401317523056, 2.8229965179112773, 3.5274715007215005, 3.7687158535908525, 3.506609240175028, 4.552747538572536, 2.5520334030434646, 9.34090586537645, 2.9178267704517693, 2.4195636735269086, 4.0488287217168795, 5.510118881118876, 3.0474129791865714, 3.3357444027234022, 1.8931370368864686, 2.6420972129827955, 2.4446213567564192, 5.220454137795467, 3.6998157904187283, 2.173342800516843, 5.11564957264957, 1.903393630677345, 2.804830086580086, 4.206045318472948, 1.4550106686671105, 2.2255112942612953, 3.3395496954026354, 1.4332099437716959, 1.2127050997438384, 2.9346935958020612, 1.1034203454998814, 4.009285714285717, 2.9561428571428556, 2.098677655677657, 2.080904220779222, 2.586464662883141, 1.1895329433208692, 1.1671955253896436, 2.7068452380952372, 0.9369567994355158, 0.8636337884216158, 2.4041469404778226, 0.8137626854437792, 4.000000000000003, 2.5643611111111118, 22.52314393939394, 16.823712158808924, 8.426562499999998, 20.183271478549628, 10.513720845899876, 12.400890025575443, 2.011937321937323, 23.351484848484844, 2.1985162906390348, 1.3746893814997274, 2.999999999999995, 2.1475954247667444, 1.5217004078605834, 1.0585130623532326, 3.1143382352941114, 0.8407826146377257, 0.715427619469435, 2.2073425818247796, 0.6490851001875911, 0.6062647160128907, 2.1176562349610784, 0.600274622676035, 5.99999999999999, 3.085789473684205, 2.999999999999995, 2.000500000000001, 2.1583131090242067, 1.5073475609756075, 1.2173934378629507, 2.082327199255019, 1.0322808794533134, 2.0000000000000013, 2.05634338851202, 1.0290191449377502, 1.026611989459816, 4.011739130434785, 0.6751911600544387, 20.425191023030564, 11.512657880094201, 13.744576999798888, 14.68029850501769, 15.06398289093292, 23.598517276467586, 22.754251565717393, 10.255425962496354, 14.210675553072686, 7.556466067524916, 21.980760009211533, 10.136696530014609, 24.658961071295867, 26.258695294728163, 4.868184865772893, 10.735464534818275, 11.275514282138861, 12.705457473012125, 15.878749938265676, 10.768277342970071, 9.047628451949146, 9.797330511106827, 11.857095896572687, 14.230680280130684, 8.530682189403741, 12.821902723838722, 11.449930413528966, 18.023083213913704, 12.389448346319409, 19.879826978449568, 7.336608469331379, 13.383954857032164, 11.937183521585807, 7.144784808294556, 14.921697024524859, 20.388965119661467, 6.718427882294324, 17.49787838755742, 11.806454267483128, 6.284229536424672, 21.935964491814993, 11.583455783376218, 8.949558240754158, 9.298687622995681, 11.503190188317928, 6.036042963260912, 10.789808247815166, 12.907162030939377, 5.94899601114821, 8.100977064804095, 10.245667510213114, 13.84075436633595, 11.612974760858169, 5.488189573874374, 8.346411387373536, 7.29270129592636, 12.869281862201632, 19.279560234951433, 17.34356319284989, 11.66479577514873, 16.817033513589596, 19.342610753638063, 9.509798551944534, 9.811029936567547, 11.98474343471304, 10.734535088770754, 18.30357181737366, 24.76408865199801, 29.987265241282483, 20.200154517204478, 18.075769230769215, 26.28062316849818, 17.11214671497836, 15.582908293614329, 32.566346664264685, 19.90683333333334, 10.658238095238094, 20.86221302107882, 12.670045249841756, 11.71532490026764, 20.46602272727272, 12.967061057438492, 11.488870333478653, 15.879533242011227, 9.935429571103805, 5.620949253127827, 4.460399542709723, 10.106064806555922, 3.6672397903048792, 3.970233738290836, 35.444999999999986, 2.8352479802275474, 2.5487862445232623, 2.3202898852151113, 2.133473430590183, 28.686450216450226, 2.0297257776104187, 2.02696423636409, 1.8912887752062295, 6.762857142857139, 5.809999999999993, 3.0560256725854162, 2.13503511126521, 35.819001577642574, 3.507414604819809, 3.3051954887218047, 2.669531236637684, 7.924722222222218, 2.5514286233719914, 2.0296648065353478, 2.1775592456295114, 1.815564500990253, 1.9351467667402003, 3.6695387808675752, 1.8811281539868445, 29.094999999999988, 39.58418261511572, 12.762236427083291, 2.1748311120789796, 1.2419141830965874, 1.0600163322562512, 2.1486330336330326, 3.6667619047619064, 18.330833333333324, 45.051663780663766, 37.18191407050623, 22.817741815530262, 1.5412765725608573, 1.7456190694069822, 2.2151605718007765, 1.0358177588849322, 21.559999999999995, 1.9442513893429227, 45.7134001268654, 24.594494881048877, 19.34227178789581, 18.349089366506828, 26.492560511928044, 11.415371745681183, 18.14137010387509, 21.138093804266145, 15.581903015859396, 45.98478369626738, 18.064869305331094, 11.77836078459496, 15.356944205311924, 10.841617738245787, 28.902250486664656, 12.523239127436076, 12.78958232658759, 35.651456916102646, 9.960688594107333, 7.880708420773493, 16.213378820908133, 12.497913111715604, 37.47918272023998, 9.55480658853859, 244.03500000000017, 13.360376730855887, 20.79924524774912, 13.788111988671146, 26.39609057123859, 8.284953790184117, 20.06523464118182, 10.120934685293966, 7.507368228588805, 5.749118158256299, 36.6049032752682, 19.780537685154115, 18.629737488153605, 11.786915170301537, 10.81234815114699, 28.04973915361927, 12.944013722153901, 8.673324030698408, 19.248593739410897, 14.679690649217097, 8.189688196083807, 6.950381331619967, 25.551797846825327, 7.352131765413554, 27.35076299497259, 23.61059398840704, 11.845775719230941, 8.550899103044914, 17.127312716332717, 17.155369985038675, 5.849317089697884, 5.975848247678119, 21.167493935003833, 6.633742629368678, 5.6363184709524345, 5.185046583968273, 5.0283788081503245, 4.952883960626598, 33.42930676415059, 23.386942986897115, 23.302496560478414, 28.753987717702753, 11.771202684839531, 24.763682912119428, 14.325050457912836, 10.713410289679414, 15.95969388068072, 24.464222541635564, 16.520129542594372, 20.132665738481982, 6.887051021614137, 9.146161814097775, 5.720601793900731, 10.865756235761362, 11.373996546586618, 13.342420611611443, 4.546283865079599, 5.981457272605511, 14.033382597439504, 7.20449644724438, 7.73680460434179, 9.651534714447937, 4.559797157589618, 19.05661954898578, 3.4706396960406236, 11.195659477863035, 6.208188317368357, 12.943700046685342, 3.033955944506185, 9.616493811271289, 7.457614652262489, 7.348910829146734, 13.103792248802959, 11.499623324457023, 8.938691198855143, 8.349450224044961, 8.656865900816703, 7.145013478302338, 7.895685281170885, 27.727432967167633, 13.746895189543004, 10.462860547840098, 6.031695461635422, 6.029147390576696, 4.53861696828733, 7.8423781843944385, 9.130002451882612, 6.741542840343842, 2.779968935292475, 5.123017577165726, 4.593717321922908, 13.636623004964967, 21.77844401071493, 5.066349869069471, 5.288846231713043, 4.321438355040963, 20.506782159017455, 9.9044538325286, 13.57008958425475, 12.61443658400535, 8.612826519378684, 8.561299034317122, 12.066318952687679, 9.467474654879688, 6.9880274250534535, 5.9996073570826285, 5.450653581012825, 5.001301166155992, 8.518187510390897, 25.308356502241022, 21.783660658866246, 30.26681229931892, 21.537204240189812, 20.06917537618217, 45.92452902130076, 10.070388524016337, 19.906508795952284, 17.148298320140313, 38.71697469097971, 14.169934223776451, 28.419207719785156, 29.23481779327198, 20.540966602448957, 10.61732599309336, 17.125848461509953, 22.802279918943846, 14.602089212859598, 25.847657014009958, 13.23258512237208, 24.140060564833, 19.661354277607213, 11.310177354623926, 9.329390271024073, 36.92760300457664, 23.278955740206214, 12.41365519769936, 23.215365059473445, 11.560709075962965, 21.1116451236759, 13.620871845604274, 10.342745812249124, 14.881613072654753, 19.328456902305117, 14.767697336762946, 20.139730838332706, 11.387892925572055, 22.746668598656385, 32.97842880579147, 30.69055873619078, 13.278763914003697, 15.031693390750345, 9.326445973658439, 22.859974593117876, 68.41021507929304, 48.0373083463735, 35.69824833589349, 51.47286805293713, 42.9364854924998, 12.327627247193423, 5.496658775120707, 33.25089586222166, 6.791897623911612, 23.11685956720887, 54.98972940927319, 6.096129823593552, 27.73132625348307, 31.18174595224029, 16.286335150450007, 20.31293858382927, 21.618104010194735, 36.03968935450515, 17.33335754994781, 26.414912110893873, 26.3130801975802, 14.119916578966269, 1.0887443702516166, 0.9529948439795366, 31.73418037518036, 23.126618741765473, 19.170272712194922, 24.18228289602554, 21.01687266073192, 11.79546787134047, 29.326537116392387, 34.32353646947279, 10.852152979373566, 13.480916123336128, 10.822904507645926, 1.0050661474469051, 7.285721310044935, 1.011575033324619, 1.0108240754702127, 13.513453573157806, 1.014976243424273, 0.996659566257686, 7.409257977930427, 0.996659566257686, 5.695446029134647, 9.454592445604067, 5.579914440905009, 4.514954914006704, 5.920371397066981, 13.292159277067995, 7.498223149554265, 9.649635903450816, 8.415063001784546, 5.523119047619042, 11.404517388442551, 16.459108895490473, 33.702513452730855, 41.96827939174687, 9.474470284689431, 27.596687465059176, 6.110448336896832, 13.16504098396789, 11.733097010649287, 23.137517272345054, 27.841498293124886, 26.741109217171715, 6.450372948396629, 5.283967755420625, 8.652681128082442, 34.20704106651308, 4.876998608957933, 15.026623586750608, 3.745074961493364, 3.3994762465193484, 1.7969310248208155, 13.780981570864517, 2.2184992826068304, 1.9710058591504909, 1.5140223762472782, 2.813483891733921, 1.432799671307571, 4.258499782958294, 2.21075144390087, 1.3733257567516166, 1.8986544844848976, 1.5496826635863852, 1.3694467590025994, 10.478933606880881, 11.34870707070707, 12.642233471666598, 7.9425259960778165, 12.63870851460842, 15.340439817215163, 9.586457843258406, 13.618131682423993, 48.688479736187425, 9.35273984146961, 12.626524914473089, 15.010805614908477, 10.970843876841048, 23.21213552611503, 10.542430243627813, 12.827185344908553, 11.73021341039272, 5.699770379000489, 10.741800968197971, 14.192465699608361, 16.078168822043033, 17.728148400464164, 23.617333914830056, 17.102934907007604, 15.180549745456936, 42.10749477690236, 14.951302398709329, 12.462447124888275, 15.066860047601667, 12.111703359470711, 7.584498824930837, 12.904043430743396, 12.82061929232923, 17.604521461821225, 8.504182576590093, 11.456022302177535, 11.020784335568772, 11.213571691409609, 5.9794920418919295, 56.71439913454364, 14.68995415680498, 7.346266793721143, 12.913105132728248, 6.605866305559149, 25.362088794098252, 10.953021494913052, 7.612118325016952, 8.03248281575402, 14.443625362240594, 7.355212227967408, 6.869671146449533, 10.541885390210947, 5.8194305317906885, 10.777269887786895, 17.04420848009291, 7.279165570434773, 13.406703969516977, 7.426808734019915, 9.907547749799415, 10.168016872206278, 5.709903659328264, 11.641242637205595, 26.932349493541068, 22.180730867590746, 22.264108460810515, 9.935230916806985, 12.862982934764675, 15.715520241572177, 20.16788906633114, 16.329423131254508, 7.714011892111158, 6.594601318970886, 14.901196969696965, 16.674677088678344, 8.315899221385612, 8.915080089587061, 7.282869699449662, 7.147608312566197, 6.645307565467628, 10.995874948764135, 6.855027025013083, 15.521779571697495, 5.915179201746967, 11.276585468090436, 14.35010595622128, 10.594604905200462, 5.824836309921373, 31.80602164071722, 8.932254726571227, 1.2315129933175413, 2.679958994708991, 18.28790799489079, 6.826970722889062, 1.3318614821943433, 15.819999999999993, 1.6188526929052833, 2.1585926522830716, 12.266063543819916, 8.557907524734896, 10.959474882516995, 9.862073623353822, 18.602314048873836, 9.822155001394503, 7.54406180894566, 4.799437813221521, 16.577353341696945, 1.5205111335408026, 1.6600373005320814, 1.4591574276029395, 8.539160320013407, 4.662951196129701, 1.1623253019954036, 1.930985753643356, 1.3256483232805423, 1.283673323747705, 7.804969433752519, 7.250992471377212, 10.904999999999989, 1.3157431781298692, 1.144683152479865, 0.8425320236054483, 5.965557050105038, 5.581968586155409, 1.8392185036242754, 1.0132537893455118, 0.8191558636077256, 1.8510500285128615, 7.724255049439972, 7.282175186848784, 0.9480295885356235, 0.760967857034902, 1.8609819250871094, 0.904357325331737, 5.909898040166069, 5.453602990602448, 23.772495874724054, 16.59744311160135, 12.693668075093978, 7.340288728120125, 7.291210035966378, 12.038879492529398, 11.858829396882491, 39.298178766112045, 13.10600168021963, 16.49099369923385, 9.419748911147522, 11.810165280771031, 11.956741803940433, 5.735748962666822, 13.479204137021432, 12.517192630890742, 8.92647571647413, 37.43123781835234, 7.114227492019795, 25.119054218319725, 12.580798333958489, 14.137583829280272, 11.320858806370728, 9.639072656194257, 11.936707000769761, 9.217195746201291, 9.77584578110488, 38.65949582137876, 10.223815967051674, 12.142581614209963, 56.04555893551711, 18.54079375322625, 20.088993914304694, 13.82864904050147, 8.979043811973979, 11.468908458876223, 25.802871016749712, 180.9825568086885, 6.101296688310697, 8.761825361842044, 11.87891601442327, 6.783934650174256, 7.215746053015849, 13.100833865539625, 13.372303376647684, 7.876130261165425, 12.783314189423256, 20.782809768802757, 14.641967918569616, 6.625361959817771, 9.06905540664363, 11.517543644590429, 13.004272268544856, 15.643495117143656, 22.619186362351375, 6.917777129552555, 25.059387484260817, 6.790104714133695, 9.91461493133381, 13.332056822204988, 15.15057458975764, 18.13047946858017, 14.16145529709357, 17.713861007311934, 10.102797917964079, 13.954465709294922, 8.571735192611696, 7.769418455891817, 12.026951902325042, 7.21831665799632, 13.458246898628635, 8.816399742348352, 8.904905164015595, 7.262495761459302, 7.3741384990329015, 5.947068401399592, 10.348925798988615, 8.592216986751696, 6.642030532139068, 6.167063388127718, 8.501030698914123, 6.572136352684134, 23.967217670011152, 6.8762586840906, 6.566611499638761, 15.924358720740663, 4.231436389477771, 4.428768095894741, 6.887155406334468, 9.15922832182992, 22.137024614274615, 8.998919600000248, 13.983380254141625, 8.526097223845305, 8.210266962750767, 7.290378668649057, 13.668040507601347, 12.447295726015199, 5.9553998778998745, 6.71061587729277, 9.094790019255177, 4.731232555410073, 5.966675557013197, 11.972010680477622, 4.0779999223966055, 22.712945404064882, 22.20509699949429, 12.25311097730295, 11.977819125952411, 8.182541352318413, 9.559857581666316, 22.318237548222747, 14.034889816871766, 8.3977447551499, 14.766164281448688, 11.949313193286851, 10.307273642480196, 9.420827811552567, 13.452329832087443, 8.280864535666531, 20.560379675136257, 17.04756146180937, 41.38196601335678, 7.0571620933136305, 4.372046760746967, 8.872167815594668, 10.890450872134362, 12.657213168166255, 14.81810671840505, 44.31356690632743, 6.454027091369181, 8.128942797278297, 27.232676289533774, 6.212323667243805, 7.63817024445514, 12.654837531314547, 12.071009481798484, 4.8595436359313355, 17.215619574592342, 9.428215601638724, 8.248950359535723, 10.516057174148676, 6.87589388511499, 23.222280113234582, 5.506608321159418, 12.920775915518746, 9.800113773133182, 7.913940668073627, 10.89601753364319, 9.44881324066347, 8.467634130751584, 26.252642051679594, 11.089944324467705, 20.475170054264666, 4.987966428706756, 4.363050897186688, 6.995878742415861, 8.293172993716826, 17.428446593389218, 7.105926292236005, 10.776638401941272, 10.97005225805469, 9.895152485510463, 6.264892473069576, 8.030335164106763, 6.086575208985127, 17.298724440541857, 12.836324617194714, 15.031030573410925, 6.396712137187184, 14.338565395485121, 5.436827024504259, 8.978311694806147, 10.619938171712167, 8.434095391877893, 9.7194662868619, 5.453591724317822, 9.600779251265589, 4.0807603533234165, 16.42658125225845, 10.506116003945177, 6.054157331179884, 6.187426027094637, 6.249204759957194, 14.184059515023703, 18.695153976312646, 23.92260606192053, 4.522098359507785, 11.123242898452768, 5.3145270754152945, 7.912813254366686, 5.668958690147181, 4.483772192829837, 3.641391912776852, 8.602068158519783, 11.358358966108964, 4.725736652236646, 5.693072845725929, 14.94789612430053, 5.749379488158895, 2.940614152111758, 2.497453487565711, 2.2157165033741815, 2.0253252497653116, 4.955604905878319, 9.027661512277792, 3.6550000000000025, 0.8480476386998623, 3.7841852632499573, 17.68121759581881, 3.2860805172980663, 4.12204165279165, 6.561262561512566, 2.6663776235153787, 1.7689085838780196, 2.3944260884959343, 2.68856043956044, 1.0808575767958963, 4.866192295714912, 1.3285761825311688, 2.238805133694772, 1.9226127502528436, 2.105567337642912, 1.6004479520003583, 2.0054041424094677, 1.4371029699370932, 1.9215577417974545, 1.3023965152321806, 4.308066057886271, 1.7793609548495177, 5.774999999999992, 2.894999999999996, 1.9325000000000008, 1.4504999999999981, 1.1610970873786415, 1.8414156837882927, 1.0047663494744836, 3.996108196609129, 15.136781011624038, 9.173305856288557, 25.769127142603306, 14.763765762882656, 8.726554389224509, 7.067189052988001, 8.22077130654253, 7.7325207323996645, 15.423378875866987, 8.116651543645624, 9.977361623533142, 9.84869609602446, 7.299915421501547, 5.0895403407974955, 13.813640331617703, 20.508674385947, 16.977934095223404, 6.341188242776426, 7.004975300173089, 12.651480588727358, 10.260411334057226, 5.6143699056913805, 7.4355401822705405, 15.73596210874655, 6.618648241875991, 9.44778001932911, 5.218315083118475, 14.646475720375896, 8.463351663652155, 8.192681260178324, 5.38014069419807, 12.411705566331843, 13.404117078447882, 5.723196269428659, 8.254808894213868, 12.101344791977517, 11.710513107443004, 5.4116401532912155, 33.13054071956593, 9.133268473476855, 6.214723860591404, 7.631950164551208, 10.586268052141238, 11.284491874894838, 35.69997785092072, 8.674442355396549, 7.238159048733384, 7.66718628949102, 12.35659032125246, 17.339432170105344, 7.610582211470712, 11.305576478112197, 28.485527478253783, 35.06110573026734, 32.6027045791689, 12.636567874474126, 8.416267725812071, 5.912103415800921, 18.4673401638803, 11.019282232271728, 15.474405452528721, 26.292933675405298, 20.289484198797403, 10.18859837259503, 7.835117984766176, 4.776678213574277, 6.271431935834305, 10.423471227385841, 11.79020349493542, 15.74102501199912, 14.435459589650977, 14.087083132301345, 6.978774520495257, 5.980703588010667, 4.833073068955142, 19.534280114260795, 7.6344497902945525, 13.06792920037644, 13.47125662655253, 22.54022686221825, 5.426312271062264, 3.6996883588833773, 3.5532329950754535, 3.0883504764266783, 5.94999999999999, 11.236579885879232, 6.377714285714286, 2.832176034686392, 2.590816184138952, 8.648935431536316, 11.764346434815106, 12.180124083493894, 12.840934793893137, 11.480358863358862, 24.03889358671704, 9.532327009842298, 7.280763650571108, 18.92557597468413, 14.366770913770926, 2.9811111111111064, 3.941457702935566, 6.841565656565661, 13.799899153149367, 2.347437123565293, 1.9910000000000012, 4.178636363636366, 2.545872991073724, 3.0436172161172186, 14.912645529676498, 2.2683305737050614, 2.4207011847039306, 1.4968181818181794, 2.23636875049901, 1.1996666666666675, 17.196749613667805, 2.4389744394296664, 2.0925292559630937, 1.0049125173676905, 2.0924239338368227, 1.9173027088636356, 11.85962884349734, 2.0160393757870203, 9.508574008616874, 21.452564675543893, 11.430875244568853, 17.62568229551677, 36.84437631738914, 10.95747428026701, 11.50835958032721, 9.282457025474649, 21.807421312295364, 17.70732488202972, 33.991041971532276, 8.286797689930092, 6.76646617225508, 8.553132548523838, 12.46188486465064, 11.086333111256192, 17.515819611523472, 15.908069134525082, 16.91259395974142, 13.356835360514483, 21.086999459203255, 6.543300530201449, 21.393478022267956, 6.909415308609889, 7.756818369456049, 11.347724632878366, 37.324621087832746, 7.070332418400259, 9.717147455523612, 17.70724872919387, 8.053205045664637, 9.851709426007524, 8.297400657616006, 14.569121098658764, 7.594758289180671, 6.447995172101054, 8.589775399865843, 6.912592253107444, 18.376895855529504, 10.528255215229239, 17.804690904791126, 6.602413555148573, 9.670657787384348, 8.417110318567842, 8.01904452560052, 6.542043570310167, 8.499285644207443, 11.961148406557246, 32.73423098068065, 18.264103739141216, 6.184695520964508, 8.043825587028538, 16.576416389861294, 7.351632109152231, 10.737562505675452, 9.753683278849396, 9.897755560035785, 31.463126733927858, 14.762390236679442, 9.628954468296804, 6.096271889167021, 18.666225109567705, 6.570006637069742, 7.586511536905799, 17.219548239495587, 5.868234196671882, 22.122176948642622, 18.99556069619289, 7.695555905205221, 9.202496773489386, 8.913655016157698, 6.354024572433797, 6.978747826149337, 8.855672102738863, 23.792190570664406, 21.301972705224966, 6.690201027666149, 23.575566392525246, 17.944004894553224, 22.94827478147792, 19.786260388504108, 16.835224745812837, 8.582082457764475, 22.69117705881371, 23.12247079711276, 10.18060525554045, 5.183055359802761, 4.532801795193107, 7.360942036892573, 4.54621177356854, 10.188853514193793, 7.553386158213554, 18.562229649619624, 13.017299020858848, 25.418560936401917, 10.79943491702932, 38.10811911695932, 22.149770388746575, 8.297845892142606, 12.507031405123643, 10.690161017701218, 28.042548589407733, 11.145417468089239, 4.574633146258007, 6.353785540989745, 9.585637720050755, 16.485807681873514, 11.83112991879084, 5.356530564350489, 4.6843329185104645, 4.250206455379101, 8.349528745166092, 7.636529539095805, 10.795786376093082, 11.26386285028871, 10.085772673990434, 10.913120136824682, 6.684367746481439, 7.136688540539338, 17.8475491006229, 3.8984931062747994, 3.6135796186713995, 3.8555245234880724, 7.233049000664044, 3.3067479593797344, 3.5639111232425082, 3.6224344029993127, 3.01498121992654, 3.0494214429308486, 2.8610463883439166, 12.993447732822736, 2.810299854538931, 2.9070068152844812, 11.668434052426166, 8.292056002088957, 4.083937337872839, 15.2006929147257, 7.133047697219125, 16.683948350949063, 8.190552548062865, 15.3261811641889, 7.092443469002854, 6.673302238521932, 9.194777078646219, 10.356417986865193, 7.623149433597165, 4.696772978569169, 6.102664204328861, 6.228383878838032, 5.095761519326567, 10.474668228429485, 9.6122299450215, 17.79280168194345, 14.353860464690314, 3.8845320585250684, 14.582875627494003, 5.8667316597431425, 6.695883510042053, 4.460397400813121, 5.309708217244453, 14.112333211828236, 4.454023809523807, 1.7209434364209812, 7.501069927363656, 3.05964727747201, 2.231378187397309, 2.5431320491547384, 8.559906744458777, 6.383738156205445, 8.619651911511994, 7.624509039607413, 33.80794171082916, 9.851030505353668, 10.24045260587055, 6.377835168813295, 8.657103574993737, 10.230835312970683, 8.278184538435854, 15.000794976952509, 26.99597474203567, 6.878866403778402, 12.65544374421609, 28.90349935943891, 17.630297953722533, 6.248574617058403, 10.731499367195468, 6.576691363736465, 5.9328058542357125, 29.496832613139055, 8.250169751378175, 6.297976861827701, 6.111229375109799, 6.308094230795693, 9.26111999629297, 9.500832889659387, 5.7550226455483, 11.236804368945235, 8.633726686418159, 14.169335768475886, 6.937682883337695, 11.400539906767104, 9.75142525057871, 8.068621295661622, 9.336237007739188, 8.654281591779887, 6.243440146201102, 7.410023115439904, 15.19616125541125, 8.620031031555852, 5.279657443828585, 9.646077703272157, 8.349166580917336, 6.471181818181824, 5.58326937031252, 9.601379768425003, 6.888843888686911, 8.613500737451977, 7.549204932314923, 9.47740650863462, 12.529583333333342, 15.049434005802656, 5.208561720407792, 9.240626815879278, 11.86314863511695, 6.622361664364129, 12.328611405164038, 4.6841319979455545, 2.0753041081116934, 1.7667315835807766, 3.4333325311883867, 4.066464927971371, 2.602324175824177, 10.1296350209826, 3.6093971951896666, 6.324147667127754, 8.060816184212262, 13.50932923772135, 15.604202270381842, 5.693356227106221, 2.0000000000000013, 18.633877079944586, 7.5522787051472395, 1.219566148527356, 2.1400451733110866, 0.9912835873577488, 2.8346126717261866, 1.5565652740276128, 2.726849247605899, 2.4494587877759524, 1.3665793457040114, 3.5140895023827596, 1.0684437445592712, 1.3012180860486338, 4.236669184186701, 0.9971325024052778, 1.3111347400700004, 0.9368538844029584, 3.9937612467005144, 2.467940878207274, 3.398511509239516, 2.498924366138273, 1.6211580392436031, 3.517219775274675, 0.9623241266824347, 1.4245386849340758, 4.354576708523679, 0.944635696126249, 5.909020202020203, 9.119999999999994, 4.020610933082907, 6.812669238905441, 8.723590524832693, 12.776180226938799, 8.104408166432988, 7.267930989327815, 10.284980153119365, 26.06467693158475, 11.626460009746335, 12.667067648804334, 9.248669178955524, 16.234247064484613, 27.867679222945576, 7.277121003002296, 34.871195146765004, 8.595432306714894, 13.850441173900641, 8.052987397970467, 7.334885224697135, 4.339423350272662, 8.778586704722054, 7.884190740795349, 5.627314429947791, 5.068789259416521, 18.74713172353898, 11.769643893290844, 12.663629726265077, 11.320225998079126, 12.899885551533469, 30.279074130247118, 32.99648169934642, 22.993628154294708, 26.5824482412975, 7.575868337696808, 5.9725125482592825, 20.322052087224836, 8.004834246688866, 10.049146294468946, 10.091925988984205, 15.447615463916211, 7.234857261332721, 9.528379756598556, 20.756068812047744, 10.62250171175205, 9.361374897060749, 5.719047267652582, 169.5790175438597, 7.740466789492054, 15.179659228059293, 8.62040445620497, 5.055436164285702, 24.910863142549506, 13.911141040452963, 14.955275846742996, 5.439272489635966, 17.095496717734562, 13.954592288287904, 9.641495559855526, 16.44962043629882, 32.4586463742135, 4.955569031901872, 11.520149517328795, 12.420469988652737, 19.127264644600668, 14.486158651311706, 18.346018284844455, 10.10486218500212, 10.38263651372912, 12.842028614383485, 6.633485509658847, 23.43487567014159, 16.876727241667716, 19.124946440207662, 10.201100406166434, 18.929055023428774, 10.717727141946236, 16.66135867280753, 5.632800359416001, 11.608564885857549, 7.486091220422492, 9.8693816042649, 7.7048210115296145, 5.304883938613756, 11.884402204879269, 4.823050161127715, 5.3043386086344615, 9.711096062720852, 9.077079823974987, 9.51887552759523, 28.166928291228142, 5.362804991217006, 5.09348218961488, 6.9518550275329005, 5.623881745091006, 7.358864164967655, 7.061304083651485, 10.22716438209695, 5.590383081514885, 19.222769909078384, 5.925293076972356, 7.263163238322194, 12.23818984126581, 8.98910656861015, 9.249962701584984, 9.042781610165344, 9.396497383201131, 6.422211046471483, 4.663843017511887, 6.381670647972469, 10.682653025521885, 6.023147816887465, 10.454872088773435, 6.835593422833074, 19.376181149452986, 6.504879293833486, 14.896689195111511, 23.33951632265734, 6.985246515949638, 8.384601748759756, 10.754712923141337, 9.613310401941746, 11.071776245579949, 10.543305095961829, 18.709706907787552, 14.988187982375994, 12.07252631092087, 2.4851953467119183, 31.163410015018265, 13.107781143306294, 2.1055192829480385, 11.713160296769093, 13.714121496399153, 10.489999999999998, 13.948628549786513, 7.556466354975901, 1.910828900487617, 4.197942475878274, 17.91858145723743, 2.1515119348013036, 12.908987955940168, 15.37803552885486, 1.5049989420080403, 7.356786283161277, 16.262052904380134, 10.80983073081638, 9.428523145746794, 9.940534180301979, 4.57833333333333, 7.560422533349002, 5.398782873148676, 1.5809990453818223, 8.97572966497781, 9.933022518495795, 1.338711978752055, 4.280781610266481, 4.829751953375635, 3.7827687142435593, 18.796974958949097, 7.619462318807719, 8.329757575757577, 6.445674255055621, 3.570894096991985, 1.654516082673085, 11.192477060429503, 5.938803509756304, 1.4347003157219222, 4.207443924762071, 5.985091576619338, 4.568872549019606, 13.271238095238111, 7.0602180386663145, 12.956153846153837, 12.572908818713715, 11.19818236425992, 7.662345422650591, 22.462550607697175, 5.749124250839707, 14.748066962344831, 36.926568233316225, 16.800931396177138, 9.77928476147765, 22.449159712343626, 11.232733881045174, 9.020993991398988, 15.713307401331564, 17.579980105124317, 26.697581038218992, 8.51404613214475, 6.438445351781923, 21.54248125545025, 18.218163668212114, 8.227966101676124, 21.891083397439395, 5.982322383887943, 7.352045286531772, 20.46649352472384, 11.393490585513934, 5.152677992356305, 36.32259404261136, 9.976073039383099, 8.530964374104526, 14.689039250550332, 13.01107052937015, 13.904201175978855, 6.874346762912311, 5.700486999147892, 11.251651011051617, 6.854471312267238, 6.338923491940402, 11.037279295038234, 13.983823592616254, 12.517301728767459, 8.230771581995096, 16.929348226904963, 4.3109768300328914, 8.078904589591541, 4.801812812088941, 9.355025186341773, 14.842521711885043, 5.145808051535352, 5.415686478297753, 7.49337161482619, 5.107383838401341, 5.101639078273275, 8.618964047922729, 10.880244460599615, 6.577112013465215, 4.532501473123066, 13.273268087455175, 5.357280408164965, 7.604798551768908, 6.725441651455861, 14.875814896179266, 14.78074309504367, 18.623540435971307, 14.672815967437142, 16.56341009925747, 9.239550299068487, 9.335636478625123, 10.361800495994604, 11.371027040331205, 10.980188937951981, 7.3149092133963345, 9.132921479253707, 6.2419373893845025, 8.275819370814977, 8.53742897268321, 6.55096244666536, 7.757044431981772, 5.575749288504826, 6.4181669043754415, 5.6627161636290255, 6.03812640885157, 5.12812056094929, 6.517963193728795, 5.937629871052503, 4.41811995892527, 4.981339411431388, 5.056023067328601, 4.198298516217178, 15.866758150986444, 4.475382334625151, 4.743183267910339, 9.258685698027367, 6.450249516062447, 5.533300493220226, 13.63379787832325, 9.200417100643946, 6.084099367143544, 6.701353088672744, 11.26121829085309, 5.164527759490797, 5.109033496649392, 7.974143157619374, 4.645838172751554, 5.690035984080689, 23.09629212231959, 10.275066064103264, 11.505831157963126, 2.783925598937501, 5.623251372906096, 8.633957332212818, 3.968354674307569, 6.48829495703361, 7.918232579887456, 9.784409783236308, 5.667395957245646, 6.189573210745179, 2.8733253268564964, 6.021786354326675, 12.696971500721505, 16.489928300729773, 15.183534133604711, 41.611041844712126, 12.429679090345514, 12.230605873295861, 14.191148422866176, 8.480960733428377, 11.60613735530176, 13.330608160925927, 11.748346606151644, 5.738335629255058, 22.743830717945013, 6.178034055436292, 41.400039253967556, 53.66065898461756, 70.95619520593651, 44.559862154526165, 45.23678575050709, 21.299026257370155, 7.1894214325324475, 9.704788429976231, 6.547328175771124, 5.582541683104852, 18.302542099803674, 167.71200746965468, 8.433992091507916, 5.945571354627371, 10.040191917653294, 9.097666474997748, 30.987578991772022, 6.160199299905887, 5.120993382850251, 15.22172778651788, 6.884275366100314, 5.843040026557467, 9.330000125648887, 6.259061919354404, 5.315805484663967, 13.242743465830372, 21.685203347750676, 14.338426626951703, 7.573702729374941, 6.260718543922484, 11.113780468882434, 6.0962022983436, 8.667754953404812, 5.6916100996245405, 8.389544954802039, 7.291736981327285, 12.41359264731847, 3.9371035287408933, 10.146304567313912, 17.78933126466492, 8.45440358915145, 5.233436490197918, 7.159977051074606, 8.957131616743258, 4.95480171894381, 4.913772826681673, 4.615022849137175, 10.770022091437147, 9.575794590965247, 7.723103002283248, 11.862407982979263, 7.777699746405494, 12.552273160496426, 15.845507360908018, 13.19135209447192, 37.63984132458915, 8.910555547425412, 7.63974460011164, 5.258033843962162, 27.795957890390397, 6.372743869898959, 5.196570304225371, 16.913718600967993, 11.603993747292602, 5.419383694343092, 7.120426062776444, 5.73175244534996, 10.285720892361041, 13.46836176397692, 7.704002379252475, 26.683509331548816, 9.490236225218649, 18.619952256019502, 52.88997108191936, 28.48749936191104, 57.79837390215028, 28.671180544945244, 23.143804898932302, 5.381687778421392, 3.229918627126736, 2.024042353963638, 7.614357475656025, 3.110451134051778, 4.912278080313405, 3.2433969297700744, 1.851696784594836, 5.037557004629338, 8.999889086114871, 16.818224855918942, 1.993990744756215, 10.168980305212507, 9.518048463723934, 1.6189545843349302, 5.591023200580956, 2.760793680655093, 9.152871555429904, 3.5129036225752137, 1.359456787970062, 3.7931155097262295, 5.473491380083567, 3.0017882039705572, 1.998867431144395, 2.8365796172037, 2.6426935472407234, 8.270706951935267, 7.82818558563891, 2.7211159101816054, 1.079265767890602, 5.323572552813698, 7.382855093699112, 7.429514269065404, 4.236440674460824, 2.2859090307468657, 1.1156284069924605, 4.3122223303317275, 6.1242975978270096, 0.9590917186906874, 7.271026690518274, 17.111841269841275, 2.1663684941199506, 1.7642182373894886, 0.8820782488439947, 3.577694444444446, 3.46564167351781, 0.851379153335151, 2.5863483365949103, 1.8381588020329018, 3.2242666666666686, 4.03565277002681, 3.320230301105643, 2.0245827555529052, 1.7985913806778622, 6.492983377556906, 1.3391051844750381, 6.550565857709081, 7.511192980489227, 21.271017678164654, 9.960459071649607, 5.635327350980949, 6.5792231480262195, 12.225398030554238, 7.23144304401316, 13.85661810375354, 13.267752914815494, 10.710619172939497, 7.129247023704163, 14.42875685984467, 9.218578905804986, 5.999261061821078, 6.708107523529279, 10.03997334858824, 7.1572668775115895, 16.287366013230915, 6.8679722426952114, 12.62852369701326, 7.619172100121367, 10.107538732413587, 15.639391890535666, 14.179184650185992, 8.008559149639224, 7.578848352225508, 9.126013931539926, 10.63517046971326, 9.168468874215751, 7.104288225860554, 6.287679491197369, 5.215043184072159, 21.920076053647993, 6.607650762740127, 4.436111191262302, 7.425721513086364, 5.603893972733182, 10.596921764551944, 5.0441726597023155, 24.44512639900699, 4.277235294102018, 9.728553819585274, 6.110427341155391, 7.456770231655718, 5.590920420425098, 5.466956554163294, 9.206571010045595, 9.841322351397807, 20.284510120843088, 13.531488054197883, 4.638196202295079, 6.099779461185651, 20.112849334821572, 9.860386990918995, 4.564890471364061, 13.32940466461222, 9.014571947482628, 4.666325645341869, 5.187441140677924, 7.332652366817342, 8.734958263962906, 5.420620076577967, 7.63769296250151, 6.425509400047916, 5.882782634906421, 9.581908694151021, 7.651941874519256, 14.11352061620258, 7.373305900228924, 5.716787701897023, 7.131122820274349, 6.165760858945727, 16.817708826358825, 9.010733617077268, 5.73252218013411, 6.926886860925194, 20.69969945697576, 8.945267757164093, 8.180924339549337, 3.601216392395823, 7.334277040653785, 6.607876248529296, 1.2564370336941015, 6.304974515780387, 3.2817249886777655, 8.181069867930447, 6.707792169755086, 8.135806004298884, 3.3807376715440287, 4.24461880767093, 9.848286652537759, 1.1469060863422005, 4.137507009144462, 2.9173053235259903, 3.5706254758204197, 4.198171860090595, 2.7292777897190343, 9.80255330330331, 10.332395905213502, 40.022613141558175, 7.184391683694597, 8.563608758218326, 7.141519720455057, 21.551770024254687, 5.326671538655241, 11.610693718422807, 6.825296683044609, 8.24493837237972, 6.531609324009323, 23.269452380952362, 10.393895128082567, 6.178313916028932, 7.40985192585193, 2.971937766118082, 14.978984848484842, 8.214493462226859, 4.556522940516736, 4.061147968367015, 21.827523809523804, 3.754389080000841, 5.818317280758458, 4.634954186613354, 5.199969073193626, 20.05947596779637, 14.800869047619047, 3.1731280419293566, 8.551285901929884, 13.633273809523809, 7.055904364177999, 12.485658730158725, 16.262290452745823, 4.543796098582951, 6.828238967358807, 19.72983333333334, 9.804343650014431, 8.474991427180633, 12.144382760212265, 6.778560222822424, 7.214256700528151, 11.104648874771932, 28.48272877253308, 6.64209996100313, 10.936644984658159, 8.240347753029683, 13.177912622725344, 5.629310770223021, 5.8342417860728535, 14.16113930430928, 9.549059860676465, 20.840886283736733, 6.315193015428528, 5.17653595283868, 14.905716545730591, 6.083457044368166, 5.422995634017306, 10.487616177031454, 9.694444768914355, 25.063450083746535, 23.760608787720084, 9.788645125808115, 12.425960095674604, 9.902465180487944, 5.5172020366012315, 11.108201010532165, 13.78929866191572, 8.711195918085998, 9.324227951508565, 7.5412762564160625, 15.444905478093355, 14.57529633828912, 8.224082638903486, 21.26151002122774, 11.56318448493262, 16.7518753000946, 21.298629831533425, 9.915738557063214, 7.659782370335707, 7.674401566688261, 23.24633874806736, 7.680008293298091, 11.93645721962922, 10.20286500099306, 9.087762294933208, 8.350137555433811, 5.5984550889874765, 11.580182856669554, 6.803489220384097, 4.794777253902561, 10.491721919186025, 9.490293550554663, 7.997662727182262, 15.067080684673874, 10.012627222491513, 7.642008617081111, 14.330345312094321, 8.018818857760952, 10.244069875794139, 7.2365756391128295, 10.956208939975214, 13.140541988829796, 7.027517396934523, 10.794596747629846, 6.876207180556908, 9.903927897133368, 9.895592608088897, 17.451998651863164, 8.984094400349706, 8.011820216601809, 11.410773072278765, 2.132079396417198, 5.701638301962775, 10.799901834987939, 4.809254701547463, 10.21794849345409, 10.139760677300046, 4.428071319610493, 7.329526820345531, 22.656152288167018, 9.120342533272984, 3.717996021544667, 7.30465564801128, 5.153756525151262, 15.02896195625939, 10.90850104537463, 6.650369876684233, 8.151220396315871, 17.22659720336424, 13.283539359189781, 12.015881900917618, 10.590354414436902, 5.585479529290055, 10.356864144046082, 9.476275247451802, 2.713093974269389, 7.350085528398733, 8.751046896099332, 6.44770443108653, 7.126145542406689, 6.278071479885384, 2.3204549478626797, 7.58098949254046, 6.349034227830024, 10.375889930562572, 5.345524412755648, 4.848805309794623, 1.8823784730301043, 4.999115297527821, 4.279036347017509, 5.770062065691933, 4.145431510880027, 3.8641850074153203, 1.627666239589116, 4.0253214119326675, 5.171446846756604, 5.053542566295214, 6.830859315752386, 3.4246208768897843, 1.2847139134277228, 3.5365084068658756, 7.074799856309, 4.601656668414506, 3.3094927233179225, 4.216430501487308, 13.805972228676, 7.062810676666099, 9.414113967599498, 5.719786764482382, 13.44268634735589, 9.068606334914863, 28.25433162300206, 7.530178616079311, 17.578907705445957, 7.871806337829766, 6.025404352435461, 5.711395317742683, 7.541437485305778, 7.5385921906189175, 6.798201587396214, 7.594834319613782, 7.144509438509646, 6.025612753309718, 69.73185541754353, 71.26090554186992, 56.562189568256635, 32.276684886392296, 28.431164528333504, 13.281904945252709, 12.164671323957656, 8.603846334918444, 5.819867843188194, 10.506560185183144, 20.42886116370878, 6.5057412602702644, 8.9567813129554, 9.904009048246952, 17.28605909273622, 26.037448059107824, 5.789512466416196, 8.885484184876654, 10.385939600641715, 9.89269717498774, 22.67062075503305, 5.637294403799072, 11.427639534641862, 7.098951778185018, 24.631312451942758, 6.761135018084243, 7.637847053332772, 55.42082785775766, 11.5207028745584, 22.43250342625224, 6.109354648700006, 12.010352777390557, 5.831661945676182, 18.777249217948853, 9.899627135131409, 12.336584335092626, 6.2215473487794775, 5.370389707331727, 6.6484349345510525, 5.272133503232331, 8.561644020547039, 6.591583084735985, 11.914920474088172, 6.3700575696941995, 7.104132977948303, 7.239938556841704, 6.24911583972129, 14.686228727238685, 5.515065563782337, 4.648505502117114, 8.967724081309811, 4.944053500289756, 4.821518572658303, 5.292498720085185, 9.92271156592692, 6.599535357202323, 8.636254606851844, 8.214676548372525, 7.555334257257515, 4.561051045676849, 4.299307840812057, 3.2487432636522824, 4.060591265746189, 4.722668294709034, 3.1308853144005755, 10.740801278033107, 3.5905497442311587, 3.1822148204347913, 3.462082471635332, 8.159912825615187, 2.50636418153036, 2.766558742903572, 5.776133253658636, 2.6685953906495614, 5.062219981876959, 2.2548301763736496, 4.777165499251212, 5.090659635671366, 2.7407785661761728, 5.833020228745429, 6.612088661185529, 5.115827146085677, 3.102345820114629, 5.382466372786258, 3.8071378006572703, 2.0954957256821096, 5.7269257550677635, 5.827550676911902, 5.188963885290612, 3.6430744756045006, 4.399445039327679, 2.2750769962324218, 2.328110396606602, 10.218613794082033, 7.408254205550546, 5.402413328572535, 3.439716907293191, 4.180681181563535, 2.8040002045645456, 2.783932660133061, 4.587319612184144, 7.288533346955048, 3.5760239225594153, 1.7565531366971048, 2.452610709551491, 2.268221171629144, 1.5570906431882783, 5.233994343828577, 10.852905256464714, 6.4342866340530795, 7.553448853176555, 3.3496634199134196, 14.171627545741389, 4.6309328522881, 24.003827956303898, 8.95275935502112, 15.165839623340169, 12.759283280398773, 36.65910303409184, 24.77353254388714, 4.622428718190056, 11.109557737660387, 19.660808638926362, 12.821130978847021, 6.100994257261718, 13.155799803435896, 7.858492006851243, 7.760165461310355, 15.071647349430812, 9.989024123305244, 5.365635321167172, 9.520582081312988, 8.730620524269936, 8.093584204080608, 11.014011945890518, 4.3166453129220965, 21.23400868003503, 34.77647037358452, 30.59094264989095, 23.151256371599118, 40.60075144669198, 19.499098759676606, 4.913285683449075, 20.362950950448848, 4.4923328912483, 8.225960664956249, 18.363179280192863, 11.156735205724896, 25.433862404362834, 12.902703859380598, 16.45333904853114, 9.64800504803738, 20.502771860589824, 8.814477861440851, 15.57837002999013, 13.744042969360223, 14.693750326946612, 4.407877294636769, 11.606397861677266, 16.528473355847154, 25.08402188090535, 19.34263916148175, 7.389303088455874, 5.498142089140075, 5.087045293023595, 4.044728135287111, 5.302289137407386, 14.680858658244182, 4.107581699743906, 4.600160316933593, 11.764179999892702, 8.485005842229164, 7.7292305543125455, 4.6160005052573245, 181.53555555555562, 4.818772687242227, 8.57740363716283, 28.75213696324792, 5.8155580372935, 9.504648097490776, 18.79896277677915, 6.18138938131895, 11.476887088105638, 6.097943025998387, 4.023626926626025, 4.476407355660779, 17.769478666388217, 6.621305372339423, 17.89253296241203, 3.8947563773919662, 4.867885663310377, 15.367658379001414, 4.426852419480644, 11.364974335585758, 39.258487819488025, 5.83435926666747, 12.43626683838033, 17.10573278656928, 3.9071446293174636, 3.6265773102743504, 16.30092183127922, 4.635517290509161, 3.282516357162191, 6.422200245435246, 12.799308773171692, 17.817502506355083, 10.503261772991193, 17.781685544714435, 7.54595736917479, 4.761277240491276, 3.7941225701508623, 9.603461165925093, 8.300487304876322, 5.522018386209546, 4.267560308367401, 5.36902404568602, 4.465979380310985, 16.08017812857003, 6.1496446255491435, 7.023965443569442, 6.959041151794746, 2.9679060476742625, 4.361502873166984, 6.95210084529789, 18.009090857126843, 9.063083665021098, 5.247228992109215, 4.817669056963745, 35.987727283329356, 6.730025946483744, 9.292057075085776, 3.8442583803743324, 6.460063763733612, 6.182817362444349, 17.294867451777428, 7.56145715159314, 3.4442344054894956, 4.911568476142524, 9.970703797795162, 3.6646474316719146, 4.269361679678415, 6.1975044952882445, 6.44095532652872, 8.587562996732329, 30.145230630480622, 24.735738666573283, 13.265103335140235, 5.572727125920672, 15.630263789105324, 11.32182099498316, 23.270118065764372, 49.897186617304264, 21.153210554956377, 31.085890135162103, 7.208935032342443, 12.5526167339272, 12.883423289737651, 18.643746203910613, 8.542818824283021, 29.46537509832423, 15.511131699727658, 8.393653388410872, 33.79417220586014, 8.791144358553819, 15.970524377232596, 18.78818959410153, 6.725434191343424, 10.712654101620327, 6.316040349584967, 11.024150141978247, 20.434015967857647, 4.739752994464972, 9.581232946768438, 9.382068200985955, 12.436598977353624, 11.556730044554794, 5.411785089897249, 14.087233806989893, 9.169374611156863, 5.7270060177572315, 9.59690401856593, 6.273811139479868, 6.073835922030636, 16.79355616303489, 10.660580085006016, 11.309450657114288, 8.083510713319598, 15.152068337390942, 7.9816995084893, 7.729462720693473, 6.384288370940956, 14.604181713514162, 7.914770063645139, 13.874081173424933, 3.1910726409665857, 38.21837161531278, 6.148488325098923, 2.8741504814013843, 3.6208692600557346, 28.297380570625904, 8.806912946468948, 5.2017035894752155, 10.860560730380156, 4.009166773209791, 5.167442016812408, 15.481394834958449, 6.056114780604548, 3.052090818031354, 3.137395506730824, 4.122054399179749, 9.604330134359978, 6.520841522171524, 2.9040897277278037, 9.702985706034427, 6.5967370789614845, 2.7242191183050752, 6.309113747781694, 8.744891792237317, 5.414186638562849, 2.2538274106251035, 3.3048844312701147, 3.946746023565528, 3.6106925726586514, 3.148781729883571, 3.6417609549648637, 4.256350089524002, 4.180165585070654, 2.9540970333012826, 2.8063561882468697, 2.9806801333104045, 2.8869436771217503, 2.395024702078488, 1.9953017199617828, 2.051450829506407, 2.225940700573051, 4.35617796951976, 1.7226057879654655, 1.908092615522604, 1.7997273418310962, 2.66558082581861, 13.129401547384214, 1.443104350526821, 1.3745749950845016, 9.787379713281881, 1.308355367631344, 1.2840900533416706, 1.6914100668554073, 1.22799618905713, 1.2138399714680597, 2.2224664451817193, 16.936905457498717, 1.5604992824118018, 1.1867728629757628, 6.892486657464917, 1.4157628238652777, 1.1344855153424342, 1.5727051825354603, 1.7795118176992066, 1.1306433783396712, 1.5181439426090932, 1.4599585882200417, 4.365934387034105, 1.1585375301310774, 8.195114443573155, 1.1149868510742937, 2.3183252707995616, 5.355579861723243, 1.3108128836013988, 4.65397983959526, 1.8438397392708514, 4.961632485359516, 1.6170806418879764, 1.9893016045402414, 2.982663903566374, 1.521496220058828, 1.5630806881970065, 4.259904631702383, 2.8372910771942346, 1.3535776086176043, 3.340000000000002, 18.771701659451658, 4.59048380893915, 10.452256335475017, 4.806758579575216, 14.997696813056605, 18.229546809309202, 7.4918249065453555, 11.1188510134853, 4.455954711021868, 13.154018321560892, 25.17621613659958, 11.40625635207502, 10.525146010799299, 9.217143650173, 8.93513006461676, 8.718343526876215, 5.131168425210141, 13.219782882681528, 7.4450664622822105, 10.86618768107976, 5.861611755266879, 4.527213583272224, 15.975329742898637, 7.841038482411999, 3.903215720150246, 3.453681368090777, 10.308549802799593, 21.728176037135086, 13.578086413338214, 9.692895682820934, 5.610519843930981, 13.380924297449464, 8.375679808145279, 4.051988869075818, 15.182274592575148, 10.3034312880087, 8.30394963426996, 9.946690206435477, 9.201934416655767, 13.905686630866004, 12.654498158910291, 9.724719046490124, 7.87792337453512, 11.85827565153211, 12.438063009058366, 6.230016685401587, 7.69011655011662, 18.189075439625373, 7.500376581601705, 3.262344596587958, 9.197569978190225, 16.6724801073322, 13.574858080933385, 7.658175003894835, 10.743666529740244, 29.10812555517162, 15.157681701018006, 11.907223862102018, 10.226989354029257, 10.441126059445747, 3.3916962170630205, 17.64931681071201, 40.35767864251257, 56.339674094397786, 37.82469585480929, 27.05886992043756, 26.07839830783253, 17.248180203240704, 10.809237919620333, 2.871057977234632, 12.229015854633666, 43.8389841101563, 11.23965098790099, 8.128628979085326, 9.941069945641809, 10.990188169667666, 7.133745499186806, 8.125377988239832, 18.30434029579563, 23.191935195295667, 8.812221735973852, 14.772656520143942, 11.685282605583028, 10.761358339777232, 17.349314149139772, 8.62039752163555, 9.994440703553774, 8.848954050309331, 4.617399980322515, 14.057557983864603, 8.902804860414657, 8.996727428459874, 5.89164261471753, 14.887701389569607, 5.909859776015726, 5.1498952466536405, 11.53309195532743, 24.775948705651484, 10.474698167551006, 10.267223970162469, 8.959884032722963, 9.899621140933796, 9.709642039879157, 18.070940026679835, 15.144357264792424, 5.418505251454563, 7.096322188558108, 22.552616137920314, 4.806880028329342, 9.146282945716004, 11.529080919045988, 8.368385319801737, 7.630417144822308, 30.808036253467765, 11.241109000736794, 8.648825335753676, 12.611016699337046, 11.852450447005372, 8.04920714703299, 8.70884309602332, 7.388926284844245, 11.247671795413334, 8.863405491555506, 6.656801639732145, 7.241700405986191, 22.475259903262288, 6.961039794455407, 5.823166454741345, 3.8146235709569627, 5.809500101553023, 9.020549299611048, 3.699288621769647, 8.63089966962821, 7.964379388535887, 4.745855825948188, 4.700064137218269, 11.43949652983212, 3.6903015553752923, 14.77170440965062, 15.387397636697242, 11.038353882642795, 14.05712398817362, 9.089928534276588, 21.657492348040883, 8.97634448803931, 7.290598587293488, 18.08974469985275, 6.322063529577529, 11.4990947925277, 15.468394402043483, 14.638256660305146, 9.674598930765358, 10.991313695181455, 13.433803532302141, 9.511176608483318, 22.062535236541482, 7.330403852911868, 7.100914436841544, 14.74752909883692, 8.58392343815394, 10.478358930431428, 10.46313654701747, 6.6034010752097965, 10.870452606688907, 10.943449195727814, 8.447977494195774, 12.689791471591986, 8.371660906529709, 4.747314356481977, 5.298110095260533, 6.914880752122063, 6.503686919805759, 14.24168279483076, 6.484032448572616, 10.612630512508263, 6.962997641437676, 4.909476274898618, 3.8491344382066677, 16.253506699821916, 19.489400196612443, 11.158762263646198, 5.079549887757641, 6.08461863030262, 6.970489633225376, 3.6727772059225314, 7.271180528924823, 5.292125963302353, 2.845010144559267, 5.751357705204894, 20.81475266762223, 30.98177105196143, 3.368831336371174, 6.358058455533732, 7.290528420698208, 5.795819699392866, 12.33464285714285, 5.682098519197355, 4.936548083685401, 12.797680480739304, 11.315629891864488, 7.483916982251137, 8.045925423513443, 7.011606723123255, 17.93979120320045, 10.928923410265602, 4.574931784937476, 7.80935397669706, 18.658615079365067, 9.589403663246305, 7.862300065646971, 6.89530548906252, 6.153411965725089, 5.777547370967876, 23.012173268429496, 17.964830341250778, 15.314075809330072, 15.279617987085347, 5.796520197501803, 8.360375472067775, 13.68730965200369, 9.811793862692419, 9.110809814658692, 13.059826089539923, 13.927032956618085, 11.991167534930446, 20.146452694879436, 36.18588135030573, 11.749573205754158, 25.251543340882495, 5.252376268314221, 18.379403285126063, 11.159071088040454, 5.149674317729189, 7.826789673905207, 6.976370949503522, 36.233569555079484, 21.98342672733882, 5.996670588041931, 23.28087551793901, 17.01739794705618, 13.969886987337752, 11.804918552329134, 3.999783766088679, 3.7019483431161024, 18.45510380227663, 7.196263089530596, 9.797325118533909, 8.626053190105461, 12.542793144093313, 16.02487252023428, 55.72663455576464, 6.165100606709687, 14.925925012040693, 4.356768615275296, 5.19231124460907, 24.069678565784624, 8.879957607072718, 6.59005759646033, 3.6074426506215014, 12.563428700636234, 12.937199219548518, 4.290675473289347, 3.4410441470065964, 3.5084481732181154, 3.222792590256687, 9.390429981384655, 5.577623432017288, 4.533915126467342, 10.317875754359452, 8.5791518858494, 4.187512612616065, 4.484566979504624, 4.816209401811706, 7.090664261632885, 4.128148813618696, 4.212589440149441, 5.680452746024246, 3.5753919722262237, 2.5669539625453943, 2.121704905111291, 4.24827001194743, 4.270286903897745, 3.4428665419412696, 4.106328339575756, 7.210720905221198, 4.202215015885603, 5.049265385049362, 8.34484255025003, 3.7751295655813784, 2.8417376944160626, 14.088868025356998, 7.241588197749961, 9.764532488159855, 1.5939674548540765, 3.264732192359415, 4.1561126855600525, 19.305982259570484, 14.77584213649636, 5.70111172367364, 11.470199495961948, 3.9130484657668143, 2.36465532484297, 2.4332400432900423, 9.674352707749767, 8.99861035708899, 12.614830810345241, 5.649269460540484, 14.844166517236978, 1.6481532150819354, 1.3419157306335783, 6.054034662453236, 8.695559973686398, 4.551479685190895, 4.7258952414889075, 1.9869558823529425, 2.8017445390866453, 4.071938084940682, 4.559238095238098, 6.28648809523809, 8.571533228738328, 9.351042066602073, 23.926472605937708, 6.108338056104581, 4.384695340201269, 14.395848879532455, 19.13674988993558, 8.65902900718964, 13.293210933729807, 12.05785450967042, 30.152559536148996, 13.231582951673843, 13.001939380048716, 7.855876671489433, 10.671965236680935, 14.365627268315782, 34.192903737540966, 6.963998972216899, 12.205337561524598, 17.89839042945114, 5.198646726064298, 11.816178132891581, 10.423856698903753, 9.650279287905027, 5.296896822558803, 6.906925865979049, 9.009362340717223, 12.079188409533128, 6.260650511243087, 22.461453429086685, 14.650977729621214, 7.712316850254102, 14.24772685263484, 15.829715558034632, 6.005694118001093, 18.94966800963967, 14.571554761906915, 6.047495275154955, 7.267054002193215, 8.76974060974398, 6.292371842870529, 5.401705813315239, 15.604378928515844, 9.942356092606522, 29.725426248669628, 5.525121629097206, 12.550360263880835, 12.880993780553554, 16.3966466724803, 7.044784175566117, 17.559834231168555, 8.914702791947102, 9.979196712485464, 11.544672609113318, 8.780066307119185, 4.144713685550562, 10.57055282704815, 11.944137187508897, 6.954218292997434, 3.724798411128583, 5.98774587104745, 6.620779327619388, 8.070776526391228, 7.448505485886942, 7.153783060420084, 6.249802050838473, 9.084569592456418, 7.6341960194528715, 1.136052018856637, 7.359047915735322, 15.705250601309219, 5.308721414629833, 13.664263517798771, 102.87484848484847, 51.431289682539706, 54.09645354645355, 36.069523993955414, 27.488660630588054, 7.336938090673436, 3.6301574886945396, 6.305117487986096, 11.063813045847695, 3.808933097562423, 4.616168609186931, 4.823016803898102, 3.8434748575432103, 3.5121584888363953, 3.319735390002278, 13.297020287000818, 7.2960590231280085, 4.4555100572931075, 2.6945160329916553, 4.023861001361, 2.7782428719986574, 2.5170624074649317, 2.668979714533103, 2.0892569399544874, 1.9017302182939417, 7.485, 3.9149381528120264, 3.258968253968254, 1.485575335429635, 1.383370640290214, 2.597941176470587, 4.338766630225033, 1.7182719837803486, 1.5366863264805704, 1.1572555381048828, 2.0255000000000014, 1.0862445556139388, 1.0101987089012239, 2.020666666666668, 1.0110164228205496, 1.5071021349666223, 0.972767415657441, 0.8742023900803036, 1.9366071428571425, 0.9175962458252696, 0.813210376217557, 1.944583333333335, 0.8721233321250934, 1.4458415498266246, 8.392150735294114, 6.334550151972212, 0.8314777059815583, 0.6584978193612284, 0.6295888935334333, 2.4095454545454533, 1.0191155788198543, 1.4656811594202903, 1.2753907520920311, 36.29676879699249, 52.988226817042616, 8.954259696176027, 12.441399352998376, 7.097260863349882, 3.532920758445527, 9.93361252303435, 8.648160092645057, 4.9414207746407035, 6.77139675577662, 30.25046415941433, 7.321922683644073, 17.964614941273094, 35.1143358586702, 10.961320566159479, 11.610096310124508, 11.029412900953648, 141.11916666666667, 22.878530767577086, 16.54992290954257, 10.230088827965886, 16.308731303849587, 10.098791820102395, 4.333101705342148, 4.940182024374896, 13.899803773177437, 7.397737294452648, 3.7942365847185653, 11.013719533515498, 12.308906218283818, 3.600756736633612, 21.050437027635677, 5.923268988106542, 15.541012466870887, 9.340339142563897, 5.592199879412295, 7.548420066693145, 19.6312258399312, 7.113971209950831, 6.759137238053617, 6.721358038813849, 9.070479723680261, 8.866558596171204, 3.541098917660215, 5.293112702453673, 37.68758076749098, 6.991820200928997, 6.6626856916469315, 3.9477406404981252, 5.387352931157758, 3.8198991316087296, 4.593071679277402, 5.495123774278751, 9.9798790828764, 4.667389827518293, 6.233006834554762, 7.095889102409309, 9.533413959375757, 4.629436040210859, 9.13291183237899, 7.413078303715396, 5.706084397542397, 4.6606065116401085, 8.669111897305434, 13.06325017023462, 31.202132352941174, 26.421217846481014, 17.468077439322787, 28.84526763484101, 15.60646932966097, 19.283573817493277, 23.096675759798064, 25.98153619039854, 31.08794444444445, 10.62130845803795, 26.75850561884833, 1.2227139018847166, 17.214639844708987, 23.135000000000005, 11.798833333333336, 12.52466666666666, 3.0635655737704877, 2.3963521680244995, 7.152380952380944, 5.733238095238098, 1.5439750080768064, 1.3629053934652207, 1.2366290937034723, 5.202361111111111, 1.0588289733399996, 0.9896661310169749, 0.9303589629497943, 46.24189416876747, 17.765859499653725, 72.93777596818387, 4.46954761904762, 18.334230898283312, 22.17596355863934, 11.405581539558236, 16.370707343825767, 43.42074070450099, 13.44465924985963, 0.9008991941563188, 0.7929814300754505, 16.439648511218035, 3.809075757575759, 6.626373626373632, 3.172294927294927, 4.071047619047622, 2.85191575091575, 2.6097835497835487, 2.8005416666666676, 2.813488733488732, 2.489816176470588, 2.5045694444444466, 15.59937075677339, 2.2695751633986943, 2.2939290905235556, 10.152111547808918, 2.3633333333333315, 2.3391885713615577, 2.1320760233918117, 31.625087962586704, 1.1215384615384623, 13.020438080287338, 2.1678282924505834, 1.9338157894736832, 1.988336946077962, 1.2641666666666669, 0.9817692307692311, 0.8550212510136169, 11.67729014970482, 0.7886818908645533, 15.354393573797097, 50.83265085731264, 28.653621587873054, 12.900672919700376, 12.376606447155767, 11.426431270923993, 35.410176182203415, 17.791596515405537, 7.317806641088378, 6.8480932191399315, 20.25837586734612, 12.834685747566152, 20.04260658685664, 7.69280932962693, 11.75786424673094, 5.806293994175715, 17.66714170919522, 12.99822478893809, 13.959532572489941, 5.402547202591308, 5.903320078833551, 6.1745725428399165, 15.811302073441498, 5.672003905568485, 11.644948412751503, 22.778596000492065, 20.672890499161017, 34.39494536598179, 9.498007834678848, 4.495281252518852, 24.73321322987212, 9.011814760385787, 18.363131943172434, 35.31403869805898, 23.679220183219524, 13.026091197781305, 7.258643626429537, 19.206809980181276, 7.768549708664633, 12.679493641727365, 37.1349451125878, 10.688822635851235, 15.483367713945936, 20.416741711265676, 28.434235365043172, 21.523528999332772, 37.34061057090518, 12.283054787797365, 10.756690351415184, 12.023714029876627, 11.612650983578446, 14.883302864247966, 11.048161480355846, 14.990282542657857, 27.824190626089173, 5.711058025892226, 40.098524106706634, 4.2377944634027145, 6.873265882332481, 8.410440435762824, 29.313457091161894, 5.012773728474209, 20.87771186889536, 12.464218002780592, 4.414800193022371, 24.906882685350634, 23.50407465707506, 23.097764522849914, 48.301861233568914, 26.936864341710383, 15.339963905966858, 20.930262248254074, 43.86323637253724, 7.89227378611237, 30.78225200064155, 8.244207573681742, 25.015976260021326, 13.46624431986462, 17.909189598097086, 24.41702522844186, 35.94154502976548, 29.190823862413115, 20.110722027972027, 15.212088484407229, 12.380054526087095, 20.20436071484916, 34.14488649616339, 21.68006487574504, 34.311841463414616, 27.392637202164465, 17.274271559149373, 13.844185717670634, 17.634322572779226, 25.137056785234986, 26.397750542528314, 16.3794261075748, 12.364631147851997, 10.567092148177545, 25.89443700404634, 5.956996274740228, 11.871815840584715, 9.064511310325626, 15.768198229390261, 8.37097859403725, 13.823517327461994, 13.150670884075765, 10.639412451321927, 6.67712151361763, 6.392514030968676, 5.511523114431658, 8.075698904175216, 7.707080880834303, 6.359904720371754, 8.446730980186716, 4.9097084465803675, 12.558904137047113, 21.501935649819295, 6.478345902119823, 4.982040658947886, 8.695159344305415, 4.221356361639095, 9.693800301225219, 6.2137990713040105, 6.156912389614252, 4.82426315467434, 10.865972211920866, 4.508191948127981, 6.745785255992372, 21.995361014986266, 4.311845631079713, 11.28550122382938, 11.609450468090078, 9.590990921562748, 31.43659754207836, 10.223854815711777, 7.738308817367905, 15.63778921178028, 19.917399731547633, 4.64909896062254, 9.74012409652731, 20.467493574750293, 10.347544945580642, 15.333992347464083, 17.272914560123002, 7.995698209331934, 4.620121574745688, 4.875063746466592, 12.31048061844551, 6.793920940781019, 7.7518395538376375, 12.070601535421329, 12.207899560843465, 12.608696713422574, 7.913850251787228, 7.255401143921998, 5.1487119745217536, 6.34202947126203, 8.265676172776653, 8.291596041100586, 8.12595661198403, 5.42275411400905, 6.420395410609927, 5.883701788750361, 5.1287619670636335, 7.461573131299129, 14.537457434611593, 4.344618466952883, 7.126178497699982, 13.632088526010458, 3.8778561052746574, 4.5394327717427085, 4.726146701763509, 3.7234854618013524, 3.423687536675494, 11.031585867440752, 4.691157461986144, 16.273219546193737, 4.687925190710548, 7.119600243753179, 11.556040874707607, 11.313767272729855, 12.768608966682795, 6.469662569908769, 20.652547570105618, 12.093313994667497, 5.330303786107955, 9.720069613991873, 5.343171826605977, 9.23510665262684, 4.961773845615778, 5.471300804367885, 4.785454544571983, 5.226421264637623, 6.381625641721743, 4.5461396627206945, 3.5975948774968423, 5.426537549741299, 4.740558284788148, 7.80265704119724, 3.6679760317860315, 4.185237137008114, 3.0848080984890296, 5.738424205641783, 9.743041360021785, 15.387867383707453, 24.089403625810665, 12.356384303324566, 5.758476226459295, 9.683731096011487, 15.267923137722498, 19.704578683166854, 10.179233505048892, 17.060247854461792, 6.883516840372773, 6.473014072433618, 5.037466461473054, 5.483812811055586, 11.277301701416063, 11.545632988759744, 10.182221083458135, 8.38367891667156, 10.018694495627235, 6.493801506880381, 6.974626925265648, 7.019014610583688, 5.494500524294594, 6.732589945745465, 3.454492476892031, 5.331047146751623, 6.2809131107235725, 3.0729912182313592, 1.02992185825591, 8.410085802270443, 5.919671605500172, 8.476704285683057, 3.7991940423953077, 10.382317276114694, 4.92244571605848, 19.024368341275895, 4.846827224919979, 7.863456137334699, 5.0333520184710805, 4.96009008818284, 3.291468018293296, 2.4550666399282832, 6.238978956228954, 1.9820992063492062, 1.6586052724788938, 8.19702087277271, 17.494425182000594, 4.837342349368857, 21.925086549398433, 8.45119008254587, 5.563925582237154, 9.29500501147059, 17.985748132109464, 8.315480718867624, 6.866598932149092, 4.731257631962359, 10.21426933512506, 5.866484083495402, 8.85307932489558, 8.157639722720752, 13.332144142788355, 6.710016714188515, 5.892138438653019, 10.84643216940724, 14.053585700729295, 16.439312583049148, 14.299298614294075, 7.8931879050449965, 6.6712215066335325, 10.296758870182526, 35.9412435329193, 17.10181032597235, 8.247522808722781, 14.504167821667684, 4.213820638063769, 13.080408676136381, 30.258970191320838, 3.460924795032958, 13.535064738171474, 13.145820684302567, 53.54204573707443, 44.50864678365314, 44.51098049240758, 25.17916889489346, 22.7627328201917, 11.802244706621273, 6.692587886653308, 8.079779173575876, 27.911448652516075, 11.05715279327298, 6.319521045827586, 9.55799098982932, 8.68485664502342, 25.94319729834212, 17.94954224434472, 3.4898307334722567, 5.0311902107315145, 6.983507930998317, 10.768174493642281, 17.0774588318517, 4.045390185321974, 6.503116030087162, 5.0814971324299885, 5.013612059232401, 7.183332693414658, 11.71384258262563, 13.021910527095304, 8.240549688927494, 14.219597870323415, 8.515274153571614, 4.0704233016633475, 3.064421045229184, 5.32907638754605, 3.2145228441787723, 4.586687287297177, 10.584873047623624, 3.8618576822131, 4.460493638142745, 2.721891434805997, 25.232483300079938, 8.62378802993794, 3.975588771869712, 5.287113377942767, 7.614645463479219, 11.451367632307024, 30.45287770562772, 4.153126052557081, 12.37492179783696, 4.210680723725836, 5.947735524652819, 2.764387890668955, 7.8298845591251744, 5.810184878527267, 9.568875648765045, 16.009438639759924, 13.012647291804408, 4.131233710170228, 2.525046351950099, 19.354617043481994, 4.85694502743641, 4.2205473651793515, 6.7789904879819485, 14.10248602750665, 3.6868461717628875, 3.432089829010169, 4.008485272060237, 3.8978196288105655, 4.8189881132237575, 6.499553395437163, 4.699512680080049, 5.317292802834877, 2.706122198736529, 5.1383673948290784, 4.685286634469393, 22.063028506066395, 4.4596866778659106, 6.7714114945831945, 15.639597138002042, 42.81198240811477, 34.31154741226515, 25.500909312909307, 45.15456084313005, 22.23808374270675, 16.748790836356633, 36.00175919342095, 16.428421682634536, 23.001429121352544, 19.946559771557688, 18.34625445397786, 11.149032054692068, 4.024693396392563, 4.155208284256238, 5.731277761082405, 3.885413968438369, 2.840776083192195, 5.199380613073656, 5.1019643659048, 4.1558998697711775, 8.78720422506652, 11.119380999117846, 5.121475234371085, 10.81304104272723, 11.767575460766528, 15.480671424223623, 24.11243709095552, 15.646976246684565, 7.357586795241217, 23.177553898878898, 20.385327194394513, 25.22517414512726, 13.37400708391706, 29.007525020227988, 14.27575893071851, 8.392738355278253, 9.740672770531107, 7.523811901797325, 7.065362736370635, 4.339270955790387, 7.911632060975681, 7.434641266901803, 13.703594834829346, 17.12808045298226, 9.35191840137004, 6.819185890394815, 18.10091422630373, 9.210399498148362, 6.070657740624884, 10.65975345571015, 9.44106074986706, 7.0814737756122454, 14.71019828935632, 8.590704606509542, 7.303559194192596, 5.786662625139241, 7.17226528191349, 9.645496773081295, 7.956788197752481, 9.12488697135823, 14.212925134841928, 15.316029606355558, 14.918354290816687, 7.022098820180295, 6.0882842419308, 9.391956117688991, 8.618552691465629, 9.173592158152799, 14.619698625754754, 9.42396229061828, 13.262218501867435, 8.137279734464833, 8.749766394613578, 13.91934533927471, 7.236629087950007, 20.425596193691522, 10.449047941488997, 7.2499822035933565, 7.68234159738692, 6.970166840429135, 10.55201735177062, 5.139253811860414, 5.071729783861045, 5.750411979055963, 13.684533302690824, 8.179525883012916, 9.815167781564838, 7.885377371373967, 5.8849196018120145, 2.3299386922744025, 4.620441622340927, 3.3845858173967494, 4.268952347224587, 5.185314453466995, 5.982417622963162, 4.658553108422951, 3.8199333729912976, 3.7756268600600515, 2.915024479896921, 5.064811155984935, 5.837087847675806, 1.1849462688275512, 6.063606364913379, 14.935863064219463, 4.718808895549375, 7.076081873715713, 6.857071310840358, 4.819131298237799, 3.525029591075802, 7.175024639463178, 4.301571428571426, 3.606102228085924, 1.0119150494671265, 0.9410903852612074, 2.696692962321722, 1.2006680454500809, 5.157018711491839, 5.189983010948515, 4.936381052354831, 2.612019589181387, 7.647395338648276, 2.600532383466206, 1.3465001662044973, 0.8561132173760728, 2.4161822801445747, 1.2479710451862795, 6.926347178381616, 2.4902383091318345, 3.775657894736845, 6.877545915191617, 2.570064771331361, 10.430072361131401, 2.02503998894067, 7.748687347686732, 1.6591374253225608, 1.2521835129431846, 1.2130025158624613, 1.183229708867639, 1.122629091115248, 1.9207670454545467, 2.4874448616862264, 1.3347567471954578, 6.052482327576494, 10.045942792810903, 6.029999999999993, 1.5154728383234908, 6.899511092732654, 7.67256070114319, 2.673272924007253, 1.8571804873868571, 1.4513470564965025, 1.2149828691068838, 1.0737280286319202, 8.93506967177587] hash_d32_k256_l50_n3 = [0.0, 1.0000000000000007, 1.0900000000000007, 2.12, 1.5150000000000008, 1.1500000000000008, 2.3133333333333326, 1.539999999999999, 1.9308333333333323, 3.528333333333334, 3.0426666666666664, 5.404666666666662, 1.3908333333333343, 1.461500000000001, 1.393333333333334, 1.6815000000000007, 2.677333333333333, 1.8240952380952393, 3.070666666666666, 2.7575119047619054, 1.746250000000001, 3.4634801587301567, 2.4395158730158717, 3.7325725108225094, 3.1082777777777757, 2.672607503607504, 2.6084130591630603, 6.116404761904758, 3.713297619047617, 5.946948273948272, 3.3615191197691177, 7.236096264846267, 3.2555013042513035, 2.736054168054167, 2.4410222832722823, 1.9497837301587313, 2.211550420168068, 3.98787554112554, 3.330204545454544, 5.542714285714287, 6.287928196158848, 3.0089963525037042, 7.465478864272982, 3.8842025197025203, 4.290253685856625, 2.1120412014885694, 3.561309523809523, 10.9217132034632, 3.87459453046953, 5.515537878787877, 2.5761971785524427, 5.31799386792744, 3.0506058108558096, 2.400618067433083, 3.042607614607613, 6.330860315827962, 2.3758198125403993, 4.256863671175246, 2.72490723530855, 3.4156214847244257, 2.7423578454225495, 2.323466477966479, 3.8282845035940993, 15.55679440785131, 8.241096286563675, 6.070402377739217, 4.718858436852999, 4.599965304303538, 3.651288453213452, 18.513767399267397, 3.7878288644695703, 3.462804239133185, 3.56905432560271, 3.4497387539996227, 3.5124505661999272, 2.7349476560337855, 2.4268977148688817, 3.2830779220779203, 2.701842942732647, 2.801322869019026, 2.3353071672829815, 3.0528692654095124, 2.600513768593224, 2.0675959110309203, 2.5878429390381523, 3.4249816872042254, 2.3740248914648316, 2.4128429261559696, 3.0185413752913752, 2.06526989672968, 3.6415627928696397, 2.786576225431878, 2.1491209451316986, 3.034941758690618, 2.9276476821603294, 2.7009921966137447, 9.31148096315449, 7.281802765947504, 9.645760767010769, 7.789106003645476, 6.728564978215871, 5.884561137072639, 2.8327318657219975, 75.92744631185812, 2.1063682770588104, 2.30213945082695, 5.183125396825395, 3.0842684001207736, 3.1034482535600945, 3.481621207011233, 2.163027892410292, 5.3071259946949585, 3.0845245493167512, 2.1757340666784644, 3.313481229726585, 4.241571789321788, 2.147932125900908, 3.010497720770806, 3.1302817870255097, 2.3668549039905815, 3.2946081848820774, 3.5843101445274774, 3.8437660560895828, 4.636506625835166, 5.5840450060626985, 2.213394139194139, 4.359924990332247, 6.157937756370763, 4.17332104332449, 5.087113537301749, 5.2229260926712175, 2.7906086785353588, 3.1640325928965636, 10.409626238040323, 13.500071857222105, 8.231517836431042, 7.963635907174485, 9.58904314009004, 3.9487769247431617, 7.7451080280603595, 5.835807951380003, 8.386338437363051, 9.190936793917913, 4.809838707020381, 6.308538618166415, 6.59034021470321, 6.073359023383169, 5.830616879482815, 9.264214699894934, 8.214274303607633, 4.4122402951078135, 20.321892203988114, 5.887172595757688, 15.881573820382517, 13.23433628800445, 6.938677776313332, 6.758637100383564, 9.454535780318148, 6.802352546454964, 8.897534718244096, 6.107307207013783, 5.792191087707041, 6.986019866575817, 5.921704129787615, 5.129418967749392, 7.858646817369826, 5.4743946204889475, 4.525158554746769, 7.773086288662804, 11.586885745159028, 6.8060612293410685, 3.7533380789081017, 10.6400946460998, 7.10823674438025, 5.6181329146983545, 6.686938106681445, 5.225702500479567, 8.041965311961166, 5.781212269327482, 21.612965645465646, 6.011119202168527, 6.389750929074009, 4.614934554747455, 6.446101528359554, 5.488968686212186, 4.66101032456373, 6.396098266709312, 6.720184844934191, 7.122370560424079, 9.997597970338541, 6.4424095120021585, 18.080731884128937, 9.52248810193638, 12.556815448484054, 10.491999472749473, 5.573627797014157, 5.65480943047385, 6.875427191049356, 8.538536570618925, 6.309548866654973, 4.584430845732961, 7.779686346895999, 9.663873511035126, 13.90498269389861, 14.954710895342465, 15.027827624017473, 17.20651397393456, 6.870119971870441, 2.3054808452940474, 2.010040462501942, 11.162309491549038, 13.147649721631781, 5.60554958044742, 8.418049561291024, 6.61859306699398, 9.094469056219221, 9.934259397572374, 11.643320845820847, 4.054548945408198, 3.347500755012935, 8.58530876551303, 3.1392476260249853, 3.477869278818238, 5.757909431100606, 3.0361289956238675, 2.962109517168835, 2.7733086234577025, 3.2767702681964392, 5.263268798216974, 4.400990965174859, 2.483022536527896, 2.8282889804987494, 2.5423161010444506, 3.3694652057341017, 2.3090393367312223, 3.387519913325568, 123.54542452033257, 2.732242341203102, 2.810439416248068, 2.5320613578129723, 3.958028911987414, 3.141219334759006, 3.3507957041111065, 2.769549167822666, 2.9977491485123053, 2.155926314245318, 2.5672323652223317, 3.35899876087105, 7.34752330856278, 11.631442025602508, 11.432554173936204, 3.5425767822219054, 3.2265346330402083, 2.6840264988531555, 3.991888269151629, 2.723950580767692, 5.38386456006611, 6.870601851815863, 10.085694469025993, 8.113039016443379, 2.586308271614407, 3.695321083678225, 2.574673029156054, 2.8321443512552333, 8.782149175940326, 2.574158106884529, 13.41555438890634, 24.91114639302072, 27.566879308982802, 20.068027970829586, 5.786701450653047, 72.14147240130848, 12.76879892504724, 67.2050710394678, 54.508259187207464, 32.90181042355477, 41.19365139255308, 27.696734362447938, 22.582060233706287, 9.273705803121135, 19.069210884816428, 18.289597072991388, 27.90701026448713, 16.794773516344378, 8.817114307868025, 11.667518188037608, 15.295696917807355, 14.680290131321996, 18.62906574732756, 9.568222889096234, 233.79662500000018, 11.332809042310803, 67.17982211651965, 9.702173214844835, 7.725283589838928, 11.416393241900213, 8.19988993386491, 19.310536849460846, 10.501035168979842, 10.61379666886361, 16.08775207096861, 6.675055082632892, 7.81068196613812, 6.112732980667522, 8.36745516723859, 8.28559724506679, 10.58645375968507, 9.70010458024163, 21.414790408629493, 8.294013820223784, 18.649873955646576, 8.21489163169185, 7.627587212351086, 13.483091989207436, 8.66239159936907, 6.396185771688206, 30.90805064527597, 92.48019712859389, 99.56062854440019, 21.377314093447588, 13.072957513937043, 7.6899384478541934, 6.140084097363058, 12.159776786537734, 6.570857435568309, 6.811588155154275, 6.163012962902497, 33.51741148124895, 15.22324024517986, 20.98306236144245, 9.427740608450021, 27.09913380021096, 10.222624289364981, 13.665077005714997, 28.171261008750253, 19.07399662296859, 15.722031847392172, 29.396767468444253, 16.21970851896929, 22.91454552370574, 19.350503288804216, 11.933472421404966, 17.925828776345124, 25.88115370542156, 7.92269840471226, 9.778649257188782, 14.274121208318732, 19.984971037416685, 14.616335396989975, 7.187336544027468, 10.447439425490565, 11.68356737418804, 23.062158248335653, 14.183480571451732, 19.04502595258418, 19.021618277642435, 7.6226943776574, 14.980094690369464, 19.50109545379273, 14.800665591202746, 11.632893520184002, 12.074857019278923, 16.17079563492063, 9.02314810560466, 8.2708294958033, 12.770132100226911, 7.606308639553889, 11.977129060482001, 4.8591875360669405, 127.80611351611351, 22.493755821089973, 11.681731665158798, 4.844992849418231, 11.399781815968039, 8.53375966792321, 12.018093184593187, 5.381955308312314, 12.366034889033825, 12.244516663132746, 7.657643018582722, 4.170483849732326, 4.376954607159505, 4.665354276628274, 3.201764630274014, 3.8442245114985223, 5.942413778420069, 5.277799965397511, 3.081726890989027, 11.389728899499982, 6.137074295769859, 12.846503512010866, 5.626971994379889, 4.271443175168175, 4.442894241775588, 4.83999096325542, 6.010689218444599, 11.000158317282636, 5.787332611832611, 4.062041481572417, 4.985831190969444, 7.720923132964633, 8.121002472850984, 5.988733061127187, 16.953759930803795, 5.902815260723822, 7.01359496351146, 5.865788091115435, 11.772904777076715, 18.678569773466535, 19.43201500057373, 7.080059889767329, 5.925417516351763, 8.02466720366998, 5.591432717752751, 7.29441951632053, 10.286956613762275, 6.451996006584997, 9.478325229452837, 16.80325132755086, 15.254687493227392, 16.80496073770103, 5.309570383831242, 8.37359300796242, 7.156966745469001, 12.146875303049606, 7.453063562779806, 11.53988956598734, 5.763919677083507, 6.951042317068228, 16.46551926896633, 15.03784200586136, 14.534596848483345, 5.335755195986518, 12.214351975918957, 4.822442581714842, 14.499146305951514, 6.733163664954866, 6.614007241648431, 7.941293568571039, 8.261490461880895, 22.69682778588411, 4.9785624823380035, 179.41711111111118, 226.80780303030318, 218.43583333333353, 161.80669230769243, 152.10940476190473, 142.55014285714293, 99.29511904761905, 13.9476152277854, 12.606594307809525, 6.247703765296349, 12.02767482913357, 11.795999521762948, 8.337244109663814, 9.668409826534651, 8.107450680945147, 10.035558943679048, 13.312910252330534, 13.265834623671639, 4.314055150404484, 4.175965980270432, 9.134288520863047, 6.470958892114324, 7.367834001363331, 2.756716426595084, 2.960205127048068, 5.599413440024306, 7.817351748522224, 8.061941590227843, 4.4392279261569, 3.2702046001946656, 4.500586907256879, 4.707080422534173, 6.937968308750015, 3.496398196610151, 7.361263896016987, 3.750012821662614, 2.5244765215596625, 6.77318533126401, 2.572056112220501, 2.996938593930573, 3.8767688201783597, 2.2680341670979236, 3.4115138660390563, 4.66296648103906, 2.7883662351417375, 4.77709138870191, 4.92561215791817, 1.9929078632352504, 3.7478735021788414, 5.836272701316732, 12.368252087811863, 11.164063290293281, 6.621229301175821, 10.894632027903205, 5.58007560466469, 3.575972595404564, 5.422764353598787, 4.058762500911988, 4.310528063564384, 3.7538112698375983, 109.43433606731426, 3.144708631235968, 4.7975853101564665, 5.298212207308926, 7.206858441292485, 4.5932782088093775, 5.892259545084066, 8.81678213749931, 4.438365366814858, 3.9738754184491847, 2.8814414352092212, 4.940899349773031, 3.84609787656598, 4.874052387026457, 2.346325434827407, 4.139489667403588, 2.595308606160809, 2.605600777910915, 2.8542368734246435, 2.942288476222172, 2.196964256862092, 2.8558941763202026, 3.2173300047534044, 2.1817307760057907, 2.9989385868319416, 2.6085018045162003, 2.953779171463602, 3.474341279181449, 5.405669034425291, 2.1017793397707853, 3.633535912728738, 19.921797473189567, 27.24553664578078, 10.160093998098661, 13.57622098991915, 6.482088262117104, 10.894227477864282, 17.195017394059658, 9.495698680545074, 40.682585049418925, 7.910280655905923, 14.533108771938583, 5.6132510265862035, 12.121457790896274, 12.732643648830765, 25.51317248723799, 11.775293371936483, 22.582811938066197, 6.510880472170697, 20.73428183103195, 16.649999686325014, 5.780773101379461, 15.771809180121444, 5.847362900209909, 5.85606523138643, 16.362340900749327, 27.804967833294217, 6.196654390555582, 11.288212297671045, 6.803701414829073, 7.436343182395267, 31.82724429334371, 12.815674821448141, 19.34450839519202, 13.939263924719148, 17.377409753804645, 13.155574046525086, 5.373188682987699, 4.315722725015533, 5.3027197863632605, 8.903940038209079, 9.052299272667657, 11.755063267212922, 7.468723263802141, 9.794939566816177, 8.602719699026856, 10.434472946241256, 21.508700095478407, 11.715782961821395, 11.10485655103387, 8.048543518088257, 8.69948640088955, 10.158368092299632, 10.454991362094963, 8.070549833470345, 26.304049125129783, 9.534293848061274, 13.170628343083488, 20.049273425738377, 9.229522482740544, 5.246205904787879, 3.344617653860643, 39.6756565934066, 6.3341779817862385, 7.5002118546795, 3.6389491445814333, 5.912730904232282, 5.480672698787158, 10.170869615828787, 9.961845238095234, 5.008078310970912, 3.5463556824184486, 3.426625196178491, 3.7323549360429586, 8.594524505987739, 6.233728946863771, 3.3874086452288887, 3.678057872597882, 3.9541622443232245, 5.386149194062449, 2.8829585146312486, 20.87034505309505, 4.042827767076848, 4.0821004912544385, 3.9363931615109715, 8.091529961713022, 4.638652552348142, 2.4640678652885764, 2.264179471442502, 4.216581697858328, 3.3856669398627255, 2.3971809047538586, 2.8128696546831833, 2.5476535380696586, 3.1878597678774674, 3.730543918754636, 4.6225370800990495, 3.803473965095569, 4.714519225657435, 9.672788297778805, 5.452693770289524, 4.799651826291699, 3.839889933365682, 52.41792485243523, 2.289834483244712, 3.3180843057407836, 2.009341818358488, 3.556996955342741, 3.0527114680327605, 2.0963996481812, 2.630641817895791, 1.9203529344726307, 3.283556565063935, 4.240973884583912, 3.720453840223627, 2.5716293075942604, 2.3794248760565435, 4.663171544824877, 3.897500657994821, 4.037679675219406, 4.998341277421363, 2.475486065986171, 3.8117751875368686, 2.9119450068855297, 2.290676585109843, 4.3425207516883955, 10.721299539170506, 3.0347188062833106, 3.7195688925480948, 2.4133831092729765, 2.774923682526624, 4.82789640694995, 5.451662469012432, 3.6463043075695833, 10.602574820694212, 17.180714081729842, 10.632488371036304, 6.672991165059031, 23.564427650882987, 11.815618116764146, 11.664138543474877, 10.51445003696698, 24.24164961883746, 6.8183297426875, 6.19683962677287, 7.273477526773572, 6.074777186480598, 11.093381905581579, 5.8922497084670065, 10.471341372868812, 8.180075390850819, 6.354275548767677, 6.884372910063017, 9.333808780731687, 97.47073362722588, 6.039111853587412, 8.990142721836186, 7.220545298971335, 15.413822794868397, 6.63352615620337, 6.648112892729566, 7.5988295394367285, 6.956285976253027, 5.384479408839082, 38.40079766305894, 6.111762410689039, 6.5018692672424665, 13.09921743280576, 11.001620655542565, 4.735228821273517, 203.1066666666669, 5.732108110428765, 9.268205059345641, 14.824266375743878, 4.600945089807059, 5.442897269029907, 5.750837026842455, 11.793564466971173, 8.85089836973203, 4.563834615752229, 6.374454281450483, 12.751568360307706, 15.910690045814773, 33.83714364119474, 8.518897327451782, 7.754835325252568, 5.811568204986643, 6.584679262506831, 9.217640914321677, 13.11679817013827, 8.42262661995569, 7.383528054200256, 13.559911059984397, 22.949885077939264, 13.460750719143142, 25.032720927367897, 27.482302223295562, 12.078561193246532, 6.368366575255996, 3.9243163748796497, 6.977791663268173, 6.688005555106815, 7.946405012886238, 6.207762838343015, 8.335218745128012, 8.916073423605898, 8.194086639447043, 5.627754264015842, 5.859503524215254, 8.326773546010909, 4.2825393946033445, 6.9280435505290185, 6.482970468982888, 6.577970713926596, 6.0657887159177974, 4.397076040474696, 6.238733878725647, 6.1595602879388975, 4.117535035784895, 4.2495758763343865, 4.989773752405597, 11.772085883283033, 6.044233386671459, 4.806252389868208, 4.997479259870924, 7.695442539082232, 7.324479898265445, 5.287093328857359, 6.922726869402004, 5.256760610449449, 7.070288637806358, 3.7010998383640725, 5.114386941994365, 5.6931687136038125, 5.390778901684122, 4.952481032478715, 57.3173642135642, 7.415354707696811, 5.274525438282471, 3.501772096610471, 13.798790489289434, 15.76749574148038, 12.108464439595554, 6.021213809959071, 197.5833333333336, 14.162078669802774, 13.784751986009146, 6.729945728265238, 11.967946829851138, 15.78238387813957, 6.175720454393972, 6.806860092939293, 12.79947132100359, 7.253803769825364, 7.888371270804771, 12.682688777739454, 9.794674639103588, 11.832056451544899, 5.672888200327971, 4.930104149854885, 5.772295475829161, 7.186845050476549, 5.033569923078307, 12.252891646152367, 25.912767744578577, 16.764062904774743, 8.331660644673377, 13.144510132350277, 6.6329343723816185, 11.726637620671545, 6.72461323172834, 9.493614955967425, 5.740691724249418, 8.252192549323027, 7.0456293777052466, 12.76455197528353, 7.326304215050757, 6.2272896856494455, 9.872481531539103, 9.170770954360096, 3.516742686069265, 4.027501682062187, 4.33420753887344, 8.007853570696419, 8.320979457728969, 5.388129122528906, 5.560541692379456, 7.190292011760706, 5.316419262548455, 5.879687602950022, 7.551832909565586, 5.7835154443409555, 15.776693353746905, 7.387327116147989, 6.088165471028899, 7.016254406329624, 13.480646943876943, 9.895780914668027, 13.883621120480608, 9.004187008790163, 10.868238680352528, 10.975186291244116, 8.549907367901405, 9.675466654551414, 6.180710791862003, 5.598023673031035, 6.079065323200192, 5.915416468902675, 8.638147433515563, 8.554562689576924, 6.233387345438505, 6.956922369095511, 114.85765059940066, 16.772650328898496, 5.863221157193661, 9.013725731835123, 9.29743036959563, 6.577041390678465, 10.184986240067117, 7.5776679194230745, 5.586876288946867, 3.3657366232420762, 3.9078079879677503, 6.733511562004715, 6.200802149549672, 4.03329468212808, 8.186833259735398, 3.2691160126722107, 3.978729961409662, 4.380228297828483, 3.535521072069051, 63.7372151924652, 5.356039174477171, 3.311198886701477, 4.461024262065566, 3.618102382367243, 5.13014871759351, 4.4113815963992415, 4.216675618639779, 3.271960874053684, 2.7640731135023957, 3.3465663685823586, 63.18750761330174, 3.721243084076732, 5.010748443290978, 3.814592872472566, 3.0676932773132006, 2.2425243045068117, 2.96860145853792, 5.857140464930785, 2.6628003421499327, 4.987650264801555, 2.610558186051085, 2.7732701051534976, 6.11099155507759, 4.118658655419748, 3.047625225413282, 3.5317440609499426, 5.041092771789769, 7.491730010185892, 4.08322763215651, 3.458904954641373, 8.05096741788456, 3.0824863416775004, 3.948954726856201, 4.377198531747033, 5.880178198570688, 4.176131292892275, 3.448411196382824, 3.002174130319669, 6.146641571331208, 6.274239154791482, 16.890363197867313, 25.911282991491365, 11.475863902125774, 24.869950406283742, 6.943011853197707, 6.682489692702467, 32.25389852782129, 7.569447720110227, 6.596486863247998, 6.441094001254892, 5.180998119413391, 16.529528673216884, 6.550369470730935, 8.490837985732583, 5.308739521300887, 24.571468481708607, 6.558543120047906, 7.1761439259304645, 5.921763502779809, 6.2770458779607985, 6.271642639516986, 6.08237219168299, 7.219566852693674, 6.415664442061481, 24.436594310897753, 4.806115542601821, 5.5882301387937385, 4.731762053720882, 7.382627134869248, 5.572424457887996, 5.002239517507644, 4.559660606301763, 4.7490847211685585, 4.774004234871994, 5.84774250889285, 5.758467471074455, 6.08877731013904, 6.188729138203112, 4.981258170485328, 7.048637587105919, 6.820745712150434, 4.570764487517316, 8.044867590164174, 5.748187942506993, 8.110318360819582, 8.835648185455767, 27.258500022707693, 12.516087733099715, 21.390863689153797, 10.000686637822456, 20.280390561992927, 32.9343419294703, 11.241213382995367, 9.999595613348362, 10.265370481283943, 6.591512689258242, 9.95555385581848, 6.694289954928112, 9.138611483789115, 11.534191123220893, 11.209596067383709, 8.516326667984861, 10.967376863006276, 10.079719260290174, 8.65257935169119, 6.340987888942622, 10.749896334254315, 13.225090798090799, 7.134012187764156, 8.186059359098135, 80.79203794843502, 6.544321774775726, 8.108343705232334, 2.6253085043001185, 8.85359595055716, 5.379291636012763, 6.708782488987305, 6.862652862116748, 6.186452383691935, 6.798816902503241, 2.629913434792413, 2.6897125863622553, 2.710550576159876, 3.23627481511483, 5.634795453299574, 2.6896113024113193, 3.2368780343034778, 2.785606825851121, 7.515777015990425, 5.698198548468469, 4.174123732701123, 6.145087793609592, 11.181180078159615, 4.905148253610176, 5.119767657286932, 7.265956063829009, 6.558699581196834, 6.704795878741109, 3.028641247573605, 2.840136591937915, 5.021798603605082, 76.16657290405094, 2.4730415828363275, 3.432819925874183, 3.0345649881342327, 2.405077058331528, 4.811592048474399, 7.069786769503516, 2.482975002573922, 2.7611514318066637, 4.376712225548706, 2.6506698540429223, 3.487718716886084, 4.614093041741872, 2.8253963348905917, 2.967792713766195, 4.155089163597258, 2.6028585661869714, 3.9476298111418844, 6.073711921636041, 3.059993674312621, 9.21888947777966, 8.889517442794487, 7.953475502425969, 6.467136464896114, 14.082822508006885, 32.003501466511466, 90.08327493696534, 30.682235674942213, 18.829790294212373, 21.114640894267282, 21.898883879278436, 19.914317487182583, 25.972661937052276, 14.438532623170984, 9.687283605658804, 18.32004030912631, 38.16345798779091, 19.00066794048715, 33.74088947160223, 30.052423637502386, 20.878223947166834, 15.835501411751288, 17.757188974521, 14.107168077033476, 12.375129390725458, 9.87542071457629, 10.95112967201085, 15.49571900984812, 14.166737853557526, 28.540337954898014, 16.33385603938332, 35.20428602822693, 35.27047428298351, 23.944285528601892, 24.000751350347777, 18.797155334445918, 18.864693708333878, 20.912114997402742, 12.382416492515796, 10.598818458613849, 11.956527112313932, 23.101725344591568, 25.77582398557077, 10.916245859607262, 17.51086893931934, 16.882995322846952, 14.027230517867638, 11.681388695311055, 10.152517793180268, 12.81533292674176, 10.58954607342579, 11.331332948706917, 8.514766084740877, 17.92593388519835, 9.697688789083896, 8.79384857973685, 25.125577567042562, 12.71487154186888, 12.865502987631675, 19.67528407011034, 13.84070801813835, 13.407124445590634, 14.850140226646584, 11.366372632007756, 10.306864099562127, 25.54957025879706, 12.370031622061681, 42.92106339448072, 20.6501804037904, 22.418791501465368, 31.323814577330147, 12.915753304149652, 19.496226737501733, 29.428727664475627, 9.440295894706315, 28.01552230167924, 32.71266008771719, 32.19404831722947, 27.123749627187397, 32.13566705710439, 12.67365848983596, 14.346567628654128, 28.868001591872932, 23.449566894407383, 12.519522718053675, 15.217396674191484, 19.837161566277356, 8.340822772987451, 7.972587270357597, 20.119873979210723, 11.578569830595846, 17.7705427167529, 19.591265952218322, 13.342387448095705, 9.366572241987802, 23.563791931009597, 14.534476076239084, 13.581490913602167, 30.49221692850134, 10.26953002975096, 21.916700030729515, 14.38681103443776, 17.860586930604484, 10.15542328395617, 8.37650591161743, 9.088941038645325, 19.641075105669852, 44.654367650060784, 17.426735674048174, 12.940251336278443, 19.622563821534545, 21.115862841556144, 21.70216363464578, 20.5841792883043, 21.903068629866876, 19.62668922522163, 17.594754921806782, 19.00479029548833, 16.70540726616347, 11.274369410345415, 8.672990797464609, 10.370414238075405, 14.69723180201494, 17.304231930449955, 14.682895117951979, 14.708310909733465, 13.811722864624352, 10.083429073960152, 10.010328957681145, 12.05437161038771, 11.02361302943965, 14.922322517760014, 14.002305917276448, 9.41621378650608, 13.601558107217754, 12.621931447801384, 9.530969465732118, 4.82558892384705, 11.658946370398137, 7.770748728763732, 14.900098450783558, 17.88988524139722, 8.320707122393287, 9.116418426010846, 7.56016101644848, 10.538061621670721, 18.576108661539646, 11.772512415482899, 16.113053438756538, 13.255818821345136, 27.245029385699794, 6.604299255357088, 9.185349212167663, 9.042363560137224, 6.803329432891379, 12.8165909234586, 8.651697692648561, 6.421548394013397, 4.957771634421631, 4.324435796764297, 3.269503023332442, 2.9540849590491893, 4.21516533116348, 7.719949310178413, 3.049098928036362, 2.5351845399958095, 3.71688933761996, 2.9878399923619052, 4.2970866979704265, 8.246420413542287, 3.7881652547935825, 6.270911423214458, 4.3986074055537046, 3.8779147716602647, 7.353668702215594, 3.99395922131253, 3.9500020431368954, 4.786449494370856, 4.372117073714009, 4.284942340996653, 5.387576379298405, 4.852397731548879, 4.72926878128611, 4.358561935081263, 5.846464411755635, 4.290790037811862, 6.46045163245191, 6.1605102073541245, 4.730866756625559, 4.5230091646007615, 4.898646462954619, 3.9795464517832166, 7.411139291659188, 5.474883085909899, 4.262991891767048, 4.7857770144756895, 4.780879052102178, 7.667363052487999, 4.758049566138661, 5.18014802480716, 4.617007966318448, 4.0635614316155655, 7.162834315903396, 5.253957999148226, 3.5570655438940917, 4.458166026664168, 7.027856091955111, 4.9210440359891425, 8.983084296527839, 4.095378921108821, 4.491909978011833, 3.762078004900625, 4.035071829387172, 5.703208535329113, 5.24888371231277, 6.241369372406646, 4.47678804512481, 6.922625746350806, 4.329321858861424, 7.032304714456122, 3.270492621651343, 5.310004193390026, 4.071216906296317, 3.205022333471395, 4.050269776057215, 3.7830571666416777, 3.7449316971626967, 3.4597727780616796, 3.8395126056048965, 4.648942460238199, 3.7481367870567857, 3.8224082521835125, 5.147144388318815, 3.589938187724625, 7.019829616807324, 7.30341609970489, 7.978060570951242, 5.050048252092467, 2.8084259335007156, 2.697095682340985, 44.12541282682419, 4.160524154586383, 4.92033763772865, 4.508773368241311, 4.430001144390256, 3.8534072824963195, 4.604089157702555, 4.424604055706047, 3.9619200255626716, 4.419174289095233, 3.6503794149168387, 3.5725137736101966, 3.7119637388688576, 5.353081730919576, 3.2510015884406123, 4.5875066429666465, 3.5053937707527867, 3.5860483587533283, 3.9613956525028304, 4.381980236609789, 4.343163823230176, 3.419186676999532, 3.746788046088264, 4.584552000488004, 3.8966853085891975, 2.890472264491855, 3.7865880596858843, 3.036297384681519, 3.68600808497936, 7.316171450360225, 5.915286657128802, 15.685471766915741, 7.231970252381743, 10.167263096385218, 21.97212523638704, 19.12210684070766, 11.853028739381884, 12.537191591766286, 6.155930833069234, 10.163760258619925, 24.284193297525306, 11.868038072164495, 8.747265919752076, 223.36125000000015, 11.306446358056867, 10.694668510965661, 6.094918885759873, 6.738650693535411, 14.902987191697134, 11.71213360047007, 20.63931095103713, 13.636307840661697, 7.781999426927651, 10.945085164831863, 7.985677622070796, 16.88720478136853, 14.791143778968657, 19.367748602897, 8.60622089054008, 7.743168568137454, 21.99676790658625, 13.55897447491703, 9.00631057340899, 12.241783963784961, 17.593469541594132, 10.23787925565746, 9.212067026477577, 14.365417863894608, 9.230147012586205, 6.968483539604391, 8.988932249911525, 20.713480640364548, 12.162684550887661, 17.001709969318025, 11.25478884997821, 22.701908101190735, 7.11232869581734, 11.744391255555984, 9.998207214095867, 50.368967203864685, 7.049066843472592, 10.916998400190229, 12.377079463332532, 5.732505291589879, 13.167218394425987, 28.84521390962693, 7.880899610963003, 10.357146483700589, 7.390902055285741, 11.142020497634558, 8.49721510627337, 10.390750656556499, 6.4143565279431245, 5.9854338960412035, 12.351300636519586, 7.393081955125382, 7.760250921503331, 8.551598066978114, 6.29653707163525, 10.246828737302478, 12.095265205868643, 11.498303790632752, 12.958439560363045, 16.269153646044135, 22.669354490729184, 4.502834934191804, 3.741932454817376, 4.2632239330157615, 5.063055631854469, 4.540292814451961, 4.916972169372544, 4.195643281163075, 4.290937149428429, 4.871638413786152, 5.170397621108421, 7.114914853465746, 5.2047457729776125, 5.069516819837095, 5.025026168516579, 6.288675115054021, 7.7027413776780245, 4.404684478780423, 4.716727339384338, 5.072006437389995, 4.685114058160734, 7.458567800108031, 5.067846878015054, 5.09029585962284, 4.6051108470552435, 5.986183067472016, 3.5003817886669433, 5.032355603384957, 6.65477930484451, 3.6474405379647195, 5.8851551657249, 4.907383231149409, 4.470375169215793, 4.60927567756645, 8.649660590871113, 8.749689515311946, 7.12610801936674, 8.150272689121179, 4.699453565347093, 11.605152097902097, 6.876158851613502, 6.26126575044285, 8.025118292191824, 8.83777531711993, 5.730732236768383, 4.71843282512712, 8.129697663136616, 42.31273694283399, 18.39631955710286, 34.96316522312529, 38.821894603934076, 3.830895131461708, 7.221831863016, 12.366410524719672, 4.624963887315761, 146.591105691057, 6.649986443693244, 3.9404984363303086, 5.491749149878694, 5.256415040740655, 3.3855612253939675, 4.869539563440509, 6.310713187209718, 3.8183854721594526, 3.4196795914973896, 5.292104202203803, 5.796295298312061, 3.9813734421623312, 8.26294229744612, 9.567169299450546, 4.934248888402734, 6.096810855600761, 4.117665982569486, 5.169025987397542, 5.338034715558123, 4.566208581744491, 4.162106682254184, 57.665507288176116, 3.240298520850816, 5.658311354777015, 5.575745294185428, 4.574997783899191, 4.435926112389183, 7.743761764086538, 4.976039285802804, 7.275434884559882, 5.631162731660489, 3.1456415680982226, 3.6274651961962725, 5.724936185680569, 4.2725866951396405, 3.951516333613694, 7.73862035162905, 4.565706003381747, 4.480053795556665, 5.890820908052811, 3.793180307054729, 17.867805842033786, 10.661811456742116, 13.145748236308501, 9.021746044612822, 6.683091641698841, 7.546672251763415, 14.336882099526074, 9.103304489752201, 8.72863804195202, 16.126916048313845, 10.979730034559056, 10.179161791853938, 6.2108187226476375, 7.139119554987791, 5.5552935846382345, 8.436841165634435, 7.2040122913049665, 9.960754289591915, 6.820435442819974, 6.089223467068272, 10.555053141741995, 14.378494210756815, 8.80862249785018, 16.05984597856786, 7.919937760982691, 31.307558553095003, 10.228272458692473, 7.69515378865866, 24.506901043929414, 31.029086608905978, 9.497007182052531, 5.397152041006707, 12.699677382491474, 5.122788652350761, 10.387710152713332, 6.872197485359169, 9.106249480619379, 6.789040479818622, 8.253736562527887, 6.346645818396101, 31.741958258830905, 10.221624772225912, 10.412291265357695, 7.033308077017564, 8.689243409395562, 5.463402945201767, 10.734933383230631, 6.896173756416257, 6.049686895040139, 7.7095029800235375, 13.224065384533581, 8.419870227435979, 11.69694175054588, 6.8734537498119845, 6.317708001108031, 4.896877077288795, 11.404308586262305, 4.826513751990153, 6.400123539242891, 5.957506483557939, 11.478326227676993, 7.428494174391517, 33.641971361971365, 23.396533700973357, 13.568638063816888, 23.768173641173643, 14.167260591366798, 14.94168772528684, 25.415105380730374, 21.341154970760236, 23.721138808041417, 14.689714305891114, 9.000343656640231, 11.983957325169715, 18.296390075567707, 24.013525857475862, 24.76047435897436, 23.892130880504574, 18.713945317083642, 18.399135975941967, 7.912676707515004, 10.220714486711543, 11.571053697343245, 18.605444934694937, 8.894453602298045, 14.294110339222176, 16.9618300571977, 15.981732575757574, 13.090305287713127, 16.523330196741963, 8.695812432651008, 8.818395451197695, 14.29975810446863, 13.754567539135124, 8.520002842639032, 12.431818435541777, 8.16990411171393, 6.09464349497923, 9.338573618006027, 10.489792229626191, 7.387501007330388, 10.714017329892329, 6.462012777617921, 18.129468502035014, 5.768113743782155, 9.6877504245898, 17.948380876469002, 19.064038475942297, 8.187947164642685, 17.93100031699617, 13.750185827258594, 8.384952292875438, 14.050150515566303, 6.865227982052255, 8.074953152267023, 7.283473370129209, 11.548895584674991, 14.82474632099971, 12.734981220095893, 11.209561804810251, 85.72837945557568, 12.568544018640047, 5.520168381165457, 6.7176848741876825, 13.039389709261219, 7.248508500464896, 18.516951923935792, 9.465803878805893, 18.482587509735005, 48.301360914511946, 13.31772898054154, 8.279393375745638, 247.66472222222237, 214.21344444444472, 187.12833333333353, 167.30583333333334, 140.164, 152.2803174603175, 6.030201416284934, 5.8525770628139275, 17.1263962433719, 10.50140153467346, 42.01710216538204, 14.309418554638064, 16.39968011308502, 10.779592626611366, 8.70519496494143, 8.273649960193067, 8.102851549978256, 7.148838110011866, 6.126925377587145, 8.80594273569149, 13.060517594892142, 13.864456678393662, 8.926648559368779, 5.846487862268191, 12.459030814524093, 11.495212579948053, 7.845050225937455, 10.483350631268506, 4.906852878497209, 17.705148101500487, 6.80171446525095, 5.602809817105409, 11.084846759297635, 6.352623663524468, 9.456535445382745, 23.76409623733806, 8.462120102331115, 12.433719086819806, 6.565894748156921, 8.251072849356566, 11.650873470054497, 10.365594010962736, 6.533732164880438, 11.425607084303238, 5.781990923937627, 5.126761066105651, 10.777218386245853, 9.012488750042843, 6.338748150742646, 5.431264532285955, 7.455758390215146, 7.95338507637643, 5.903243124807929, 5.125115933706565, 8.961253880883323, 8.058556491931688, 4.64002199096903, 6.073783446585532, 6.10565921078502, 5.572757544548368, 6.227478702587231, 11.273873287207646, 20.23908528881496, 8.028138810001034, 4.98423512466601, 6.071293671306709, 7.937522902516347, 5.821099028529066, 7.593683225095866, 5.49646895152608, 12.050509406496067, 12.85398873494601, 172.0692777777778, 171.33083333333332, 108.45188095238092, 154.19526190476188, 97.09909523809533, 168.75037987012996, 5.604443267392848, 7.682934760798269, 11.608955870763229, 6.396593788102003, 8.769266671458158, 13.685079832156148, 11.03898500738739, 9.777596362637503, 9.41977039285326, 6.767757721184571, 10.84128541211539, 8.732681757471957, 6.811138686899082, 5.542591733693314, 11.794153419942559, 6.306746862904272, 6.457326903262756, 7.12634113237771, 5.481556690328511, 5.405249969541137, 6.649075151941633, 7.797487346651895, 7.825401549519901, 5.318202390071343, 5.221573255010345, 4.88632304231307, 8.020740615004318, 6.43130712772593, 6.325521099557768, 7.349446168820114, 4.338660737485779, 5.505581612808025, 5.592970485999587, 8.798615529132201, 5.237488171939554, 10.594394254379795, 5.715052002169179, 4.6735682607013, 7.971257679358926, 7.299894049586885, 38.96972603731875, 5.2758315269479645, 5.113696491333731, 3.775044336533402, 8.129893101893854, 3.820313125790203, 4.959963451963028, 5.422482183571869, 3.2832248950255165, 5.740543190422645, 5.477462346394553, 5.473570871538589, 5.525645878343525, 3.752185864031703, 3.751303740123063, 3.721124692714532, 5.023321186625007, 8.38031717073673, 5.1239579926038505, 2.3302023390879705, 7.139790699074246, 21.497616555017643, 5.435556203781176, 5.176704985070293, 7.79787573150244, 4.521028767808105, 6.080250132000086, 5.332420007993175, 8.073383086088317, 13.205637867566988, 8.62767093861025, 5.72578698180353, 6.510668389427813, 10.585065838338648, 7.731353463486937, 8.431699284517634, 10.708520369621576, 7.400033816155474, 7.178219704631183, 8.252403717019654, 6.466241408983419, 5.094641239546449, 10.940621880670212, 4.7717347003681825, 7.057511568118749, 6.243025713333175, 10.815670232812794, 6.445672890405285, 4.338675771582244, 5.573754608090131, 4.141132673965423, 5.578290624459162, 4.141191668018304, 5.5807272220010224, 8.606967775941062, 3.352881717310315, 12.34555557487485, 9.148914662246261, 10.069355594803437, 8.09918144976223, 6.402456587091932, 7.431200404505195, 8.047753895722975, 18.372468871486298, 6.410343208403737, 8.057221458798864, 15.855149216926774, 7.989389885904581, 6.803059975369297, 4.4490729313668504, 3.6689024396572627, 14.24416018026874, 9.174549815789373, 5.198942431311214, 3.491802792045457, 6.552701023258865, 10.424259320581374, 7.017421884202655, 4.655753154517935, 9.116476755041768, 4.965540868309055, 5.222416035877895, 5.5669832206279635, 7.928447909286744, 9.752439553475725, 3.333323865637405, 3.440471024610877, 9.848322252008526, 11.322589860942504, 6.622933242241829, 7.739201342859861, 7.441235451247298, 5.447584126984307, 2.922190054879237, 3.266316450725862, 5.180977989438754, 3.4747686030916434, 2.5953064902926064, 5.063822741968306, 5.216970679606191, 6.206596174355607, 8.210767434990066, 3.0612060894656934, 4.97718771361783, 3.5990685393194384, 6.132849509817357, 4.3594577162426535, 6.270430509032529, 5.045501106378803, 5.687561575822431, 4.5990693292369915, 5.301520376195356, 3.8465944621686394, 3.1952908387559025, 6.17872891697288, 7.206003015011361, 5.33219901924592, 5.125502643404859, 4.013108074130903, 5.408381165923801, 5.328608362804302, 4.8643319926157575, 69.97567128076525, 5.020728071382927, 5.90346907076299, 6.314686155219047, 3.1352149227871524, 4.335771816160311, 4.83665937334335, 4.412063602220974, 3.9862611681672733, 3.5320534530248056, 4.254514718215669, 5.18721414695336, 5.546434613566887, 3.8988005302208246, 5.485022773404583, 3.055870449598201, 4.8652803963691476, 3.999057284034997, 2.5881765725538566, 3.457435730550485, 3.7856900545836307, 4.892889477258373, 2.6839215596568775, 5.9512203459012065, 3.5718743496009124, 3.8213842670853233, 3.1819029473625196, 4.854887878944636, 4.309661084994767, 4.175656338195486, 12.949804951716176, 6.354889247072918, 6.543181582582334, 7.19335784466424, 9.388788563968404, 14.97740344885974, 16.892605938728405, 8.566144039158381, 9.593850224020096, 16.659741846566554, 9.5332122577889, 18.59297657483312, 6.343985855349266, 7.664385902657768, 13.429336245347786, 21.04457118633304, 12.425932590369221, 11.253927292499318, 7.127007056497561, 6.6183031216854715, 10.230118106449188, 6.690107133771127, 6.992670766942032, 6.372388355639056, 9.054091257468885, 15.147685228818741, 19.64111026546567, 13.407916449866319, 10.529233078700312, 6.02703178534992, 68.37841325819045, 15.746161195469416, 11.318529934769119, 7.520203147263901, 9.79394886182841, 54.27159020410608, 55.37275464891348, 49.1753245966022, 37.13249235282617, 5.036607987573001, 9.353776700465168, 13.777048128461017, 3.981793554055116, 4.785296084612525, 7.181126003177115, 5.821891508098447, 7.3375509975815785, 10.672802493446195, 3.8904143416234884, 4.8189974177564965, 4.675413078580307, 5.743129340865768, 13.767144939917122, 6.989909912614704, 5.482152972353993, 5.473627151510064, 6.372093455824315, 7.815715711867862, 5.593071850968957, 8.672519055159528, 7.6821360393875215, 3.668896400632437, 8.069400883922238, 4.374437826595982, 4.193957053766486, 3.9213243132850497, 5.5518153909155945, 5.237634008822946, 4.21318648023036, 4.305443695802259, 3.539922895175314, 5.225275952410977, 5.121095383397375, 2.5754988605061486, 5.171356702558336, 5.793349242456746, 4.5434069762159774, 3.249420435531869, 3.6657587018387923, 4.696498891631528, 4.983930552104648, 3.249515751366358, 3.9282674509601, 4.439586799941747, 6.959543777777067, 3.8209504777971737, 4.712580619928632, 3.6963174389491398, 4.136943299998896, 4.316806738415252, 4.579892551729492, 11.25035961797148, 4.695545898932849, 4.107822281594559, 6.216084330785867, 6.17234018234669, 5.070082638087224, 4.20629863593882, 4.251946125582162, 5.608428526582481, 5.593186178830122, 4.658552400030285, 36.52780105176415, 5.822389373612233, 3.9699763770944054, 6.769635566640022, 3.5963078822464953, 4.462315444506626, 4.203630410804237, 4.679617695279191, 7.1926589959803895, 4.5574629352470755, 3.621468553455248, 3.120024733065069, 3.849604304292078, 4.008462398699999, 5.399464017322001, 3.305041631335219, 6.7241764121278225, 3.6458668762679998, 4.190093205762452, 5.769389900872443, 5.480339060517135, 4.205841154572831, 4.61832100410438, 5.629249374475891, 4.053490984331943, 5.859672516218879, 3.495980491137702, 2.406727125967814, 7.5627673640618545, 10.786589110008562, 4.904344561204071, 14.492014235203735, 31.162196066886686, 24.873965940316808, 3.9919253443618423, 13.657148052439231, 19.739248660862234, 10.844922183298504, 16.336664267058687, 6.621628138995919, 9.264069955219732, 18.970892076759977, 12.534349401754952, 51.20200661595508, 238.96734668109684, 206.1292222222225, 166.18646969696977, 164.72330303030307, 126.46633333333332, 175.59820113220107, 8.14338190779164, 5.40671948770456, 14.453162763408265, 10.263234173943172, 8.39846659926822, 8.174418601420973, 11.47341993287651, 66.75675360086011, 23.010530628596833, 8.73939135006478, 17.00221982291195, 10.00725145595183, 8.922250507144952, 6.243260151817996, 8.054778514949838, 23.223610665851012, 18.687412389297002, 9.468097268040982, 10.39405373811908, 7.57371475979725, 7.306450172718368, 12.996504869823386, 10.648469408584047, 12.411249629914325, 10.515591140534289, 12.600606584898506, 11.369184417546784, 14.645405201110044, 13.221088425299767, 8.145341082695557, 27.88616811122805, 8.544831462803256, 12.497791466066785, 5.941467314775969, 5.137408057982936, 9.42043273334496, 10.55502312864641, 7.706204693928652, 6.752586537093491, 9.333839202544635, 7.373830146877218, 5.733545453577934, 13.300935739702854, 5.641926216267806, 7.9783401244321865, 5.93934421886191, 5.9457581160043445, 5.513100165112332, 3.872503904192466, 5.136166646699429, 5.497922765407763, 7.6584810327899175, 4.6756815837064964, 11.238840476888335, 5.692188415480397, 3.7394097122789813, 5.051107637204209, 6.165176632876984, 7.386586996176825, 3.267550328108379, 4.941104089912499, 5.23752227544473, 6.727581434851075, 3.02853922772128, 6.596054811429378, 4.106486614988763, 5.786412271471265, 5.050655481854669, 4.327574812470192, 4.363318805852612, 4.26031603281384, 4.374826934757717, 10.425779824362786, 10.69934631019027, 9.734180780978013, 5.49008505883864, 3.188995651098278, 3.343047818837243, 3.8117119183448107, 5.3349644784246095, 30.66149724430343, 3.3432359425399922, 7.019954016466048, 7.474048740571071, 7.30210725078571, 4.353030097547015, 5.204864173721678, 3.5813965245336092, 4.396858983550919, 6.485273080207415, 4.8946363804775626, 3.884388755681554, 6.011428968214125, 15.877220482238242, 12.2650386719862, 7.101111909534336, 3.9406837356840962, 3.0206013976364376, 4.6321089987771185, 5.41828952952325, 4.342993132917415, 6.366184798371488, 4.031179526631096, 3.877723544757697, 2.823098693923612, 4.625309828015401, 7.025085034738171, 3.8838532776744246, 2.5806702019753014, 12.661151761635438, 7.836437108014144, 5.524638505462288, 7.593910211139057, 7.638955211884339, 9.863162065401774, 18.75751871244282, 10.261955221551466, 5.3549743903548785, 17.513054487563227, 21.785737111088142, 22.021498056949497, 75.3172675750176, 35.13135373306178, 23.805621340182224, 5.8288951959490785, 7.656862968764077, 10.592034583300432, 9.285565098843204, 5.185322132007925, 9.142714945163181, 137.6185833333334, 118.55473809523815, 112.541208994709, 160.3425317460317, 132.7115357142857, 119.0502817460317, 7.404307886604974, 5.289719177846302, 16.35605407013466, 9.857506519824325, 12.064548741780198, 64.80410044325619, 103.168097041847, 88.9997435064935, 76.0662803030303, 77.59188603063602, 101.5443149350649, 99.14150022425022, 7.339542988151691, 11.186135239493309, 10.061453348702482, 15.762293282709178, 12.534529381699109, 8.579298737036977, 11.170823682325109, 10.095378306069012, 5.688374928486233, 6.722472677159275, 5.787850154164311, 8.526613554980603, 11.22254204221487, 18.569698280861136, 9.4879307034661, 11.381825205485665, 8.243717644759657, 6.8265912344403645, 5.085417118017792, 6.445935124109242, 6.167298555764424, 6.592815140545183, 1.8838770958921378, 3.078942055600466, 11.385843104735013, 7.402468550954435, 7.0326799678868674, 7.746781331878381, 7.391480569007925, 10.762760223059834, 15.144499974672526, 8.140405100763704, 8.881829973998542, 4.344133372835268, 6.33053357278889, 13.927760501553502, 6.005478269960106, 5.58627885368289, 4.845822034968127, 5.044558789423421, 5.412224309516779, 4.295663568760374, 3.915763936712913, 3.864913875631648, 3.4720198670617695, 4.906333315031386, 3.2381561160528807, 8.8821767081607, 6.370444316825648, 7.8464598812016835, 5.190323769628619, 5.51585971139337, 4.5952510948197265, 9.170839706960857, 11.151212157267334, 5.298693655229908, 13.841627072461677, 4.610810945930906, 4.40751012004225, 5.4817044425882395, 4.039400616827162, 3.792410724682243, 3.5396205027235053, 4.803632456442182, 4.155877352960046, 4.4932685289923375, 3.964544159183673, 4.209244779636499, 6.5832263899323635, 6.845459366270227, 7.127115000086069, 5.750371485376712, 4.960917158523064, 6.418957852446203, 8.655672286138913, 10.359167770023523, 5.650682053646579, 7.367996413323354, 8.290494236963479, 6.582075397496303, 6.407377169820949, 3.8645030454487275, 5.952889831186337, 5.178693364089291, 5.462017175167031, 6.419405489926731, 4.231554971894761, 5.069341355118497, 5.099801815647349, 5.466672919260731, 6.23807454153886, 7.902530235149029, 2.7984531834213544, 2.937107645167194, 7.742039563304638, 10.363230784867758, 8.110095737908463, 10.29514035119353, 11.749763893318427, 15.261875718336237, 15.0748771408564, 35.7088690395218, 59.5541599310651, 56.383630679720966, 24.67864909496703, 34.40459398649703, 23.817184582909025, 19.036967773034704, 20.26753516457527, 19.934951872960102, 18.221473063086762, 10.905336890586481, 14.919653421970587, 41.23489413005012, 17.060376665334136, 15.232148416550308, 9.221784302785231, 10.885030342960773, 7.641585720860638, 44.72109179202254, 14.279654234034195, 12.336569987989545, 10.683465596391846, 13.066826083261553, 12.981977533796325, 8.4836569473972, 10.423347141851034, 11.08272795548724, 6.922802597967104, 9.906411092901672, 12.335889881576374, 21.412366741928054, 13.886462020124963, 8.413287793499446, 14.534225386657043, 7.983422225765939, 6.680810314869713, 8.517449027380728, 10.744861570314589, 8.454352712727365, 11.220760957747672, 9.087848950048503, 16.92934696066687, 6.782251744953979, 32.75885516965288, 25.42752638571558, 5.8708486049275255, 6.612938920433801, 10.367185204799222, 10.431729180164426, 11.43058988435953, 6.474019732831972, 6.424098368068947, 8.155846297024516, 7.217617917677934, 9.481724809638138, 12.726083265744291, 9.345533112293468, 7.595404680095196, 15.261880104112114, 6.803335199313136, 9.177214322714324, 12.708878404854001, 11.617015507374505, 6.03426575870882, 9.774453815454324, 7.329209819676519, 11.606107386322243, 5.812012995438438, 8.64421835053323, 4.570941870900777, 5.683995262388088, 11.28848133807535, 6.438988051985274, 7.585886315778548, 10.892481843525166, 6.0668057049361686, 7.29318562211209, 3.871123693526602, 6.40346129478116, 7.061078455887569, 6.8549624339199156, 6.842827737731378, 6.867880098550411, 4.053628045270882, 7.326056621146524, 7.462051141616106, 6.192339947689972, 6.763830918377863, 8.239570618233591, 9.914001522893974, 2.5341035136091805, 7.069210306829952, 7.423896125131674, 5.466380611526971, 4.6494784608287985, 27.707856949423114, 5.653742098442932, 4.506516714561241, 5.442143970818307, 4.736461013685397, 10.186837395162977, 4.332313895009306, 6.478311344093995, 9.094547750381295, 4.068412282963074, 4.858386848292428, 4.856099807142947, 3.7441771782970408, 6.222344088225211, 5.258172213234786, 4.236691580306826, 4.678333170805382, 4.185487773240894, 4.113606478545456, 4.527645868665279, 4.3426413409526585, 3.92817023414344, 6.585189714829989, 3.459940585045429, 7.012607974435922, 4.673233859166301, 4.832714992539404, 3.1559884642036438, 5.499744014078985, 4.398242484069108, 2.3161504116343616, 4.422472939023358, 5.532335944281389, 7.3357765216668165, 79.08068975869165, 4.553393284680665, 5.1907846212765305, 5.285464914422061, 5.249851700024495, 3.9850691206347415, 3.849576551288411, 6.328451027878917, 3.3004002754436224, 6.073218824741718, 7.7617557523688685, 4.926552227549255, 4.863736618550895, 4.29810519784524, 6.177960429281441, 4.817350772284129, 4.43637860721463, 4.809761605248855, 6.7635356450585, 4.193444243155064, 6.511990601098459, 5.608397861313777, 4.832888131497881, 3.7142483463234948, 4.85204868212348, 10.704424638011606, 4.857699129505945, 6.4612426977012944, 3.979409873254493, 5.777089487687668, 7.056151239879632, 5.5775520705642005, 5.035541227116865, 4.095068607821258, 5.438799115104688, 6.688885883876658, 3.7629577873781983, 6.430272066636639, 6.1386743533188595, 5.7943590992382354, 5.81171344571375, 7.442659906329555, 4.888809446569755, 4.891485083790895, 5.588248175112152, 5.625363330606618, 3.276454040226192, 3.362718759146332, 4.792045313170912, 3.5642384667741096, 5.222036925840905, 6.678134921849818, 4.47913919887025, 5.399375489575312, 4.126831085581087, 4.369255554915312, 5.677034537365792, 4.81682274608234, 218.35852380952397, 206.5821666666668, 208.95358974358996, 179.1167391304348, 186.22128205128217, 146.7733874458875, 4.376538700254749, 3.8768085993144172, 3.0197995185983486, 3.0021043968942047, 3.155425926902732, 3.6609180402205777, 3.3034975938577538, 3.4714995327632647, 3.222189773542454, 3.1599010988413414, 3.371314330166429, 3.0693896364703495, 2.921741265145744, 2.81308167759716, 2.076208557970526, 8.720651554245, 7.611670052930053, 5.259527943385375, 9.960868900957628, 7.980329308567723, 6.942200302404903, 3.969584897358349, 6.137327624938821, 5.213342019809207, 5.21208932417499, 13.111535766641516, 5.048652044087668, 6.480524672279307, 4.516584434088353, 5.365486532175825, 4.540975321060202, 4.6874232953502055, 9.748219865941572, 8.810235946061654, 3.878474458664686, 6.283862094862914, 6.767781900607578, 4.279832056442697, 5.585559393422246, 5.040441962835234, 4.46377877899698, 4.795504228271616, 3.6206107216678265, 5.531187275114516, 4.400178824453123, 3.8116151841450976, 5.608649107555274, 6.92537208122339, 4.430047463339452, 7.851116149741821, 6.5944066187058565, 3.130053205727156, 4.577628494761939, 5.922231302637891, 5.220745965093164, 5.401166020062352, 3.527875441896294, 4.81439087095123, 3.505294550670403, 5.430134045068089, 5.482004880554167, 7.9957491357475, 4.981592416743155, 4.127447644106359, 6.562144571420116, 5.684761604288757, 4.650484521230898, 3.957088970086996, 4.65594436450163, 6.4118313172490575, 6.01822173354415, 4.9710455474818245, 3.757625785100091, 3.3919816421291262, 5.179047672818953, 4.364023326398385, 4.374783331558208, 5.673773315914151, 4.038129923151515, 5.632973891068678, 4.295148561201164, 5.526659618980658, 3.421356114032078, 3.0884793713832925, 4.834093442080917, 4.6022347225314055, 4.743721430660236, 2.6927867786722013, 3.3070593960483676, 3.0247760585543837, 3.5676333173268606, 4.286590569272959, 3.1090576936566974, 2.772591483609037, 2.928405170357631, 3.241133023008519, 5.332977374432476, 9.334521650957342, 3.881427437614446, 3.4371721930859342, 5.007993275323155, 5.093311920832459, 3.2819750428507963, 4.154357513871347, 3.547962804097917, 6.003434406020806, 3.65319449707933, 4.463180630180465, 5.661182190481607, 5.40024131872868, 3.7617975981843643, 4.139120092808402, 3.0222699794012815, 3.1363028809930698, 3.3905841099161917, 3.4232559826940845, 2.9220815532732587, 21.563519625666686, 3.2500873622324775, 4.110306398278555, 3.076757285791605, 3.5046575309860484, 8.662850158481879, 7.338807305496129, 4.482055084257708, 5.685204084400623, 4.979854680735245, 4.143850674301986, 2.769056629082749, 4.017197204028433, 5.658696513216321, 2.6437570474258694, 6.156957186923596, 6.902068558908078, 9.712034380533673, 5.594575019758864, 4.968348718188674, 7.577857103472515, 3.5495994151237995, 2.1952134297514956, 4.8801029586729285, 10.503278227561216, 4.214859602235089, 6.19777621999339, 6.01437521836503, 6.790416569520446, 18.96773600521582, 37.785235430500684, 26.50912363840866, 28.674956785496583, 19.925710943195536, 50.224889885918245, 21.22426551216737, 27.341765804486457, 24.26669324051999, 14.185060336740024, 23.461134401583774, 24.63414817182951, 20.158779065700074, 126.11930982905982, 11.32209174127141, 12.534804014365553, 13.1507059548753, 17.209231567136946, 19.347143836844722, 12.467854839737278, 19.494512271069652, 13.096996559766223, 8.97847204254372, 6.124038709249851, 8.356056396987679, 8.38708416147423, 15.378079735206898, 8.928945020566626, 11.12270449126897, 8.673738111724576, 22.18799627496624, 7.410716339953183, 10.189619901902464, 7.736607160782966, 9.628825648234807, 8.423344681972571, 20.601150932400923, 8.892496747244012, 19.37987912195202, 12.455195703685689, 16.348561518043518, 10.800604681461877, 10.788007129169841, 10.05989505655786, 6.497367697014268, 8.127550586147828, 12.003075622126255, 10.045189972937939, 15.99679439294145, 8.882654343940105, 9.473398624027467, 4.982992503424196, 3.9270214325034516, 4.607234030913851, 8.708672950029568, 9.62871536977376, 9.218374583110984, 4.364080964936677, 4.7850854530065545, 5.222321044283309, 4.789776520579367, 5.631724661707162, 4.18250963577026, 4.936330291167477, 4.697888861395247, 5.713102704387951, 4.947847467001633, 5.028089650726552, 5.039472684625706, 9.836358205907652, 6.424936698292128, 6.605096239819287, 7.81363234959748, 4.8807347997562465, 6.695105552836781, 6.613925481729699, 7.683051102098462, 3.4464456323778, 4.244629188630048, 3.4726764905470833, 5.44185773047426, 6.548101939588838, 7.222206686138513, 4.225122722876184, 6.508217065350194, 5.980770013660026, 8.737359884911971, 6.363532735434026, 7.359872470642529, 6.432783151638745, 8.472710097371488, 5.667329063152154, 4.559126615418614, 5.752346636484123, 5.716159499660547, 5.481675432223609, 21.76559082252289, 8.675473046869381, 3.2913733977557027, 6.558432586617058, 7.0450972517768795, 4.809108124710867, 10.53502408687489, 8.218767513631386, 5.3044414781722935, 6.2463778192896156, 2.152002537967664, 5.117949614945949, 4.63996127082877, 6.0544511586115775, 5.114115151363564, 5.940591786339223, 5.684139440887796, 4.385536226847577, 5.6195978415850885, 5.809081543135491, 4.634404965650457, 6.248393128701957, 7.753025164835028, 5.248005281610571, 4.358469931195056, 3.5160391410042124, 3.6590957110092317, 4.438047818722609, 8.0966413583226, 5.661617038987753, 4.602820261392384, 4.780807428521827, 4.448153493217712, 4.296208913201179, 9.903052849887137, 4.925095275566317, 6.669543233804666, 3.6682790654824857, 6.660258288749244, 23.032626194468296, 5.336100295388685, 5.303085770572825, 4.533392653661858, 4.379005249069849, 4.204307087639605, 4.901171027501358, 5.3816067212766265, 4.647182081925036, 7.761249413813634, 5.103924533571479, 4.714544286231303, 6.394042754911794, 11.48824783047947, 5.000905935795615, 6.536964582853039, 6.186713924468249, 2.7399852239765616, 5.819407866420563, 5.081652532799661, 4.415863549366519, 3.861975633799454, 4.3832170269037665, 6.220306025441812, 5.982634351683464, 8.783880797532417, 4.570419628822651, 4.917317516923176, 10.016769368344233, 11.611812427826825, 8.471423838463915, 5.452989152903055, 6.769368585191962, 8.343653612272256, 5.793012831210797, 7.110971173203675, 4.628558488117489, 8.28079364102589, 8.320323312308322, 5.550867675022271, 4.832366611949255, 3.9870700722005865, 84.48786904761904, 219.83702380952406, 202.68450000000013, 186.42101914751922, 165.77350000000013, 172.61750000000004, 73.38107506382508, 6.487516100284548, 6.554573354991113, 5.8585452825503905, 6.728999312215679, 6.566745701660236, 5.143606368686115, 4.72445075046082, 8.576160050524704, 4.537362428861952, 5.68424547416101, 8.086447289182768, 7.371425402662372, 4.060931868590075, 7.704951208848413, 5.065986961842033, 5.372306848785276, 5.437935032650924, 3.497644133846128, 5.572007185189273, 6.466897632059084, 4.92397222743075, 4.167928158466366, 6.04633331635832, 5.868569631486716, 4.816448391823814, 17.779295971688715, 4.0697181265094935, 4.535109868914777, 4.3749976818858105, 6.851790579229252, 5.404510159126377, 4.34085124013932, 4.688167251482704, 5.835636131721985, 5.130186632709612, 3.417765565044499, 4.280350218537009, 4.200079062753962, 4.050384054133689, 4.650869682050058, 5.460720511871702, 3.84659223498649, 5.588322205643356, 4.3892417878363, 6.852363122725877, 7.207750285061191, 4.900387541958653, 4.767765226727861, 4.661940288407933, 4.322637176083917, 3.8817557920385344, 4.724528948082356, 3.7164206845579137, 2.752938916517456, 5.138039458615386, 7.006093611433393, 5.337193835624486, 8.900996156594655, 6.962096981501022, 4.383745485174384, 3.6311114881149766, 14.306560094867935, 9.68996789389448, 2.9601461558764166, 5.342200074127408, 4.63438019176508, 4.868352183400017, 4.948910349721234, 11.479035284350585, 4.007391386723003, 5.31062698309354, 117.16286309523811, 5.10732592182512, 3.6129583950460176, 4.789435884893134, 6.070804366618554, 4.504334867786612, 5.162390096611438, 7.775229524771851, 7.491341313665413, 4.0449037427257135, 3.6483879158198684, 4.994175078379385, 9.548259464843294, 6.074817579543514, 5.4036996889668885, 4.536805198168346, 4.598242038392694, 5.732135414827015, 4.33711849013644, 5.532704903681365, 13.026387789340637, 5.8096293445464795, 9.712454763594707, 7.515129244526408, 15.006596311590975, 75.07343733842002, 18.122125031627505, 9.838865947967555, 8.591706926237961, 20.500398909772596, 6.145868394121073, 24.891804902295593, 3.373626431798618, 5.04146067792253, 4.934386125969001, 8.988867961576085, 8.592411528664561, 8.200137881466684, 5.701684599344961, 3.58718052591054, 5.277911481327346, 5.116757821845833, 7.194383374535509, 8.971421438361409, 8.291731762304153, 68.48588247863249, 3.4739153186612675, 4.357731939111566, 4.367663293385389, 4.249585873998627, 7.989954023254616, 4.623485057727464, 5.325410853801597, 3.7812124066948476, 3.04140290060138, 4.860416774071578, 5.097396789927202, 5.361917673745581, 4.447465937104515, 4.476737926052443, 5.7554620341037666, 4.92098168708346, 8.12572868924877, 7.12851191467921, 5.600115043942985, 4.795849615326582, 4.797395199246665, 5.948907705257704, 7.00962806538106, 3.7843797475360312, 4.820267109381289, 4.179000090213575, 5.289062418850961, 4.3179155403690554, 5.3105873646206465, 4.903709766873073, 3.965499812272341, 4.113466699238756, 5.2403037462398565, 6.295107709323769, 7.726268845068843, 4.6089293248557075, 6.660394060459772, 5.052886567538741, 4.155527114235507, 33.65527946338163, 5.868542246732696, 4.255840736618292, 3.4790249065603644, 5.763977933403856, 3.9693045573773214, 3.172224245707057, 7.529729024893505, 3.126247519959159, 4.152315953138338, 5.134434093165695, 3.1108305912804433, 6.256779080385478, 4.819925617721681, 3.3707995620112445, 4.819799153818008, 4.617701202277706, 2.7091196153184525, 3.8870493926830476, 4.994511095636187, 4.268826412369437, 4.102785083650716, 5.176703870956702, 3.2652936024543027, 4.15962600829941, 6.441361933091701, 4.713772252639414, 3.5446035387045445, 3.465921327321887, 3.388498284196346, 2.955398879305364, 2.2637233793920517, 6.001470609338387, 6.676722126062487, 5.743057699387367, 25.94000711406841, 5.915220692075659, 6.743147819345343, 8.389892566092685, 5.078817596447274, 3.9137588965961942, 4.9080656249373975, 4.222632744039062, 4.6212502882775235, 5.4477859535960045, 7.682398450921999, 4.153659529237868, 5.1014076665985675, 4.682092091166956, 6.988289138251694, 4.408699930880105, 8.675054860916239, 6.781246764378361, 7.73535908828579, 12.985937877515022, 6.178367586294833, 5.3591531968026995, 3.6564614990640316, 11.252211139312658, 5.531582134598387, 4.6620717750431195, 6.41073998678833, 7.303141906151505, 4.244911812323229, 4.577685169394554, 6.324744081747589, 7.537124693928224, 5.536126635000493, 2.744409564235298, 3.3834206415697525, 4.437308107452022, 5.682851183363937, 6.041576111905919, 4.9464218830579325, 144.331354978355, 4.571294285698769, 4.897143244899071, 5.819224903363524, 5.904650768920392, 4.005705315476611, 4.21957511062605, 5.933079950491446, 4.855811475525967, 3.975045174312898, 4.214096851963972, 5.3950529442621535, 4.746958421357167, 7.082095467959102, 3.8042366036875115, 5.677910144666414, 4.546549457447023, 8.733683260851032, 6.25286035728082, 5.78225712320043, 4.731152168531744, 6.068439212738564, 6.0451850566695855, 4.737861474007129, 5.189485561395836, 5.365229829460232, 4.2949670605014525, 4.631821938390036, 4.4620311582285055, 4.063574008497383, 3.775761870418909, 3.3807237649784003, 5.0631240611355235, 4.382940145610893, 3.9933715744900358, 2.2296674143473907, 2.9227561240858164, 4.274956792132211, 3.5222050289249154, 3.188298058581771, 4.614441135478097, 4.148899179871974, 4.933136471527569, 4.5583142799781315, 4.944385591931345, 5.719798047757227, 3.593018001542468, 3.3306437553381745, 3.911716740770196, 11.066757380095963, 4.962464499913326, 5.660449678093702, 3.620996641328459, 3.812185338059194, 3.9393336392946634, 3.882826231915113, 4.492482490872637, 5.163030485154284, 2.748757128315187, 4.469573061593563, 2.8813407903838337, 4.045810684170835, 3.9011783380870684, 4.02990734684801, 3.748561814756459, 3.446595923925401, 5.357052727967645, 3.163480337843698, 4.977157904878782, 3.386894502169805, 2.906990892774877, 2.9296441964504756, 6.894288785456072, 9.193200144638784, 6.43895076438326, 8.020449968453963, 10.20882966294847, 8.769678527524848, 5.476589489965349, 7.670175180756946, 8.567456228745286, 9.09667322133229, 9.683603024412369, 6.166103336740152, 7.234869175492318, 7.227348613538913, 6.41031188269522, 5.497940721580049, 4.799188464307484, 8.123596282635896, 8.275714661865157, 5.085546726736202, 5.484624479216519, 7.258964281690984, 6.399275765249909, 5.828081972568728, 7.038935962970752, 5.341002682407411, 4.25169038010282, 7.3629414170597185, 6.163122345010431, 5.458258245773535, 4.541773017078752, 4.80291709189454, 5.711915193749337, 10.915496491271327, 5.067006994572138, 3.794872941100412, 5.496807847626472, 6.314841204953191, 6.28042477210364, 6.2537313484143, 7.201399004934563, 9.788399523729954, 10.218866981402272, 6.2941167122190365, 5.622346283418998, 8.025219718689996, 9.415819377709639, 6.5674747532700675, 8.147543379251745, 5.829650192866668, 9.583210491191398, 6.979190645994466, 7.702344880691204, 10.630518105133268, 6.088790258415359, 7.98617751449587, 6.6573058848412385, 8.491497932021366, 7.965821518529802, 6.127746784434482, 15.161804540426866, 8.910608679058068, 6.043205436134983, 12.142389035096798, 5.520444791582938, 6.791824521097053, 6.683751117838138, 4.691487862617105, 6.869906417971962, 7.890086566695883, 6.294278927765735, 5.154076255954143, 3.936938727736448, 4.0559441066173605, 3.6342230180357533, 3.497406363203469, 3.085556052684679, 3.3757482071168554, 3.723047624837195, 3.648164260727993, 2.964070045372543, 3.8456302272654694, 5.916362386207724, 4.375387817480799, 13.75068201470357, 6.4459005843719055, 5.071817452672373, 9.640158935212424, 4.178893511730254, 5.430790434641988, 4.716118116923257, 6.062925764837212, 3.279320900178542, 8.654941770020194, 4.327854068472271, 5.046236367694734, 4.786912281382617, 4.878969788881279, 7.575927344294496, 5.696537230378698, 6.304952338676334, 5.785846368407887, 19.894809733947966, 5.500590605062678, 4.257352363896287, 9.85666821154714, 3.7960267598967032, 4.474762618368569, 9.340911533404281, 8.466952939254858, 3.7272750946739603, 4.960246461984477, 6.804536603809988, 6.47581360073332, 4.541454345587819, 6.821960963969014, 5.026666936908318, 7.650804223927731, 6.070323906957918, 6.398825166081818, 5.436056390259267, 5.985872625022739, 5.387411297423195, 4.320329874655879, 5.645930464736331, 3.651507487099243, 9.004343281808701, 5.2228031096492735, 9.389341757065537, 8.73658663718762, 6.869560313880642, 4.872895935572831, 5.612127912151569, 3.9390129480782137, 5.913168233394416, 6.222144046831312, 10.93638973758776, 6.536288028955786, 5.459677676988502, 15.298887791231826, 5.420658329628991, 6.10986355896022, 5.5053554632982, 7.89412472203697, 5.55846931377092, 7.0171985782839865, 5.716477020387305, 6.155341033548288, 13.65988637791191, 5.216843386558789, 8.873153160030098, 5.966416393170936, 4.622922113894504, 6.123424682689856, 4.642882043951349, 8.1919273529404, 51.462205773343314, 14.574631989051158, 5.0486661167788185, 9.70540962115909, 6.689916102080351, 5.493259626063649, 5.961290760457304, 4.4938947085456915, 13.174720210596188, 140.2224826954092, 235.61166666666682, 205.49083333333357, 195.09249999999997, 149.93166666666667, 160.12550000000002, 136.90277372627372, 14.502040992890636, 10.156387175705616, 37.85819844902654, 11.081328682655597, 9.067567383591296, 5.802311549376016, 8.165811687770368, 4.406505233945343, 7.980607047575861, 9.200117998579712, 5.871104783242988, 5.408412288677813, 7.66388629131851, 4.887843274276236, 4.06995965007721, 4.4719523078457915, 8.583301517755524, 5.290175879887891, 4.490673847732631, 4.450142356666214, 5.724249339451169, 7.290852735412077, 3.4929570957785963, 4.214314888344227, 3.6328506601416555, 4.854753882119326, 4.741243290000104, 3.9706371115475, 4.958328943660623, 3.429006764341695, 4.680884348757502, 4.295832458263375, 6.939000066208228, 3.963629356482264, 7.051990281354536, 9.781483301683707, 4.910238558402753, 8.02729643794455, 4.968159819742636, 3.4039314965982763, 13.003085127875273, 17.312361459796243, 17.343166302779338, 21.66526630130096, 19.207033839228263, 18.03053481403237, 12.15604231061364, 24.97175404820497, 18.473688515406156, 18.502267042614214, 17.492388186976427, 4.408874815811053, 5.200589882497892, 3.265344486413436, 4.150205494500041, 5.281596512908808, 4.479181499995422, 4.006109995126432, 7.160447631207469, 7.593311050644461, 4.431686278382602, 5.026216939435095, 4.254749426938451, 13.922276414349254, 3.049180234551613, 4.085301908769142, 5.968804800758321, 6.813244445813855, 3.65149012870023, 4.6164394577998795, 3.569418602577581, 2.9652115270081016, 2.835090530465346, 3.239599625431157, 3.425301545718303, 3.3127203484514403, 2.9712992141191727, 3.4563069760553446, 2.663376250131092, 3.0486732283030644, 3.5275584680881913, 3.2208149368057177, 3.0556215256879455, 4.558594063512832, 3.6782322833324095, 3.3559484485983, 4.010501623163429, 2.8227569578161527, 3.4838547461951057, 3.662218710017806, 4.4051016142509605, 2.9622620446894614, 2.330621540215717, 3.5230654889028243, 8.32374025043715, 8.266939635591855, 6.817671644969853, 6.027419416071854, 6.145058314204303, 5.68825880123285, 7.496106354029265, 42.85311043322936, 26.88556291193702, 19.582625738021864, 8.805217887117376, 8.9438727957838, 8.918308470261223, 6.072689587601431, 77.87095670207191, 5.4278428080685694, 4.3882077908135715, 6.972848568978416, 6.924102406533673, 5.543972754469504, 6.923641238481456, 5.0961509783367225, 6.208831655257487, 6.395603749640776, 8.144561193599788, 11.522885542765705, 5.357551478463659, 5.955465578286734, 5.6287327820522375, 5.96206582466672, 10.392651684162496, 6.941321213212771, 9.8008112121853, 10.681465352504297, 12.295806333607143, 7.591064237274143, 7.846024303288662, 6.623518603208976, 8.258418208489896, 5.815849965935775, 33.60416467317729, 16.48740484663924, 5.040320019427036, 6.917819810292486, 20.67409451291932, 5.9262819003356055, 6.440648175492485, 7.018051515111125, 5.779721611610097, 4.596640305655321, 15.317106104712078, 4.106799285489253, 6.1988851447184965, 8.861418961269536, 6.329264093546425, 7.257397760353697, 7.54727145906178, 4.9977720618195685, 7.773899091402463, 8.048672923842657, 7.031910121621609, 6.8498945982953705, 7.312547277412293, 5.103051254904868, 5.727031288250965, 5.495417644862869, 6.860323794899096, 6.300685539381282, 4.799981488764055, 5.580369411070357, 6.306975465141236, 5.070357780820191, 5.314552521590089, 7.52590399244792, 6.374319270153411, 8.488825066168028, 6.048069389450377, 7.964899508992109, 12.765877246637398, 4.342085106923692, 6.386198641998517, 5.851335481577497, 5.868841369010625, 6.393225940271619, 7.1554677813350365, 4.711811903744689, 6.168342299943242, 4.802043461540359, 4.925973320260932, 7.7588464603268, 5.97918403626026, 6.50545032856234, 6.550616957799576, 5.432761989489803, 7.442159913296844, 8.166599538265649, 5.77051803927483, 6.351370336183148, 17.688610946541385, 7.313678695388547, 7.408610392023436, 5.683732000127858, 5.838299667918339, 4.798486309770971, 7.481401597474912, 5.599150059968961, 5.778182426687393, 6.263167171073398, 7.7238762930216955, 5.066952696755973, 5.692679128275217, 4.538931788770879, 4.937629204925281, 4.5512244834873306, 4.707590392575256, 4.511255675867455, 6.311139814656299, 5.187668627631042, 7.336669679565349, 3.82012140702786, 5.217009683409349, 6.990486685512676, 5.527204324540577, 5.631161510049979, 5.3118561623231555, 4.309586434428101, 10.780502608039106, 5.487369452312763, 4.426581812160327, 6.949076497637695, 3.635886059882932] disp = [0.0, 1.0000000000000007, 1.0100000000000007, 2.12, 1.4350000000000007, 1.340000000000001, 2.321666666666666, 2.0316666666666676, 2.3683333333333323, 2.879166666666667, 3.3273333333333337, 5.083999999999999, 2.140333333333334, 1.2429999999999997, 1.4397619047619055, 1.7491666666666679, 2.538452380952381, 2.0658333333333334, 3.079214285714285, 2.8474285714285705, 1.9941666666666673, 4.450083333333333, 2.9205277777777745, 3.702979437229435, 2.658137085137084, 4.4726746031746005, 3.839746031746031, 3.3189678099678095, 2.9636269841269827, 5.377579365079363, 4.0060285825285815, 7.563063492063491, 6.33301154401154, 3.0978079143079134, 2.1000019841269846, 2.9141785714285713, 2.6998888888888892, 2.765611000111, 2.911739014253721, 4.560448763225076, 6.077493629908105, 3.1657896642830856, 6.34390017825312, 4.3405988455988425, 5.9032899877899885, 2.5092222222222222, 3.5923152578415736, 9.48864069264069, 3.723676926101075, 3.4131574259074227, 2.4298333333333333, 7.095606906981908, 3.318797312704346, 2.502650338791642, 5.239124216524215, 5.329671356421357, 2.4957206127206124, 3.901994633144634, 2.6237625635234334, 3.3191588689088682, 3.1193805418719207, 2.3415858669108673, 6.390380480630475, 19.819916666666668, 10.497490989402754, 7.974378787878786, 6.125751165501163, 5.37339701498691, 4.091125056724318, 21.338111111111104, 5.196860838507897, 4.012080182072829, 4.649537130705548, 4.144909038673744, 3.2136560789060775, 4.689596625596623, 3.4554180541680526, 3.761752390725216, 3.284190681867152, 3.2677080550168776, 2.8911378953004334, 2.7785666193112, 3.0365682737025605, 2.385907166005076, 4.005372493734337, 3.586768616204543, 2.4893388439128508, 3.114365979913804, 3.454159901476605, 3.071876349978523, 2.7089364598225907, 3.274852206733239, 3.5293426204604987, 4.553636157360012, 4.3378359704026055, 3.428910328852433, 10.707112637362638, 6.861177493802492, 8.977926003734824, 9.983915376290375, 8.485586633138105, 9.271412143412144, 4.057765794084062, 80.99969841269848, 2.940905045947728, 3.352953396217204, 4.569377649263704, 2.62182867515626, 4.076285077325775, 4.048624883286645, 2.467870608748917, 3.9066555788982242, 3.7706131368201796, 3.2171583800186734, 4.543045221118748, 3.6940825741442014, 2.7093083630688826, 3.801072982572982, 4.001140316801005, 2.7984827491680426, 6.416973532358593, 3.9279119654854933, 2.351920061476884, 3.7966856000989626, 3.6806493438594488, 3.5346784615640088, 4.346462938377898, 3.9628355895281433, 4.067373707573528, 3.807650377199289, 3.5915294812342786, 3.0644267993058305, 3.8449709608176574, 6.445341132615198, 9.117715569555429, 9.168892127543549, 5.601292842707085, 5.204427758016948, 4.849566972391554, 5.829847360854443, 6.616381426765248, 8.17082959604683, 5.487870759740769, 6.633301477517841, 12.200131799503113, 6.590492281977394, 6.033636128818065, 4.565165520573958, 7.615716499813639, 6.936568745882851, 4.693561068696723, 18.409496614671617, 6.286702590774688, 20.48398024221641, 8.515179967673069, 7.914320025706911, 4.980796006270561, 8.016138345969718, 8.249904537232315, 7.157535114038616, 5.92453456403986, 7.825909778050105, 6.057816589891257, 4.939155515490114, 6.659040927295695, 4.640145620893997, 9.51305630907159, 5.820224496627461, 4.695524791700048, 8.390174459204399, 6.166350877532012, 8.126117020607618, 8.832385731582502, 5.25281072797616, 5.433196415512034, 5.50478409123169, 7.387212175378047, 12.358660244507192, 4.865626469842916, 10.620090799085178, 6.499388724669466, 4.992530852229127, 9.624549280375433, 4.753426687027803, 5.849393758507873, 4.9189051358147635, 3.940366603241273, 6.654747258120298, 8.255036497404397, 10.557001044821266, 7.374377088067876, 13.146336057416924, 8.013378932429365, 10.171746561192103, 4.178323767825831, 12.213974484996577, 8.537859578330162, 4.050170992196061, 5.898043388460396, 4.2595716008566535, 4.022330576075131, 9.098268993647197, 10.625533394599739, 21.761220134784374, 16.051792429649552, 13.504932726156357, 18.952940031480303, 5.579513863169351, 2.5568192780913352, 3.470871406226239, 11.756179359710664, 10.582706162144241, 7.477628862583557, 10.485123999792474, 12.151402688241507, 7.9746148151959915, 13.662280405052465, 13.624257316571802, 3.26432983910447, 4.278895825289147, 7.556711574392341, 3.1446682692630636, 4.091989389210855, 6.820217194594627, 3.031116473683492, 2.989269384744144, 3.8190672401786943, 2.7824239033042724, 7.832412588722024, 3.8981390828894686, 3.057921903744181, 3.496352460608245, 3.784810208487976, 3.3969000993667593, 2.923712578321182, 3.6113856890737535, 119.18435073260068, 2.9224225227628575, 3.00636124175227, 3.181104694924858, 5.039719669030694, 3.278984100245013, 3.104015432874386, 3.5243414156962736, 3.1184358391984555, 3.3173942136286487, 2.6132135915050188, 3.045159984279027, 4.994257751065591, 20.82522359280424, 17.881683830067413, 4.3609208789948335, 2.6955310334818767, 3.1629537454910555, 5.546474951010437, 2.7217295700261945, 9.835830234782879, 9.203495903138386, 11.333334290134172, 12.30469632771173, 3.289994159451941, 4.188647434323345, 3.493871748870853, 3.7394547801504268, 5.699874917284373, 3.103165934930237, 8.842440803598501, 29.48229105873595, 30.75227841325503, 14.043731171930247, 14.829508222918088, 73.42750101528824, 15.28924310625149, 64.37372658822659, 73.91791001591002, 34.480747981246324, 48.235858153317544, 29.238639377674883, 15.505320481661604, 8.176852670601125, 16.789735300036284, 15.115631872589368, 30.389418516279573, 18.068763978156873, 8.348273478659806, 14.000375998393066, 9.648494291193707, 16.722473813291323, 21.418748795613396, 16.155778691530283, 224.22144230769246, 7.907681282146575, 38.679912398009705, 11.054111154007796, 8.732575951106925, 12.027991336192136, 9.356316547937437, 20.777812327485623, 8.525382916823638, 11.66546148222659, 20.567304294328245, 6.023899753654691, 10.01124212294589, 17.077189211331092, 12.238774189408087, 9.052240266694064, 17.21415613368684, 10.556501480103083, 9.676102703785235, 9.059978022569078, 13.937803499952258, 10.356029476480083, 4.548590096150444, 13.150422045266314, 12.885372091813492, 11.986898245661436, 47.11944300969206, 95.49076163092968, 103.98198030201243, 28.798982505389958, 12.286932468610374, 11.5252691008222, 9.825920742602811, 22.949949873646272, 11.650690309263956, 9.048402821358508, 10.174191476951213, 8.060653291185128, 10.583649309188267, 13.141566168669499, 15.495154512144527, 37.49713350684403, 8.99174921470266, 23.079601699901193, 25.979537891214697, 27.01484446153404, 17.601127394293055, 26.11275618825619, 9.965902378141868, 7.6334828302872415, 16.19020759387397, 19.49910203699577, 21.615329577475865, 34.36845177045176, 13.886356844964991, 18.535542886770997, 17.313655871281313, 14.580883865200773, 18.901203421260544, 10.59825480061842, 10.466832780146243, 10.916946588500409, 13.66849403520456, 16.28730167673457, 18.27446627713434, 23.183496687952562, 6.8940772698251775, 14.779958906764598, 16.977841547439088, 8.697503495589224, 12.041712662534847, 8.377980134020275, 20.714420714987153, 10.427549738301044, 14.476087169706172, 12.255199083210172, 10.465268391345722, 11.667094870948588, 6.549266289736414, 113.85838891663889, 8.951614540689823, 7.983875518785952, 14.94057514420187, 13.182309666597591, 6.591576996472799, 13.339618704870931, 15.208083168913577, 15.419261740497014, 10.618062789934168, 9.205429889408949, 9.560569631757128, 4.806027472588513, 7.073773320511576, 10.315338668821438, 5.153313604451102, 7.995099927849927, 16.065993309983728, 5.243860640434675, 8.36800292092108, 7.093546142088389, 8.564920574293918, 5.698189947341429, 3.4190394124096417, 5.55220999751905, 7.482928545482728, 7.717652876058804, 7.614513402526215, 5.432688511909487, 3.9489175609207456, 6.2887543119032685, 11.208513732863668, 7.468387018586056, 8.349956601703184, 6.393429026651977, 7.792728317681036, 5.410745626622264, 7.322594181970172, 7.294464373515521, 11.75176969133084, 9.647583321757564, 7.218893236912896, 16.11340515879059, 10.344745695407875, 17.323405108160507, 5.949041943217985, 6.556981112943162, 5.963870293333078, 18.609535925693717, 9.66986703289606, 9.11594541183732, 15.910876949755696, 7.567020461321217, 11.989306584387483, 6.786333113583848, 11.60810723506178, 7.9067112261395005, 11.98364393655603, 14.150471807670334, 6.474297259611242, 8.966874007763524, 11.550396425617851, 8.747061523822214, 7.479351035782078, 9.036093044233864, 9.562185319377235, 9.162058134434366, 10.090352503031475, 5.973097868873344, 5.378980424365781, 6.612545228110539, 8.028991556716253, 5.396686534300143, 174.60416666666683, 233.99833333333348, 211.06916666666686, 193.32907575757582, 161.34950000000003, 163.04399999999998, 127.08589787989784, 11.731863125193629, 9.278985072483527, 7.71525532477089, 8.510697395402095, 8.059310396234395, 7.6278882795651315, 7.214830226035958, 6.626663217880604, 4.69528932819548, 12.69116392688826, 7.983962287100063, 5.177940688687798, 5.390041365037046, 9.466299420901931, 6.1987300170362625, 7.838244667530535, 3.1138225150550194, 5.255175584978303, 9.49707987773806, 7.18340774761326, 7.962680175569181, 4.385991860958862, 4.283513477659387, 5.3639121131168706, 4.960532577626408, 7.264199760389467, 4.310614532449741, 11.768175361240068, 6.068427976530445, 3.334576897223187, 4.312950536283448, 3.036041048212959, 3.2189515498317354, 5.602416648213551, 3.5130813898343316, 3.2434658812420296, 4.159592388049567, 3.1400443091781556, 4.244874576505413, 6.345194468704714, 2.4802230296910723, 3.88714469555972, 7.74000744204858, 12.725290751363325, 7.9105525991895975, 5.717120265212897, 10.69337493715435, 5.942013310200381, 11.939233040911716, 10.254928532449245, 6.25723041158955, 6.873202575356712, 3.537656919361941, 106.66536796536792, 4.87976275448326, 5.519435174460163, 6.8897659724802205, 8.902118019258678, 8.27936679722023, 7.574631303441873, 6.48602722885929, 4.91815939433602, 3.6753903629045857, 4.556307595636024, 5.571888063420655, 4.790645772026531, 6.04982695376114, 2.795937135479801, 3.8357295436243364, 3.887659753727131, 2.8506886024037557, 2.8049814706817657, 3.5589308784457345, 2.9748695974554353, 3.5827764220986063, 4.909773086855466, 2.6673383377662008, 3.3417585802100302, 3.0585400874418998, 2.788051336483399, 3.7589124435710635, 4.007270972363271, 2.632801953644354, 3.4042253612400657, 10.751045152196443, 11.776324827948633, 6.056502260722329, 44.28372798474263, 6.317793250641538, 21.706107263191303, 31.59047779029027, 9.277544231813938, 37.83220377222659, 10.27503827756777, 21.574379385841166, 6.958970940511594, 20.478715830754865, 11.04133823573891, 16.29816010380373, 12.911721157890607, 16.035972946228235, 17.66144355966106, 36.843208577813265, 7.53762406274531, 5.948818360091065, 42.40473286088036, 7.70974207182962, 10.478497015141699, 16.734233732511147, 28.802092504241074, 7.209381362655812, 14.461281517170596, 6.423906846119424, 7.787250565788069, 22.981382999682033, 11.629693433904244, 9.417115562093406, 18.561957966574195, 10.05553436938225, 7.128400960184572, 6.594705804025538, 5.901843930067372, 8.291545604475266, 11.489924282206577, 11.815867867340716, 4.725248978286095, 8.08951810032382, 9.241853233993242, 7.045258832298833, 7.687330479781722, 23.956221016272274, 10.471478479487503, 18.098240352209846, 17.606449204410143, 10.105379482014845, 12.854775290108332, 9.23744172213421, 8.74557144325356, 9.177644114004902, 5.519705191011467, 7.418741752977381, 7.083466883663506, 12.507629688329828, 5.017471938902172, 4.873328187391246, 12.683889344330774, 6.8227906903032665, 10.731085781884595, 3.929468263871377, 7.192409029632221, 5.161941626540998, 9.724777033416622, 5.585253284297401, 6.01998224450474, 4.201729885535191, 4.856309691854194, 4.22971227822807, 4.738050940605287, 4.7996818226631035, 4.2465234180383975, 4.11535693572394, 6.459025929739846, 5.903123411411382, 3.9842252998151637, 10.184273660805879, 3.697998730697491, 6.083719533055416, 6.269044316902865, 15.435081059328327, 5.451978730589507, 2.9262692506272363, 2.844004516488011, 4.237481186788659, 6.719286979268829, 3.2650973328087365, 2.9830267445080723, 2.7522368626112295, 2.3694866555061482, 3.82050971974113, 5.224707199661411, 5.275222222161594, 6.297104071317178, 10.760669259035542, 9.127398914606266, 6.682219520334646, 5.320801239949274, 86.44477329215042, 2.728577537732659, 2.4399822864104603, 2.8619097125861344, 3.7178549135260246, 4.5301096189388765, 2.5011719092168136, 3.1844194389806413, 2.2602009097374096, 2.905813362768929, 6.307919222199576, 4.54401540479738, 3.1178216874369094, 2.580119368655104, 2.8272986845762254, 4.533803572336353, 6.092012797157732, 7.285000386309595, 2.855519278048042, 3.5933724051610616, 3.811131503289191, 2.643038415611756, 4.544020623603709, 6.0839966374317545, 2.8553501664818013, 5.013653535545096, 2.5350008281484704, 4.281968560768198, 5.89305111534756, 4.81498719737968, 4.8096861492089635, 17.787806327368862, 17.269353346373947, 14.339885364701644, 7.652279397533429, 10.613502256497075, 36.9823029254661, 15.80334006921537, 7.755692410933149, 6.526167175365253, 7.397099681996608, 5.6869296127776465, 6.757532378852131, 7.036142237929958, 9.78278478163688, 6.055405432521043, 17.177247129353926, 20.031476832142662, 5.284856086292684, 7.2721728587408325, 11.054992749383283, 85.86094444116216, 4.732734624638791, 8.600055861242845, 7.235651758517294, 21.589361592716095, 6.938368929631895, 5.963587975227928, 7.242225995847706, 6.650178557083184, 8.814987573654752, 45.45012269568681, 6.28941324827764, 4.906824701076254, 5.027108773521397, 7.605908873479863, 5.154766170174055, 207.24857142857167, 4.3832119627356265, 6.820098772105746, 8.593816318581613, 4.663941747014286, 5.3937566804969315, 4.962318758298156, 21.52985657691151, 19.00416079146971, 8.746350750777108, 6.728449084251894, 14.180746097736057, 17.805778045594362, 15.308148571005283, 5.117893226240918, 15.344771563964324, 5.009530729017968, 7.211479539109727, 5.826710120507227, 12.0084344700577, 5.075022251477723, 11.03078511513014, 4.535244667402616, 12.049199674269682, 13.360466596197849, 28.27823378240379, 13.22570160979011, 12.769833567957281, 6.320170583321049, 6.799616462132539, 7.343327054232161, 9.868130713223845, 5.316975981959326, 11.782964573422385, 10.609216348870692, 7.135440175172777, 5.660533966579967, 5.315280366304335, 5.027558666021856, 6.775364728144659, 6.911611167341429, 4.99473686640424, 8.927424747886265, 5.45059877388294, 7.458237893951594, 4.484594534438785, 5.201641075109224, 5.7388350273910165, 4.489316270664919, 7.6354090952906715, 5.3856067109503405, 12.317352942700124, 11.55519753914778, 4.806257733701911, 9.887769719944139, 11.722258802512117, 17.98275127730811, 8.973036732609316, 5.371710770546132, 9.631009473742672, 4.999715084000609, 4.392798549778114, 5.107856688869572, 4.8848528243444225, 5.9504239335226154, 4.745806018078514, 70.50863974152679, 6.314547171817081, 7.361286650136629, 6.505760048161702, 10.855209373688972, 14.858344317786912, 4.341375653927538, 5.353678017262332, 192.11583333333357, 12.191602289103285, 15.012329694173077, 4.483257065593122, 9.191527303896704, 10.135231559805389, 6.808395770873636, 4.7954129269161845, 15.901689499477227, 10.210545776994504, 10.967293183641893, 14.83202577474089, 8.955137518375993, 13.682544260489905, 5.024137321696226, 5.307730807717704, 6.255581084954538, 6.953287039172173, 6.536041012427412, 36.45846862383677, 22.14916212005339, 22.21496744135189, 17.299278028480284, 22.217594690809033, 8.635782847805729, 6.376740672160792, 12.410337319726926, 10.616256126650184, 8.381642422134433, 4.789633817292436, 9.609150468274366, 7.052109467740046, 8.54556732583827, 5.658435890650165, 11.3602102282793, 5.313768388856593, 4.410850997260456, 4.737559839173567, 4.939455158665866, 9.756721970029501, 15.92476161324036, 6.247549780231525, 6.315176410681648, 10.577133276397022, 6.001289266090632, 5.969019697545047, 8.841448309237522, 8.701971665077815, 6.887276954247722, 7.379809076986754, 3.8878635082460935, 7.407172866143153, 9.855034440087133, 7.641830141434693, 7.973394087941875, 9.752399642582477, 6.653192409323272, 7.983414485255315, 14.502774194537349, 7.713188694327764, 8.193441878537206, 5.616424758020552, 9.573251749231158, 5.31392062344488, 9.503195780914973, 10.09380876068376, 6.809963203691074, 7.895760936774893, 85.95865649701182, 27.861245697107176, 7.809730221482813, 6.21453075094728, 8.051327927530462, 6.564348771326711, 14.494951122664737, 11.268625717063102, 8.81744151273563, 3.829658819267387, 5.383144046667849, 4.486495586870536, 4.246756679541481, 4.099847516133981, 4.505532531418106, 5.0854158268202365, 5.477803857404459, 6.222142813670679, 5.532162191130481, 41.711740863729, 5.3955406221273865, 3.7868360311198797, 5.125758637514396, 4.74489830304576, 3.396863632513766, 6.146510185959777, 5.898421769500341, 3.7862011592261964, 2.6751046997762127, 4.7586517729817706, 78.13646374458875, 4.2260379743769905, 4.2423749736748295, 5.326989157655968, 4.900963978344367, 3.3607534168714657, 4.100530162890816, 4.8238037828629725, 2.7835957233174398, 5.481948472945847, 2.884258254179045, 5.82711815961816, 5.063818185130225, 6.376686700504812, 3.3657553835834007, 6.208762453008086, 4.758648465386951, 4.167962867522723, 4.3001273262636275, 5.807674823563494, 5.1544329453359055, 5.069954353605283, 5.1861000000825515, 3.3219024499107723, 4.133047997302835, 2.9758294585770524, 4.986101421110709, 2.9822641352960817, 5.068838548406195, 6.313806343421532, 31.06252845320563, 12.884454843599064, 18.837108815363585, 22.57707631843599, 6.498494003004896, 4.764243266805258, 19.87595616368327, 4.764830078879035, 4.785668510620933, 5.815338113677249, 5.601307084742271, 6.371128074404287, 6.469696297073851, 7.745283148076854, 5.928116924576861, 8.401547271073584, 4.882982157160762, 5.041060121810648, 5.329884837754451, 5.682900072430275, 8.484177956971221, 5.110940161898405, 4.695785130712322, 11.037107071389364, 10.808731344907866, 10.683380406754665, 11.698017462132302, 14.310485953206351, 8.312278572249067, 6.383036963504773, 6.092733629317994, 7.297224093173497, 4.116681949494658, 5.574779242800103, 4.327714775546863, 5.652705408847884, 4.401940919904315, 5.286934006313398, 5.534318443030572, 5.173131664319197, 3.792704050928543, 5.495916485747067, 7.015615236095931, 6.2035251350360605, 7.763961763122783, 7.9850910169448, 10.14656541696114, 13.731195522364397, 23.887347875833296, 11.546169565453278, 22.544538351294896, 20.459941957372845, 8.491328760642938, 7.959242192666889, 9.063442990519352, 4.6982235045350835, 9.007038552399539, 6.875822950857446, 13.746153638821776, 12.52472501188352, 10.869135269776615, 8.42284411895649, 7.421280179411891, 8.990523411743716, 11.196356266396629, 6.309910409475075, 10.280718120759534, 15.858711095921622, 9.408312169811461, 7.068336589446655, 82.35165035674359, 5.853219790036188, 7.844276393143162, 2.9030442590298393, 5.883211977910142, 7.406071678581094, 5.691690812739746, 5.1492087335058985, 6.024565100485499, 9.535732892924068, 2.768025148266114, 3.8721901349488754, 3.8757381293403013, 4.098562192469141, 6.492402486865218, 2.875082108544467, 3.2998795644293053, 3.352055773331482, 7.380465244179654, 6.643368475075974, 6.946712938503714, 6.976396891279791, 7.970754721174082, 7.51889213583527, 7.650683945200266, 4.434370016041782, 7.473575168280813, 8.078957687937194, 4.889029609001486, 3.6610775048363053, 4.15725363440641, 85.91843956904286, 2.9970653284686195, 3.803896703376146, 5.314097800891918, 3.033088450952837, 4.515946934474492, 7.244644981867926, 3.637630057652427, 4.455844608520595, 6.589046318105902, 2.601882800171455, 5.68385565699021, 5.198262391054714, 2.7452327967699124, 3.635046542468327, 5.09446792109648, 2.9448230377419278, 6.232880035196209, 9.517586067520668, 2.492025467153987, 7.204252634744612, 8.402733650243253, 6.3188117870913665, 7.450456643915745, 21.228212393698758, 27.65201934359858, 69.41046260653694, 17.460998460461905, 23.969705158857927, 20.612399594657415, 19.77806583894271, 28.951271449278252, 32.665310912935695, 31.633149320368137, 17.25230523663994, 12.937577429786968, 15.012049161108042, 16.522237031991473, 34.72715516090487, 34.32610310959488, 20.220653194270024, 16.813313900078416, 18.314466679026662, 40.481713631606375, 15.46658770850093, 21.78128917165306, 16.99448412032879, 22.659363157218642, 32.19862752990673, 27.451397801250078, 25.161200200878508, 40.7567494700226, 35.405446682975196, 29.004613583399376, 25.687752979265305, 18.388114513392708, 19.755145466400187, 29.796895314001983, 13.274972754731794, 10.748618527967341, 14.514907576286273, 23.920158991461324, 13.699378258955022, 14.02454508048001, 14.733661250721338, 12.742211558139154, 20.121078597330566, 27.11368053371162, 12.0982981521399, 14.57925437035633, 11.20260270100645, 12.529192405330171, 25.824285732469782, 18.531191473851116, 9.326912738512464, 13.805483407073748, 30.597128981373366, 9.959156514310957, 12.161014445072393, 18.269756833357416, 10.666920491175008, 24.161787592500705, 29.20846922860577, 11.846845416923657, 14.956254273049826, 14.590170573677891, 12.033126820719433, 15.44830886257407, 25.501834296273902, 38.710183425058425, 14.324325578988296, 11.931017964930666, 28.737387556720336, 12.521188119666567, 33.155434585489715, 22.824151589423654, 30.228221009483885, 28.929460587917845, 11.041686989379704, 12.864729729246083, 36.941001176096755, 18.319845709021468, 24.85046711129952, 9.351899095351518, 19.04663787717987, 8.171122725843276, 4.795499051018983, 6.480576561376909, 7.847812400631713, 19.726226029792937, 17.30615970517074, 14.892369417222403, 17.590230650233877, 13.225780955095852, 19.293138942635835, 30.631544434157934, 18.541155883964063, 15.886184787877756, 20.3636211892464, 23.830972784880586, 12.861282472850142, 7.988906769615277, 12.170256401271306, 14.27675711225324, 20.955242680778436, 15.73053066677182, 17.258652411031687, 56.32444993907061, 20.715458918283694, 18.62721072982863, 20.951555072383847, 14.245186824008785, 22.8175617357524, 11.159098565171076, 10.372252578092825, 15.400671564020282, 20.03552171492114, 13.522203250365127, 9.180334545958697, 9.719530877622345, 21.00766362513813, 12.928938090903358, 20.026445106276952, 8.786441664529805, 16.40285405855866, 12.89553989228425, 10.228254522762843, 7.117835597229963, 18.912704816100998, 14.198025483292968, 15.678418479006071, 19.850069787163292, 9.922674300789328, 14.72504693416725, 11.062148249725924, 15.392970869245131, 17.41671109030749, 8.507120709918734, 10.283072384079011, 22.445202525284998, 14.880285675122863, 15.688844035788279, 11.915692608874322, 9.150154688418596, 14.399120042627873, 7.622939091675897, 19.952218554073117, 15.731634620864813, 16.024575999652665, 7.120383808580711, 29.33335715326459, 9.732978421239942, 15.96000041489482, 6.889724528018969, 8.656036955604042, 6.381191758072826, 6.639740957669218, 11.220161247488791, 7.807937117457534, 3.7472305722850345, 5.46342538156194, 3.5980085626221547, 4.3371529191693705, 11.752805922857794, 3.997415195873556, 2.748948845587517, 4.416444744936113, 6.002532267055867, 4.792572436457036, 4.791677119440476, 5.830053398806986, 3.980317653227027, 5.694097386200492, 3.559399903897698, 6.221259685192509, 3.1326810183078946, 4.048747893431011, 3.6681029988425227, 2.9620219538358614, 3.197481843263406, 4.706580328860185, 5.330726342862648, 4.271637729449952, 3.38943131291187, 7.427043710052156, 5.010776562576419, 4.802265504718187, 3.265784408963647, 4.9026338968891485, 4.774739403563253, 6.278602387611153, 3.0889332694984755, 9.824036184467616, 6.700735580284102, 11.64322019919284, 3.946369003267132, 5.861940480563817, 7.790156658035372, 6.166092980625899, 7.430669057068111, 4.033311083563229, 6.02126816335602, 7.359535922110224, 7.397828597443568, 5.735947582556544, 4.963952914362524, 6.94970514089063, 8.533991295098927, 9.828385494786902, 5.3462432738554115, 5.22261517152438, 3.018738000777243, 5.251878561910211, 5.48543575603286, 6.281423520923521, 5.5589231787040365, 5.11056613705817, 10.949595256595256, 5.026461914300439, 9.2063054162323, 3.419267385114642, 5.076027764414702, 5.369906868373171, 4.242043997110972, 4.698956280762255, 4.5818937573986345, 4.138763970135195, 2.9329758304523863, 3.5303592176063137, 4.663909529313907, 5.0405758710843465, 5.086687655406171, 4.686602130396025, 5.743366015841629, 6.977049046364261, 5.81288074462457, 8.71574818237318, 5.871897045012378, 3.540181282014484, 3.5475045629814783, 55.49055260295262, 4.93796564217461, 3.3117285682416773, 4.267764901622784, 4.256829526686692, 4.1792518076518075, 3.6314352983872977, 6.025192810121987, 10.789301157066344, 4.895457000326201, 3.6144813476081734, 3.203895212961628, 8.749729086319523, 5.871975800265569, 3.601774453745742, 7.464726387991095, 3.4550000342708325, 2.9822691190973765, 5.472827946111192, 4.124372065340215, 4.133740410810374, 5.189419916057336, 3.8134206333662903, 3.9513817631359607, 3.6949298445978607, 3.6593282738953974, 3.696719908899104, 5.456829538393866, 3.2702263655781003, 5.436773165408229, 12.574665929482581, 36.08440675329343, 9.536504357323299, 16.139877670125664, 16.094948509065144, 13.150609432123193, 18.2529809083882, 11.062168687687468, 6.016373466230063, 21.530993511188253, 13.966824175282913, 9.667385863062103, 13.845275555581123, 231.12783333333346, 14.504016873605893, 14.895281923062331, 9.172010534455385, 6.004784195063942, 15.118308713329267, 8.667979448251245, 12.847817489066857, 12.61740546984497, 4.5607752796886345, 12.739318713093605, 9.671930720845014, 10.14904370644511, 18.246609552604184, 8.36286708521098, 9.590307264300538, 9.129937254868668, 8.276410816328635, 9.924821721645504, 7.809416581353825, 14.627884457927395, 18.20801588730113, 7.257817061997727, 8.884082428380447, 27.51105490207699, 12.72955896055782, 6.981646706521227, 7.981344360687739, 10.717441962369675, 11.537708344938435, 6.477079459351396, 29.610430005476786, 15.618854754881426, 6.855017764319527, 7.05708413714686, 5.697766542204221, 31.688980631268464, 7.8647773471004285, 11.558353650392478, 22.339895777443115, 6.905848759535345, 14.757163752494343, 22.966245480338515, 6.529142083327775, 6.182870196715846, 8.098645410019968, 25.371063922553784, 6.98884033671575, 17.373953994496155, 7.494330500979239, 6.276450897277936, 13.189680077436897, 4.912077061435557, 5.626722833684789, 13.374769021688532, 6.090116007404748, 15.192021932320909, 7.753112964574612, 4.949663343560488, 12.348034729649982, 13.59809992266094, 23.62080063135963, 3.837045673493719, 4.100139658100758, 3.8058474815447654, 3.8404018701143348, 8.037568140399749, 6.315388069906108, 4.4125980582360205, 3.570162123039489, 8.235877160910334, 7.676510851712697, 5.9717183057428525, 4.912456132871542, 4.035412136984671, 3.9536965447492824, 4.910009882356421, 3.9133553164678476, 4.184598714890173, 5.719956987536923, 4.155728810515334, 3.185406477739916, 3.7308010460355288, 4.053613660914155, 4.70024147853429, 4.2046617923919465, 11.407445368228263, 4.58897276452101, 5.508694803302415, 3.849864301508455, 6.600086052808551, 4.2669616888685065, 14.12130557325058, 5.362508095375828, 4.2192353854386395, 11.264666599310564, 9.376268226988055, 8.845185437547627, 7.591191345925117, 7.137532608149098, 12.463541585829626, 7.464319699107961, 11.419774591894171, 9.587923489187602, 9.224179366610402, 5.738459283276558, 5.656340842397265, 6.947397281593022, 39.76368239930346, 41.51379679660112, 20.57201282095437, 18.58326938150665, 4.99913738041403, 9.018615914681122, 13.719743824802647, 3.6092815685881154, 114.90377370230385, 6.03237000732592, 4.665051974819864, 4.670246654503685, 5.548203927996158, 4.088789925282117, 7.0703305383982284, 7.9969676414408495, 5.490301787257862, 3.692000753644594, 8.37148354042472, 3.6943196869279347, 4.378507955369709, 9.050797884004536, 9.577137234680379, 4.294311958389274, 7.142784384819958, 4.030901441983261, 5.833381228325439, 6.072461276835184, 4.009292942008807, 2.952122511393627, 55.931945061044935, 4.473455986117161, 6.8825357399629565, 5.7863517247694665, 6.420672938413026, 5.461207393572898, 6.902359416963325, 6.302230626943865, 6.768281039735241, 6.580665928006562, 3.7309593372674557, 4.294469159993695, 7.277149625958967, 3.8923525622623183, 5.737714000052233, 7.8157055978360495, 5.100137852165442, 5.812072418679392, 6.830082941593623, 5.16149112171929, 18.136785931904353, 18.96301875590581, 8.987551183131503, 9.984260892567214, 12.76509645251481, 8.304716518427368, 8.82006675539103, 10.381976041432406, 8.65789479312985, 11.420167868601093, 17.19502696226809, 18.887570281402603, 10.451594796839693, 10.63545804943572, 10.627188807873429, 8.50382098267099, 10.358275090735264, 8.802459600303951, 11.52095081628963, 9.811037095758651, 14.206838200173022, 8.947011603321595, 9.254647452041215, 11.765651369885495, 9.485352687909119, 13.089004379987301, 18.6512494683466, 7.194155567921229, 12.7336669939773, 16.980141523716153, 7.05764671923699, 9.08360583762742, 7.706354160462838, 7.631881118357648, 13.1250741838562, 9.441500982031416, 8.795220165687248, 8.060765935689897, 14.26663465971611, 16.826573409744846, 7.475134822412603, 13.327707734498226, 10.320115362146575, 6.678101389386362, 5.326350446260217, 5.816756016401963, 8.516737104503312, 7.014651286239747, 6.947332381527456, 9.55800130770412, 6.5519511466374585, 7.2522800681771376, 7.196655385536653, 9.297604692595904, 5.792099403061914, 12.360942782634604, 8.846700092234522, 15.261799054210746, 15.3758658449892, 7.051100364262488, 7.988615732924656, 13.711110791703467, 14.920999375133931, 8.847348539744562, 10.741849441300557, 14.744676818810618, 14.034518828688343, 15.63841513709291, 14.521371994370558, 12.97113890136707, 28.30490653420065, 8.370804653033407, 8.54883290812131, 20.384875993524034, 17.913807867371528, 9.457289031383572, 18.85393683873274, 14.95624653854325, 15.20873347528866, 17.041196621852286, 9.308662922575941, 14.304427467405407, 8.985212330635926, 12.412159206631635, 7.140991042952411, 11.867530841863971, 13.17082834948138, 12.795784145319512, 12.812971547179911, 10.324921894621701, 12.070881284597693, 15.372151820712698, 9.872049011167332, 13.094513596058672, 13.85873950022151, 12.55373208619726, 15.51902651487945, 13.242332136383702, 6.799482320376393, 6.302471564817802, 13.84807777799368, 6.467015698898051, 14.924051649250872, 59.56580565200642, 6.875880050781962, 13.335587450640489, 13.285300482550397, 15.135214549396824, 11.573528501001068, 14.010629512394779, 11.346212388637092, 6.216759147956003, 5.652742167801645, 9.648681813028585, 14.804507852921866, 14.135932550640849, 12.187588648203363, 13.12050709579324, 15.264102160770552, 11.594126197778829, 56.900130575862974, 5.4622901208054255, 6.103087241393949, 5.6268657398399835, 6.5170361044085965, 10.593368880853632, 16.02984158146144, 6.830032446020816, 7.455133315373135, 53.75897951350702, 20.488835967586787, 9.20297884433244, 245.51000000000016, 207.16000000000022, 166.39000000000004, 178.71966666666674, 134.7498333333333, 160.90614285714284, 6.521313808480789, 6.312448068354514, 24.1025880725797, 26.096945891625264, 50.62560880604179, 9.6165096116931, 14.318459110796615, 8.268780002732537, 4.809619837468791, 6.997332909958415, 21.909236977521175, 9.460880242678114, 7.193828733516039, 5.3119284569418665, 9.141300874386225, 11.606845761379358, 8.441803513044896, 7.28621482499728, 11.229954289809482, 9.12176246071826, 5.8398919156604885, 6.912744486248208, 10.194131012421945, 9.270814108284727, 9.376391450516998, 5.737971101191109, 11.723914635342384, 12.069620640958087, 8.88925368077068, 20.550673185676963, 12.818704502657678, 8.807176072664081, 8.76059498318382, 5.976921446111227, 9.915417495082194, 18.388303251893067, 8.697770218455227, 7.17464487222659, 8.552717523758458, 5.806735497115197, 7.7362665464090155, 14.243865450916182, 8.428986024603226, 10.01026178769947, 7.7105211152147675, 6.185703062029569, 9.020396790912528, 5.499479986311345, 8.778293218915335, 7.804232069166573, 4.916460984887366, 4.317597721513025, 7.002276610511558, 5.726492268489881, 5.260613408559491, 7.949019703166623, 23.789822539514812, 7.505686856420496, 5.483409523860529, 8.035940381137028, 6.980247247790862, 4.974418715429227, 13.93623298558178, 6.606955893806666, 5.902612491683687, 4.173343930546143, 199.1778809523809, 156.05745238095233, 140.76654761904766, 145.31109523809528, 96.15434523809527, 132.406253968254, 4.546945810803764, 7.604861243938357, 6.651521392569965, 5.313631963323299, 13.438369731905526, 8.278553765200382, 7.958163584693934, 8.801820409958761, 9.513287266706708, 4.6939803890176135, 10.368859479598921, 6.648681721955291, 5.942337412853516, 4.981073167589529, 12.184241512302185, 7.534463344132258, 5.5213691633544295, 8.670774831502456, 6.941609599415629, 8.117546396184995, 7.8167079870287886, 4.605726511128813, 5.56303981257848, 5.73295870174839, 5.62473462896743, 4.444125423075091, 6.115760575661585, 4.173958458190214, 7.202463069553899, 5.290415664103062, 7.521827662225995, 8.578610143384486, 3.765543415228271, 5.518594308659715, 4.970791981027588, 8.06387206005768, 5.606253347054144, 6.3724248627866675, 5.478209727012219, 3.903391817682364, 70.08182871203347, 5.647882187354204, 6.877918353876198, 4.499691780712422, 5.849765387778316, 5.000890115286671, 4.730481451781483, 5.449155689165661, 4.986688342440864, 4.103319018424327, 3.9651981018670033, 5.8154351761714365, 4.826255847680297, 3.922273591520893, 4.217906027204777, 4.661063576578933, 5.474574047868501, 3.8352874029155215, 4.329380945545786, 2.7401927894480087, 12.237700004363157, 17.17046200040527, 3.9315630845511325, 7.870804619121759, 5.608909077171252, 4.809914354909922, 5.939784547115151, 5.8170336790381345, 7.889106690105133, 14.138849442040028, 6.09147620362813, 6.200534525396306, 9.381807841502567, 10.858841908607117, 6.77957427925902, 8.433888152946587, 5.7096457403975664, 5.333771590229652, 3.8279477286371857, 5.43646430186814, 11.053555963123275, 5.567630762532168, 7.2898834147657645, 4.883466600702538, 17.314727294524534, 4.950876484917814, 6.685249409332021, 5.662886342939262, 5.035928712439429, 5.152241992851125, 5.037195509864916, 5.352519510713615, 5.1748873065239565, 5.340951737733052, 6.32568491964243, 4.434497452883136, 5.209817511706602, 11.729101685830967, 5.115043929561402, 6.982052606155355, 7.593882323921653, 5.458759620632386, 7.429724728923538, 16.42899448256588, 6.597589466142282, 9.494964171870969, 16.223272634405884, 3.734421148931529, 4.250993385373457, 5.582462331785197, 4.305742879189223, 14.876047660430286, 6.730987883854819, 4.0878454496902386, 6.877499642938601, 5.522175522799538, 5.179448763792479, 5.621620754648373, 4.285419741422317, 4.972321628129387, 14.27395438572907, 6.30018527234611, 6.8095293301941595, 4.4621126678360215, 7.822308781028251, 3.6355720335120387, 4.436254829413467, 5.480734642503719, 12.42702611244684, 15.152610075248498, 9.323401890094269, 10.454866505091212, 5.9543357750803985, 4.646613573792523, 4.468422589308365, 4.496112894837845, 4.907622424357729, 4.7631255359664255, 4.027905049350698, 4.573734118878306, 4.460551315196972, 6.161700369936195, 3.8030847084603985, 3.7209764461695194, 4.090768042849539, 3.9073277210510513, 3.6622975816054115, 4.828971516407746, 3.881866157650396, 3.729232303035124, 4.066635529453027, 4.078728936453487, 4.568464400232157, 4.321142359915337, 4.878490967293151, 5.302133460729409, 5.2485268424033045, 4.010106723381178, 3.5823557637973247, 4.411934975919118, 3.7882716305109003, 3.7396936256809865, 99.58583358429013, 4.194112201978076, 4.111086618233202, 6.259218360713184, 4.691521404956913, 4.547869024694673, 4.308561026987282, 4.091100356009347, 4.058983439544088, 4.005562863986277, 5.452036559101432, 3.426032579919276, 5.235562989184705, 3.212401615957983, 5.1385920221838735, 4.240708934717563, 5.192595738711976, 4.4958648299418495, 4.909505047177454, 4.943235754150679, 4.137147745366307, 3.843779634829676, 3.0285445154597133, 4.49399295242466, 5.167148795606665, 3.868184383151465, 5.3518339254401255, 3.9929256156577337, 3.5148811975715866, 2.7646392742033212, 7.943140663488485, 5.414074605434755, 10.20295968795539, 6.311577036338511, 21.90534693059927, 32.32314828964542, 16.27551753864166, 11.27428005786981, 11.193182653483674, 22.00549794291707, 10.783964801267276, 13.535675424758841, 4.622582418314804, 12.913025618118972, 15.164256839681707, 14.81375064615883, 4.36266976307684, 8.263413186298031, 5.717692059005406, 5.214847188415511, 5.695888213602553, 4.383993866999551, 3.4879347999169394, 9.620551603216816, 15.306613588706632, 12.833053104249723, 12.187935815091063, 8.715080620074295, 13.748724362540885, 3.9283717275294827, 82.17496521668299, 7.67937771546094, 4.634578615080698, 9.532548824580422, 4.016072266959366, 43.25448761188694, 67.14624699397609, 43.690538968205786, 30.254642332786617, 4.166389629721689, 7.749183647010689, 9.224166001714284, 6.542495732200674, 11.468249382901618, 5.772522641706445, 9.711540047361924, 4.2686922121051705, 5.9687343965648445, 5.332083621277382, 5.2623493596962865, 5.3559092818847605, 4.357799731276428, 4.363475302748524, 5.969172280205301, 7.694107569583953, 4.866839127762501, 3.3714160640068043, 4.502214310692157, 5.7086716377856, 8.434443905364104, 4.326433102053603, 5.390549170062666, 4.959264330574553, 3.3595013102135565, 4.111546075892299, 4.33374451566718, 4.834885456918688, 5.369300146758181, 4.896995330822123, 4.375738694035254, 4.120686481830668, 3.7115437733527523, 3.9802247199797165, 4.1173894839000225, 4.417024357264723, 4.706100862990225, 4.539211605421338, 3.898462697885364, 3.576221328813198, 3.402544351227215, 3.760333125404725, 4.810616118256099, 4.101266189733862, 3.7357517151541155, 4.299730344762453, 4.031065169844201, 3.880824425698938, 3.9007768290623885, 4.32486709052714, 5.280238230921209, 4.198186180602885, 5.155036373978218, 3.6547199487445923, 3.9296205878372117, 4.3456505759758395, 4.926965630714708, 3.9003173603562225, 5.553640114780322, 4.781536996509006, 4.69023738915575, 4.853222660056009, 5.9923724681423, 30.18829539058293, 7.22066071225333, 4.388576743569918, 4.720758259211756, 4.410999047608285, 3.729286483886712, 4.247512631454097, 4.327054579831874, 3.8018324750584274, 5.429258433103481, 4.239225548934292, 4.1755727396250535, 5.155843403928322, 4.406174553612317, 4.461203829697586, 5.189612121152049, 3.907498229971504, 4.2411102032139345, 5.183120552612007, 3.7826183630668972, 4.0986947960601485, 4.681636695389745, 4.722276001341373, 5.953607420663158, 4.496621479112582, 5.9631562680305645, 3.1873946061781937, 1.9757103309423514, 6.884527567740872, 8.183526479397836, 5.635899133050053, 21.374155777055147, 46.24341143424518, 45.81439951407757, 8.154910080186099, 26.768099920706515, 39.070941150968245, 18.687671958421095, 18.325699493435064, 10.884467806347049, 11.415003976084053, 24.715411454031788, 10.208186453557646, 64.91185379901877, 248.43566666666683, 197.67500000000024, 196.02000000000015, 142.64964285714288, 128.4738611111111, 190.47538238573014, 18.02332261704912, 6.428085995658248, 15.541077355577691, 17.521795185617773, 16.787156270528495, 8.424830738406362, 12.746700046231739, 61.58211745399431, 38.67255598622067, 10.993645588087483, 23.943296774315595, 14.098797325635356, 11.211587217958241, 9.423277499330096, 9.185132378023573, 24.998996021459078, 29.46663212418705, 10.880124778755304, 8.542206061661942, 14.805568195955393, 6.2537947126607785, 18.30789413430418, 13.392372074543477, 13.771419742976041, 10.692910546870651, 18.63603497334196, 8.816075318420532, 16.73142541199117, 16.75842131304348, 18.174897831205712, 26.359321893949694, 11.276367190069584, 20.206819460470587, 12.699148866311175, 10.602984056988625, 17.344423704369017, 9.105370948642664, 7.343146638779239, 5.809412326210951, 12.20965682477563, 3.7240635315516535, 9.899437425211346, 14.563485464828373, 11.556910623519428, 9.802462632390869, 4.566898609203232, 6.6498070960463265, 8.59804014132208, 4.087193073146369, 6.814301508831757, 7.860846903003112, 5.6267372665123325, 6.0734121686517195, 5.621452501925991, 3.3906391575691504, 4.584012896394144, 5.691916558222447, 7.551206360441224, 8.005389794420552, 3.5975958480194787, 7.035357686846851, 4.434313803056962, 5.710414909237177, 4.329927187739086, 7.8612439380995, 3.167532868677518, 6.92758955280633, 7.128442417476414, 4.806322945845004, 5.337132973360593, 4.914058160243415, 4.891433107640825, 6.2085238558381075, 6.878141487021484, 8.168877102881734, 4.687823367356229, 4.117864357901979, 4.83948642548758, 3.8520784508916295, 3.6971957755388503, 25.916397523325898, 5.387041205310776, 6.385583114116214, 5.181602353335486, 4.72275344535799, 3.0730667872580515, 6.2308304509345085, 4.034346503063437, 3.194474524301364, 5.859014911204655, 5.091877992293219, 4.55570327580203, 5.188797239365949, 8.098959250671781, 7.099464664312136, 4.446252200356445, 4.638221008820396, 4.0230269585203775, 4.655066949124952, 3.9170323183465383, 5.332815472651938, 4.404865511523616, 3.811534727993893, 4.277654633427459, 3.7502654695914113, 3.7581464382511593, 4.213795889233735, 4.445875559529852, 2.8083375033557303, 8.177857640772467, 6.470413173892479, 4.657547060157868, 8.714212730626372, 9.460559466280515, 9.390899252723464, 15.065038328620481, 7.364905309464587, 7.932773004004596, 17.939180488863467, 26.177341042508495, 14.173393046421186, 35.21428814312007, 18.474470299188358, 23.991379284652087, 7.023916729014699, 6.762867543872902, 19.814757655101534, 8.119360978485785, 7.086561909785052, 15.0002510365045, 169.3683333333333, 148.55501282051287, 124.76635714285722, 117.3008571428572, 120.82744444444448, 164.2431336580086, 8.204597680383388, 8.034960782070119, 13.768516281007011, 10.583777554471084, 13.633008078330167, 100.16994632283425, 115.73129898610162, 133.21207539682536, 91.16882431457434, 104.24747591297591, 108.5919473304473, 113.22915190365184, 10.377364576131894, 21.397583852085955, 14.104610666577292, 16.096456010473915, 10.516831450710297, 10.380651426983922, 3.4581740934389527, 5.523587161893247, 7.9590133027041965, 7.28723777391059, 5.60806315276187, 6.794135944129047, 8.262538655383386, 28.759201154219593, 14.788826960415399, 11.48541856636214, 8.42149894138159, 12.773951049051407, 9.087770201551466, 6.012809173594068, 4.90345219843988, 4.760928779137691, 1.8525637336134373, 2.159310138528267, 7.909250920793098, 5.476459467819761, 8.372588970515954, 7.637715019769619, 6.392048344868596, 6.063698943543206, 19.190697817138023, 7.753603334579302, 9.341209682772124, 4.0556547239332295, 5.861750417822382, 15.356020971449803, 7.1897323671225735, 9.005410084116983, 5.7948996949061575, 3.761541705744688, 3.601835885223653, 4.68483852380921, 2.7274719571924764, 4.148308808898211, 2.6434256750788983, 4.655600942140653, 4.45597770432807, 7.319851758313416, 10.437630856789207, 9.96176676939144, 7.7056589914497975, 7.645800940773918, 4.302152926855991, 9.016894945619814, 13.81916502286078, 6.652389821173878, 15.053469384522785, 5.113294924689463, 6.002793046391722, 4.098583232094816, 4.3601542073493835, 3.5075399917930015, 3.937539722674169, 6.915248348315801, 6.220723834538119, 6.973461569423749, 3.7807976960652887, 8.290254172238107, 7.8479541077564265, 10.723810855944388, 8.289853131846918, 6.680334460082997, 4.410784385863643, 7.49036963615788, 5.477879812919266, 8.074638560377915, 6.430516388795352, 7.201647102707202, 9.276707220190676, 4.184310003650056, 5.469353506133916, 7.301570497920154, 5.065912727125112, 7.344734524790326, 5.017063166994349, 8.105753640134678, 5.329120297308202, 4.9454815657004625, 5.008495217415015, 4.709411861566587, 4.026249160249587, 4.367452457526715, 3.280710476529963, 3.6554300752684235, 8.02096005877616, 10.384339161620604, 14.094061407547565, 10.72197030763917, 11.428768834985366, 15.03201263770617, 31.83969650998029, 37.55030122863717, 57.956204958341246, 45.73132833237056, 27.830892686992907, 29.867962919542272, 21.669734529642863, 19.247929578489565, 35.87299571766281, 27.905845479791065, 22.213340217447065, 13.931144773803261, 21.442441055053877, 32.06723171805841, 22.447553788567472, 16.840498590392183, 12.739671206348154, 13.649776274730566, 9.95962946761241, 44.43775796603415, 12.706968545380333, 15.21706994568804, 12.489166036036309, 10.297819059591824, 13.026284450459926, 12.406721824293378, 8.046419806758351, 13.604413107801015, 9.249747948244845, 14.629484325639387, 14.96197361189009, 14.999414053703806, 13.415416051733454, 16.094025266565684, 17.946741872883518, 8.023641855841012, 9.13004245013428, 8.878254290760475, 9.381957289400834, 9.402709227934967, 20.37079184076637, 7.724305717689861, 10.65465757676841, 9.160142534523368, 19.546892138066184, 21.540422763180494, 5.879483863074938, 11.465790480597656, 6.430205019754371, 8.39117442032443, 9.921001105407942, 8.246435112938386, 12.15786731189814, 8.370384251631375, 9.538952160627094, 9.296138364330313, 10.173354524856705, 8.360060996963233, 7.304840845288663, 7.813746832804977, 8.206904118873075, 7.493067544207349, 8.590720692892319, 5.532660157920176, 5.76384637965316, 9.87145542697954, 8.501846845469823, 10.812138868091418, 7.589039628495152, 8.041452680652188, 6.671554998211752, 10.399694416121179, 6.010057613366525, 5.411633739684361, 7.321491439317467, 7.160391982725175, 6.716905173379995, 7.845705951735621, 8.032414587641174, 6.696044678195599, 8.468847016482577, 7.294318629561757, 5.481828398853379, 5.953684469042262, 6.595452954061132, 6.952628115538943, 9.858883363754552, 5.654362527930104, 7.283883119276497, 5.3892032927971565, 6.207336368591147, 3.2023333392811946, 8.109688516053835, 6.4731969436644645, 7.593324597729064, 5.713546266431266, 31.233537223239313, 5.035546262758793, 5.371566727894184, 5.949818108341938, 7.564963512748365, 6.896998922355291, 5.66775923955611, 7.326995654183135, 6.759255806150986, 6.562791734570519, 5.779732212364291, 4.309325246228433, 5.1728627614747165, 4.5081563220188565, 4.914804327299553, 5.139354252179462, 5.246848901267857, 5.459409076282856, 8.837789571577261, 5.768099134583211, 4.168917183276448, 4.4090612208099245, 4.703047218728415, 5.251909953729756, 3.257468346220334, 7.474357826475114, 4.015037470040375, 8.490568151513163, 5.2356832405824525, 3.954716684954216, 2.755226279203541, 4.424305978039673, 5.7783232533945545, 6.711506441042078, 101.53226107226112, 4.505402412328188, 4.641202650068557, 5.3755376587169215, 5.378011831802958, 8.086865480702846, 4.509472197117966, 4.244326561475575, 4.549463818222691, 7.064043631846368, 7.624659355391141, 6.715453629338648, 4.285892043265806, 5.140921636117781, 5.722480038108939, 4.4316825785977825, 6.672457218760285, 5.221174064395486, 7.7289016079972885, 5.117519343389709, 5.085888681695087, 9.908871605867915, 6.492965751028469, 5.857626038640993, 4.393384519093164, 8.149756463839465, 4.508163703538417, 7.959069522007447, 4.609728057714577, 6.21232057658441, 6.641920923192055, 5.557134203402187, 7.226187763789337, 6.803030317777596, 5.8446426806611935, 7.5387835201352855, 4.632116512604557, 7.082377042789908, 6.1345409331119995, 4.95517756262347, 4.443417670497044, 4.40808625729068, 5.479645868058717, 6.476509143986676, 7.753245870473614, 4.958875905345539, 5.101704618231828, 4.387973110861878, 3.4338394545934197, 4.255888112168871, 3.5664308973541066, 5.64756921443589, 5.303330958181509, 5.104092334622829, 3.814852764478822, 6.304880375817015, 4.028467707785796, 3.8778303549151083, 221.94316666666677, 226.35750000000013, 181.02816666666678, 174.81519841269852, 160.8590555555556, 143.1420380730381, 3.5976602834860114, 4.887583402451307, 3.262649271666266, 3.456639073231192, 3.3397377463592783, 3.3560493356512935, 4.027482449216827, 3.5627898582889075, 3.6836495710485244, 3.1473042897035044, 3.3617779103929792, 2.9959943600074457, 3.240958497595118, 3.188753568873098, 2.419623082960103, 5.268171361282044, 3.68181178743375, 5.675517109894987, 9.450974863104538, 9.099053554181955, 6.067956394133581, 3.7809555089861613, 6.437189000577782, 3.9528630450434035, 6.552443060763108, 10.34697484063466, 6.593607783644395, 4.4000849588271524, 4.260654738936517, 4.053546721829861, 5.861545236776798, 4.822270026123517, 8.086581597434419, 12.568520348166505, 5.17746873106399, 7.033190476407709, 3.6468225155001286, 4.242386929208355, 4.083419123536025, 3.8746554180768134, 4.751771648931759, 5.712602443694162, 9.5372516043142, 3.588164889608072, 4.927782465900114, 5.0739270801204945, 6.5295982226827425, 4.4214541936355936, 6.217462457142907, 8.809570534102702, 5.694816729186258, 5.548174023273038, 7.455845386278406, 7.4185648143409, 6.040314550992807, 7.1739153874838495, 5.688261969163595, 4.893238293812932, 4.807988471885125, 3.758373879857993, 4.923393695259479, 4.720300033791359, 4.376867513617876, 5.601276191679953, 4.154056172178196, 7.136216709584937, 5.0772387699607195, 4.589627568916857, 5.541504276751689, 5.74202711335971, 5.162954488625847, 5.075874429536846, 3.640937150259763, 2.9921403080578606, 3.122080057961025, 3.865562800195128, 6.238331977796354, 3.7786217300339735, 3.4892119121261937, 4.195810190508626, 4.512708574635114, 3.2191225211460353, 3.057808213099567, 3.404069210548294, 2.947127581667707, 3.6051144899036056, 3.8143398345607102, 3.4380568084389425, 3.6729517021489406, 3.8718481353123777, 3.3384583022493497, 3.8245291779242314, 3.2978838674739075, 3.2348677034009534, 2.7707462209890807, 3.0726238043311658, 4.601016617174159, 5.365962252049741, 3.2642634003765485, 3.122615429279102, 7.716511653770846, 5.827742658500167, 4.5399991479979445, 3.0417547107572527, 4.3265519706278175, 4.382963910116796, 3.014227734587631, 4.141959883723813, 5.312283028967911, 5.581958448403267, 5.96473945662181, 3.2079745938818296, 3.384029075999236, 3.1018064504143377, 3.5897722787329633, 3.2563215743987244, 3.6007880694218257, 19.60445270452413, 2.999198201120002, 3.248467803040732, 2.867732152592248, 3.03075700988954, 5.321366312525098, 10.37530824997575, 6.320811367637184, 6.409307935653578, 5.69051913404231, 3.4037589789384617, 3.4995002007964575, 2.9745748659503533, 4.494500435730674, 2.2994951676566378, 7.162423574047884, 4.847708602024715, 5.619251287782694, 5.478394806360853, 5.002260669869951, 6.3578919884463385, 4.454090767416599, 2.492528913287987, 3.6450534127204812, 7.011689369075222, 5.505608102084136, 5.5609450360942665, 5.208829895156286, 5.984757279246182, 32.9432371384552, 36.36598558372894, 26.519188953733234, 47.223461445893044, 20.45614755317306, 40.51701247800303, 43.775863223405025, 30.457056651788438, 24.705218887552242, 25.02825161401271, 28.89859725093018, 27.532603214536053, 23.57753543327386, 136.03431277056276, 19.936884705947946, 12.623338800547916, 12.914601151935898, 18.873144233601952, 15.201360975230594, 12.807388539205819, 22.065438766867576, 16.737837517018423, 15.12938662474893, 19.413855781736075, 17.535640251645695, 16.156048050029653, 12.228974274665262, 8.169775520536595, 16.871438409781284, 13.99469529998882, 16.365320519212815, 15.835266764429944, 15.865360845379076, 13.293093309987501, 15.468496375697653, 11.64885347289618, 15.525930591878513, 11.247816230290141, 13.696238273179258, 11.052913342577435, 18.54925637323219, 9.92586977146489, 9.573547125101971, 18.913586002948524, 10.9616194384665, 7.583743958077912, 13.107355208309857, 9.700014329204345, 18.02640134449729, 15.323831167485446, 12.720181838811813, 4.6650984243469615, 5.80826003203835, 5.0187078479311955, 4.8032352511622385, 7.641506266619416, 8.244249359747878, 6.807488423056612, 4.735410718237729, 5.3093176539588685, 4.387236570310225, 4.670684858677268, 5.599506641200821, 4.6243131082482485, 5.4222647657714855, 5.572492772271009, 4.301614691093764, 4.235454287359457, 4.712564723018225, 7.67291047484507, 6.186749685611261, 4.696182351252307, 5.409922512886487, 8.680176516869553, 7.70359818975167, 4.8745516569181015, 5.969100771249529, 3.9282811242037066, 4.080629305918835, 4.342392640087377, 5.832576534181942, 8.627520747542453, 8.391242354821959, 6.67714682897467, 7.875283082974259, 8.09330706229779, 7.118059624046741, 6.443993201478765, 11.180882596199138, 7.463413825278657, 7.089018328028873, 4.432840963634259, 8.710797285436355, 9.23190720012279, 5.171260726196079, 6.220365921004284, 16.105032829368476, 7.900763011906418, 8.176824261842865, 4.862510208185426, 8.534180894114352, 5.385853141980466, 5.5737653965524006, 7.641952172405183, 3.983516866880059, 8.705419901317315, 2.9720609206946, 4.781971279449901, 6.092250187445486, 9.128095423671269, 5.761974528248407, 7.426135842542855, 4.833661511265938, 7.416538804196535, 7.488437144369765, 7.19272009654708, 5.602015771653689, 6.106062237617905, 6.769945934230228, 5.61923842672157, 4.9463288174208895, 4.735095659991153, 5.401678257493035, 4.7973375555484665, 5.936862003096092, 5.437768369493108, 5.875029680440486, 6.8138081134862, 5.880355942228313, 6.146553909960866, 7.528385170863073, 4.824795999661771, 4.699075744621269, 5.273136070425795, 6.047741060964877, 20.432511003720947, 5.162193778587399, 5.240935924924238, 5.582313602120557, 5.8420922998967635, 6.658120978875509, 6.484110896550633, 5.821419436753962, 7.0641928088076, 7.73807292313412, 5.246387296703885, 6.276157755154419, 6.737488424892651, 9.750721585803765, 5.37074748058095, 6.853384102281252, 7.133054820555293, 3.8048333382884705, 6.578483986398816, 5.550644660519988, 4.8148033351363235, 5.751321514159929, 6.5472865025091105, 5.609631131569292, 5.986626670411301, 5.982581591389333, 4.991010785587278, 9.193596152184947, 6.874580773383665, 9.607104459708305, 4.994208089439109, 6.293915193912415, 5.203900761900552, 6.627536644551854, 8.739905888136343, 5.666783821481768, 8.445364420757343, 5.789416089802685, 5.718683650814087, 4.254886146086638, 7.756727084666912, 6.335728273687423, 113.80340631707475, 228.8238744588747, 218.70545454545473, 179.8617857142858, 173.5766666666667, 154.64733333333334, 84.25355879496321, 7.030623394216796, 5.11897097727147, 6.06765581812945, 10.204211285195838, 5.885230377888406, 6.351067560143754, 6.007427363501885, 6.80631676316368, 5.970164014259195, 10.600050577597258, 8.070777890436224, 4.606459128071155, 9.944122285909827, 4.686105295758665, 6.482236293799896, 4.368393741387879, 5.283264425934961, 6.002400038801354, 4.180103557467164, 4.080218730556763, 6.441387343370433, 7.442189399127445, 7.319568507632937, 5.060384574961323, 6.589299577626785, 14.289241271672278, 5.8688678960297604, 5.367504804650483, 4.255733359521195, 5.675067188033582, 3.2051203186132353, 4.692528043292103, 5.554990610644686, 6.34066576802616, 5.501410680018846, 4.967691197219813, 6.930114771901689, 5.229721638853527, 5.564334176398098, 5.410569095350478, 4.529986956864591, 4.403300151711581, 4.759731180778725, 3.8647711922423826, 4.52486865057547, 4.735425311893816, 4.3766034558610825, 5.376900842334256, 4.598131294879514, 4.918490029782868, 6.8371626596129795, 4.872169305513437, 4.684251242900676, 3.900512214229233, 5.996606557125084, 8.125151359367539, 5.566181711213374, 6.706634458649089, 10.850682954591893, 6.714473010399906, 7.331497413578059, 11.67780166028143, 9.67575322696743, 6.061205995232639, 11.478172696462309, 2.8375823568536784, 7.2203224357780496, 5.827028671733267, 10.34326759433489, 4.613139081243259, 5.600291476154875, 128.48646356421358, 5.431000942003862, 5.252513633446825, 6.459847890055741, 7.054729151679627, 7.181252791962743, 7.020181744535614, 9.149252142468331, 7.202210062684409, 5.289929895431647, 4.978751045657459, 5.1388747450026955, 9.244788349370854, 5.821791588399578, 6.332825897812735, 8.065304498284418, 5.623134671978156, 5.606629774563818, 5.959237434979469, 11.578071332882597, 15.861222367167823, 6.35393810998111, 9.708331144289511, 6.086696291441945, 6.60053741394559, 54.515837398562795, 15.722434045737577, 10.008315374023312, 8.871021522689247, 21.624317628878106, 5.510329519067824, 32.98018634539461, 6.5999589321865955, 7.008401906117017, 4.1099600045486335, 14.444457634734126, 6.976358128572093, 6.592256761786417, 4.56624033723737, 5.016476183002307, 5.275973886626345, 5.35416504193835, 5.0154421733598085, 7.643538606180645, 6.426146969627452, 70.9972372994873, 4.944319241953642, 4.254748914038041, 4.017000491954552, 6.44844498867864, 7.206294774953469, 6.101646891772082, 7.653781086698148, 4.665751861402859, 6.58556643054661, 5.124590487527063, 6.566412057987424, 4.298708348059356, 3.9596742948064167, 3.6421459858208105, 7.20798796444913, 4.07718460824313, 6.46364410921741, 4.465138275249043, 5.879813150340306, 5.729058121734161, 4.879975242683147, 5.330568246724576, 4.727129096983263, 4.848036166386231, 5.181462852533911, 6.186087822947503, 4.85524473846445, 4.769768375894187, 3.8615481043443918, 3.0964197658115866, 5.617317189252712, 6.544208296224914, 4.72165616252538, 5.663674226215649, 5.151223525665638, 6.844958460518033, 4.6606074862637366, 4.836656592795673, 5.835568968476858, 41.70920706123569, 4.767507378784265, 7.818055897959608, 4.005250282176474, 3.763766359618647, 4.355001502474292, 4.8969936115093535, 5.332185065415433, 4.8338121738424675, 4.443237484385046, 4.178636084601197, 4.478867207700504, 5.230675826560404, 4.86893144603137, 5.014008311882265, 3.9752538379863585, 4.677860514738256, 4.433250031182235, 4.008829351110571, 4.792801804284789, 5.780030247779091, 4.086399741558739, 4.436430833005144, 3.871321992353297, 5.085489331037448, 4.005438109263738, 6.2592342729710335, 5.807582598757327, 4.713140096652398, 2.7267060487149677, 4.175702773840273, 2.9905042544548923, 6.167552621710821, 7.203140746969696, 5.013685769078192, 32.1875041825278, 6.940993693927512, 4.479328216611605, 6.402351834727751, 5.1451157789810695, 2.7965580965085053, 7.320230125431492, 5.033472190450266, 4.0344106435058835, 6.0311233765278764, 4.908887522951813, 4.122736115502366, 4.721776054478353, 5.110335422566141, 5.457618141563391, 5.75670224040943, 14.886885463878246, 10.221891437058687, 7.813015729211129, 8.2715536339262, 4.811977618422307, 4.869194728365406, 7.9011026794363595, 9.046350981968367, 4.404884700885976, 7.743818024916072, 4.134901942672659, 6.5317586107045855, 4.895086314701115, 6.247884759958221, 5.037790118606422, 5.0859762237638355, 4.664874368094808, 2.4733913530990366, 3.797824852441488, 7.2911169200458685, 3.1927109719170383, 4.329637119775794, 4.469469560493093, 151.80679166666664, 4.7499367714751255, 6.1767339798406935, 4.416326012580518, 5.2695722177955, 8.047562555431387, 4.431262565263395, 5.249558983157615, 4.577808670715448, 6.407353709939479, 4.972916468712027, 7.802963965783831, 3.8860603333858834, 3.928728780339955, 3.6769457069605833, 5.425274564468319, 3.9902681004521807, 8.594185420061525, 5.285789325433516, 4.827162128381098, 5.237624604302334, 4.215993039482868, 4.598739204843459, 5.402611484467485, 6.671780950016793, 5.030508424912956, 4.686833788599542, 4.162046282549573, 5.522113135966277, 3.629783194609431, 6.305956427880355, 5.409909120016655, 5.139258186361698, 5.827743123593672, 3.6918481176852085, 4.139091932815936, 5.388556533656358, 4.289286030062015, 3.4625849116503202, 3.3636027729364186, 3.437616390122559, 3.6943902811799836, 3.286999923280424, 3.907688532216298, 3.912678082613576, 3.7650547140830746, 3.7166117300415635, 4.241771708412309, 3.3134866392162055, 16.480731141101415, 3.7120814983911408, 3.502942580881363, 4.333483640989162, 4.348967293415747, 3.5224189300967175, 4.366389810529792, 4.005746168390999, 3.416781106488308, 3.1141564846127494, 2.925638543580092, 3.1571328648828407, 4.741723956800506, 3.311316758629223, 3.9040029512762966, 4.417526151247758, 3.9516035421129945, 2.9713646739563107, 4.2613893980050985, 3.0225042084584923, 3.852412736177483, 4.82234623475484, 4.6771850667963175, 7.2064289554480006, 8.451851693325798, 5.378651714349072, 10.378371153611406, 8.591846990337334, 8.628776768114083, 7.450583564783365, 7.951145130557014, 8.608923572731879, 16.38713260606374, 11.295415933138566, 10.131944488060856, 7.267458124548903, 9.966697921253065, 7.644225146452233, 6.824782137039566, 7.291170093238506, 7.345905891781853, 7.227252315568842, 6.341705869734229, 5.186770810346664, 8.177501166088557, 11.143009661358514, 7.045935039819131, 5.823058390619455, 8.230306748717004, 6.323413163783719, 13.992886626374753, 5.426350286828656, 5.89685412943534, 5.626669744701722, 6.455971261087143, 6.586258555782774, 7.073786775889847, 5.117954665304739, 7.197341362589045, 6.742441778672439, 7.218528026328704, 4.9720180457408345, 5.06067986044219, 12.372573547400428, 11.787884617450242, 9.471721328854983, 6.896140283671081, 9.837847335632839, 5.944317504981653, 6.771258342057394, 8.971725246958941, 7.955791815132692, 4.820432389754627, 11.967569401248786, 13.079975246263096, 6.5813124687873845, 6.726533531061057, 6.836431700029519, 6.920583377506266, 8.814982227333777, 8.897623800324572, 8.421348478544118, 13.567743988055893, 16.213814339915977, 7.5981070393279415, 20.559047937714894, 10.529720567433506, 7.89163459494797, 7.204729947803644, 8.353697321835694, 6.434465401552552, 6.539655086789874, 12.279861731272286, 5.1666505155780404, 5.295889304480655, 5.944718003322571, 4.145790071475841, 5.808263920013532, 3.719977460310492, 3.356935851491742, 4.641838317102404, 5.507657754439067, 3.408166930590262, 5.433240607016858, 6.072029820566021, 7.137200625428808, 7.475588840278538, 8.798189912805457, 7.263185565684637, 6.53674557682283, 7.838920815189002, 5.934159590354037, 7.962016591515269, 6.9974606552769485, 7.327765271677789, 9.565263116518993, 8.117502670179539, 6.550459363693736, 6.969116542775713, 6.330751978892521, 5.27681953546291, 6.878871714781645, 7.75957010760448, 5.212777184593145, 5.818471122868557, 29.17933267942936, 5.491198367001468, 6.145534714281291, 7.542096160444845, 9.475012348742567, 7.570856502946661, 7.728812344226875, 5.420917515548322, 6.5089045202296445, 7.942533341111784, 8.181560232395094, 8.309765634975992, 8.630290358394548, 7.327637146325995, 6.828941333544249, 5.879913322385453, 10.800569276473654, 9.378383133335527, 9.957710870677726, 6.921627806017991, 7.489791972628446, 5.8552076368492205, 6.8399297181239325, 6.3549898299788, 6.688408327153296, 12.059044615546984, 5.748941440951698, 6.884646229756494, 9.400261679936984, 6.052826108887397, 7.187975520358613, 4.940287376699257, 5.427202175834721, 4.661110017144526, 7.138958882096568, 5.730438432438063, 8.028055628960143, 20.909747695561542, 9.28433670777088, 8.641705775732527, 6.244071519947334, 20.568172934992482, 5.187876218499282, 6.348197552297058, 7.364689388288148, 10.912815053361573, 23.431347178464698, 7.826647777077516, 14.80460131114221, 6.060105235732271, 9.537434712428098, 5.474382703171666, 6.140056764849204, 4.179456189663782, 20.634122970460215, 12.774240214941466, 4.827698091198126, 6.93240828824991, 6.434585204167808, 5.939755052440748, 4.898306294793826, 6.162771302106341, 14.172903971460471, 168.87063393421892, 237.37000000000026, 199.07200000000014, 179.67333333333337, 184.6490000000001, 163.80233333333337, 130.4204372405373, 19.46801316117082, 15.192308756343374, 34.20477756957798, 7.372710324977523, 8.148285913326967, 6.15012854479911, 4.340034819359692, 4.689536482827476, 5.402717808388374, 5.872866609012086, 4.102834987651392, 8.541709311429534, 6.849109348320388, 5.090925582995589, 5.350790231382896, 4.9847414641041565, 6.353496366590833, 4.164712311981808, 4.993348809751632, 5.072246832953704, 5.227149205373926, 7.428399182988344, 4.995780169172565, 4.984792859662108, 4.680655846065624, 6.559046443108163, 6.024103546906881, 4.273367924699345, 4.944780843202242, 4.418063207027579, 4.758902528412509, 4.407852152144423, 4.307244378520254, 3.760777003213636, 5.143770190081977, 9.73445764297778, 6.9474394611917125, 7.4888280316313764, 8.233662165597716, 5.60401733406029, 12.550582378915623, 14.942956773566799, 23.174882832647224, 20.02162097824465, 23.66280503191029, 16.403792124542125, 17.15405504686043, 22.610207935394556, 17.010586910472426, 20.290111762970575, 20.03127490668623, 4.956097746282726, 4.918310550839017, 3.8824843663219792, 3.7425728822219786, 6.564283382486792, 3.9803420946978934, 4.5363764099171195, 7.514933982294955, 5.678323321412732, 4.735698087492399, 5.543298153827893, 4.302258542041373, 20.048797266903154, 3.6578781198583656, 4.562044214387566, 6.086009839396536, 6.949717664221121, 5.9569980821323405, 4.791959668225559, 5.683663481030626, 3.0383386401806747, 4.734706626750323, 5.3884728535232345, 4.267781092035992, 3.025192794714916, 3.0069229104806485, 3.4920541283128514, 2.803092424329961, 3.449125718833545, 4.047419820000714, 3.495211617900202, 3.137751951323503, 4.078090606199659, 4.077435505060176, 5.2160359937424, 4.8074115488243345, 4.604037685343379, 4.996908906650311, 4.539803828104704, 3.5338922775672184, 4.823305868933567, 4.228161377852135, 3.9129818364529103, 10.588495373877244, 5.272565738889914, 7.798209848286381, 5.436529674226188, 5.066943325612405, 7.787481774822503, 10.191956840917008, 35.07420451744297, 26.566789050023143, 20.074649774725525, 11.733322219449764, 6.772244452058734, 9.047012164329804, 7.598105724768269, 80.38359488212099, 5.790025754236513, 6.11193515748542, 7.911940128458676, 7.04417085404567, 5.415872510086622, 6.15011516603868, 5.907509201815567, 9.901025446954954, 7.014242574992935, 7.898658887767696, 19.625230630850997, 5.6190295890363515, 8.724152538964779, 13.79839626669689, 7.07189342182275, 14.908638453973465, 10.00707229609724, 8.628499334176121, 9.086245736995089, 13.02640797936521, 15.811316803455282, 14.36100254240862, 7.123728747433187, 6.8094696471805305, 6.80274296212756, 29.473624470345495, 15.56606551266405, 7.078460954121151, 6.286097749191182, 12.628836460727305, 10.972910341827081, 11.337576300187877, 7.422547695231272, 8.680527590503962, 6.889134126599722, 14.961641388964562, 5.150865483309711, 6.967325186233745, 9.387068315114968, 5.75737566739241, 6.781292729905152, 4.69866902216877, 7.959441085432782, 8.57698861669268, 7.41365315761497, 5.453339832300251, 6.829218190523225, 6.003049986883954, 5.787279372322578, 8.104651324118597, 7.035932273619949, 6.960746972199602, 6.190104177474828, 5.9656362159819185, 5.587974267291152, 5.3952485672350265, 5.197358799521997, 6.308841168814804, 5.770520133765092, 5.666563787417696, 5.093133769213094, 5.620794216200692, 9.48351513090556, 22.154731319580215, 8.720164931933521, 6.389975210089296, 6.489522864391742, 7.7234483024300875, 5.710480576425025, 6.896474243977068, 5.180801289778272, 7.52683689345378, 4.98790536383273, 8.279486809575708, 6.344842982575445, 6.346708427145821, 6.745636448046193, 4.367145081438637, 6.590269749096828, 4.597364100275982, 5.9114601906893425, 5.453606129566568, 6.310062388520356, 16.37593008385219, 6.8909111783528, 6.541159931285981, 7.579169159506998, 6.611496405315438, 5.696461729995997, 5.368917672172203, 6.402189145161245, 5.447100570432933, 6.681779511838211, 4.8794976690336656, 6.001353602118534, 6.335285287275466, 6.057808551901731, 6.145533480834151, 6.217694757019613, 7.650887840345928, 5.4401990060049075, 6.129073793095342, 5.1257031592254085, 6.292930805002428, 6.633253172305618, 5.363553301783041, 4.867259352477574, 4.433547601958522, 4.531206989778651, 6.425923090973049, 5.396312884886771, 4.468438094370893, 5.7340328755205165, 6.114518945165014, 6.47533299450849, 5.4559618597991975] d1 = pd.Series([s for s in disp]) sorted_d1 = d1.sort_values(ascending=False) N = 361 pred_rrcf = d1 > d1.quantile(0.9) print('Displacement: ', d1.tolist()) for k in [100, 200, 300, 400]: top_k_real = anomaly_detection.get_top_k_anomalies(sh_vector, k) top_k_disp = anomaly_detection.get_top_k_displacement(sorted_d1, k) anomaly_detection.get_top_k_performance(top_k_real, top_k_disp, true_anomalies, pred_rrcf, N) real = [] for index, row in sh_vector.iterrows(): if row['anom_count'] > 5000: real.append(int(row['anom_count']) * 0.004) else: real.append(int(row['anom_count']) * 0.05) fig, (ax1, ax2, ax3) = plt.subplots(nrows=3, sharex=True, sharey=True, figsize=(10, 6)) ax1.plot(real, color='blue', linewidth=0.7) ax1.plot(np.array(disp) * 0.5, color='red', linewidth=1) ax1.set_title('SnapSketch', fontweight='bold', fontsize=8) ax1.tick_params(axis='both', labelsize=6) ax2.plot(real, color='blue', linewidth=0.7) ax2.plot(np.array(sl_darpa) * 0.5, color='red', linewidth=1) ax2.set_title('SpotLight', fontweight='bold', fontsize=8) ax2.tick_params(axis='both', labelsize=6) ax3.plot(real, color='blue', linewidth=0.7) ax3.plot(np.array(ss_darpa) * 0.5, color='red', linewidth=1) ax3.set_title('StreamSpot', fontweight='bold', fontsize=8) ax3.tick_params(axis='both', labelsize=6) plt.xlim([1200, 2600]) plt.ylim([0, 200]) plt.xlabel('Time', fontweight='bold', fontsize=6) plt.ylabel('Anomaly Score', fontweight='bold', fontsize=6) plt.tight_layout() plt.savefig('results/darpaplot.pdf') plt.show() def visualize_iot(): anomaly_detection = AnomalyDetection() sketch_file = 'sketches/iot/dim_32_n_3_k_256p_0.2_l_50p10q5.csv' sh_vector = anomaly_detection.read_sketch(sketch_file) print('Sketch File: ', sketch_file) sh_vector.loc[sh_vector['anom_count'] >= 50, 'anomaly'] = 1 true_anomalies = np.array(sh_vector['anomaly']) sl_total_hash = [0.0, 1.0000000000000007, 1.5200000000000011, 2.040000000000001, 1.910000000000001, 1.9350000000000012, 2.5449999999999995, 2.315, 2.9499999999999984, 2.7849999999999993, 3.89833333333333, 5.030833333333332, 5.389999999999997, 4.771666666666666, 4.824999999999997, 4.939499999999999, 7.968166666666666, 9.609333333333336, 8.426666666666668, 7.470833333333331, 10.100000000000001, 4.500166666666664, 7.260833333333329, 9.993166666666665, 6.825333333333333, 8.299261904761902, 7.549666666666667, 6.010499999999999, 8.34425, 2.3685277777777767, 7.453452380952375, 2.1427857142857127, 8.840499999999999, 5.5857261904761915, 9.547833333333328, 8.022940476190477, 8.995506854256854, 9.565772727272725, 14.310063852813851, 7.463338744588744, 9.922214285714288, 9.396590187590188, 12.81141666666667, 8.63265512265512, 4.9386277056277015, 2.4788333333333337, 12.741150793650796, 11.34468925518925, 13.031071428571423, 6.072166666666665, 6.815968253968248, 9.753902236652236, 7.688281912531911, 4.579552308802306, 15.257583333333342, 11.915132395382402, 7.997478715728716, 4.340111111111109, 7.981563492063491, 12.520726190476193, 10.64207538539891, 11.881075396825393, 12.839070346320339, 8.382726190476191, 14.908814489432139, 15.040856782106786, 6.970737267634322, 12.792952922077923, 11.989634698634697, 9.868615079365076, 15.096869047619045, 9.771920634920635, 8.824296218487394, 10.162924603174599, 12.123983405483404, 12.502298340548341, 8.35071611721611, 13.67055769230769, 15.885123015873008, 8.421123015873016, 8.837611844996434, 13.695330086580089, 10.84498153806977, 11.131603618603616, 17.294429197994987, 15.36783660783661, 16.86717081529581, 9.54105738705739, 11.565437857464167, 11.044768068887635, 12.045061237008607, 8.569439349539344, 3.9874482227345496, 9.6670439390331, 14.257423478482302, 16.960849927849928, 8.838148064495886, 9.73163816738816, 8.947979765403675, 7.660809736157563, 12.683369641796107, 11.364326479076478, 9.602993626743622, 6.912616766403531, 10.350631493506489, 11.90833531746031, 16.638106060606056, 20.079478687978686, 11.692355477855475, 6.446922327672323, 12.935004828504828, 11.15889274614274, 13.219127261627257, 15.531029390544095, 11.75360858585859, 10.88777564102564, 16.889138213981244, 11.368609231411863, 11.829447607947609, 9.649801976532236, 10.243709235209232, 6.926028215745601, 9.639434038476143, 10.043158730158728, 4.55204355366855, 12.576252261627255, 6.277979797979795, 11.390615911865911, 12.61961718836719, 13.82517892195524, 21.01147075147075, 12.09991388005838, 12.85642850334359, 10.692746312511018, 15.961849583423112, 6.026710127780715, 10.989923397985185, 15.115900706749397, 15.813263824840451, 15.098572798116916, 15.065998994469583, 21.615180293884237, 10.5956392659628, 11.07060025438584, 9.942979229104232, 9.967956655544894, 10.061437368187365, 2.9808877726659047, 20.069607149386563, 5.596657652324716, 9.873494553313902, 11.95747291434056, 7.327986707736705, 7.216033776795284, 12.465970668865017, 17.037541153291148, 12.04810969220837, 10.124884433205256, 9.650198848193426, 16.522870657085164, 14.591295267676342, 10.474009708297185, 20.797863678433632, 30.483203323723068, 12.2685559326388, 9.108504152737696, 12.571273576097102, 12.474292285414963, 7.580120945225744, 9.210636799252919, 13.868046260885658, 18.465385917187398, 14.847394358950147, 14.416545626089203, 8.451540777806645, 11.109228263568241, 10.414479371376816, 13.058494029273916, 15.33862789787761, 8.886395111768175, 15.42907009042729, 9.709224567486178, 14.875602319959093, 11.379371468005676, 12.997856485236223, 6.18236039786816, 18.252653055278053, 13.548163607963529, 15.150259799454071, 14.338007916508975, 13.687778925784366, 13.072724026202382, 14.619345782757547, 24.48042573222234, 15.28612068830722, 20.830274135684515, 14.035039516468776, 11.184922205171638, 11.132730121862796, 12.07848091648633, 15.847068398964295, 11.705474118726125, 9.302641447432853, 14.819597548693134, 16.48310627689304, 13.004734505649786, 3.810410668263627, 23.814508792508253, 10.848103676477027, 11.896245732767033, 14.864325926417623, 12.219535503149057, 7.7718429333640735, 12.516372978553232, 18.025979398285163, 16.111666271066156, 11.967626744714979, 25.13555079328996, 13.713982874684282, 9.244083281097986, 10.942876184321538, 12.662435486074806, 8.48561363360877, 12.85495403289521, 12.787459124836758, 10.043181544644371, 11.630393532327671, 7.222702346468929, 12.09825699382317, 10.765496016062885, 15.183752363370763, 10.550874248584607, 34.589417039329106, 10.991607511299366, 12.923168238950591, 17.649157104760278, 13.517545493511875, 9.989267495348466, 14.964039503640901, 11.654999042741816, 18.446485790321432, 10.993221283216265, 13.583325811275937, 11.386452531293605, 13.798483047410015, 10.382094492939462, 11.549051035502709, 17.545547313775227, 15.78166743683733, 10.98654968185409, 5.319946657022263, 14.434360536063137, 19.65145630071842, 14.517183818546412, 7.44150852477637, 9.104460242956371, 18.562987537935058, 9.292978950823638, 14.501876029835648, 14.282669255555295, 12.566730044003616, 12.830796881398907, 12.467705805932182, 13.643263208524544, 26.582495681551855, 46.24441250809099, 23.268883889760037, 10.962930943400261, 14.768651322439172, 18.154401468196397, 12.176217317098327, 17.47337651480892, 11.725951720103577, 11.7546494822007, 12.331764577983236, 14.653823628271427, 26.687428918322087, 10.853290715547818, 13.864074240936572, 12.753052483300122, 13.942820125109836, 9.516911775663946, 14.02211135597105, 11.473901457218489, 9.545227688103504, 14.260420303022233, 15.649636847286963, 13.457030988903359, 12.794822815399824, 19.778606077810217, 8.845460066209446, 11.045774811958825, 9.894838614739605, 12.376929251309246, 10.324285630720613, 10.280525895156629, 12.079127596912896, 10.52559631892971, 10.660508128586011, 14.962948377116444, 14.716836295370323, 12.49401685451108, 12.258759373431008, 9.96883766797468, 4.929313318614995, 11.629156279835687, 23.354051592500422, 13.165677301710415, 12.191832282068686, 32.56814473469892, 4.513373090882277, 7.6551439411122075, 28.36451590113103, 12.566251035882104, 12.742656796781539, 16.904395757149633, 12.05300624914015, 24.659889238410738, 12.509151785362588, 11.170633023230655, 12.286474831867473, 12.513379554816748, 9.721882093926814, 13.192858275932487, 20.60059683812919, 10.007686387314095, 13.604505433233554, 16.03765165586146, 12.05893128930242, 11.299410883073554, 10.084161427892028, 10.980642123343825, 8.797954981458206, 13.627328535742341, 15.82343459510619, 6.930158757196334, 13.151801215249376, 10.583603793066834, 10.070584266705081, 11.829309903968001, 9.264158145245466, 4.850432813262061, 6.599758156002351, 10.618567496191782, 9.059514010103639, 10.28849660767023, 5.4305259594250765, 11.272307874701797, 11.687286869881735, 11.306620140920911, 2.4928360131855576, 2.50863786341703, 11.168978062602905, 9.48007524748614, 9.660101514108227, 7.64617011634347, 11.397773579035583, 6.440589951178365, 7.586602878584321, 7.934611938545627, 9.212580135549302, 10.31261866146571, 5.7463901383711455, 9.586765946906718, 6.624105032220049, 11.44063267709711, 5.710452360167064, 6.137135992310425, 6.576521687554799, 21.063925943636182, 11.145622612535853, 10.61075568664775, 9.988019618584667, 9.42685399908465, 6.840372372598081, 10.811224792838475, 12.291490979431197, 11.74456146562922, 7.335267460989364, 9.465969223314522, 5.986744492695949, 9.216893216751066, 8.224732170062977, 11.510705016840632, 10.552612333694814, 11.416205394467935, 10.698495684874844, 2.39553546289595, 8.071759612447492, 8.07960221765112, 13.952443253742013, 10.621670520510131, 9.174322137892966, 6.958162959580833, 8.192727585950712, 8.173237865894706, 5.281692359027092, 10.538400147731574, 9.32924395982818, 11.701280692554233, 10.283743962911144, 15.313630421538337, 10.050639936907233, 9.009861977825317, 11.218979328218548, 14.766993329623595, 8.223208942938948, 14.15575037128048, 10.64365460700913, 7.456791416658677, 11.676617619147432, 15.613974729348055, 7.005190409547383, 9.463061484271524, 12.849208718651592, 10.40983462548057, 9.49457316157287, 11.094596681367786, 11.83407450485796, 10.318153582195407, 13.161307384747055, 11.44778238467615, 13.207599345587754, 9.602900725915612, 10.392233989292219, 10.854463262949013, 10.406278453219514, 11.833863626831292, 13.654324287518198, 5.463271860688648, 10.320881647705734, 12.267781294453492, 10.878071238338498, 7.878486890309873, 13.510832897393934, 8.841180189291883, 10.924972643508593, 18.161362993044108, 12.358050242222163, 6.520580025324834, 9.844635556077417, 10.986369602703896, 13.357134602026312, 13.857732674730185, 9.971122745095347, 14.077721590443105, 9.441817242681894, 9.756484692372057, 12.884420957074404, 8.71655585086868, 8.671763996942866, 10.710251197002425, 15.205465670004585, 4.65805932782175, 9.942207327675044, 9.388733620601965, 7.327148109451598, 8.828165653643445, 9.404216824841829, 6.349722880739916, 9.281637570742811, 13.908537657586654, 5.732908034736406, 11.084686592741555, 8.530687011984439, 7.745639297770371, 11.23530196492702, 22.03827021580931, 8.856085975308643, 9.420864704004842, 12.972863326860613, 10.286818810797318, 12.735987996901997, 6.001349506021301, 9.299868447705569, 10.613274101999789, 7.244426347751327, 9.01155893273753, 10.661937989499618, 7.3368609817775035, 13.568204570328296, 11.778216685949738, 9.762850117103655, 11.412395483120097, 16.459773995527442, 14.055422279830823, 8.61316888421957, 10.07474806106169, 5.259957217994107, 16.521317629800215, 8.390046417243948, 19.217554136164296, 17.11236587410929, 12.255366068097622, 13.4819510384782, 12.39565863379864, 12.528073915379235, 13.199982332183607, 15.00016062362778, 11.639750113846416, 17.657362551658377, 10.660504677550614, 17.854977596173445, 12.023951262858226, 10.826938663349026, 9.166500005786864, 9.34642000886033, 7.11394529206144, 7.997552932851012, 9.53297287353516, 11.590545356251756, 11.289757922074152, 12.628311121634828, 11.946383025442623, 16.4780662636958, 9.933129337410028, 11.464189720067207, 5.024517338115369, 8.830315718471752, 11.000010655880748, 9.325105062415242, 15.210630181514023, 20.0249073984683, 13.490197659862215, 33.23413081045201, 75.0253344677052, 31.01527379589795, 31.22920075651472, 44.02157306850319, 20.285046268879537, 54.298922561579026, 15.90723816919783, 11.64977639814105, 14.330469663887433, 7.916505545908438, 14.789737761489135, 11.044608676009265, 11.87709862870956, 14.249511854349597, 8.492633734864528, 9.510131403614123, 10.47878714644488, 13.529614726319531, 11.883770593576754, 11.609850577525238, 13.23566830428326, 15.44184372432791, 10.738355115547499, 9.332409941355364, 22.005092711890498, 11.607092137141723, 11.157643001468337, 16.985597461802197, 8.396475281723225, 12.48326264356571, 11.049412868422976, 3.8747468132819267, 11.389953215755991, 12.880123128072185, 11.841845824172452, 14.780033293274345, 16.962328579463275, 11.57015212875696, 13.22708098748122, 13.78568152721885, 8.531083573649537, 11.860251104470324, 6.928463157819973, 16.740129483517343, 8.914631113717462, 14.130156914980441, 14.317258569775596, 9.198145330855697, 9.054691845283509, 11.498156355681614, 16.96413971399202, 11.792199464289867, 13.09629073431669, 12.996533726548039, 12.77584437288146, 12.302802724088638, 12.450203061850635, 28.53686382223485, 12.041773141604484, 11.552456134999135, 10.068300008778209, 13.723871627132176, 8.077389958242035, 9.246826914469814, 9.540509983232166, 11.244606099536968, 20.81236293116173, 15.305942120114397, 15.718252989787219, 13.991067787510254, 12.284707000271938, 10.973563055722623, 10.46774068414044, 10.12037200360778, 16.87282328292622, 10.564619075448414, 10.227692539683037, 9.472327981730672, 12.751644891768985, 27.555046412138307, 85.43694072598372, 56.08802653127335, 23.66128547551483, 33.17584985478677, 67.28631244989101, 12.61227094463785, 14.726268586167194, 16.62931560481255, 14.911359213563834, 11.958171732479368, 13.71133988356006, 2.55964288748879, 9.858324417741642, 9.47145194266073, 10.480145894185153, 9.554108891465381, 15.2138744296639, 9.893545937803518, 11.440610203225516, 8.592703986782544, 8.436543701836646, 20.381453223216223, 12.42665063923577, 9.44086150063831, 9.01100650386427, 3.0216299624342637, 9.022816297089504, 11.266413968980688, 12.693713110209814, 11.998893112233928, 11.414920363600146, 11.411524474780858, 11.66297193943763, 10.624832217660124, 11.270443817199018, 8.633185310821471, 12.27232295989864, 8.629654441263881, 12.55155420358777, 7.674264325987024, 4.215214326381778, 8.519432384746139, 3.704289945681638, 9.692423464520962, 20.24128214232357, 9.495355738295645, 8.461117119375462, 8.222519601804896, 6.270856448576026, 12.59352119231331, 15.829601870111444, 10.997316851406064, 15.246424336514734, 8.743985116992656, 10.38077871808277, 12.024906005431983, 11.732132098650752, 16.23377850105429, 10.721177361666149, 11.713611435098143, 12.065810101238968, 7.987493397841775, 14.204145924938489, 17.37376384322795, 7.358973278767522, 8.486224692763733, 18.564958427964825, 5.3939599534836224, 11.81006931662247, 19.911618649311446, 18.92490889838332, 13.864733136772134, 7.756023664578203, 10.17245303827975, 6.191196639716306, 22.439839636357057, 9.547548205628994, 7.616376983168529, 10.545752049057567, 28.03242138246806, 27.615630546340377, 55.25072282299593, 26.653438808372428, 40.8030528115675, 26.99840375359826, 26.58551779925776, 19.072742320165997, 10.911188699926898, 18.983421058107115, 5.707294429928984, 11.719706413926634, 7.200155883029397, 9.753815121658969, 7.760802577815285, 10.225538803259003, 8.410190859542388, 12.597861001448992, 12.322261967213501, 9.412881610590155, 10.591368148203095, 9.307222284414934, 9.275058521310003, 10.877918248619341, 8.873287581691427, 11.622832776520559, 2.2972048310697364, 10.721397069063094, 10.712551742894904, 17.29946418770504, 9.77205309930633, 6.6032919191413395, 12.664291025367836, 8.179457867415085, 10.999388323673232, 8.748686108100264, 14.779691295928245, 23.767535031025776, 8.400612048183028, 11.688073181228612, 6.707778367577727, 8.065586056004456, 11.810596783767826, 9.839535401564802, 9.998592883013742, 10.887595954656922, 5.546388039877302, 4.7019514492062475, 7.157581608597647, 9.477400708958843, 79.07143742606131, 11.579561828379166, 23.068051725848683, 10.335433310668062, 11.943100068811074, 31.242094982066845, 16.476464393015306, 14.08573439207651, 15.626899921161957, 11.06965900588919, 12.546397174735468, 15.739943733465179, 12.186284888065892, 9.887617595661508, 13.33431800175266, 16.10416728446205, 9.451181263954346, 8.27149824593778, 21.198642001900733, 8.963143497145953, 7.625561564185009, 9.307458466500409, 12.832501150221425, 5.29953205877145, 8.569069883156045, 11.8731079512183, 9.485602635711821, 11.36374639703043, 9.75355041754817, 9.818793239425862, 42.242155993493576, 42.12550607194718, 19.85463445924191, 41.69992170397308, 49.65706037873376, 32.094373003024806, 50.5674389875765, 11.572140307317477, 35.94786938885848, 22.428263616092945, 14.21004148185271, 16.97743088771523, 10.63295651559533, 8.476380020972497, 14.298210604263792, 26.108815076992347, 8.800214306790354, 8.54343988155443, 15.656337390348074, 9.790029827738332, 17.55482890289641, 55.63208723517275, 25.304391616553378, 30.448544386992562, 44.67264921003588, 42.37079523599038, 57.59386644331612, 34.09543299823181, 46.49903933526256, 56.29644838330991, 18.342185931617966, 10.847707213155651, 6.912663043004626, 9.420350398623494, 12.251861685870152, 12.387283426622963, 11.480437068544836, 9.478147349656107, 5.747733158348272, 14.94810415684509, 9.105844378458787, 11.247377253541368, 14.833392695567772, 15.43024120115103, 16.41437726557928, 9.434299847655343, 7.473542376229151, 9.399880985575134, 8.189440673520098, 8.15620428885889, 7.250890301003027, 9.997589370802663, 10.460400534006189, 18.961104838021978, 21.887336242551164, 14.1837123486313, 22.46064138943313, 13.237509067908654, 16.9035396883924, 8.86644834742522, 6.748358922990607, 5.301369310338192, 12.134390691329628, 18.268738250805495, 12.161826494553592, 9.081780201089575, 9.788566428664312, 12.939148969152335, 11.966304679766235, 9.934487074386507, 11.497835499420463, 9.810646839552307, 5.179769682603407, 3.0862832558634112, 12.199223205142166, 12.43256467628772, 17.21826926556528, 14.190450409680782, 10.436320968417379, 15.097713691372325, 15.138523126650844, 35.10536454580578, 14.928237484973861, 44.936643010160566, 29.19132468704932, 21.353550002048554, 45.03816020121645, 25.72123265374209, 48.35668205839569, 28.71177935198793, 21.184069953876907, 7.608972210493171, 11.644207152355456, 8.836786736549143, 10.809013757851572, 6.406714987086453, 9.941446392014777, 9.923733410253865, 9.52855018761934, 21.32837142712593, 18.448693508585414, 49.0007779934849, 25.072782831315887, 40.33677734552179, 59.43382924767871, 18.76055065221966, 59.47768012266149, 36.801835615221755, 13.645110266914564, 40.15216121588422, 25.234705159076153, 14.575482485078231, 15.161602694037986, 11.768954745039634, 7.534615252899597, 4.476779593522007, 9.64264025793429, 4.531375882545016, 5.071432993248041, 10.008121520979254, 11.67578043917064, 10.198845145023963, 11.930055920704056, 2.0470801782817105, 18.58721672844744, 10.193976989091421, 16.01827389235737, 14.726572007706961, 9.224703167947723, 13.329154842921094, 10.101640801714659, 6.4159289950956016, 8.00278160321451, 10.961329531779604, 12.325953590193011, 7.324716916787293, 11.143090174287726, 3.7000768173349625, 11.628235996904799, 12.62837822706477, 12.257716675613239, 16.356627806412035, 14.520980640649956, 2.734867661234802, 19.44154748164008, 9.682755385052763, 9.340237032783447, 9.195892540823461, 9.657217961759734, 7.967744479032483, 13.779699775664923, 8.127489600351431, 9.691733154701886, 8.375412645099724, 15.848805173817684, 10.83653247208467, 9.48236426430346, 29.24069026613426, 10.430374302705449, 14.279070585079873, 12.71054879883862, 13.203152562107471, 13.055323369370123, 10.632632319851117, 9.999948153318295, 10.129180147885494, 9.686826088709504, 20.010112377167758, 10.188694255380932, 8.167352823141314, 4.226160502702051, 7.857052628852626, 12.518602922457685, 10.040388875082467, 9.0993779751738, 8.353467609411098, 11.37305977063169, 10.68874262918257, 8.474749852208916, 11.431343553288325, 12.642709968796089, 17.29565938041951, 37.86892133961341, 42.52991164923138, 31.721290495155227, 26.958500190766987, 57.756648848620145, 34.319776927849, 12.572286746279671, 48.8868583165974, 29.04856054096985, 12.495747295162667, 8.92605139550732, 13.612335407668573, 8.291271388984951, 12.880729885854887, 8.7385970385369, 9.136595906675227, 8.996457101577633, 11.599848364571912, 12.148210959621187, 10.593175094141037, 11.822205484864643, 10.260179804050715, 7.476428098221652, 9.243554626678694, 5.971188626326996, 8.438320749581504, 9.038204718667318, 7.592853308654381, 9.443205211793346, 9.415272884603267, 9.21015751493764, 14.715711938082647, 8.809243279421642, 11.443958097758104, 15.109433318025475, 10.615716429552366, 20.8425177660208, 10.738918231970315, 15.60779304178049, 13.033279961217449, 18.14630519199806, 9.991202307561691, 10.493783738691308, 13.75395940269465, 8.139240488514908, 5.391043584616507, 8.854581034455267, 15.076915462921418, 6.8337573020195155, 9.309649750696497, 11.59420908086295, 14.821698168183506, 8.53176853274072, 14.594605542475398, 17.764232354044612, 10.520843844409766, 8.29931952764432, 16.647819875740304, 21.753349252254516, 26.50779873905265, 27.639945065278635, 35.378484524978845, 10.439138396638176, 21.78549259645658, 32.91527816732556, 25.41589626587526, 18.33430106400755, 19.128757606150167, 11.259983285263356, 6.128511343929125, 17.190603568653565, 5.414187728387629, 6.234277420807604, 11.409646240254633, 8.929587218897337, 7.330260351460412, 10.057826323353154, 7.325317278400685, 8.296136780914036, 35.07532126679215, 47.75676739145651, 20.061011660067173, 29.07869056776557, 12.286912237709869, 17.79063144989261, 35.13700553742618, 32.395439504418405, 30.06375963179912, 24.966525240520944, 10.411438135024756, 17.80966109059937, 24.96868432082444, 17.850658805679966, 8.701362568665887, 17.17209062445795, 10.690301152035223, 8.505027215030692, 15.323745517980019, 9.524575926704188, 11.088877763232059, 4.654166511663805, 13.337684569968994, 9.387131221908934, 7.7840455006126605, 20.819099852319635, 10.047559014028241, 11.570669937806851, 8.951084471276046, 30.291428995592106, 11.147046275846543, 10.878518039470997, 8.865741356924545, 9.714071662449674, 16.350507591303394, 11.768504900136586, 12.023717351932655, 9.431985416281849, 10.297862272658035, 15.543534117198222, 8.388778471856385, 11.352650695748922, 11.530332589932456, 16.117139814975094, 11.469853071379061, 10.424449862197408, 12.550863285950417, 10.06578790743452, 12.982459125051625, 9.376998199305499, 7.017306783948583, 13.520107035150625, 10.956348155732309, 14.359301756463106, 19.24877070507856, 11.035010260975822, 10.869696463217215, 10.456703530650502, 9.355962602821574, 8.481865673787045, 58.730948297073304, 29.898766101983327, 62.702440598904396, 12.057536822779287, 46.132534321575, 12.597495393210698, 26.013877278673654, 34.77110769500179, 19.402699182036535, 11.815128355559825, 77.45911170012961, 9.173167155092218, 8.167313389077131, 10.273886948407267, 8.460925557091805, 4.622876837275131, 6.680302454188383, 11.495958675776489, 12.455248119912774, 11.252386817674644, 28.355392605266374, 23.252593083374958, 52.89941311600451, 21.733251752433176, 30.585607343059035, 33.48687539554536, 35.80813721375802, 38.97634247303917, 12.050842920556281, 15.444060862172185, 10.565201314404762, 9.37062996138208, 11.15532985493435, 16.494562248349688, 10.856467584618777, 9.738164225805917, 9.176111614297888, 10.371336064646432, 13.50480741932372, 9.75272560656801, 10.56695374371968, 8.743306901512627, 14.639318433340241, 9.390278306054537, 10.249168094382997, 12.810525093539244, 7.910855871809502, 14.939005494314108, 17.16216283797112, 11.71802379099082, 11.747328783229763, 15.18715257857237, 11.00672361854137, 11.260871554906695, 13.133125724008035, 8.693542293116018, 9.168801617495262, 9.546469403395259, 15.7942969648582, 12.65884689069296, 18.363029729939353, 10.8966401151524, 9.326177595300715, 11.508530346030367, 6.4279469601096455, 12.169892558778702, 6.010409897988566, 11.71946477956982, 10.516128590330625, 22.680305030323996, 10.255743119928555, 13.171439367933168, 11.085276465208159, 4.321280077588897, 15.051086327463958, 11.29047521628922, 11.7378658454936, 9.820539243232258, 12.133170463955748, 11.514819964785397, 10.33206480247603, 31.974324578531647, 30.5919353652933, 23.39356478157747, 29.1794579984261, 29.21069358306514, 9.811869336309883, 55.66661433532098, 22.39457967327587, 23.102091161946753, 10.802244666484734, 8.382024812511853, 12.99985505521696, 8.968866648956608, 10.9306541887969, 9.532852658984988, 8.982779702958295, 7.609211082769608, 10.521039630993855, 10.07583021753626, 14.86505069505394, 11.523975810310965, 11.508170207573317, 9.256630130345615, 9.98556947193008, 6.02017043286189, 7.8277186938844, 7.14337394742179, 8.48379748843902, 8.037054938948167, 6.959363880185227, 12.870451256494745, 10.55752960069663, 13.293462090743635, 9.539745289588659, 9.048791313797652, 11.01451698692028, 6.6451355729358035, 18.787335954192958, 8.013096355927656, 9.588474877660229, 12.063321624558506, 11.552637779903518, 9.948197856974472, 17.018380609169178, 8.494011717003623, 12.263158170128234, 9.822947263627777, 6.5579195310795315, 7.108607921433126, 10.282129495007476, 6.77236706401354, 9.051184481329079, 8.789860512340022, 21.322121494948906, 12.784574897170378, 24.358256699373577, 11.752366475345262, 11.747144347168163, 10.94460889203601, 12.892262361577002, 14.63811081354707, 11.154748692374485, 10.696428477243842, 11.455116213683414, 13.790773995866198, 12.68737884669687, 10.17106282799042, 12.839329048799485, 14.039101835484043, 16.714799392440916, 2.131068261160366, 3.0236823537770823, 15.05840480401653, 8.130742881556449, 14.66891393631022, 15.45057481320239, 14.965568287027082, 30.587517512274232, 31.236874103549574, 25.445553755595977, 32.933643047687916, 27.58071234448048, 39.45773792714854, 27.39539525919237, 29.54526658629182, 28.31793475386347, 12.711589058402348, 10.395254379413414, 15.301515224970984, 8.386104923969805, 10.806413761551186, 12.028996519280447, 14.427282382238896, 8.855563085615422, 15.68252991166292, 4.110011634807423, 8.342329943828638, 12.920254606006726, 11.363638894251997, 4.956470888173607, 14.43774248381545, 12.13621817341278, 11.05623359203722, 6.723182825268811, 5.227405859102266, 16.986689681392946, 16.247213580177558, 11.708180642469875, 8.278519271451994, 14.591590900286365, 8.946750424459253, 17.924662238905636, 11.221284794415057, 23.89634522601316, 9.520536538607557, 16.460487727142134, 8.74460028283715, 12.36617608616452, 12.432588971301845, 12.11455087682649, 9.851564986987963, 12.164427801753197, 8.295724704981161, 13.087044137786666, 17.39139028348501, 11.628934805745445, 2.0784882966168796, 15.847103529575223, 5.748192998842126, 9.068266170849267, 22.551771630708867, 11.466356160922535, 20.395952399994407, 40.49769792674647, 14.36264205611752, 56.335241763026254, 22.729785373175872, 32.17490132512014, 20.51805021834108, 39.21796733135271, 8.747157073257961, 12.000769827527257, 27.49363694950039, 33.79794520116263, 19.556605521021226, 34.504784970606586, 25.962086607014964, 28.01281194024017, 14.07947915406448, 19.69249891253542, 31.104491969104217, 21.560856318935546, 34.356916147508784, 22.204473732042587, 28.304490862644638, 19.224853252372547, 23.27108598857647, 27.21904146560072, 21.905280482271063, 9.004178356066697, 43.24464096191661, 14.731673105431312, 29.7242225643999, 15.044357956878693, 30.65998041139822, 38.312448481694275, 25.30289714850745, 38.12522484752918, 11.120000971507215, 26.409983453585202, 29.29106858676589, 27.508634624224815, 27.402984172055895, 14.838663333752965, 20.297904435211727, 28.316525901114122, 23.004938594057016, 25.650149678748317, 12.83778901964655, 14.272891914138137, 18.104729905718354, 9.115303477310453, 14.38631205509924, 16.208491173479505, 18.928759438897302, 44.02928481970498, 14.281412463268108, 19.445665000114264, 44.685905780155714, 26.69978344138963, 18.184444549621492, 29.23082782597718, 27.705371723262978, 19.822848812295057, 18.700939638793486, 20.73994889902241, 20.336950210905496, 26.474742151578315, 9.861156184934602, 33.05765775640657, 18.63234796243844, 40.12023280885642, 34.39175655961834, 5.688948942357587, 4.457905143065479, 12.587891203788185, 10.734157264399984, 13.730142969145295, 14.049118261552094, 14.477622845050412, 20.10239484969854, 17.697169247903815, 17.711417160272198, 15.119079302738005, 13.751248472639222, 21.82850580711112, 35.38979816992434, 12.342668225694156, 13.767693580753667, 12.156403590071339, 15.733391164310705, 33.61979118906531, 21.46285512659669, 3.611888661012185, 20.827376106048938, 34.807859736831794, 25.580685483768686, 18.055942373782123, 15.060374629779366, 17.3035106198942, 22.149476643426734, 17.46006141475476, 28.11190488691998, 16.4517261393256, 15.245119715890638, 19.83645591114844, 8.424627128324001, 24.064459517684927, 12.432908932252815, 10.012424799815003, 27.54224871060424, 19.69756200372914, 23.280456075981192, 14.358023875290513, 13.951084972813492, 28.719090675129113, 22.984969114933325, 21.540826126824392, 15.627917606282837, 24.54027244689969, 22.755953450517293, 9.912181513233662, 15.933038537592974, 20.81073707274445, 24.699130538077885, 15.041180789678547, 13.175045962460343, 25.55454148108085, 23.446105675448827, 7.2762079748260735, 17.77023588868506, 21.777542610854912, 17.815065249207287, 15.905863036367435, 23.43079027798322, 11.258152567629244, 17.869502984681553, 15.68782056394833, 15.640987616351206, 13.133802604282051, 13.438466008621813, 42.63823649219308, 24.102773636494227, 23.82332321316456, 23.10618576121906, 12.270131670783186, 2.6398378964658353, 20.79746849549002, 8.614558164800718, 12.008618518472828, 16.274743912238208, 16.393631029956634, 32.51261066594226, 11.522481555500299, 15.68997732315707, 25.491413589802303, 7.472240674799528, 32.44953952494007, 16.002659253279315, 17.09759309364078, 19.747133735969097, 11.656389539304008, 23.068119095865157, 14.157177885856454, 14.078689541440434, 22.443982119738084, 23.98435492530346, 16.741571741735104, 16.91032198540304, 17.076568673313044, 18.395953541484495, 5.611293848599909, 18.887040591459968, 13.215406829281827, 14.386575735084234, 27.95405921627692, 19.443505045669433, 17.378565447008288, 20.31922916175268, 34.03926976914611, 16.33956118434867, 11.226356717567212, 12.91995078478586, 21.516476053102302, 14.304351214332227, 16.891371105635574, 13.03747951253253, 13.783634536765545, 15.23617979107012, 15.684432301678623, 15.595132935525335, 8.591708379755087, 12.333680870383336, 14.815160329823255, 12.530535569812189, 14.056930321283113, 15.13854622417238, 17.139228337492895, 13.294581908414797, 11.027797088389192, 16.550892716130495, 12.09736723887593, 18.24949872876746, 23.54175378702961, 15.929646794545322, 12.638859344687402, 8.906914093316463, 9.153290837916947, 38.33237433867812, 14.020471280637521, 22.0081176486659, 16.646549385237627, 14.693140936436023, 15.147451226953152, 12.668452152591577, 9.057132780736323, 23.239216602174842, 19.132260462437642, 8.725465392959723, 40.095521979783186, 12.97150812576594, 19.500411391287034, 12.732442942054949, 15.438061105121076, 11.672841765028544, 17.182642605612564, 14.797025752741702, 15.32731066843614, 15.886830198532948, 13.82902142681388, 12.419531041301749, 15.143669767380896, 15.921881493190277, 8.688721788872801, 15.011771471443236, 12.085120307407257, 19.471682608097634, 7.911673065398199, 8.51341478341578, 12.808741597373386, 15.177649022645449, 10.091111116273515, 7.971410748664475, 8.784927987021133, 8.80817652498696, 21.336603176803944, 12.93294251165417, 11.550026803751816, 5.916687921703557, 18.088699026742425, 12.013373225331833, 5.724668918481855, 19.739956808444973, 14.061074935320528, 13.09714632777617, 20.222023023029603, 29.38693078918845, 11.8782911651297, 11.20145663279852, 22.04227523020779, 40.87131627029662, 30.92898677307098, 18.029176996234447, 40.9112924021438, 15.914264081726744, 10.827689117131474, 3.334769843058332, 40.242907918676934, 13.566783575153774, 12.451543921320889, 10.09881585071562, 13.78152952214668, 14.556726051957, 14.54552836886856, 9.757856995593107, 11.69855674972167, 16.95569414737945, 10.180474500825973, 24.305151491352255, 28.126525552191197, 15.291296151737532, 15.545948562258948, 11.748486430113282, 10.313118237325712, 8.247966259892499, 7.870489490135128, 10.712429943821437, 11.00719934808723, 13.379106450158494, 11.121869513361267, 12.861168019496388, 28.564724958571617, 12.274675611676379, 15.491099935840502, 11.691171615496776, 18.31392157332878, 15.809351003980314, 15.78234276570523, 10.712102768647819, 10.465571864092588, 28.05088217398966, 16.53262499876176, 9.994010759915566, 13.43987749468103, 12.434647197736897, 14.892311149068474, 16.016766717317104, 14.887760649667385, 22.61371863033244, 12.650944318773465, 11.5526547425439, 12.577750433694183, 10.246994947390759, 11.106412565124534, 11.313514736052898, 16.335196352175235, 10.90398110490484, 8.515060645803159, 14.810184951830271, 14.437426338517858, 16.082914689832627, 11.924975320920499, 17.814149893517822, 19.984414316520592, 18.90428311528152, 13.828857202338321, 35.79054147487789, 10.593561861849105, 13.741593959362628, 15.328802472302977, 17.904054171562297, 6.5275189627370915, 18.948047893957664, 8.861440016829087, 17.29634952533886, 24.454791973246767, 76.30174030965593, 53.848374471033885, 13.69543912819805, 23.494703552768677, 19.525273308027252, 24.08087135913409, 16.936203279133046, 30.69525657939699, 11.988650806686469, 16.672643173585197, 10.473199828659535, 10.171174106665791, 5.426095995250016, 7.655336838759045, 25.624764599838112, 9.50358820213281, 17.74328161067991, 19.17309815731002, 9.610854518068045, 9.732916145953224, 13.034003137714587, 12.293466961573085, 11.383642189589665, 10.246482752555522, 10.96656708928258, 10.313907458189668, 10.176279361581145, 7.838029977000718, 12.041018911225619, 12.287978302915807, 16.67320807825909, 14.054573933171069, 12.502717608193628, 11.263924686709618, 11.073301067244643, 14.377158307455517, 11.610949940593, 13.669331481002382, 7.994802110900792, 15.840713512625747, 12.050505140734765, 13.221781220973254, 11.361058300021282, 8.980356138804304, 13.6775991060544, 15.119722624924096, 11.460786625193608, 10.199070209048367, 13.009781231976868, 7.272834629966235, 9.382224276742622, 10.679865518461842, 13.214349490582302, 8.533925501768715, 12.899751625988264, 9.93269395728646, 10.832211712852944, 11.88333360702043, 13.143428963290424, 11.496781216283738, 13.305203490051406, 7.403771938556696, 19.36744184676692, 10.27489106806916, 9.349180679913355, 11.89990690039845, 10.630721812487113, 6.659793677468544, 12.410979123070632, 10.277635347437748, 14.140442152947813, 11.491044440235045, 12.518509654710272, 5.442680652978609, 13.260067191325453, 9.444600686642795, 15.605109151730774, 14.0086750700767, 13.192948792516145, 46.61097304706351, 22.860458095521693, 34.64934485854552, 17.002585668641704, 24.48145488361477, 30.138193451651, 35.56089970689064, 10.227779942269944, 21.92219553760889, 10.97136326385992, 5.485555051847162, 6.239611743169048, 10.708711458996001, 4.748111309848379, 10.221025633293436, 12.389890360458269, 12.203452008443422, 15.039951594435964, 10.808344234927478, 10.70722585775448, 9.896827136357956, 16.383087825063875, 11.897246486770763, 13.132031279190523, 25.84641458051286, 9.645803216005062, 12.131898135364048, 7.685667478772632, 12.888788762558006, 12.702962672509244, 12.44262727286237, 8.941043887783616, 9.838044314317797, 11.09539687502914, 7.6327475816065276, 13.21605631878748, 16.929684288304692, 9.359719000415929, 15.940134546693573, 7.368797772383956, 12.648371406302244, 13.396704512525226, 12.552363681948085, 11.992041358228866, 30.596264259043735, 10.559831179558957, 15.598033534985118, 12.626547228335156, 14.05019190231367, 9.625676936824894, 7.507926236072514, 12.192245823808829, 13.293891688543392, 33.228279722380776, 14.669658174065656, 10.695737352764194, 10.417126660228226, 12.346691017128162, 8.250848454573166, 8.129173096724003, 16.369589724696443, 11.86270136409363, 11.425465430893803, 12.680246759011865, 20.231221077602704, 11.052175991335657, 9.652755078361754, 2.411923716857877, 9.041327688182736, 7.465206832023201, 4.885477780073999, 9.670021869763922, 9.226328036896644, 8.885433352489846, 9.069637687307297, 8.74224111623746, 11.192614773149092, 9.025802398286293, 9.623792525607227, 13.468789717912143, 8.192267474731677, 21.72475385494996, 13.996957539254316, 32.552316972935984, 14.409654848612156, 30.481562700563394, 25.731189109191387, 24.418375792695688, 26.117555257874777, 6.612044343173722, 9.922504112041052, 8.973605204697831, 8.186747230787, 7.7400816953985, 7.72464015837543, 8.043623569109755, 9.42867894632968, 10.054105242035458, 8.61629187209048, 9.129444154302973, 10.813342368449346, 8.831447204546054, 11.609260399395687, 10.861260358012188, 9.12800888019766, 11.800977131271672, 7.382125163181528, 10.54553185432895, 9.57466160612039, 5.688819366969856, 5.051956038486857, 5.202119046102801, 10.209963469181268, 8.168756469815667, 6.584448453540882, 4.9237085232969715, 8.48940883438031, 8.963853469819936, 6.595184409091227, 8.521732388842283, 8.108584655048682, 8.433925502548272, 8.173901871357755, 5.278038288237348, 7.885118800956912, 10.006037488551296, 7.121483592934569, 7.783420834696129, 11.476537278850506, 6.38281562447459, 11.05563760451782, 8.36370187229975, 10.846231325784627, 7.338000748002723, 9.570009464169113, 8.924345451965287, 7.840015081047735, 8.263562099302838, 9.251241721712809, 9.252909986175863, 11.060422062924173, 12.303223867063288, 8.276288008593456, 6.881395927955187, 7.571566284632078, 9.387872977249684, 6.530352548637055, 10.44324431400997, 4.873334147146772, 7.8180801976703345, 9.21549192800055, 8.386782481222955, 7.430388109131234, 8.831187813553647, 5.2491048335463235, 7.447463768054053, 9.26119165474434, 7.963233674217028, 7.90592776818351, 7.645021110350155, 8.853045297927489, 9.81080031084144, 7.7026404806493805, 7.164852445861772, 8.733605342925056, 9.705798262164187, 5.907217075610888, 7.08645192009711, 6.802066174241372, 8.24131079340997, 10.115177764281157, 7.967336197400385, 8.562233252740738, 9.264234267465605, 5.933289589976724, 5.4527077334052185, 9.00444693739854, 9.427669954232153, 7.707466250959385, 8.346574318003036, 10.013971147915285, 10.504678111221384, 10.901545439139689, 7.757241608159526, 10.502369222557782, 11.701856800196717, 11.064878654339477, 6.922482488444411, 7.1598963814204595, 10.71094528400544, 7.119582523481844, 10.211902822394924, 6.989870007190353, 10.753367948240946, 6.433897158206205, 6.4082426555756475, 9.996843091028797, 3.5333302211128874, 12.685905841810614, 11.06860063090965, 39.2657681147533, 84.23849300144302, 107.93005722393393, 61.69833244676719, 88.05194256924464, 123.7255497949165, 50.406460528041585, 101.6749957033163, 96.04447565324222, 57.415477862952336, 16.60981189263212, 11.264433074327574, 12.343598627175853, 9.90508513208686, 7.976869378466974, 11.580631465425727, 9.863460086428267, 14.804216917308302, 7.2580530673114225, 7.039633221631754, 8.04683708661295, 8.353739502477723, 8.77649417698033, 9.824028417224202, 8.824287660288393, 8.461821940744187, 10.629795999037832, 18.833847289002822, 6.505207446064895, 67.67645154654838, 12.323797497818118, 16.086117056665135, 44.11266014700868, 9.284235285243302, 61.069232406482385, 12.05124433660022, 7.497446631698247, 10.52896528600212, 8.220357405502456, 13.171986296272825, 12.077694651661327, 8.387350255408107, 8.71011423479756, 5.308995913127957, 10.03039685806676, 9.618478060139173, 8.88235177262351, 14.145863500725365, 4.851746600810966, 8.268640514629752, 9.102947118763229, 3.25185669745913, 10.483501940026224, 15.251551270786063, 10.94703576219022, 12.208895969377203, 7.937763352861382, 5.423379686754238, 9.634820395157108, 9.169813668627313, 14.477374750531187, 8.427984440577374, 13.032473290745857, 10.58342308915982, 10.33668920916861, 9.66295733093746, 5.1074012121427455, 9.53483275657729, 18.191974866194176, 16.883335151496368, 8.293501941297613, 10.894038217211422, 9.574708865323114, 11.61696807799936, 4.822050554722713, 11.011001753197501, 11.530182579145498, 5.079138379009587, 11.04844658632862, 11.947737819293934, 9.584877640100343, 8.349335187322433, 11.839018969601966, 6.315286169629455, 9.006775001266387, 12.848339868805528, 10.09866121868975, 15.067611610532298, 19.226738030682107, 5.556946513146181, 4.656527914024876, 10.131734261347084, 12.756665413099872, 12.656537042430571, 12.145201067935634, 5.981103844179596, 10.028776413186296, 14.314559630045018, 21.65743219543227, 16.569432675518872, 13.051978186737793, 12.018764749662061, 8.826653331002158, 13.791175128189149, 11.064166650743198, 11.638651091100717, 13.30813360636433, 8.135484986522362, 10.082658267286854, 16.0102354830242, 12.936254462733428, 11.764106710201832, 13.421621340488198, 16.666516708814534, 5.377811871129676, 4.001776734558061, 12.135417421739307, 10.874736703287997, 13.87274669184165, 19.468210432597385, 15.245045428933672, 10.473468641457734, 7.051741814639702, 10.933138936752409, 25.087674395358718, 10.866595210013372, 12.787688598056642, 11.146425271647212, 10.307381180302045, 9.990885846885334, 15.657887325596791, 10.931907649384186, 11.665154316975086, 10.465806062013195, 7.865492299053902, 19.78119050873076, 11.651010289636483, 6.352855007532702, 14.542065191955738, 12.68910623830112, 10.139618397863627, 9.726375149474181, 17.00655723730833, 11.76677088666858, 13.686251074307119, 12.379297136795829, 13.093790023903, 8.076620352772075, 11.602259985372038, 20.281231103045958, 14.1728244813213, 13.559180077426715, 7.849074487125945, 12.602334355594358, 9.782780859548708, 12.063479983646493, 16.812262612953205, 6.464931838104926, 7.842101577105825, 15.124743315433626, 8.91848811903525, 12.334910742532545, 8.75590489240198, 11.584316637990204, 11.408093260445318, 16.22441569980873, 13.422711642765076, 20.54529999603728, 17.26465496268437, 13.846333657426081, 10.42024714753765, 10.02704484609046, 8.914615075399336, 8.238053902328112, 6.423111158086825, 13.794951208508685, 15.075402381616588, 9.4343931939783, 18.97137272669457, 9.804935280131408, 10.025847861923666, 10.767518798146531, 9.966968674076035, 11.840338841622078, 9.526907576910647, 8.890206068728839, 11.810936314299482, 7.386090451962292, 12.451048904911593, 13.56426679485632, 16.614837540792422, 2.558799693998234, 14.93924733154605, 4.482721284681296, 8.995397944908534, 19.018261157393905, 15.227437614435914, 5.617422105833999, 10.272257327447305, 16.51456242302261, 13.392190218440202, 9.633542459430684, 19.413839591179723, 12.321239819228312, 6.158351208833123, 12.877172595682039, 9.441664374441917, 9.379727003443792, 11.477398690264163, 9.621369399615084, 14.647087754145113, 10.33946673138038, 17.04598595629517, 14.965846220965917, 6.12771406806999, 13.228105046223007, 6.103728140602947, 6.890468662523236, 14.480783709358551, 6.765190257453027, 8.142900624023772, 8.011933221639076, 30.561436771313893, 11.740150215836744, 11.076761273777738, 13.551136491696449, 6.992247861700344, 16.36067334798633, 31.90889995734864, 9.205303921090739, 18.30064383145993, 10.746743857659194, 16.49354639466525, 15.816246090422995, 20.130309873518367, 8.73144756048646, 9.293008091642598, 20.940455527834096, 14.574115605607965, 5.628416373793913, 17.451253420162317, 9.989060268242648, 18.452364853269877, 10.421390271448264, 4.630839811778735, 6.6853438377964025, 30.454004156809315, 11.474246336612172, 8.007019764848879, 13.862334957844016, 11.193073229573097, 13.7233137676914, 18.975094070940575, 15.21782731269208, 10.33363363072331, 12.270229575479977, 10.327354541681899, 9.281528896768966, 10.199489706432079, 10.354000161889868, 12.24255611051907, 18.391519371568823, 4.8852523251069675, 19.401922014337234, 9.80856068509834, 8.264564828907883, 6.152051325472552, 5.234036886236453, 13.690161238628185, 11.788824114441049, 18.62779611021816, 9.349802557079355, 10.259358825842087, 13.863267383281068, 10.298395692349542, 11.621179883851187, 16.926271195245377, 10.025355624841161, 8.367566113739255, 17.26915469398529, 16.3475049637101, 11.55835258677601, 12.786633411877894, 12.033600648302327, 9.985643522562297, 11.58000725717058, 10.735269023966987, 10.757302660329733, 16.235754528609796, 4.159949879267073, 14.492231982291768, 35.11510646387157, 8.830033029051823, 8.982071358707023, 12.777638483878809, 16.466771062963975, 10.13228552674942, 11.569795044197292, 15.45030557397726, 9.1782268819258, 9.259435577552502, 20.801332631438193, 13.449280889205392, 5.353473544295826, 7.700959630181979, 11.453622874589666, 14.626158798992323, 19.659888016780872, 16.593023787357634, 14.90281837613554, 11.911940061591089, 7.305117427933315, 12.809889602634806, 12.031103282882036, 9.095934923398103, 8.341164414252589, 14.413672608376238, 10.136532741369098, 13.269594760392605, 12.26608624477675, 14.966405794354836, 9.855791730437842, 10.795957192403268, 16.616048723453872, 9.69765216178506, 13.676262828182852, 6.89464702929977, 18.665374334822054, 19.319272620254146, 8.409674852112651, 11.466555252395482, 8.391546759324552, 19.23832822997234, 15.757779616359342, 10.409355923212681, 11.458802162615104, 16.515934834200543, 13.290406427507873, 12.425956416836486, 13.223938079300348, 15.753432358702236, 14.966753331700087, 39.00238476502208, 14.756439223452972, 14.647574563658292, 21.197680106216534, 11.739265435562341, 11.242914442250214, 14.748229700388192, 8.166588878229948, 8.894029123737301, 31.227148171974882, 7.782982217200168, 12.749356211914487, 12.337533526272376, 9.54213340364523, 14.639865075761389, 13.797954822467204, 5.172727820865831, 11.637958037678148, 8.20323406515029, 10.309129055472129, 9.870861370757545, 11.10221135566756, 8.435083668823205, 75.57003334784474, 10.04602186165297, 13.786355391392519, 11.935717612480595, 13.278275328127167, 13.019178047346262, 7.845133774674607, 18.334067708948506, 39.02529052824131, 44.86354420892289, 36.24578955414103, 14.609607481398292, 13.659046008602674, 12.199380232187265, 5.11150178926074, 12.570088484118342, 12.271180740300128, 11.928904858045454, 16.824530450121514, 12.933894655859195, 12.470951986621062, 11.138326762367315, 10.471843764707643, 13.66435457257011, 33.06241263157209, 13.382257541866297, 11.565879383065328, 12.007255292902888, 6.616581718579279, 9.746949639199107, 8.922573862370209, 11.934769880751793, 10.620406399352339, 24.550864233159622, 11.017413731881739, 21.14198242048442, 9.336311955112292, 19.496238964905697, 15.703003687168565, 9.983967215243386, 9.484942637479051, 9.361608085838007, 6.811802689871213, 12.920717833680767, 12.095064392333505, 12.564680655267907, 10.626369395576155, 12.435601870926277, 10.238243610855168, 15.768210344905672, 12.390336310196899, 11.453664087621434, 21.246887488753355, 9.692683730728094, 12.003775199225638, 12.002491351708946, 12.176565262033746, 5.299681157365488, 12.820522222215867, 17.864066684905076, 8.313830170488481, 14.829844298565273, 20.568071960525874, 13.884458653925304, 10.772789745564385, 19.652087662496125, 18.847324880244425, 11.114406089313924, 12.228649681201542, 9.665308687851136, 14.769482842138567, 5.428473648514843, 31.248760163085066, 12.59373093656874, 7.227791933623213, 7.386968425147813, 12.117517186101166, 11.987148194135198, 10.924186481561284, 11.064022190175407, 7.3679075462662125, 12.83948594645995, 12.536625263051716, 11.492435728552117, 10.418842547344658, 13.989782767817857, 34.24225398389736, 14.560951504010147, 12.974627982683218, 12.071833772215241, 12.323496056968166, 10.647309190557449, 14.428914662495046, 19.556468359879673, 8.858052008819712, 9.056587441201335, 14.467730602812816, 9.390876086785273, 21.656575213794365, 8.25143946414076, 16.69501173938201, 14.975374856617258, 15.354626108189596, 10.186408305580192, 11.012992510688491, 13.201571952233293, 9.334834694535747, 13.04541768981506, 17.404214328069532, 13.647209279973024, 8.797865727399074, 18.69434226277121, 8.860020051682149, 15.674422526432476, 12.05269238283507, 16.95009780375799, 11.28006702941792, 21.35121622134316, 10.595145123860869, 10.007694135555981, 13.794883669080232, 7.4374516841828076, 19.987229050501625, 10.16208982678788, 11.636597434650135, 3.7249468197038986, 25.67301371171999, 10.920902969248237, 11.632304734669662, 11.860699144352804, 9.996506397262808, 9.146767899974279, 8.06733556723664, 11.260853823467825, 7.257512016108331, 5.779517279255277, 10.114258297046948, 12.888002263869737, 10.718067860872816, 10.472447597030849, 9.651217951927014, 11.552775954130464, 13.031892160505476, 14.13461752379333, 13.71558674688744, 8.355835429521814, 9.731170167881327, 13.446431557875078, 6.697172247925972, 8.291030670858134, 24.971856651462222, 12.198189975353415, 9.330804931750952, 8.74259982249178, 8.998720369454828, 12.449409809974739, 9.568416484248017, 12.12919970950876, 7.28144016464078, 12.906298121710476, 31.647262038304596, 5.203323273250885, 7.749541714301325, 10.909647697561626, 8.253681399280643, 17.462334051092903, 8.983508213995359, 10.718228872427677, 11.123328536960983, 7.459796633986427, 18.66031512768843, 25.068155948276797, 11.773400568512821, 9.139915221620328, 8.780969970900474, 10.061530031024049, 15.615199029329483, 10.671006930299999, 9.94715046781339, 10.968402729937512, 8.825301272852549, 13.932069173446905, 11.996231074185166, 10.953494822974363, 11.8966190462263, 17.63883277630496, 13.32450870487987, 10.68351679018436, 6.894487268993585, 30.19888066798295, 9.986629356893594, 13.826928093087414, 12.395561384436004, 16.81015326444803, 25.239971681693035, 22.028669259708778, 17.240655027972558, 24.30234164138309, 19.879001847739296, 15.150889826406651, 37.4131629989191, 10.704928826346174, 9.338857580496018, 4.009542145921135, 12.985798512279887, 13.345300199679382, 8.899192131755765, 19.07139530725466, 14.053376336501932, 7.59082034109842, 8.63475451681383, 7.029925966870816, 8.805034687313933, 15.871220051203712, 8.46808958270801, 7.643533385905228, 14.040653175304088, 5.453294872753591, 9.174791939337725, 19.930912360209295, 33.35920485452366, 9.589256259591291, 21.172937434580533, 9.80961562002339, 9.747259940907746, 15.165263734351978, 20.42847828214956, 11.420283529723273, 9.277932219116975, 13.637066373284618, 6.070949853392288, 13.713763501405142, 9.38887296698985, 13.261381879851053, 31.921822496529764, 18.2366632698467, 12.24204076153467, 22.334868845843978, 13.540154625125014, 12.258278935518206, 25.676036020924858, 15.932156101692273, 9.141406841100581, 10.299312991735361, 11.730449932139253, 10.0748985432547, 14.496897278433494, 16.155872817971506, 12.725224543779166, 7.808969514425876, 20.248776058549645, 14.040668213639387, 15.531635811513913, 28.032479305615446, 9.49380263021361, 16.916716875960294, 34.743220472652816, 11.852262556206107, 20.103958012991654, 11.664118399951173, 13.210091798810058, 10.740013842750031, 7.777532512918983, 10.989872779117208, 7.989367128166928, 13.72695296272336, 24.550363682892836, 9.594271270623569, 8.239961402418045, 12.949565499859615, 11.703133429761998, 25.691767423737463, 17.178611104362613, 25.39581656741948, 15.607128975962256, 11.630830021477138, 6.733944289953005, 2.9666226575307455, 28.383751580211225, 13.282147935941548, 12.848804345131967, 8.967416399707401, 16.50851570375164, 14.403418301527976, 15.54517772014099, 11.978036677439567, 5.103175121830267, 15.421492285250235, 7.1471716666383385, 20.761978385597892, 10.289768218571849, 23.3311512058837, 14.18447699110273, 13.541231848671849, 17.690765319089234, 11.180850794782769, 9.609372752015208, 14.116741288790779, 9.522752516604296, 15.064379027276816, 12.702632794238951, 36.16922565983523, 20.950570274078014, 6.8488068452863695, 13.353755310809758, 40.640256918192726, 27.458282551847436, 11.32397545730791, 13.616241846788258, 11.652349312334433, 18.409140109972356, 5.83926707167072, 7.70206255622079, 6.254412163634213, 12.453057894850996, 22.972037091369273, 11.331695751351932, 26.92293833915036, 8.002935931829596, 16.847093114258747, 22.507580109103962, 29.490880574169946, 15.90177696884884, 23.30940879397091, 18.419701184195915, 18.92261722057495, 9.165790903299765, 11.796717180324, 28.157345463419922, 16.587264709043808, 15.954336935706321, 9.193830291666377, 12.906964552368414, 15.836834033768953, 9.500242382721627, 5.86266331972815, 14.468927948270691, 13.38488986995861, 44.37924025867276, 19.387841097225866, 18.491311568066173, 12.582772878499295, 13.202863801025117, 18.619202744291737, 5.147490095217765, 12.50666129724839, 22.07608331623657, 13.789510064161849, 15.516291184774488, 19.35829040084574, 10.502814290533186, 3.4959633986933922, 13.25603394189043, 11.219327004963777, 12.98400859021153, 11.677697183209977, 12.251478772935648, 8.079608722086139, 10.362808002152683, 9.285577310198764, 15.288454440836377, 15.257891567840483, 30.092866683313378, 13.308401422900447, 21.70948542023623, 13.966495733126422, 25.46764429608582, 15.39565097324528, 10.058196702835426, 9.214380129491044, 15.322318303510325, 9.786019628334838, 11.405241908750272, 11.80903787842275, 17.61001136149786, 16.031045213926067, 8.131682560487024, 9.377729045562146, 14.69477404256104, 10.616576498306207, 13.587577331959272, 10.968681830320174, 11.042400371723966, 11.143797049736698, 15.855191826730689, 11.92678826212751, 10.869130578876105, 11.9106907633844, 13.643413975218724, 11.016551644701352, 11.68653536982942, 12.40520443356839, 8.04815756111234, 17.814790211900036, 19.904572459624518, 27.097498896125433, 13.518869330869627, 12.402841523485488, 9.677266271125175, 8.504107632468514, 14.830713641840429, 15.86415350419966, 3.9544792911236675, 11.143474369881243, 15.839267451366979, 10.208829564423379, 6.866909555200995, 10.496031516367138, 5.295434742190418, 14.564605304812506, 15.684823236406052, 14.050085357317094, 14.168616082962883, 8.738527790061545, 2.5578748503993065, 14.220072524132965, 17.86814547245877, 35.95565330283751, 9.13586331514021, 10.85389121214472, 11.315574815419149, 9.578312035683634, 15.623688125434764, 8.475628368118288, 7.56718110533585, 9.593991633692015, 12.436939660146496, 11.477822909864393, 12.996114569899559, 15.020584307120702, 10.639821267998856, 12.776806617130642, 8.374069238361374, 11.507649021766197, 27.521670491396307, 7.5146028785669134, 15.084868455187456, 12.998504004262886, 12.436312132141053, 12.460909103785735, 29.873279834308278, 6.857979267738146, 12.681235465007799, 31.48775962886461, 12.942535545396245, 6.7972676781625365, 11.15863459470918, 9.988469882622438, 11.898606710650894, 12.457101676172456, 12.051971209737687, 27.35749689520507, 14.209878537656014, 13.787406769829763, 15.238849840261219, 13.231712234499284, 14.088443407575062, 15.423769208569214, 7.902821742127979, 13.143563031240829, 24.514072379982306, 17.380857514695933, 20.81384058148815, 20.410721430903298, 6.1866316802892305, 71.78545311922053, 42.311756334360524, 48.86289461480211, 11.91105980927171, 44.23711785337672, 44.406544745946064, 38.013368156806514, 22.214758976596755, 21.169080893324683, 27.935096225587618, 30.343616069593523, 28.165112230671586, 29.181443747190563, 10.460348459429177, 9.673798154728466, 36.35881521558458, 32.6555809878062, 45.81386361116981, 15.769335544456013, 26.31665663751452, 52.46114750530866, 40.531033494982005, 24.665015653086378, 34.0615737074816, 37.59572417451828, 43.62429635097178, 34.37636457043559, 20.499283536302297, 19.113555847676068, 22.710206196882442, 40.883038706855814, 52.71425684476339, 31.224377299375096, 53.3173491431599, 29.67184747830645, 10.551753398604122, 32.354112224634676, 30.004978538369837, 39.01094550981913, 21.488599436951727, 33.734567802425026, 33.533041855512906, 39.99152592756605, 22.253287663285228, 6.710145225022441, 36.36134347164418, 44.1011267094737, 14.123761801546099, 36.318628483358744, 33.052757101830636, 39.988036607271454, 25.356834654085603, 17.849465803251526, 35.05764423463909, 21.41159168024412, 36.57863693560346, 26.139497947756727, 27.957458453704234, 21.3367330659823, 36.84842498088437, 39.49987889690495, 19.829834471041508, 23.451196739669438, 24.2908134241523, 38.259543911798545, 5.848313810471031, 14.347805709132286, 19.33151193470459, 17.1064539709118, 26.946339106661398, 27.356444437734613, 25.622616859502248, 21.28771680807439, 5.803426713882963, 26.603391337603533, 32.41016529220264, 26.151947076797143, 28.974116529226514, 30.243697930394926, 30.870261896671213, 36.95227140532832, 22.527407223108842, 6.984762479717341, 31.18670402245673, 13.865928318873056, 6.923252142576908, 17.31624129523468, 12.711252346293607, 45.53809283608547, 32.19282943885095, 29.171405494015787, 28.57271863014185, 24.74922778159614, 21.30741802796952, 17.096837287307384, 17.24460601682198, 16.188556341053634, 35.033093546829626, 20.224206010424744, 34.7317015073006, 52.34192348221093, 21.323605644186213, 19.650401696621934, 21.455093767231183, 12.195264722327972, 17.301894982942194, 19.753835668880473, 22.532395797064357, 13.929492610120418, 20.279803497892424, 14.349998341915732, 14.738866622709017, 5.881705146374628, 11.621455229711804, 27.505557759148324, 19.895185242039638, 5.519928650024046, 15.170854756354759, 21.127508988141482, 24.056719503381785, 22.243737003949036, 18.229466621882732, 16.364646606342692, 23.078957577283973, 32.643688150187415, 14.911090865965425, 22.39715802983566, 20.82591834520561, 23.385766731554387, 13.427906807615717, 57.396383624468825, 10.623205281315025, 26.928297758754656, 7.088155274275653, 7.959168685814198, 31.151237105945178, 30.89358401297991, 8.83986870609678, 20.18926409668525, 28.393795809444214, 26.081096618792277, 19.531290685677334, 20.023983837729787, 16.81866507279153, 8.369553040318568, 26.069327505900343, 19.93160774857414, 28.763979787770584, 13.834237599284611, 15.19164866902409, 21.476833326395834, 25.614426774042954, 10.21223135470865, 52.71581801977057, 18.57283715514411, 5.95541361620544, 22.481901028464062, 12.594357031981792, 13.599420466745155, 21.060034228900108, 18.33208156638048, 7.813856712939672, 32.54089636463631, 21.61812401487402, 10.81214401208048, 10.735500558834284, 21.069663408486928, 15.430890302801666, 20.921532077853566, 36.046155196669524, 20.04304177198094, 11.871600235968925, 16.018577861832043, 11.936336097709987, 15.97873015344088, 17.01033046192798, 32.44933455884314, 36.37709284629106, 24.477998734799577, 6.4347287875787895, 13.978096454859744, 9.442550418991669, 19.383809528157837, 22.756202982606773, 17.70815593182189, 14.787494283631466, 2.4154459051857304, 16.00337936092975, 15.823315078382748, 19.64958889851766, 20.668887202070824, 34.648753103208165, 7.717030284026607, 18.639230771282534, 17.988040180708534, 11.89435769215318, 29.387419540053934, 15.205392626256328, 25.803044080446565, 14.747790221468842, 20.36814828694697, 10.391594243999368, 19.13454374507787, 37.087002316855276, 14.378439984998924, 15.253871215669806, 19.084019525594126, 17.70579887672079, 18.714286516427368, 8.807860687136879, 14.318548809360944, 16.549431642341997, 12.483858140053956, 13.304356545821033, 15.889883812738686, 24.12570971814922, 13.680991059632234, 15.211050414340901, 11.474730926609794, 24.32929203745103, 15.106101065568199, 14.52378254785986, 11.48393543621958, 10.788832793979212, 18.76749342140525, 14.377910043205702, 12.52531509423196, 16.748527629165377, 17.811204122116653, 20.09980003058017, 11.959105563203739, 15.809682206699392, 10.853459080066822, 16.62692192839823, 10.543647488057642, 9.717008090181343, 8.588325109244838, 13.873481516028889, 12.737051844720192, 9.04045264501987, 17.11262728402203, 13.11300500141115, 15.193879458089832, 41.541645645451, 16.094533611685826, 10.93350874271026, 15.712393488288832, 13.886762431173521, 29.939388693676896, 15.819501238103715, 12.129205636312703, 15.517618782464856, 18.653797908600822, 12.968398062019345, 23.44778409442445, 36.323558436444195, 11.708870651074498, 14.230463865941411, 13.634445259803643, 14.59649244738943, 14.254149201217555, 12.421187862577122, 33.586103658519875, 14.538480386891086, 21.64268419607696, 14.509366188556275, 10.046788768965238, 11.06064819477609, 12.689514525662515, 10.71095050630982, 14.361127430936733, 17.091856532846244, 12.713494329069047, 18.592369349941755, 9.69859585980254, 17.207038194566163, 11.868141069950322, 9.07814798520567, 10.276141568613324, 12.68578078919274, 13.428350042832038, 13.974836120678896, 9.812386177169383, 9.944299222282925, 13.930691810207753, 10.534803604014959, 11.195202745539696, 13.344036239713404, 10.312148506027322, 15.868553133509957, 13.940437130864309, 14.277863847169684, 15.475754889395976, 6.943742432020297, 16.76366631442584, 13.63015102843964, 17.940709212871756, 19.013546805089447, 10.958795641127864, 4.6560159866546345, 12.352655466968383, 12.208543472039198, 26.43886519867004, 17.349917906732074, 5.316572870249804, 20.40713446975249, 11.106254317043081, 8.467863170512425, 15.667584207049083, 17.573175362480967, 10.707924443304298, 15.341495834750445, 12.2888914520735, 21.483949058132403, 15.116950608997241, 15.977982925139464, 14.61971720708477, 14.235337486014608, 12.862937172766314, 8.204040363532238, 12.905673266234677, 12.07306925422248, 10.005125837246853, 15.011252692650672, 9.979628255566697, 13.022774577004009, 12.285311200582766, 18.037353561670244, 10.930071524221981, 7.508386770197088, 14.822628424207373, 13.2702252703914, 12.622795171611614, 19.1162450326849, 9.054118786406827, 8.62065436341184, 10.41431903808996, 17.99389279319465, 46.66261952800754, 73.04046573940606, 62.98420701330196, 86.76929409508206, 115.8039579753923, 124.71260236452001, 46.467419761852085, 82.43753810390182, 74.90296371867727, 84.88891946751006, 50.35862608256291, 14.614054425150016, 35.738835267043044, 8.389643412148267, 11.675397302505306, 12.179876968371723, 11.58876741641389, 11.814516162443793, 10.184056900605382, 16.051728011426963, 20.86241664371369, 14.041269133341569, 29.5047464449019, 10.695218480942977, 12.362786165139246, 14.302378866197236, 16.247502023879388, 10.440537945289577, 12.037991857489583, 5.04943784117789, 17.180304112095403, 14.01805731500625, 14.261486385555862, 12.295109014559808, 16.151009027090133, 13.813093830352653, 9.6830681921749, 5.690736173913804, 13.459694626753913, 12.610294464542529, 13.42347448759939, 8.793900814637006, 6.301171541827167, 9.297803427036717, 15.25674524123673, 8.04557595449524, 7.595230861287345, 21.378640132330315, 11.878005280053932, 13.712988532240738, 8.117548947574173, 10.355641861716085, 12.735638374299949, 13.229040498102394, 6.562869956235577, 5.232910890747285, 11.285174195185938, 11.934539704774782, 14.332902741032436, 12.796888095489146, 15.211739251555766, 14.751849459106081, 14.842415907965435, 10.500766863092727, 20.568146976510498, 18.264401592520564, 16.293764904156937, 15.500194779469654, 12.47800659266536, 13.070721160618994, 13.262991469815912, 11.582877234629477, 10.659013646368317, 13.163826936823066, 2.9748360559721885, 11.082524118016412, 14.780042427123881, 11.841950601143012, 16.675621322492006, 14.886714341824714, 10.609244845385216, 9.860532237011574, 10.537563685003605, 11.551485033064179, 11.648763376945269, 103.5679577260324, 102.03185844724013, 147.24194357253558, 111.29311165856566, 70.28649732538503, 107.94900286163666, 137.51922828963157, 131.92233481765913, 96.51760955466101, 32.68177047627207, 27.55189982986192, 8.90604748234733, 22.38993192313748, 12.117448611693149, 6.751371372946085, 11.303588965521968, 17.08631358803249, 13.768857453892641, 11.603829312659512, 8.877561603208378, 11.640956929702376, 9.462357064788007, 8.459042642036302, 13.288992802698417, 14.435693815718732, 10.864317533262117, 10.200915259065537, 141.66697016967703, 183.92416558441565, 13.571351791912937, 177.8918988095238, 172.79920080999605, 203.74373989899, 196.49735103132156, 167.79107954545452, 176.2857912087913, 156.42650583669672, 39.95498869936232, 13.427999749199598, 12.40440473460148, 25.84522242300184, 7.959862969954009, 10.512462927034232, 10.559879913387261, 10.577856518850805, 10.27715684338703, 4.435817159758772, 15.848870887263049, 12.590158513746525, 6.748266546247321, 14.48264335352059, 2.753493091725281, 8.76004489100426, 10.286186300330513, 9.69656600552533, 8.104968482144933, 5.589601421787735, 6.979643661763706, 11.22334794474862, 13.398519575488663, 7.338898876630295, 12.986478890901246, 9.458037797193498, 9.620008867014343, 9.946161032704877, 7.51246548916473, 6.480483064584408, 11.724905555046222, 9.292654093068956, 9.267700729021826, 9.684411451473414, 2.7488784173264214, 7.873958918187082, 8.960040566794738, 9.03727273096405, 12.040502535132196, 8.37900041194777, 9.076224216124091, 10.199343075208123, 8.26377985152916, 8.613395145573433, 6.694768440636672, 10.435705461210318, 10.344313855727737, 7.1200616986783505, 12.89705756096198, 5.79161209684839, 9.43989443493251, 13.613158038242421, 10.57022828063525, 8.430796404980027, 11.130721979293119, 7.297850466069588, 7.83867956410264, 3.8509596787146485, 8.354095733600955, 8.774452547483214, 8.711341230804878, 10.243244107194402, 9.372177817630302, 14.302360887363834, 12.260292087707235, 7.813170084478186, 11.126274629104417, 16.13390072396882, 10.005380861867307, 9.389740606924528, 9.4020358140331, 8.44151116417853, 14.192183616746249, 10.80331835022376, 6.831051220550221, 13.17347489193674, 8.60766038984305, 10.182656975894286, 12.92807644787667, 10.31446875212343, 16.92081477523613, 9.958520487074653, 10.939309696223392, 6.1331491935746225, 12.945083279422683, 11.684886486130459, 7.8365275150219675, 8.910637980605603, 7.298535335039417, 4.459206423519921, 10.52980852742029, 10.74513832757183, 10.958782194611443, 3.8250888938652485, 6.928499698376319, 9.68323453473892, 6.988847860136864, 9.551965672242547, 6.456977511558137, 6.5393117749684215, 12.255240321039587, 11.564075451101186, 11.344578170743231, 10.683251176165824, 10.013645378261003, 11.907232511216383, 13.923509409375251, 9.335847290412678, 8.789962469599745, 10.412065766579785, 5.908278240227846, 13.692735507636144, 11.04946513084162, 11.864534536328689, 11.206079724271772, 9.149316444428303, 10.846677118744925, 8.586933512414078, 9.630170106120259, 11.284066966225021, 10.576080745066541, 9.050171903787886, 11.143140111279045, 13.146316941020583, 8.709547333944005, 10.142449432245602, 10.795480736541966, 9.439244869627855, 11.323567396128357, 1.9903229776165081, 10.697212665200956, 11.726798584224515, 9.262396261946733, 7.875683871498967, 10.78443709671732, 13.660023030412223, 14.466309123366003, 11.725669308057421, 11.182401090722397, 11.315260740867314, 10.992955797062413, 10.517817070016626, 12.879129905284566, 12.386708496024179, 8.175287343886026, 10.173414813509478, 10.319435232972605, 14.194803025348826, 15.24951250101089, 9.122103457452498, 9.88575150029533, 13.596934157672884, 7.997420152183469, 12.484879873795386, 9.23743005291023, 10.831711027477903, 4.795266811485652, 13.107851313883318, 10.471837984070264, 9.10226254350099, 18.623082128631108, 14.972375596186165, 2.8345688015639845, 12.285493596905779, 9.811484097891361, 9.352275757653077, 12.146841011784025, 14.814268527558133, 13.27517558956065, 7.719294805211489, 10.476147691715164, 12.285883372458198, 11.994653862768757, 11.324708346662545, 13.541619179066547, 10.933130258451303, 13.630623754022881, 14.55007392990964, 17.134112572682735, 10.690279714439159, 21.32260126561782, 5.4373732614416, 14.19721213164487, 7.668281524588952, 12.201655038314088, 14.02771677043, 8.790434346096411, 10.581067902929911, 12.741262945667684, 17.46816371481831, 12.821833754565755, 14.575026937753918, 7.974595469119005, 10.749495656705053, 15.147662511261569, 10.807485817860664, 13.937794886400146, 11.602523345824704, 16.96648450177946, 11.87338893682929, 11.350044785365995, 9.415400645515732, 25.122841525728507, 6.365935450184181, 11.014973533230053, 14.373524660180239, 10.728954380480271, 9.58011808095473, 9.341833729481662, 9.78828902202408, 14.752507442170705, 14.46802860202034, 14.673230160603275, 7.570316887520688, 5.666424113428024, 9.360474510631303, 23.172806874712833, 13.369447794716173, 9.15810506757744, 15.111960362671999, 9.104442952038507, 16.222106779821186, 9.087098587173251, 17.734372824226373, 12.459451865514335, 11.89760744438375, 21.079966699310262, 8.573105386665576, 11.510096753859294, 9.88285049168289, 11.432649776939057, 14.992183357599577, 15.760873454274767, 5.901225026668118, 14.180694283213015, 9.38362843869486, 12.58252135204295, 16.75798423230745, 8.565922239747294, 14.03369253759086, 11.599899289819893, 15.497880555118929, 13.74699722180349, 9.996114550640543, 3.6214948284065365, 15.448858967299135, 12.066055465313209, 7.642513122072363, 12.62763925185246, 9.766657428525495, 5.014680460635568, 11.518751400361596, 9.568533673829604, 8.820935852444142, 8.151935322462402, 15.72247248290925, 30.232708140666258, 10.313208896956205, 17.083021368588437, 16.600850613162397, 15.52402167815818, 15.500153418133303, 10.880183430104612, 15.159229484890387, 11.997114538947548, 25.329445247274062, 7.542643007610808, 3.578196543344607, 12.19640654091355, 16.17817772270439, 12.456139082464855, 14.004066302425231, 11.099527715074089, 10.499406553026233, 12.619824090532857, 9.216460201545242, 11.485755551826017, 11.204115623929223, 12.893994359022933, 10.634497763799605, 9.595612704122763, 7.950018281606162, 9.676203094237838, 12.299602765090023, 9.126367029999608, 11.343685891768477, 10.981650326956022, 15.925768339630016, 13.496434094556813, 12.368952400497308, 15.534904923894477, 17.161857680708252, 12.493144840180983, 13.666100266369629, 12.47753051299274, 19.116091925414857, 14.737064417799877, 11.69949299622581, 6.768884794544397, 10.314571353452546, 21.035441993808394, 14.287703567154942, 6.365135051991451, 10.21959824698043, 16.981413963894106, 4.848029732203941, 23.839888182928004, 12.460805107943045, 9.600680120388892, 15.074653988000765, 14.824023861978349, 11.479038121767081, 5.219406312326484, 25.705138991151525, 13.127043261305015, 8.305313196628521, 7.294163425869788, 37.891290232075825, 16.77057084977191, 11.814336464674971, 10.33679872007443, 13.003530507408005, 14.837016437631265, 17.61500524218607, 2.260823207057273, 17.44581899488357, 19.01854987762782, 11.333285524663633, 4.068742406456651, 10.927751183225743, 16.578598131868986, 13.637964694562523, 14.309388335581698, 9.0483835405203, 12.451158006853827, 9.853549373352115, 14.480490987456767, 11.4519639091529, 11.949438181745196, 8.430743979010478, 21.858259946868085, 13.026969745399086, 11.339893336707714, 17.356571616558533, 18.627163224436387, 13.160221815534335, 12.80933588981833, 11.85194531956956, 11.377633356525207, 12.96481506087173, 10.238267604004816, 9.051529198355338, 9.96561461926666, 13.370732861446175, 11.194012541989979, 34.96714697376926, 11.36700414178734, 16.38952671973072, 11.258042112139302, 4.128539670204854, 4.213645150144558, 9.353518416523269, 7.402825996956794, 18.081553005445414, 16.20687528584385, 15.477897118029443, 12.33228597888159, 8.4696185111905, 9.604793949107925, 14.33423386488028, 11.058485090054647, 8.048349048570438, 10.761294765536181, 12.404524340988587, 9.847904849059878, 17.152865759279535, 10.450639184838751, 16.316388326408113, 11.368796386950375, 16.34455864917666, 15.319264975654155, 18.051001803356268, 18.04976524060868, 7.397083268291869, 8.818371666004563, 13.891885295502155, 10.323439838800763, 20.045705387602787, 13.68618682119108, 11.135496101121513, 13.757426684635476, 9.421309211712416, 31.819342948631242, 19.813865654898255, 3.1183385367832357, 84.27531015655056, 11.753886823352955, 9.101834890775944, 11.50030790935201, 16.5560360454408, 15.845178898397846, 8.02447710215402, 10.950424402565433, 19.557021849753266, 15.332588845193339, 13.228452318318663, 16.86625254538802, 20.81218056322391, 13.566305486675164, 8.86753802435542, 11.527278978650624, 10.792205077983933, 15.972488388111138, 16.817090680998877, 11.87764989396167, 14.609509399369694, 13.257842758755958, 33.45242981445333, 15.157555372205158, 21.450790853310437, 11.894253709104051, 20.63449276767115, 23.29713559160378, 10.025263238792157, 22.055868080285727, 9.963769614939578, 13.50626519322555, 15.800686787791587, 11.066996926791818, 11.206790431232095, 10.545769418910147, 7.430310324098028, 11.859664278927399, 19.404839940395423, 12.023900005772415, 14.20011033945326, 25.881453318164088, 10.485058846719364, 12.063341785976593, 33.1325367722815, 8.794676778166965, 9.199504999173897, 12.907847750742775, 12.861582262422658, 10.105987039279963, 9.795873488804796, 9.822461785362805, 21.096125413106446, 17.814724548028995, 11.796359261121482, 12.615711936034412, 8.793938478054155, 12.921699243184895, 12.295149660002245, 14.411246153957842, 32.60501020724814, 17.322517281965723, 24.013509558638816, 16.8515149969999, 6.729106682388534, 11.903095291983153, 15.765036223438702, 16.676199902476814, 31.292781677709115, 6.679326638970222, 13.16301451917762, 21.75781883432075, 10.66898726368051, 13.543186974851615, 28.48862990787627, 7.590655864251313, 8.310564133454221, 12.606246665305054, 10.030466400006512, 13.873006217561452, 10.028062160258873, 9.629107513745282, 4.001097796435309, 4.338063624594435, 9.213816865465894, 14.824176079338624, 6.162263659800183, 12.574703016346401, 12.905568049985932, 7.5003308181214825, 11.886423946800264, 8.596984660718139, 16.626510511633192, 7.629599920797356, 11.26042231562327, 12.390610125259338, 12.201174066642565, 15.37240327899281, 14.062779127894386, 14.273689707373284, 12.76697954212667, 12.710873639974688, 9.82679685090044, 19.961251422395662, 11.178134224889536, 17.119226309981723, 12.075662169459264, 12.137766813836693, 8.799733165405419, 9.108310308912193, 25.111015145887823, 18.793588660127288, 4.998236204539835, 17.091573298376307, 16.84945410859351, 7.628519678649876, 10.662829843659953, 13.260399896579901, 14.189414345754008, 13.141038756918617, 11.237419142201304, 17.354824005922644, 16.273599525066434, 10.423894186808008, 16.840565320554266, 7.64736310346576, 10.360214730491995, 12.613052044468803, 17.605028930091237, 11.609184054046546, 10.948928259829264, 12.47128426969371, 4.004426404126711, 6.98405829114519, 13.333544117724374, 9.699675727044593, 11.53721993560093, 13.66204078462244, 17.936492870369225, 11.818266539995953, 12.42849284442384, 11.610986197208828, 17.291922312680438, 9.070057162378534, 13.547937883913676, 11.801820663012492, 18.63767697745612, 16.665120444256903, 11.399926624435121, 13.91896572102741, 14.137475286610663, 11.548570434829557, 10.792371523449257, 11.484746351415573, 16.024825438726868, 4.350903967377647, 14.118707883353316, 13.726142209703138, 5.647930692526568, 15.482029166127855, 13.203873822195025, 25.79214471337673, 9.569715150508982, 15.700957662921233, 3.477965045127906, 5.731614051034384, 14.159123505836382, 13.994947212618266, 10.743144922102722, 15.7422665922313, 13.530200551778991, 16.6698026235688, 12.034786245509013, 15.409759058939219, 11.221142776135498, 15.446817736836728, 13.203660479798174, 11.896053230646814, 8.230334237856054, 11.175246102580964, 14.389419813429326, 8.7198190962582, 9.77127036552829, 7.851775103332068, 15.944725074778926, 23.95449098513428, 10.68263994119943, 12.307983908281612, 9.344089023818876, 9.725696962884781, 11.971532464041772, 4.265984786230677, 19.902027405519693, 11.869520745108717, 21.53785993923663, 13.092220498825595, 9.915440757587989, 11.712944822433206, 5.892145140655044, 9.693032186468473, 14.691282917478944, 7.509126249311549, 31.533192260912905, 11.38924748576454, 9.86234841699319, 21.495178823698733, 12.678546568563018, 15.976013918778161, 11.647674628472034, 12.87856263762597, 16.317819947794245, 9.176611001855411, 14.171454268209148, 20.495040313288463, 13.905512185923032, 13.411807087852651, 15.933947652710492, 14.096767361944757, 16.075114138202313, 15.465190440755705, 18.59657642941854, 9.63529247249178, 10.443353674780504, 2.8753786304402427, 33.54103621226594, 10.85881740254712, 12.560889183893504, 20.0981123009734, 12.118057480466275, 11.045507678925436, 10.873985420989534, 5.241518936024806, 4.673539033400066, 9.958441081665946, 5.310896326852101, 5.874508140767038, 22.44878696612858, 7.402761287203461, 8.576025876481756, 11.133974417427533, 7.909512882189846, 11.44308232911824, 10.859647615890571, 11.649131412417645, 7.92821285702315, 17.44255147954673, 5.725933699084439, 11.048026878951426, 9.869075282620038, 19.91611207014557, 12.721362435859309, 7.481687968157467, 16.133685836514708, 9.090346990841828, 14.279123774096156, 11.50401275590966, 26.33512022623458, 7.560861273032324, 24.587478732814738, 5.344925793908533, 14.358465619295318, 15.398895958520535, 8.045042217849208, 12.148586374409899, 13.119881365166195, 9.887621996103219, 14.267812049774907, 7.7782639201430674, 13.7445391517991, 10.694433293916378, 5.877196453640348, 15.658603739115225, 12.45385749525896, 38.43042015027131, 7.331934473865248, 11.862999750541231, 15.096480260680416, 12.692150408159629, 9.591327439001494, 11.239703863384083, 9.312093460273879, 16.91528633272477, 11.566719127556643, 5.047347020838747, 9.05778879841561, 13.807091137315563, 11.635191305444467, 9.971149815758706, 14.238948993117758, 14.165042165846298, 13.6340471103171, 10.430329363418855, 19.256273899241943, 8.897683479836074, 10.289549456213413, 10.431607502028557, 12.473196722395254, 11.135323932225324, 12.023562005373368, 16.52217741784359, 14.75053424379473, 13.163424286870756, 12.549503924632521, 13.89655061792353, 27.31169277976926, 13.26860737348193, 11.257254085254926, 11.695290807048838, 25.097337031274655, 8.218407648015624, 9.827353835515758, 8.772551805222667, 10.625025606348306, 14.730583579648227, 14.264531286217998, 25.682729698640706, 20.195717626327923, 14.508385192329015, 10.53158432504766, 22.35238863594563, 7.120108891224668, 14.656325113010482, 10.633571223001207, 8.93829041398669, 17.353334322292916, 16.08707549369979, 17.776049556995044, 7.849825794184203, 8.702660641234912, 16.531403572676442, 15.067237155540246, 15.216054303171047, 12.172158434507883, 10.267470421198333, 10.121041984455282, 39.11469422682579, 15.831787085126487, 16.22475664537062, 8.201494844161276, 18.958951250739958, 16.98354100908463, 37.67991610857316, 18.66062867187413, 7.000772035540837, 14.149588237697873, 9.700784791254277, 27.220777702930402, 28.690098217340026, 9.65920123559779, 21.224267269068445, 13.462691765930122, 15.1590269870143, 15.787491200723572, 9.819926255797476, 11.04915248040107, 19.658937015767368, 16.329798543356503, 32.64069161495686, 11.101672359568067, 10.118719445501181, 13.523194144720623, 13.725606315006058, 10.6966034049284, 16.971803346273926, 12.572327987598216, 16.42943700748233, 13.023099786269128, 39.15860021063763, 17.542486290024904, 19.68104354780298, 8.737707658635056, 10.54759152748435, 11.793420625410398, 20.018039487859927, 16.324773297020766, 16.44967804268969, 18.331251340323366, 11.842743337838158, 13.811758055508387, 13.684075594347004, 13.561421036794362, 16.28731905295931, 25.79328665108691, 9.845585673027236, 31.02149877108541, 18.043084198249662, 11.229795682969549, 14.818255069880387, 17.365068827900796, 20.150663059423604, 3.784307481189949, 2.891666987774558, 10.071081896851313, 17.567571594839997, 17.950114804594836, 15.16008535725604, 12.800764616529023, 5.626096280581593, 12.548363788904409, 12.34973655539107, 15.910265920322017, 13.641603396778507, 14.223442660830743, 22.285662802756075, 22.297705724142293, 8.905098808052612, 23.972956061588334, 14.18683658297776, 16.515690885795212, 11.188327275344355, 19.901287221027488, 9.024758357736536, 14.42382572321508, 12.122522425715202, 14.48400236399905, 11.178875901701735, 21.408856729055262, 21.216027617112736, 10.579708406802785, 10.081084395827082, 18.457729001134517, 5.601306268981492, 21.067183532003323, 11.604357451003967, 30.4221632231457, 14.083244482707226, 15.577671375923696, 18.805111608057764, 14.597409232182812, 15.622841574275395, 18.822311247447082, 9.26452311542946, 12.503179080896778, 20.086584506066483, 19.6928767777301, 38.142756099596994, 18.281403420744805, 13.738376498601044, 17.293749897727892, 15.738384394974416, 13.259369469728078, 29.597591544834604, 16.446160918874146, 12.353895952029118, 16.94503188636649, 8.769832628527508, 28.115591921966924, 21.91787246944232, 13.706524253001852, 11.634438075534591, 13.833558716186229, 12.572913697689849, 25.932045805978316, 7.982541890995337, 25.576456369528493, 19.67811849277351, 11.106234935586713, 10.999174216557273, 10.73200406067016, 14.055246108957803, 13.882279769731877, 14.599059381572154, 14.52613063329, 16.503239202796262, 15.149648500879923, 5.478691026204386, 10.025886163471803, 13.021968687001795, 10.02511157472854, 10.126368109864158, 11.043982306100293, 14.360131919063166, 6.186074712417032, 9.117022765688043, 12.438351455521476, 16.41350169636417, 19.444355013102594, 15.157829273526795, 43.688655777529995, 12.89484966636068, 9.09905831207763, 17.182611156857128, 11.906514668666606, 24.620924971734336, 24.16097231605178, 17.031786128642786, 11.873174046186021, 15.684230417958041, 11.513608459974478, 11.87948919288985, 11.931585563246278, 7.208657202620291, 11.89823813301571, 16.398187232098678, 11.826316924114137, 15.172541861818955, 10.598829164095024, 14.147313280106005, 11.666478135997375, 8.709293036984636, 21.109484785939888, 15.13542862235804, 14.019769094412327, 11.435688656516241, 10.691298427341776, 5.314422318862218, 12.278589825423637, 29.21382541160372, 9.066573444654727, 12.505154077829859, 7.752405791824477, 19.495979223931432, 12.450487234599224, 15.163190230821806, 2.7361963951263166, 20.448507881756825, 12.954528215997332, 14.87081766505857, 9.924314274523498, 14.021795751592514, 10.536317356520982, 4.458862001249565, 16.241094423013344, 11.829296266933962, 30.664877379156774, 11.573200943458566, 9.483902099096184, 8.786603664739523, 37.29038353999301, 12.82661827448127, 9.308202109532829, 14.297834813664146, 13.010103391010638, 14.854967336098628, 7.813308425664156, 11.78708114928587, 11.946461146864351, 11.84470879906656, 14.034005736009753, 15.655244944357324, 13.137025260833413, 3.0483005837078867, 16.93840327200985, 6.957829949012535, 10.932558644080501, 9.1549286356615, 10.698631955544837, 18.482064926103284, 17.887927308971648, 15.632844554872772, 8.506064759560841, 13.949236869109189, 14.502328193378329, 25.449464727438023, 10.132265303633538, 3.3533059725665164, 25.733423001791806, 6.703670140705542, 9.89221651052415, 5.001302899195969, 12.53546427104402, 11.692237887505492, 8.221624637882325, 8.694231743573768, 5.297767521896471, 24.786869875015807, 23.487432211562822, 3.6858816434627535, 12.699480113568262, 6.860533921830591, 14.37493568518147, 13.391778698408235, 10.085827292068322, 26.537693564753997, 3.694885553204467, 13.945872587436513, 14.385308344521157, 13.644087368309046, 9.559484643109155, 14.535352291133757, 22.35443695761191, 9.039489297595662, 13.891467064709936, 15.302690878341132, 53.38908157722014, 58.146664527684436, 8.053417127772219, 44.97847250304253, 48.97046848190062, 51.66328899769818, 9.439191935655554, 36.82221724074564, 60.20552427262355, 9.091653739289342, 49.04326621336179, 44.39089703099452, 28.45502742866495, 35.89868526436583, 49.28169561288857, 11.558968215366344, 19.813433706467347, 32.81141290493133, 20.15374968030061, 34.325776709861536, 45.101471287007314, 36.02088314214165, 11.355588243505666, 50.86676298679031, 45.7475076828344, 71.65311502968247, 46.275751721275746, 47.89851656670853, 38.89979177535006, 27.327152519042492, 3.1645185807473117, 45.18382958435899, 44.87786021165403, 3.9861478735167024, 35.90200934655226, 31.59637994066515, 23.176396783872924, 31.685759602068032, 42.65925115013394, 18.601825090543713, 38.10772304590535, 25.74588047009702, 46.49010256380185, 21.780710768898384, 51.41296468499345, 49.73028541490088, 14.627830390053278, 26.37278446688856, 44.04094012271474, 29.11570734932406, 10.133746195331277, 30.165080038776804, 10.708678984670223, 28.050331985008455, 46.4068578643579, 22.127064964758535, 35.19124892423918, 13.710729826464927, 10.98119454742465, 17.266180441849162, 43.54908578126377, 32.368797226466334, 37.76995840384051, 30.364026694113797, 17.712017552605634, 30.442374646856006, 16.296834591878707, 43.593181420462926, 14.966068961056441, 9.7140139753661, 13.953936714047707, 39.25316478502577, 14.818045162787572, 9.288244561414743, 11.380762153130885, 39.29906572595131, 27.044916868249185, 25.00863734530902, 30.724888892291055, 17.123943737869013, 4.0875196789613675, 25.561566742666038, 9.891349512269205, 7.524875295812122, 26.78873621287553, 27.60193273838615, 19.282882407191753, 15.557093274794228, 19.384541886519063, 38.11000509785366, 31.537548824439856, 9.462141345812856, 16.129710506264026, 28.330899068803348, 22.822040617955434, 15.386383827386922, 10.564804167001334, 36.912573475561615, 16.136002989915134, 27.09539086616845, 32.478326642741514, 38.348262736000194, 21.76948015318015, 16.805751400805935, 2.5507123067939372, 20.394340714620327, 22.648749445124263, 27.80580535885683, 32.13920364635366, 30.164189634439634, 10.059573935878928, 23.616072739412843, 16.02265497586835, 17.55591506249407, 24.028839263119067, 26.942617118104348, 15.255275785985026, 8.85054043189012, 12.252712262932087, 21.612633328304188, 21.462337352545152, 23.81232058442015, 20.445603393790503, 16.752925760079005, 17.126200651051153, 37.07371225734191, 25.683033698297624, 13.946019264747326, 21.979092338600598, 48.4293179030326, 30.624323116861788, 14.046279335088858, 4.187785026046616, 24.594459555090967, 26.37061443213647, 21.14066617553039, 15.477194273872298, 21.11141650345474, 23.172851518599323, 21.94640426958662, 13.781035999551191, 26.139515966547844, 17.485906737068742, 20.435724530864224, 16.803028027738826, 28.07223297801386, 21.63686072244749, 16.9003661914169, 12.313448289535947, 24.316433757956943, 16.106901444926525, 23.03478275933733, 24.48479931869853, 21.335478076383424, 22.586159644423333, 8.756302385926952, 16.18975768577827, 8.332611540314076, 17.476449615743736, 26.105539200336572, 27.036775360905004, 10.446563983859589, 14.858404235087038, 16.26542078208842, 24.549917271270704, 28.58836601259345, 13.200062170691162, 19.33950172635272, 23.380980256018486, 38.8118127902126, 15.738338573701519, 19.33337553699497, 11.803030690321977, 41.19380454162251, 15.952908566781892, 16.514078519083398, 19.40969894468063, 9.25586218608524, 20.81101169251322, 8.381003677215956, 11.706470736414428, 18.08217302870857, 13.670522080021149, 17.735525498472903, 4.533972357011355, 18.148146748724088, 10.590506177459115, 27.46543266185139, 14.334292801396517, 13.494271411878834, 15.936359260779849, 16.811049543384026, 11.460016244980917, 19.4750517498155, 3.2465185641288743, 14.577968963702391, 19.275084533715408, 14.438494508456488, 18.005575158288714, 20.477424153310135, 20.178631927598268, 18.98683667721168, 27.02038413447974, 17.705940165140266, 11.359625776024181, 20.607399899345953, 13.896794206995153, 15.794043334374596, 17.569045999052044, 13.575060527484206, 18.872251946153263, 14.185413824638621, 10.676123228389512, 16.234476550927724, 23.505206397971094, 24.058532720889087, 16.69805984108771, 14.063735427270338, 17.440440485457295, 14.810811493525954, 13.317715477137961, 8.1401884450782, 31.35056953747931, 19.09572676385137, 14.783860130349904, 10.844759050117409, 25.522288176692587, 17.809841885221438, 31.604516699803487, 8.827132739209322, 9.467740046090958, 12.625624982602536, 17.332825272821218, 20.48067983800685, 13.454565916029889, 30.367100156764327, 16.7603868941516, 12.411564263167994, 10.224555365750852, 20.266008835970045, 8.719852940030952, 6.184035875837265, 15.523774447238916, 12.069227726017568, 21.474827672152283, 17.85928874267512, 6.145343125919037, 28.344953620579624, 11.019827484644528, 13.678557008202471, 18.629644400643677, 14.94903108731885, 6.7986529807021805, 16.33494917482758, 18.754488924474234, 15.291051369227604, 13.698467292128539, 22.3184152820527, 11.791227895324859, 10.210546092767899, 6.876214338293284, 14.867809694100945, 10.70315583549017, 14.29866610826693, 14.562856956548915, 16.491939329072423, 13.296628707060266, 16.722811054275788, 10.008422919374711, 13.430826738658833, 31.65384134248105, 41.82716014083032, 11.711655006014603, 11.860846967437448, 11.252430552084654, 22.39346933864209, 32.220526319908224, 21.06484328576315, 13.816822641291363, 14.23050724683315, 13.96362426286416, 16.95676184934589, 12.971597000102177, 10.528611281727647, 13.417635983922796, 15.833776782229744, 14.403030575231663, 16.614812055944007, 16.87631767587418, 16.875976197859963, 13.903762455692776, 14.256919068058219, 12.620491897738345, 29.70888477195319, 11.453595672308376, 10.06413200534341, 12.472196579718867, 28.259832872314554, 15.326647996819428, 8.80980379130027, 6.964031297240571, 17.24394799146315, 6.319368027968761, 11.920895281577256, 13.287846233410555, 13.444776548123212, 16.61609747124632, 13.337083018259388, 19.832423710276643, 35.95776564014243, 11.686834891760514, 13.99242544137251, 18.444604345101265, 27.063518524499248, 9.952735463405864, 10.716528424490047, 18.563094321614052, 32.084518231768236, 19.390866435155836, 12.741569812319794, 12.93740245553186, 17.033016894879168, 19.542275846405357, 19.393932396997805, 37.26699386316296, 23.34710712701794, 15.586144279142207, 27.247315991565905, 15.382974979604331, 19.66257543197367, 16.75004343748115, 11.400363088536954, 12.852573628685864, 10.153882702947685, 11.70813942283579, 15.113604835224864, 14.084282323971289, 20.273251706231374, 15.073732572973974, 15.02399580281645, 13.262368261538223, 17.745852601131247, 13.049043591901388, 23.805090211602973, 14.853332966532596, 14.320337225639861, 12.571665752877442, 7.363369509787028, 15.857951082396573, 13.382754902330582, 11.630623875566789, 11.967173509505436, 13.757192296035626, 12.391841545965969, 2.9458745866735105, 12.733431329033879, 10.224229794602621, 9.648921296414795, 11.51141198588993, 18.401807287183072, 14.0159737856557, 34.708176972817405, 12.550651299940649, 10.867764298595866, 15.50272336671719, 8.102130174907646, 10.208729586374128, 13.187231532855995, 6.712517320536482, 9.783805641394052, 9.904360371466172, 10.661168797953636, 15.852994775310101, 14.659788558705024, 13.799207147317844, 13.990543808999998, 9.77393812930276, 3.728275507525709, 20.801273655964188, 12.695048076608124, 16.723926610891166, 8.729123800123231, 26.365869178755016, 14.611178896494705, 7.663704222073548, 14.197696385668893, 8.94744910235402, 14.886971399486876, 13.886046664734916, 8.795021207472695, 9.77579548374294, 10.214653047056801, 12.378566260534742, 13.859979483420446, 12.7396449213534, 12.781295737810588, 18.88419458640358, 13.81277860439308, 8.995228732345767, 18.580403471614378, 14.266848817516996, 11.291467103174144, 17.003497831796082, 9.298394027533845, 13.594805362823417, 11.230374195141993, 13.521418089657766, 31.47521239923549, 11.446960022935633, 15.058343105363846, 15.13461401291235, 15.842077383288338, 13.47515234609183, 10.63040588942391, 16.776517888708558, 20.09369993116046, 25.66320420332436, 11.018702800364963, 11.025434356217243, 2.8383342393025934, 13.348014194786018, 22.01442319569461, 30.560248553771824, 12.992201194689992, 11.157248068784213, 20.2796543052997, 12.461682442321463, 20.271187825929616, 16.40051726349559, 11.005870091108513, 17.88048107221008, 17.832400583587308, 10.341963336131778, 15.205488768466468, 12.809772892656012, 7.251527406200459, 16.39602890673316, 12.889759427174134, 15.81613571915701, 22.502845793095787, 3.2416694408913957, 16.373988048523383, 1.9241485226513149, 15.362930807179096, 12.15246963832446, 14.043066962612542, 15.999251725356894, 11.532856348172524, 14.49144734153199, 7.876225971512477, 10.997698059549954, 20.530455973684827, 8.790099518137882, 13.143198976695693, 15.801404235169713, 20.327397413405308, 11.104282376399304, 15.235761485538129, 14.782767133193602, 11.609637471398486, 21.26899810045476, 12.996219548989476, 12.683523769025626, 11.287700912855636, 3.2314796987116448, 24.73830400745093, 12.227241198399653, 3.939722808034401, 7.423761332270073, 14.758222919237623, 21.696163703907633, 16.115269660356848, 13.60574260142794, 12.646443150328144, 15.54689581848613, 14.685032591968778, 13.76528200217855, 7.7909641347744785, 9.19242436714186, 12.50400636974658, 11.247530651643002, 11.77191533929664, 9.161359359295826, 9.155276681944907, 11.77493439070366, 12.316662987004392, 11.368328568370055, 12.697601457503003, 10.834160578198892, 10.403490511865698, 9.374750650703476, 10.394123994317157, 8.108167584410772, 10.750553945925077, 10.02567076467334, 11.989532267403343, 6.6107821324042, 11.769205017205017, 13.061492233365762, 10.601984621286862, 8.771175362384634, 8.706241635259447, 10.054137108563275, 9.210616390566026, 12.20695873223287, 11.026400102698057, 10.9485696961982, 12.380119157001669, 3.4355581602297036, 11.090320411868065, 10.970728773978, 12.08947603587503, 15.62301796569443, 9.703796165335634, 7.638613506863236, 11.728222524473786, 14.246757323913656, 6.1424445850403115, 13.398676393566054, 9.281740498188057, 7.159782811679483, 11.484602811223857, 11.72699223278628, 11.915917928144792, 13.63871971150624, 9.744983903398238, 11.380461773740006, 11.829640003657326, 12.685536251090758, 2.1054970651884513, 11.403956713807377, 8.726213080712629, 10.280309612343824, 8.523461420310154, 6.467028785175304, 9.617903996227756, 13.993365986915377, 14.136545945600298, 10.301976380223136, 11.704361080797998, 11.364585928620027, 11.15541195899903, 11.041141772488064, 5.85781599289254, 11.29148214547937, 9.3614648236871, 7.368520148519501, 12.137364327380036, 11.525783904764639, 8.613332750633374, 7.360838139041577, 7.243138869449357, 7.79104270418175, 13.072824128485891, 9.357719437783347, 13.819481859629777, 10.815362479615871, 16.866802597772022, 11.71759178184137, 10.752729529167834, 9.434341791209299, 11.243590475999728, 13.483299457197335, 8.234049355789537, 8.155818083802753, 12.677842429350395, 9.827160770269552, 8.281652936531273, 9.152358960143191, 12.864734702655099, 13.013874355804157, 8.173443588081433, 9.801333366670592, 14.907972358452549, 11.265179102887018, 8.548527674654206, 9.915707650237952, 12.31262723583083, 18.597370879513086, 12.339077719757466, 9.274079070805726, 13.654541702113175, 9.945561324573317, 6.27595406815193, 13.027159925502723, 11.9555423252545, 7.6006581964995155, 7.1410843370142105, 9.834893906213757, 8.435730582718504, 8.907569359176298, 16.812402201468213, 14.590101117369064, 5.716585842318019, 13.774894442560072, 12.145200881613214, 17.508157179534205, 12.880852187403917, 15.217675516142057, 14.59111789826364, 5.268568968889059, 15.715264969247388, 12.489868315872085, 11.310107809406786, 18.35636453005629, 2.8572234569829247, 12.258765628419965, 12.936116167499934, 10.460564732829381, 15.894561655045832, 6.1944903990186475, 17.515746693973792, 9.684892684411109, 12.2489876091924, 9.25141689318349, 7.653099788232099, 11.440674143752332, 12.343141824960473, 13.662574173066735, 15.442256271029414, 12.610738895518018, 10.340930263117837, 11.752672992373851, 13.176298255959848, 13.460105258630259, 12.790060489391097, 7.611789663396835, 11.445543598047765, 12.331736310619636, 12.92951907447856, 16.739800432883257, 11.850716127719481, 10.291552278867213, 11.43908371491238, 10.41453554844891, 10.282253802674735, 14.27527958161289, 5.34573576360202, 15.048936110089342, 14.081059344096325, 11.22554259603766, 10.550858467891969, 5.294734435262877, 10.006096284300165, 15.044173325442156, 12.02243778292385, 10.765012232048994, 10.024283479423103, 13.705379433822165, 5.1691798197843895, 11.376556947133034, 8.029440682113279, 14.778587408347542, 11.551719966277162, 20.827262696752257, 17.05123009829823, 10.484700289971352, 10.93967128268328, 11.718932993000987, 5.718384666443321, 10.926405467356856, 12.635574065553241, 7.852352450143215, 11.555620517167585, 17.40787611701263, 10.154387952638357, 12.052692516850348, 16.576836337856076, 13.326550067716934, 13.793368677100894, 13.839337866356084, 13.037009082331513, 9.930884718011148, 6.776635234045586, 36.190649158295884, 10.241769027197432, 12.605416448017067, 12.110666095714034, 12.765410210032572, 11.906792602263572, 10.79773185188278, 9.883162572767352, 14.000192513015802, 11.543534465253016, 13.376120763454962, 15.974450346817838, 12.296765676874555, 8.740297853899207, 11.29826817354727, 14.06360825497544, 13.033191819154146, 8.687647039338412, 11.417494771508531, 13.576811167222615, 13.34126482267589, 10.085681342990243, 14.36562174961691, 13.60934348633268, 15.146000093596117, 9.088667637179663, 9.281883147776943, 27.867300686679304, 18.45586905478721, 8.189248387326419, 12.058280619664135, 12.422614432405815, 10.953624186717997, 9.13487980097487, 13.044359184822781, 13.713533801460711, 13.3979783253913, 13.348399476488725, 11.627516838963437, 10.10092084134513, 7.909403970312954, 12.535289078230385, 2.792183029431867, 21.148014457081818, 10.593256435276588, 13.250562492322564, 21.953142532160083, 9.250695901373232, 13.685863010799856, 12.637696662147047, 30.09410613357517, 13.63666763129371, 13.511272338793821, 10.293519941065714, 23.800886113827406, 9.501128527085832, 15.122596665497305, 13.732003386392403, 33.71641103650095, 12.039929571524965, 32.372304791613615, 13.434926507244894, 16.57246371904466, 12.445244207195017, 14.676291700838743, 13.717634101166928, 13.037258151618103, 7.437861008532669, 16.242776860879008, 12.752795708094643, 10.550327850307138, 17.06008188654209, 9.123904494454566, 12.049923767273263, 3.7207996407450894, 10.275507912182537, 11.127696420475239, 7.987483197518536, 9.63413907965059, 21.21821017834113, 12.652960888708652, 14.490890517557782, 9.88405462679638, 15.628143056490321, 18.547767996866664, 15.744710747959259, 14.263566143522791, 12.668936290360579, 14.616122446544175, 11.890741845254283, 4.3135874148690005, 8.07960061861517, 11.182815424283156, 13.935483893295048, 14.340849786349148, 17.185556879914596, 24.019444434835737, 14.693522588691943, 12.379859576741977, 10.70443090616655, 14.869679435145013, 13.81053725548173, 12.259880050955504, 13.815297393995904, 42.602220375803924, 13.390344307170905, 26.87434115125071, 14.232275863341998, 15.798636500651433, 15.656641623792256, 22.440147382588176, 19.435273338162915, 13.406722132915247, 14.712210058874522, 16.667944056352145, 4.233297858987652, 11.473165071897316, 24.10043978311993, 14.17685787779304, 5.530671459013087, 16.11082810599435, 22.552670171331933, 10.908636135977106, 13.272002048129952, 16.306427010682402, 6.267983273097377, 19.56409760053447, 15.418999776247095, 17.74625441366451, 13.993530081009345, 15.690583174234655, 11.893323418615347, 20.912812345627227, 14.45963296194833, 16.34926239993498, 13.615893684052166, 9.85292695682324, 13.479026628019124, 17.514446511350314, 21.404290282021897, 19.277668547106163, 24.457299564642458, 10.664035389424079, 8.772413485989613, 10.275939497792793, 10.085110252669084, 14.796536859692589, 26.70704657773845, 10.363925041392015, 8.711044678955643, 16.254527906636998, 7.339675563900379, 10.649569168161399, 4.298801960844935, 6.342677391599254, 10.217571970879584, 9.30330459966247, 11.983044527862761, 11.3459354053755, 11.115418554269946, 7.409565279794625, 14.808041105579337, 11.353992509723778, 8.167288648057687, 13.562357933033242, 8.160577237052717, 12.245543750926588, 26.07004931749055, 15.20122018388506, 13.271118394775517, 11.972527080547593, 14.798416521474886, 10.771891616264185, 8.204802332953596, 9.78490386529535, 11.912998819059721, 14.981929410250675, 11.517175006408367, 15.479800185751936, 12.768695687645389, 16.83399120366999, 39.04211177757026, 17.404135046255416, 9.919634543059068, 12.828815973403879, 14.123095164394432, 35.71754201882236, 24.9028504081994, 13.742455203250486, 10.059421493788399, 20.859929996448354, 10.828779739723911, 5.760069872160916, 12.16169082263511, 12.277188892452344, 9.967169768053505, 13.995965527502811, 10.199567128708239, 12.48525805793513, 7.084752551471761, 11.548206585813338, 13.17801134185732, 10.745074911878412, 13.572144641194276, 10.571677895709813, 6.023314119808534, 7.40524418973688, 14.224178379768555, 12.520643328519219, 18.617147547769857, 19.988850496225258, 9.602708198797409, 17.19842677940638, 6.304193325653224, 14.671452605265541, 8.242015500769062, 11.662654545000272, 3.6484319874004125, 15.96768552328404, 9.41980338880545, 9.302238293236977, 2.7293671231292915, 8.813970467499457, 15.345617119599114, 11.300822817393263, 16.96607903207903, 5.563277282615257, 11.47388767967651, 13.698795626920987, 7.731127824439273, 17.369883480898185, 10.15686059629695, 15.632461359790309, 14.14999981969977, 15.17003517714761, 23.22577106653792, 10.554410425622791, 14.114773093312419, 6.555949189666959, 13.79704824156764, 13.38717391933547, 15.551235470956058, 12.563953810875404, 14.243909128341228, 11.86083793000015, 14.915675368880525, 14.181816663142282, 13.617163667265945, 5.645626478294389, 16.0452064349731, 10.778959594155413, 14.409460590828058, 12.76030596715129, 7.2667041648052875, 17.09496871989442, 16.332212311716486, 16.96814301333342, 13.272463845301472, 29.339633236825694, 40.734621414113306, 11.904395060138988, 12.792421921650176, 10.490202118079456, 6.866643585576056, 16.38746418880397, 16.64728695910263, 19.984484195736325, 21.2558248518767, 17.476808306628957, 23.530906876601914, 21.968646015422447, 15.649164215864207, 21.25572207272999, 10.157426932761455, 28.45468464376985, 13.92497564455436, 10.966505017368007, 14.343641344796222, 13.643879643640675, 28.58683000839887, 13.587853467239748, 20.96135780722545, 2.690186352177862, 16.654050998406706, 27.204523524525978, 15.933667675873862, 17.20184772521379, 17.234553835100137, 10.769008470417708, 13.560112240651595, 18.67924198573185, 41.514332349023505, 11.441571000497651, 18.272282632400277, 14.939286199911203, 12.662093819256196, 12.305956049337317, 5.929420277886118, 12.103022082453213, 9.939349063513992, 22.869333800394614, 15.234622728232619, 15.279166775493936, 17.25343476120505, 15.960476834244893, 14.810295804307042, 11.81686937235235, 14.698212276250315, 21.09611893118959, 23.56949816526274, 14.097492937126477, 13.246814580260885, 11.110908511527231, 3.7033031032327046, 10.835006488797857, 16.372219929036106, 13.052384403544577, 13.669209141554866, 27.75812773771695, 11.018049274255159, 9.847892597701547, 12.5965787323913, 13.312745213544842, 9.117813924998558, 35.24624836927778, 14.534603034710392, 12.156600646465149, 7.4094310914344055, 9.95580712902247, 19.580231890658375, 12.991681357112013, 11.824486596643801, 12.1023432614599, 11.181052253138326, 15.297240289047934, 24.73370498748718, 23.54498390474293, 11.124082273468828, 15.52714945721409, 13.224273781627103, 13.407765594769488, 10.057398482194133, 8.693593386072365, 11.149620871807691, 12.532169081576722, 23.003605250772893, 14.655355738481397, 10.127959766554971, 12.19411891407734, 10.828824318020072, 11.016697385605092, 14.116109893825081, 7.354591821614271, 11.130694220137213, 18.855786707975415, 10.679507859963, 13.334829309665226, 16.918527913785795, 14.443896336059879, 20.178898713495027, 13.497351018993049, 12.416131978109606, 13.916473425807304, 12.348841824521521, 17.296565180137094, 13.587888019496434, 13.569253478060753, 7.881115950925612, 19.588852024020717, 15.099125881383724, 4.289090437928488, 11.135350869383457, 11.508689005772572, 15.51611561159952, 11.858978386517567, 13.357926477758122, 40.47054638565195, 13.21545035399383, 8.351602202563198, 14.91614056490465, 8.145321770152453, 47.83774840979582, 13.700830555512647, 23.78906770761236, 9.152118140873439, 15.71342105280341, 13.172480709192214, 16.347677897782184, 26.694886087596625, 14.839842297491902, 15.979264765463288, 12.848571063248754, 13.12319735711103, 12.223739344973614, 12.269336894185965, 16.10657087568005, 15.235660477779666, 16.6089088264365, 12.941353944584826, 8.897358410138319, 12.595625226049268, 10.27064920177455, 14.096546775576888, 8.549678412003306, 11.111555560183426, 13.833628633492413, 16.337184986275457, 14.30607969857994, 15.16670403044668, 12.55267075574102, 13.174631095476393, 16.07745978601777, 15.260107106386906, 9.478331076349384, 14.433741350599863, 9.01129615879931, 25.592182723732787, 12.492082371862482, 11.356767111440563, 12.090929171014915, 24.723984925119275, 16.709257642374823, 13.50048876637638, 9.22305634882833, 32.060789489155205, 13.370508668218546, 14.205746055238317, 5.763166706464486, 18.73007352177176, 14.077817008635295, 18.677667295867472, 17.154598102800787, 46.11667943741041, 13.24474919044552, 21.51653590726533, 17.43980037747423, 13.115298689578374, 15.16321950629884, 15.190725388360171, 18.10199540898408, 13.635302223509465, 12.476908318057058, 11.743402653020176, 18.608322142990126, 13.055964940981777, 15.346615090067226, 9.034168139947907, 11.450221119657396, 22.7049337680727, 11.09060229999108, 12.203573848938323, 14.00758285297361, 21.65666327576247, 11.380799941942293, 10.202587756056865, 11.604598564162695, 12.905238470831996, 12.167005228026337, 7.618626918156033, 14.520975551591318, 20.03502960248008, 13.619083853959939, 11.543655544627809, 21.909925518925515, 13.899574638970742, 12.520015588820733, 12.94071903381443, 9.530382262843501, 11.278348692656996, 17.52532527001422, 10.159619098118583, 23.177216558904053, 10.965586154772096, 21.280207234904257, 3.1952467540972482, 12.33662136216896, 9.50588806306064, 10.224088809761646, 10.493837672357692, 8.078537209750587, 9.108044476750322, 8.937107201135007, 10.391673323707925, 6.031618945051104, 10.658099538351829, 7.810239132759797, 3.938234180019408, 19.385881787764742, 19.07384328134476, 13.466635586369978, 13.226984568797802, 3.1948688147814654, 22.716508344692713, 12.106929592249616, 14.38789144612697, 53.43750456681262, 13.989261254461905, 13.447321962737794, 9.633528213354886, 13.84744125174294, 13.360945423173593, 8.054174730426617, 10.128407894578013, 16.52411196241589, 11.755304793813542, 11.953251748702979, 15.697971128531597, 20.587330077086648, 21.772668830395617, 10.366783595725035, 8.861591273541274, 11.018612975300865, 9.471043840466153, 14.685248479636497, 15.101353727338848, 6.932049073129571, 6.954063725586972, 21.477803012290842, 5.614239022703902, 21.973202309905112, 11.914286178643584, 24.272311141134605, 15.115567551151404, 18.24254319667541, 25.873742317372866, 15.736136873718142, 16.612386133638193, 9.570878078116419, 13.932245918416791, 6.968853681825423, 10.96216061971949, 12.667163431168074, 15.173830638580862, 12.146516238940896, 8.526970507733974, 13.863277129271696, 17.24778135297042, 14.177609866105099, 12.247320989639773, 12.749193343969347, 10.401432298468247, 13.231809776484504, 10.62422125442758, 10.435539565842266, 10.625228021279135, 17.898117104302923, 8.368411962128897, 12.422132766458379, 11.160281026589725, 13.270759948191815, 12.842865480296307, 9.649855720359533, 8.865720289155252, 14.706960281058603, 15.32322375336016, 11.815009556081442, 9.526521459367697, 15.268651976309402, 16.828507845265797, 15.520169183991623, 10.4923016050119, 14.847526449943244, 21.467393343621158, 12.548427092248255, 14.825655903343737, 25.64017282161358, 29.307362410938346, 15.506060537934978, 10.100530131590288, 15.687719287602139, 13.515956252854219, 24.993722185945455, 12.907531012931036, 13.104969793687662, 12.634218325315725, 14.006729507106481, 8.765820822899473, 13.008746822213734, 11.99764763523711, 10.43477710285172, 13.13872577446073, 27.041563528030448, 8.553580448175788, 10.234927414192814, 8.342328798414497, 30.326536496682845, 14.396121734017337, 11.781154985819523, 12.223805161231361, 7.776265661542357, 11.06856657329598, 11.382357446625456, 21.564886907450127, 17.924616199140992, 9.847544882211503, 26.63784821682159, 19.233083329438596, 15.599476931993896, 14.236852916105724, 13.06770187250252, 12.508961020051176, 29.36758467719813, 11.613332970960771, 13.028502086743817, 12.112640285564819, 12.582811430441362, 21.063335108611188, 14.064994637313545, 13.133832313972832, 12.385122038006712, 6.603788015081032, 12.459306687928146, 20.69049152103486, 15.076928273210521, 4.6356217985740695, 14.275342633373441, 8.739993685609733, 9.652066356350288, 18.17557238859791, 7.57178189035858, 13.048862284725638, 12.506920514219129, 11.794796428416783, 14.734499080345952, 9.874201332832808, 3.7924178360084753, 8.351973565090665, 10.004445433835416, 15.305957357602535, 11.268337678094214, 17.188490693765807, 9.533008511737988, 13.775650089568085, 8.49992758386426, 15.613918373412902, 17.540785492262508, 6.772005090742387, 13.121623221733344, 11.435906575684086, 7.69104991708373, 16.400875413962552, 7.038394686504861, 4.719684788757565, 12.008337588495296, 15.598886622858569, 11.26298877492514, 12.930087661717232, 12.837936281012894, 12.667966527247149, 13.451286975839926, 13.831841095838092, 5.069503155989339, 11.498884051433668, 11.86615288543474, 20.70502834017809, 12.479227496775723, 10.536908976501083, 12.830005665754918, 13.880615916762983, 10.153288071793467, 26.6234872227478, 14.821477149661932, 11.442217703769515, 12.404086637679763, 23.703191070367545, 18.355852241310366, 14.589469187675062, 11.120469365548479, 15.7431759247819, 11.86742375724887, 13.988447667434087, 10.758014878879715, 11.246724864651172, 6.970818001177851, 8.723542808356742, 21.19506786588266, 3.097436366633961, 9.515162333796093, 6.016875848635948, 32.95145505876143, 10.771409619648944, 10.978697708772673, 10.360289387093003, 11.058598968751982, 11.470811889278764, 16.40855415018384, 11.23712005767115, 13.174941690858944, 16.588076859260077, 9.970583683301266, 20.43341470517787, 19.981634299995203, 11.024028141186154, 15.4489401278546, 12.039424293394378, 9.597898476121655, 11.491598926408985, 8.185617270294642, 10.419418774733044, 6.745143703130443, 9.149781895534044, 20.46264403643312, 13.040899225728364, 14.092751771596895, 37.46523849699976, 18.60493584267789, 15.69216745754246, 26.209791427468012, 29.24668468884916, 9.800524621553107, 9.195720509101362, 26.59278352490589, 13.191159525934248, 14.333790609516274, 16.297795213925166, 8.368260982418644, 8.742759636482752, 10.053773255333114, 13.185525229451796, 8.16872603778755, 7.706360926464651, 11.328241327390728, 18.104601212512964, 18.203392790602937, 11.934889192048336, 12.508886075284853, 29.22707508133514, 27.477294178101452, 12.530769460954547, 13.927798218998063, 11.896377464262017, 13.204512116640597, 32.21623021990929, 4.307884926638956, 16.74234706239346, 4.517055751343823, 19.089989230239812, 9.712144228525712, 11.87742716594471, 17.06552465565623, 22.03172587522706, 5.195886888553136, 7.353595706302345, 10.60797397564796, 13.91961484581118, 21.788930966591405, 7.952473598684158, 24.384814106372918, 14.600387007174401, 13.259064539113782, 8.412663669663663, 31.494959624852655, 24.340804514521054, 11.917604048284542, 30.014960450986933, 14.627654559113285, 16.926292128580428, 16.303814913864013, 13.327254820745472, 12.918887265873652, 8.909537311773388, 11.032771898600682, 35.68787138348458, 5.810279967445799, 29.14476492556347, 4.935192445911138, 39.547691047046605, 63.50817517689704, 47.21862436883723, 27.652638771572267, 27.57326574183483, 45.128106310356316, 69.93027433458357, 50.1033111075431, 38.84620221365286, 20.414217026331656, 33.97478892632627, 49.29441939065837, 33.265190492943326, 8.181679299833483, 8.485675805230814, 20.575539969691814, 33.56842181666388, 20.681462882844524, 5.677774136884194, 8.814626028161594, 39.10644344071756, 38.583925781920584, 45.68429118439182, 13.82448853813848, 53.173593606084324, 45.14945227883571, 26.354667803011328, 43.86321048647822, 41.96656865747131, 35.62634817842947, 47.59472137178944, 30.426589123595704, 26.68454156773831, 48.76539311781532, 26.46053837123949, 15.711632703590968, 32.22887423014573, 26.21825438280043, 57.84724586518421, 14.071697289649533, 49.83815518296635, 32.11914659667819, 27.92836138811894, 24.9907201222625, 25.474082014552963, 30.906184327246848, 38.806143103638796, 42.639346737071115, 23.665248463658635, 37.28024644340007, 48.59161620093586, 23.852176929745603, 26.58703053553321, 37.00962061944762, 15.331200909470647, 43.20714582873392, 27.0737881842263, 22.4717994785155, 21.045621531289495, 20.005691032823382, 28.13735941823914, 27.55953819058695, 41.93869041716797, 41.24567155067156, 48.879985826265234, 24.208578205695247, 28.695966100213372, 21.391126995341235, 39.07956093382717, 21.847810812815872, 36.23067423804267, 20.232407472086074, 18.067771288238824, 18.9326508679891, 24.30537759654874, 27.115663984355866, 21.00042444976515, 46.011168345543325, 25.588776716512925, 33.870252100960805, 20.03938417877272, 25.931366186777588, 3.8594076719900072, 32.52955347633359, 10.00083319252127, 40.21774556304549, 21.779110842881572, 27.43044422489276, 49.01586586016102, 17.258833279896866, 21.43903944338294, 37.700110536049785, 37.01833846708846, 20.86882397046483, 45.200800648572574, 43.03903662894838, 21.33419116458011, 35.84446751610104, 27.430107105169807, 8.401692685555986, 23.14199255132265, 26.58153584069296, 32.90627088155224, 48.61276729642908, 13.966853165881517, 21.9568613776202, 8.313796958194505, 23.004834483788443, 17.53037579488013, 17.549523224181875, 24.804212561453852, 21.622928434388015, 23.622595800790645, 15.64097341921065, 15.491806426184612, 12.707374874652345, 14.531461776295973, 9.759125447314917, 14.875173295176369, 16.42366362757281, 14.091056756754215, 9.889046321881453, 14.835334760685003, 11.426875029985643, 21.000305001690545, 9.877507587066944, 20.637510419547933, 14.623093793033371, 2.8061492826432404, 22.772931469915225, 17.91515214563482, 9.288757734805793, 9.31623350918975, 8.92952073801277, 15.036841468504049, 12.595306125705093, 14.603804157587051, 20.256548984327313, 19.114551856656327, 2.868538502460937, 21.430938953601373, 34.984265484515475, 29.529968970941336, 16.884663563086058, 12.301227904873516, 23.95347862581176, 15.196821980032851, 26.591362620549383, 22.656054908925483, 18.375200215264986, 26.946159890195812, 13.90475191464452, 26.541565794223345, 39.41609103155185, 16.64131780949915, 23.6772355147003, 17.791983722055043, 15.290726234678637, 9.007505525517123, 8.79439491732534, 8.89638590979597, 18.070829687828248, 29.882293376725624, 18.318378749926538, 13.815968018774887, 23.338175152307873, 17.173946924119914, 18.082599100185895, 30.788009786781828, 18.803026611090115, 11.3404349734982, 42.73271646282157, 34.95711122869506, 20.20819056481015, 16.717640956038846, 8.612414976361864, 9.630451745505823, 20.952014116138415, 20.069952389844417, 16.764022186044468, 20.51157908371874, 28.823180866459346, 12.87843183205683, 13.969268992191193, 16.553780393136652, 9.656131564631233, 17.560324605842673, 20.974059967065767, 9.241492745746898, 15.668532896491444, 24.664993186320416, 31.015396697171074, 19.80514834789196, 24.09293750984599, 14.866932600861096, 22.988945526695524, 17.427097340330533, 22.67001462181609, 6.433075445429888, 15.002220887108379, 14.849364040947007, 14.54081167747228, 43.424657895619376, 16.73141258859819, 17.105459453639078, 17.476951073479327, 21.936037775078958, 6.832386006446814, 19.58812179209274, 15.386999205341708, 18.60292552946571, 12.864268942897104, 34.94413696327857, 15.376801436476738, 25.14408108224478, 17.486437347157676, 17.671810496487407, 10.495121596716023, 14.984542532107819, 36.194288012096834, 13.098613878871634, 22.631144027648137, 13.922779746255447, 14.668010130789613, 24.195308301898304, 11.719850308775962, 14.934047340731167, 13.524765802844266, 13.866080668061214, 11.731334429678832, 8.001628358219675, 13.257277645072971, 11.145958011478646, 20.064934705158382, 17.10313037986265, 13.804937614349797, 9.915243046765298, 9.21699716304265, 13.779314896203443, 17.50357983192695, 20.68999905511314, 14.571326054598995, 7.7333682715054, 15.850760174272912, 11.484768467669625, 8.174451882249727, 14.433897313204508, 33.19796840643017, 26.05917305775007, 15.062450275959236, 6.2878944583691245, 10.77979058374043, 24.002863339318385, 14.113922393782687, 16.291289764962873, 13.930371964321653, 17.252399603965003, 12.957681076780862, 10.547079976772396, 31.209049598183036, 9.960621695618297, 4.752144395881987, 11.12553848566488, 49.448422642172645, 10.918785186025193, 13.678805544036484, 11.309421890419824, 11.72661618060302, 11.153980194500946, 16.522714019912552, 11.456574088747296, 7.962826730630908, 12.608988571651965, 16.942426079254638, 11.066403762517256, 12.213614456903626, 12.404276098601148, 12.755145048259331, 9.609927043665719, 13.327855689340195, 11.570528782347832, 9.525937502094854, 2.133776625570521, 8.678262786659856, 11.424967676048245, 13.23899161627265, 12.174504210827482, 7.062756575088192, 12.322944311849989, 17.510281348929738, 9.965888987840124, 12.882573293325246, 12.820929016827904, 13.920380544313792, 13.585644884579079, 13.380428806224222, 13.039505649507587, 16.790120660107686, 11.971243499733827, 15.217301991229156, 13.769528028508132, 11.503195889964745, 10.840856987597885, 13.646755952691636, 12.681422035426374, 5.3543115200305476, 16.537856794762195, 1.6585809256286788, 14.311031032970792, 16.129440179279097, 13.724109139645334, 16.31185732740144, 16.308456409490894, 14.935736191591163, 13.628405863864657, 12.018287681000913, 12.146427014811458, 11.76210365869284, 10.655097831739361, 16.125548690609957, 19.304232953321186, 21.130108403306927, 19.925318500943497, 12.499174557296847, 9.869571885570158, 12.877208790468023, 11.516584509215702, 13.55568099985958, 7.942257069727659, 27.491220937172564, 20.102400388440252, 12.580219663245703, 13.433075001689133, 13.637526247040705, 11.319301142656792, 19.25658671296782, 7.297002286665413, 12.949230094107765, 14.633073566182697, 12.045702865365037, 15.999825202983285, 13.27198266615714, 15.411711696617871, 14.246122509316397, 12.490476067330293, 16.665599958242783, 92.96312332928511, 10.865285208063671, 18.859438645159013, 12.524108103592313, 14.397427543734672, 14.607709461838942, 15.159901564094511, 15.684473642648321, 13.726744528001706, 10.563613658613614, 11.652388896316664, 14.118759369395155, 14.259928345935778, 12.452537595377349, 18.18751946217894, 12.613290092461876, 10.52928316047881, 15.21552385814034, 13.504336303619823, 13.813065205986637, 30.969997739671527, 16.324060497615484, 13.354226958139533, 16.898727035273872, 12.474416741466047, 16.158556091295022, 26.921278178553, 15.625517424044826, 14.712641384322648, 5.87432060975461, 5.4754722650434955, 19.16086669327403, 9.480316424721213, 13.700120421245428, 16.988498326126845, 14.444271667247676, 16.72847857898472, 17.76174886112041, 9.933974894131692, 18.537725206007444, 13.804227279415487, 17.265382530421263, 9.482322415122615, 13.61425356291604, 10.122108791556006, 4.238282752628005, 23.825453380740427, 10.861033765744667, 9.378434521308705, 27.937493224970094, 16.500130797613693, 15.135694141374561, 13.899330847996172, 12.51895884809908, 9.055511046168379, 10.15132946624553, 13.180460233918117, 13.130033793438244, 25.522565031223433, 12.694585217795915, 21.605735171776942, 27.29016872883817, 14.937175469075923, 15.210771699581983, 13.618589530936896, 10.913029564343727, 12.816793920574174, 10.399552262349749, 13.378285313457477, 14.084685686212003, 9.55544625250412, 5.852739694545083, 12.576720269979196, 16.28645379073023, 11.255406669708897, 5.868464283723592, 13.713385738756156, 13.383132025245436, 12.523634932847822, 3.240311410307096, 18.761602235771186, 16.49783855510821, 17.040075816292926, 11.26878126106016, 11.344893400191738, 15.186496919220817, 13.508785011316368, 9.114996748016898, 12.709993159355685, 14.956262389419246, 14.253339698286245, 10.157743053983896, 16.049909738809077, 15.130498283829338, 15.523091237292318, 10.356462344327326, 15.23809816812874, 11.330745023617004, 11.049648551507195, 22.103599404539306, 11.674647758155956, 13.484484355336338, 15.01130204333617, 32.997577611379455, 11.954520504595243, 13.17941021315302, 39.534159176488174, 8.59227339554151, 12.091840074479592, 12.056466665232202, 14.42181066760994, 15.943060745193225, 18.466387044693672, 11.069009945449917, 13.058195698353607, 13.472132490225198, 10.774630415142294, 12.366607719914692, 10.455104555354309, 12.23419756340435, 7.48414120470061, 16.091609247033162, 10.175516284558674, 14.69123576181834, 12.093351638792122, 15.112249793252522, 19.531017955162206, 15.319556966128426, 3.7249827911464393, 19.913198965778253, 16.870381302697858, 10.605341501707152, 11.536817813767792, 9.416859300467229, 12.590979250019034, 12.732377098813892, 10.030731463260837, 10.687816467867794, 8.296462689028072, 8.213410418390007, 9.674721551921031, 7.999280946592007, 17.604476313489176, 12.088815449900974, 6.08092883303823, 11.693839256916492, 6.6943748728911245, 13.091612570337466, 10.56843434882318, 12.513337112712831, 12.476242386672498, 9.523435486048054, 10.827698794613836, 8.291175062061992, 11.033332322552493, 10.206068279014833, 12.898284370834368, 12.631688037732271, 11.512358484353062, 10.765159703976382, 10.769749382069858, 13.311816588416367, 11.751095069417346, 9.173620058198752, 11.870984034842012, 5.6450942772440245, 7.9563563936584885, 9.502682374771773, 9.313948390429779, 11.354820414579672, 7.985298537016729, 6.816937514187922, 13.215964301079572, 14.191900186654545, 12.844299995630156, 12.207381781989072, 11.246197517540562, 11.37531089529841, 9.34700706788173, 23.024066738816742, 7.734738855048493, 10.290772387476828, 10.079769777810807, 12.090890180353414, 12.460566801307904, 12.043834370364575, 9.980461340332171, 6.756990660819619, 6.905363655557788, 11.59185381856706, 10.032920552970797, 11.611061389016982, 11.3983604256819, 12.565184282951314, 10.256859408876956, 12.873590429540332, 11.086723697802912, 10.809158531809636, 11.045148327427372, 7.369813608611552, 7.051053195926757, 8.135458395609461, 10.639572697152731, 13.485301919710238, 9.548760333394204, 10.30581099895505, 12.922190903081047, 10.803220309105408, 16.85325134803314, 17.13800220543741, 6.012083862102539, 11.100582918470415, 9.136571839037051, 5.232398127108653, 8.302805733393086, 10.04568020333757, 10.947381710244704, 15.45760339531719, 7.687492465739823, 10.6664307735113, 6.346023391641032, 10.041023513495002, 11.522415709711865, 12.534239642302143, 10.947272160320903, 11.840512852870805, 14.816817247976187, 12.855685437244135, 12.010674256171667, 10.479828699587692, 13.189420157455057, 7.059497745305648, 10.261807293453487, 6.79837272124248, 10.623479772054898, 12.973064115971036, 10.572799929545756, 9.856217574585434, 6.1979639427922635, 10.741507625552517, 10.333247079587052, 11.686326195264265, 10.1253952917052, 6.823108753071775, 14.637043805405984, 11.911954603865173, 12.813733133290508, 7.026462843656758, 9.715291958207896, 15.516006815419384, 14.112784070934223, 10.461674553553417, 13.802901228860806, 12.080074128575419, 11.47053235034099, 7.066532677406624, 9.398707832264115, 11.308510978377836, 11.530364981206533, 9.69804719295094, 16.825331274640515, 15.305038069353726, 15.650287478946924, 7.988060089495261, 17.374787480394524, 10.42898820511428, 13.074935233329317, 11.992856113800746, 10.84344588929303, 11.923303820318209, 7.744194294331837, 11.060553689129305, 14.450284342248743, 11.026740836496012, 9.855518345664581, 14.857404071677088, 14.36963457156878, 9.649668646369772, 12.392781624807936, 9.121242768864622, 11.417141121737023, 3.191550072721772, 4.594509017895472, 13.165371255650662, 11.690659353631105, 10.929487854578005, 5.080796200346435, 12.879974039763123, 9.845412636874386, 10.596911752944015, 11.122328482079007, 10.995365767439427, 13.430953671824055, 6.786670331768469, 12.842969372989312, 11.903206776574235, 14.17285853516967, 7.18719092916389, 11.944786094453248, 15.284082207152892, 8.829025870088286, 13.333694589414998, 10.30865218851072, 6.399639422404348, 5.9948365862482245, 10.050911182215529, 10.173958925106318, 7.388338216879066, 13.708583465490667, 10.47996296860632, 13.895579837313875, 13.162186899169312, 31.548279878310943, 7.5544482349657605, 26.77498301548559, 10.245620058562007, 12.203848835066607, 13.666590841889821, 10.334226688506329, 10.834220631785763, 12.664044541758557, 25.08564092973303, 12.168415324572818, 13.108928375276644, 11.40048018574155, 10.794274773534712, 14.286078159800297, 11.659669479152353, 11.795560622384146, 10.798079029363429, 14.553001476685264, 12.980082205649376, 9.088485914638222, 12.535800750528493, 16.667817877597987, 10.844642303488161, 70.73084434594062, 18.952318282364676, 12.10440786416424, 11.865624512865097, 9.344922656777921, 10.178018603424762, 11.794397202387191, 11.630184426200817, 11.467059800459523, 8.221321971862933, 13.886366478445005, 6.362123978618215, 11.936443744489402, 14.500556447218646, 8.65014748024405, 8.470931694724008, 10.38478679736131, 11.788953468876544, 10.865303866387615, 10.66321369246222, 10.420355412124263, 11.835125637284111, 13.93868288568838, 11.250095533249077, 11.801109939504872, 12.428219380209384, 13.033006449261089, 12.455561861126753, 8.056147770832064, 14.61488958741103, 27.045051150245808, 12.738472503168701, 13.212527636379926, 12.018266549407613, 17.706281042792607, 10.714721653501721, 11.853779922072958, 12.983654814244874, 12.197222610757347, 73.8352372360096, 14.804240552037577, 11.825657329086166, 10.417639927051878, 11.979983384832362, 9.184049659490837, 6.404604029931569, 14.009445005426103, 8.625448022835739, 11.088662127255464, 9.723035416269868, 22.484122785293817, 8.854303190031734, 11.859257982497377, 9.430492027016646, 23.12437874211222, 16.65281217155027, 12.592663849152554, 3.6187456353370764, 17.418270669043466, 20.75355927082177, 55.30639518951993, 26.17634367618966, 29.054183219232122, 23.739416472645576, 20.11894834208844, 40.37941032887599, 14.732086975674429, 36.60634989856953, 12.253278559418773, 13.54377453208193, 26.992600319061935, 10.905305437662877, 9.306944959459349, 16.066878700670422, 16.055908204717984, 14.150702535366149, 9.470315861647267, 7.684403808490807, 2.663274129415341, 15.264689630598987, 9.327892945432865, 9.362581219048487, 7.650320870893044, 6.360839127294972, 13.150677379555953, 6.5667373576989805, 9.4153847576422, 9.408878272129062, 9.625936292361743, 11.304733887491272, 12.138583327470343, 7.9310052097206745, 5.437947113730213, 13.360888649790319, 11.710617419156355, 11.184624694005983, 19.424456030248326, 7.494256200476629, 17.583083336522996, 17.626957120625246, 18.995884903337696, 17.69991406508985, 15.670782397063633, 17.551438753749615, 10.221941998418265, 34.174033880343046, 11.681718678864025, 13.377862188657732, 13.429066774724761, 13.596187370965987, 13.241662734843489, 14.186623948544394, 12.585398669722343, 9.763926491893734, 12.334201769435749, 18.523558479538533, 20.381022494716994, 13.258958935307037, 14.233812143858081, 8.216413333607345, 9.50051040976567, 12.278350051725928, 20.64361622389478, 12.109850100253835, 9.687013142187524, 16.745623235162526, 14.624784737106996, 32.023672486136505, 16.923047237143855, 17.866914428406297, 13.13526462106529, 12.769903425564054, 15.651018708798544, 14.746046309401468, 13.89700364814437, 28.08743290489485, 25.53248085826132, 7.69450674471469, 10.3923512417056, 35.35676083875868, 11.55245488105168, 8.396959469470684, 10.009999117092175, 29.62820188450181, 11.599403913302917, 10.734315218229622, 11.276963843064173, 11.079426036439195, 6.038604047370173, 20.025992086173204, 11.392869391057026, 18.32641549932807, 9.01917574958004, 13.05379453726952, 10.905150381043104, 14.053332706277581, 56.42267551878474, 77.58285799326126, 77.94890785951472, 84.21986494007082, 55.137075818221284, 32.756708719028566, 95.89455348770302, 51.89093009873326, 34.730144963555716, 64.67452630450683, 18.504087865429533, 6.838189154752645, 17.496999040834766, 10.737414590420757, 10.030727674919437, 14.605417246847313, 9.937144535742311, 5.907137728000145, 19.56152965282729, 14.629485883294926, 11.66485026842692, 7.962520794264213, 8.505290600308683, 12.353591502462013, 12.534847991193498, 10.907488307349812, 9.29598568186092, 10.630602251928554, 10.928552884447111, 12.086626941769927, 13.149629716257875, 14.510378540362563, 13.198462223095145, 4.3730413424170855, 18.620496570594867, 7.13126580775181, 10.076872326889475, 13.123295629266957, 12.225836561817285, 11.843382194529902, 13.364924660362794, 12.04680427074188, 19.76001949030031, 14.34789093035771, 7.560136510316256, 9.601532645531957, 12.91591377800308, 8.578554393065327, 14.420153808112513, 10.001430989923845, 14.930105153478484, 22.061475772249768, 16.6098620004007, 4.048764301248496, 11.50875228079512, 10.537543610002528, 7.5250487338531435, 10.260427633210586, 13.46540680632253, 11.337185998871858, 9.778873791116963, 30.684550456950774, 18.274019621017896, 28.047121302036746, 12.648746694429585, 11.880026014262956, 11.875722674424527, 10.643877533482758, 12.514435524654315, 28.942864591496757, 11.222348470157295, 11.166083706314852, 10.497465030880427, 14.511720383220156, 13.014152776056017, 8.584581898955879, 9.161516660072408, 13.36470136859185, 11.835757296102274, 8.866630621166626, 11.061888325886043, 16.836357101109595, 22.035823979535426, 8.615569892626045, 11.566203778218798, 9.657389524243964, 11.586367394829812, 33.11023986561629, 39.165851531002566, 60.43039480943892, 62.39250621600619, 40.286343542266906, 37.57292610779602, 79.57606680353817, 66.64486634986476, 58.31295789642516, 56.07663547794544, 6.558156071035319, 13.461903137041835, 21.843748778016014, 9.406962829504932, 12.844430184530117, 10.18410754780356, 18.049678450163192, 7.934383658775452, 8.108475223293402, 8.110973604151996, 10.492091812200108, 12.230279460552467, 7.65547547354888, 15.221995833541015, 8.836890437870066, 8.996178966292392, 13.857012244502096, 17.006897856935137, 14.734470965461025, 13.101233100799499, 17.20149347515657, 9.793071945991029, 8.30004057024527, 12.391291930834495, 7.45243312866137, 11.906725251823415, 11.41626389405801, 12.809834761166634, 10.212323704053533, 14.75486535337448, 22.781924158308804, 12.929331163384559, 10.353757511222897, 10.356836197706167, 9.847968095489373, 9.415269635422433, 10.563888649315707, 9.562345302037638, 9.410262245904523, 11.374622482598909, 17.07684106153565, 11.727710368225797, 10.246765313127142, 9.661962767581578, 9.18006426385904, 9.110688372822619, 15.364120720131908, 10.040495092914048, 9.683428700124837, 17.89060821824901, 9.750084343188925, 18.304078377997147, 17.564335234521028, 17.536769382733205, 10.592147794367126, 11.417389287828792, 13.822728784431918, 12.349548607859152, 19.105613286620645, 9.481338078167074, 10.209356277888443, 4.007882436344813, 6.19329126384511, 11.535843040129802, 11.976773184884655, 10.358022865292604, 8.646825112649417, 20.2327892078267, 18.766048411019685, 13.052230609636176, 11.558094905240548, 18.835189422322646, 10.260846441983652, 8.54355244852529, 27.066113487683353, 41.94060975898352, 58.141469497751466, 19.77779438391957, 36.25557117779881, 45.4410632322259, 29.619101864335452, 11.339899584969725, 56.51876981498034, 34.87787167858912, 6.385383157483795, 9.02379920350647, 12.234259938977432, 10.175925073159336, 14.679910620834885, 9.357518983404823, 8.583411678664627, 45.94609123783852, 10.624874723043835, 6.881215026526633, 10.294921837985017, 12.349795343596146, 17.104786552079077, 13.073479674226009, 11.990901609060806, 7.901794269126212, 12.772355142025713, 12.497689407377496, 21.90941716666487, 9.312829138581328, 14.719902577461799, 7.576096905461963, 12.71932846493062, 11.673291012650886, 14.285685230447227, 10.713006987654587, 20.39049336018465, 9.89004830058143, 6.696156637034799, 8.538875159030905, 9.656779557189237, 5.060901460189029, 2.7281547872486422, 8.841534213531, 11.417284214032811, 19.83015945285726, 7.6772460396321245, 25.726930575994725, 2.7870120177696607, 9.704362100583523, 14.580383365589746, 5.974754591246528, 7.677047184551606, 12.636566835850708, 26.508951919315905, 6.708065413384838, 10.631286592365033, 10.452019983198584, 14.058126054102877, 6.096115281036857, 12.323741643034111, 13.75801323680571, 15.95634492590089, 11.394992221142221, 14.376784261873317, 25.302544602338507, 11.767667828552755, 16.47342421252638, 5.186771579638392, 9.261137607420238, 11.559561700468059, 14.839164854063224, 12.997987028916597, 14.217381727093413, 14.563766284292646, 15.575092937770659, 10.42234507803771, 11.981550332501227, 8.3709041756722, 8.746854872414907, 13.362456593730377, 13.989799366370569, 8.62588712398712, 12.828050325918955, 11.120596449440189, 10.216331171968879, 28.302295379274007, 15.932284560517457, 14.654875250892902, 8.748864318497038, 10.23130182066046, 8.38367719005431, 9.270893507091412, 5.170307724057697, 9.289281463595179, 7.492036195427399, 14.800359525289796, 14.610178330722318, 10.268251723948715, 16.269597700164063, 13.244537923393187, 11.167592046465465, 13.71149737576866, 12.164976124122711, 13.130570678556722, 10.540043073971711, 17.261616840588136, 27.022343466957377, 13.85625880411933, 4.391487163162576, 10.884875152181873, 4.332980958726724, 15.058069440101523, 10.228308585485266, 12.602519073541098, 12.37821368334847, 12.720643509433405, 10.49225216912749, 9.58182907466859, 16.723216781002293, 12.793854175936062, 10.023177908743802, 14.64371915643027, 19.695757505145767, 14.096395086371437, 10.908168698846186, 10.141582321764904, 8.684606901774757, 12.213120268169904, 13.97183461830055, 8.29311596784853, 7.0543411484241565, 11.102991309450067, 11.663322590807883, 12.150163133409423, 9.39221784941638, 17.776777008973134, 8.473343758876561, 11.653176015968148, 12.625944859432575, 7.716357849527299, 9.115783790709795, 10.676382128703647, 13.659688443310507, 12.35546868940027, 30.23040630782339, 20.011199152370565, 14.457059829447699, 12.869910904063858, 18.257520927033106, 7.706620309118001, 14.83150279849854, 11.922015262580139, 8.912988512954986, 9.710157987998452, 13.558789239407362, 18.242769436601364, 10.088683040505886, 12.200969298325383, 11.514707361033285, 28.517917604703975, 8.76393523252519, 10.765051419405822, 7.756477578018852, 9.097419444880261, 13.779461029035527, 10.095549725084473, 16.628145928086795, 22.964635535539422, 6.51009548881917, 23.4163804311948, 5.806011697483598, 13.880306944800605, 8.099014924792305, 8.589741533277332, 18.88069917105412, 14.087772585241026, 14.26032658348239, 14.003329971873187, 10.574197350281494, 10.603569906988067, 17.5062653877352, 11.183448008732636, 14.561362049053049, 12.452608148492914, 11.651202452194047, 25.486989131339666, 12.588338408281057, 12.076198608867843, 11.437835941277505, 31.214189080364072, 10.905991521197961, 8.13523536273521, 11.70793493384916, 11.837279068609162, 2.8132985614827484, 16.798420251767883, 11.883685434670467, 11.190616339531477, 11.256103368498245, 12.26161590229989, 10.621091745236974, 28.771121783084485, 11.467329238955136, 14.111433721310954, 14.79570312668061, 11.617235314436167, 12.606904465338422, 27.782303533590394, 13.937532474725929, 13.385502374566952, 9.708864876531223, 9.751705736104054, 10.268802945615933, 17.414931967606176, 12.249433008708955, 10.176328109884606, 8.264235685081966, 9.089344274539553, 10.248528664675236, 10.58711953890015, 12.65768790734909, 13.247528077698247, 13.254672024930272, 16.250516703023667, 12.929606867329378, 12.304275303928705, 12.633060666108777, 7.91844959272185, 9.331625962583061, 12.865101902770332, 22.512579533525457, 12.822541298122392, 19.20010163977224, 11.85706013716997, 20.174113657648682, 28.01137635975135, 72.75228652635151, 45.032026893325494, 20.48643715772246, 64.16067227743876, 11.82380067366904, 32.96776648351649, 23.034599294212942, 35.257635830140316, 24.845409127987637, 51.178800345701305, 25.792007045627656, 28.178484910985635, 45.1305146227955, 36.254404864566624, 43.66012623211885, 28.249054911742775, 28.16542172806589, 16.765827694210685, 9.796997890947496, 40.00092456659836, 12.159014710091377, 30.543472488855667, 32.64834979640242, 38.527637065042235, 45.086219562042686, 40.83571324564991, 36.42297572601154, 28.104945672382758, 14.551032583779104, 22.897000415395116, 22.634500839692656, 27.79263327026806, 28.07707077640319, 3.7211879511124764, 39.979713507093734, 36.94327246381291, 64.98579357484621, 31.53065299515301, 35.27054492470197, 53.020953697144776, 12.691661466412485, 43.92341370634869, 76.34292419275809, 27.343418707555752, 10.506128621496089, 18.968294597087716, 32.2455216501335, 23.486701801146268, 36.31938706403974, 24.093029854609, 24.141293696783094, 21.371591406158952, 25.06843896924332, 38.30787417919771, 27.48496962267607, 31.083655000650953, 18.758278798282895, 33.752195295610896, 34.478184010996195, 49.45277874379842, 32.76498655687914, 16.694964409822916, 22.63342085565513, 23.1838541875661, 36.70683237761264, 25.89669695671172, 37.4078913235887, 23.373430100944802, 10.458033722256644, 29.219873231826316, 8.660619241992181, 17.969325769575775, 25.33296826218419, 40.86323389978613, 49.749365204107875, 33.25923161261111, 26.573365694065057, 10.40662638092901, 31.637350396235462, 6.838191283132069, 20.873014832787742, 28.40566997485914, 10.212593695730785, 25.512317012626475, 27.54363785524799, 17.622584276258703, 12.917768168209506, 12.453989373954485, 24.491040297731534, 21.805654691616873, 18.4762844843624, 29.050806839015827, 9.495643626694461, 16.86453829641452, 23.13840680174196, 34.59019729303867, 21.649897933682272, 48.139071123321116, 31.690662088655337, 23.362587156094826, 24.39715529129207, 11.62099675869275, 19.952551718990026, 20.285151363688055, 24.5427481237983, 22.926783379293393, 29.443942004623125, 25.764279424134372, 26.66372868055172, 7.900059782005432, 24.368597486933357, 13.73929746430516, 18.172639048043457, 29.078695815063835, 16.569503511600487, 18.64777683874269, 25.1387345959596, 4.756348924573864, 23.7981285330167, 23.118509366622366, 16.423573715757925, 20.457876778, 3.7215879277021093, 16.764947453718488, 20.513414366846142, 18.129644813839192, 38.182368918662995, 20.707694278416803, 22.860826658678445, 26.39980811206215, 20.791546896822986, 13.678786301501924, 47.214887232349696, 20.187555593013794, 18.186555546520346, 14.123836989271075, 14.635870736841708, 31.350497156161904, 13.62613614769274, 21.356313030130057, 14.700854297554507, 21.841796897546896, 18.063193764275344, 14.133651101650322, 12.226859160206464, 21.098122067073465, 11.016432369102422, 24.367140723486557, 25.991083099992533, 21.801809271954387, 17.393796801272348, 22.552603996321626, 17.909180960890012, 16.542584450207503, 23.828579784120937, 30.90698410572629, 39.23439441684049, 14.249330165199678, 21.635502952402923, 4.552205083294836, 12.757751104011035, 16.253790053244792, 21.100535282138544, 13.988215516958768, 58.04203260827195, 23.01650650961526, 39.76601484554029, 35.571760743684656, 33.26302306547031, 32.69488311787748, 47.542448996437, 27.68685997397319, 25.028880387242623, 15.588908350957173, 22.956750977651524, 18.052713764761968, 14.401311654643498, 15.42356137007987, 11.948701911461477, 47.43999436485612, 7.286817951213946, 15.96650499410365, 14.50836016420028, 19.22921654490154, 16.678737948178245, 11.873332204157952, 16.500361480003928, 17.368917610751815, 17.643089587098483, 11.271634634699538, 18.67309869929692, 12.691157063943189, 19.291752215045403, 11.701615226069798, 14.261164104510646, 25.04688701668466, 16.91044155191214, 11.403626263207242, 32.13190943635566, 24.26852290276015, 23.875309797017394, 17.03190284804167, 8.85756584125925, 22.67728267055865, 14.492771461992113, 19.655134306738855, 18.800849963402783, 11.294548644472055, 11.904251549445346, 25.609800296680454, 15.680753810953515, 7.197338261051189, 14.374415249430363, 15.454018962836843, 7.470879229789457, 13.022587952963256, 8.309133421448859, 14.232314504166277, 18.243114962456218, 20.172676327188896, 15.241852344384855, 11.471846661492993, 13.07229519826765, 13.21298539555471, 19.9503468214605, 14.474025753317317, 15.939636382045078, 11.363371235563243, 15.734884934953998, 15.822269628191775, 12.096276030879162, 12.29040400883086, 13.99933177596053, 12.617256459328276, 9.488051840340242, 14.66576265512512, 11.790758615343318, 12.342839414730436, 7.520249003204471, 9.594852307350441, 6.821249057187096, 15.835496880474802, 9.932317098593455, 5.96265381154417, 13.660439094829412, 11.394232886953661, 14.306792600273008, 11.03026843961888, 8.137799785949753, 10.67381441017702, 8.317522932046888, 14.88616286486968, 9.837916183797352, 13.571310261118306, 11.18995106720204, 10.545102052887627, 12.729194882937668, 10.120639332655939, 8.700561286309535, 8.176702363410492, 11.710816183275167, 8.782680557294364, 11.413339459910475, 10.332146360406336, 11.554832656878233, 6.505557029739948, 14.656186592046637, 11.461846008913989, 9.717407751903362, 11.324858899872813, 11.734768424968745, 11.227497767073736, 16.50052473432551, 2.545608407194744, 2.903808608877192, 10.552978432993097, 15.278508200404014, 15.819178668417457, 9.262003204126035, 12.173384855176385, 18.904675864048112, 16.20473209911726, 10.744579576643153, 12.922523670161555, 11.49294572402532, 15.069032229358534, 12.87638783044393, 13.846179583152598, 27.952259297638953, 24.36362136382692, 17.550548395277037, 10.637081785848933, 9.741136032067942, 9.556100466874591, 11.325300971987396, 13.42714050207929, 26.00440469149077, 13.901607647602216, 9.38358598547662, 10.53223244761764, 17.679742602985254, 11.58249275417444, 10.148389923616946, 9.553155675849757, 11.2632123296389, 10.333926934970767, 16.17000955965894, 9.893834554675344, 4.5478849606723974, 11.860125539780434, 17.389540525724353, 9.571240839386492, 12.269606839883924, 15.537976782115528, 13.440035780559304, 10.565921237032441, 7.105071413566564, 13.163841576357292, 9.693465688681703, 25.26505030316882, 9.734921976116562, 7.225919344101436, 12.014167076258545, 10.276661296714119, 11.704273090637221, 15.519608777585729, 17.95300631557984, 32.83043296803212, 35.72466470340313, 14.280739355834191, 14.068456515243223, 16.45466092063477, 22.281483298530187, 10.77886812915501, 12.787351967296447, 6.435987628473632, 12.796748867352306, 12.092645454887984, 15.132564253204352, 10.965199937377612, 9.740995386222748, 14.151903765141482, 21.526878533794253, 14.29791631208339, 10.782240511875338, 13.188632516364706, 14.51690685110667, 11.766027791072935, 30.01897120739672, 18.158184672942113, 27.48001910092443, 18.2409766643554, 13.239864083270191, 27.895589792574064, 24.839403777702074, 33.971833424955676, 27.300196076527136, 45.840581046834146, 29.006404771482256, 9.4681279587042, 13.611002742075527, 12.893543813460514, 12.674501506260581, 10.251271684834656, 20.292947808276907, 13.610952511200454, 9.096988636184008, 22.265631351009777, 20.78742455910489, 14.476657494585297, 9.3447131402837, 10.642864488233752, 7.794475253867879, 16.33673902615945, 11.152166445834128, 19.722756224546, 11.03327510206723, 18.273977693984968, 18.800154088241012, 8.90079855546027, 9.477957605044066, 14.290785413829758, 16.48283201382849, 14.721994475696867, 7.02978969974733, 6.2265142029508365, 14.451873772469112, 9.778261330880538, 17.69072851385837, 11.369866724816564, 36.42691622010065, 8.894075118826821, 16.89244721359427, 10.952533822026522, 6.402257339460115, 8.608997107035298, 11.981627959075196, 7.100422208381357, 17.79687097120255, 13.757463537148483, 16.307922106831935, 13.77593213708134, 8.644577855787698, 9.019724882043421, 16.22392282104338, 34.619996480806755, 13.562584220060671, 18.929562655780423, 11.045116415879276, 7.689673001634925, 20.33245434469498, 10.829464262662494, 10.106039855563761, 22.226196634151062, 13.284653488410054, 10.489466915609057, 10.748193607549574, 12.652480360060503, 11.042158353203268, 11.148791068326537, 12.616685951242845, 23.245110721016538, 19.069938653940227, 10.409700765804393, 8.711435291432096, 12.89244033177608, 31.747273030444674, 16.22088010845364, 15.112277838720999, 12.674488319550818, 6.8662006184034166, 22.98325019450063, 15.002797594667534, 11.887385043108823, 14.398561151052242, 16.10352627147958, 16.232380007403265, 13.262658829331166, 11.585669528755556, 3.255208202820832, 16.74322936670948, 13.202242743360895, 35.725606875451696, 9.725204964079397, 13.059310405450201, 21.39761336106347, 13.460557766809117, 8.545339622473087, 14.390719589129962, 21.84563359658059, 14.049529073552671, 7.758324815249341, 31.742438910142084, 19.185352879079016, 10.127979301741089, 14.656519397020421, 6.600699311404251, 18.46182740870242, 20.548142185650544, 13.80109706757445, 8.397051025106032, 17.29962912567022, 10.900772608032677, 13.494407089100003, 26.24838330037267, 17.19976698941014, 19.685424627264855, 16.165688878339466, 9.30437302166283, 10.616489363484932, 10.214685610982908, 13.191148678218806, 6.8747811032425625, 12.245877295032951, 15.392141481987972, 9.047328744943984, 13.295456045304508, 10.267286428319697, 10.715716365977247, 9.268524662297658, 11.719762572139844, 11.610430583182906, 6.502381446073707, 9.946126467944989, 12.439490855379347, 7.399907596157317, 8.262206150497166, 8.793800595179881, 8.45974939144744, 10.265181303599523, 11.95633553122779, 8.094079112300975, 10.020148057081936, 9.786976268932996, 13.676412330734847, 5.1238067360601045, 11.405860362344377, 8.65016438239409, 9.69085517063138, 9.31114351338737, 12.573732129945741, 11.898482549243765, 15.096058932889566, 11.078177451600745, 11.88560321965616, 10.513932605827712, 7.531399847265331, 15.385420824166504, 12.54651964709622, 12.204469365933043, 10.978638519403509, 11.891607009168482, 11.5507815723854, 11.438961178996147, 9.821551397906372, 18.20021135077214, 10.23266920280117, 8.660102168157351, 8.675847079894762, 9.927622355269431, 10.601133487625075, 10.254503249091771, 10.800147062944328, 11.011253731081549, 13.049467016508714, 9.336150505319916, 8.935451020607521, 11.258025983107018, 10.124257435966449, 7.339546927401461, 12.347715197845378, 13.587149155934394, 13.527166953052848, 17.63865212754659, 52.82147146072881, 21.499591662030745, 25.76800716906466, 12.607551029537337, 42.48569428759335, 39.03952314287021, 24.197087665000975, 56.210097955271294, 23.678648831854964, 11.370387387743529, 18.09192342462562, 8.43415849897703, 11.075779424331886, 7.073851132191571, 9.236024440650649, 8.11682929512134, 7.727091916173494, 4.560536035836654, 10.235038637584216, 10.626049644174099, 8.848214070215274, 9.549763271511356, 6.841463454087738, 10.365529773277434, 10.134866378206308, 10.807759442590658, 12.382414034291292, 8.442656728458719, 5.380530788891356, 9.765347305777125, 10.40539063812864, 9.574018053676607, 8.86031917796134, 10.395413370203924, 9.16106150741382, 6.706565377627459, 7.219846332323156, 9.182833264815631, 7.139687386629083, 8.421476306241248, 6.524110617572536, 12.258923471695145, 11.506012168434482, 7.418587631166522, 14.905914892810426, 10.136964597823653, 12.133782629401846, 11.156885002493174, 9.346940866494753, 7.753110805256067, 8.880225278074148, 10.352067090767028, 11.928716904163341, 11.294212180208095, 12.871625197987782, 11.60859002061693, 12.389288931132633, 11.806507051285916, 9.545016262633096, 11.956275866209827, 12.827488368468478, 9.041732506803482, 17.952084619137135, 10.823436307001813, 8.9237720083688, 12.61283758993334, 9.61586079828476, 8.27287748911005, 4.419138790925622, 9.431759040383687, 9.079111700152554, 11.722822042603624, 4.786580810972072, 9.515079517848264, 12.99630896301873, 8.742778208231512, 6.10325306120872, 3.800277912653749, 12.122895053765166, 12.06804842563097, 9.504238814732387, 14.021685388053486, 57.67359274344608, 52.61056548982081, 46.68964047248674, 33.77510578629374, 38.61379577542763, 13.91840075374587, 31.755275427829673, 24.62837056006286, 14.033183878783184, 34.911189137260834, 10.286980116062994, 11.516582232082634, 11.176926899799486, 9.213845728651638, 11.331463086127911, 15.708039374351975, 9.125478545095898, 12.379058656683158, 10.24073012221085, 10.583584989048925, 11.337818693342088, 12.248834095339474, 8.370486710136262, 9.793794506314624, 14.42750662368444, 8.753357109924677, 8.095709493980882, 14.893001472227317, 9.097387355240908, 15.861600778532225, 6.705936479950124, 17.63968965327276, 10.04822776029361, 10.830653832754328, 5.686623246923908, 9.741432046504327, 9.06531017850273, 10.548839340915215, 11.111153361333866, 15.431047837469098, 5.71479190335123, 10.969092635659548, 10.731256876035898, 10.3552826520183, 14.711001195461748, 16.214392226481625, 12.531088144472925, 7.696086905989856, 9.27865292838318, 17.82383098150883, 10.555710408335758, 6.3054853151835895, 9.465596995088557, 11.96821714771038, 12.795822830033742, 13.75443081996625, 8.458330909549353, 11.015302786810143, 9.107970967079513, 10.840365672529801, 6.370153358534181, 10.14857341046995, 12.92198490056572, 6.575126962640041, 15.21709874127384, 11.091338368976896, 9.532970967009106, 9.16637274986322, 7.351905684972694, 10.74370562572203, 7.4631079072080295, 11.95492709012391, 12.811099751987147, 7.935432328959951, 11.687278112752116, 9.898910670496656, 14.558744899346417, 12.04906257370581, 10.840158896050983, 10.110427990747835, 7.436916294366209, 12.813776685227896, 8.69949340864728, 8.94496751168184, 8.9786441764281, 20.114959838865285, 8.59325069365027, 10.574784052165626, 4.0397779113538235, 3.76482419902674, 7.536637025623102, 10.935384362575515, 13.393498780423766, 22.104991172286628, 4.840821399220493, 11.994330644008391, 11.08519924700852, 7.375674049736529, 10.876405191223713, 14.45148536146782, 8.984494582233374, 27.920362672699735, 13.258187487102335, 9.720866158178874, 12.356330008901306, 12.294149150650245, 12.81761497842866, 10.859929687043296, 5.31746179732396, 11.058074321507522, 5.507730210326564, 22.23560541659924, 15.647901463850673, 11.077562278254456, 11.708374143018911, 9.494887403810333, 12.243111344878585, 9.264721899927784, 9.081535778634851, 10.013902196054971, 18.358016728057525, 15.611166038759638, 15.933184334973914, 20.603694864586288, 15.73881620163669, 16.399513310487198, 19.129300948148856, 18.938310311152435, 24.010954514694983, 21.90880330892018, 10.965098404519527, 8.545643320099964, 9.253986724984449, 10.408684747022035, 7.976037401447404, 24.22951445937104, 16.226989927226768, 5.642493717531182, 12.783289198354959, 14.949294967833325, 11.621883985101947, 9.528443745185392, 15.061858610821353, 6.283449585791832, 10.187587026731125, 11.822928969731718, 6.662580287430922, 20.05760794613825, 53.753962047354804, 32.08074731433595, 36.741477597626776, 68.82694646406225, 42.61316420095678, 29.698833426489585, 56.14692627867303, 30.48708550701478, 51.9502402816948, 18.802511442900496, 12.303451033386406, 13.9300946968505, 2.6842365027742567, 11.876640835027043, 14.378549923244966, 8.982923344162167, 8.818197308966546, 9.428760764387487, 11.005744130662887, 11.399798068360376, 13.569115365413744, 8.148472104028553, 9.68519189205333, 11.484465472328274, 13.810847128917777, 12.999582614083748, 10.848800546794452, 13.225451275654846, 8.247094207940474, 14.986445591164944, 22.593072379715327, 12.330467220647382, 9.646983477726925, 15.138307313818617, 8.757077891377886, 14.129513274135562, 16.98646354662638, 15.234955627952065, 7.519420591326968, 11.471317778025208, 8.360455087913122, 15.419644891336498, 11.7796996541485, 8.505277600655514, 25.70110744962719, 16.959197379914837, 18.402714686032642, 28.63882071656414, 12.437399384353176, 12.756234130044884, 11.048216801617345, 6.950438374436748, 17.069961136483496, 14.878507488680324, 30.758311397599698, 7.2430927778426275, 12.891023236741058, 9.477434787814879, 17.349913175932443, 9.011204008217028, 13.38126469915948, 13.792561428626579, 17.172609538544236, 13.186652082057295, 10.28116262410954, 7.937115995835888, 13.736515435027503, 3.899177206467713, 12.688186558797236, 12.087173320971969, 10.169230436495644, 16.802565171090325, 13.595995073835915, 15.12530027919996, 15.416512285758005, 13.639098173030842, 15.550818303359236, 11.021214338067406, 13.915917315101785, 21.69825176180342, 15.195761991525847, 15.725610803871788, 13.527891398113512, 6.029305362061817, 10.111993517736149, 10.395940637870156, 10.504676731819787, 23.20779778893701, 13.29518399727208, 13.909280618074735, 6.52481183350644, 11.869921375525307, 15.897877469785724, 7.22345542857555, 13.89979992928505, 13.931606013716392, 38.107276635945766, 43.13717553011335, 27.934818620412013, 14.32461271546937, 38.64176773173793, 66.91734434519728, 19.132949135659658, 30.691496778802243, 62.327965177857145, 58.1338151335997, 13.22273255473087, 9.617659444456494, 11.992787035290133, 7.871400046812829, 10.750650377390386, 8.648806756130996, 11.31276301569398, 17.542966095110447, 12.420153366632372, 14.339080125949907, 23.94614829650788, 17.425612966554134, 13.374994808309019, 11.310852307482447, 12.035280385976082, 17.234684561592562, 10.673615414770849, 18.512718577156704, 11.064547913526473, 14.096299834690848, 12.017436895703787, 19.82526212283656, 11.023760443881756, 7.631549976746079, 13.585065776614696, 16.00118411194069, 17.070486422093346, 10.84975805149098, 11.377975233306215, 16.535515801692277, 12.296204615277675, 14.979789363243277, 14.89287955712495, 12.601928225278446, 21.031449350712922, 14.724155715980517, 11.92717857917013, 5.9456592946064415, 15.02651547876128, 12.314609678986304, 11.15232485940027, 10.823499311787108, 7.460328379873497, 10.548874775634681, 6.601153273614682, 18.50620535445306, 5.5033755049500535, 12.907334616463274, 13.178811034221424, 8.599537751968484, 6.0912488240162785, 18.712422726078742, 12.983504280480819, 9.185412847399023, 14.267522470800445, 13.667372344689186, 10.823948643272793, 12.762919602795284, 8.238656451636215, 6.32022871186125, 11.469099216730406, 14.24558420295616, 13.044823178825327, 13.783508540304934, 7.758367227044184, 11.415361345482856, 11.799188563993113, 11.7660436109764, 5.7612113979781405, 8.326835858293165, 16.334334666780425, 8.81701372350006, 17.599910422796203, 11.572547103395038, 9.118814194719125, 13.299131271784972, 10.391622667291001, 16.813836750148756, 8.961281606499904, 13.445950505375588, 12.909743129762672, 10.31381424702765, 8.241551897128165, 12.042377965789095, 8.233659949067286, 9.775429452623909, 11.155592708686408, 8.699175323694528, 10.552360262570248, 11.17835330918222, 9.029723551726194, 13.906174121133201, 13.283129620517075, 20.258018009303395, 6.581489337112876, 12.629705199707342, 11.256867552266334, 14.37252060140918, 22.100549065697642, 12.126498341356681, 10.170924763223896, 9.26175383706184, 9.810951200555703, 10.173771198183701, 11.906641404138426, 4.7664277604566445, 9.703229328233208, 14.113444114021515, 9.992024672919019, 12.624798970113416, 36.46518074382991, 13.898586790486856, 12.991306549142772, 11.006559991154315, 6.013849424826678, 17.831241531834767, 12.339280277592772, 13.086082594205426, 13.362705602956407, 3.395961968205812, 8.353412954020872, 10.90935296335981, 14.7710526033564, 10.983623620646016, 15.353140632551117, 10.354032278088079, 18.003192364988088, 28.79312128302699, 13.6960633178202, 14.696594466320603, 14.233525024848355, 12.249944723423715, 10.734050917643193, 11.327928968227937, 10.667503917053384, 12.549667009282793, 12.372315378813564, 27.440295033060043, 12.924223037805449, 13.444061668500066, 5.620829115982053, 11.288560882143996, 6.1864803959229855, 14.170578158536054, 13.345392173513298, 12.170284872262318, 26.963142310734632, 10.682225597371534, 9.411073694116336, 14.355439563381346, 13.749279541298392, 10.174399414789182, 9.810807736075624, 14.099190459215176, 17.3233282296928, 5.9124130985361045, 11.393592172533344, 7.669578650220351, 13.30501316424838, 13.305274568159163, 17.476857326637756, 30.15179283431069, 11.412623776729397, 31.988870782518774, 9.252483141705936, 10.641986470477526, 12.00469124297278, 13.843558532132295, 11.54070297466091, 13.748271576471394, 10.476507985956108, 28.290582082242445, 13.220695947731047, 13.059646914763013, 7.8789031007649095, 12.368236276969522, 7.673312651591155, 10.577664172921583, 13.665149251685888, 11.723103634135645, 11.715994961014191, 10.129627569316389, 11.529854479199397, 11.215958582146476, 9.19774284148458, 13.934050977855884, 16.74096447615851, 12.620461111570336, 12.851955780005795, 12.67001999536042, 15.515850416093848, 9.978192506015983, 5.921950252174611, 10.573348680353659, 6.953017850220453, 8.498288260342328, 10.763861427149694, 6.469920264054964, 4.505783414548222, 7.468066767446853, 13.554935457763335, 10.364762139271077, 12.160903633276991, 11.282884400102825, 41.34071986920479, 12.79258595821602, 8.574203470876416, 5.172847055099672, 9.30402769798896, 9.365201029793727, 8.554840209807532, 8.031894039245143, 8.116411846509816, 12.254385788873662, 10.013259185884031, 7.589799553867602, 7.627761156843046, 9.668336976658768, 9.805396923020592, 7.020664174424039, 12.870138509151671, 12.281264982970995, 19.463750559222383, 12.530683459428426, 8.466070968726179, 8.299918011968883, 12.517275602646812, 12.5331075286083, 16.23196960568671, 5.841430814283751, 7.97062143803321, 14.15909222971757, 10.729317216940238, 15.163861621642681, 15.961125440308594, 8.997717286035055, 14.056479078490844, 10.96199402950613, 11.622558747469983, 13.111928052379408, 7.088853337807996, 18.333124129203707, 12.97578721946119, 22.906089280385988, 14.442119886088994, 10.247296405083393, 12.582819036587773, 13.498036322607986, 10.319883522266569, 30.81955645041232, 11.40339501790877, 14.25009387326192, 17.263274034980554, 9.99221083335503, 23.10465822494498, 19.774416176375983, 11.123379508680774, 7.866785016634549, 6.705330207611499, 12.890067245255674, 12.11573403696407, 12.326839795448507, 12.59864288026561, 13.062599039087273, 10.092852412582133, 10.618490293576459, 7.29611735248893, 14.128148367921172, 14.268891553347357, 14.223507063014164, 7.8997875587862385, 9.406804950997849, 12.179762863630136, 18.96035466801431, 7.9250274929397415, 13.504342962330051, 13.114064438077737, 13.535455241736818, 3.7273089233800767, 12.124558786887347, 11.561825524397976, 14.988404930816344, 13.789277674372187, 16.884628484369664, 14.679445850188113, 10.53051678423307, 16.700493785706392, 15.395719249383873, 14.204380676521442, 19.58139651100038, 16.791778143684912, 15.62594009933893, 10.273260498991057, 30.287241410507278, 12.241953998250366, 14.597508050499618, 16.9354211409336, 14.629449513449515, 14.055638952908025, 14.556951324015406, 8.21966065030275, 10.521791665934922, 25.768031931518003, 13.25071846269672, 12.263757339856012, 14.586982718435346, 15.407554960838715, 11.944379198159519, 21.750738404362128, 13.558420634900319, 20.17159238682211, 14.449557227798607, 7.839266504509303, 12.883931887163667, 18.82465223462495, 8.28403927540317, 26.435516109868466, 36.27231183067021, 11.39687687471159, 13.310057176595338, 12.369746079347978, 15.573144057028058, 4.828938003644176, 19.350299391484754, 14.2012391370537, 13.97202657897658, 38.88900059907412, 15.14236117375466, 17.426984166255135, 14.458349168687219, 12.129949810591965, 15.072755369112368, 14.814796962353073, 15.514916310668116, 17.676816949026232, 13.47744943881368, 17.959100310637076, 13.276388294598544, 20.598075461977636, 11.87144955679099, 17.683786093635455, 8.48432129150129, 12.516389805990393, 11.327288358617942, 15.547580031208899, 11.835311159707103, 17.51568642207466, 10.889771361810322, 18.271534893886567, 20.770522965113877, 8.314743641822336, 14.952624920697962, 15.51153835685112, 15.445074619824616, 9.486502450577275, 14.428812691454205, 12.393509071647868, 13.952957880773784, 11.296824184540034, 7.832753490828189, 53.09692799300481, 9.84152321102608, 13.097377470059294, 15.489610480391695, 12.8538291618867, 13.56663622568094, 21.102101839577326, 6.764404069354066, 12.593230999041632, 30.32784872475195, 7.995309523051268, 37.66944501308383, 14.285353675093063, 17.242064924253754, 10.944025427695202, 7.0797659562396795, 11.619705297693491, 14.198332250676964, 15.490171065812126, 10.119427787022971, 9.222651562782488, 14.148852634895198, 35.805234485285965, 19.589719964391957, 13.582326252003636, 19.604287010375252, 18.85195503754502, 20.315990755331693, 16.57080311350493, 19.87503226103961, 11.972909592226472, 16.735855055143276, 8.227034572886733, 15.383936564919752, 15.545518459266393, 21.131727710273843, 9.365381200140256, 13.203296649023017, 11.002574617181848, 14.76117865236536, 15.321145893448746, 52.57403826259751, 34.46243919862464, 15.715954103853885, 17.472665305481943, 30.16563832490179, 20.65743540649312, 15.970251199780607, 6.269772384284832, 10.733561465563042, 17.405006681808157, 12.55861658148551, 17.64502456419681, 20.034634885338843, 16.37193069204225, 7.472633479517293, 10.06182297501584, 11.145928239614841, 20.240756798419078, 16.13646641718275, 15.633216211520883, 10.28814969327366, 6.590054578505168, 14.61890526673782, 14.009813253250377, 13.278080624821555, 13.973220585228322, 3.164642659095288, 12.332991995620473, 17.413621340729836, 12.451544063190614, 6.35572928078531, 14.818515328854733, 15.724172662279127, 15.64382649526847, 18.621131129911294, 8.089502206428735, 18.648686165615956, 16.938312559974715, 12.723322491741147, 15.753311302808283, 13.37186969393982, 8.804560382462933, 8.929574481465572, 16.059250812675945, 16.32413706854987, 12.332646945171554, 19.66538320829497, 11.296435069506131, 13.687951095450416, 13.7736435712878, 11.046879802902637, 15.487157323838446, 18.210406737492622, 16.087833954973096, 16.090034599174302, 8.602914659629723, 12.96229212055226, 12.778104553325678, 13.593498935573477, 10.931439316470698, 14.385324099511594, 15.615497569354934, 14.838673046423823, 13.797910289358049, 15.359138718399478, 15.162826788120924, 11.786099913097585, 7.908829420424774, 15.38571489144947, 10.960765009324412, 13.647410841819173, 8.94462060197557, 14.74810872359675, 17.052167354702252, 19.932956142181208, 17.352612361649367, 12.841953510268759, 10.636520522346938, 12.02912368211424, 13.40980692869112, 12.91143839206057, 15.606467558671689, 13.179053010258649, 14.641582223847697, 6.86292777260711, 37.76800330212444, 11.725475378334849, 7.735404506145374, 6.7870182241206685, 14.450486759776258, 11.126370967551914, 14.075947128697551, 9.256194508360862, 13.39337149142567, 10.749397295632608, 14.721099246848784, 17.10927273232483, 6.791518017618674, 11.721105983229783, 12.088038878863903, 8.381699870584493, 34.95109037486184, 11.067232463378307, 12.36930352647183, 7.886372850748184, 14.70538718153435, 13.043149480712279, 12.505659914360399, 12.157237466437932, 7.714233554955229, 12.92371641950241, 17.92609008915247, 15.349841819037724, 13.001177860727335, 14.059540805143401, 11.55773690147889, 11.509213966770881, 12.96914229154146, 12.193882215291099, 14.984542137098554, 17.109352649461265, 11.243194600774437, 7.319758142783748, 13.916304719037335, 14.148973041503067, 16.624927645743465, 10.193517264755748, 9.706988098659382, 14.994281455799472, 37.66355392031398, 32.97130744563601, 24.452111618283677, 18.028958572473282, 12.13361519724947, 12.106606897147751, 28.305212693653097, 14.411639265311155, 18.559997708446236, 4.718434759244331, 18.92180783477265, 10.111544824257821, 17.56952155624645, 14.709250037433062, 18.96664790506539, 10.016250305557655, 13.402034341915348, 7.737299451863275, 15.390820160157926, 12.603180733773698, 12.908968637996503, 12.0170540101237, 10.779905708897099, 12.682032467302365, 13.24600866766869, 13.853785344697926, 11.456619375137215, 33.00282899671598, 14.076450498776587, 10.496576843854339, 9.896436495801236, 12.221066056653024, 14.670473660638473, 11.231450759781039, 32.04191284237156, 27.77167312938006, 21.958423995808133, 9.175896696521756, 46.145238018814396, 52.155598641980376, 25.680995438743743, 60.86537988438405, 45.56376892671836, 49.97669550375326, 58.03845838596271, 40.19331006635262, 34.85046918354623, 58.84655422535916, 44.11917412121579, 10.9451536019583, 55.307516251197, 33.38739084227965, 30.475366277005325, 47.27820307764132, 57.256238085193125, 17.51501645434864, 33.82052225430771, 50.85835209527315, 43.614194556568734, 57.17279725303508, 30.841315038480218, 24.100931428562465, 35.22124116133413, 38.408402721997355, 41.824529174080645, 25.772643120846787, 7.592145580119229, 51.33807030028795, 25.294480488394186, 27.32186650851288, 34.63914094560699, 37.19912338421552, 22.75262094723862, 12.99083758249261, 31.758185794764945, 19.583015668239803, 30.27450605695613, 3.903739796268345, 8.72854878276182, 25.48134971418891, 12.869222511298771, 15.567759256919548, 26.849375687480446, 40.98454723952261, 16.568377006303766, 21.183529125707715, 12.112484192743688, 18.371460026728794, 14.689432506460205, 19.57223978932144, 26.045041278656573, 17.852107952040747, 13.817438150395116, 15.515057758757557, 14.070961745754547, 11.627334770994842, 18.459254088118854, 18.229356056882125, 18.882477813852816, 16.130416060048407, 15.597450076538003, 13.154921479212462, 7.757069632702572, 10.123845626054372, 9.657504494916324, 18.36447029376601, 41.7235624777699, 12.00052683046361, 22.555095204944617, 11.170624121987936, 17.064565698334345, 49.90356988466469, 20.533064484936624, 36.8486286536578, 25.652710198312345, 16.33402476702864, 21.213304719184638, 15.731007004566365, 3.7753659073030748, 8.85782012946169, 16.565824700478043, 54.47561102777658, 37.609980645085905, 15.563661959944078, 23.600240110427535, 25.910248814705138, 46.762224463445044, 28.294176859390664, 19.49318317598146, 21.213700145434206, 37.56360480226942, 25.84371600495663, 21.65352861208278, 16.209527223362926, 10.271664319087288, 16.86729944754248, 43.57008395624844, 31.29105250090466, 10.744123246429705, 11.49310693559838, 22.357731674623206, 11.04390655587066, 20.614538077736487, 53.12495663151778, 37.80770811100255, 12.198290185882836, 22.996515379185656, 30.309308723916836, 27.997878880054543, 14.3244398031281, 14.336253499571226, 30.04329615839097, 30.672465184130495, 20.34400936905254, 27.39865094303261, 21.28497975231683, 34.41912241102325, 24.59000130906339, 23.163893530489123, 13.730691845055008, 22.124643739743394, 11.602639630414831, 37.784088476710764, 16.820291601716146, 12.866859240765791, 36.47534815519879, 10.93089568670064, 27.1238374149052, 42.40615818091438, 27.74929002627227, 24.919009599277338, 32.637145536781766, 52.03350283246166, 16.647299002680924, 15.207331570186893, 23.77473828346014, 6.549094770679776, 32.10312085751366, 23.162832840648026, 14.000524435322918, 11.214584512174405, 20.30744069861434, 16.299435729742285, 26.2382731940512, 16.995770563066813, 17.707733409050686, 24.83148444890275, 24.127002690475447, 26.138847503786188, 26.475765016029722, 34.049380937196084, 17.353534593721232, 17.663186473662666, 25.532892382054836, 23.2512411969826, 7.060110705077082, 10.757896772735066, 20.614239423169018, 16.208513988916245, 14.126965608039322, 11.138523826673191, 7.496049915612992, 25.95204346140606, 27.560577290706036, 27.296983018428595, 23.779119493678362, 32.01626160791226, 29.25938036610792, 23.39841921178889, 27.481632887408423, 20.938268389230686, 14.299545860357393, 9.412457989626168, 15.497036021783515, 21.51663506136106, 23.75611557558085, 11.894894629237301, 36.50156234625143, 17.994058074235703, 48.4839928108757, 18.046914745385333, 32.361627983127974, 14.184388328563198, 21.681610105637, 19.95207113115251, 21.832665743570157, 29.385986400360984, 14.646047844020435, 21.792573364172902, 18.376210665017037, 3.1148346749750186, 16.968493281923646, 41.11179672597782, 19.658341271516584, 24.398472248623776, 27.88406227153479, 20.226896525122836, 10.468843656915162, 39.873579642579635, 19.91803930876434, 14.09844041463161, 12.562797266213606, 14.946583003389195, 11.293380133266037, 12.750961517798439, 18.01253341064476, 18.886650830695448, 82.88496611957873, 45.67976558060964, 15.88724369986776, 11.495384373444317, 14.573960658421633, 20.93091581298818, 21.822420120256428, 12.127922034401402, 9.666288032885005, 13.918996855538113, 12.54544241162234, 18.188169336159195, 10.399537996794178, 9.69566888848353, 16.814639526668305, 13.963631982322896, 12.962077918740638, 11.605707442347263, 14.574405726069122, 12.636524945292607, 2.437522677970977, 14.093001620525184, 7.893041385836309, 11.412372551533876, 4.997369432563697, 14.556309956435777, 11.430959015222246, 5.592408662225807, 10.402708089477015, 3.40908302683387, 10.469156356164445, 10.648352549822734, 13.59566619498063, 12.879249388785846, 14.892575158441861, 15.232059383737605, 12.679769889953104, 6.842834662000718, 10.514535272728331, 17.03775280691268, 13.451919377181726, 22.030777599034938, 11.777373380556721, 14.469351041620525, 22.433897397179127, 16.182143887833956, 19.369485343471162, 17.919721422652362, 13.66229620853825, 11.773969282784938, 33.60297016644347, 4.89776119901351, 12.542158702367338, 22.476632645132636, 14.839788836887145, 18.986355774892868, 16.619626730044804, 14.721747422459469, 23.246438960252906, 17.331218698037805, 3.089863955985088, 15.248138874488424, 8.8340781802754, 14.423271613770641, 6.252245693221939, 9.43322390630139, 15.853068333311501, 20.65977325693144, 22.268198286491632, 8.85787891623728, 18.853571905248025, 36.51402666076724, 10.411615564542148, 16.02944798700518, 20.46410840328292, 26.040748758047123, 3.996213760069003, 15.744425468819335, 15.763670229235311, 17.00152022339117, 12.978708190201607, 20.197304546751088, 41.79272656754635, 19.886553819543508, 25.686376664195883, 28.807517954267944, 16.090098845572513, 17.271795638577554, 17.31021927307859, 50.0115622440425, 15.098363929929713, 19.06552020253111, 24.152212379124133, 12.970134964069747, 21.365428752104442, 22.22556589591387, 34.8364894925336, 15.417173572703982, 11.967386776940595, 11.968606633038444, 13.34135391819298, 12.004405116682832, 11.555093464086445, 15.777976238303983, 12.999902814690932, 6.976969987965152, 3.559444259753254, 15.261027043218222, 15.014404727434817, 12.529951557653622, 12.973231414099352, 8.596694743633723, 11.906255353328085, 9.749551139712676, 6.34704162885965, 9.448951680672268, 14.355457507865433, 13.573954215893158, 10.03553721966028, 9.892635295174381, 5.983822405850798, 12.322174618374362, 15.844198154633483, 11.452482160855997, 10.394829597626389, 14.604971577557441, 15.92633179207694, 11.14732618690929, 15.390796165422799, 10.415387518613134, 9.104449311716358, 12.394511542489765, 24.04116501518963, 17.66798093404555, 19.966459926915814, 12.694349812519777, 21.327362020022207, 16.248114925943803, 16.197886837098412, 12.96114150443652, 18.772698261463873, 19.779136953795426, 18.829668588705037, 21.360863154965095, 11.009542337883767, 13.764693171157447, 18.98636473988995, 14.012513960920426, 9.03041356535871, 19.720929380317, 16.641646397883154, 11.743514681581553, 12.093695584898175, 16.193073226471597, 23.278008233105787, 15.754207624187115, 18.896944714305157, 14.779256634015985, 20.992052816731288, 8.88795074119245, 9.816227943055111, 13.704057462440655, 19.86638472080148, 14.58156322532913, 15.65067714000862, 18.813087360437972, 16.355610624221207, 12.832767810251696, 20.328406664013592, 6.867659948268304, 14.063458720643633, 12.814437485469943, 12.729497919346441, 27.79756760100064, 18.326671545799808, 14.895528337286919, 12.010842751081709, 14.563008997700525, 19.182627526168933, 17.551431523915102, 14.777372977200782, 15.739875855309117, 15.302228099101923, 6.626738281951297, 8.977820428373741, 15.137715023591584, 17.481463085049505, 3.222195750941409, 12.393864413035702, 22.70477331072576, 12.762492728948612, 12.225960141487494, 16.149978443079583, 11.318373705740427, 24.46707905250463, 15.34470499220973, 16.473376495554113, 13.405749161402555, 32.67819305127603, 16.873608664749252, 36.25679511811606, 17.114608781741133, 12.63159234124696, 14.199663720483313, 15.812291372682754, 32.69183186923156, 14.641108203413223, 15.271013955529579, 10.271992990895196, 17.096819935790332, 14.096371424074844, 13.43769878970404, 24.130222008982212, 16.654812362450592, 10.931332857579546, 14.980944504565143, 9.44761370637252, 21.603643552969796, 16.835440747170047, 27.172494478698873, 16.915099778043118, 29.918947203807253, 19.012406480628453, 18.203167575658128, 13.003194401193134, 16.474510778651098, 2.851138776795537, 20.017322427572424, 17.224703064350507, 31.421808026163436, 18.419663484037564, 14.498289017090636, 22.411634332171108, 12.723808280949086, 18.61345047784921, 7.978211441562801, 24.651178008361985, 12.161953557183756, 13.623036838176219, 15.345936773158648, 7.815932581126282, 42.291419887973284, 7.031709467538913, 32.64714463729014, 8.527060127508655, 14.653891617933745, 21.984623088095926, 14.9694125461312, 20.48293845619789, 9.546609334957653, 11.245737212486718, 22.52337865574583, 17.19446412910707, 14.319090071965071, 10.785521312310541, 15.825975054778723, 12.548679607016227, 24.698974425804142, 15.345850666419395, 17.299689477189464, 28.90749308421842, 17.573407700486637, 21.629710812974437, 14.045884378082672, 24.163526614554986, 11.64734854601994, 18.975523254211737, 10.686463613766987, 15.340773881862882, 12.470523648482377, 9.702987253167233, 9.292611363168138, 9.944809515720802, 14.190496827241239, 11.814259227820196, 12.632593873385035, 6.302200404262638, 11.354241149776254, 12.497185264954462, 12.79794725934022, 9.004303158176546, 10.083514767497574, 9.200147401313572, 11.741013560182354, 12.05695406006103, 9.568441413505653, 10.519862962664742, 3.1614233645397056, 10.76867738800962, 14.77246655365203, 8.181537428556974, 10.60667255865237, 16.25596349876497, 10.79068333429021, 10.519501595841378, 10.083068557639864, 9.33916779740311, 13.019828983054236, 10.019427582680244, 11.796927023467793, 5.0379751173292995, 9.84936784103555, 8.698492468241636, 11.939419914900824, 10.200764910080501, 11.17551070039065, 11.173585696669178, 8.424043770414146, 14.253815730609135, 11.973132973696057, 16.227688648769526, 13.81770856201959, 1.9226352065248258, 10.720008801287262, 11.86590261860154, 7.5823868521872, 6.486511974755073, 11.533559928886753, 8.226960288944865, 7.882349325310359, 8.16196123174211, 10.709674740844916, 10.270119896157002, 13.46254411558688, 11.852737805323326, 21.8890439883779, 13.590507533852582, 11.31426426704977, 13.573130701857478, 12.78676338240442, 14.502871957618712, 13.972197861262886, 8.866849152204828, 14.425037956128609, 10.67847062256207, 7.25792235783726, 13.128744974022387, 12.042819868747186, 13.471864786758358, 8.915468329341232, 11.579057449526436, 14.665814506849651, 29.331498323486684, 10.846585878633244, 11.658693715377801, 8.490047028453143, 11.423812221654726, 7.458107666064854, 11.311235196328322, 8.476447030180001, 11.583776679575752, 5.9143941182596915, 6.1258095452913786, 6.026359017758428, 6.6518966560484785, 9.219833623335632, 13.755149515881467, 10.222717143848941, 10.32617519191642, 12.830248027027046, 9.820083526250503, 13.670285002886239, 9.699574505560353, 13.519350329908965, 8.206529893763395, 13.946959210879305, 7.159756012421626, 12.932597155464272, 12.086198547671353, 6.379056433369944, 7.8520375843242265, 16.86960603285604, 11.036456316238654, 7.101723075580194, 9.507020887940817, 6.478582948283264, 12.37905427774358, 11.233803071888255, 14.571860012382484, 9.844750566802375, 10.294921971744195, 11.59164028460061, 10.881042562013146, 9.999239944369352, 13.566231666481668, 15.290052759068887, 12.308514540929552, 13.845615772711833, 11.020746376233472, 10.82912231559465, 10.50851219244543, 15.039012234088231, 11.372106509641917, 7.926593265459412, 12.068547987599835, 6.370838220460024, 12.18229991147074, 10.686516512194506, 15.400301265052901, 10.634692629832799, 12.495528506524598, 16.780755034309244, 17.204663897769475, 17.054835753535247, 12.06820572922564, 11.427032528370606, 12.871426423781882, 11.77471870396882, 8.12392481368088, 10.8930731850821, 12.392134991233274, 13.914936858830115, 9.614852981186342, 10.52846280846722, 12.175735386345682, 11.487903553561258, 9.91702356092521, 15.35492976432366, 7.474844485698066, 10.044275310026462, 10.341907943677173, 14.992620432879626, 8.191830142988302, 13.755585622292097, 12.556379436282448, 11.526093577110023, 4.8808464705234025, 11.342875725512876, 14.659420338461695, 5.360874772017046, 11.493735543541241, 13.350853382249067, 10.359239018549388, 12.055259114819794, 13.640079093655237, 15.755794543691598, 18.606219770425657, 16.201643468316632, 9.839737512106627, 12.111722830947745, 13.259554071664315, 19.25555064388211, 12.484088402538582, 12.03131089061759, 8.657303332615099, 12.6812484572428, 11.01664035488032, 9.814138785932654, 8.445181455230637, 20.373183143847044, 12.179122280918255, 13.293487720827743, 11.810578120494915, 11.958776038418073, 12.54258999266913, 7.211986728925894, 7.055879328103842, 6.809520690112659, 7.784688514612849, 8.354141557520292, 9.211609938419542, 11.10926674480846, 5.33085614247056, 14.173766082045582, 8.266133190218783, 11.487284741634731, 5.156917593965778, 10.537066833373903, 12.634249863569524, 8.918441279081465, 18.373889441224268, 10.538889987465625, 10.718452076945898, 9.253730046467123, 10.574967073350066, 26.761303470391013, 12.519240461275906, 20.313315244840005, 12.583674968861347, 5.836937672253819, 10.619671483272487, 48.24403424102299, 11.424188590965635, 10.21986051894442, 17.803111479860405, 11.352105995423644, 9.509591367926257, 9.95078738006966, 8.846168291697122, 12.438520409562758, 14.903530708541542, 14.927325608110726, 9.349428541857176, 16.123949161970636, 10.911934947830808, 13.637612004640939, 15.202601734904437, 9.248651278073412, 7.613885479016211, 5.147060533803016, 11.329624195923426, 15.334708392055143, 11.483867376277631, 5.5984903266285055, 14.90138560701767, 17.52946798302996, 11.077009067297265, 15.472965860289271, 21.683289370974737, 13.355163127008321, 11.494990085567316, 13.668379857197841, 10.179106689803291, 18.55201774409618, 13.632715074576309, 5.297655909661585, 14.11708973905352, 12.998290321233355, 13.999848481028813, 14.41387001493687, 9.47927404024315, 15.529030967016418, 19.956965894677882, 11.947200994283984, 15.86780844972506, 12.363976898179223, 13.060621536493825, 15.342551988594485, 11.031037865729035, 13.48982769186327, 11.580396328478786, 14.762343310729191, 14.963169537893192, 16.829807141069633, 7.629418244210871, 10.41766605180653, 10.792710428657024, 6.555908576456803, 20.835526390147525, 14.469228012343565, 18.53031181724104, 7.749419311320083, 9.854648311797574, 15.127527700901691, 13.7302069042069, 4.988316081521773, 3.6686213607385505, 4.510413968761646, 4.305764449711711, 4.56738572081477, 5.201044980865625, 2.8991328275376653, 4.800893940813475, 4.932097473346831, 2.487625250259361, 4.8584679354324205, 4.727247084261952, 3.60307502153219, 2.946360314509775, 5.7501790217324205, 5.169059950817412, 3.064084740473386, 3.9366159512261985, 4.566805292679877, 4.550125773649003, 3.7140610907534186, 2.963190649369639, 5.620619129160136, 3.4255085084854153, 3.570576535415248, 4.8547401703857656, 5.802859530557054, 5.013791518896805, 4.3850493383034825, 5.528102137318956, 3.4734590588862284, 3.617885053802789, 3.325081446739013, 4.346570279273392, 3.1530546528183168, 4.560168722321936, 5.360938849641494, 4.17344779696762, 3.8252969378322983, 5.263754815883403, 4.2765756262349255, 3.711820811215703, 4.807028726093132, 3.6299308381340447, 2.9850011975557305, 5.445258354788407, 4.097871494022597, 5.342290051280964, 9.622558655612986, 3.6178680473937836, 3.304396149910307, 4.903690040793149, 4.096378113641482, 3.9589699784896886, 4.966313120516627, 5.232473146709868, 4.509257002213557, 5.134847189673452, 5.338890502791264, 3.073624252272423, 4.419473900792433, 5.928103210923378, 3.8406730574154273, 6.412108308827921, 4.254029242517115, 3.7734746479416277, 4.372687138927228, 117.38433971897562, 5.228942598470997, 6.556638749069457, 5.206695952821016, 3.8667747732153823, 4.431241883145793, 6.662965755128103, 4.147848183944107, 5.595025577488376, 3.431445127587311, 5.3728346235311975, 6.135267927827371, 6.1635029759266, 4.463463533227668, 4.831490819529499, 4.143254401445267, 4.255750569069912, 4.577016128085618, 4.787852177301559, 4.072713654388219, 3.511532228033692, 3.248321628118115, 2.53397432205631, 3.1001098637874485, 2.9812424941966675, 3.7576929822852203, 4.724177726007499, 5.792361599953958, 8.314238861152187, 4.384173085897278, 4.546308375706011, 44.88896853391706, 4.646963218444901, 4.980928859349284, 3.4422700119499394, 3.8528230602107634, 5.439747909123257, 5.250251016715985, 7.7472279300307765, 7.259903505934814, 5.010677428864415, 3.694117925500459, 3.4098443450160496, 8.151230215505255, 5.575005095715482, 6.113326792752563, 5.317823937414194, 5.081357081132674, 3.9979055674150885, 4.973899251893307, 7.29372466544302, 3.508280600745581, 10.13325924313349, 3.9148411878805733, 5.1250811089123625, 5.0712200293591625, 7.817631550779481, 4.309990574764353, 6.987139254646583, 5.199966052078005, 4.7209464643760155, 5.7955966674898916, 5.733949156017338, 6.959474553210317, 5.775625856408179, 5.2500073757191155, 5.024088517128034, 6.4398755855105945, 4.153369850817026, 11.115412875200898, 5.080691719647162, 4.073124928159706, 8.020572505406902, 7.733971806229228, 8.382434294029045, 8.904676654909945, 3.7420470764843543, 5.6217212957176965, 4.502920081236176, 6.692859488681192, 8.11809695943888, 4.8466064531540445, 5.70037423593665, 4.922719148082682, 7.465983842190458, 7.776743211565525, 4.0270181160442675, 8.622587700085422, 5.980361647467013, 5.970650259616397, 8.625120502070303, 6.197526874127947, 7.6747932260959795, 4.881872621600813, 7.530028596015399, 4.472634735565088, 5.386453865930363, 4.6564094972005305, 5.794087364896438, 5.093451250740859, 4.916471922714199, 11.89596731320903, 6.63503991534208, 5.1400895775170286, 4.679953401402398, 3.4374231268017645, 4.953648182761043, 3.940874249398508, 8.383304167151374, 9.23821303071616, 18.47875285823599, 9.086173063286067, 7.067598336632301, 7.52364409865842, 4.849539203498, 5.279392820858942, 6.193938230036379, 5.417383370698933, 4.444084745242581, 4.438683537143802, 7.803743314099589, 7.6048609677946555, 14.36394045905075, 10.310871368102717, 9.204868273844973, 5.5481595412590465, 6.120421046900594, 7.403684428642322, 3.838794641482606, 2.945185736819078, 3.541941281763114, 5.134396951794814, 5.485888409458991, 14.057649432442267, 4.2452841752086465, 7.234642916215419, 7.127698857395855, 5.841061031559647, 7.142939158245884, 17.966838302014885, 4.2365778454849226, 5.175898862612683, 3.0406084363143315, 3.37647918247249, 5.424144057132878, 5.5050507428783515, 5.100811859644348, 6.689148449049179, 4.812872040756368, 8.216958394381459, 6.441108252941515, 6.751212790997008, 4.183151969832457, 14.409591790192055, 5.04020343782515, 7.255799174457257, 7.953156942156046, 3.3706523431552142, 3.3289098131973276, 8.663994271605368, 4.669227975035852, 9.654864800904202, 10.535358709120901, 4.716970751846918, 4.416136748928706, 10.770936495831455, 11.469803164925905, 4.729298078775439, 5.677325017829989, 13.499250082670516, 18.41675135839544, 10.845872643686379, 3.129066201877235, 5.612084836037285, 5.453498577856924, 9.141984066388163, 17.068510329418103, 3.5870158993711923, 3.688197474351089, 6.22093656283405, 7.107415740967738, 4.8192990472707535, 4.6542682738707155, 6.93036274010069, 8.252261804332756, 18.983237266152333, 8.19276988648701, 5.086977303250033, 5.105303854077736, 10.57819987947657, 8.60503953436394, 6.905224412440648, 8.460122451564581, 7.327895811169489, 5.827378142484305, 4.8444924534955565, 11.692285443503978, 8.001915324632078, 4.624208409244885, 4.480481804406861, 3.3857439901934177, 5.406270113067495, 4.706301129982758, 6.748755675166136, 14.069433362513937, 4.228424032005972, 7.9546575669997885, 6.578047671337517, 2.8703267425290937, 5.880014919841359, 8.710880101916034, 4.364114746690639, 9.302050386136242, 6.61573761369514, 4.802502398016973, 7.2826183726473825, 5.752922381104619, 3.6788819386161933, 15.490308699250969, 4.247340688993028, 6.587737413365126, 8.077174048366741, 11.22288434179706, 5.455835086225612, 3.8851917861847616, 4.801429846786272, 3.28735813829953, 7.010109795525655, 4.9252948754102865, 7.164754742715795, 7.41941414377044, 7.933425759134483, 7.5779705617047926, 12.570886151461398, 8.609414748199868, 7.570682656196171, 4.312553368405956, 3.143844544968477, 4.094885232167623, 8.767762661244493, 7.967352198889004, 25.850776671772813, 9.450856729520206, 6.266272853378279, 6.5068490157971555, 12.44185850031429, 6.210623456559954, 5.367494475720451, 3.960062402047502, 4.90538441133052, 3.4443474238269673, 4.35918258039331, 4.978931757393645, 4.902085662067304, 3.767857236983534, 3.391344514597036, 31.759754519072725, 7.247836076224431, 5.2026808292065, 5.107579388008958, 2.6252919740019194, 8.911936033998842, 5.602111787408098, 14.017099071327578, 8.747433693029441, 5.773618109805015, 8.991687415606156, 11.181321943110685, 7.145405356174139, 11.943771782694913, 7.209210618485773, 4.7117195100585025, 8.69399079329615, 6.00803290292474, 10.233314430632644, 6.611619085228738, 11.84147412400243, 5.927844029464672, 6.62995611286925, 7.58408271534887, 14.274074186298733, 4.3858338837224515, 8.367665152549426, 30.776567918263737, 5.969241100889818, 6.592485528603149, 12.882576423774113, 10.187037163290109, 6.718837195235777, 9.933326369338891, 22.590451060539795, 4.395889682449548, 24.764669434795696, 4.771917947671572, 18.341341207643836, 3.367240898394948, 6.085814220217552, 6.214329512202977, 9.18879352739895, 7.037663386592338, 10.613321488114218, 4.7769050648650415, 5.6803676131923595, 6.592173047219319, 5.255751750375322, 6.285057615380801, 7.731003731035948, 8.41193392921466, 6.295791186116727, 3.871603188697942, 16.615278304305072, 11.215174608587562, 5.241729493375436, 3.6648606756832787, 6.292698744172711, 20.222610603054623, 8.909029670377016, 4.205080256749511, 4.925683148706965, 4.8022360124906145, 14.16305762410373, 8.46341729965364, 5.907013435783847, 16.859785067523298, 9.048100649957643, 7.317648286681917, 5.924029442212317, 29.08962529575724, 5.475762406823743, 3.9979753097660327, 20.823626689635468, 5.083258373385378, 3.6217964798707247, 12.26365956947455, 6.0892439376670735, 7.465308409322164, 14.810478509426163, 6.542384822103367, 11.103666087442877, 8.762688295748395, 5.677101308336545, 9.378152592621284, 17.126526168373907, 6.561307536837527, 10.26324074908489, 22.430560496977563, 6.138665553363133, 5.644465494871602, 12.719853725502666, 5.776497902771423, 5.355152976995743, 6.720731653129263, 9.730990593281494, 6.656660423521065, 8.727521447391073, 6.237126448269441, 4.991081059373292, 12.019458412191264, 7.764551520380404, 7.965261868491253, 24.67941279930916, 5.474702168280826, 5.661806781529355, 15.657553157115908, 3.7728548044116925, 14.946231106187092, 4.40194177872447, 5.749699418269165, 9.656346746968847, 10.728992932295633, 4.555393822344129, 6.831590709157012, 9.642087450336348, 6.616731073919812, 8.728279016534646, 3.707341714349501, 9.301416156436863, 14.355719102202999, 8.338122919582077, 4.972027612298248, 16.03439844102452, 6.901085140181562, 4.985894453669161, 9.389424497648216, 6.35643834524587, 7.0407936540939495, 5.0382067189062925, 6.716417948636004, 14.132922262701943, 5.05894521434857, 5.359721423889961, 14.13410512791676, 8.057018915269447, 7.947898505566054, 4.805580895631321, 8.97617322204314, 9.618196861570343, 8.39757264096771, 4.4222410938842, 8.853406450906382, 10.987333935594664, 11.498743035391442, 7.292362412215326, 10.400788121928494, 5.316450399586172, 6.9089635994549345, 8.13162911253019, 7.410279658558352, 14.5061949805351, 7.635247510732244, 20.364129164806645, 16.700712114174255, 6.7146648582829425, 9.469673710317, 7.3186942333134635, 4.34206013703408, 8.61874294942062, 7.286617794027964, 16.813773685144714, 13.09312085429555, 5.700746420650672, 4.305816059933018, 10.864207193345441, 7.072067654661632, 11.14487382504309, 14.55552613252862, 8.250172770845174, 11.311566533074338, 7.639269972497022, 9.935363393342586, 5.820154408483671, 8.062725454231222, 10.266455952315651, 9.173580496911852, 3.657536084505253, 20.632070772041892, 13.76668786139895, 4.37856976455322, 4.974334139937468, 3.3080306609213315, 4.360766403341892, 7.459890940612662, 5.068883791442408, 20.621320169827175, 6.0418551574817085, 5.13929655208969, 3.2435917266430057, 6.647477247884672, 6.992845114905264, 4.025956114684033, 6.511025396652241, 12.134941163452574, 5.918102393417172, 17.95186979703656, 4.036826503611419, 16.719911963066064, 9.922245632528114, 16.095968254288387, 16.05421811950045, 7.734555693871651, 9.199264013847644, 5.267519033489391, 4.474454898980675, 10.805274750546966, 6.885869322585504, 4.66321191249474, 3.6552484772288096, 4.058423006592668, 4.701728727317414, 15.075503055289843, 17.703320725873898, 3.9392396536523693, 5.281047144440344, 6.850006499508329, 4.78852266706417, 18.252862383014612, 14.06386881799631, 7.800758212836882, 3.6160023734406135, 4.13778716803772, 4.49986324217944, 19.13220017897945, 12.755218755645144, 6.608954344395966, 8.109778533399034, 6.898126720112915, 4.937387643357925, 3.7478619672931286, 8.181705457182021, 4.589047519185638, 7.070748278808379, 7.5176286026028345, 5.066043693493403, 5.494120136357086, 4.8776289313145496, 23.261725688677377, 10.225636745614475, 7.137366367896747, 5.098210407658917, 6.951877578644951, 5.160953621288886, 14.478626821015572, 8.877127806933315, 10.938730638085136, 14.22872732335504, 9.478545484630818, 10.801406884581713, 7.949316200187759, 5.2320398795688305, 6.199906341017545, 5.4121255876953205, 6.52494289974015, 11.875221683865798, 5.2019141603568135, 9.860670287679715, 5.690384386268766, 7.947409772071723, 4.659884372369912, 7.005749427563629, 6.110595707400163, 4.57669016689432, 5.645561055812006, 8.938809204192737, 15.196229275475966, 8.853436863932606, 7.89300437870903, 5.927037850078655, 9.27596597886877, 4.64498237597609, 9.167059564467, 16.115956335096946, 5.644734046992012, 6.823406658416359, 6.990954488950574, 7.457479292053186, 4.848224376584823, 166.47541666666675, 7.6261911954567205, 4.599241597726019, 8.179371408191262, 5.500599979034888, 8.30167612532961, 13.436177173928842, 6.117076117354758, 7.806827584212803, 10.188496728119697, 7.844409787640625, 5.046102331135933, 11.314115697363873, 5.823836782633544, 6.092201209678554, 12.114451631645014, 4.6539629770640225, 5.06862949557781, 7.035444529399435, 3.5043914490254453] ss_total_hash = [0.0, 1.0000000000000007, 1.3500000000000008, 1.1400000000000008, 1.0600000000000005, 1.380000000000001, 1.068333333333334, 1.5800000000000003, 1.520000000000001, 2.276666666666665, 2.5650000000000013, 2.0375000000000014, 3.3074999999999997, 2.228666666666667, 2.5145, 5.108904761904758, 9.68666666666667, 5.103880952380953, 4.739047619047619, 3.2886309523809527, 3.0494722222222235, 2.2680158730158713, 2.6347301587301573, 2.569333333333335, 1.9569267676767663, 1.974300505050506, 1.8238095238095242, 1.8025000000000007, 2.2234433621933616, 2.1262759462759457, 2.234155677655677, 2.5328582251082246, 1.8249087301587303, 4.28922222222222, 2.3010443722943714, 4.488727272727269, 4.883132034632035, 4.835193861693861, 4.229695297349708, 2.898316041801336, 2.944388930513929, 2.847198412698412, 3.3173741536241526, 2.990893939393936, 2.956015341383761, 2.981594097423044, 5.522365079365082, 4.259163865546219, 2.0227109279609286, 2.741311516914459, 2.5181587301587287, 3.2018482350982342, 3.4778144355644343, 3.850927045177044, 2.41322587253934, 3.2781280794369017, 4.092189449439449, 2.509321380672093, 3.976297619047619, 2.8724137336093856, 4.858544772015049, 3.4067950937950937, 2.7373707674453107, 4.383735418768027, 4.031776286337986, 3.410242419266556, 3.0258437950937935, 3.7278829384009278, 3.6347941443264027, 3.315129733491145, 2.6173167706476517, 2.870930417827785, 4.6401742448727745, 4.134011639530614, 3.9339930592108, 2.606298554172007, 3.4107280219780214, 3.768343771811262, 2.782505981739853, 3.1381493668295315, 4.126191549499093, 2.6051036693784355, 2.7482490379990363, 7.702788221263826, 2.556195374744608, 2.5105410658019767, 3.219166887034533, 2.597745863214912, 4.628805165397904, 3.7194470993272124, 4.915139477489476, 4.885871031746028, 7.614527580262872, 3.0740182525592736, 3.215831446331446, 4.612165523241508, 3.0531669063507283, 2.942134655549129, 3.300932461082459, 3.103323726013492, 4.266287185673646, 3.2781156998230503, 3.6463326591486735, 3.626761416429097, 3.816181480390131, 6.797051220937874, 4.003772989179721, 2.4146258855629252, 3.323718380283042, 2.7095547387878427, 2.8544396740684124, 3.708733534413642, 3.1532188382141935, 2.909411002589203, 2.9275904320508386, 4.1698851554433345, 4.056087059947277, 5.293429973957019, 4.860194042324853, 3.5585838453998835, 4.129701721694046, 7.804706677309615, 3.6408082973699845, 6.56812829963045, 3.0690756889989044, 7.176900752186044, 4.994252919741409, 3.618340578936212, 4.975841909577909, 2.7486940433231664, 2.684215883436421, 4.166961217814754, 3.8380552911244825, 4.099575984754483, 3.605527621948839, 3.511787729655292, 3.4103961915806886, 4.471806125125021, 3.2201177756820623, 3.1059254671601026, 16.755278895041975, 8.190809793148029, 3.2492257264464914, 4.26576474342651, 3.801741677136025, 3.870474038107173, 4.249430921416989, 2.8287745957051094, 8.016677892583514, 3.2302389863138337, 4.813405935880276, 14.782019607843143, 5.330585481183707, 6.560581909057517, 3.5569051677777743, 12.938892857142864, 5.144251222894461, 7.085220678594704, 11.486971069322625, 6.3021576589394215, 3.1901920695699797, 6.091371785834971, 5.617076944903241, 4.3420813416754305, 3.453471177627698, 3.2845736483837884, 3.593575049497437, 4.010965270394988, 3.8388543591703588, 3.1045416226399793, 3.8179340193964797, 3.849772634272312, 4.098890650614775, 3.719188514108638, 4.699399577640306, 6.121319975407963, 5.107286423561091, 3.4987398647816, 5.766150467520073, 5.614886307396639, 3.115178988666992, 9.702205337910586, 4.622912858593372, 4.12165327187773, 5.866318433502242, 6.389597070155504, 2.8033502449503866, 3.548988025378957, 4.47090008333068, 2.9419595759306634, 13.760187278510688, 3.502551297277755, 2.9013317632325606, 3.787331075186104, 3.7450724015600296, 2.9501371678722426, 2.856518470592921, 2.789187555983974, 3.7078649589183295, 3.118050537200597, 3.0681621197739424, 4.267940883896618, 5.7833720483970525, 3.4465728392676005, 3.3473048499434386, 7.108582974277895, 5.4919269243444875, 5.386246122825336, 5.407170598942025, 14.22886249137336, 4.668948277522315, 5.966313808090884, 6.7102252894635965, 2.3757815213022746, 3.8683244449276906, 3.7778479208531177, 4.625790030740215, 3.1750841798759963, 4.827528243243348, 2.474277503562953, 9.163035561820166, 4.956319250547605, 4.717256190897462, 8.80720499041495, 6.336684378374483, 7.20406810085944, 3.9912309356395155, 5.163762910157242, 4.047084953260784, 4.607223098038002, 4.902407717068601, 5.513593092862951, 3.3027255171823686, 3.877844808461328, 3.6988577868082033, 5.174498064968243, 5.276947610491879, 3.465808415853251, 3.862272316340702, 4.771289190093558, 8.090619933747202, 15.922157607705026, 4.973901694243462, 5.341430289849321, 3.3296176929051686, 13.006445921530979, 3.626706767654621, 5.263804567401539, 3.0869612747933335, 3.524795279161144, 6.6822559553009375, 3.6775674887149297, 3.7778327788554464, 5.740946293983035, 3.1088915133943877, 8.811134376903299, 5.943495896697724, 6.936836405168678, 5.006528849277777, 4.70144570003112, 3.4115538728443333, 5.573569840379627, 6.857773046535781, 5.643557906784944, 6.0979069694868215, 3.7027443051995768, 9.191026021412217, 5.2691916565438355, 4.763613361098721, 4.177731437984968, 5.404412570745232, 11.204267604715275, 6.48597974792106, 4.519527384443176, 3.368595700722483, 6.86108932457095, 5.269367862262256, 4.3473380575438085, 9.578369033867066, 5.001788692257771, 3.2049520524410764, 6.521655818020075, 4.796237375519232, 5.6440677268192605, 3.8980165003466163, 4.6068834840148565, 4.111747908141366, 12.677577218567086, 4.93889492191946, 4.335228914163805, 4.192541834937327, 4.678391442155364, 5.991759882671503, 4.305724753769083, 3.9486125917139017, 2.4403518096282797, 8.620092709427169, 4.080127228069762, 6.732602443811601, 5.039900985504933, 2.5362416118754294, 14.111525254005937, 7.267769623048372, 3.448774999817216, 6.276417028227601, 22.68497619047617, 5.452316017787222, 4.897408025088945, 4.610448666066334, 3.530609433394316, 4.884175303854221, 5.693907407252014, 8.453448917019742, 4.672849999255839, 3.5458163064699812, 6.2609213234687875, 6.614846070538172, 4.267510045976318, 5.780001795817033, 3.9180895667336038, 5.9369284251438375, 9.436376851123311, 3.8708650088938867, 3.600557058275249, 3.4662358526862045, 5.387733600852354, 4.271259510638397, 4.782069525518592, 4.49356851309355, 6.566318404250693, 3.944883477125394, 5.330308850958495, 5.69110212870885, 3.2107947699448554, 11.275163991458351, 3.7965102350653397, 6.375311975471916, 5.212589672126976, 6.741234799070995, 7.053963527024748, 24.532803405962074, 27.429562043998867, 16.61313736252854, 14.647601223917077, 14.568718343201095, 36.3412002371277, 23.088265247471817, 10.51204316782787, 15.898747070606875, 16.660277413932583, 10.123929849254402, 8.417265415690627, 9.221102783788867, 8.569800555854192, 7.940809163843088, 11.526813396080605, 6.768729151715287, 9.914226168406444, 6.922959358483149, 6.845377567920281, 5.602871700290701, 9.891494246573641, 8.472839793397595, 5.688392096376062, 5.367891363889342, 5.022025427983762, 13.39237279438431, 4.958034754935533, 8.499042277380022, 6.905456981868053, 7.712606257077217, 6.194993962022988, 5.405066161996828, 10.920310035034717, 5.0003497208887095, 4.211136266265752, 5.838017319906559, 5.371148794568776, 4.680293787392933, 7.670000570365724, 12.926110723404621, 4.415650669396009, 6.650277736548935, 5.0337333383872185, 4.558645013529697, 3.8831409556579732, 3.8250754350714415, 3.979656715506605, 4.017608543690826, 4.959121311188793, 6.577760851381361, 5.6843416152761215, 12.705545321673487, 3.3093747102798314, 4.124672577952959, 6.943434870936144, 5.213040601637549, 7.601711067769759, 4.646203714992567, 3.9994267394612675, 3.5486014762103064, 4.854514276207958, 4.753307372888019, 4.425512929340159, 7.487988811698051, 3.604071901878749, 12.125024579906126, 2.708871509010505, 3.5269998283401462, 3.1728255428262995, 3.238310818506904, 13.02702949510971, 2.9671555250601984, 4.139936298133253, 6.208104207788222, 4.756033268352548, 3.645103988483602, 3.912444627450089, 3.9570636389150438, 6.022246157513449, 2.2731805347708622, 8.779640986783594, 4.78565850514774, 7.92062174412365, 4.266790863834335, 4.965972288662904, 3.306648475526529, 5.514918915433833, 3.2560933208816905, 3.0087233079764704, 5.360762445766304, 15.864144660894675, 4.64173900279712, 2.7973136208334672, 2.7595035466591686, 3.0397940851494054, 13.867725239165734, 5.415401947105905, 4.080442257200228, 2.8187750887748972, 3.1033228864463447, 3.660723735101289, 2.728275358879452, 3.5043919558970216, 3.2089727700010617, 13.628548498537498, 3.67389798023905, 13.54209485538616, 7.728823841252864, 4.141068750769191, 4.280947541470967, 4.31017302512394, 4.565863723462557, 4.058093942672621, 13.76171488929721, 6.89841458748093, 10.993969593898168, 2.9037703781747783, 4.800708048600034, 9.526314492463651, 2.269672461940797, 11.113015637658068, 4.730968713429897, 5.785868175508369, 3.770368587282757, 4.9306026907203995, 7.0742434926595035, 82.12858974136881, 6.28353304242878, 5.518602987628061, 3.6480669359728437, 2.5976845795014785, 5.880395065397352, 3.5524869553521894, 2.886983068783989, 3.7159959849703244, 5.661075657056092, 8.201372248741507, 3.185047998007355, 2.473629548197696, 4.409791382083143, 12.824981771165268, 3.953384345193823, 9.828826897206934, 4.791032360198844, 3.6379820103836917, 4.490405988416845, 6.431199893511256, 7.1249576866651765, 3.2103561917834114, 3.8851596602136875, 7.888387099109719, 3.988838288263812, 2.961309495256055, 2.4205154283848156, 10.132259490543854, 5.998447794092414, 4.750433019936419, 7.197668544213189, 3.6561813617082617, 4.506211111738406, 5.06367509739762, 5.24997577010148, 2.5041340296198267, 36.06100331973428, 9.655690120138019, 2.8586655273256705, 3.382390572586764, 3.5077071439077847, 5.363420740939012, 2.4878686548281546, 4.021854147326, 3.448261488806581, 3.1949885207724726, 7.810327786394091, 5.27425751811332, 5.268366395993963, 8.649366368500974, 10.082159722098018, 4.149813775714628, 3.7312915022713753, 4.146848701322211, 59.15813782051279, 62.74629634692793, 40.229250610500614, 31.504544457407903, 28.021943760262733, 22.75647600225323, 19.660399220519892, 17.481478462181464, 15.462323135947882, 16.4569688575652, 10.573433972866583, 6.847483879656632, 7.41526850437963, 4.206175434068854, 3.3537532591783066, 5.1824574990106935, 3.5318638369124296, 4.927039395453889, 4.099656093342053, 11.572417129167134, 4.055316432189381, 3.2049815119103626, 4.839107882486904, 2.346167761024793, 8.182681382686797, 4.104253158211228, 4.412006113716092, 4.119182956814236, 13.761807321773118, 12.01639817246922, 6.761093665573172, 5.964637281685947, 9.618355858234064, 5.3758341558581035, 9.270858670196095, 3.3706029974482354, 10.533855033762045, 6.503411009739864, 6.7175204552929, 5.860933005836826, 5.907169616362146, 4.822800579308357, 3.427419885450537, 2.5247922045693554, 11.455075081168834, 4.94410356519106, 7.731036383692425, 7.254660638872994, 3.2818528399592743, 3.4504541394414807, 4.035006609115717, 3.742491088215772, 6.228754060333288, 6.49623332177854, 6.828191384815465, 6.441810847230334, 6.632727194231031, 5.900062231293053, 5.94517938086972, 11.741000784527994, 12.31256618295658, 11.076343789559694, 6.000355205408418, 16.222391379552064, 10.984036537085325, 4.5739411321308205, 2.7457773152215, 9.861663499670936, 3.8974200663989897, 6.5831437026180915, 3.650510010182906, 2.902657849804693, 6.302681638456153, 3.451369877361455, 9.180850126926215, 3.019744159471172, 2.981129952524981, 3.9984432960748304, 4.14949655851572, 8.1393195070998, 10.952323812399309, 14.472572913704035, 14.241541432214195, 20.43589534515193, 22.468892635772537, 12.748873722275192, 15.518780333241386, 10.203449270416485, 10.016760497625684, 12.409644872439502, 15.962802274416406, 3.152116281065552, 5.005113642817753, 4.915694146996318, 3.0384570791749517, 5.651417856193832, 5.977010905761399, 3.006282526971293, 3.4411982750054646, 3.958289939044961, 3.4304364729245087, 3.9732889634277657, 3.2799574433263134, 12.971634746376509, 10.13799552379987, 3.296154459511155, 3.372863234822485, 13.346880603296809, 5.791510065929769, 6.301546040611452, 12.086224565834586, 6.7138660422401415, 5.712915239641946, 5.9981823162964885, 8.884023137846627, 3.808269261188545, 6.445846992837152, 5.866421606231418, 5.452379570336576, 4.105963553200121, 6.181804514368588, 4.241918648376729, 6.819734357465558, 4.944620329835787, 8.361057758232437, 4.480031388043844, 5.381520467390604, 13.581883732561414, 3.46550032529697, 4.727433056428888, 4.1970229547956315, 4.319846748189796, 9.037294401919961, 5.722832370002547, 10.401515734308882, 11.03707803565747, 11.328209061893226, 8.206887563132057, 6.435280028413962, 10.489310562650717, 9.672692679444726, 8.237355605257374, 7.695739052134825, 13.836594936399766, 8.672593574570374, 4.273149736790202, 5.048280159554862, 4.655128322897508, 7.240841720571772, 9.034990240447975, 6.163318808331802, 5.126627195620588, 6.351169908993977, 3.4440075168747595, 8.645601308821897, 10.238974887471088, 6.194132184108202, 7.517793668183135, 4.693807535876257, 3.4926385028983487, 3.7662385035260244, 12.666013435813307, 11.706394206349701, 7.8717812836413765, 11.029609957738908, 9.00834555599118, 7.55939274217422, 6.829476783985675, 9.047129324104944, 7.583092093538673, 6.920246986848527, 6.215831103861818, 3.326696204784837, 5.060418575891101, 5.995065026343711, 3.995876166496662, 7.092592952986122, 5.184441551626758, 9.761880994756076, 6.29120394003403, 4.288574914613079, 6.310810120514355, 6.981992062654405, 2.9917451012424308, 9.154540239991928, 3.1753086697149495, 6.957044529790697, 2.9792376627523542, 4.3556813117952915, 4.34099956690516, 5.320221479176621, 4.998026724005576, 4.148880622934283, 4.987450797379411, 9.637939278150832, 11.942194383892046, 4.059800023572901, 4.314305396269485, 11.023698603932303, 12.717169070006957, 9.339228312343824, 3.985290295006412, 5.381003814057406, 5.619385078630077, 3.828733858206622, 2.696937908606452, 4.214720354918081, 5.366182240283729, 5.054685470789675, 6.940916167623478, 3.320826269392741, 5.172713623383537, 92.87626987455626, 7.904465901322484, 4.913063216615327, 10.597501145245207, 6.904572481683861, 5.519683165439116, 6.427898738110803, 4.480649486352809, 13.284443998160354, 8.409727198961976, 7.450158050358205, 4.433693322306821, 5.276683115247122, 6.4076292884835, 9.888907783882786, 3.8890057887357115, 9.356393319796611, 4.8291205543003395, 3.4859481993048647, 8.369455865993908, 7.538194564769679, 3.3484792335232942, 3.20230390339003, 4.336047853428875, 4.839196684577768, 4.51265925002487, 4.963099916665457, 4.895059668983747, 8.304538332825532, 3.9818398389894205, 38.45632554299496, 29.62672453617337, 20.95346153779652, 30.020236246575184, 9.195953987415106, 6.641596129627085, 5.252789817912772, 4.787556991386711, 4.98910777785001, 4.485531092625858, 6.215108978514234, 4.372366854286088, 3.3745409804621973, 3.821914526752729, 5.699299709719449, 3.422572130865946, 4.208985715974846, 6.835301169770827, 4.988763184550301, 8.46112075397999, 11.370923221561888, 9.728514211682706, 7.710381501570035, 5.752183421953434, 7.556573888479422, 11.283068393731659, 6.2723219388521905, 11.213982142599237, 9.755960412065626, 8.324519210486033, 6.646941865029686, 4.54035989150876, 6.792335088682634, 3.5363619723356567, 4.241469220194855, 2.5317272064045153, 4.903937329110921, 4.744302121462663, 4.048628227550667, 4.632029893510451, 3.6508253482372646, 4.082737241452378, 3.487407478012035, 5.750710079962399, 5.502279916108358, 3.604355852960653, 4.270207871115015, 4.176985816515175, 4.01069568279729, 5.171819232962646, 3.4356999193624578, 3.57591179505499, 5.156812644830091, 4.369412704205786, 5.300342131726903, 6.628833446499124, 5.070711407987149, 5.332275956114154, 4.09825705758875, 4.200775370219134, 4.0651373675401725, 6.212039495216179, 7.630577946211958, 7.202526515994878, 4.451924434335081, 10.50234732621547, 2.9709540525904137, 2.3285177563517028, 4.951020791950608, 5.983891792161793, 5.07641515864262, 5.289883796882151, 8.931688901670594, 3.061355044065644, 8.952058930583568, 4.958984412960176, 4.294050544667842, 4.787268247619688, 7.578326753129865, 4.881204617190124, 9.181339279708586, 14.665402910719267, 13.367571910184228, 16.183608695079265, 6.3771502196589855, 4.162147431815383, 4.538974526858711, 4.428699547110842, 4.8090374440742805, 4.24780524201121, 10.075242707934851, 7.714654243999627, 4.7977320397439165, 5.992291340061553, 2.5717097782223868, 4.711397521151246, 3.5669185704420663, 3.895845716764255, 6.4761511411178985, 5.15496640925915, 6.139584619011091, 6.348513232477737, 6.065132723226435, 6.703672172911504, 5.086611174920924, 6.221612327964702, 5.007832616163406, 6.058230612917728, 9.440513177259351, 15.444967614771498, 12.62966015928516, 10.175752352183313, 5.906115010501485, 9.353211924490395, 6.579428543390671, 3.393853016963937, 5.467400613328374, 5.725499483746007, 3.6927585365695452, 5.071508496741735, 3.7562008147462955, 8.395150145247147, 4.580861508304534, 8.216717886280385, 2.9273858634234293, 4.452074498629161, 2.5092544617996, 4.115363827589545, 4.5475672972949175, 3.7760112725824984, 3.936407188426855, 4.648007158181684, 11.279736635096928, 4.071379395647781, 4.065301155242517, 3.6630143563424964, 4.566293915766063, 5.261829420579421, 11.994463508713512, 5.330809946795602, 5.980790619700331, 4.258864292352526, 4.801500121216292, 3.00960149055054, 7.6907210193474915, 2.754676176822986, 4.335020489166232, 6.858605436176276, 4.699623838485779, 3.5293568540171267, 5.759224612216459, 3.708745159340195, 6.297310068785291, 4.821353042872011, 5.0691330703709045, 4.298541673446944, 4.9732093862234175, 4.399946328127182, 4.307333581752505, 3.426273267084041, 4.492909722774913, 4.212433965757787, 3.990774381060235, 4.40564640217719, 4.549335740269059, 5.350386191175547, 3.6634902351706513, 6.782150335198434, 3.7382760161509836, 10.450833381098056, 4.024426026685004, 3.990459508952904, 3.7804613246092083, 5.463027942170334, 6.381478790263444, 5.0824638020993795, 4.5746267564124325, 3.1936405390471445, 4.602419563090058, 13.815880952380942, 5.374143811496364, 6.128235187958418, 47.17365339769207, 13.313507507209394, 5.049809692230399, 6.785342144602137, 8.143101360489318, 7.130112844163601, 5.086644325810318, 8.96396949925298, 6.5553067171020825, 2.7945681427688465, 8.438789395535157, 4.053653940691853, 4.578397935261929, 12.323323220131051, 3.0526324527984205, 4.305368976923324, 3.921794533756078, 12.561709096459102, 4.0213151768985185, 4.598954409305905, 5.029956628847113, 2.463346154262068, 11.02298561322811, 2.9541255495622374, 3.9533748070921684, 4.963202840986297, 4.338689449439447, 11.42225901875901, 5.046536283578052, 3.999674261202438, 4.509352751159856, 10.202219969214845, 5.704772676128826, 3.4147926499628056, 5.189141330132342, 4.380092889230031, 4.60166913128615, 12.888461903622726, 6.593106761116906, 7.426793526006529, 8.00751091352994, 7.850395055438234, 4.121987950627481, 4.078043615768998, 4.118412302058715, 3.161615849463911, 3.8605946243348646, 3.7034731864836243, 3.1566664069834576, 7.467673119410104, 4.722328224352135, 2.691169392207855, 5.723076096868767, 4.4329105908013915, 4.690940051564777, 4.374255277252829, 4.299505661160516, 10.783264931232756, 4.5868760848824035, 9.756702265997129, 8.92790486823277, 13.974131768533544, 5.252224992864614, 5.54859278984201, 3.6469362073718266, 3.8821137876758858, 4.434794113391438, 4.52350065140208, 8.602670673968271, 3.391272623496643, 5.135700925986873, 4.19954562334999, 3.5133049843597086, 4.363432837085832, 4.046778638211319, 7.462599795025153, 3.787371863320827, 11.590176948051944, 6.986542396666316, 4.1786514189704524, 9.381441581628534, 4.623534437162471, 5.462159365398492, 7.690413403746534, 5.075780392546156, 7.869662970333407, 6.133516595588839, 5.095634519865669, 9.329907585656516, 6.092153028487035, 5.8528186587044795, 9.971187525158582, 4.4855329770209, 12.57806020035248, 10.657153104299239, 7.103065874055425, 11.193706003993523, 2.891438120836268, 3.195808852868506, 8.21871986493039, 3.4318325953460582, 5.763223282321966, 8.885126763557023, 13.187833277425192, 9.48047196594255, 4.642683475738352, 5.206811031063927, 4.280759416964697, 5.452378116940269, 6.188034155110421, 5.584204747458422, 6.1512361983903165, 5.849352556318674, 4.427300981279502, 4.486908522584985, 6.88576877962474, 3.661973372765151, 8.271763350868463, 4.4191312755412, 3.388151461368394, 4.528361313592991, 6.113380381777723, 4.237375505736311, 3.333252946133847, 3.5024842854857545, 3.498939089158113, 3.776730892525543, 2.5801712386478197, 3.7564609164776677, 10.615997105345173, 3.8353919258839313, 2.822891656735214, 5.03202567720802, 6.630559148378536, 7.925685037419133, 9.746315042551117, 4.362766093174149, 4.011052022132963, 4.821111678098637, 9.558333646546544, 7.725883774162059, 7.387763777279845, 4.511822550943623, 4.808435850408114, 5.44235787430421, 5.806450890241946, 4.296616260427543, 4.30073477647429, 6.275892086339487, 47.16448060342431, 4.47295708957052, 4.878016151652825, 4.679821886569365, 3.068037012541132, 4.481794134958607, 4.660394643392602, 2.7514550061934657, 2.912206486834996, 6.822185342836882, 4.871848799722975, 4.18951967822488, 4.487105009954438, 4.15258867469316, 3.8760351412524123, 7.83000475593325, 3.95028312465055, 5.193372012933243, 4.990845014841307, 5.387174814375792, 6.474201479758537, 2.879411916099842, 3.694952627152362, 6.1019053270259125, 3.026991644009654, 3.9374623733224166, 4.739248105097927, 4.051561330324664, 3.9047355921711704, 5.119037075547794, 4.270866044143161, 2.9479935801948365, 3.4832304407974926, 4.153263248032577, 3.3383784293239773, 8.26026890756303, 4.399237006658059, 2.8593665235654124, 3.6481675463547925, 2.646517853236981, 5.950468721407806, 4.348995737915199, 3.6657411368098205, 5.026756410400498, 4.057307843291765, 7.8360814542943595, 6.779223345297592, 6.091476490398275, 4.77051027288168, 4.576871475164391, 4.2658880702058735, 4.085280235658409, 3.4439176094099504, 7.755169152587991, 2.8393565876583597, 3.582001746925928, 3.7982595837749202, 5.73750516228767, 6.942481254736795, 2.634796022652098, 4.204788692232608, 3.4545856600773472, 3.4466325961565785, 4.9559930482253725, 2.8378968713748116, 3.3233062889601035, 7.053096069227061, 4.405815476814904, 9.173803698891575, 4.587143315045077, 18.237654185990063, 5.449187393706524, 4.28595707525578, 5.137722398914637, 4.541727865106022, 3.9298932852315005, 4.36354466780138, 5.544832780433009, 7.9254628546577734, 4.956234768192968, 4.527673457630174, 3.941120045940528, 8.927924730667764, 3.691235918494853, 3.244873780874555, 3.137955331940648, 3.452638232445837, 4.1005643247665144, 7.536338090597274, 2.617074883695137, 3.217016494857051, 4.356331174183678, 3.785929632005819, 5.415833308558726, 3.851229781103626, 2.7094966407302654, 6.1091485985290355, 8.633799366483188, 5.921038264123681, 5.090567998513148, 3.593483423983423, 5.146789213042525, 5.401407754932403, 6.205340332297295, 8.26678338096372, 4.218013875798881, 9.013103573678379, 4.724069623884994, 7.1313907444482885, 6.495678768110978, 4.799881866916045, 4.916563107152579, 4.494456798021859, 3.540902032796829, 3.691821396794726, 6.464981401616027, 4.93683400225505, 3.5849008938761764, 8.866766211750184, 5.509130035479158, 5.922887187991016, 2.9218601913896007, 7.755638396662375, 4.478229815007252, 6.153115504778401, 5.514374244851448, 4.224851850884381, 5.037321392333415, 5.243873406093883, 4.281227771027254, 8.678446415846482, 6.137608531772677, 5.051619797933384, 3.948986069440695, 5.3995826409656, 4.9550826656671125, 3.291790608971737, 4.6010371541118165, 3.0471708103573305, 4.772714851708976, 5.714150620390184, 61.392911073165905, 2.8608101906858505, 4.281066851521839, 3.2255082297720814, 5.564430855805551, 6.564428368024321, 6.169080314778033, 15.910288423758338, 7.665099856102621, 4.204835075458174, 4.305234576381253, 5.616878519639687, 5.560611812997557, 3.580824975135535, 5.5399546863146485, 4.16711737158526, 5.364628780737388, 5.00375406277772, 2.9410960877541084, 4.2926118547550765, 4.3239981837517805, 4.377901418855117, 3.927304942210813, 2.9575887004816765, 7.072006525679674, 6.077124487905434, 4.68762163400921, 2.621299083924498, 3.8877321299155865, 4.082208960168076, 4.954129826401801, 4.874949275341516, 4.317213169961598, 4.864687449555948, 5.160771959917372, 5.9345583346475586, 5.139971270837424, 7.724857408351023, 5.45863800217826, 4.0168132310300555, 5.32655890623048, 4.596952661825753, 4.170839862168543, 4.705912408873966, 4.310092996652579, 4.726472953502828, 4.808714309032316, 7.927761514075162, 4.9446133020458625, 5.796133863363679, 11.522064170971708, 3.9966795098474055, 4.133834362755697, 3.4583774902872233, 3.5340774757424516, 4.263045986127559, 3.3595160015272882, 5.34877452381409, 5.895896058749917, 5.2094731891915735, 5.0962672522205565, 4.438170316821995, 10.943164813400722, 13.49856623370334, 11.444984269035658, 8.842370962262843, 15.048575678857643, 7.553245248251398, 6.054694564550642, 5.35339335506349, 10.963891700557829, 4.772860076438187, 6.764392550329453, 7.43278848478211, 5.347347410562774, 4.925321720473903, 6.446210106794875, 7.152109462539122, 4.811184728964717, 4.748021394626865, 5.286989413787329, 10.01944445583031, 11.042925089089511, 6.6427197375032625, 4.334654160423542, 4.860269758146874, 3.6650969039942094, 6.082731344743052, 13.243053639600399, 7.161376523631473, 30.660422054565714, 8.371201332191292, 14.364960747038031, 6.561772175444466, 8.659845276193082, 15.735339017928194, 10.285101884800826, 5.458670909437876, 6.678944389730395, 6.998485604387187, 3.8357800240633715, 5.36565712599235, 3.8507421882228625, 4.043560424462745, 7.199483940822671, 4.551294731656579, 4.893942011235676, 5.494305316299156, 6.680242794396996, 5.984594869151004, 8.2084663528465, 3.7126790397049834, 5.4049867953495925, 5.580000383160118, 8.085464680655855, 4.554161459441557, 4.884321254245336, 3.8120156057446515, 6.248746938079707, 3.6585499998529705, 3.960496575168312, 5.241387148005401, 9.76195208846493, 5.78771772294805, 5.559372705749598, 3.9869996122960414, 5.755052340142404, 4.223458792938082, 3.9749924014825053, 4.467761874423344, 4.633779565835064, 4.679880279566777, 3.115053663716669, 3.7575544496465496, 6.099102824175809, 11.410902078014747, 3.87502181520898, 3.868895159759393, 2.9704954109435135, 4.101489018849772, 4.456420518649223, 3.8226443397615184, 6.435526883910749, 6.202536706264317, 7.106278201993178, 3.5179110367574746, 3.6201481634378343, 4.765588085794581, 4.705198548292472, 6.899954843048547, 4.346190199914616, 5.582094718695001, 3.83588960239345, 3.9434428875621235, 5.36018666248755, 3.27028795287142, 4.533994750066633, 3.365236249728957, 3.153803299579262, 4.681125404950462, 3.99181938918311, 17.329996067558653, 2.7958071237309023, 4.518327475991758, 4.859462824882819, 18.523144975730826, 6.911894945466734, 4.1433965607832555, 4.048976129453216, 4.193128892610581, 8.11674298721633, 4.496931150463928, 4.026662623481497, 6.923357969467305, 4.416634632268186, 6.307757729002902, 4.0042133379713185, 2.947528038251436, 2.92592832635204, 6.288406201899234, 4.923928928103076, 3.8001632938932945, 6.663670062056711, 3.4996841069227838, 4.582855545874787, 7.375210088005765, 3.8607222587431504, 3.6714698392859977, 3.976753081012669, 6.026261648299129, 3.5611166596548363, 6.1224898424403795, 3.670761822645756, 8.388903357097346, 3.082952776273048, 6.927874974628843, 3.0549985184559274, 4.032708079096234, 2.863587326342726, 6.7145107164116205, 4.170704919353785, 3.278615514203643, 13.95531825556919, 5.23833826325874, 4.287005503609711, 9.255356350356506, 2.6147786614947996, 11.111075447816663, 14.523806517748355, 7.942424675613779, 7.809165545273994, 8.824458291743158, 12.051386990651404, 10.127194293778144, 9.913467930023097, 5.6271930893122315, 5.715216030837049, 6.443447559349272, 3.055347746409986, 3.570376394127343, 8.284817229938179, 4.506468153615207, 4.747615182964607, 3.435596761234914, 12.48161580564314, 2.4461515936578846, 3.1860775759928774, 4.62911203241189, 3.7802217653829078, 6.300357393880508, 4.950547145396648, 4.975585859578165, 4.528044917106007, 4.980409649600058, 14.805749772510518, 15.69723019380277, 13.29427347733736, 10.865157578148885, 9.480358779952908, 10.613889117229172, 8.998992160285027, 30.254149497453753, 9.889240738339428, 7.053781674305781, 4.4564425048697975, 6.857667929486858, 2.544500067497885, 3.792976282117044, 7.148135995255125, 4.45090418567774, 4.720652527315238, 3.560341236916643, 3.054724559342227, 4.086259367401476, 6.648008889206841, 13.805132243185378, 5.246129068753612, 4.743881334794699, 5.551203442967795, 7.982400221309771, 5.077602046736699, 5.516218133586946, 5.285303389256306, 7.128662339930325, 3.733382387099297, 3.1657881784398327, 7.237060291829236, 4.11519063879073, 3.0207039133156974, 3.4141633652774686, 7.892364405392747, 3.1079660184098796, 5.809193867860597, 3.463786410601305, 4.89259665398026, 4.648453760871136, 15.603893607530953, 6.937372205781933, 3.2089782755024583, 9.803054414623418, 3.2713861359361043, 4.189096146659279, 4.347320552940686, 4.736772723907503, 5.480514501651979, 4.567156648415716, 6.030166594558627, 8.48505400888183, 11.658688355117215, 20.110426691847003, 14.472763791976408, 11.617530347539441, 11.733422916473746, 12.542552019556322, 9.477698259121215, 8.059739412582937, 10.03479908057332, 4.671022976859503, 4.220928476804118, 3.8091573674070873, 5.010579787526116, 9.723367020236276, 5.1224435318313315, 4.844825119476725, 6.265571094024649, 3.4609348408214275, 3.7103579730547005, 5.069549982266115, 4.3154485820105695, 5.59023963855222, 4.001772128094384, 3.5211324737940752, 8.684160646916853, 2.8486425282719567, 13.951526740600741, 31.06755116850762, 49.78763799056883, 15.907420103420339, 36.88924796306262, 13.375036905404857, 20.38297200426992, 24.434424911822155, 12.024029783042709, 10.93818329785495, 30.35956791421897, 3.058870982051585, 4.702235335923268, 2.6702098528256006, 3.7956963689567886, 5.025810651254708, 4.631164305139302, 5.282722037829768, 2.4469494059960475, 4.083939886030555, 8.301186730986025, 10.964485123153766, 8.591120012306867, 4.260127680180762, 4.032995118453147, 3.6414867146909344, 8.499881162296292, 8.833641444940204, 6.413335543876765, 4.851899721983787, 3.336964609278539, 6.253231252710686, 3.90434548797228, 5.688619262217754, 5.396808343307026, 5.380013573455854, 12.60960739615911, 11.202802813731239, 8.944233786936433, 3.416074616586221, 5.811312376210202, 9.078520415718515, 8.575377973727745, 3.8533258224885643, 9.907462655444435, 8.961554139288388, 9.884490491065362, 3.168238880752243, 6.399789775206224, 6.156477586221852, 4.129177174661325, 7.997136787580748, 2.820413498978201, 10.474474994578312, 7.9764533775666475, 9.861079732856952, 15.642481188491871, 10.948839291304703, 9.291757966248252, 8.761223949200346, 7.5835870597989175, 6.794940598937696, 5.676031892520866, 6.809239578598108, 24.516615265414014, 9.587660295186662, 4.9955804782303055, 3.667119321073705, 12.204582968104248, 8.024439858454384, 7.120199683175602, 6.814954780142182, 6.968526831311998, 6.523068724083094, 7.78849145928059, 7.218882685124859, 5.7492525661997576, 23.608199300233263, 7.008482191617184, 5.030491722464094, 15.885794295937949, 11.81876205938237, 14.532213865841598, 8.704540133305018, 13.515266553866315, 9.608911873202096, 9.56872662977447, 8.199656101698363, 20.027706629769643, 7.8529338670923945, 3.9834434055780195, 3.5493380069813254, 4.192809671807001, 4.6451425931981625, 5.160916569996991, 6.9150151306318985, 10.111995884287374, 6.396819560077796, 5.327862792638013, 4.91785360818606, 6.300753363770484, 11.35080447333423, 4.123218178151678, 6.189055084172434, 6.835200804900475, 4.92800637175521, 4.620570931108448, 15.08369243699197, 12.155722931265508, 4.199219639515309, 7.418214441002054, 7.6597264050152365, 5.5259435738503315, 4.5830703567980455, 4.73492466549126, 4.177437712654019, 5.277123047540208, 9.058766000696826, 7.369728999374788, 3.233349794717725, 12.078767453045039, 2.5648932281764556, 5.122175335025087, 4.696083881788672, 10.700961438882292, 4.558059360810384, 8.123968280386615, 8.837807018032217, 4.928486665267626, 11.528584831963704, 4.909009983755616, 4.269697748230936, 12.10387342543043, 8.732514624264624, 5.378969046083792, 4.684337376798633, 6.2089681894685045, 6.821508712041759, 4.445351705644987, 4.2143700720199435, 3.605646772173216, 4.460771159566961, 11.977733900712385, 4.810245046769452, 3.8416964379180114, 5.01790374162423, 4.488723515709362, 27.068854434016817, 6.181848902438412, 5.787212176310003, 6.715517268611907, 5.924060694127105, 4.943661210871157, 8.007100488545364, 5.717543736916324, 5.5138881854224255, 5.910120090189493, 5.230392416869012, 3.609496702975819, 7.282538567426161, 8.899444240863762, 9.555865421675447, 7.78257871400935, 9.543831247137227, 6.119478704113536, 9.273534788364074, 6.612854078843763, 6.37616393717126, 6.330600864614493, 5.926034126336297, 5.5664649350956905, 3.2280297529755404, 11.718444251779676, 6.005272339666208, 2.7236913575222816, 5.644654452155494, 5.214076632220889, 6.219201434838097, 11.982744721916928, 4.363322226270769, 7.407868765570012, 6.53387532701849, 9.705339887905561, 5.274518127785034, 9.494515799818583, 3.9026605439504265, 5.810497521432108, 4.633119403565129, 5.060799113300617, 6.09123044941587, 4.142972020168921, 5.848277073181193, 4.154318189352439, 3.9354404892868367, 3.2223311437104125, 7.777244743751034, 3.217004223916037, 2.9815600666972766, 18.221014431165358, 3.161196255695895, 3.9459870729720072, 3.702883550022867, 8.622154569671784, 3.9735404506700673, 5.981209543122855, 5.415540515980911, 11.953055466701652, 5.555104211814155, 4.911786706641273, 4.218014788930934, 4.094117969980627, 6.773103152960067, 5.026737046616952, 5.6343329321963935, 3.721841404400157, 5.285148443325508, 6.332042979593371, 8.35280433736445, 3.873091198698748, 4.54383920191682, 4.352318425528485, 6.217914028025753, 6.9828588894147705, 3.977485030725203, 3.269247635330277, 7.541327094140114, 3.675807527228422, 28.89569519989815, 21.767919010410427, 16.270253044054268, 6.858796677465249, 10.512623709615697, 7.0020837784363295, 9.55982773482317, 7.034791282768658, 10.592464332622997, 5.44809036873157, 5.435415977472643, 6.668772707332151, 5.679314837377838, 8.281008697755365, 13.602684119836809, 13.039892528675598, 12.264354604405293, 8.440083637014588, 10.684908213827795, 7.522831288438449, 6.593655165085279, 6.12249834302978, 9.063331843466962, 15.343926390389377, 9.691113778332738, 12.798590132247076, 10.103516686058809, 8.834105840479436, 7.834645184562176, 11.627456185159335, 2.820946960123353, 5.879507392578222, 5.232707344803825, 3.352694739855826, 4.972703568602907, 24.557670262325246, 3.778302021516885, 2.8246519351565316, 3.3741332050420443, 5.030736613959355, 7.778470856391337, 6.521088748905457, 18.628103229300407, 6.008601989906596, 7.038927300033699, 17.346825443545473, 6.252587573959185, 5.973711502780887, 5.0916632161836946, 10.421315170556674, 6.039142981316158, 3.985253049650826, 4.018021053349285, 7.340584141320817, 4.00772852222166, 9.294982276448764, 5.101753865150633, 5.543623367316074, 5.572383222316699, 3.2984702702829507, 9.491829345018667, 7.931917511508711, 4.716382813444102, 4.66280723020653, 5.421004406515227, 5.513252393047018, 5.775886858749223, 7.117459608062584, 5.136192888689714, 3.8836229969200566, 4.290225657854084, 6.8120273209960605, 3.93789393324461, 3.828827343472695, 5.312836660904232, 6.082757713319937, 4.8469814707208725, 5.688595443147453, 4.308076493337966, 5.277442313141227, 8.142677416804883, 6.016939871887778, 4.4635566467801615, 3.4440057233941115, 5.321674721202871, 4.244842655357699, 5.102482568854466, 8.624032677275626, 4.4723353940829735, 3.9213349639303026, 5.661463672020558, 3.448504686689122, 5.247533042041752, 6.527886696917488, 6.233200934188198, 4.818282005219219, 14.495835255152551, 6.774064242915208, 4.773625565852785, 2.4261448872358975, 3.569836603733941, 4.622779898355264, 4.308929013469819, 5.158093327142446, 2.0617196551041093, 4.996768769442024, 4.345133225848073, 12.95823472252148, 33.90673474671813, 3.5193301601501332, 6.670417883186214, 13.106789405790153, 2.684890285267183, 4.103449136103414, 4.906714745094826, 5.344148452528377, 6.834278620917567, 4.322984883752882, 5.000109550933249, 4.0606776342919355, 4.463563046921218, 8.603872606514, 5.203627482428852, 8.784431153978415, 4.746587656139065, 4.820576781928048, 4.212244576335816, 2.4585717970161527, 3.225203920386317, 3.327820501450964, 3.62936245901693, 3.056686993496617, 4.206316977762337, 7.384026359057822, 15.288491002989751, 81.16175992063492, 80.12169575888959, 47.273144135022285, 34.18986848823989, 38.935085837684234, 72.65853988369648, 43.09664234121824, 36.704438854849265, 28.931909049327874, 9.814947580417046, 5.46798416978433, 4.935729835263968, 5.255075576713733, 3.2055060247517675, 4.22589081656859, 5.745023043499441, 3.961375518820133, 7.263947664779165, 3.42435509609532, 5.458982997903127, 5.150820868134538, 6.536838048085083, 3.0016886804301666, 4.4092317089759225, 4.449448274591334, 6.096326088957984, 9.08846659437965, 6.982649907019281, 19.76244958030424, 25.50965841856683, 6.284370244415211, 7.479886932197294, 6.2556478973197045, 19.41043436467326, 5.411699317069944, 8.789882901955922, 3.700289115649094, 5.4021925984751356, 19.48599636331411, 4.689923404939835, 5.192333817952306, 15.387370872377138, 5.53856023161713, 4.470014384415618, 6.244747888670009, 3.4930873796760173, 3.535265897761152, 2.7935852540704778, 4.476909803237523, 12.948246677817995, 6.912007177889932, 4.807534105412813, 3.6195411506411204, 7.502074934470511, 2.682910040399604, 4.6949197334790345, 3.6392763970758235, 4.688541994197018, 3.3448984225670584, 4.686737694941178, 5.128267481925459, 5.76005076077871, 6.777253661134734, 3.5104329221297483, 4.196817777239702, 3.1198577904370732, 12.24507371064379, 5.432164677928918, 2.3636105521382387, 4.886843628471507, 3.467821176978215, 4.073694695029432, 4.531867428523773, 4.19518399684301, 5.678559176132135, 4.359068952734908, 4.523239213543992, 4.969275308374778, 3.8788516490523905, 5.635026032226521, 3.385996765394145, 3.2997273411840866, 6.8088898451143525, 4.095125630644687, 5.405039592895358, 4.392854202598866, 4.33102635580839, 12.66280902104432, 4.5563107134216825, 5.6730163733314996, 5.006036355708364, 9.348740071687056, 4.730657256087983, 7.337569324141001, 6.79278183925815, 4.050839657061864, 6.315357175992989, 6.7608727516907345, 3.355879726686526, 11.258501535430069, 4.7661812216933335, 4.358481229989847, 6.484756740410089, 4.492025904498308, 6.299575023941294, 3.793177091467976, 5.458036266176444, 4.7512300651376, 5.219894171133435, 4.07141191006743, 3.666160391359029, 4.267649704993741, 4.780921628863763, 6.728743391137899, 5.962497769259192, 7.576535034062086, 7.366673940470515, 10.293612660184262, 5.799346969788693, 4.898234847560316, 5.674835560142099, 8.185785399784587, 8.642667434064379, 6.23374570805941, 3.8224963084568424, 6.080618205603612, 8.873756451302, 4.992578606900982, 4.004984060496595, 3.4163289928954623, 3.4690499801556114, 2.789029120221359, 7.7954904425317695, 4.186532456817228, 14.256853088476833, 4.4310110610409295, 9.373341743481834, 5.504372603176404, 7.232406614976781, 4.04455751041864, 3.9921776299213203, 7.3565108111866335, 9.001618082210072, 9.902769810088847, 5.897197900582757, 8.762488694143107, 13.290425771346538, 9.74683727208914, 8.674603617260697, 9.785809175703564, 6.682155373224314, 6.866782010527729, 5.466983431823753, 6.323923077062753, 3.3217707013432323, 4.751808817933135, 6.682952599199768, 6.910518810014953, 3.9569143415229213, 5.70898900484417, 3.6548787102975497, 4.991029265888037, 4.884085918326772, 3.9556783235840336, 3.9429567404263715, 3.636785914225929, 6.863723715016034, 2.8707602511186363, 10.494433107664522, 5.736098996900259, 10.14841498407873, 5.709030625317212, 6.148034066080445, 8.72214333838965, 8.077315084491497, 4.972751227138091, 6.4704874977049505, 5.756402323441126, 6.326208635910783, 4.255578171983516, 2.87613843585509, 3.48734537607901, 5.577273222856443, 11.630866224050592, 8.677010950018294, 7.080056906418076, 3.993465155982772, 3.1386187736101863, 6.156863858467335, 3.914021684461467, 4.91545204283545, 6.436193831216202, 6.4386305933731585, 6.596074452139052, 3.8702068139926498, 3.9315546646293176, 5.818801321262153, 5.703124086797422, 6.585278668287509, 9.436138524738823, 3.9838411176810635, 3.990371827822454, 11.563935569378755, 3.8148149857212634, 3.663436042514696, 5.469464678649792, 3.944839972551177, 3.765042048318647, 4.555369141988937, 3.537216238130283, 3.856186214318503, 5.3022383332754135, 6.108002057585455, 7.085126926990989, 3.4723848067668164, 4.856853530549198, 5.414687888235522, 3.5870262059454054, 3.5682114078557468, 9.528643134936319, 3.0737091407367094, 5.153100184819764, 3.4171118804312854, 8.607760159483462, 4.787052828396503, 6.599074541044044, 4.975759770867666, 5.000501722304945, 5.243508099354661, 5.900163829418601, 10.78440827310437, 11.405487165044745, 4.364530637475648, 9.43407761587355, 7.398489372512606, 5.782421130755299, 3.3495516822769194, 5.925859672684124, 4.2935453445783045, 5.095418683607535, 3.0912714695523063, 8.098248288092002, 3.538152604959822, 3.7790447132129836, 5.347444823978706, 40.379641929587635, 9.178682788669224, 3.293644850668885, 3.805442189750852, 4.542636308538936, 6.06450331732959, 6.876642364992273, 4.627474968482321, 6.6763715791339475, 10.75044445951998, 5.551983708938279, 6.2737660677255604, 4.8391375101676815, 5.306710252453627, 5.768953409401189, 5.3689826160061775, 4.76017088895565, 3.0055705116826115, 4.633253085619834, 3.2777876009807394, 4.535916103566866, 3.49510732715888, 5.318870792872231, 7.6178771493609245, 4.457360359067265, 6.205755094936417, 8.475331872559337, 7.322690818681334, 6.433672541102929, 3.867309363362047, 4.4748955669896375, 3.38955140954419, 3.270835496496255, 4.738474383813802, 4.969240348375826, 7.635410007819514, 6.390878464508162, 3.965492439033847, 4.70033046140499, 3.0096354333781825, 8.487165480746308, 4.447279953339558, 3.469140341673329, 10.134263268197632, 4.121641162835477, 53.24848032324821, 8.77004426827255, 3.5394579778408293, 4.2423040223345225, 12.211793234543244, 11.249725546816412, 5.30569998652622, 4.019660933064815, 4.798841506684069, 8.940913481586948, 2.507792975311383, 11.113024671637117, 5.34167530273325, 3.4950973270023282, 3.804141290188885, 4.810450586541832, 5.449802603529157, 7.05716057598439, 11.668004923811356, 10.338072432862429, 10.124874633761001, 7.490873835695796, 12.94362379402179, 11.324473897956716, 24.114145364919157, 11.563663390992117, 8.216616317163895, 8.393513700214498, 4.451515971758177, 5.164282465993031, 5.014038552430046, 3.579545920702781, 3.9261559946972837, 7.033116581860979, 10.590025538155503, 5.799619640727479, 4.172716790267285, 7.453857154916545, 8.554055912900699, 6.86629124594498, 3.6939329581682427, 3.962242997224546, 4.816933159101818, 3.954041905007235, 7.357894662753643, 23.351413976763997, 43.193566038767685, 32.4113849268263, 23.180901022064553, 21.226775595633327, 20.857564362933626, 33.460808003374694, 42.91766301154985, 23.7317925428602, 24.49243947943949, 8.759061102898633, 7.890357892344611, 13.430402844626698, 4.129168993618685, 5.697653692165744, 5.661383167339817, 5.209566823740624, 12.62630373340533, 8.076285030095296, 3.4056545614363123, 3.832625784121517, 4.244797207550776, 6.057294638353262, 5.628911866987401, 3.0502503310679066, 2.8393800811793186, 3.965206959306568, 2.5640393537500614, 4.032250848366885, 117.9972879019129, 4.243281327111881, 5.078346016199634, 4.224986588265364, 17.035891697187203, 13.056865149485967, 10.741271040501642, 14.15074039640911, 8.990575856709487, 12.227802569835145, 10.990208006650038, 7.848251919229921, 10.193737950708174, 10.326105175446353, 5.206391986412236, 4.786348533027321, 5.5445866361519585, 5.510728232154364, 3.7619128542123565, 4.618860929602794, 3.578178333074486, 5.507155255322067, 4.722045727024101, 4.687555848856346, 3.645377253768325, 10.849498555492794, 4.436705610698515, 4.3286571717105415, 3.5309007781801562, 10.826417483108953, 10.295566865810175, 4.76408851942502, 5.109723680637298, 4.7487412937354865, 3.9472359780146995, 6.489316993786085, 4.85532318968199, 4.87781840001853, 4.7249438181565475, 5.5084002176120554, 6.014901621471513, 18.62558732072848, 4.9670828186868015, 5.691953412701199, 9.119827668490732, 18.206369454989506, 6.114696402375234, 3.0344581912834485, 3.9945127796237894, 4.562722784769736, 3.7909086300316006, 6.840499570450592, 3.9609008102141043, 3.6346141688803977, 3.2353443906073514, 2.8710496748020464, 5.89449016464259, 5.76305354960043, 7.704058125515652, 4.157589778386268, 7.479020037257518, 9.794033662375211, 12.89261919129115, 5.031833923658833, 6.271855349994621, 6.444325763910109, 5.655486075975755, 5.58175704865538, 4.293227074265588, 3.488157132679666, 9.533614025519707, 3.7577759013367893, 6.5457700674073385, 3.1064702654014598, 3.290629481148784, 6.283258740027702, 3.7034155381264635, 3.4419168989340223, 3.8625561531673545, 4.9247487468095725, 7.148395451612727, 3.8986360210010127, 3.045801704693405, 4.221347261372241, 4.893658807555531, 6.546911415754245, 9.314695531733452, 8.499089142659042, 11.11378159428996, 9.059466202404913, 5.5464475458958065, 7.073805574829361, 8.610671271311093, 7.219161328325678, 11.037841353527616, 6.22911432125318, 10.67968939752829, 3.546755859800625, 7.725648351648349, 10.949817084409784, 5.849557963261266, 3.2979528186415323, 4.2192650724585095, 4.331111684455433, 4.107303062150245, 3.267856766179546, 13.375416032857315, 2.8118938950200763, 2.3024140367880483, 4.230234862553974, 9.617309030756504, 4.108743160791284, 9.32987974830578, 3.1645558505870475, 8.781075955081821, 3.283859006519032, 4.008178743555156, 7.883833854262172, 2.9627698580251933, 2.953828234372853, 6.491851928552499, 6.744433182293291, 6.081295924446468, 5.26263924312422, 12.388463604305604, 5.930827904818715, 6.286546730769856, 2.9405915111499343, 6.646759639563964, 4.193625695457381, 4.706291877923744, 4.140504444975885, 6.349678202635518, 6.528398600820012, 5.532138965360523, 3.3985663561824317, 12.066142611094877, 9.120605947858465, 9.058409338254807, 5.367912354387388, 4.548519004861493, 4.490789811115586, 3.0974069577768377, 3.864003529153828, 4.9231988563910996, 2.9677802433077765, 3.8795272353732786, 6.480374672279066, 3.224851027999989, 4.290666739042191, 5.168789530210684, 4.280578035272867, 4.2758699092275245, 4.071819738020535, 2.59126282472558, 3.3175844051659515, 2.900487135180327, 2.865366573763542, 4.769168467650356, 3.5461815075829675, 2.848636592511421, 3.8032641320524445, 6.242190508098665, 9.603697297358295, 5.61176679091397, 5.3576691542569055, 7.913776558973933, 6.818386884629887, 10.517077810965558, 5.962936117676499, 5.130061445777687, 6.435979472606654, 7.196375955653815, 5.045662763056894, 6.714178221002981, 6.791992276833122, 4.201121002240296, 5.535013566029674, 5.692774074571361, 10.051496122727055, 3.929626598006997, 3.549550148707501, 4.696095793610648, 4.155173290905821, 7.945115630262546, 2.7084924248694624, 10.603185910525529, 7.1816810687578965, 2.750816664981074, 4.6716859933119546, 3.4402355788565857, 4.673065545401684, 9.026776180251264, 7.290550087240345, 7.235684031840834, 21.52587067497048, 11.891582315263173, 6.982679472278428, 9.936364210489677, 6.900146536524591, 5.752684525776131, 8.670687317378064, 7.15379261629135, 4.026666852049, 8.00282109933467, 3.4771359793973318, 2.9286190551267053, 5.428936539779749, 2.3337748636817883, 4.729265434138316, 2.8772153701062746, 6.2754591830231, 11.268416583571971, 8.515743542555164, 5.861711221107073, 3.5019789807078934, 4.148805794143606, 6.058234556592136, 3.6811734225357218, 5.8800249368307345, 5.326963294194311, 3.4129789883209, 7.965300542419774, 5.838556091274547, 4.255796862822298, 2.31752295558565, 8.128303196924621, 3.178308973974311, 2.557812078203983, 5.914476125384827, 3.10801581412836, 5.761344178124272, 6.224580871671229, 5.0700426113755634, 4.356092873503932, 6.935121383512396, 8.809173803937927, 4.614619950228427, 4.4880114205373145, 10.531124498148078, 2.8513430181698816, 11.778897427940377, 4.540438552954968, 4.827046805297285, 5.414916345065912, 5.832229123274316, 4.8591712990491445, 5.516816886310844, 3.290798952143, 10.01553768669299, 3.610765944033879, 8.184194307816366, 3.7556813600898167, 9.841153019464704, 13.42095265656221, 3.89364029307202, 3.9218588078681074, 3.9521171755624205, 5.639935531498763, 6.1184302215176665, 4.861130986920713, 10.216849893971077, 6.400853812259368, 4.495401130598721, 4.7642075817492815, 3.786206969933047, 7.858325615159736, 4.893482841350007, 2.7971566773570578, 10.953768267881298, 3.777571591029447, 12.181958184053075, 7.137746395247882, 4.3018084807324755, 5.613681848513228, 3.0895642942540213, 3.3402074949020366, 3.891258463291453, 7.7126376626722655, 5.41404303417637, 5.793966992928525, 4.76680438312737, 4.144125447264596, 3.641465574589822, 10.793907991606774, 4.304475255127681, 6.303546500441544, 3.259905703774659, 4.685094948924671, 5.925236684692773, 6.769418195952673, 10.50849793203751, 3.769509795120433, 5.85608183195035, 3.495876836253492, 3.7352105999552574, 11.57313382915813, 5.202742526983153, 4.740266729451806, 3.6252494688894714, 9.054895426596799, 3.7399921338279998, 3.7259422858702957, 4.36692305125374, 4.591360432419732, 10.054671086039388, 10.399573443843238, 3.5201837198169423, 4.44670508318755, 3.6311907823613914, 4.526127475249194, 7.8614751876359055, 3.1802362207242694, 4.294564708803062, 12.816830705648815, 9.393620112767872, 3.8504600022183553, 4.328214925623659, 4.943542932904212, 3.6302539051426765, 5.020596276071606, 7.32988319969261, 5.676223734149954, 4.475835391860254, 3.284058554268177, 3.579666760037782, 4.064991069234115, 4.909187583732258, 5.254250496574618, 6.023055102093919, 3.4013525205287203, 14.573890070002593, 4.709086580226493, 2.4664609902777226, 4.687056593062006, 3.770339884182626, 4.925534077480186, 2.3268440145498883, 9.25897962236421, 4.8837188990589855, 3.821547298554849, 8.219327591349954, 10.219085996144534, 5.10976854575516, 5.409977893768204, 2.3893413997458115, 5.710543639582335, 4.289831842205411, 8.00759596365895, 5.56982628550088, 5.092878171850799, 6.163270664551135, 6.302862318742356, 4.104064256743524, 5.443664250910751, 11.52308454485805, 8.724519429282093, 5.409369251155525, 3.6199475350247776, 4.535607183169262, 5.378326675432671, 7.139849732217351, 5.5137719406844905, 5.434329621090836, 5.169842253534696, 6.957806259613613, 6.818446709548397, 6.093669556378579, 3.005414569698782, 6.477795260362503, 11.17578116562232, 3.4102094754006718, 5.330840870678097, 4.085351270869611, 5.614240487051735, 6.5790786885746595, 4.5150179703896045, 5.5861792678302, 5.42327826553598, 3.616633453912977, 2.217820311164547, 4.124328093002627, 4.1725540352402595, 3.7777263932874794, 3.7732112847027075, 4.467152407872649, 10.619752563011813, 7.964243692855647, 3.651257597358554, 2.9028344061448914, 3.8996892707610917, 5.109676499936585, 3.104043872496142, 6.36608345969648, 3.55963226275441, 4.0148866110075065, 13.71444308688387, 4.479158098873795, 6.66598672266097, 6.801296457172167, 5.792378310466791, 4.786910709923775, 9.573682946636941, 4.123090846463587, 5.431927548301732, 5.325698256257994, 5.302076835378403, 11.328441492628682, 1.976065737455398, 3.0292491606701257, 2.9296728449155784, 5.29438640961982, 3.595349955738164, 4.350246375310047, 3.798584244835201, 5.110233639785407, 3.4362971597456857, 6.796654953222586, 3.7281458506788727, 3.677049967973963, 2.131363278862105, 7.028717360682941, 6.468664812349718, 3.8984581652512214, 3.6236953337621136, 3.036624056219837, 2.995728662570237, 3.389383385115226, 5.130028594838306, 4.0325725425650205, 2.5043491335872705, 4.777185092027767, 12.512031825896514, 4.048784499474519, 4.860348300668364, 6.891805075687166, 3.7716469376165866, 7.108731981705309, 4.968963954013686, 3.2563431182717344, 5.60883522277536, 6.171317152809812, 5.701689345661878, 3.9755536137809604, 11.210088235280482, 4.003084564865417, 3.0174504477244803, 13.140030648696934, 3.9194957420873413, 6.709768432058864, 4.44554816568739, 7.299886951896999, 7.071494146556395, 4.318803686142156, 4.494134882626293, 6.8844492149084715, 4.433134787461185, 4.777960597944732, 3.4313862303764266, 6.853917454626229, 26.166835930186767, 12.789868945547854, 16.38564565531183, 25.289923906485676, 41.5264684972979, 87.37830211893366, 70.54163259441707, 39.85922481192641, 28.947082518735748, 22.371422571993225, 17.98977763902764, 75.03173598884776, 12.996863296425797, 11.630499481357004, 15.771127908989847, 36.595755448980384, 30.52750279841369, 22.32193623317575, 11.10819967879539, 10.2310045798354, 44.469404513679486, 10.91709848999087, 29.0340717098519, 18.825414253123633, 23.04512544999758, 8.958034237092107, 16.289220718908158, 7.376629382950526, 18.08214035732697, 6.789802476806285, 24.385368711283792, 6.241153717782802, 8.477055735723738, 13.058481070123433, 6.810086986053722, 16.356652046448907, 14.868662838809902, 10.919140633777323, 10.365131794844311, 8.774281431256306, 12.022381928586661, 10.357644475479695, 7.579247543181126, 8.611932881884309, 6.508047959621362, 9.851305689249518, 11.340148439495646, 9.451620857306095, 7.1647201907513525, 5.353432505548633, 11.581079594242883, 9.424977638852598, 8.276933756962672, 6.663214150245216, 8.769364024493106, 7.217956885708522, 7.912629603825477, 7.7784986147060176, 11.952807885813925, 6.682242434526344, 5.853331189556646, 8.109485333321311, 18.584025939180297, 7.548907613520337, 6.249883551361549, 4.220522451746397, 7.459937731605318, 5.653036336583644, 5.409096333587531, 5.847032467480844, 6.474976302409039, 7.7256268365995835, 6.119978430459888, 5.078887069370298, 5.917033699291365, 7.719750527368262, 5.567609719050111, 4.729250912336727, 6.2255612880286115, 4.838315285031771, 4.31181402158675, 6.537415725390276, 5.213000247869426, 9.630489698047123, 5.388761784791018, 5.874521450585448, 8.235463566610402, 8.152699249500488, 2.841333383754523, 4.239775006549442, 3.4640594402289357, 4.0265460261993775, 6.814655215415003, 5.123242945111291, 8.307931947526537, 2.850739649469588, 8.323774513852248, 6.5529799944916745, 5.503995844739082, 3.676450870661222, 6.899508282611602, 3.5569274238769215, 4.456401911573098, 4.082488091132474, 4.682286024279139, 5.712245856289866, 4.125635666490353, 6.317888324521272, 5.3713079115029165, 2.884874192605913, 3.8091244958858637, 5.421303644187788, 3.6073477734301527, 3.5611946292808603, 3.44568889690682, 4.818461460860144, 3.9127761292252465, 5.29583697215195, 5.008996340195107, 20.023618800206673, 5.250680768730511, 8.839628186516945, 8.74981058074158, 4.849449455111473, 2.5526498616939284, 3.86364983351761, 4.705465937790719, 5.582850133306921, 3.2984860625956802, 6.792984610447627, 6.2724503364906585, 2.9523346115432303, 3.8920362977747627, 3.8626882562151064, 3.663422549608348, 8.974094974823663, 4.019016592824754, 5.501143428193198, 6.855356007343372, 3.8730937443865403, 3.545111299705891, 134.64845820383326, 7.712435105295184, 16.24932152079017, 8.451107452838823, 4.449733019454339, 3.9605108387637036, 3.058429777355992, 6.089661045842674, 3.0274391815906383, 3.125962731380436, 3.2120487231785684, 5.12780921819353, 4.764919561948969, 3.3591972314226437, 7.125139167177767, 4.125076546347379, 8.411789277123056, 5.194426338934401, 4.626484940882074, 4.29954339869132, 4.950278142458863, 4.473713040233974, 3.6834713072666054, 9.734665178691099, 9.963335709609796, 4.5051955271645125, 10.15872438458103, 6.819130094417793, 4.59163978660191, 4.583800493605506, 4.951260031051229, 8.590658984548389, 4.377323223659808, 6.455817971537174, 3.901408024359843, 20.561482739588154, 5.002248572190412, 5.381691576925973, 7.737661732546538, 3.4426812642865183, 7.159238968114513, 6.070287976302511, 3.6654859313422623, 3.926034136205703, 5.379547191598722, 7.886022094746618, 3.018005164892526, 4.166272015642814, 5.738118061776269, 7.5638537087635935, 3.6693639979965122, 4.618599907286281, 9.071588255951822, 3.669656868237095, 5.7697602936916965, 3.659453335296191, 4.470590654983417, 5.35337226673223, 3.8372402250732836, 5.711843446351192, 3.995905945219093, 4.345431045682113, 7.397551700937382, 5.373324530273716, 3.3073254824735994, 4.174016522325809, 4.892113733704934, 10.33988279319937, 5.226517699119841, 6.025288632944167, 4.148343030425735, 3.5865340779636665, 2.673871624976435, 4.774033218372142, 4.884364157569424, 4.27013916999771, 6.535657122332209, 5.059659743770213, 7.582989095540433, 5.370373036596988, 2.9891701406526034, 4.0134279597457345, 4.989108730184214, 3.2561432424577332, 6.515593319642883, 4.591744154984043, 4.680505987275122, 7.955503910486974, 6.084729965972776, 6.499707248643494, 6.934942807284347, 4.783628381691988, 5.01507453864628, 6.786437663349743, 3.4281579651419887, 4.700001374550832, 6.900359110443065, 3.3743687622691283, 5.735043299094638, 5.178931763276849, 13.807049301751887, 8.064929858682305, 7.368461708855074, 3.2829469939534484, 3.7158813773393584, 22.593128915381026, 6.910103975194545, 4.421472641869775, 8.362335501629971, 60.91921996005749, 56.40289508610096, 30.82570421673381, 34.2564886182445, 40.80318549658453, 22.284396687694507, 18.334304396248353, 17.567894484175195, 17.978798020452324, 42.95080294705295, 71.78799872037722, 50.70724070783343, 39.34382941260057, 36.08807261684488, 24.546672368101696, 25.150658798649733, 22.355517988415794, 20.815245555177004, 23.49685671607576, 19.614444149925475, 5.804079735431504, 7.537034482240612, 5.8510567786757015, 6.563756940504193, 2.6476257999726434, 2.9860596454077784, 23.941223863962815, 9.963358532796821, 5.127865705388309, 4.270398404268937, 5.290771383833767, 3.660781530148819, 6.345895427500652, 5.1823107309803005, 9.347576267275734, 6.66700966589205, 4.205028657674549, 16.990480836264105, 15.004869310712607, 4.087235921478991, 2.787995941901956, 5.322075081871731, 13.55650805204494, 6.555403478286682, 5.073922715276305, 4.686888263860564, 4.91907595851833, 9.629718057471235, 5.713109211008805, 5.414635617634571, 5.798930724923294, 7.231347514032144, 5.614546909208802, 6.117299970225988, 5.118855964731297, 2.734019271262024, 5.452092508612243, 6.4782203421664715, 4.392881353064211, 7.4523414969193515, 3.5641511669068744, 5.256107916164085, 7.337983414952807, 4.579069139162994, 3.9369389113146225, 4.741788073184309, 3.6795883414456525, 9.636019813149364, 11.753321742096222, 19.48602241415702, 18.60750640459049, 16.078564985833907, 25.162418125641867, 10.507119892718467, 23.28279221622399, 14.5644696331196, 5.627316868761655, 12.325629017108588, 5.910463782636333, 13.801087805869855, 6.8601248698758654, 8.755413570792891, 9.990870336811664, 7.720954138298783, 5.678960587670253, 6.204948674812142, 8.839417950142261, 14.741326851076044, 10.794701889013506, 5.466192094723022, 7.133125063718758, 16.391838511385956, 17.275884085304554, 103.73550747231693, 122.94781642785328, 84.35651404450665, 55.954533964702286, 56.20245465560146, 76.34958889588222, 36.58403716615011, 27.884112141561094, 25.143791545855628, 24.341986532705715, 22.260009565901463, 16.81996577089522, 33.021938420182344, 10.205362450726245, 29.215027232137043, 21.89874548936616, 10.71290688658342, 21.818047575241252, 9.15507956391403, 6.069674024479929, 9.441383260552046, 5.002009992224985, 4.28566132549313, 9.37375860368194, 5.8784058811861195, 9.964669709650176, 4.484199850988398, 10.850134120647278, 4.534385906699623, 4.863505899245857, 4.056596000222565, 4.208581974542134, 4.571959969681478, 4.358099041287684, 4.473212970484041, 5.59366408888653, 4.2572069764876534, 5.528171957390991, 7.1169497736011955, 5.530218703756663, 9.448154799603602, 5.156109346568625, 10.721568485943942, 3.8475132386682533, 5.7555143190099365, 4.826045341694251, 13.173665322077872, 6.376008402958782, 7.30399669217203, 3.8551624167190206, 6.83281303156537, 3.558684733687417, 5.851348522047628, 3.8508525874710053, 4.826561029951618, 3.656394639215413, 9.621924910235244, 5.133919658505689, 11.951673857519857, 10.502368106766546, 12.13363085850655, 13.88439443305056, 10.156672466807622, 12.97146612796067, 9.234352795594683, 8.270046767240656, 10.374482180927439, 9.622801591942588, 14.19899682196028, 10.653298265982524, 4.594584871076659, 6.914665054011303, 4.848607324469139, 3.777260317394446, 3.3584567770395677, 9.664654951778752, 6.527503557149019, 4.104260298279489, 6.703619887747545, 4.726803405492405, 4.2231108102798185, 5.1611491221129375, 11.5462387406037, 4.283260926216781, 7.695187717450459, 23.643456816831097, 90.20395285678372, 64.52555790407847, 42.455696625141265, 36.84526589992975, 28.733843310056386, 24.21264997441867, 20.809870466363037, 19.087852737739365, 16.78239699819426, 23.830727390430983, 3.66875174245166, 3.998195030903088, 6.141682284490941, 5.572883004352377, 9.152251455770374, 6.344584026659698, 3.5172761816661455, 5.425138893671749, 2.9511930712555725, 5.701108573951223, 3.0792489609525946, 8.080155398905376, 4.007340270739565, 5.195055873356524, 7.285760356711226, 5.979789560706435, 97.63805953744115, 57.45626534866098, 48.4481809149371, 42.35655271455649, 29.272764646348776, 24.374885709643426, 26.27156356524509, 18.172974635350876, 17.766928597528903, 16.225192839055072, 13.016360119581053, 2.685153778528234, 12.863674030859253, 3.658489522566479, 5.858355398987935, 5.164890735736547, 5.803709768031508, 4.962393161553428, 4.023481770171878, 3.6375787315287065, 13.748481900175285, 2.7594859997023513, 3.636226019559065, 3.631070054995914, 4.016282876160832, 4.222586114890102, 12.303768843373781, 21.473858051606673, 24.144777531607247, 21.213788614222903, 14.033999267794252, 7.046202514526379, 16.09611259096375, 11.109960296608875, 5.965434674042744, 7.247701518731817, 20.723253182264568, 8.304079360698166, 10.54344498753247, 6.566215048672021, 6.5367406646487, 7.402049064725761, 10.032758383715215, 6.104230657738274, 5.372707671927344, 5.580425489437048, 5.033423140141535, 12.903718556316694, 5.38243052612795, 5.1772180596503325, 4.51056228349026, 13.074502663541363, 4.507481637493834, 4.403738432278971, 3.9935197611397046, 6.717999169266091, 4.49251914791084, 4.08354750096736, 4.507556498592021, 3.4848472192728885, 3.782399003430208, 4.130510435070249, 3.541258433033842, 4.137656086153356, 7.226564766347879, 4.760768761128046, 4.507917803073099, 2.9870760341024756, 3.8933157270105525, 4.356892923880492, 3.357801664089376, 4.831794270633344, 7.361233765418419, 5.711543568799842, 10.27893157528804, 4.017027404933514, 3.55924792646651, 6.034121719164569, 2.841723159460062, 6.292520647565008, 3.33563058505523, 11.410736490357808, 4.453517680914528, 4.362974587260496, 5.151723146363917, 2.745567322753497, 4.712310713229678, 3.0438456759336083, 3.370851192571995, 3.241966514485012, 6.162009993446525, 4.959017381113768, 4.864072005901277, 2.721660971558352, 3.809725220954798, 4.997480570181392, 3.3517823502877366, 3.406300086594069, 4.554122243961124, 7.205303132491385, 3.9342291175670705, 5.02868684411664, 4.946336462751702, 2.6454949121376887, 3.598636487379083, 5.189033413178517, 4.914554030027327, 5.0113895543271685, 4.617045990403468, 12.12838612322687, 3.7810020330196243, 2.9196785362758306, 11.700756198327323, 3.5086141059404072, 3.7597441262298688, 3.8629762907367815, 5.436658103918225, 3.9967276816509494, 1.9817702593488942, 6.4993885794030515, 3.9883567271761917, 3.708655139516657, 10.49137293991663, 8.163853583834754, 11.467664437804846, 10.72988321730214, 3.4096740730935178, 5.903051827775215, 6.164309829655499, 4.8112715645875825, 2.858558360533963, 3.500321047890671, 6.999243387209991, 10.839316271105506, 3.758326187415245, 4.212183026803564, 3.6453856082620164, 2.8952893392088135, 3.0601154532199084, 4.027003797776594, 2.247711467331882, 5.058558326469395, 3.10316374293466, 4.036031781338574, 4.204298027321363, 3.421228958209376, 4.959465002129027, 4.884964428038823, 3.9995634268268407, 3.7905569380055057, 5.822108011828079, 5.352059497270786, 4.086017034899904, 3.983850396665683, 4.443495080850001, 3.875834049771171, 3.1487656679455798, 2.280751939377414, 3.1515916315011654, 3.0523818425558855, 3.734606641256528, 5.068009030439406, 3.4400272247770736, 3.9559727777812137, 9.818450045668085, 3.4087921729676425, 4.2075004320773095, 4.443998339885526, 7.396897023488767, 4.764894707914048, 3.952591241701963, 21.54718563574368, 4.68492132414996, 8.620287921888877, 5.624511564601234, 3.8746615021592983, 10.219203453308952, 9.358315857562141, 4.728992069928221, 4.062853512068518, 12.144191998844121, 4.486262278345855, 8.448776926232533, 4.952625416559658, 4.040629705596405, 4.526348529332842, 34.59733872989157, 13.678761048394923, 6.304744503957566, 7.513175459494395, 3.627435968947217, 11.153159315814479, 6.983058883621503, 5.178891576778066, 4.489687249659641, 4.879873028297002, 4.85928875439082, 3.4095621279863924, 2.7570423755615963, 4.351978816750196, 4.43148259662012, 10.931937569610016, 4.352839672675595, 4.036365001417762, 4.546002830022453, 4.557429081964653, 4.769353027650145, 5.1595773867306285, 6.330254286172295, 7.453189130599969, 11.570445777811965, 8.775855759853194, 4.449524909946228, 5.429251928612296, 7.861648767513989, 7.5886309749723315, 3.4883875885770017, 4.1694239943687865, 6.976512048880862, 3.7171004471033764, 6.686089976938978, 11.184782257595709, 10.275166220563927, 11.552287828058331, 11.431471129708443, 4.737158822723336, 5.45050025063536, 5.206258280892728, 4.117605671678844, 9.687784752364575, 5.674122665119038, 3.564377592169427, 2.5985375149420853, 3.8422955636238267, 6.287944839541794, 4.658382282567362, 3.8471350742468187, 13.935016621796285, 5.041743883780639, 4.748937816272925, 3.8240251762573307, 5.922388487141866, 4.523301125922138, 4.213180603123191, 5.395077611769144, 6.228309257700744, 5.180306167007933, 5.5506188762126385, 8.272305365312361, 6.783790445278734, 4.086037839353107, 5.724783977200769, 4.283517569828083, 4.499832093477796, 8.049097117666918, 4.579854300779949, 4.588082933676631, 4.805154347394947, 11.51836323307661, 3.981685108168632, 3.7996191020512513, 3.264020161300961, 4.961229673278692, 8.283856397124234, 3.2596195762828954, 5.138044273072976, 11.115685712716584, 15.55856163492871, 4.031813330196136, 8.36268319396, 4.227111657016854, 13.514261843711854, 6.4372709099939565, 2.8766793674240407, 7.787979187747243, 2.4922863475812527, 4.152215811536769, 13.337307225542059, 3.546165754093303, 4.9633424812631555, 5.198271453282407, 11.25140001384289, 10.386202080313744, 10.487643425184434, 10.77367300361389, 4.369652607835403, 6.83331876310366, 8.764309829776822, 12.062990346682477, 4.122026558080413, 3.9055876048611724, 6.211212886389043, 8.518673778416499, 4.744347145393589, 4.045341325070626, 3.447424978666335, 5.621065412215136, 6.502255363969165, 6.767622661310709, 3.0755160940516997, 4.505868801354761, 5.077560563126378, 3.2762409382025655, 6.64604818513808, 6.469418000107161, 10.71889198234198, 18.060625193681712, 10.354823876988286, 8.129975815582604, 5.1718957091503945, 3.3736173398266627, 4.347906257533539, 6.060221027358634, 10.065723114773217, 2.9074993672892933, 6.560497311016931, 3.795429573496836, 6.617096833923526, 5.214345601555371, 4.428308975575085, 5.313979513171976, 4.541795391045769, 4.414358929558299, 3.6607439902217314, 10.07234160108393, 4.250065593195666, 14.092812714031002, 14.601148319285546, 6.478347868197931, 3.903220977838737, 4.124680137633925, 13.017626019920398, 8.522498362185026, 18.218804592741343, 13.2140792881511, 6.880854676369332, 4.296325365045072, 4.589579073565612, 3.308105692427766, 3.9169606629449047, 4.371371787275957, 3.9993651104598023, 9.533802979517212, 7.352671125424868, 6.138867356933772, 5.5475788833191295, 5.669439620578754, 7.346025261158286, 8.605802179944483, 6.066815330485111, 4.040044457824236, 6.65178082773411, 13.237439935484309, 11.478623265768409, 2.6718606114458168, 5.503125011549142, 3.5993814036517775, 6.6984793596364325, 6.408538899578531, 4.256177819086992, 4.401474595358061, 5.750187801813718, 5.177088679284162, 5.182444226473909, 4.712762504915592, 6.229395435462804, 7.817935379019364, 5.694113787707276, 4.122296331531153, 3.5753887941703564, 3.000737595508039, 3.25979568639373, 4.875378579586246, 6.709298451329055, 4.736952452695573, 12.059883572419972, 9.293415506062566, 10.483555029482577, 6.652712492164352, 3.341978522661994, 6.18103596066224, 4.641891589666635, 7.294746453346328, 4.115404313374866, 6.79762902920832, 12.47701108476297, 5.997141443995949, 5.766902770178938, 5.578124439030997, 7.5290264160188585, 4.592256032942592, 8.909517099492383, 6.097256213825782, 6.635357173625075, 4.387067673346573, 4.825114659611441, 5.193394742162467, 4.581348953379567, 3.971729486734063, 5.886511395861748, 5.073607864465512, 4.682842356290484, 7.022798573337506, 11.605582236245068, 2.7695946125188726, 127.70514285714283, 4.415831905366381, 8.971681728616042, 5.699204405866925, 6.735143170057273, 5.452739371687666, 3.4154503544334163, 4.012416363356908, 3.853823170864226, 4.929958295490603, 12.294527234583613, 4.887356106482249, 4.311182170859505, 5.880846244978949, 10.315807191334091, 3.2263069183697706, 5.36913691700464, 6.064094433044963, 5.51601120932303, 5.913663721074781, 6.256264057302029, 9.887335443813585, 9.127998182176992, 4.101962753430916, 4.496803307511772, 4.243871246179822, 12.23187844328196, 4.3687512219770035, 5.0214147129956785, 4.14372879220892, 5.0781298434456605, 5.932628907858088, 7.307616668314092, 6.17460440084009, 3.9938084076307545, 4.554789303461954, 4.99001816109523, 7.653952453328838, 4.98001855685965, 6.400754084539967, 4.810436746165655, 4.592106685848783, 2.9278696508554374, 8.126469458737414, 4.694179486941826, 3.7415637773368418, 5.61790352896365, 5.364654375702865, 6.316694850285746, 4.582397098915506, 3.6200107072772902, 4.547382645537728, 4.107520881846356, 5.203935396206925, 4.534689727775025, 4.7660728935489205, 5.131493578788, 10.796912133553217, 8.318117524626983, 10.83706011088134, 7.400265822679007, 5.155223133923368, 5.484057883982499, 6.190016890087863, 6.946990518984368, 4.8610621745672695, 4.110583800480437, 4.500214757158683, 37.05931105340642, 4.068150579901071, 6.147206965430883, 4.557984622350591, 2.991310709771509, 7.082202600465826, 4.158978013183757, 4.299616108544175, 8.652960531153138, 10.509581713171546, 10.968449770838378, 7.654035518681862, 3.955398121747926, 8.669140851264522, 7.075828403128268, 4.773041046594346, 3.9233108426095713, 13.857702972749571, 6.729005799582022, 18.07473057381976, 5.298169456158718, 3.8470158381881374, 6.045606918402677, 5.02031359984401, 6.886341424882115, 5.164325580194136, 4.966664697031528, 7.354738368469248, 4.927582846962245, 4.189604646474865, 6.11759382247767, 9.758815065986965, 6.562445630825921, 5.205020201457215, 5.663995673775046, 7.937460757406206, 5.213420074765846, 3.253717956316276, 4.936117275403186, 4.904792145479704, 7.264654822785946, 6.319564572947598, 4.749737091885849, 5.480307867954898, 4.6847044659671075, 4.457298427938921, 3.657808980069064, 6.760406010709349, 5.218999830259247, 10.721409499706908, 4.314392594540699, 4.152767995705854, 4.81284739957971, 5.299800340098702, 10.409182248589588, 6.566254669080391, 4.661203408407659, 4.008644971539549, 6.642241508524578, 4.849486409009709, 4.410845388999907, 6.903102451343121, 8.717543681808388, 4.401047426082365, 5.271391045782525, 6.309341196244283, 5.3094158654275185, 3.6822473422575537, 5.842444080546465, 3.6530760228426544, 4.554533556974809, 4.585588729575738, 4.6945690921262795, 37.30715138271522, 4.68510099665713, 4.270925488645555, 4.019185553556645, 3.3247013598277295, 10.677796077689774, 6.8111519734567105, 4.585907740806346, 4.730996416307416, 3.9032174307029432, 5.182031805691673, 8.945812691936753, 35.8496343139619, 5.300523128837613, 5.742474451171174, 27.045537244755398, 7.09389043946882, 5.473733778550882, 4.661176825485289, 5.083815626418446, 22.957603450358874, 4.436331023838476, 7.9215249080721, 4.68759293053904, 4.617615584856056, 5.437782764848268, 8.716034554173632, 5.401525710853648, 5.400752209857197, 4.365338211667468, 3.93097762303699, 6.568548176845871, 8.196670246243263, 5.989130476110207, 4.6095804016116215, 18.42671696549577, 6.785510065677755, 8.573615048492872, 17.250883088788196, 5.4158364393782135, 3.7953074448686293, 7.252141791307775, 6.820297732538278, 4.117991333688098, 17.59369345641635, 15.457886028557176, 6.180317583866329, 4.736313717844264, 4.590653962845408, 13.430869738767404, 3.777177809331479, 18.740808566086585, 79.83811879089177, 7.070632500254383, 4.01218437771908, 9.495402935828404, 12.328117229261963, 5.840049120569402, 3.2540730905108903, 12.118053030303031, 11.377032882256112, 9.462930863580858, 6.408361359634077, 4.807144084058452, 4.007808916734645, 6.924462958137499, 8.834140054466086, 8.57228828252939, 8.239656993838093, 3.061436043113447, 3.4366656721602657, 13.976049125883586, 8.385556369196502, 9.45641079925826, 2.5829643514125427, 3.789001989036314, 8.019318084752674, 7.155125099262481, 4.034108144049698, 8.715749626208783, 4.2241339484380145, 8.494699534294687, 6.336582999831187, 5.662550612944622, 6.447407237463286, 5.782163969923172, 5.398058666705703, 4.246240884966601, 4.169518055156692, 3.059091372866575, 5.445725617916011, 5.2875659438476275, 6.021423833915916, 3.4687071442714434, 3.4746965560704344, 3.5096804726495865, 10.870591409448632, 5.076368673446945, 8.145211247765651, 6.25926420099374, 8.638209607077975, 11.132214411083169, 13.345452702279474, 10.756425703864075, 5.400462030388833, 3.5832517583054515, 3.152222615552906, 4.964784897082855, 6.110859467578302, 3.182690083179853, 4.882843798880413, 8.164236499403208, 7.495423021885651, 7.867238545504675, 2.8067683481804577, 5.238970267594764, 5.274809401102599, 2.729082568013665, 4.39666761280685, 5.026438628808857, 4.103216049805075, 4.267363571009972, 4.529829465963718, 4.078550871348057, 13.298321579875589, 5.871758466500445, 5.839386000918414, 3.601628697791418, 6.452935028539557, 4.049526993418313, 6.095569995405306, 8.520239137283879, 6.454802043983154, 4.814120817515134, 6.009723949646852, 3.8448090654914684, 3.4471610474272065, 5.523540893576536, 6.910048679946052, 4.338810003596738, 4.8881547867823345, 6.043059059039229, 4.843744650218355, 5.888943155298078, 5.30632419566908, 12.2875714937484, 5.9122079447084275, 4.460995727784001, 6.109660443481101, 4.619860237683402, 3.810679814185858, 5.144332488196054, 3.251300205487277, 7.984643115494, 5.890595548337604, 3.073495546877225, 3.3439962482532692, 7.944251934229541, 4.037814113558244, 5.094999774140007, 8.09617540291507, 5.455858429468635, 10.365397594256645, 6.197693746358126, 5.019873180904573, 4.09778108908121, 4.919984830018823, 3.9614762776158496, 4.005244162896032, 4.794784043297087, 5.061968115312184, 3.9262738243813806, 5.15661534240011, 5.331097790529717, 3.925129386315767, 5.664104272044988, 10.139738477953648, 5.31716199579517, 9.78167331981031, 5.330642029421084, 6.008236585052887, 3.7109778476065034, 6.139948782052823, 6.292816748615896, 8.580571489600539, 4.592401476548643, 6.565318206271491, 8.200101487633546, 7.471369957316454, 4.808087514951606, 5.682195843712524, 3.8151005253832477, 5.720895291553481, 5.256608304497752, 3.268966608973709, 11.29106322414762, 4.926862462669211, 6.431138873481965, 9.75095628919649, 3.961121737505761, 6.938325473720796, 8.371729475234565, 4.32464366724819, 15.52923896601185, 7.333993733405443, 6.89170843263426, 9.790733782458242, 4.205380078979043, 4.19539356778767, 15.233476927715236, 6.885749159074817, 4.460932718952252, 5.439991421227789, 5.041621688822035, 3.534167748107842, 3.7128492537500355, 6.635544380044186, 3.5961207019476134, 5.351578457888941, 3.1125655583711116, 14.518978921698462, 4.548101582646618, 5.918787475337137, 7.964817364301721, 5.683186077705434, 4.603352285360278, 7.469388823612133, 3.301570065876422, 5.140647267655774, 6.365597018895001, 6.763468244611985, 10.653234329793152, 6.7692368004347925, 6.870815937296535, 3.768463898055309, 2.898574603612576, 4.08524703783579, 5.996352452698166, 3.9044781749102175, 4.755453441359648, 5.42874488574537, 3.5898556124109557, 4.603098647732493, 4.3792273059979046, 4.665024329673173, 3.5710528562373893, 3.562407710639317, 5.652774044794637, 4.235446450075868, 4.608651368086365, 2.4234796877599574, 5.929705863313443, 7.2219881033018805, 5.105138851695517, 3.2823024506937637, 12.020128880278644, 7.5253346734126625, 4.888189543712607, 8.711582705251478, 6.6848912528103694, 3.949001717754284, 8.846326355495403, 4.469895528902415, 5.95512635384042, 5.447668165181986, 9.306320517551354, 3.4435483473715167, 3.8522530978274943, 4.13373971563726, 2.7289291735838894, 5.454917059421066, 3.276197197599347, 7.844719722064198, 6.703783652241129, 3.0299445818726016, 2.897997094312212, 3.5201248160719794, 19.685364016219324, 4.929463526225231, 4.578470488220241, 6.097549223362967, 5.536453164395425, 9.2897377714946, 7.542267928446039, 7.043091834865545, 9.453522281153568, 7.750931157162313, 10.659385934284153, 9.615062178991623, 3.5308672043355336, 4.846755895308414, 4.815846327785058, 4.222290369684416, 5.447925666767714, 66.74385997335992, 3.6980272551924123, 9.187566222768421, 3.6813525536946945, 5.057133532702504, 3.3268608824178205, 4.819602250637507, 6.579962097589571, 4.892586329327567, 14.281855804793434, 5.844846322492795, 4.933137746518102, 6.190910195754022, 3.410470059330907, 6.6031485763843385, 3.1714525889067833, 6.86354509318079, 7.815352346036995, 5.376551531812274, 6.28612393517338, 3.612191036243578, 4.358996536517472, 4.1534764369403705, 3.204299195891381, 19.069548451238173, 3.138832015715969, 3.5242084726947738, 55.929368136249714, 5.126830178903069, 3.465902533935181, 9.683631450137636, 5.234759831749462, 3.440520574439127, 7.309622371589219, 7.123419375140524, 3.913581558696475, 4.091346775981172, 5.53910309054012, 5.862770091692748, 9.418004021310475, 6.309226852040219, 5.456237084739651, 15.647563625895827, 3.847478083181414, 4.741479150101254, 13.345608424554575, 3.361911677495221, 5.635997708017919, 4.4038817943316015, 6.126179836282755, 6.48792877682014, 19.707999489988214, 4.521088375202011, 4.014119945432539, 4.2195314042646945, 4.18265681047444, 6.708058744976546, 20.49037122818702, 4.626097854192802, 6.192240211946873, 51.089396343399265, 5.532372032029225, 9.17512893918087, 4.212125917186143, 3.9331359344513284, 4.203731286075095, 7.805756582472017, 6.952289597395141, 3.842281752662297, 3.624211509711248, 3.0734912822077964, 5.702274362563298, 4.560115039982396, 5.080452456202485, 5.938754917291392, 7.655357870778433, 4.344708987558029, 5.148640073296803, 4.967405716381572, 23.434288489201105, 21.020550186011317, 4.012498263237724, 5.5719557368661325, 4.386787621868813, 4.469318572294725, 5.503047877790556, 3.8677701236725603, 7.217825300139824, 5.045735710676913, 4.519007121767607, 6.838758027543351, 5.9875584105159945, 7.239443532120885, 4.847865054129364, 194.54636411627592, 6.552341312495284, 3.7573877564193805, 7.551030751081778, 3.3299069134526804, 11.013764003673119, 4.721959561972612, 4.684911531289991, 11.376508024068364, 3.4198161657822377, 6.794099793083625, 4.682794179254432, 3.619846127654144, 3.0027342488935997, 11.896642539521775, 3.3735896503113434, 12.194583658487664, 4.499342383288099, 7.082937335498199, 8.77048870073049, 7.635016902556077, 5.020083359751403, 6.0046519357184645, 7.552672141540354, 28.63884458938032, 7.7987975663882585, 5.11705483221099, 6.551391443117158, 3.356511099644927, 5.504759373906541, 8.741114512023922, 4.63171220211277, 5.950670506891302, 7.089003517254158, 3.6714373141316874, 5.594690716545553, 5.891611504466102, 11.277322587896615, 7.8542151514202665, 7.234394300031116, 5.628727250322352, 5.643242277404514, 9.996908656434728, 6.02096548887522, 5.443016877040802, 9.710948919632088, 5.140960719308897, 5.728519096068054, 3.4452059783685187, 6.865840198140117, 8.63302810590147, 39.78884538815866, 23.17769134599139, 76.42910299494554, 18.269543785893525, 98.65396296296299, 78.19813913043478, 52.02088562896421, 47.4575913165266, 37.70979374464435, 28.360540481570087, 25.948283244533247, 23.164356989425283, 36.815831609725464, 21.52149318078611, 25.261937730266606, 22.276882666585227, 18.000735487482, 16.92860771405237, 19.64293492952244, 14.611079211441812, 17.241894443494683, 23.348130059289144, 12.971343733982398, 21.253196840435553, 13.183162137616169, 14.753087129277935, 9.747112894328867, 12.412713249538166, 13.959648246019182, 28.459988005990283, 10.360717169986934, 11.288822042001428, 8.319169391974166, 22.611520815399, 7.848070940277974, 6.832027443969593, 46.9825474521627, 7.113788008601319, 9.398714661736381, 6.378847070820807, 9.615580543258814, 8.843671386370616, 7.663337051292013, 14.408421807549793, 7.6794012193047205, 6.0768401004921015, 6.994574407435962, 8.149068941501552, 6.653138525186848, 7.2091438287895375, 8.265729373326138, 12.131217148330215, 6.67812813564096, 10.514151511254806, 6.87138072154139, 11.18641254304209, 19.295320621055353, 5.078548500613465, 6.657756517655214, 6.2059798737542335, 10.795046083408431, 4.849269310301265, 5.690406695903422, 6.33848090805911, 4.649759421574422, 4.501285195323304, 6.01398675403614, 5.753566866421335, 5.436410718428781, 4.900023615200365, 4.06909400927974, 4.047090909254285, 7.121251804401358, 7.788900649145725, 6.367277245233264, 3.9400220777008976, 8.50975558723783, 5.065242463074951, 10.284654098452608, 3.4426986251126954, 4.2954694078945845, 4.501249566038058, 6.759768840296699, 7.543774353585624, 8.794996032440455, 9.312124446267978, 3.3800548112592925, 5.093550264441654, 4.574791600404103, 3.923251138557541, 4.724378001138602, 6.605142290733012, 8.88187336827482, 4.687424259165111, 3.9919993777606915, 5.348873337950337, 3.7904596318570656, 4.4708133126285725, 3.075957526639951, 3.8999410089908637, 2.9640352173250095, 3.240551977174114, 7.314926478476966, 5.24014320665656, 4.935883888986713, 5.140598401139809, 4.281968922028165, 4.718617506318527, 3.6405181495518777, 20.882397811481887, 6.813718935885376, 3.531953687506111, 9.42106975027583, 2.8306514166630428, 3.9759526538525, 6.173815448809789, 3.861205342847783, 3.2897312717737046, 4.517019038195516, 3.8899502752150683, 8.334417482290977, 6.608152403885019, 18.074520646267185, 5.1595346013824726, 2.728744879979514, 3.8040820069307464, 7.077249007885962, 5.901931299960366, 4.976158089152058, 15.920845842134689, 3.7448623428867607, 5.372939931081801, 7.346274077851557, 2.5891918636872675, 3.8940394498568924, 5.277156203876482, 3.694656300822643, 3.4662861489416392, 8.467501293134571, 8.665689677463856, 101.34615295815303, 141.12498285486447, 6.049736012655683, 14.31036729689766, 4.366026144651207, 5.296132040787672, 9.853097228929615, 3.8121247734229837, 3.0035617038414473, 5.149079893859931, 3.4604335293783306, 3.108116343246185, 6.654862082426094, 6.287708910523172, 4.111411369791209, 3.1958616786073346, 5.899659081238211, 6.292183617854634, 4.199026902960479, 8.891590196582877, 4.779807179179641, 3.555571817611655, 9.216188153822962, 2.7860160194645593, 8.494066681695012, 4.078269453642043, 5.652712330957996, 8.910191928280167, 3.938194886415462, 3.439745008977315, 5.273488409068223, 4.03076746634519, 5.3864300827778795, 4.00095414776589, 6.442760974051333, 4.604204618479919, 9.375237989398391, 7.349426675957358, 4.259705545488058, 5.709715617331913, 4.115310809753846, 3.187983304377108, 7.681503874839924, 3.4439005507279217, 5.092758036084431, 4.393182389108533, 4.526682983806372, 31.74866303269147, 7.6917941676562105, 5.277310396360276, 3.7349295823392015, 4.470797545501708, 3.462916590801898, 4.437393910677703, 4.369200427396315, 4.037223194356242, 9.671450052953473, 3.6283266277663735, 5.509229303210008, 4.716993474278585, 4.915787273159947, 4.274166012072166, 3.8029055296827625, 19.935254979669445, 2.9239566971342565, 5.990464776912009, 4.800636226884534, 6.416653854238941, 7.291835650629515, 4.522392747053795, 6.236061776923479, 4.305086961112699, 5.199150001715412, 8.423467861877262, 7.354651805215643, 4.406524392502986, 3.0317526726435564, 6.11291666197377, 68.81010731751515, 4.486656649783009, 4.932937153142398, 10.623191406078565, 5.022228091667005, 5.585551509910783, 5.354666838515114, 12.198756590381654, 15.218684111289091, 4.088727948552486, 6.012229685740836, 4.2014117269193525, 7.149723558644995, 5.9459402299922255, 5.144546138192385, 4.64338112427173, 2.952624677003192, 5.47808300113297, 6.720618299896101, 4.118247575810728, 5.750893055505827, 8.279320423351319, 4.11073340567488, 11.619454185644408, 8.334953543860452, 5.382440839398964, 5.156146707914, 9.56615550086115, 4.437118245474945, 8.910043788756, 5.510667082012987, 9.564513510161929, 5.414819696543176, 4.898235557253713, 3.1889142965949806, 6.393299678517549, 3.054473200961578, 3.562365412841322, 6.220103346627898, 8.585717766618313, 5.199031532660871, 5.573708339704952, 8.085685310045093, 3.4057883102219746, 5.4836172023666006, 3.7925939451556685, 7.873737960857357, 9.410778334415365, 8.842481794380829, 4.365786037540965, 6.005214348696748, 4.902932400048025, 4.997491830306254, 3.9987975922798915, 4.814813091670914, 4.307258999397601, 3.263688819090503, 117.90764616755798, 8.754325972785617, 3.6331094683885787, 9.981990128186466, 7.3224248224324135, 79.23558730158724, 4.03461249731391, 6.238506870698563, 4.2671626065005315, 12.375799222138447, 3.4205720000888347, 4.041049316001799, 11.591494965859317, 4.513575078922171, 4.531404998737207, 3.2566821637908685, 4.6494694070898674, 3.9950255736990625, 6.30521755677357, 4.46645329407391, 5.187555940890462, 5.532966154522326, 4.4747918581755135, 4.946997448275535, 16.624798952633984, 4.969950962311441, 86.89871467829558, 5.998057243082825, 5.109405002682703, 7.169749873758856, 8.45496405775947, 4.067958543262114, 4.072586352416629, 3.266772839539427, 7.38698398498576, 9.469892460864486, 7.5198453627442445, 8.782885927680638, 11.311306393097354, 4.847459801257408, 5.771355410903192, 7.145883314686055, 4.376072996510713, 3.1396230902655238, 6.183202333541176, 4.11468948814485, 3.1629265214747786, 21.00261174132436, 7.001466724953775, 6.055131712670305, 9.119851943813426, 4.437946920206227, 11.487640130694187, 12.137746388204551, 9.987110692771454, 4.62076176618857, 11.814075548896207, 11.031419096823159, 11.00992546763004, 3.0316551757592456, 8.422286528339482, 5.065771467983731, 4.29945143677943, 6.580925106622762, 7.358347454882323, 13.129807181554035, 8.01421102314073, 6.6326555761666635, 2.941311204301566, 28.22558288662923, 4.508748239844521, 9.126161545681862, 9.074507603316912, 9.471901804950445, 7.771525260909072, 3.04067525612744, 4.887753354988989, 6.445365848817534, 3.7206311793629427, 5.047645827883827, 6.236885600823017, 6.216711412623359, 7.938313303084833, 5.72440186651745, 12.009734984989489, 4.497228977355436, 45.836660241090264, 20.268235280439654, 3.7873958525410507, 18.418774292324184, 4.9471855504076006, 5.250217123866342, 7.480879743517967, 4.922243105990852, 6.113345627771171, 4.144777061545624, 6.053321350069733, 4.638725776387468, 16.210796706006864, 5.706507047263568, 19.750262255927275, 3.948429656605539, 7.200746648108969, 3.171336815958569, 10.22508503152483, 3.4800519116619575, 6.021911894507384, 5.521888067008549, 16.403074900851784, 7.2408918834568095, 6.621838815324503, 3.7190860579047733, 3.877184392254301, 4.241403339676461, 18.40761377982087, 4.4580805146239095, 3.002957267058065, 4.726483730959114, 5.834087839668242, 9.465498694387675, 3.431422493235044, 18.017486255080254, 3.1916084286361537, 13.403920988255733, 7.363583415861885, 66.3921405193303, 3.8260579545711964, 9.959674716476682, 7.590575635678817, 7.2634097115689285, 5.40509794227423, 6.541877256229318, 5.3380249405119145, 10.796536006538478, 3.399656342903597, 4.031467130931851, 3.5700867308226765, 5.682921307373815, 46.09219693205344, 3.723094787944983, 8.449030744818595, 6.685791940115475, 9.232440412056109, 7.6537032039514195, 11.145887322265025, 2.8123557601877787, 4.62404179558715, 18.429694814954207, 22.68563332819193, 7.2266553635736415, 3.0514482309518574, 6.081178160273486, 8.392483553323826, 8.497134064672938, 6.628649373986656, 3.034494726719809, 7.44713932103304, 8.851560064012968, 5.431757174294431, 11.79879240772199, 4.347055025434667, 13.742630995704468, 3.780619080875498, 3.9914673590039915, 6.9880126766899995, 7.016906310494307, 9.281863208877008, 10.437163052081205, 5.400792114928417, 5.135065644724746, 7.637586051652445, 12.075736492997791, 11.733450731517658, 26.77727418147293, 9.369473196475145, 3.604456772638398, 5.407011164876189, 4.151273934906471, 5.9097323920467275, 3.0676701565259794, 5.6907244386945735, 5.009767733748697, 9.775216429600862, 3.5536230350753577, 5.6731040101033265, 47.619207449757155, 10.61580049808869, 3.522671344681467, 5.480957190925553, 11.207561903594376, 5.060220430842913, 3.6290719443536332, 7.796448009996406, 5.479933122167153, 5.221668400328849, 7.063464072319069, 9.59834653908761, 6.14685265349147, 3.4473905838828283, 5.961918707622232, 8.92320713625661, 13.07525287591829, 3.494520761183736, 7.1796330961384465, 3.698161809067635, 13.118965654271381, 13.140285467470601, 40.64875245268297, 28.104868634002802, 21.6840301865156, 26.052869593539313, 16.012479332614788, 13.422718611358118, 13.636795304663755, 11.873978410308528, 14.837476362148314, 15.94016204363829, 12.12199412567023, 11.060161280378965, 9.96258675951577, 18.381163507288072, 11.567119255007565, 7.27691661214452, 7.001344891358053, 10.12836429878761, 7.348885465628609, 16.425164229531628, 12.208432099813507, 9.183365193053762, 6.33089215887863, 10.407883099583524, 8.114824154114952, 8.162914931254964, 5.3542371300482525, 6.3644469491768, 9.486182685312762, 6.74050177130128, 6.24997450257428, 5.6264579849248255, 9.547340654144671, 7.141489942541631, 4.856947039534095, 5.302338136021504, 10.206153303177976, 6.976378206908593, 7.314297275616525, 5.42706963725551, 5.421084144954468, 6.063686369706171, 6.122579103763441, 4.519307334693577, 4.907806700467149, 7.0990852426813325, 4.050086799309603, 4.056281314645742, 4.981001823665825, 4.772640148903736, 5.694198476547388, 3.6934229386383146, 4.673538032504259, 4.15784748320734, 4.513641448839349, 4.8329619135552315, 4.229698757733062, 4.322974551245265, 4.374565359587866, 6.425291387553448, 5.114720665208164, 4.486940746346355, 3.1984286860926754, 4.607320458772848, 3.8780839274629444, 4.931569686301449, 6.3427669117479475, 4.372273675214234, 3.8266717151020315, 6.571346898477542, 5.270446476909732, 3.487532812558693, 3.4471949777694095, 5.418864109028912, 4.873301092897887, 4.289489131176629, 3.2476371711871606, 4.602661663771795, 4.541441912251352, 4.9341943589752795, 5.126900118249263, 7.300111743498603, 6.5876078245562795, 3.0238580303051017, 4.625533944896373, 5.728371874693933, 5.319359093254487, 9.269275820388598, 5.506230007846682, 4.7528332391656365, 6.539616607230745, 5.549512671985736, 4.984188488603164, 3.4896051104820818, 4.570602201612819, 6.721109278357418, 5.25723953294153, 4.277532141804364, 4.548764394016746, 8.589882858503655, 4.164152509662289, 5.938057802311893, 5.3894882504581325, 4.596139182612475, 3.097625010490202, 5.797791889216424, 12.045343098482176, 4.179176256346949, 6.526910326698817, 6.405280892448512, 4.100495960119018, 5.131626461189443, 5.148489560726143, 5.290706506657107, 6.213844331267601, 3.7264775950862754, 4.200150007342997, 3.6020115005348425, 5.358052903652773, 4.818672932811533, 6.4359792474588176, 4.042639873333031, 7.412583744546872, 4.531659970500203, 4.41427078325254, 12.039848490430122, 6.489904588336754, 4.550551219653236, 6.76081701756208, 4.282546159450941, 4.771192572094637, 11.983121177489876, 4.522337580488253, 3.1119029120288726, 5.279984495490276, 4.7555835995608415, 7.137551750911353, 7.125299984090367, 11.047894110848627, 5.2176980076284964, 4.3442382407094975, 3.144775665583621, 6.333530479034577, 3.835281873141628, 6.354890097576804, 4.468782704102202, 3.5475127397150006, 3.9357194600729355, 5.520013290111996, 5.284620726684683, 4.0359460929187785, 3.848898799926584, 4.334695077776681, 5.362053932620155, 4.191292173889118, 11.906544838717577, 5.581626255896702, 4.089067692093307, 5.5682742618605205, 48.774479671457776, 5.874075130222324, 3.842766100727694, 3.853055665308751, 3.69329023690356, 3.1711816361309384, 3.6247412898569156, 5.528813446566382, 11.69048125021612, 17.62233976987924, 14.950747318041442, 3.733409644708319, 4.1950434678734, 9.491773977701136, 6.5178105587079065, 4.196139440052626, 5.2983634982930345, 3.37480900347819, 6.672215971332455, 4.848482413304321, 5.477680850750789, 10.137242171293861, 5.18968398125259, 10.467480757582797, 7.305963114693764, 6.098748302468246, 4.004721865320585, 5.741785465127353, 8.310364022342407, 3.504289823479267, 4.258610262631926, 5.807932680400068, 5.84381497650607, 4.497846908159907, 8.715036333455103, 3.6915093680451676, 4.179097759996802, 7.878837151951822, 4.2438443993673705, 5.635343861800109, 3.0457311123414508, 4.278891729079332, 5.926091635576615, 4.17010373406967, 3.648495059636465, 4.308044111160156, 7.427157323232323, 5.013837813550464, 3.7609647457815005, 8.288071758850915, 5.6968686769547965, 3.923879096106179, 6.914690036535813, 4.4773895605168805, 5.655565642506547, 3.985856137481401, 4.898425222931904, 5.377268749343882, 6.0616590234474845, 3.714142080773507, 7.303303808105301, 4.23429986952762, 6.403490782565528, 4.711499673047894, 11.035373479650424, 4.183826773449589, 3.79359757404551, 4.10608025231292, 5.1294925446714945, 3.9710759824021826, 6.971842184215113, 6.269705059078782, 6.072151709107813, 6.59189779137593, 4.510392175503666, 21.51444765826915, 3.5137500830762787, 3.791834980122386, 4.967982840674406, 4.9124481166370035, 9.313693622547262, 11.152878247076009, 5.388774568527348, 3.001335818601804, 4.260916928406437, 11.557405743474892, 3.664682980318907, 5.786646984203133, 5.277662013909985, 7.0108715232756555, 4.592389012855516, 2.4161267058174545, 6.215437405282751, 4.836079237818041, 5.48359357449188, 11.052049817828339, 5.74065220948755, 3.496827192064865, 6.953240138969628, 5.052118674477693, 6.441308263018946, 4.860891648671334, 9.273087783163076, 9.793880509153677, 8.87951815681139, 5.419036388207658, 7.662555892221715, 7.535466316663721, 5.169220545440828, 7.507967868948897, 9.201070292966154, 4.512523242806742, 20.99320251415251, 2.6303826912536334, 7.200138070865108, 7.7773505320760865, 5.535578144987582, 28.74088495719848, 21.67033801145092, 5.502277081983743, 4.283459861799783, 3.4751673674210766, 67.99217634532448, 4.8869428896780605, 5.739864215159682, 4.274091650939495, 6.331110048724786, 4.2220957938186805, 4.939634161630781, 5.2296740681420015, 5.908676461086492, 4.16983116134295, 4.198953689703024, 5.80167648163266, 8.122095221872243, 6.346636977269704, 3.3775923570149464, 4.933021662809194, 8.388830546667501, 2.667459927410034, 7.209214759763732, 10.32729198749372, 3.8479283739715875, 7.2132469682862315, 6.510944850182905, 9.705130000091328, 6.692323669308472, 3.1080874375031837, 13.718545074283773, 3.950356194821662, 10.086150519882532, 6.651274646838016, 12.377711145703632, 10.680078894700868, 6.013158228821044, 2.9699336558267944, 5.628655459475253, 5.5343842182995004, 4.626926423654167, 5.723737923831094, 3.1223401806821656, 6.775062254295743, 4.979028260317553, 5.348431801483546, 4.441525521787143, 5.894153638670974, 4.78528984825038, 7.104859002402539, 3.669548295650012, 5.14386676416353, 3.997881796793756, 5.315082701085242, 5.105795566908968, 4.421253517111596, 7.181874682919419, 9.326700992228227, 6.561781684193147, 5.261632925566567, 4.5479548933987015, 3.630905873329497, 5.403329047050584, 4.079374831653561, 5.849146584900685, 5.394530703694989, 4.692741299879881, 4.6050613559010305, 7.771065685475236, 3.883186399287694, 14.041092022023637, 9.207276011344968, 8.932723251805092, 7.686726532992079, 3.644609300824512, 3.8202269412096155, 6.1014839949406925, 3.4431648021083876, 7.0748964000046834, 5.426099010074332, 5.623912209614695, 3.1548275786188995, 8.863056110981859, 3.856699701609833, 9.165167487429768, 3.6956820005893234, 7.20985910182366, 6.7766319603730585, 6.216960128733629, 6.047823691586556, 7.20894527586307, 2.9737793164314015, 5.431286971383563, 8.398673430169435, 4.425116553648234, 3.3542995248035004, 5.784149234553454, 4.34646254400214, 5.271912141818064, 4.394058417455599, 164.35587454212458, 3.7616849935350354, 5.495272786562317, 8.649275846985427, 8.455605334055353, 27.543158258046308, 3.6711752074961126, 3.7650308006955218, 4.310792261749654, 4.264411926323589, 5.73685269750594, 4.649406708194221, 4.300158407579924, 6.151363548919194, 4.381434633802468, 6.9524734883692165, 4.719682338278651, 6.1116460693611545, 8.324814735547282, 5.476189879066308, 5.536595215879685, 3.648707961910695, 5.799035950593586, 4.285123735867128, 19.974331810229547, 17.353506761567076, 7.292981160887399, 3.463317906125889, 6.551691715835191, 5.32328506769948, 7.699049467382166, 3.504495160676313, 4.389740939091781, 6.251562547674845, 17.704407429518287, 4.185882406800201, 5.752309961685483, 3.3944908574418826, 10.994412039161212, 4.565403525684166, 3.8772565445769667, 3.847669991260907, 6.252486833530382, 4.851351201173387, 5.339683889566926, 3.8893956926362656, 4.240315494370848, 7.5037377261556255, 3.0086648805112537, 4.859232483376755, 4.997454326224077, 5.947315627802912, 3.616367965003213, 4.211747190167699, 9.566078894041235, 4.635811788214374, 6.063818782178511, 2.673919747407963, 6.662163279671014, 3.829353395195953, 3.8838632029277704, 3.832344583174974, 5.410176453258998, 4.102139700097934, 5.6165808755625655, 3.246074297378931, 5.641493041532741, 68.17872970820179, 64.9885552553984, 49.13981470092035, 6.466355543291668, 4.019186857145737, 8.506018441001212, 5.5513308694846915, 8.617185075594728, 17.950740909480572, 9.51366962443976, 3.5878499474633943, 6.754028299160566, 6.486030194902494, 10.241956622811951, 4.444200064298322, 5.529014258441079, 2.722850613801493, 5.369997574958349, 10.341507961173667, 4.552490246009857, 8.615206366492707, 5.0550804688632995, 4.898291217037045, 5.874059281644244, 5.353330445251044, 5.433323605008613, 4.362495289695307, 14.644377563438974, 4.423879493947151, 5.676949170715111, 3.4139329396946163, 5.409236057686595, 7.755988636205383, 6.218270969601019, 7.593941285553882, 3.2741777778095065, 17.051851449954707, 4.720478922451994, 11.294481353556199, 6.7977080567178, 4.6865766779129725, 12.568662093004388, 4.386658700725809, 3.9276561358581064, 5.964052204745545, 22.747786618826805, 8.968800686161229, 13.137686773034993, 3.7267241816830152, 5.443839599113833, 6.942292289961381, 6.7140640411449874, 8.704150073065613, 5.772166048474609, 5.185121235208054, 7.413449098382464, 5.3921491888334225, 12.655876780023027, 3.798028320274708, 7.017270281769812, 8.845493831909954, 8.329481150555083, 6.829371180779157, 3.2818334375509153, 4.887243498957046, 2.854093771359077, 5.815353702333755, 4.820718483373244, 4.566466259541406, 13.831272087746026, 6.898162036360332, 5.693021093948192, 9.29300181031254, 5.111375544172344, 7.879705996918218, 4.141955019386598, 5.444977855238715, 5.992172613139168, 6.444215049579729, 6.630629591372133, 4.97930613716418, 9.225229252784096, 5.528954597002314, 3.523882829077181, 6.982269773156117, 3.6044518357896975, 5.550617176678483, 5.390091800841649, 3.7311571247247763, 5.21332759542658, 3.6702790095292928, 5.277588167287371, 5.717762605815236, 3.212704292436935, 3.0577555128555116, 5.826431910071709, 12.488953142965833, 5.528687796530762, 5.628747124879885, 18.06392353488444, 3.721648289501741, 4.519419172464048, 5.565628844640371, 10.917410290447469, 4.820726612289357, 4.158677297270404, 6.226410207787201, 5.247831021467259, 4.335248554659704, 4.554358039981301, 6.2438309579786235, 6.107084773938975, 3.3949435991735375, 4.7729095022975, 3.1972475283387474, 5.947295276248833, 5.188384519250605, 6.112200737452331, 9.08108208703508, 5.869803587987346, 9.468505874554946, 4.984012019696312, 4.464422400087508, 15.875291461657373, 2.8404668950271095, 5.535999534044105, 6.643967346337322, 5.350695712459501, 3.679823677284779, 4.136775301762966, 4.439851977512177, 3.9958545906514993, 6.594287957240005, 4.209755915450376, 5.756844971625129, 3.5015664812874574, 3.6209572463869795, 11.979558582221614, 4.756306281894829, 5.566210175550978, 2.838845544638942, 4.01305067614701, 9.402171879162124, 4.671146192469645, 9.847966698630986, 4.246272138408044, 5.640369431045891, 7.096831919126621, 3.9504358958307453, 12.579594654730766, 3.564905514813035, 3.8158204935979896, 3.150156331327136, 3.623763097773884, 11.368751014106138, 7.606344466913798, 5.041521249015476, 8.474079869407387, 3.89651107680859, 4.937462724420104, 4.651318033890561, 5.04496778238654, 5.774486942299964, 3.9784888437341657, 3.2213582190600203, 4.299198419494861, 3.5792034903647734, 5.941530882287152, 8.029784916521548, 6.045657227980504, 4.517850982452857, 9.576545103202847, 4.5913617654447885, 4.709437343105248, 7.779579610562581, 3.3210527205155915, 6.199958274937316, 8.473204917864683, 6.328127049448539, 7.154534661807287, 15.96057510862341, 3.4871785548453516, 14.812703457419401, 4.25553852216204, 4.864725430883729, 5.905305806331722, 6.926743832753916, 7.309258325729176, 10.050665552940519, 4.814540830150602, 5.700999495823063, 6.078832851074693, 3.4223381533432167, 21.555948564470945, 5.676256317921672, 5.832770344281617, 3.9724745534939556, 5.4083574021880585, 5.529775886351364, 4.385489559676555, 3.4729052609824103, 5.19357911100942, 4.5637381293315, 3.7926142879213054, 5.9291511467434095, 3.4980117873858365, 2.9201028049611035, 7.069682582405357, 6.259323424681902, 12.886582251355541, 7.020367321120589, 5.60893658409033, 8.456294409074198, 6.502172296093083, 5.735423424018037, 7.676413057003122, 3.230068644831408, 9.497907042536706, 6.49961762447039, 7.825373317596968, 4.897208837056173, 4.216962669743141, 7.043524978580415, 5.349511457783801, 4.8933724962267915, 2.9337030007182605, 7.211688649847903, 6.88836693763131, 4.3031183210339385, 3.850861768035116, 5.355529227388116, 10.60632260321808, 7.458162943581844, 7.40642507719093, 41.85813888888891, 7.941876337506745, 6.529665202127585, 9.435058822785674, 5.080514514944861, 8.039816233514125, 5.8576067397423595, 4.278653282502283, 4.7227444722646945, 44.49528156543233, 6.13403899402423, 3.554923672765741, 6.648242723496996, 5.605798405225502, 3.135805308872429, 3.5331438225402754, 5.9575966061308625, 5.11024399654198, 10.152163488639129, 7.022660390102111, 3.6778012783104526, 2.9458205980183174, 6.6066838193100175, 3.242453215110324, 6.9999429308346794, 6.483811630546895, 3.321584904408526, 3.421382739359819, 3.153716337946439, 4.476706697007107, 4.82286315819435, 3.579717902401354, 5.466526005253509, 6.6630986706118875, 6.809925605219662, 4.132339079722194, 4.049345535728995, 3.8561301179905754, 3.661168940898887, 7.7988489744491085, 7.117890358560842, 3.3233387087434463, 36.311484516109516, 2.9028667573272995, 4.688893847148219, 3.3524158598841303, 10.229327186706746, 13.269073001608984, 3.8679069463017126, 4.669663791575684, 2.7297941705588475, 3.403478950307588, 5.885650334427995, 4.469758299814183, 3.74619029156494, 5.8389858080401, 3.816618406404984, 5.390044481534591, 5.52002028326626, 3.7946655120443857, 5.02489863594541, 2.972987564541026, 5.755210522036601, 8.93240068938716, 4.064771374434082, 2.880751504079018, 4.850892410671369, 4.273278563622312, 9.218538075640401, 67.73782235336917, 3.6747107652666373, 4.838029357961965, 6.0069663096988695, 4.745481222930142, 3.8833684187252846, 5.327017040931181, 5.446873742789583, 5.075303906263755, 4.0785601782384395, 4.654200255967191, 3.323877978567229, 4.06489968349103, 8.595164377171562, 3.1551263213070206, 6.2586995456452446, 4.443802642016716, 6.459054458130962, 5.853338437015994, 4.417518948297704, 5.911672487404383, 9.547116102847067, 3.733409571388794, 5.681260103109184, 8.151691031001523, 3.701657531864662, 4.006923698519624, 8.532124919274265, 4.346703693515012, 2.283863434946195, 5.849213247642942, 8.450968993183135, 5.387757491069835, 5.914764585478487, 185.39916666666676, 104.00811143741318, 67.89919421101776, 4.024186141761826, 4.599178846740918, 3.5593676130076664, 4.364528122484719, 5.802155085265784, 2.9256426303425207, 4.4077081479453915, 4.779812349645408, 4.29401204730976, 3.8058084362512403, 7.7726952164649346, 8.746775711541074, 4.0737197076403655, 5.053193096618496, 2.7993885947633546, 2.783354989719556, 6.8721658852741, 9.075963091756048, 5.798623681570469, 5.3625595589441915, 4.634506687551203, 5.804465461515796, 5.335948590515182, 3.9768933161885363, 44.82206847988649, 6.088861045963066, 9.859018255283626, 9.66961313990576, 8.22302489597366, 6.849831467404508, 4.3647726896011045, 4.793089771126429, 3.652995425119179, 3.2915895505849986, 7.7300795529230895, 6.738771799530601, 9.540333866336224, 9.223135597802328, 3.139287828782991, 3.061750428119577, 4.188622979855098, 7.425701781320373, 4.643528494060847, 4.746389967889813, 4.4860169316484315, 3.8984846458022755, 3.793882814091603, 17.324253522621163, 9.969478094044268, 3.2562315816103107, 4.332246385304714, 8.110954658235498, 6.455858485571466, 5.831663424302521, 11.126684435745537, 2.7063095011271163, 3.6866654691369254, 8.510365868404817, 4.109218756549685, 3.712062532079247, 7.4055386055847245, 8.487956485073111, 5.2674582680312465, 4.791433319262193, 3.566597494772389, 6.051695424911683, 6.209901081188851, 6.848263124293831, 3.364553752865408, 5.2246965305666, 3.745204364977852, 6.994616481478259, 4.543668865459981, 6.564991812795736, 17.724027654597165, 3.6532760883176256, 6.72481456626639, 12.08991178157165, 6.915502916118042, 4.562734236238429, 6.016383055509445, 5.717922664711629, 6.0976261694035845, 5.236638260176233, 11.992134241301617, 6.959950071308121, 8.787098933193336, 4.4780846525201925, 8.164914044997268, 6.375987369064636, 11.694299105469229, 5.462451088283308, 2.933654314394159, 5.517312154634897, 5.3532701799166125, 5.660159887488106, 5.234249694217688, 3.9510899719822143, 6.743640062732431, 3.925271197008398, 2.354003059621705, 8.35850736134113, 4.876166342273876, 4.2335598971832615, 7.53825665717799, 4.026822554535881, 3.8581251366971943, 3.296172949482419, 6.203339097654435, 5.240444486541952, 3.219802341873701, 2.792140932797793, 5.87498846882706, 6.866757913870789, 9.702733839390115, 4.22852228681094, 92.50849969474964, 10.261258185189543, 4.383490656350287, 11.267576377151313, 8.122471201047036, 5.322875116768046, 12.693539201295783, 3.558932826440562, 6.207510769104359, 8.12233817937074, 8.580991069227313, 7.1374591393829485, 7.5667799878459725, 5.225981745994912, 5.3182939235286595, 3.4537052487737836, 21.820752460384934, 5.172691157494399, 4.3699490025101735, 8.999653973657042, 7.560824516672665, 5.344474333947022, 4.872421559403895, 4.310327706427607, 15.32742416163534, 3.5306564144561148, 5.08139964886525, 8.993001088683197, 4.277898700285074, 35.05152175384786, 12.235218924381966, 16.48448779800762, 5.508312094553501, 9.679685802306091, 3.567448847967101, 12.568673403429672, 3.7530532270216623, 4.905273313020819, 5.976138512418862, 10.42303455814604, 8.64352003264194, 6.017049177661934, 3.5825675138032462, 10.30843902114195, 2.630049494480312, 6.57922705397704, 14.719314850137804, 5.454647335998712, 5.120355782996516, 3.900885774924112, 5.147107968425189, 8.19398465282642, 7.672415927400498, 4.53262139965669, 4.448247618204351, 4.918271186563192, 3.2239912934784027, 15.281549562491836, 35.807132367632356, 32.427390648841296, 33.54735650254831, 30.529999278499293, 54.89027952529927, 20.54567625848099, 35.45636674436673, 33.72343609329267, 26.849013631741688, 19.11978001954473, 29.450987827892785, 23.68701640826174, 31.22875539830305, 12.92249086598273, 24.27869466944719, 18.941139321928215, 16.16537113146314, 27.357974518909614, 15.915075731379126, 13.17523744669338, 10.580939174612427, 14.384726820594127, 16.26981208275753, 17.57515780272063, 11.392019402065875, 10.341101971904331, 13.375305823115365, 8.070594782517743, 11.26783246154476, 9.260310224073034, 6.997659518961371, 31.25769772625159, 8.688853184845993, 12.075168675846239, 6.122484173960429, 6.952365429377276, 9.407694894235538, 7.775285715336349, 8.90019785462806, 9.698316899252628, 10.701818044979666, 7.5711861410345, 8.072069104717446, 15.395301404718435, 6.197730359728998, 12.082548539370942, 8.85743736519277, 7.000323540258399, 7.939761261748164, 7.26445339350874, 8.005208504484164, 6.703371906660711, 5.8528812132593595, 6.2675914039667315, 6.544787380829409, 5.881960785123907, 6.124409035526838, 4.981808266163183, 5.356619505645961, 5.622206850304188, 4.981911334216663, 7.341252482046949, 6.494094082018698, 8.042038922611669, 6.257607651257587, 5.237546690166904, 4.857271740626025, 5.800892403348475, 13.179005542511945, 3.979140487642961, 4.617404258582471, 5.034420873426583, 5.084431601527587, 5.329086938005649, 14.547179511350736, 3.7944249276869173, 3.3735152204995846, 5.3594752238691745, 4.336948373803037, 3.468992935097858, 5.851083965988762, 11.084093936986118, 5.2342913056226985, 5.8043346612416205, 7.451927310705214, 4.350709111959906, 4.2972685627061225, 6.051294795709164, 5.154071622485319, 10.218453534851848, 3.8732192286719225, 6.4377064704196485, 28.089706266923553, 4.01967517324904, 3.6282655015965584, 4.1782825903100935, 4.2071995223632, 4.603194845615902, 3.6495370580512, 4.781212063475884, 4.675159034458173, 3.912162329339205, 5.152307985871816, 4.545108163572955, 5.198040145167724, 2.826047120450677, 5.536632085328097, 4.869967237316895, 4.356721106160981, 4.469585477702028, 9.150447477187535, 8.785262909140126, 10.671181172993672, 6.849115217696926, 8.704930719702844, 4.227831793989665, 2.9325574656814206, 7.642889256342361, 8.499967507965025, 9.457424603020833, 5.4928229149038135, 14.430419742538161, 6.608031002103624, 7.717873193875368, 8.777826341070924, 8.53781884411884, 7.793272820103473, 5.7976795777843355, 4.707169000809878, 4.983935001382292, 4.961556989462463, 7.360250717306301, 5.532991048914239, 7.02574616386065, 5.211689894871005, 5.284439566826718, 5.669456245952658, 6.322869820963574, 3.7927835565248733, 3.6957350316936832, 4.487876043066981, 4.549006912535074, 6.109860196833558, 5.517597581911885, 5.089992543006623, 6.065150101197285, 4.823149641933963, 3.3497218396801913, 4.773001131287656, 3.995778532347915, 5.996696432000955, 5.199755707083801, 30.88531394300146, 5.718714352522835, 7.3552717450314296, 5.994021472628686, 3.5185625651318144, 25.805376407064184, 4.325226569415753, 4.867453937497937, 3.7891512206913456, 4.5137913750890934, 10.994819542137888, 4.196498813830193, 3.8465309685350997, 15.500906096823758, 6.574019471000774, 5.846421875747466, 5.441575113953128, 5.191880350011633, 4.074599636211806, 4.43020965304777, 9.306013478996592, 4.224347368632384, 6.308509971893873, 3.5192425946596826, 7.231097863152157, 5.371867590753515, 4.722683288936361, 6.8520793802773134, 10.70813298725357, 5.091775621673223, 5.617860568018206, 5.746911707280398, 4.347263326755199, 3.2613940729560187, 3.5024318380795787, 9.336655273889164, 3.3550293738537684, 4.501897615576334, 8.788882915626122, 5.407994948233673, 6.9219015128808214, 4.944170733349373, 4.578158124251186, 7.074957250146736, 4.403283970164457, 5.174131845942698, 3.432058097604195, 3.3701248135659934, 5.974859683342355, 4.99352900326015, 7.631828860803889, 4.240450944070325, 10.648757313772718, 21.55604074766631, 10.890085645367476, 15.851575645729717, 4.784514210764476, 6.312157718604828, 7.932809276669916, 5.98999820863512, 6.382974488462868, 29.074596258961087, 6.989422159802018, 4.67251566619975, 8.025452045934477, 7.517780076063448, 4.790948163337178, 3.1167373245965, 4.268622409667809, 18.20892921231929, 3.7151902683982345, 12.840051912504345, 6.474620218379281, 177.45042207792216, 45.769493273066786, 4.714250792173306, 5.598216413662538, 5.384688752946128, 4.782155895500585, 9.738495210103006, 3.1918038858213666, 5.987303028573042, 5.468295281299892, 4.549732901128779, 12.633659621717854, 4.4171606262472345, 4.827676438204805, 6.344402325324928, 3.696533033127392, 5.839370011395062, 6.49815962571203, 4.046404890866473, 3.862237315967139, 4.714797473001894, 8.385310403205578, 4.072443716575873, 7.503523143964224, 3.4458341857385593, 3.468546964531221, 10.843826662760447, 4.697038334551999, 4.328051468053077, 5.104786391603213, 3.9070488875511393, 5.744791629469507, 7.326589339809805, 3.760010097300674, 5.536191993024479, 6.374787173225788, 6.823518050447204, 12.91683421954631, 4.674159023287155, 9.526077279220356, 8.440979985676817, 8.570113424725424, 169.9178030303032, 85.58287514854428, 6.945442668702426, 9.362379768409408, 6.50556822290496, 6.037001514454326, 7.312489809356471, 4.636336545698959, 8.110302444271209, 5.09707778412401, 5.784843934566293, 6.492814572621193, 5.458670034175142, 3.681401340915148, 7.898978226990941, 6.2129572452790836, 5.18140898089303, 4.92801592318422, 7.945626367588133, 5.18120993412886, 4.873100289082257, 4.822529860634065, 4.772900757458815, 4.652139225464134, 5.822166281967194, 4.821010525421669, 6.372664949243674, 4.357389696317781, 4.4998888651872635, 5.086392063171552, 4.13103255078795, 3.5501063672085613, 3.9872424795173136, 4.797286567219689, 6.010067308484647, 7.097571087075928, 3.9546335109148805, 3.578113113005484, 4.717289610931528, 5.999129568558906, 6.256524702718151, 5.350088861729767, 4.450668067635627, 3.1116222582847, 6.690290491836692, 5.755687409753761, 6.592388995553034, 4.360428519546395, 8.643278536477775, 4.051323418232072, 5.017579969106885, 4.817520031602775, 3.358539300339715, 3.04804086660051, 5.506118562017342, 5.588922670328551, 5.419910624018003, 9.49059181151273, 5.324146509309007, 6.507375092462798, 5.740373736581677, 5.385831367970113, 2.6059751116532737, 5.246255196994765, 4.335544522636745, 4.660002135864838, 4.3896892470897235, 4.350472810314237, 3.3092042144893203, 4.53192606284287, 5.752355166940478, 8.29811216409629, 4.115947167108843, 3.524570512690205, 3.2719536682750094, 3.936607265118071, 5.463272182291614, 4.002363168350977, 5.943788933901234, 8.315388676311807, 3.9170260100627368, 10.269327035423268, 5.134638090973093, 128.19650000000007, 5.120343694142718, 3.848707974399017, 6.142818018972338, 3.672261887978963, 3.8074226608112562, 4.123510439891344, 4.332741917528529, 5.838471635502315, 2.8689511206309852, 3.9718806851110258, 10.336667012154514, 8.080625468683833, 7.059539931336173, 4.555821063581348, 4.796603924635054, 6.077397588816626, 4.701941113363808, 2.616030975411518, 3.982417231319687, 5.227442285128863, 4.9935855797790145, 4.245450650244504, 6.9501232480987305, 3.5423566370096387, 6.610910280802815, 9.293147884221737, 4.655746052476921, 5.549392997348998, 4.618524059959254, 12.44923825802919, 4.585816147025433, 5.152490439947783, 8.5317700702206, 8.783243243214315, 4.105365960653905, 9.024697271306, 5.7521458280505, 9.757788933196776, 7.420389290139851, 3.5638312954275526, 5.71177076869964, 5.380085436246769, 5.15414027885632, 7.857020458906035, 2.319886695356164, 5.926345502365685, 5.875970953827163, 4.317026680553005, 5.9032910778503975, 4.063734048093921, 3.959807886272842, 3.8790998106937975, 6.426874494947786, 8.234864874543568, 4.049913985911445, 3.8553099134978663, 6.456228649535557, 4.348791789783943, 4.787180550112324, 5.090608282532956, 4.425795411443848, 4.332049944657217, 3.3196406731661767, 3.76778886165023, 3.265256758749397, 4.251832598134226, 6.354589371440829, 6.173211883552368, 3.5021248267614866, 4.814835871885202, 3.1061411638452325, 6.00472579015912, 4.138990946486425, 3.8431410387402005, 6.586802628277495, 6.1487972243996065, 3.721208791952056, 4.632689658964347, 12.61149539041421, 3.9592433926007287, 3.8239072673317005, 5.532058715010936, 7.358273890951394, 3.057554295562554, 4.527203168460552, 4.140781995519115, 8.191333662357744, 5.061669389264356, 4.206848277361545, 3.654361557328809, 4.8459037475504205, 7.45853674157403, 4.044042261563487, 5.3291342384213065, 3.6971787483193954, 3.5619558228087302, 4.4416306548258015, 3.5378861939326516, 5.755618664527165, 4.572317147252094, 4.039345993008122, 4.488100606292734, 6.930858521312922, 3.2646903707373958, 57.54294195013242, 4.50206071882493, 6.428155057148746, 3.8028231997725936, 3.176991731763628, 4.9047901715575355, 4.406789280949975, 7.63184059234346, 3.525383643811278, 11.985302998767077, 3.2294022371321978, 5.7801625475347596, 4.222963715703504, 2.6927488203002303, 5.780444279714413, 7.579946401790041, 4.263061744936986, 4.418912253100327, 4.173875678638136, 4.069847405943103, 15.438282558867575, 7.707795812816103, 4.063756988907386, 4.912941927371486, 4.748809426500525, 3.0675379698062306, 17.969798997538827, 27.861803062721258, 30.71137934014032, 15.111022983425508, 20.85262096517892, 23.093666051674536, 7.8428153915116035, 15.59893955835786, 18.139220330868614, 16.659205709271866, 12.159998434831529, 12.016096803118591, 10.0565922834439, 14.822546868845045, 10.269793600643023, 9.39619422998854, 9.009695489471312, 8.37365759887264, 11.567658698159144, 6.0225158104181675, 7.1993283810067, 12.83826971625105, 9.01918442181458, 9.162934890270627, 7.127314500676541, 5.688640428977532, 6.884404544093198, 6.568316162944518, 6.460219989855926, 7.656204821215676, 9.905949541928758, 7.0844349172003, 5.8913934249528515, 5.79716606407917, 6.639029333846902, 4.300690316980386, 8.008392894917675, 7.111250360414232, 4.380327620300371, 6.804911837023997, 4.0216575758753, 5.3057805244057805, 5.330557143212298, 4.689595503095095, 4.042318038199238, 6.097978724190775, 4.63399019982489, 4.702377849110209, 5.654354516165216, 4.732893803705823, 5.102697430453485, 4.086721660363769, 3.967278629598668, 5.654151891662061, 6.073883848583918, 3.811395213780899, 6.224415945379345, 5.0484632509322, 4.99007906680757, 4.348817115056179, 5.5214282671627535, 19.036153810461787, 14.368468353939676, 9.422164098356612, 5.383664745609594, 5.145635741606354, 4.681593358326272, 3.8579923354451924, 4.86179929967873, 7.071986205012251, 6.335978448479377, 4.355705739663493, 3.395752871885964, 7.836185817614261, 3.9441871195518394, 5.096784056926413, 3.7594738785090995, 3.9972833072507323, 7.883009969904365, 8.929742576813078, 6.326628472382734, 5.052264866244299, 10.1036301414715, 6.3028778593597465, 7.883202573093603, 4.495377884157619, 3.6999507052943006, 4.104744961420953, 4.07049741512662, 5.677031835860009, 2.5348617093166963, 3.467249313683227, 7.019851561843108, 6.130133519306146, 5.240376161066011, 4.960062312695444, 4.908151329934703, 2.9919875725807086, 6.480307498783424, 3.3832049525778602, 4.116907953186311, 4.960680707072724, 4.753811397469288, 3.0766525618108282, 4.287261982446171, 4.274920582354901, 3.677148436271938, 14.33532088087103, 3.5349389344759525, 3.150214797226884, 4.047702645265966, 3.255991726000719, 7.5177052403630595, 3.599125927501758, 4.591502464564347, 4.713127436589067, 2.6105296202900456, 2.821720001737033, 3.2810537209038952, 4.389610882177119, 5.669455363342341, 11.01024952262976, 2.750111048385891, 5.087217798001674, 4.122947866871818, 5.617704831873226, 3.4212210123250135, 3.437007282819817, 5.661793043983116, 3.85238837580249, 3.2626281843914446, 4.182513245412945, 3.611143018122097, 3.5170452958017195, 10.129494421368108, 6.799933742590413, 3.9011235306620984, 10.108989755154742, 8.10286885593006, 8.58036077493198, 8.922602623577442, 5.6589685327259325, 6.224024177454594, 5.881512477147164, 3.1899979727141505, 11.386475835848872, 4.812833512841262, 2.957229893066509, 4.753495759791878, 3.885296928834376, 9.146592210955726, 3.9540916962942325, 4.457174263353711, 5.890911932037099, 4.0674093930028326, 3.8340767217544625, 4.909135304365692, 3.4736787401060125, 6.880021532959055, 4.550498710406974, 3.420645163787358, 6.232000293358978, 4.749197867881647, 4.150437600437618, 6.121565298538759, 4.5572459641204555, 6.865990314881758, 3.1347013159741737, 5.3312077240162665, 7.8254310459185445, 7.606962824041948, 2.6526535912807137, 3.1061488437611886, 66.06702756505233, 4.7243791701366336, 40.6445276390818, 3.264297387449857, 30.2813493405477, 4.64514693321898, 10.477556292339813, 3.9100410163344357, 82.12657924836601, 4.9578515609335945, 4.994166119543339, 23.830888909584456, 20.704325551202118, 17.388120146779066, 7.436759935630006, 15.462665065885767, 8.455926389076776, 4.06229527380886, 16.241808247482876, 5.091017072015764, 3.5097607599080662, 8.156425305401957, 2.7220925333838863, 12.739251355100585, 5.835769793162896, 4.035952745009868, 5.064046227465344, 3.913535489840157, 4.2918344001007025, 3.5445384916618763, 4.961489799568838, 3.603883139828443, 176.2123140367259, 13.13497184226369, 7.281607453426044, 4.316817817175921, 3.0653963731543707, 9.077192628797743, 11.920555407157229, 10.292829706583333, 4.169103237523153, 3.792256750952865, 6.734220590628609, 5.610750016204305, 9.239316657178149, 5.7200427265789795, 4.384502547111238, 7.647349813492346, 2.8550671216765906, 9.468847060823345, 2.8251555725585455, 6.941323689112453, 7.264920243660171, 5.470144804674262, 4.333676945949166, 4.019345888338249, 3.450592810927432, 4.627846848882217, 3.3946515367997403, 10.61902304525639, 3.8509925810005092, 6.489948377113015, 3.4745368106051897, 3.0070619418913576, 10.077418126316562, 10.692045392710247, 18.953809514276994, 12.09351385960639, 9.133675164369622, 11.582891216705077, 8.723351600650458, 105.43897774885934, 7.685543814497506, 18.694591026455452, 6.23766366623074, 3.836913065804172, 3.957925147325811, 13.538086281640394, 8.925927372676153, 2.905134947020156, 3.209000521458017, 13.650324712528183, 9.86690094367193, 3.08883774636871, 5.890993831261823, 8.660312930847923, 4.938391162618477, 6.415583599348569, 5.636913171349102, 2.509405960847327, 8.55688352483981, 65.59629859254859, 45.1712755606966, 26.7594092719263, 29.99359388242476, 21.478960143433035, 31.29311496054032, 26.47861176583009, 25.25220222033775, 14.162310017880671, 23.562387405184335, 34.168388888888884, 16.414475579975576, 8.313718501917553, 6.550845149514249, 4.509761515019143, 4.674680247391563, 6.598116862253529, 3.9399563703340457, 5.3907106182208695, 3.9974142930785472, 4.1032337008270074, 6.126613109844841, 5.8235350232229095, 7.181755498369342, 2.975146625667237, 2.858163293082283, 3.376312012040909, 4.11582602398831, 5.007200144005678, 4.028148999639287, 7.69831816471823, 4.463750593856435, 8.93140740306333, 9.693918422336676, 5.786384842403431, 7.209354377973697, 5.8887744737627745, 5.55897534166029, 7.692414486558977, 6.035630205049436, 5.881257053159297, 6.654982699530582, 5.988869460595428, 4.745576207288034, 7.139570048065143, 3.8806478612166067, 8.905763070598063, 6.613441026907413, 3.9671198305548248, 3.4886645833529766, 5.894211877513023, 5.385544389600286, 7.6341427044931365, 3.770792839854611, 5.456038405414879, 2.896654852623421, 7.558485110171543, 3.1847842919548763, 5.506039572234628, 7.03408896121926, 7.53548129626534, 7.840482209362435, 3.0246466521748294, 2.9286503210298855, 4.765061979675288, 5.195819284633508, 5.726880631816228, 5.782465530357463, 5.485451076122314, 5.856753802233605, 11.719742748559806, 20.565723079194566, 13.019706604102286, 12.89763097609846, 18.73223539764828, 9.592588672359991, 13.317776231504192, 9.228849191243395, 12.792765859379543, 7.354383220980392, 13.724661468010776, 7.688726883117986, 6.445972113019971, 5.528494347976686, 5.15159221819517, 4.714324892257247, 5.537632355150303, 6.3627423046646445, 5.283630883143509, 4.693764981682129, 3.767047504169634, 9.815961177790962, 4.4349043854652175, 5.2923036326440736, 6.206994875695077, 6.138729711120452, 9.463097068150923, 63.147407658117345, 51.75194551824196, 31.305020417962652, 25.889171608776728, 20.387565232247244, 18.396637581460414, 18.06294330294395, 17.639294670578405, 15.030914529210786, 12.839487235040522, 5.122520174053598, 9.120066469619646, 7.756637366878388, 2.920058413017387, 4.0204099919474965, 3.5168616273067808, 6.301430315342678, 4.345328158842359, 5.5606627148774015, 3.6179910886810696, 6.490681111609653, 3.223808383807294, 4.408343066141795, 6.289771258721659, 3.4997841945274297, 5.833899189331698, 3.9587463715446387, 6.348264006548061, 8.01876009014398, 6.566249723390663, 6.648257767050109, 5.7346470003274375, 13.402895443372069, 6.475017800797758, 5.709719420296352, 9.172667675432642, 6.006982746176722, 5.2617576989168695, 6.372870309435416, 3.857820236351577, 8.626940252845849, 3.615439767506673, 11.326974290246724, 6.6517275802542795, 5.585692922100986, 5.112723630420647, 3.9727104498310117, 3.312843363605491, 3.914000131163669, 8.49665353471136, 6.205731801878007, 5.7639196843597, 4.922918730209383, 3.982571381846088, 2.652402327464705, 4.291530874713375, 3.9430150876192145, 3.63441564903785, 6.460519228990931, 6.022353291942935, 7.1280741952144755, 6.642235054064045, 13.876405169862354, 10.010568312413849, 6.399622483565059, 7.852948062932407, 6.722046142226183, 5.811130444632723, 7.520565820810632, 7.522686613188769, 5.361784053199052, 3.780594608931028, 3.1199739883089985, 4.136873120006339, 3.7214795382927854, 6.42142261211906, 4.44185927056367, 2.475446271619862, 5.20505980585794, 6.108330310661445, 2.856313276254537, 4.116400618892939, 3.124830225267732, 3.7433273774514375, 3.922887704507467, 2.7189668275475234, 6.32574632529927, 13.279915562487139, 12.689222256613176, 12.189794301811233, 10.573993030327685, 9.651933207441948, 9.239088990266492, 11.437580729370602, 10.421528078176857, 8.988715046502058, 9.473706355432466, 6.922654121989622, 2.8179740517789558, 6.747695595428339, 6.8773102115344065, 6.350084953614567, 5.5750279958268765, 4.624249245571157, 8.13193136694382, 12.262069403856968, 7.312874244406904, 4.642676939402344, 4.17990798123063, 6.191703287423638, 6.0375027789194045, 5.13206858624253, 6.042151626819218, 6.528752776295732, 3.431089795568427, 6.522593695577462, 7.436660912213211, 11.087070132160331, 3.3923765770991867, 5.206933957493609, 5.77744769017293, 8.59819436239463, 20.065769800832257, 5.114565759236207, 5.652602799817252, 4.8685355563997925, 8.997350877942093, 10.227374043704884, 3.5048802695190577, 4.002187417290921, 7.214090647785635, 6.007761394076181, 3.8689383758046105, 6.342278025233294, 3.677677824489923, 4.422300043191624, 4.686969911764447, 7.426254938558071, 6.1268859312864885, 2.5893869653648194, 8.543663855360956, 4.696042927202349, 5.645863843224525, 4.106063219803384, 6.345706857517239, 9.405164527215888, 17.35317821392478, 5.884000888033711, 8.358732357864064, 8.119352231330177, 5.891528803152055, 5.2228185373323015, 5.515461051395692, 6.05603906706119, 4.447837279915181, 7.8367134150597595, 10.179510995031329, 4.164732606836684, 3.866424663674745, 9.380893560428603, 4.77087762872395, 13.577861144024556, 10.987222607774248, 11.506802648894695, 6.03636592566042, 5.436830135019976, 4.326259684693315, 4.0360333044886385, 4.038670477453931, 4.3449914358627675, 6.71954356052535, 9.986923748239201, 9.31302486273194, 9.087893862389112, 8.739704216735612, 7.931790202083269, 7.702600237553508, 7.212908604239968, 6.8253622891617445, 6.7703189900551175, 19.336024758020283, 9.185927397276933, 5.126580593236609, 6.950406949910937, 6.838592411035416, 4.457853708245047, 8.135745960464261, 3.2131823401520494, 3.742057596442163, 23.133534161349214, 4.242171992213019, 5.010516970491223, 5.4638627655871845, 7.156425338384343, 3.051152284877625, 3.6728527448681296, 5.140216044769097, 4.514434118543747, 4.245851915719255, 4.468980917466853, 3.8255706807345136, 6.869059825571241, 4.742900900741417, 3.784563012508429, 5.1020803734608515, 10.175801019335898, 19.28042844773348, 5.085840058151821, 9.653682060468165, 4.118259029398167, 4.127109797144312, 4.6193368150873235, 3.8076513238107315, 5.678948733495328, 3.2720415070552513, 6.13970048545985, 17.566637505615052, 3.842120861675922, 3.708769140838446, 4.601735995527565, 4.417712024279313, 6.116829060720162, 3.6474954124094143, 6.403852607427473, 5.014152573959918, 2.881078551478744, 4.772362279567923, 4.707727276777644, 14.594557832231114, 4.911038084825771, 3.42781181209089, 10.612794656908594, 6.5958129269864, 4.793348697507884, 4.482394131233041, 4.482164239671581, 4.157519488032948, 4.445051872887943, 3.308671410106697, 4.4834830493642395, 6.685499258993907, 5.855239620081325, 3.1983556783974683, 5.214456600040292, 7.281206433003557, 7.256338533750003, 7.034336800011758, 5.400234199022171, 6.749067060656619, 5.548087784166506, 7.375458056224524, 6.7984684321277395, 14.201960082236019, 8.291791969006626, 5.0537070210216575, 4.047447612564025, 4.213508512404937, 5.814550599362836, 4.953878359512652, 6.095298333853698, 7.749557553994902, 6.262526992360585, 3.6112023154376893, 5.451172661983944, 7.871113201431831, 2.9738413420420393, 4.202281705791089, 4.56063340947782, 4.6272987843354905, 5.392154388076517, 4.002212397041936, 6.182777950717586, 3.574940640041793, 4.170440755710284, 3.601676812853155, 4.679979173207172, 5.307561801406243, 4.740745708354524, 4.789741138386715, 7.647278412111451, 7.035805657654447, 6.5657065764962095, 15.17516389547936, 10.158107234920726, 12.873461042581216, 3.113457484046509, 4.832425064282578, 3.1284703461245438, 5.018541633853422, 5.071679970746225, 2.8157493427994886, 4.518160306613784, 4.938464446806456, 5.78288329670791, 2.7885089129551703, 3.273081933714461, 6.473460500040957, 6.2200771391539265, 4.549140351766772, 5.038343528195537, 4.620635521963625, 4.809877295138848, 5.602144808338264, 7.426540172528962, 5.453197714083935, 4.683444404873241, 6.972530429332636, 6.834983824076431, 7.770332331731454, 4.861213306528447, 3.9470869183245587, 5.3654545924468975, 4.981783979205712, 5.301049434323663, 5.197888942614711, 8.712366686418155, 4.783125616976536, 7.151453397195928, 4.34063856960155, 3.8208746547169126, 5.221177248176877, 2.4252227576233745, 3.9430320407861963, 9.67533592908899, 5.511339688788073, 4.940847699265456, 4.806857990478548, 5.7133013652128986, 4.795717130859595, 6.4076991103488306, 6.85502757994844, 5.243668446541054, 4.689910208127075, 3.7581302221239707, 7.225048895317539, 6.609980632796536, 5.169833782831944, 4.444695535271056, 2.8430703267386086, 3.96607835690546, 5.324061356436578, 3.6606465800555688, 4.71199017310331, 10.52823861998365, 4.433875564885519, 8.55416461532721, 4.583000783854516, 4.863345228828277, 6.418252821994697, 4.868570210192568, 5.377412549469293, 5.6955980646253375, 5.333161848991092, 5.189138470902054, 5.140467622555452, 6.0871221720867235, 4.027836101019109, 4.737273898468768, 3.3452292433654454, 7.204482285316325, 4.985824185853765, 4.57512180500306, 4.607917157771553, 6.763673295820308, 7.027619124675167, 2.7659954142943457, 8.719961977039556, 8.85144452722873, 7.4360574916085, 4.6784263150705625, 4.575680402140837, 4.255246558652674, 16.426367178235903, 6.214680770532467, 5.367732492842924, 4.3565044881812645, 5.846190959858653, 6.809559734324904, 4.170828537172137, 2.745043438882354, 5.184009903581024, 5.517870393692985, 4.763041445912888, 2.9804060648355613, 4.6097207155129185, 5.051470402072585, 5.902104566057211, 7.617624007884502, 8.063845484665283, 5.300915858076559, 2.6426349325717573, 4.147722912193222, 6.407123439041438, 4.377476986067855, 5.697423028691395, 6.283261667671192, 4.975890755072324, 3.9414561764629688, 5.948246307538131, 4.98149426610137, 6.37759939996034, 7.619390847163579, 20.168163744056457, 11.43255782891236, 15.208159772433687, 13.081067055925894, 19.63740090703556, 31.564984146529795, 30.216584065934065, 24.17820919080919, 18.383404631693953, 18.03495307123055, 16.260733367071527, 21.937578683698778, 21.140074261180377, 11.928637036877861, 16.569997929519435, 14.247427336496326, 12.773576885513418, 16.20421181399908, 9.69982398540339, 10.600582590318652, 22.6489338582336, 8.338914826652692, 12.531860954035878, 9.535330904505194, 8.933053524311552, 8.640478228420864, 9.661996971064477, 12.034830246638535, 18.55989615116582, 6.768265493339383, 7.76037183782281, 9.331373096980409, 12.602107528640135, 6.9006672920305885, 13.828561853734975, 8.640317282478797, 10.161934463189404, 10.594830320382142, 5.915545313739563, 8.831794209345588, 8.123424334299642, 8.187439386989112, 6.984680310512314, 7.137672062673281, 16.655962751000946, 5.727217791116435, 7.219590819430096, 7.546229323256451, 6.377862530988708, 9.187991206991164, 6.3557135330932475, 4.246910789027429, 5.94230067429196, 5.484866487177031, 7.319691952219823, 5.108692004941527, 4.786472658568681, 4.6705955247178625, 7.963223701219284, 4.54973439989593, 5.918878750156671, 6.5755073344345885, 11.682670831303039, 4.133874061570352, 15.11573496832621, 6.388913627030861, 5.541459267518554, 8.820504247077789, 7.962719300134537, 3.3597795223050624, 4.805832690132095, 4.263006417491951, 5.1393644950538215, 6.72916899021267, 7.025590356840285, 5.710848478176744, 5.577838234504767, 5.918249956796762, 3.5538609964155095, 8.455150921114436, 5.82841274738491, 5.32453445806312, 4.445576914750846, 6.6588139180082315, 8.607670590815077, 3.7725416286910094, 4.22253088698998, 9.231089465961091, 4.645221792119655, 8.602743005097722, 3.0374772109413235, 4.769393664658861, 4.616415050856189, 7.137028087902237, 17.119824222699414, 3.0484072671386455, 4.278361463986136, 6.1569962040914055, 10.34502189451462, 4.3224405319942045, 6.299348121938767, 7.607050652978955, 4.900734591233854, 3.490408049697689, 3.7464253282731543, 5.10713872218751, 5.579778220054945, 3.6147395224600105, 5.927439128004296, 3.2333291481589845, 4.007316327499, 6.095259741830085, 15.527567892399322, 15.408314269943252, 7.690693258462402, 4.518835455930005, 7.673726726247624, 6.376432221390294, 5.361208991302337, 16.90386479587366, 4.319417294915404, 7.7063668928668925, 3.1732610809843003, 5.310310076667225, 15.397405383718555, 3.0010833897626443, 3.3352491861233577, 7.106797915792497, 4.9022138427050255, 5.352843321484433, 2.309818818224623, 5.913190032712463, 4.781475373566092, 5.364257726201822, 6.013709136691177, 31.861224887804575, 5.719920290948048, 4.96635687793804, 146.55483991228076, 2.9104254708367647, 9.232656437909338, 6.509248896547563, 24.396937226929612, 91.02777564102566, 49.60389148629147, 41.30398412698413, 29.56774708946885, 37.19321568137746, 29.151186507936504, 25.32500372153164, 20.359498001997995, 18.459551185894203, 7.831447113793582, 3.9772539023256464, 6.683498342013542, 4.629299686771629, 3.208798675335499, 4.486631214916645, 6.1172691433152435, 6.451908978386355, 10.211020399166921, 3.087012013982221, 12.039088095211143, 5.580503218759831, 5.31191905772902, 6.148341229955841, 2.6442564012782883, 7.702892445951704, 15.274055791594025, 94.96424381821883, 55.33454538680271, 47.1099571783299, 34.22502445728409, 27.857165612375056, 32.05690666216295, 21.700030628229708, 22.88138249232821, 21.200990328199897, 22.16898936777075, 5.336487004967807, 3.5080881087738285, 7.516488535009505, 4.141763034923584, 4.7411215013645425, 4.816723355174588, 12.766711377166276, 5.009927043853343, 5.5896231199201365, 4.308123825113384, 3.2727823817521013, 5.5840900900065895, 3.73638269079631, 6.579826681509673, 4.57750874805434, 4.600161982072774, 6.3250277331165, 3.9259812138427774, 2.421717341631255, 6.058155151488854, 5.547273600832654, 8.452676151636409, 8.229592572010873, 4.21057352887842, 4.9205896104314855, 7.235611282332392, 9.534199173017074, 5.77507644764563, 7.902325882877993, 5.031650620087396, 10.116817359851959, 5.13865289605244, 4.482589178783216, 6.74862767820366, 6.868326628565488, 4.217480174554903, 8.65177482582001, 4.399340915966706, 4.007728390027964, 4.293457439301264, 9.670760164241392, 4.447656121474765, 7.251140207603364, 3.7417440258693784, 6.8489751674057535, 5.810653235097118, 6.13491801368715, 5.68070655609575, 5.389818013126485, 4.309057957583634, 4.1822816898545145, 4.775953244116566, 4.7855454736331815, 4.824003832931833, 4.131708137352557, 4.738736104906965, 3.5886208795380448, 3.552554229496297, 4.751040163496134, 4.367130535035612, 6.493306266899105, 3.987927564635199, 9.176635519204336, 11.744045832804236, 4.040457292265818, 4.462962390586379, 5.072672542720392, 3.2320282245425576, 5.871175692500054, 6.195089385030226, 5.637263515439778, 12.721285758900231, 3.826990868024686, 5.284033354067356, 14.415846971025765, 19.87760407378666, 14.323254171910639, 4.418369929774269, 16.58681235542998, 21.946309733984187, 9.952073945048323, 7.023847816159797, 19.010746612038233, 12.006340175848385, 8.73214559765703, 20.773118732993893, 20.20366587538976, 5.319522634712802, 6.745288271502832, 13.091783957381367, 16.303579296994382, 12.373355390007474, 6.844234387915448, 10.369212480068589, 10.722977017297248, 6.346598174947965, 19.477711975889598, 5.619040900867256, 8.45279507412201, 4.916549687045762, 10.691131580040203, 11.293355382297095, 4.926554493925674, 6.612235786362791, 8.046008127575812, 16.001405476351064, 8.206979156139417, 7.069627518772315, 9.142829896330673, 6.117620545511053, 4.798688017712018, 6.004928427337367, 3.6856873290467185, 2.623942638768121, 5.5508196509399435, 4.291470493197671, 5.513297580365848, 10.665102546711802, 5.257747928515539, 8.160766716635331, 6.614117531254278, 6.029447538252433, 6.440243906883823, 5.583092210770482, 8.876422955380233, 13.655925161009554, 5.344461901811269, 5.641354700114865, 5.195796810479364, 3.7865441156433284, 16.15842695469533, 5.736658547436555, 5.243724547306737, 4.965818268183269, 14.226573965070017, 7.917791787898499, 4.273475976066246, 5.133936135835561, 8.56771343737367, 3.6932425746124036, 6.120541660540888, 4.848454584391094, 5.027263112835895, 6.927198633178082, 6.932394640052279, 13.945727562759153, 3.8699846320368683, 7.445268720195478, 6.154884993775442, 3.0527844366840666, 4.450797544798408, 10.459153640988362, 16.00715549503947, 12.85192233111833, 12.799605876965161, 21.77527043768159, 11.026631173497895, 11.988868306501287, 10.436043138182418, 9.225031891283596, 10.725233731262167, 8.403702321815452, 3.677170772646247, 3.1160331874190152, 5.587723113285615, 4.455776834517997, 5.584014667453222, 2.7137627913224374, 5.167441596868191, 3.7323580245051593, 4.938402702446046, 4.764517586989443, 6.769518335241176, 4.254285649460282, 8.001322428125683, 5.475327765140489, 5.075152955117564, 3.0824386960707875, 6.116401778809647, 15.871206099975302, 14.89317639874538, 13.912276706910873, 12.12309437374283, 13.183229223268095, 13.068763885784694, 14.10163947132634, 10.583719963944866, 10.684951047648129, 8.94962289937884, 3.719158334330767, 4.732890981451403, 5.040149174087855, 8.462874952003814, 4.50788138218951, 6.043432398124201, 5.976727363531484, 4.326476274863419, 6.009294284104345, 6.058756023273973, 3.687024617503836, 3.2218866038913894, 10.682980927862873, 4.406492845482829, 8.37398249921848, 6.6413217379223966, 9.981106116464996, 4.740805447863915, 5.006617802775013, 10.862354543028372, 5.868454377805651, 5.139174385879389, 3.2010337813484595, 5.037772931409193, 5.422025418261907, 4.608487154898964, 5.398030000071301, 4.243030210484529, 9.92678830976884, 6.694717722660909, 7.540041767033165, 10.564511237516387, 4.163638952798645, 5.471905914136006, 4.602791582386671, 22.541900633534123, 5.822177448954018, 5.661667117360094, 7.071945339747782, 6.255243510129109, 6.1202506525043185, 13.201479705624394, 3.7460436523038134, 5.213241672748952, 3.931574897782833, 9.911802384275775, 7.4749656778354545, 4.710848569346462, 5.126673200124792, 6.074908847986015, 6.871747726769444, 5.911372228638751, 4.248931661402385, 4.434461198619443, 4.629064241065276, 4.24993677540111, 4.739304412011249, 3.7320466452763204, 3.5130964469519466, 6.574894642036742, 5.181172761172434, 7.085952402571161, 4.023853751702331, 4.114860930056751, 8.250003643977776, 3.5320536344673665, 4.834246875927291, 3.7433057467420956, 4.091882167664185, 5.175898108970088, 4.0483250240533675, 4.851104737200579, 4.930103650549059, 3.6613303987006574, 3.9304708425907147, 4.527029627341168, 8.578225254961108, 3.7463854967280303, 3.95204065249476, 12.689694044947636, 7.824828497433527, 7.026183951770743, 4.114765453940923, 3.9236524059134377, 4.600463098359775, 6.638858786689894, 22.08937408235218, 5.330067192757221, 3.173499286718809, 6.125570767558455, 3.162013335074364, 4.337675774139437, 5.437168510243414, 3.912624127453287, 3.8487994410243385, 5.374277188774073, 3.1098273475102296, 3.3705573836834906, 5.308550861063871, 3.8000914463134836, 9.08501023990629, 5.970101474268824, 4.9569185974148775, 4.193256969797352, 4.540333742872724, 11.067705332361784, 2.958408280890851, 7.041446155143304, 5.115739865826249, 3.423616806927082, 15.603722566068143, 7.567372429844765, 13.352596820418144, 6.837890001233408, 10.576957073764978, 29.522097260941504, 4.627316725971161, 15.350058529952214, 9.69859413543856, 11.791180863254386, 13.92620007624339, 7.025923295177609, 7.411671524396986, 9.56274545576825, 7.456719208957914, 5.658688081233949, 7.584562504560932, 7.584591866423481, 23.21913049670807, 5.236599609054725, 16.20989492313212, 6.140098772672819, 12.318897751481678, 17.010509647333674, 6.232669141198142, 8.58895372629958, 12.313705483989397, 10.890542055767309, 10.125725699172317, 10.456496706724579, 5.416017385590193, 6.0434744686145745, 5.73373248583163, 6.983799764064223, 8.06596203421258, 19.35505777779958, 7.4257140595732185, 3.4873573079607247, 5.453388170828636, 4.633877470301144, 7.636528201054372, 4.90889959510778, 4.1235751072034255, 4.550986896090254, 4.057196103829819, 5.902530165464055, 5.248563237090733, 4.643497195582149, 7.592435625194776, 4.720944097027425, 6.1419389210018736, 4.220838213018245, 13.522167797677152, 5.220281964674694, 7.251076909162306, 11.958064332077166, 6.611808576443242, 6.676130235072342, 4.658118028216461, 3.9569944131887373, 4.761592168548636, 11.073446461267965, 21.548979444847085, 16.88196482342135, 16.975521177336848, 15.584980504567788, 12.440772449968199, 12.743668177448468, 11.735282221198755, 10.778273788529427, 13.833544946532033, 6.946902456255778, 6.70790872588446, 6.2392553400032345, 3.8164779581484223, 12.221828943850749, 3.3687744212011475, 6.001196932393433, 3.515790679039342, 3.913573166010381, 5.045538878755954, 5.7657640588899755, 4.854092185310092, 3.2881012033768866, 5.411440658603745, 7.2877769177354255, 4.30116733995217, 3.523288332347073, 4.924005496040026, 4.951470855243788, 4.605405799816427, 3.3766139274894273, 5.530597014716992, 2.865253571796202, 4.349583312266551, 4.485526331887968, 11.231272944701585, 4.894484867472377, 4.104827855712263, 4.79137492102186, 4.245953184656003, 4.951746027977676, 4.677117832490003, 5.263541270267534, 4.6685900289521856, 4.61153197632587, 9.704506364793268, 6.872931111340483, 16.26833730679325, 4.062065657306753, 11.298429510312598, 4.31536198153941, 8.648665050853614, 4.0794116280000665, 2.347442346318332, 8.3142667037218, 4.564832600078593, 3.3632819461273793, 7.138854602162559, 3.3395135684098287, 8.31323181836343, 5.186671165298115, 5.124833632051047, 4.885133020659059, 3.650684025397651, 3.2117462251526043, 5.013969307619762, 4.99734183265108, 4.670053574920417, 3.7099493557716654, 3.3510835958450964, 4.172743889208055, 3.4615172140745054, 5.407407246194802, 2.875133111508482, 4.45855840173276, 3.8610102071521313, 3.954886309791079, 7.10788241614179, 3.3512240104657782, 3.8017936080111707, 4.12642187880362, 6.085830792894219, 3.983350071112383, 17.731340569654225, 16.712606668192763, 17.836088680154067, 14.426940981351553, 12.903176372450718, 11.65399624162719, 10.576920725650973, 10.646003024621605, 11.402686363145765, 9.290108236619472, 4.4842582801102155, 4.595513614650399, 5.894899602464803, 5.928845356864326, 2.848549792217959, 5.397069774258763, 3.932822684530047, 4.699838244626391, 4.961690809287102, 5.490080972474923, 3.772012865185792, 3.20101672739122, 3.7294706965671907, 3.6122125393148132, 3.7077058045685467, 4.032505897296468, 3.2862570409428673, 3.6843836720215575, 3.8070714547177493, 6.011985072266559, 2.828112589684883, 5.4173490466949055, 4.1617661351484685, 5.038327718487502, 4.013574668549155, 8.432615588111608, 7.2558140329455165, 12.487783287466808, 3.756279704524362, 3.333703059274491, 3.926845009520749, 5.197508935313614, 5.053503795628775, 3.2841469206949045, 5.460443757851017, 3.4407278377547414, 4.715404185952636, 11.131576753679271, 2.676846951742252, 8.918337661833649, 3.8818402565733394, 5.06628401528002, 6.960042773127267, 4.020413929774526, 4.207045357682639, 4.448552793424699, 2.994338921908493, 3.0485801714684158, 11.263787045992224, 4.87289611609138, 4.796963032652308, 3.348701731322003, 7.781388431977231, 3.9323538363991424, 8.882226347604234, 4.346673071626512, 3.598927031085841, 10.056853855506247, 8.222680324331698, 4.013808331532398, 3.9631899320074635, 3.1775098698438082, 3.5609668498081066, 10.687673894284256, 6.45764599065791, 5.1274485512937975, 5.90038902938917, 11.78937792535148, 5.9268326205062545, 7.447662395664225, 7.9102958741577645, 5.518926067599598, 6.541498581265923, 4.553964818300764, 6.6754274699556, 9.003616309134161, 6.7178408530567095, 9.837538062822135, 4.090982030885929, 6.136462819809283, 4.04722908778265, 9.184775869999003, 12.128271923632585, 5.517767528866489, 8.602332029033231, 4.309927802828802, 2.7669096670618267, 6.113013586535868, 10.682544394304266, 5.476269353098022, 4.292390928346008, 4.80154073369176, 8.809356989842783, 8.375953989072492, 5.71510455509906, 8.783284523423122, 6.286133206541386, 9.301571359772227, 9.820668256237008, 12.908055285310343, 6.195728982086001, 4.057383997316021, 8.181087240575241, 10.52806168099759, 5.590587187947251, 8.118344348299505, 5.829746640177202, 5.587793044187959, 12.341618773943518, 4.963659146250606, 5.226017577386982, 7.067091683797403, 10.23538630474534, 7.815804697854296, 10.388348999212283, 9.322181813638917, 7.494591595733548, 5.5348879035984995, 6.480854976766361, 6.270189846761088, 5.124710125946366, 5.075988942637873, 4.4614747418077725, 9.626182172521592, 2.807229655868284, 3.4471325084431856, 4.312942979912615, 4.098032489752092, 4.007850283003421, 2.5757054616336434, 7.1101325368907125, 3.8266079323341664, 3.6581610887006155, 3.9653452821761372, 6.472250851957749, 5.956174244685849, 2.6692875494110915, 21.09444599436496, 9.921104225410849, 16.108722138140507, 9.50428220765853, 10.276943124988117, 22.769185910256486, 8.887566053818295, 7.206551779675692, 7.190932476412392, 7.230671497589701, 22.333146776010448, 4.099891160732316, 4.7462021562331165, 4.635602073194205, 5.825122453595383, 4.100663501472116, 10.820663134360736, 11.736001545174735, 3.4189365900448205, 3.509291334067783, 4.694323564538365, 4.015833894146136, 3.989250142222992, 5.2283183358291545, 3.7719341730017026, 4.672827351770443, 5.593851326239573, 4.444223170406584, 3.8842293301909243, 6.673278499347454, 7.913868659452715, 3.3442312919456803, 4.890365957598562, 3.7678930138215403, 3.619994761178696, 6.052255795167339, 3.269961177226805, 4.623323028383875, 8.142514621883127, 21.731769749333168, 4.80077354677642, 6.580527864738228, 4.262290315309012, 5.577833778996793, 9.004247355128902, 6.56350854350297, 7.046180114638806, 10.126938059386216, 7.2856871612831995, 3.573853794004729, 4.674145178241749, 6.451073516453403, 5.682976696287693, 4.040143317662511, 3.9361798347377843, 5.361468406876896, 4.831492135177023, 7.643264886069756, 6.246157688074398, 3.331890306652224, 7.106157513527549, 6.331875292835417, 5.209997076088932, 4.443400897227835, 13.366032321640265, 3.3858202140150127, 5.870431833169372, 5.718708433413832, 2.874043810103459, 4.003051115449028, 7.8348220361843195, 8.978133049412195, 10.203229174933325, 10.123049437992629, 6.284540851531956, 6.863785501708004, 7.9082339363368686, 5.474455666322577, 6.253731727903682, 7.739526183700254, 12.780782284624975, 4.778030067184727, 4.86067189791058, 3.2402907560821452, 3.981773707459536, 5.165474121350659, 2.8342288664470354, 3.152780454123743, 20.40037197088954, 5.281747016988943, 6.589912741251522, 7.546099930367288, 5.213064933366107, 4.534533003497214, 6.109988902636805, 6.149287851248538, 4.338673217232784, 17.102662845584533, 9.052950140932403, 19.01002179543948, 8.771921007196985, 11.52942448441011, 9.826402681967712, 14.648313039266588, 7.575916294953363, 7.827650014309091, 7.000804008268017, 8.661713349646408, 4.2325112949092984, 5.4819703311156225, 7.773186943875151, 6.628930604676233, 3.50172290181508, 3.4272395336800114, 2.702458749744782, 4.023765458069583, 2.8316136928592552, 3.352952921714224, 4.051498796499127, 4.68688522519979, 7.24746344966927, 3.60292380098483, 5.287458548280604, 9.81876028820829, 7.708571513012477, 3.9961497564229918, 4.9818166602566, 4.0462287027727, 2.9385542864306315, 6.391902268156559, 6.109019794322099, 3.9558019366963757, 8.921091872505839, 7.363435049732751, 4.040484032599768, 14.304334713776791, 9.669750353177538, 3.778980967069963, 3.226344064832275, 5.050885996375801, 4.4134033059831435, 5.083277056902859, 3.6362704018764007, 5.36098431711142, 4.546504384441457, 4.869523740949126, 7.962578119331306, 2.5744811624724875, 4.350641889997813, 4.0757629942487545, 5.397319771982204, 5.114903019558934, 7.064689498807153, 4.353400483934482, 5.280203155133984, 6.56059521069841, 3.69513926220116, 9.65083013703337, 3.565471960909514, 3.3008978286602297, 3.357044572970152, 4.359749461457035, 7.7744056002064434, 4.01203148093061, 4.405515476117301, 3.601189281428917, 4.057604010234479, 5.142290273504133, 8.59845770892335, 3.1679925726251104, 4.32448400286811, 3.5297422062873047, 3.992135145010265, 3.8644145556183425, 5.7995036542993965, 20.37572284605021, 4.425913359525032, 2.384424072838074, 4.028813881601182, 4.892361343246459, 8.541731435020536, 4.1492979117207875, 5.156127776847885, 3.4896915479674826, 3.520506786285593, 5.980289897150819, 4.153067195475636, 4.968502373125841, 4.768990476959189, 2.644332411004585, 5.877697784690322, 3.6251140121560037, 4.806435587452959, 5.013660371008031, 3.5717947159320054, 7.134751689723671, 3.587044051045628, 3.869002845075023, 4.670614821948942, 4.459059057464788, 2.750238654639675, 7.875537447314384, 4.087673712378427, 4.305791478436394, 3.411851661128887, 24.625275351208977, 8.786894325255208, 3.7653124443973067, 7.19666735270319, 5.191519193339748, 3.9875084051508654, 4.438383474569945, 5.501833945397028, 7.0764904220649445, 2.822391610758884, 6.8923006150271195, 7.574647929126608, 10.441314569500799, 2.5177284309572543, 21.74431280040793, 8.795500567203034, 6.618090181790036, 5.606793586731364, 6.091402867782813, 4.345983431966464, 3.7706871806367452, 6.980369445184155, 3.869239289174264, 10.275501681718984, 5.330619919357645, 16.80718736264187, 16.746655841651684, 5.029643045844561, 5.318637812417745, 2.643046064543513, 5.35459594400107, 7.852285316252416, 5.0527123453798115, 8.92627419147951, 4.007571046206722, 4.179491545246707, 3.2708469071665482, 3.7804891987434894, 5.398854031694837, 4.933085903582911, 6.293038962507073, 10.158056414320914, 4.614311507542295, 5.972431251918587, 5.435471605836937, 3.1485378118854683, 3.311816321433669, 18.163590907156625, 10.994420299752697, 4.294033938435281, 18.711505859579095, 22.447096448294545, 7.212616445977151, 7.122474176721901, 12.338161045851686, 12.93015554270464, 3.5787349259832304, 3.0543451140160895, 6.14614607709531, 16.07650774629747, 3.9067588012388637, 7.566150643880425, 8.870129982315753, 4.394105919168084, 5.224770652420143, 11.52077750886984, 3.191361136509951, 3.649744965456559, 12.194185552189778, 3.2090557689897192, 12.324233005644691, 8.281114122695447, 3.747541713334515, 3.8705990187448305, 7.740664718617739, 4.217793285389954, 4.912416919959865, 5.875349264269433, 6.780646444751703, 7.454538578037667, 4.378372302549647, 5.261915319763992, 12.167328042055983, 5.559959375965804, 3.6923683207683733, 7.328703556118778, 4.920404449018786, 4.463436985870618, 4.842641584464821, 2.686004235089077, 11.58497225897152, 5.190289835247763, 9.64980977837769, 5.0113493540727045, 10.67657908923699, 3.826801484738366, 7.1600213756885545, 4.111051377099103, 5.486935901865073, 21.490289221997045, 3.4754728714950525, 4.784595070393816, 4.370447407022614, 3.2724423400098837, 7.085131309832237, 13.008669122058093, 3.8252971124821102, 5.3766985593164405, 3.589944459209124, 6.405155962953442, 3.800967392449986, 7.0445139796486425, 4.3132477408158065, 4.0309810102279675, 5.591203907653842, 3.408470817264228, 3.115564332893876, 4.821265449786647, 6.689649062178031, 2.5840983483861484, 8.847829546583482, 4.088798335707672, 5.1876068812044815, 4.521163708819568, 8.544335255948896, 3.606824392087075, 5.059398925811546, 6.141274424506601, 5.974262969504761, 8.32992939359385, 5.090360602216307, 6.762143018390245, 8.861126419690164, 6.953693235741272, 5.463278559079072, 6.845057597550894, 6.586495261029365, 4.591413340782024, 3.919567079119882, 4.225279575384912, 4.179781086547756, 4.743080293910165, 5.010251223929384, 3.8940056831722223, 6.252980426909254, 4.753482051128411, 2.7944352989756855, 3.816998715968787, 9.477022452060782, 6.056300827712757, 4.536518896490324, 7.981578866777504, 10.476736261399498, 7.848442922731945, 4.519526571281615, 3.2247094444155455, 7.284574714417116, 5.1433238285410345, 5.373977415284375, 4.538148425982288, 6.611250484891668, 9.007524959857431, 15.622671920671921, 14.646111509830346, 7.643614586164337, 7.758672022922881, 4.733104487669711, 4.748804455021578, 5.231860914190055, 5.8741228069968425, 7.118839712056925, 4.069745364291165, 5.536292210460878, 9.94486339041452, 3.812932099987262, 14.248861048606301, 6.270198634398307, 3.7307638831155727, 4.1173401564607675, 4.405256635018837, 3.7338226057141917, 4.805193280113106, 6.385604736296115, 7.683631911180864, 4.681453947468968, 5.369400245366145, 4.411213807553868, 2.5013999509951645, 4.527480379794574, 7.406028494206587, 5.931795867461378, 4.157109084012133, 5.216344220364696, 7.69799963645802, 6.2114138498886415, 7.272926023472512, 3.9941905548526186, 5.7307249690270625, 4.264526749656802, 11.267952922019854, 4.497230527316761, 7.300905630365926, 7.82254261978912, 8.803026367820104, 6.855419330260412, 6.0196996248690855, 5.804647265838481, 2.5574103662087135, 4.959670525881059, 2.994454803430579, 3.5464055270210575, 4.928815943751715, 4.121801581116372, 8.026309005098634, 5.247702623260371, 2.7467656668977365, 5.786328850763656, 5.076844469655679, 5.60029613230467, 6.862062985379579, 7.324355954680498, 6.848521022081459, 6.79954233753212, 4.081889359759071, 4.3117327800411305, 6.137335283712846, 6.405844302935758, 4.202525147115527, 6.166786652568869, 4.146184597555263, 4.618795205178939, 5.92476603565639, 2.891310946121879, 8.650490239713006, 4.4730992112724355, 3.1258589751371684, 6.065393787169515, 3.981435179834243, 4.807437147944368, 4.427245658771087, 4.161020485118998, 4.21318428642252, 2.9850707424826255, 6.142935918788386, 4.4576159892184535, 8.83310105416919, 4.234785286720113, 5.151003667713847, 3.66539674070353, 4.771755345777772, 5.491483808664606, 3.7681584597671374, 3.703113941349894, 2.83636930709599, 4.341630252385727, 6.284105510650566, 3.4745144482487933, 3.3879555290980408, 3.0648135842882707, 3.245382758979372, 5.61295422362846, 4.270568733093532, 3.351758552209911, 5.472043581658037, 3.7244165038620407, 3.390573638980381, 6.544081853121376, 3.8402313115655566, 3.5547388186958235, 6.100747127872127, 5.866780289386627, 8.138763208958, 6.076762529972635, 7.2049096532636865, 4.308669767472324, 3.3946810121189026, 10.469992110014172, 6.9837253173954945, 4.645868118393884, 3.1187215637464405, 5.198487204846449, 11.14213712360654, 4.009404945475443, 5.674773920662597, 2.4822144794066743, 8.82718902482118, 3.282896505398628, 4.007708024146202, 7.9733193551944614, 6.460288549432972, 3.2523935916144007, 7.911955260474551, 4.227578658031086, 4.1164941410156946, 4.111581422571524, 3.8037258804511427, 5.304177858806988, 6.026154733747925, 4.171622983040312, 11.205376498499259, 4.008597382122888, 3.872679406557616, 5.394417909282918, 5.595122040187351, 5.431667418467231, 8.801384104345846, 2.7335476628527813, 5.2198435346569445, 2.970234873542162, 6.4617789644677, 6.700453197882436, 11.016786023723906, 3.6271006474201664, 5.756425719304202, 5.003612362262757, 4.216441558824696, 3.802964274389882, 3.7195149741263718, 3.481027483440326, 4.039501655040489, 3.28008947933217, 5.2956480588817545, 3.844286128548527, 4.9649923167160726, 4.499250543490512, 2.770758449005204, 4.217348268845353, 4.602375120726939, 5.486570086895347, 3.3562650532064606, 6.088514297099174, 2.956358171475586, 4.180425432821159, 4.60881261811456, 3.4815921264950997, 3.181530709431052, 4.7896481828527, 2.8948976110351747, 3.31260160364969, 4.36139398081627, 4.333090462028286, 3.697140072445518, 6.200890723701539, 3.8911484508129117, 2.6639707566170774, 3.7009931589583323, 6.875502894469514, 3.505202971803464, 4.856380086338238, 7.637682803988268, 4.08486461688427, 3.538172926119913, 3.974445590177409, 2.6637639425991217, 4.573391977751682, 7.593572720127368, 2.92162082056442, 2.7167906400832305, 4.910899230090448, 3.7994493574937596, 2.740410887385721, 3.5327925617062577, 2.9096559667113726, 3.1026385845278766, 4.134102771903004, 6.3206917243500165, 5.487914807697035, 8.137884393673675, 3.5315729544029724, 3.6748616418945823, 5.082525163871543, 4.0726284185645545, 2.7112546985557047, 5.205079922108951, 12.654031344891994, 7.8770917952821335, 2.5552050346652084, 3.2658231228743606, 3.2206595999720165, 3.7466919384743536, 4.545634517507811, 5.135923324969202, 3.029885479822321, 4.156320043555282, 2.7256068712084596, 7.632327561602478, 5.524444778811902, 3.3003324209608356, 3.6492404407742676, 6.629277798980862, 12.144929286902007, 7.123746113046962, 6.775532593091474, 6.132311439490024, 5.9325215576943835, 4.7464582718404165, 3.077597629502513, 6.146673215568036, 2.9108389395821552, 4.2805121167201, 11.266074876860449, 2.4948090431318195, 4.131914011671249, 10.531224347447175, 9.533565123151208, 4.437418848809609, 4.6674254073073245, 3.032079526022466, 5.479346650600891, 7.648467524537353, 4.7233137124874265, 6.831916085267647, 4.4702911076654726, 6.960571513810367, 3.712575802233751, 4.891003534430778, 5.0526028842674915, 3.8714408745280853, 5.357052561209916, 4.485825916936287, 9.454046699017285, 8.656556259820691, 2.847811410229246, 4.7686283033934895, 9.048782328473045, 21.96431867257785, 4.653509798257835, 6.036290958777085, 3.5666401371486076, 2.6375387397505192, 9.73102916503574, 6.681376369038257, 4.121170024678062, 6.0089562321417995, 5.041579224387918, 8.588209904789123, 94.76829870129869, 4.685200112852383, 7.866262955661999, 16.55671912693265, 11.338650268247399, 12.431006137399237, 5.039059837085973, 3.8838783152909033, 5.716166443785992, 4.041996143919808, 8.037934757270621, 7.024480395228028, 6.056598081658089, 5.571075838502746, 15.454640259745368, 4.176168509088619, 9.509626494678345, 5.613114563028903, 3.526302039583177, 3.4270822834322385, 4.493415051699832, 8.391864522609987, 5.078957542878558, 5.43774930355706, 4.159684451060332, 3.655314558472071, 4.83864385881008, 6.037772161467409, 8.639154543492419, 6.1150137509020555, 44.20601252622824, 30.171565582810494, 39.38983160920384, 39.10261453905573, 72.60878571428573, 59.81536228099386, 40.65822095010252, 38.62287951814271, 30.103705114330122, 24.058418494903794, 22.866493555002823, 20.179109868437706, 19.39148344392891, 39.07224186427606, 22.690729529486113, 14.796108171073367, 15.649483016740326, 17.365160536746053, 13.15297899497392, 12.782053183961223, 14.659948424563051, 13.376005441809193, 11.001088338434396, 9.34993621455559, 14.142686497691074, 9.170348404298934, 15.035650252006546, 8.570749612554206, 14.758725221845564, 9.843548038383561, 11.610944112537174, 8.738474912691858, 9.537052876849302, 7.8608445373032545, 8.879896656543654, 6.812484295496908, 8.971225838869376, 6.954656009738415, 8.773782217358395, 7.426102619734873, 10.766707301944086, 7.121745844997753, 5.299798583971406, 11.799191797878313, 10.463152500040616, 8.650381592465893, 9.605564037256068, 8.008211003767435, 9.594023337046194, 10.325267205496987, 13.165665423735266, 8.361048279161277, 8.713389983409156, 7.1526651219403155, 2.468887809574799, 8.287210551754919, 7.060888078798421, 9.16604778192848, 3.3251467299164092, 12.943639309187185, 5.219307733880996, 6.3726424912289, 3.8511744901404317, 6.042981176571082, 11.206620731188744, 6.080776025033656, 9.359988190102577, 5.725096989251338, 6.223509299742282, 4.683780748116623, 5.400369198383509, 6.580046049266981, 6.440179265665403, 4.253445080086358, 8.361741863175375, 10.668557725523032, 6.58867978098927, 29.203241241679958, 6.596171040002346, 13.168082935757138, 6.343238109954218, 5.486813373305359, 6.44823115311572, 10.798835616424366, 8.459320603471303, 5.656334615089923, 4.526117164459638, 6.163072129921332, 5.713987731033939, 5.677546515219553, 5.401431552601688, 4.422068273682845, 6.73932815637569, 6.139611616808912, 4.804983831780422, 10.288955959244754, 7.261904435494899, 3.5658557893827503, 10.10472284545959, 5.635895674098167, 7.269804638760167, 5.614953507372918, 5.378822643027163, 5.87922000359906, 5.662236996116468, 6.96630815243412, 9.372536865296377, 5.456055097720541, 5.306873084318993, 5.444552514881686, 6.085165173674724, 4.483476375997588, 5.070161273400807, 3.982576116837548, 5.789891676352513, 4.405204992162402, 3.999375569439563, 6.10104429399185, 9.45541692154307, 3.983146114923972, 5.128810252415604, 9.077339773774856, 6.172972059896755, 7.300914954119133, 3.3249258430960653, 7.095439596847065, 4.594899623718022, 4.649485131919744, 4.325499711128692, 3.9982507656041166, 6.623889594552862, 5.756201914668538, 5.058526565005389, 4.924248425965991, 4.695961868610263, 4.049849776894671, 7.292917553932985, 129.51498599439782, 4.519047937478157, 3.434663942443439, 4.841293058562232, 4.11693748023297, 4.137480321655468, 5.824645599560246, 7.0108436776832574, 6.322214090836037, 3.0896760341205733, 3.4784248041097316, 6.144646866914819, 3.1757706697197903, 7.340563276237152, 7.310907246303368, 3.9236412636639013, 4.276855074597494, 5.6333880930881906, 5.026651704556797, 3.9567035407227418, 4.620034148810427, 3.2433523230538603, 7.332178261028282, 10.405922060074127, 5.858040034452761, 5.640180395323522, 5.1301342008541235, 4.205687036802062, 6.315779439733623, 5.439686775396836, 10.604537232406845, 3.285157370365463, 6.389147376593601, 4.386927780693748, 4.394652037304491, 4.3566122898602435, 9.135663190878091, 5.232190659581933, 11.652524719586802, 5.484278491837244, 3.6980621158891127, 7.838446654919538, 6.636328497481468, 4.540058798284094, 9.073874701420786, 6.063395181532116, 8.741445390853327, 7.819638560470175, 5.690595761054216, 4.226496747415231, 4.643641469341386, 6.368142142902817, 5.24577684186377, 5.324804571010703, 3.0600975368534704, 10.331555963636228, 4.00963065558649, 6.583477969752567, 4.9425252813726726, 6.375623172312577, 6.233908851380532, 7.124290605911116, 4.50186102326282, 3.3996605651193494, 7.085558581994309, 7.792159012137649, 5.338861255059457, 5.040192218220889, 3.1696239481340758, 11.992139041826848, 5.922926039716544, 8.680312458644078, 6.744647280046148, 6.158211027052593, 4.609878940783684, 5.406724534963077, 147.18111111111122, 82.03507894736842, 5.360917268869188, 5.430696122374889, 8.699327990656895, 5.319807650674913, 3.863873422375692, 4.825566653266516, 9.417247430691578, 6.5761242085666, 5.320063842309854, 5.341664704358449, 3.193234443817718, 5.361417521618971, 10.76342008424458, 5.133418938668703, 5.361846724473586, 4.0048026397104275, 7.890902200312426, 7.287193211730818, 3.6453674143302264, 6.060204797379544, 4.73036260692523, 4.937747635254292, 4.937154014302193, 3.3051628270349602, 5.631574025355275, 4.138221765345868, 6.776208096597393, 7.963399967862702, 4.043329913979629, 7.784323534647905, 9.073318981437788, 5.239598309085664, 10.273742181234988, 4.967668859339338, 3.4081867590911026, 4.7892184178554285, 5.0429550696232495, 5.879211518672719, 3.4307585642756115, 4.25578513625569, 9.72350021443984, 5.6873581733805825, 9.457754124742111, 3.376177690630181, 6.423470364546526, 5.83990613851831, 6.871234795573648, 3.5279935527482427, 6.874842373302724, 4.753397271053217, 6.049237650894781, 4.193717971924145, 4.799383765190311, 6.799007920694345, 6.298301110466996, 6.341228844032677, 9.661165357677188, 2.627516470761575, 5.790976849808857, 4.186421642353896, 6.03346636853149, 3.6635948409528503, 5.0189643906027746, 8.367381613128073, 5.775298765574026, 5.265391885436336, 3.863782458628351, 4.3737736529133535, 4.071783787803321, 5.1277110619705955, 4.402651200708879, 4.186398109549284, 4.196792415576707, 5.668426260909546, 7.568096795265548, 9.292307217107394, 5.051044550409435, 4.132093381398567, 4.2217273560470865, 97.29488888888885, 66.26816666666663, 6.237670190385758, 5.622957172926471, 4.302570637492721, 4.880827596906889, 3.8086406079248483, 9.375374416616342, 6.715897211558038, 6.079825232805795, 9.494391296084421, 4.889260620670184, 4.233239047524358, 7.523751322264191, 6.8063345559646065, 20.380239456461776, 3.7025868115283656, 7.438878788054096, 6.129113371717546, 4.9179619461435085, 4.251955830470874, 3.7071634769783373, 6.090744604352569, 5.2594491502980905, 5.852262779568503, 5.025793757499098, 3.9966788724650515, 4.364940152550607, 13.663837028454974, 4.700869883113112, 4.099321651037315, 10.250209803169671, 5.046102260422729, 6.206661677733161, 5.406361677397119, 4.288136678154523, 4.596322473102389, 4.723720502837088, 4.897710150603821, 4.034829478003066, 8.214111910936111, 7.828131156539749, 6.201048539687028, 15.492316391765634, 6.043200115569382, 7.052200377011563, 4.261586012036277, 8.411917576467514, 7.981390098877698, 3.574133833083381, 3.454786438381386, 4.540778079950542, 4.392844903307048, 29.00879243590427, 4.377830068791293, 5.555610480435336, 4.577673731622643, 4.555576546815445, 4.37122697153336, 2.894203492144206, 4.674202193640017, 6.30015136349084, 5.038453438218378, 4.208697201320879, 4.244991035405356, 4.4011916639756645, 7.251681111810195, 10.803354373201266, 5.596074714446724, 4.994923260865365, 8.790247460492743, 7.8495721546985715, 5.301593441459031, 4.279324176967204, 3.1840788057731393, 4.165322166000811, 5.706739267561335, 6.849489940692547, 4.401370573574197, 2.7687915790809527, 8.824254133453627, 9.71369273532552, 4.386018301583167, 4.8985542184821, 3.917305398551384, 4.606528181525343, 6.219583681565519, 3.6765751497238663, 5.47128722767311, 5.733056347194424, 3.6452468428186044, 4.26370695178542, 9.584822285956298, 5.354323728040059, 7.782012681793131, 7.429094736866489, 3.7363703149844034, 4.620673533983204, 4.459604490403156, 5.25198040552244, 3.23281678105037, 3.7694221672056303, 7.196843510240111, 5.396712055491674, 4.253575661403775, 4.731580239689265, 5.71743187513416, 3.8799468501845045, 5.858795674693981, 6.801908523009723, 4.625969630045596, 3.7734474142587597, 4.559784554487784, 4.834759482314112, 4.187197516305539, 4.625686429612667, 4.311487926031674, 6.4140532478383525, 3.9615320240796823, 3.4620001447097324, 4.111782213605684, 5.620714205033215, 4.027112824067371, 4.292445034563269, 3.8631511220121815, 6.488626951598416, 6.507513390200724, 4.352248420185873, 5.1307540124963396, 3.7096049332733125, 4.892804794514216, 4.708386849305684, 4.755258265970722, 4.508343539508159, 4.868828414071053, 3.9762761143016805, 3.768940362123716, 5.101427977425816, 4.37547686529949, 3.6212313968067793, 4.729903580455659, 4.221568486307198, 3.85037508363603, 5.337330258795018, 3.7289290005329514, 5.569706475962594, 4.276915540268076, 6.839750017951274, 4.9981458814422615, 5.227341340002415, 3.6782613295616304, 4.622861596864769, 4.804177142217066, 4.390384662973872, 4.852087540167619, 13.377855356593564, 3.8749388374327207, 3.910970300790168, 4.941049228927528, 3.369390875365896, 6.709672423856375, 4.719618052422424, 4.4655783559412106, 4.166180613112291, 4.629749537245985, 5.538155823040079, 3.8168426335446286, 5.943207449482545, 3.323975692318149, 4.269967690208776, 4.1011734543357585, 5.313641778391295, 4.027115629822574, 4.795494333533069, 4.263576988400444, 3.788091285854472, 6.249189284656604, 4.968514052466778, 2.754510243557821, 4.32067734796899, 4.928203050503743, 3.744176835751671, 3.3073925782118767, 3.851255127485667, 5.055746679145809, 3.3697859689726313, 3.8837326470370295, 5.701886006017811, 5.042610376266576, 17.56438467771775, 12.415832910374075, 15.435616288950117, 9.974399472886521, 7.616332458018695, 7.874399675123488, 8.90683583961688, 7.78351091046122, 7.5097637505179655, 10.821982577753866, 8.628293751057198, 7.100131558901686, 7.6031819477931775, 8.461106354857872, 6.275946546551497, 9.871585621900982, 7.049661671515037, 6.28331467998645, 8.463195512514154, 9.853548981211745, 6.445338080798086, 9.393758198237654, 6.992465721901105, 6.134199616674131, 6.653558632954318, 5.5020182763276955, 5.146123549871103, 4.8385954841054915, 6.17716294903536, 4.850676235103922, 7.807537510140119, 5.883543960258013, 5.531737034400415, 4.30421377602095, 6.036973719332232, 5.3932589152366335, 5.042528166539527, 8.669341567409829, 4.360286947206637, 5.936607414507268, 5.619218848673004, 4.942741951665849, 4.2543797789327495, 8.37477326030453, 5.432770487439379, 3.683451420373219, 4.721103387437868, 6.048275311645468, 4.121960817332709, 4.921510726075136, 4.260776083646142, 6.590043540603585, 5.5833378236240305, 8.891012072692153, 6.270728910029087, 6.574751775648028, 4.734916089543115, 7.48662457709139, 3.9562149573169085, 5.207139562368511, 4.1893011086776015, 3.6774755947122015, 3.986464517291323, 3.635053402871312, 3.5996219281974673, 4.035532730954525, 5.5988682028449865, 5.299057672027236, 8.03135757829362, 8.123261217054262, 9.636145338113828, 9.09122704858066, 4.956508301041939, 8.075078371631804, 4.1999036136314425, 4.926197228160329, 3.462262909586298, 4.1068584157652595, 7.424591515342076, 5.323294323889298, 5.985425929854952, 5.123073175759697, 3.7241624868368315, 2.7909294373517803, 4.796921959292838, 6.49085206750516, 3.479076892767038, 8.914049241225712, 6.07482707546228, 4.287772125773406, 6.912995428721241, 4.594299384515856, 2.7197482007901277, 6.161117396667964, 2.621868712176081, 2.969828647409121, 4.156528432544286, 2.9745133916543516, 5.317865422378269, 4.168118782252585, 4.49675707551514, 4.1481046650122355, 6.480750486000364, 5.008378929163997, 3.281905172638956, 22.26398415797723, 7.433757258649371, 6.680911417287367, 3.340158616171093, 3.8659296942062467, 4.502350970071804, 3.546519995102158, 4.115984435469698, 4.642764436589908, 3.817309976559611, 5.9674709849499985, 3.552250081905424, 4.254813913184482, 7.785970048372776, 3.4901518404029166, 5.242722553453374, 6.4653779945078265, 5.862436020432917, 3.1764429704756916, 3.8908551936579934, 4.795881414068517, 3.7361982031063268, 5.7462736021332255, 4.995553652667109, 3.719597098516353, 3.6356989784252547, 4.390083979862387, 3.203711651456272, 4.608049968520982, 4.4200549263312565, 5.635102418456098, 3.499735526814227, 3.8847093619016793, 3.9966119264328355, 4.692496109864695, 4.763799671560273, 6.060714013180659, 4.482904741045148, 3.9471012006586106, 5.584923368564398, 4.312284716091817, 8.336114250328118, 4.3055625681057075, 6.467632266718286, 4.024312702777532, 5.060542900165584, 7.376155380427277, 3.17983578077853, 3.8154668561548286, 3.6909347850622125, 3.16346314215092, 10.254615533014809, 3.9946125135933235, 3.5778936395363248, 2.50877958013063, 3.581381010216032, 7.492986960910026, 5.569180635064503, 2.7751704490258104, 5.656100650816214, 4.004173439029981, 6.2289180725975966, 5.959783262662868, 4.0577685602963145, 2.8882180919160634, 4.5585454906054, 7.671798358016593, 2.786621060663832, 4.818402700815653, 4.563783388848692, 3.0802643672029104, 12.802473311280076, 4.771956152449098, 3.569983936642849, 6.590405346873049, 3.895471147106052, 4.738712743864805, 5.743312410455915, 5.16594928627395, 4.594780716527437, 5.321319024691505, 2.71693396504661, 5.2321811021891715, 7.354171534388504, 3.2296330763893066, 10.915393926477048, 6.6036195795354775, 4.595375459882591, 2.9568124916921024, 5.397550330603928, 5.28847136935368, 4.089544844340577, 14.91348863380498, 10.691738558147238, 13.067398034123476, 2.9280725225458633, 4.0637588029775715, 7.169141655142938, 4.068484070970738, 4.818742236838488, 6.164470572905355, 3.798473703819308, 4.598051191971775, 3.613560653961746, 3.844932829337806, 5.839975901000949, 10.939614116138683, 16.18311001479345, 12.457866327646126, 11.879766389661597, 10.218267378327043, 2.878682554041179, 4.794886832043442, 8.71077746995247, 5.759691387700622, 5.2295383080174425, 10.645030544609082, 10.374851078150565, 9.291700689230542, 3.9635272021232053, 3.9125905123833267, 6.618848158138618, 6.157369010211389, 4.551973201854935, 6.196088327404718, 4.809854152218261, 7.108764588773082, 2.9049831464021403, 6.732521949641853, 5.263211479153496, 4.559253016862864, 3.385261707615797, 2.8033451484861165, 6.224454243343598, 5.82950057592, 2.8646639156191007, 6.0654265164253225, 5.603071683336548, 5.398510967137673, 3.559804146447972, 3.1452625191955494, 6.63457951758863, 2.9684968698711476, 7.633920450820151, 4.108789372803592, 4.820228808136871, 6.094734097766838, 3.5452838380344067, 2.4246650606931075, 5.087184093301136, 7.568657230518704, 5.900422116950988, 8.73860760794031, 7.022315142762158, 2.8141503343036707, 4.190122441770588, 6.79581946102902, 4.688814862676711, 4.95978967323674, 6.894916942132898, 8.888679711852166, 30.021676887702746, 4.375541295835945, 5.197069266226742, 7.73583018621173, 7.475369294772927, 4.434290058479407, 3.459411870859517, 5.678422418459163, 5.919275798579065, 36.09585263816441, 47.013043363499214, 31.805333333333344, 24.82273997495133, 14.05866529969605, 16.662068650871717, 23.876833900226753, 29.11510395976573, 12.531015796202647, 22.701459218559226, 12.000979306606183, 18.74380715045189, 16.634060904781492, 15.385970178514295, 9.260564207358597, 8.83873667216085, 12.094851412175716, 11.620828888204372, 13.9386936086092, 9.191690703740703, 6.71734712960073, 6.4641530704734, 9.447359820131563, 8.221914669579414, 7.8010276027107635, 5.512222259908836, 9.706079297895084, 8.317825054331633, 4.858205182094497, 5.365389294159355, 12.011357381420272, 17.780887473637478, 9.970905410980485, 6.2853446701829565, 4.171786268167379, 6.4209452823162545, 5.858239938321812, 4.732060566257683, 5.147404014296237, 3.4752408727892314, 5.0548569337184315, 5.787531372231645, 7.899339641052103, 5.031305476138288, 5.612210372076339, 7.7027596273490655, 6.145649244773728, 4.977394138251331, 3.6580482611658813, 7.362186490154625, 6.291876644870453, 3.708889673805709, 8.425802844857683, 6.409159211572461, 6.275504418311909, 4.639645295373496, 4.438280710481817, 4.379893873740917, 4.184077244854065, 11.052954628893097, 4.742062983402157, 4.240114096990724, 4.656708005629149, 6.106864603179406, 3.3882226346422897, 4.580074599926089, 6.350122936560536, 171.3551944444445, 3.6809986597562223, 5.663002464177119, 5.212323674130593, 4.329111465441836, 5.481546389370895, 4.001378153980949, 6.071487269141651, 3.49284894646915, 3.664085145472891, 5.52721979381987, 5.385515468018064, 4.368782981638265, 3.995633379027675, 3.0098839841839116, 3.930262957110139, 4.660834980342281, 3.9770533736093445, 5.874416389028312, 10.038998313090415, 6.3092832160166195, 12.584961805889845, 8.897339309421769, 9.201673035495036, 9.790438228111759, 5.4814693502131835, 6.863725064677404, 3.2975973607104336, 4.883797320195832, 5.237211832275947, 6.416258446465171, 84.35333631947762, 3.8706222433330817, 3.0539995826357966, 3.1954037717614434, 3.855474519998994, 7.616031438627657, 5.717858172321162, 4.189164025271178, 2.4082566228450886, 4.348513322694327, 3.0658074170272522, 4.67867341908273, 34.85361424022837, 3.913377512461532, 4.4403305601364655, 3.650670663981253, 5.71231748590018, 4.640814736077653, 3.6017524811389703, 3.3974687480985692, 3.130830391222797, 5.136112049189844, 5.555079492464973, 5.911633998948163, 8.249333802316718, 5.07896146815743, 3.3370779115434757, 4.122689271300441, 4.745712016291385, 19.95596156978734, 3.2172268871820653, 4.219145001894795, 2.566616203941772, 4.524247883631892, 2.758134312797727, 9.519126436838267, 3.644841717265539, 4.23662561578985, 4.225699283811591, 4.318894785588958, 4.861465799427952, 4.337075170631879, 5.3299971388106835, 5.388136007414813, 4.728238755766002, 3.091998576655405, 9.94778159828729, 3.242361861720719, 4.553319203193981, 5.9715900322901705, 4.717511653058966, 3.2365669022098493, 6.641013961688011, 6.057544785167984, 6.793319915233578, 10.188112695668353, 3.130915762697828, 5.418436031797026, 5.491960453875852, 8.595584104874957, 5.782292399320839, 5.189018148973255, 4.049114584106804, 5.278032670925427, 6.6425807762430615, 4.160044776865722, 4.87139027708143, 6.145392234646788, 4.2278617614475715, 8.592693703143532, 3.302485293391376, 3.5578131552897436, 2.682190381988288, 7.749242263885161, 4.897604171820617, 13.328101865732725, 3.9769132321029423, 3.7586297697800712, 5.237222452958348, 5.205980863729169, 10.199612739161683, 11.144788015160454, 2.595145993749385, 4.727373408784217, 6.2337799244837795, 6.031431502972324, 4.671141766240999, 4.702527212912818, 4.822182101486367, 3.7542683780630406, 6.866635806656835, 5.778020935017027, 15.927388728795778, 4.21116524228977, 4.3215061681118065, 7.466437267263072, 7.367292671052615, 14.001184924357219, 7.588815524398045, 10.357116353055057, 9.803459000929733, 4.882416468338954, 4.347947194716688, 4.235915800754806, 6.951176591790806, 8.196045416509063, 4.713695627885859, 5.414163389316366, 8.931937987835395, 4.075593732954946, 9.700790984584021, 14.456942838775314, 10.46608992038485, 5.39258434408386, 9.14804011562608, 4.249881066764769, 6.000823299408433, 21.387856580193848, 11.673581180513473, 8.109304691434389, 7.594167026283082, 3.9061051205341073, 3.480239787823373, 6.045916037325523, 7.818074431796403, 14.434694618453438, 8.419493346519117, 3.3824204117035075, 4.830493792545132, 3.416494761633251, 6.856595661646325, 6.85933900452484, 4.240623312041031, 12.4967263795728, 4.537333702154109, 8.272809912902574, 5.540292488012593, 7.64125254793132, 5.962199960063832, 6.837468013217818, 3.5588594625709207, 6.041745927443149, 3.184453221932502, 3.642667211240343, 5.357378438337434, 5.201065819803439, 2.8165093855286054, 5.004372307516017, 5.448401913823673, 3.343997025234736, 6.765115067213115, 5.0416828180139035, 3.907433009613606, 4.995945696854848, 2.9219343413326127, 4.00366026286015, 4.9126793118345145, 4.670383053153426, 4.084356754830334, 6.999188451824051, 5.994891125371338, 3.9531049923165353, 5.673476105476902, 4.76509842570754, 8.881610791985795, 10.856515131338496, 5.668970643210199, 3.407197514729739, 8.951304552172973, 6.996884092166727, 5.528538453077156, 4.3413545536724, 5.104033575546935, 3.344050402903096, 7.200593786676861, 5.802166656557587, 4.386697989603317, 9.736001115133925, 5.9277483608277075, 6.539260887850833, 6.045652665269564, 11.13517131048817, 4.59110464181527, 7.496301785379372, 9.65352609874673, 6.637551894031936, 3.6626722489036494, 3.529052045553696, 6.3308703877344, 3.6004620967826106, 4.174016329943572, 4.626570446781659, 7.325814184410303, 18.13778845397809, 17.644753627003617, 13.921883139771454, 10.063800749395615, 5.588763648494696, 4.22716215136708, 13.486815800101468, 7.687843948252877, 5.927322205357423, 11.352498274436112, 4.5507419931643085, 17.13273714520774, 11.525963579248412, 18.5371715657614, 7.153695897980269, 3.427881301456036, 5.585286505403297, 68.80204865424432, 7.283265467675976, 7.293020480689311, 11.454446834222315, 6.865040067500917, 9.062470896547989, 6.172541200582425, 7.373954686729602, 5.444756957462495, 11.25628283071938, 8.476524145262164, 10.317876907732792, 10.818521977496976, 6.690793559940631, 9.474490297009027, 20.197391022904828, 3.6791762225386764, 3.247611376094277, 5.11364630538961, 8.134073202293136, 6.288232053684313, 7.248177279087481, 5.116594394478233, 3.994551752792111, 12.357967188673264, 5.142380639494601, 15.710112314542108, 4.510471623549014, 3.8967515164527624, 3.635391378343738, 4.479287478781789, 9.717800520829025, 5.744151221798436, 5.33270176244462, 2.9188810301343584, 5.091875298452071, 10.08890585295979, 3.3256427432244333, 9.28158635528149, 9.934719623603605, 5.225385005233989, 4.451284395988883, 5.2208688112574055, 8.852431545259154, 6.2556345801002795, 5.442935374772535, 6.316624111811027, 6.276270492169061, 4.020980992306652, 6.852536432877719, 3.6302802207695946, 4.167321623999084, 3.9607436257472686, 5.685345638466058, 7.0641100128390955, 9.170466812873643, 3.1774524554019306, 2.666669990198215, 5.321205088550855, 6.648448529716237, 9.113741564110724, 7.5747615502063335, 2.4645027717280374, 8.696366596726936, 6.654945963839472, 4.730997597351856, 10.472800976800979, 5.778440203083629, 4.2924295547752065, 5.518210811799133, 4.380852879953574, 4.965384507661982, 4.749630904435754, 3.55549947590729, 9.03166923366279, 9.385903991409053, 7.469716899517325, 4.427734896708884, 3.9627835531406608, 4.9698923618463855, 2.9161405779836453, 4.7280098192977436, 2.660993112844426, 5.186764644423421, 5.130685799497565, 3.3245911677214353, 3.5307488707881007, 4.46002577059619, 4.969815371054484, 14.894330073022038, 4.283012156028213, 3.2406010765394124, 3.9661464047341624, 4.711542648779084, 4.82737285336148, 6.698870026552593, 5.6164073700223645, 7.2093421141299325, 4.775736174721655, 6.966953275767553, 3.694314424161774, 4.2653658716839296, 4.189986435856242, 17.96376627259476, 14.000326146076143, 3.6781121978647535, 5.046349526138026, 10.777969517776414, 5.180338688544456, 4.1280425603695425, 4.018599551818349, 5.827998906890111, 4.0240761279308686, 7.902151840591937, 3.3233875319649337, 4.62629702701398, 6.207585496689943, 4.3013610032776715, 6.748573669452607, 10.682522290552416, 12.081255066656764, 3.392478740745957, 4.031340069031387, 9.030623137811526, 3.6828285276330286, 10.154344964745857, 7.453825406283936, 4.018586760433915, 3.4713407623682992, 7.827599359191623, 3.3433596180049565, 4.268783086995586, 5.066206826133491, 21.44923642549578, 2.933726128705546, 4.6456700425912505, 9.954412667135315, 2.933776237505234, 11.115579078694235, 14.478563589188589, 3.0417281408815424, 5.244627841502659, 5.050299040934874, 4.015221470532629, 4.838712861143894, 8.856245222084835, 9.862257630841876, 5.32352360660343, 3.2521542637843632, 3.137682942305549, 6.352278311181141, 4.003931752332579, 2.9057085218995105, 11.404920823357596, 2.2653444283981496, 4.789716857381254, 5.293082297090942, 7.98509186923614, 8.61186955579063, 8.405209578424039, 16.802620155716518, 6.940497184683924, 5.338711276577953, 11.57172286504893, 2.9170025741370282, 4.28836272048898, 18.22980344885318, 3.7815875446305376, 5.421372006087968, 2.9595829975213968, 3.5531354530612527, 4.49719693134406, 3.263435940041142, 4.897797214600438, 5.910413449237335, 5.034090894438685, 3.878193024134645, 3.664423208484557, 3.3475601469533016, 7.518822177874765, 6.062243452413959, 24.22123029318823, 3.2025605057866207, 3.0298666759074564, 5.479254632841512, 3.440811879186946, 11.827590780161776, 4.091311244414428, 4.788123472207093, 3.662094546525827, 11.03429737459188, 5.315400788172144, 5.335123740800169, 7.255206542792198, 3.8338191320345074, 9.515879122635688, 6.623115345684009, 3.3084405132457313, 19.085097347889835, 16.910965129315123, 6.270130168179134, 8.880157128577247, 4.974414437084038, 7.709411674400974, 13.228929749800411, 13.773290742753986, 7.016385904652037, 3.785483180867867, 4.330283726531605, 2.9194335041831603, 4.432441387342, 11.649188877388818, 5.5897363593151335, 7.23445710782593, 9.165384296796395, 10.996778057874133, 4.378819548196696, 3.949336646663866, 5.68306141824793, 6.697715027499794, 3.2138444498496854, 5.1472578368424955, 3.6364370719561956, 7.687558738880166, 8.880656442397054, 6.225110879881845, 6.415356026372289, 3.9624946816089044, 5.967978323146318, 6.817471379437553, 3.3713711765168024, 3.8621841921838307, 4.42954518669753, 4.488174571793223, 5.9430993823575395, 4.039940770678097, 5.810542033153413, 10.348401206732921, 12.148357068852052, 4.825293246859806, 7.924789852001572, 28.40010743965333, 5.809349533453918, 2.998257218250778, 11.281774733294032, 3.681546102793222, 4.6603278404552375, 3.956903675807132, 8.14689462636025, 3.811438993183003, 4.928428807626223, 3.699058199393287, 6.626026232368618, 5.754449373125666, 3.354357621176302, 7.9013060877906955, 5.9156023517522, 6.947962484377532, 3.7589596108225924, 5.086625726345817, 3.936480749096185, 6.596974005906108, 5.781251609798051, 15.691574634408065, 5.556881451769493, 7.096306966075754, 3.0878199448245125, 5.179522164220165, 7.507899496127552, 3.695079832794788, 5.931413576640144, 8.103358279115957, 7.030463190058864, 4.06334399835554, 5.056021012883968, 5.041284038638247, 5.009608687960161, 5.547332814959075, 5.304067914322143, 5.032802942209445, 5.628319664616717, 20.15796815738074, 3.924936266406374, 6.301318547083522, 3.512465698206529, 6.285458116120849, 4.765872777968036, 6.1859529343710165, 7.746364435458199, 8.088091022222372, 5.24198235108679, 3.960078239108171, 14.345682952220367, 4.99519855831391, 14.194116045112102, 243.76000000000013, 5.138163208259684, 12.960939199999656, 5.048218555117643, 3.7940301083776946, 6.142121843521472, 17.5935798882096, 5.482344519186993, 2.982325207831194, 8.255255522223052, 4.9792755458701805, 5.169753047435741, 5.19473380972364, 9.197025057226242, 5.416963159880485, 10.936104314677893, 3.754567302370649, 4.593584291398962, 4.070150735229729, 24.137464408585846] hash_iot = [0.0, 1.0000000000000007, 1.2400000000000009, 1.340000000000001, 1.344999999999999, 1.3350000000000009, 1.3350000000000009, 2.3133333333333326, 1.5616666666666663, 1.9183333333333346, 2.3824999999999994, 2.343333333333332, 2.6008333333333304, 2.304666666666667, 3.5000714285714274, 6.295999999999999, 6.213666666666668, 6.9682499999999985, 5.34975, 3.638619047619046, 7.359166666666664, 8.558000000000003, 6.495960317460318, 4.100190476190472, 7.186035714285716, 6.251722222222222, 2.922777056277056, 1.690562049062049, 1.8741226551226553, 3.461854867354867, 2.4259630647130646, 2.197174603174603, 3.2272539682539665, 3.212884615384617, 1.883344187675071, 3.061654761904762, 6.417389027639023, 2.7823817163228926, 2.8350476190476184, 5.6996071428571415, 4.468387085137083, 3.335368566074447, 3.5468506909756896, 3.1430435511770645, 4.070275499354447, 5.275549311799313, 4.348577267503737, 3.8471958041958034, 4.00211544011544, 1.7258531746031753, 2.7155298573975037, 5.357351261519098, 4.551278429903432, 6.682389517345397, 4.586332764457762, 4.938274022760864, 8.3375111000111, 6.376989700623333, 3.5321557757459936, 2.538084738361053, 5.286734793586183, 6.586697472634006, 2.965383033633032, 3.3093974145064955, 4.876700440082793, 6.353001702770969, 8.71879305008716, 3.432531054993501, 2.604368891415652, 6.30948580395577, 7.890378968253966, 6.203003472550836, 6.107053422176952, 4.843865507755433, 2.772715367965368, 4.256667138417137, 4.634162987597197, 2.895761419403316, 5.16255899608647, 3.548728175129985, 3.9762256308506307, 5.361434319836796, 5.428485250659785, 4.919606208328985, 3.3493792415823216, 4.174270449407831, 4.379872529431352, 3.0200302949502866, 4.1040433849775955, 4.81912430284149, 8.268310061682651, 4.78421611385753, 3.3731095425230655, 4.262109333476978, 2.2490929348429356, 3.4127482258891404, 3.3114775281123205, 7.214437415942518, 6.6670620013074045, 3.0152729786994814, 4.663930520176775, 4.640397582661425, 7.036931834165507, 3.545402374523854, 3.6081707473812727, 7.522615759971023, 6.212399437727022, 2.988507319434951, 10.749830979234613, 8.451753484841683, 7.66056692554889, 8.344062033932698, 4.007729263655733, 6.6194238739321, 9.384520396972514, 11.356688431382855, 8.65591246511611, 11.014038400926559, 6.267395127016322, 2.3775508690038003, 5.970104384177913, 2.423163051885043, 6.6328991027208355, 2.8256129129802714, 4.073024471766697, 3.723303531238358, 3.9245251877854574, 7.493255501909366, 6.707313507156043, 6.582756952188836, 3.289055224893562, 5.923144917463939, 2.6385877563925377, 8.954137814792636, 4.384985980570799, 8.272673998842379, 3.4312090648721387, 6.984950724815704, 9.782464492866925, 6.201930995736899, 6.532503794956943, 8.201576035875656, 7.547545778967524, 3.095734475655064, 2.900958608314107, 2.8492669463150446, 7.47016878733206, 8.013341596069825, 8.909321590143714, 11.432485802151156, 6.826305333174754, 12.428044852851855, 9.088764745228282, 3.1880192586048746, 4.203635855999819, 6.0778627643287715, 3.127282390002782, 11.890221451447795, 7.286801723106977, 5.571174735981904, 3.329093157809452, 3.236128669887194, 5.321691062091757, 3.821218412121726, 9.56725546462107, 6.7278091166789995, 4.853585337987771, 6.365904791607714, 6.342299842881939, 7.178106038552826, 4.534639703954028, 4.4471763412652825, 3.072827586372112, 4.485775871127318, 3.9541118353367235, 10.0540747955786, 8.686832028170544, 3.1792442730533312, 6.595746273397799, 8.853064868763719, 7.310770450666192, 4.253755424401001, 9.902755373613807, 7.197130438926902, 8.133596811717403, 5.066711996480747, 5.1255686990262745, 11.6698048991692, 3.506544259832767, 7.24994054416406, 12.094821540678556, 5.041641305540678, 9.770801425697202, 4.5586967938069485, 4.965033623652601, 14.978075344385386, 7.67029339809509, 2.8114240548862965, 6.28627953622697, 10.196740512942753, 11.138470425093598, 3.5170467487152046, 11.270771576385961, 3.568363405955283, 3.8424393026093786, 3.722597077585566, 5.379180619954404, 3.436529432115466, 5.153622166157859, 2.7623603534042562, 5.447242547995968, 5.463626328982406, 4.793681084583805, 6.150084276306579, 6.91523070835223, 6.633675985063067, 10.294234320142397, 7.3500253598505365, 7.7360547314699, 4.116329785468257, 3.2541670690114772, 3.0505246450668206, 2.9060761308996352, 7.459316313678652, 5.83800779845691, 9.13404937619111, 11.26378900660862, 8.44644981561896, 2.4653725497460113, 7.365774800660854, 9.12098726825734, 7.227865461170756, 4.478714458861164, 10.398800033096704, 4.342427803669182, 9.508729862140664, 10.253175487348297, 4.098649904202758, 4.272863048838843, 6.322822031251696, 6.098329480939197, 3.123612742830949, 9.830730809404225, 3.5555037035423163, 3.675791865362861, 4.944154154676101, 3.9739088275118783, 6.242552024902968, 6.8315395370867, 4.02067422932193, 7.948243266645263, 10.321650570564177, 7.032533775465638, 6.709349473860092, 8.457463089345598, 5.444558033697652, 6.001811393115918, 3.9384421206596474, 3.1646178377377665, 10.934820917105812, 3.1289427500895943, 3.528764136152102, 6.264453533966777, 9.78390666643032, 4.017015583902551, 7.222088340242646, 6.282119633145865, 7.6197779779104335, 10.482408626481604, 4.333429755416599, 10.599389623318434, 2.6892405522065923, 2.828431674615575, 6.3659135882599545, 7.525542239273125, 5.553152418077149, 5.360713900642415, 4.8243268464088445, 4.83856324128435, 5.818181398747473, 3.508618391785355, 5.882459502419716, 12.254216181542207, 6.384208776710969, 11.350298550666333, 5.779757227651663, 8.851337527685452, 7.521646663290655, 9.117402949116064, 4.001398962566209, 10.825930654325115, 8.550111705740672, 4.590255903727684, 5.231958007475398, 3.4186923505580316, 8.15567424299363, 5.554969869863465, 9.666083839410941, 6.17702178354606, 5.292446367620873, 3.587385986902902, 5.094006471417566, 6.722785914397973, 9.620846888246524, 7.02816193050647, 2.6244679228563914, 9.1159781955716, 6.1395183739568395, 4.348049224113971, 12.283241584331217, 4.796855694443276, 3.6015029065571382, 6.693667845719407, 3.9795922750058286, 3.7947275596866796, 5.8687775915655465, 3.9479696782717877, 4.058219546067907, 7.38207396699663, 3.534559383975276, 12.235351637466703, 7.152789313115458, 14.087564233363382, 4.942958507295725, 13.478047258151154, 3.6385329137280538, 4.243801282587682, 5.804451926587802, 10.491985442127419, 4.959489145150097, 8.041248479945375, 9.871678560960708, 8.765834777484464, 4.20311897953166, 3.09410677751876, 9.237897191439615, 4.953015786685418, 7.945886724678767, 5.544870069222768, 3.064600932811326, 4.736268907623317, 3.4978222627439624, 3.058039046854627, 3.0510268986220193, 4.550938754356966, 3.9216378051373932, 3.8715288638239005, 3.8902174976490658, 4.001615344959142, 4.960441339560946, 3.170859532709945, 2.874847289448398, 3.837891660814572, 2.2986154781623287, 5.05836887435674, 4.4631662289727565, 3.529935085847457, 2.185097147224014, 3.30832922469809, 4.191100168803095, 4.193607045324531, 2.3589594748744753, 3.1888709110762794, 5.273459185531186, 4.567530814186128, 3.2393986456505757, 3.7279252585478955, 3.498366247932638, 4.469063655542689, 6.362175692229644, 3.694141397312646, 6.264271690815019, 2.9748624553586884, 3.501958761595269, 4.688987102461635, 4.492733524708754, 3.9832031785752022, 4.789401381957554, 4.476559490558134, 4.234799491171077, 4.802765066066705, 3.8419143186500704, 3.992951094011132, 3.6144646283676662, 4.473382054101055, 3.401945778991226, 2.707533838841748, 3.9991415476902445, 3.2951818643688013, 4.308497567357236, 3.9405855051323284, 3.8742154970727776, 4.93867881486024, 3.003917442308602, 3.5273592306103443, 4.027106130268924, 2.799880610688156, 5.886200217213134, 6.25327727943535, 3.4593189743286095, 3.4835673042239934, 2.6013454984884334, 2.8280853508500545, 3.06902394393113, 3.790294414827107, 3.410975779490071, 3.043910904646292, 8.613398672197057, 5.923087386881358, 4.670493422438883, 4.130904796730692, 2.601363649947727, 3.9251875531368636, 4.209019396326432, 2.944589121961087, 2.814287226299245, 2.616115615138487, 5.125137291082776, 6.161624366339985, 2.524693616012006, 5.703765783234969, 3.4132010499878787, 3.3025923700365194, 5.087996292895498, 2.630161622939043, 5.524729100511803, 2.65298071889725, 5.648095927651687, 3.851262985478674, 2.828474396531518, 5.096895271356622, 2.7706909224086074, 3.5387375028596906, 5.209093025755294, 5.727190327681057, 3.586053252814751, 5.580060463254205, 2.4835875942466292, 4.420022391287891, 4.700785689884067, 3.0297292677297607, 2.855419570310786, 6.437264012448126, 3.475953144937994, 6.18412833894508, 4.509134651613091, 6.18096221233545, 3.8298205352351657, 5.5142890694333255, 3.068941282463789, 3.77104795296927, 4.895389389104176, 5.023475308708158, 3.7190632204728256, 5.964467201313101, 3.998002060850448, 4.769570689271374, 3.6764128793645194, 3.7948399893988527, 3.2292322151912076, 3.2680864696784444, 3.1661524045996523, 4.973841346375908, 8.011468309493852, 5.116925887209583, 2.6136167497973704, 8.423845471683487, 19.337816157271895, 7.355112989850582, 4.548314930115923, 4.213858990682082, 5.0497312350271235, 5.085380294932137, 2.968274884795125, 2.73508078163854, 3.7054053790419554, 2.9702339950228227, 6.9969283644873155, 3.599191092451104, 2.470901825441746, 3.6967802226598807, 5.981455287084891, 2.442613816449754, 5.34051630737104, 6.629165493582261, 5.6415091004746305, 2.917112169061345, 3.584256827784329, 6.175137247577345, 3.067353960152336, 5.113741577507178, 8.256615281599746, 5.739898184964249, 7.406766499508592, 6.559867090922452, 4.852751515458196, 19.86037313521683, 8.529295986592247, 6.485884714015638, 19.140730280779476, 16.883753160760584, 12.438706885684741, 20.62028775936648, 19.100002172555403, 6.880165049357838, 7.958397063662706, 3.696629087947402, 2.7975539570631347, 6.49827695883863, 2.394517701599447, 5.544167319052418, 6.995472515068155, 7.32338607999062, 5.730888400131323, 10.980992277597267, 4.254196284978857, 8.071873823231288, 4.729207590552746, 5.39808566179773, 2.960196565189848, 3.989772588602888, 3.5314701890759905, 20.03602572249731, 52.952694546551946, 86.57450986575255, 60.993164579701364, 72.27847826584912, 62.11068219624514, 37.496110250286016, 62.729005837761925, 12.51325284088538, 37.34565850508068, 7.04193881896575, 6.031191598155185, 2.902649723435112, 5.054621678296406, 4.909125907381262, 3.9284368867191315, 3.0888711428864233, 6.451237687731252, 5.617216553867651, 2.7076656565543065, 3.339267439288864, 4.094043299653049, 3.4060999747793264, 7.981425786432124, 3.493535454510016, 5.480001934724632, 3.247392127487388, 5.815788823456812, 4.085591627945998, 3.3450248744921574, 4.081728015260896, 8.412311020423411, 3.0626112436109145, 4.352554522700656, 7.575768230327004, 4.434731381097703, 3.5751956993465943, 7.402277330318561, 2.9662984408205366, 3.826264368128745, 4.401629639009273, 2.9131067910597106, 3.234844735687387, 3.6242884852670314, 7.301152947780209, 3.9228485779978466, 4.058033321424104, 2.762287229231924, 2.8172547545396696, 4.87346668947926, 4.66267720359991, 3.6169111547499626, 3.401528618322204, 11.281547665090756, 4.508066574196679, 9.917260710365543, 12.028246897287024, 8.37357256878016, 6.51845387582161, 9.893824663748232, 14.478875524322762, 9.768029559485559, 4.713363973295529, 15.683370289473693, 11.816621958810122, 3.185376585725596, 2.8605579998301525, 2.948225525883604, 3.0337238223501797, 2.155364907440155, 10.039927063585633, 2.5608862699276416, 3.2236243875109305, 4.851083015804508, 7.006111661770816, 5.679959209981224, 4.173852676040742, 4.847049239821215, 4.035585074558172, 4.367452415842902, 8.288051451253274, 16.50646403551848, 11.541996224915529, 41.54354459014755, 32.819858501363775, 15.53856817701086, 21.949156889560584, 23.006477737010123, 33.435553585543495, 16.338968623252992, 11.515439229640114, 5.728492746551315, 4.732273492394679, 2.723541429298613, 3.2509491217116215, 15.156725605162077, 4.060073197792625, 5.079403428048276, 5.853739161450485, 5.2956419838791575, 3.189741584141711, 3.434212466886845, 2.9138770115800248, 3.435671354166466, 6.290824161608015, 7.202541880227638, 5.214195389336967, 8.151684955116817, 5.7624293072363635, 5.371190692508675, 4.5744624833953935, 9.630987874852794, 4.551771772594112, 7.47356264165251, 3.631599860213424, 8.306672131138235, 9.680857402851684, 6.396167517390512, 3.2761620327413916, 4.526436515685091, 4.688928233518425, 6.367014290189777, 4.566735577033671, 5.716356816680438, 3.538323553024375, 5.595427885670923, 5.63600960568435, 3.946681392471302, 7.728698977932326, 3.1912220996308482, 4.799882451683525, 2.492391209023448, 6.546619454453905, 6.643054053786869, 5.640279219950902, 8.353109329683608, 9.538191043742279, 13.27399283065624, 10.745831978250449, 18.818336030335633, 5.201224837312506, 10.364987579735311, 11.158021875661426, 14.957203325532658, 6.508251626308062, 12.829082312362365, 3.0936546128556173, 5.748083508481645, 3.3987237780805164, 6.281433260452031, 4.828385662884121, 5.943309847217292, 5.781392741198976, 6.507650697635008, 2.3139668305865677, 3.0024553344436926, 2.146865891974307, 7.794989409342106, 2.823070370997524, 7.155719670463319, 5.7332802408035, 20.0800852080452, 20.91613914128844, 52.72811048665717, 16.605929984706744, 14.596409171283028, 14.050345600202506, 19.15382864051937, 29.51896429085192, 23.436195827606756, 33.324069528803655, 10.79610753416116, 8.8728299306132, 3.980404444972414, 4.3640440432332195, 8.911596085170302, 2.645438863674478, 7.690879756621944, 5.330073126680547, 2.8335604411272155, 8.70350072069439, 3.120785182990123, 3.307721608172043, 7.901367067867493, 7.2207609809117175, 6.915554985347174, 6.016302867952235, 3.6022834834871715, 4.595363332847403, 6.000703400034075, 6.726537053578202, 7.5954098615361465, 2.655243624388372, 6.0100079339740144, 8.116916731356804, 7.464749692021134, 4.083936791083267, 3.6886315067518356, 8.419685951784617, 18.060060605090158, 3.413106877419356, 3.3745674739207825, 4.674255824391086, 3.1658408951614603, 8.149734573467498, 3.5992424649691395, 5.806231999594544, 3.035318583872536, 6.389827361646786, 7.007865579534734, 7.373424129459319, 2.7357419482111887, 34.62400061427831, 3.7990502711569256, 6.477379430856836, 5.144290577205988, 11.718643721019623, 7.3143372638389526, 10.448475677309297, 4.972416286201922, 8.53823779906907, 4.716858360583632, 4.935010365129859, 4.047476512532908, 3.5101851022515262, 6.218767539679149, 4.579131673404132, 8.24931462159908, 3.788606628536848, 7.772691850972698, 3.2226194311146594, 2.4889890686937868, 5.806744284052223, 5.509804234505577, 4.3682468056945, 7.286186920823269, 13.319964828746535, 22.86796334338672, 12.918078448333322, 7.501299648101446, 10.603571491038641, 16.098111833319965, 21.876045427930432, 7.97393575532647, 33.3925713880522, 35.73589507182429, 21.330684815674804, 19.281584194275688, 14.583319726537933, 32.477309393095055, 12.297650919608719, 19.22549196380054, 3.0069431525946295, 4.469969914819337, 2.7329810047993415, 5.193912965504772, 7.404472178195685, 3.2848996520102616, 4.469994180909202, 4.892110133389397, 3.9932074038212173, 3.9106477656659284, 2.8819521938327304, 76.63258402817891, 12.58219038986674, 42.65940569839322, 44.40598313660346, 28.19082518550583, 14.04364940351137, 24.796589533730653, 82.34150378382719, 42.39593259126415, 35.177287495243675, 4.757558034113577, 6.2206743847328605, 6.119464394233648, 6.717389478175927, 3.6264632386622435, 4.501107411702116, 3.570035822998629, 2.8880928609121264, 3.065355271863205, 5.4329169610500605, 4.574116425534922, 10.353236089159475, 4.081369428624282, 6.439638823005458, 10.391121417538093, 6.121121226300382, 8.44138004160227, 6.493674596091943, 3.9676172568313577, 4.513733920784844, 5.248637554917851, 3.089388476455401, 3.995576550120385, 8.305210040604775, 9.043237422055643, 6.535717503971999, 4.969777954553464, 7.137600258570765, 9.364618947220206, 13.450665558912224, 8.632967332060305, 11.134795205605727, 5.856793617270375, 2.5643679085069953, 3.0553026165199184, 3.0472905090534397, 5.099393978453454, 3.3563675183512136, 3.6275551712134164, 2.8855836624651263, 5.198698797626296, 4.964989434065943, 6.551681448044658, 7.0857950601811375, 7.595332452608063, 8.446908507853347, 5.383637085801952, 9.5174508265753, 9.163089913790161, 7.002741743401999, 15.941621305059888, 15.221001634328172, 17.014782101692447, 7.851167909675023, 14.220283209220653, 35.823982083479166, 17.16391227093817, 23.906764451226522, 11.831993810290447, 9.593724543534195, 3.5518874197546424, 5.4401395794687195, 4.099607961152194, 6.583287602035645, 6.139616673696814, 3.877929265808286, 6.38861672743503, 3.404749821698446, 5.837755569595054, 6.545496603727314, 25.45371843340056, 23.318054382703355, 6.708293773073531, 24.88480894881828, 26.11341566120214, 23.567459651414378, 18.722459519280026, 13.234509573288513, 13.10860729495523, 6.520458055692848, 7.629108721779208, 5.670025647494327, 2.517963932340736, 3.7701807799667764, 3.5252928211006402, 4.009036596911257, 6.242001587805655, 3.1621111599030223, 4.9580258270790125, 2.9745075600257485, 8.148304599777916, 5.120481546025142, 6.175040811957552, 3.6936407775930187, 4.316658310483921, 3.332761878287842, 6.710673761375561, 3.7394591265687422, 2.9573760767883717, 5.384386873934752, 3.1459586077309267, 3.783614982505173, 2.779751217872771, 2.5262389063261037, 5.560191321088815, 6.5394693979066165, 2.9392947857536713, 5.466666668438875, 3.821111583790836, 4.56790648298637, 7.000275487308456, 4.492488879813413, 6.237772379287259, 5.7834336768969115, 2.574819819515059, 3.9920097970802764, 2.724119799371785, 5.396568730038304, 2.9655047785773294, 2.7260417681874327, 4.580043540917787, 5.332641193561158, 2.7412232130666223, 3.3445861001655253, 6.2581445925749914, 7.298952698673835, 6.955288257945391, 13.521675863320215, 7.495620229497189, 7.739406240282028, 8.157301277110772, 10.422784506399056, 11.813982517437061, 3.0964574128295714, 7.092868572837783, 3.3805351739790233, 7.7046081685904495, 3.884945419103315, 4.263479885757297, 6.473930272351335, 3.7354653685016084, 3.85232871479421, 2.710996268153017, 5.652347261339292, 3.697280450320948, 4.760498333129332, 3.7231248421957353, 2.500561334964779, 3.607140018860883, 5.854889815622193, 32.076296834739146, 42.50338417287421, 33.969551053284455, 32.68683937642301, 26.235649761567934, 7.614465586228026, 22.965702911545335, 31.098332115407533, 23.308690300274044, 11.5046591506814, 3.0116029218836458, 3.1380220547419113, 4.922595506206172, 3.4472843441979566, 3.674381863258244, 6.537285503461502, 6.333113232226259, 3.1811740748566293, 4.643681094600633, 3.25080240970587, 3.137954739973258, 5.379845144762039, 3.783174159326378, 5.527697115875741, 5.40431262861764, 4.685049096574779, 7.185904449109588, 2.5822809332876613, 2.957680737776432, 3.915403514425419, 4.093097452754124, 4.579281016833472, 3.6680147947175548, 9.687357882742658, 8.601367457716295, 8.246951197620314, 12.468458731609191, 10.019089881885323, 3.238452749004999, 12.841138745456018, 5.995744883339635, 4.268875297916952, 5.844381305032305, 7.2429804228791035, 4.429857068857487, 3.0213113080667706, 3.018197076932572, 5.745089910862937, 6.764428841978734, 3.0442002001134707, 3.862650403506034, 2.9891496887186118, 5.367598411869761, 8.542542477274763, 5.480736882521046, 5.153782754530545, 3.5205310897023825, 9.803360838810711, 7.64682793313054, 13.342258649651706, 39.16602824849565, 37.279294242701035, 36.679086993001135, 12.40123090836013, 21.28268341232093, 28.172942586464707, 11.5034328642206, 23.1050249795375, 24.293445812655843, 4.663381051634802, 4.341437436789427, 6.123923852733471, 5.431759752209445, 3.167854356225282, 2.3891262607848343, 7.50071019713513, 6.051057550500193, 4.758770305307621, 4.955401139824594, 3.274312831459364, 8.81971178259383, 20.015709443865585, 7.159710584148699, 8.896073275434375, 12.03229168084513, 19.714670173517185, 6.378347924190007, 24.779995040778072, 6.450580132965072, 17.793776233358034, 7.288823697269777, 4.6912332858587735, 3.568549601381977, 4.531497039273159, 4.487750997027109, 6.071294759167782, 6.566226674651886, 3.3392404912842966, 3.5386769841815444, 6.191476099760984, 6.544654199213823, 2.600599217975443, 8.855533557069098, 9.078383143964926, 4.178198144827277, 3.6989061968523047, 6.094218583091412, 5.730318206274638, 2.6735990255999456, 5.112489453253088, 3.6712238593965614, 8.263787485576406, 3.8448326233473913, 7.144434282682488, 8.379219008468993, 7.505162789372213, 4.712499770674844, 5.353093492838499, 7.266619648072216, 7.2011332702773885, 4.590365992550055, 6.7961903783359485, 7.973816337664861, 4.93390874802068, 3.2906997774359343, 3.209112373412052, 6.626260608685527, 2.9929899718168578, 9.419706990458854, 4.576238624587113, 3.106615176881492, 5.531572937180708, 3.7042346891260634, 7.5058507090383, 5.794074586991048, 5.236314072037718, 8.077802898675296, 5.1010281181890464, 11.817103939645785, 4.063503762390465, 23.051831448202762, 20.581414602702782, 26.505418290515955, 9.039446734889511, 18.480851840179298, 9.060981228959347, 17.1270291955646, 18.74318747080399, 12.009108674483711, 10.161891846517749, 21.407416431310835, 2.5861239314559477, 3.492743831514188, 4.061321856798172, 3.670067181465447, 6.16939719404816, 4.778296553551914, 3.9579294773758487, 2.8108969483833137, 11.205890111964539, 8.63136448851694, 20.332246614712425, 22.239121958513593, 21.360444453765783, 21.585950427069807, 10.90814490902417, 9.763702931163541, 8.850279831609466, 16.624759944632938, 29.781431308653925, 3.2608998968079836, 2.287462490601741, 3.107928992295603, 4.6252707430012014, 4.195453829042166, 4.297563984989526, 4.056436720359585, 4.0788585910049795, 3.5752746767632684, 3.6911298341473278, 3.1971310312337637, 5.058617520991526, 4.002925068900064, 2.3888487644684533, 5.572748024646359, 2.5373534641246365, 6.884566547804613, 3.9376341312996455, 2.985956104338499, 3.3375961195618156, 4.9387410479971114, 2.5669113949638915, 4.069975620337335, 2.7138667102693965, 8.256287120520476, 3.8284924832299287, 7.288002882125739, 5.264495921680871, 5.544987180085951, 10.524022398659126, 8.154683889179099, 11.631078654739653, 12.19584117161956, 3.500277026946177, 5.016427894440327, 4.278422184460183, 4.182268498966923, 2.9951927363775446, 2.7031965310240786, 3.582602903412927, 2.7948641522454665, 3.402852484849224, 5.940925920898702, 3.801923411229293, 2.1034633026171727, 4.7519960427014345, 3.6450088996843233, 2.8917456070315093, 4.853056682508289, 5.0419313583495535, 12.172250644658076, 21.15509311741991, 18.84013270540655, 6.163855014620652, 16.040940042539326, 21.881485054944072, 22.72036433890723, 9.47558499525688, 15.439155322143616, 16.929750319989857, 11.036115109101901, 3.138847298438976, 4.124214798593069, 3.3933496520798436, 3.522790077446812, 6.079793257598881, 3.3856800727961582, 3.9629721927421038, 3.309512288230127, 3.210930696955926, 3.1176639605252103, 5.22462071375628, 4.903850894860758, 9.03102298019572, 5.025372568357777, 3.241861440016121, 4.558406220991583, 5.815709075412695, 2.664115418169422, 3.274396536060096, 4.139266064512589, 2.96736414628598, 3.5859611288867987, 4.538060094941841, 6.115900989690328, 3.4649800385023233, 9.364344482104592, 5.633823954543776, 2.75776655124637, 2.86194422729071, 3.4724843341410065, 5.800107882314098, 4.810300402464175, 4.775731287985067, 2.709523106475791, 6.6068297245119005, 6.426240587656005, 2.7946274595545044, 6.235472573392101, 4.929755354498033, 6.495325984347366, 3.1997857005761023, 3.0880466269074027, 3.1017412844242847, 6.483176904019727, 5.797377115701385, 11.238638053661457, 8.567047198294713, 5.185030800335634, 7.843861889844466, 6.542625830853641, 5.744029749080359, 6.588517321287674, 9.46346605358226, 3.3768563285221544, 6.3793965248730045, 2.953325920632667, 4.104619045786302, 4.703496738541721, 4.403133075643025, 5.286299102516402, 70.07315329115329, 5.11205099088446, 9.863784973447448, 3.2193513165875873, 8.902144659699843, 2.6441994284275725, 6.019232211888685, 9.698980406517192, 16.22310052654966, 13.091156173918186, 11.703193341620228, 6.4792958426441185, 8.349395161972206, 18.98990013435536, 14.948275721348438, 7.248278527448933, 10.690159013319969, 6.964342640470721, 2.9518917199263957, 3.9903362660990416, 2.1679360609172047, 6.071343861071269, 3.2502357767662775, 3.393566748794818, 6.0698078636960044, 6.857121986004453, 6.993584567759357, 4.487411220596423, 6.588784928987196, 3.8434624194350975, 2.518644962785985, 4.0018852097254864, 4.819934448543077, 3.0431008183181767, 2.72313837470974, 7.120654539828848, 7.391216448586894, 8.0736150031018, 6.017044591614271, 3.0567765342512154, 5.261658528020729, 3.2110591173927996, 3.5587622784643846, 7.358279228728234, 3.1167672349383095, 3.141207568192616, 4.8720041245219, 5.302246667961381, 2.6078704955119583, 3.4367431071948134, 9.17782294932008, 3.7595895737074776, 7.219280131319879, 4.822137061738725, 6.236645666602487, 3.4179139877504574, 6.767767782096392, 3.426990212889061, 3.812733644420423, 7.052604990018652, 8.040304761304908, 9.45334906893153, 3.920235543547016, 24.140274910468708, 16.726607208415373, 18.39396409990483, 15.945057315426567, 14.275309546793608, 18.919723583905572, 21.281743468982, 15.160395982931965, 7.079424029882872, 3.7525467362249407, 9.658355991840908, 14.535632907466235, 13.952036835571231, 4.378507018765073, 10.966444307810228, 5.292022433620729, 5.597450433857566, 14.008386565215638, 6.19047682475005, 7.262623740307481, 8.153147896305404, 10.957672550137266, 5.154901970970102, 4.122310861225713, 17.162521801724623, 21.167693474121165, 16.890395629598917, 9.996246437245007, 13.341016511716399, 22.27730077661001, 29.72364811655569, 22.23532624604615, 11.430823027362807, 15.578028123238925, 20.70703269503203, 11.584029746189852, 10.172120718730339, 5.036305959553789, 15.090401221382661, 8.853611958496977, 2.735843605291692, 5.510120172244545, 13.030455005570902, 16.935886490699605, 11.300445519191037, 12.845560503533951, 6.14234195668414, 3.8138499749582175, 4.888274297042865, 26.585811522032024, 5.194686361200219, 8.48564207086925, 10.068238032734108, 25.9765411019112, 18.800928659381103, 5.127556993769006, 10.811584958781491, 4.52316324809774, 8.804753652509516, 10.495744981828011, 11.389387852108726, 6.141154023554028, 5.117304291556906, 14.154232343242521, 3.937493560749994, 9.347796863872706, 16.425230076751035, 16.853543900594644, 22.059106134775586, 5.125125318977247, 11.20372204310112, 17.490571898724884, 10.708945773177248, 13.421376784547396, 14.274196208161817, 4.016155263980667, 11.566666225759912, 17.040638273721285, 4.808280530162632, 3.4780871193847, 20.008833832217924, 8.080858517893295, 14.483295654648533, 11.720068266857133, 5.532869460128043, 4.608381246878645, 10.52128354517991, 12.885676586885948, 13.876591445790426, 3.3797336449253153, 5.26835662820248, 4.569113090209291, 17.68121153498964, 9.172391231295906, 4.394093295065547, 4.837763126445579, 14.266832274694737, 5.021564583862353, 14.66239145873043, 3.8362504200361838, 3.762149808375539, 14.821494723773984, 7.288953826272036, 17.81618928146806, 10.275968537127616, 11.48509164485372, 6.026892950500826, 14.126033667585592, 5.1609674987548955, 11.197842665937396, 3.9824221626623975, 13.411577567077165, 7.251668289126805, 4.22783291522232, 7.455375297764388, 7.519005010891975, 3.6360087467218944, 9.861037003108583, 5.553645718507204, 2.8135614728107265, 16.947468189737574, 8.777986972097182, 9.103362659771888, 8.746511638404783, 11.413380402179948, 4.228386725412032, 6.926004425646948, 15.252245687367871, 12.43191363469764, 9.57251502938809, 11.258159905852462, 7.367851024936711, 4.225235896048393, 4.092021318550058, 9.646326350869096, 2.8372503425240856, 14.54999110789449, 3.5253902044940726, 15.643034742054017, 59.24215187538014, 7.977298061407684, 6.739110908871665, 13.004443101511796, 11.859732761195144, 12.382360004308662, 7.934796266370814, 13.24541733930039, 5.773022453032543, 5.609736463033397, 12.732923660501987, 12.032303017391968, 5.831263303331625, 5.658796325278847, 5.601727049752569, 7.755801828328254, 7.407464375505707, 10.281498732905847, 7.46306107215211, 7.625247030700318, 10.217811765549783, 3.293180870232421, 10.918314276040423, 4.560024069076222, 10.032159488924897, 2.8053608688123877, 7.136780239098588, 3.4517323331989704, 4.493349338554687, 3.502276596795915, 4.920393309385979, 8.93756780770564, 15.97274711773493, 20.510653614266953, 10.957077339810413, 42.479273248171936, 11.717620418533265, 15.36736908460528, 14.202841580296308, 11.682714403477284, 21.447296788669007, 17.277241697897473, 6.780946365170147, 2.869656390402709, 3.9032219361834, 7.894976593602725, 3.523380144993407, 4.527929511620875, 11.641788207646625, 6.949916071900364, 3.710555943973125, 3.58879798248702, 3.20884319469832, 9.84209189368317, 3.371783242969484, 4.987907961700459, 3.718109741605437, 5.590799318221182, 3.9277585849332044, 9.86319322576861, 2.8312314064861193, 3.352342841544187, 3.3935871897290917, 5.454867483720171, 7.762316194925872, 8.077753361916509, 3.7504300806539335, 14.253317408483307, 10.069101382621831, 5.484734574593849, 10.888972580594888, 3.1889575093294047, 3.645241502576995, 4.607641727655479, 12.45389099144125, 2.7131988957586666, 2.7155996825713924, 12.484577463019159, 5.052586303377851, 7.587243888484428, 3.7493340653047307, 8.74727225096324, 3.0670931992618793, 2.7138728286420033, 3.3181484032309916, 3.8799367209633067, 4.518851772111289, 5.1315193961390255, 7.80731095838294, 4.664166257510239, 4.053094645060024, 10.481795443351182, 16.90114482981695, 5.020740645009772, 9.068174812319402, 4.037045354867673, 8.112196812608055, 3.065699619109473, 4.69692793394486, 4.3237336883454605, 9.59382616548621, 8.987815187704456, 4.487222954834788, 5.27049732487799, 8.542210708402799, 6.82151282267552, 3.165827782465366, 3.6483629763171113, 5.32401178594072, 10.522615494315012, 8.768230266943785, 7.716090287341801, 7.660909196943245, 19.61405890820911, 27.40167521556625, 10.652535715922541, 46.96552032001368, 8.622556611203676, 18.553271008777685, 30.96398794608433, 20.849706182479554, 12.644646903121485, 12.228283844761261, 3.2226146083532656, 6.365065616062494, 4.143338422310123, 3.4798204504712635, 9.992428963398682, 2.937322526216514, 7.283758198468368, 3.008422022733467, 4.207292082306272, 4.134282345218025, 3.484996512190913, 7.877661406656472, 4.396732664397171, 7.637666550031153, 9.557679573849946, 6.9649179769704395, 8.15274115326374, 3.7873944197108407, 4.535692475259665, 3.0453664722516196, 8.366668919044837, 10.483212127615102, 15.345277024227792, 3.660088548839865, 3.022639945700637, 3.805470583007338, 10.893922372744228, 3.712393491898829, 7.798755616214913, 7.759666051329997, 13.963984299221211, 3.7606696831941018, 3.7137431913955967, 11.176020466762834, 5.719579462831584, 3.2579315495327537, 10.232766762264463, 8.344991690931097, 5.188431577784888, 8.244531202853732, 3.64802028741265, 3.367282620575064, 6.341449237815112, 9.927007359790428, 4.979974463942783, 6.906657231196722, 8.416288913652602, 9.469159100896656, 19.89784741884555, 14.095433823209117, 11.799045703971109, 8.189555675207245, 8.121671402626948, 7.862663015473439, 4.5765407422661335, 7.74018725338823, 4.3935996237085355, 3.568334049045269, 9.635638158005733, 4.169479068592448, 16.648861062958897, 4.289332387808704, 5.629208794555762, 12.155687406107678, 9.387047990726911, 7.737560674365102, 12.283353888892181, 7.437557479988481, 3.4603942846862794, 20.23293551403756, 46.54268163420294, 8.173127736625052, 35.755642726083494, 16.628220056129933, 32.56197215986155, 18.71270416402033, 20.639713711751238, 27.273703802676938, 16.900217926958724, 8.299900248120322, 6.817369800093209, 8.508805827052573, 5.838825996004275, 2.8311629154651, 3.4684512855758447, 11.300850819829346, 8.826317880714424, 9.632584254282678, 8.695068638059666, 11.49018974101276, 21.842529895577677, 10.846417859151568, 8.164523264271308, 10.675759131812976, 10.810754677413348, 4.211198532773591, 3.7313533918903112, 2.269452492149787, 6.424854847533752, 3.111790950094388, 3.865164911057402, 3.358395369876235, 3.310109842959582, 3.617910752951364, 2.74406761106117, 12.687455071631076, 3.036363195848304, 5.159968080180939, 2.6623857583749464, 3.7136089396710084, 3.705329613611548, 6.887514179358085, 8.94697871962016, 4.864752516167815, 8.066203379602655, 5.951951463183984, 5.599057235558463, 3.058599483038205, 3.3279008060358484, 7.534791429500982, 6.296877326768833, 4.770531321505954, 2.368016339736143, 5.206649655706146, 2.9689838271413316, 7.665325607302241, 12.366985140858956, 8.20633022657538, 3.785095129424615, 8.594904193683226, 4.89536930020818, 6.463412303290406, 4.504745210600457, 7.115442622310662, 2.60638858328504, 5.057270101409401, 2.586651264586798, 6.570054198993553, 5.333344159004647, 10.770975858597899, 5.608322980489671, 7.038880416149962, 3.637262765987791, 3.329399114980602, 8.012490343780527, 3.633129130287918, 4.6254289869675675, 4.036084535368058, 3.357956960917213, 14.893468642614224, 13.386684243446899, 11.860219027841449, 11.20395413922192, 17.389928638632675, 13.183626343658117, 7.820512791408323, 4.689684620541609, 23.034580669427875, 11.565169055497204, 5.505467587074295, 7.415210342870524, 4.368040972493068, 5.037578310068089, 5.654588080202841, 3.9292577898070156, 3.5756965045827425, 8.737621784795033, 12.290196031168595, 7.063217042491342, 9.459229819723069, 8.103206993435363, 18.077731176314654, 6.4415215392516405, 6.8988542416866405, 12.409449003813654, 9.559051599079597, 4.0833955143849066, 5.614577275735931, 4.493844982528387, 4.50470740288563, 5.753090331167483, 6.233969108917396, 2.9656434838301, 2.5671371236826452, 3.277038363755231, 3.376341662770828, 6.512903080806546, 2.8675292363168348, 3.27076660879281, 2.560284032558511, 4.158934251068675, 2.973045012088548, 5.501022553491417, 2.5367141091775136, 6.057660217402429, 6.017195744532922, 7.90943751852253, 4.696886272329031, 6.770222366827443, 7.284272029067325, 3.3024033577574294, 2.7523721365405476, 5.417383948682464, 8.83682734329944, 5.436063319565541, 4.036253499830207, 4.288999314907721, 8.777819858489828, 7.997470617820766, 5.534292770718881, 4.956981914977649, 6.781310079791937, 5.029523478234474, 6.103834948165019, 3.622707558183582, 3.5473257541134564, 3.5790164882310425, 3.478937097141681, 3.0659082511406797, 2.258898445327799, 3.507067273474326, 3.2322450131992264, 3.3656915404951224, 5.449940578545181, 3.05930683815454, 2.7032544976897532, 2.360104817539978, 2.705808642217565, 3.5381154994579553, 4.566902755130427, 4.359937653378471, 12.858401633342776, 3.3939122419098715, 21.290917747776394, 20.2761275228594, 15.944804169106554, 7.617373164570897, 3.965934134011157, 14.443736867134708, 2.6223124529075372, 3.134503657862256, 2.7361551835186724, 2.270264295531612, 2.916382747262638, 2.5768030479747024, 2.268277568312747, 7.390698248914471, 5.993684030424378, 7.931112890283244, 7.163810605577094, 5.929503714501362, 4.294111200867232, 7.084365226926482, 5.013880855989286, 4.6490477465708215, 7.860656648692573, 4.1772130033593005, 2.812883123714382, 2.7889591545819044, 3.0816540333180282, 3.3923030327806707, 4.940071651410667, 2.9119395295897794, 2.2309464299660378, 2.739973506277833, 2.6472666980933233, 3.316862471469453, 2.959841840927193, 2.2475490537647467, 4.3114956328375085, 2.5944364043620274, 4.686403171074727, 2.5990126331383165, 2.3765125204048902, 3.0792044041351936, 2.9506695658846027, 2.741376280436682, 2.460110455154268, 3.6491044050755512, 2.508775135848317, 2.420180385687664, 3.160318750910789, 2.2365034800955743, 4.169423918450627, 3.512325550391684, 3.262269695401675, 3.531544472954328, 2.9594315573491374, 3.396802236208445, 2.1252681280468066, 2.796986576156452, 4.43392073172576, 2.6870703438367594, 3.7965722856043134, 2.752989482718234, 2.1355460012310035, 3.001362273675583, 2.9401141605317953, 3.433752911313424, 2.5571576533317555, 2.2358456130562683, 3.151850562661432, 3.0376278769316483, 3.7582178910951516, 3.0747433972993474, 3.5001722166219027, 3.2750568373966793, 2.8566703542257668, 3.780369586423483, 2.34943618108787, 3.8773140140108158, 3.7402409108265418, 4.307227101595946, 4.347369448235522, 4.915290202197936, 2.8060638247095318, 4.526656934095484, 3.0608330703265767, 3.3611490631202194, 5.007145271628859, 3.6561395594829307, 5.495939920797788, 2.9021687059570818, 4.786616274740612, 5.174502102446473, 10.142773792213314, 7.677906702948434, 8.028559432863503, 5.3915191557602355, 5.993627263558019, 9.298773464556355, 8.275414916803909, 8.020647912788824, 5.97943530422236, 3.6932169569898257, 3.452162033371866, 3.2956071970028518, 4.373432273950126, 5.096460004360178, 2.4800624851220894, 3.347410628108694, 2.7244837881358683, 4.349988444860549, 3.917101419816923, 3.70791273184553, 3.0943380218613483, 4.022304044265548, 4.225854662800932, 3.706021367489652, 2.4404496832209106, 103.02003889890116, 70.40771255571916, 180.6244839743591, 106.22368905217593, 110.87827705719971, 86.8767836564889, 100.93608323253547, 80.19309249875894, 66.57364158502315, 64.89750736702915, 34.002826708336485, 5.168372559114647, 6.645501519706832, 7.728356866698716, 5.551895268412036, 7.201452437337248, 5.513527516207154, 3.8194861557639737, 4.144568596858828, 3.1452537780733247, 3.6652273670440705, 4.6864499884014235, 3.2426718750699113, 4.388439446347201, 5.362850532126129, 3.08205754711917, 7.946577193148589, 40.360344778012546, 6.772657295326393, 53.00105932424203, 4.289001018015423, 12.39472625504509, 31.295457303333908, 3.8180044106921573, 45.684845323809036, 5.053499776237123, 7.530680598111018, 4.300144214475564, 3.809288974151031, 4.6091287329146375, 5.523169718140998, 3.165742893413625, 4.082970127009586, 4.92886092362174, 4.314185073326914, 3.5576515767468675, 3.4385759220082144, 3.452237412634648, 4.195171863070958, 2.6752994083366524, 3.70240451098404, 4.3115350084376125, 3.795568235172236, 5.703487568298817, 7.476569097172632, 2.871619616472362, 3.494394966803423, 3.0037813197909853, 2.930672376632257, 4.819625156186446, 4.39856821489666, 2.1593345060576774, 3.4815771676338567, 4.5255471607301745, 2.3607704405360987, 4.117837512887315, 2.5441361048719386, 3.5571373641290682, 4.259943929254141, 5.961281401644279, 6.639738614331113, 4.117662061469291, 2.447264454331968, 4.950557321888224, 3.455236924488182, 3.5316883659929124, 2.8096721811291094, 2.4943600742281893, 2.336627864822367, 3.2949858791944315, 10.132253940073886, 7.333925753879853, 2.794826802728041, 3.4892963826512915, 5.548226530871039, 8.538430756379421, 6.9550045237121125, 4.899488158233342, 5.578868932887036, 5.749647705853837, 6.40417650911605, 2.259669113401129, 4.892768526537242, 2.4238813867667246, 4.580124716999003, 6.006025278135545, 5.067199891347418, 4.975921980835404, 15.67934330580299, 3.4165293630926574, 3.4623645914631758, 3.2527042363948744, 5.222861110795416, 6.92610517114132, 7.4536659034791715, 4.079179337368171, 3.9548514415560234, 5.397500989512707, 7.095310759653726, 3.311937191546731, 6.034353645708594, 2.844105212752255, 5.765453260774987, 7.047000417261657, 6.072164118678977, 4.2641315866559975, 6.3237184383407135, 5.539726086185245, 5.985508826383043, 3.517005984794344, 8.52662292040507, 5.986040190315875, 4.662217770957539, 6.870252380191421, 8.099144388662541, 3.0569350766300265, 2.844792938967704, 10.495001433143173, 3.257222219927121, 3.1221070602630903, 3.5061467338592225, 4.05445066076739, 3.2912425276452675, 5.777515014162055, 3.1254353406620945, 3.2932386027795717, 8.089268451770726, 7.643946864182857, 3.0629984928646325, 5.986780465691433, 5.155658223380775, 2.9001141606691427, 15.783029743925661, 13.854904722980494, 8.459851398849983, 17.927829401181864, 8.279202461523791, 7.949118671269329, 8.776059892207893, 10.845941384623446, 12.922195903812893, 7.129866801945511, 4.2773919327581735, 14.060671420514758, 3.806070597468839, 2.6824123189785167, 5.276042714776686, 5.7418663486165356, 4.317086215885608, 11.394888434795925, 5.222584976056337, 7.244761157525283, 6.759644967259903, 5.7624700117897145, 7.984955891307418, 5.183606892879907, 4.17963224418948, 8.298884837179802, 5.900945776466822, 3.431056887352082, 4.83133860898341, 11.569049061381875, 8.24903053892364, 8.600560000322082, 16.10193271692533, 18.02423657328949, 7.65031426296694, 8.185906855177839, 18.471253816806875, 7.005974594028252, 7.760203179543396, 3.9532189499428445, 5.923421910562973, 3.5908370591102328, 5.637797105561912, 5.201599433280265, 6.8170713290370895, 10.393524117269713, 4.7758653089831045, 9.396073867101725, 2.714946255562941, 3.5828680588836748, 4.310145496869162, 6.413586975246427, 4.903696265751731, 4.689869381555078, 5.031969552145111, 6.26752426213372, 2.971212260074257, 3.236763551977485, 2.3633899937777283, 8.30638342997146, 2.0859909216062613, 4.746502547494249, 9.90814492770871, 9.595919408426395, 4.121644790649564, 2.737064488092508, 2.5622363132631416, 6.068373541465563, 2.6590789983036336, 4.273171999357153, 3.9785190201369867, 2.49583975516715, 5.11863199414596, 3.571185951465736, 11.53325615330259, 3.9466105659833395, 4.201776007005962, 2.719906632254561, 4.222029163904216, 7.095424029824869, 4.446316182692719, 2.9270080053597964, 7.640671430453893, 4.773142977701305, 8.697817821267964, 3.8352035880508017, 6.320756077680003, 10.271060358885114, 4.9938951268716725, 7.1652613140524055, 7.854073494293902, 5.552649113324983, 4.533400900176378, 6.122769287346334, 3.269985398335661, 2.4952657989982177, 3.706291022569077, 4.125035794397414, 3.797435722794625, 4.969539888985517, 4.2041535662052745, 3.659330876096824, 2.7332480550753986, 3.309877976139648, 33.370315082144316, 6.9911811827670105, 5.365437739164386, 6.331900997491527, 2.982344736276564, 8.702715273685858, 12.459969149943925, 13.041992242754342, 11.552798315967168, 8.239452947872437, 36.75099355063425, 14.131077714590356, 13.351680904851628, 12.010877908167279, 13.959555983770437, 7.720245906535382, 4.905038843563577, 5.425944574441751, 2.7665844590494717, 3.4866808268371674, 9.911987751392811, 3.0445583440098782, 3.532443917584546, 4.877678236101232, 3.601892977183959, 5.501425516662163, 2.8896790502656, 7.243938600948006, 7.807835040620713, 2.7229141458116977, 5.190297187226156, 3.7249204597736343, 5.8297959867945846, 9.678508172876798, 10.69634258948747, 3.8227457493780577, 3.2297153187280556, 8.978772834575281, 5.506612728380773, 5.7058145633040525, 4.4672092308072004, 3.6022830917751, 7.748161136718273, 2.628923236842614, 5.656955049301413, 24.459097920258184, 5.97037569155976, 5.928202754913303, 9.317322176617516, 4.970114927876474, 3.4862431565504584, 2.8278481281879673, 3.323750937525128, 3.169952048072448, 4.600226272744185, 3.950482860328107, 5.538061634541076, 5.673130457681242, 7.7169111390007625, 4.875083979005232, 3.014093288429582, 4.5531008533647235, 7.800031515863035, 6.634378540354421, 5.626363257594054, 6.2290547959236955, 8.367763044684908, 8.255733590543116, 10.054293939249751, 12.011540173322704, 6.131448771715805, 10.709195606142092, 10.102418586361718, 6.391647785729172, 3.9330585556610362, 8.326518933797056, 3.1748198128854614, 5.818445777610672, 4.557652623095314, 5.759436456395255, 4.7329520135901895, 4.93046751456584, 7.140138889742822, 8.825399099509223, 3.4131855593752634, 5.036362991514621, 2.9543137128106576, 2.921686568471504, 6.325068065884269, 3.050715645478427, 17.706271502865306, 38.374075760998494, 17.069411731830918, 17.547229188675207, 18.806742002222272, 16.45076776799318, 20.404696207035208, 23.370365005156167, 17.158555106030924, 31.434577380653348, 5.854996525278141, 9.730732163566751, 6.6825768276295685, 4.061858626535552, 4.041261750924303, 5.448587249655748, 2.595000527346722, 4.884667394193217, 6.042703375294487, 3.8316486496354876, 4.274648933292585, 2.476451963603585, 3.409698455666196, 3.1652969640596824, 7.917295331830167, 2.9098436884585506, 7.488543419339277, 4.502061465807829, 6.218234867264257, 32.78562130270683, 2.8129403667634545, 5.349402965666192, 4.264049548151717, 3.922361628756294, 17.765649862973508, 12.013342945935445, 12.064024654077235, 7.255085120510392, 6.868594893634655, 12.662305056219514, 7.70439897206031, 17.644979733345547, 8.940236930847739, 5.8739188528302275, 8.697895540925247, 4.132209540751541, 3.4711405470370402, 3.739721518211714, 5.621872631969175, 4.209307636893434, 4.654412256817546, 9.121363094085396, 3.2647484168975542, 5.973648387234284, 5.617401149428839, 6.15537255227385, 5.354299449562076, 5.46102555886536, 3.1617826309572306, 5.7557007118241215, 7.6457741406484105, 3.3362267933178305, 3.0525588703995385, 2.775635743465162, 3.0412281851208225, 2.81843899997926, 3.2993598834310403, 3.250095198383283, 5.614546379899227, 4.751236691087626, 9.976366700737644, 6.803135623025459, 8.049371250718544, 2.802905592783449, 5.060505656495743, 3.5950990414261397, 7.229155271835554, 6.150469183621696, 4.699062993331795, 3.2329326685013813, 7.430015565703948, 2.490029604953869, 2.714889214793747, 9.014540315230798, 2.653697325898705, 8.057812770008475, 5.244401301748407, 7.7447204835133485, 7.211574860138066, 7.968753882312335, 9.151623116956568, 6.90578592866277, 4.487062862185948, 4.39966210480259, 9.832357529545586, 4.841861165794376, 11.063498929860497, 2.8416731980510432, 8.054306787570956, 3.484858810463458, 5.112470358910272, 7.216791291138096, 4.437801439014696, 8.740077637740882, 2.325834612852726, 9.524994649061693, 5.877095211755484, 5.5307223278787525, 6.264548524249454, 3.2529916436414847, 2.653601735203634, 5.238292807686522, 4.990060943555328, 3.0954489060132544, 13.03199238184501, 17.58760823705973, 8.495414905816297, 18.948414386291454, 16.471476449616354, 13.489806554178845, 9.03080052835052, 15.271186391683676, 15.114290444845937, 10.320260317964246, 4.625320509408049, 7.823896876187891, 7.1311043224114625, 2.677478178412229, 4.67884416239633, 3.641010459588523, 6.779943676194318, 6.186700397522294, 7.133739422877434, 6.518808123027156, 6.688740876357269, 2.893249760996005, 4.028736930175087, 2.497063373060643, 3.5069728858421985, 4.006057822526708, 3.810954895657643, 6.984082389603492, 6.398329862254185, 7.527349386757845, 3.087011730993767, 5.796158256369011, 2.7047649416761685, 4.425779117828655, 5.04921393603735, 4.2674770963793405, 4.39983671655441, 3.1077933041571235, 6.030892297087978, 3.2500635987249753, 2.9743076855604396, 3.3719717909679803, 5.466292281881506, 6.98008677146489, 5.9289277914966645, 4.711522295961104, 5.162412066025217, 4.839241953182652, 5.4011038343808915, 3.229668082340384, 3.855879279862835, 3.4522535773246537, 13.162788507583127, 2.440339958785702, 3.0414510543348756, 5.919859210029704, 6.206465761044553, 7.0223490605553796, 5.262879746517702, 8.103943115687443, 7.7885652968704475, 3.010319015908654, 4.077959063921685, 5.274319028943069, 3.1484788065251212, 3.0647050162760663, 3.20428060655076, 2.994627728505977, 3.8129884187499177, 3.423463859016988, 7.301833344284249, 2.617808601640788, 4.0943540074474125, 3.0252608855629117, 4.7718995718674275, 2.6489281786992582, 6.4980758907862075, 2.9576623070743886, 3.5786997535958465, 6.489599708248586, 7.523133709959249, 7.5446630233048655, 6.453812665789381, 10.485785173542444, 12.65927861148177, 5.96002146160436, 9.890029328008241, 9.507077927839317, 7.24957293728593, 15.2477463876882, 13.90558198597666, 5.436405100582933, 9.212184987202628, 4.925763571970065, 6.5507591033672865, 4.275617831607011, 9.754286520264676, 4.927800927127125, 7.50077803899694, 5.9408252920801505, 3.8625548775886624, 11.803326610393668, 9.205911716909313, 2.7414542943772933, 4.318803846944581, 3.0300849594918864, 3.3285467202206114, 14.50644911972236, 34.39424811553083, 48.99945244736792, 28.035882186583237, 54.63777789078253, 24.45383103539534, 40.48119640718159, 38.08602336833397, 43.6457974828582, 31.577215930014642, 6.790487254317565, 6.614580495234386, 3.0648037900952243, 5.180242526495527, 3.8931289893879613, 5.57005462038368, 5.575234401876747, 3.0200110868971004, 6.5222995009738245, 7.239044610608168, 3.624553072844144, 5.261960520255466, 4.072978852602629, 3.4007003440899095, 2.758911668377369, 12.0094442773684, 6.52404376499338, 4.1435983008112505, 4.102011169951315, 3.799068801139292, 9.44655903098224, 2.9887373972072155, 3.1625365970142982, 5.5954974999060205, 2.6395728781352834, 4.962668121942218, 9.382854530861822, 6.05704807712451, 2.634946638145308, 6.40539204122914, 2.748839223333725, 9.589187163347582, 10.257111481066504, 11.75039563173441, 2.6495029014489777, 3.957041794340962, 2.555327319947246, 4.798990933079088, 5.694245395499197, 5.241672359917894, 4.738691156827919, 3.2687979274797083, 3.7826525818278376, 3.286526777227643, 6.249788027271565, 6.379843833824836, 2.492474651621771, 14.016310821369066, 8.325541215731487, 2.7003896552113105, 2.99053749542958, 4.060557926675135, 5.819351417515419, 5.104042599115926, 3.362197374831105, 7.377875237221308, 4.203124588504332, 4.423964388614304, 3.7285160830999047, 6.123582259733729, 3.0104764287509487, 4.280633954031796, 4.062312290949731, 11.163621511995856, 4.00627308892518, 9.179407142152844, 6.455924629481684, 11.234313314156381, 2.858666732213055, 9.10037470137159, 8.102844106340818, 2.888765323613952, 9.26308181068016, 4.083400014142999, 4.123424838944773, 3.296802143646017, 15.49897229726233, 7.71553925815442, 3.4465325674933167, 4.336185196597064, 10.78738561782857, 3.3784479591223224, 6.658725112083446, 9.516831915149933, 8.121185189535879, 8.071873900707446, 9.013154047729241, 2.694177743544208, 3.029220718224051, 9.829350436254494, 3.5409276189276166, 2.682777038809556, 2.593771418584911, 6.028598534693677, 12.159306707816656, 7.133246577239325, 4.127783984520293, 5.7180044695693475, 2.712764317646821, 7.114438230386027, 4.502870448700853, 4.476244257532711, 3.381137288245874, 10.87733546637831, 6.0908575215981235, 7.02914343328227, 7.771746426189061, 10.63093198812842, 7.454604947561871, 6.603093890515776, 6.482158950360995, 2.47441428982584, 5.169842447587334, 3.6049881795681262, 7.478573770395284, 7.633849434622604, 7.697493141790402, 7.231446442684691, 9.32461053658714, 6.364267333981056, 5.158867951070134, 9.109196183943318, 3.54323936240141, 7.3152924737586424, 9.414527857995427, 3.3146650154628925, 4.870627062164225, 6.007553212317974, 4.1288290459010435, 5.483964756456672, 7.449261633198478, 9.687496680154345, 8.238639622667755, 9.877549893297372, 4.712634821532545, 6.849624857648048, 9.995417237394111, 3.462764622861181, 7.012524990999436, 3.6298942742091254, 3.9733893644681357, 7.119647591272701, 3.0315822339835905, 5.792510731881585, 6.56805244983266, 7.034768512388214, 4.35071275992634, 5.465100020193843, 3.83054974776277, 9.780194495746864, 2.7980730647556364, 9.840638530987986, 5.335626230252562, 3.7679761282848303, 9.117621552008545, 5.220432560675393, 5.99299712474362, 3.3875760210003873, 9.19599038090359, 8.86736715696457, 8.470101811182074, 3.623383390294599, 5.28000315706547, 8.67208527828728, 6.433759795866079, 6.521896728357908, 12.621715424444831, 4.469176424068329, 10.035333571319907, 3.4244042456250092, 3.191349524038447, 5.2734099253136115, 5.918884576093391, 7.017604844134411, 5.310797769575329, 8.604858668183041, 8.957725127270002, 8.660203258462094, 3.6661185500431412, 4.694590731851757, 9.626361961310344, 5.987437187406836, 3.7161498132197717, 5.162831443547606, 6.120218499397834, 5.126143576560046, 4.969199559440727, 7.510339466671459, 5.996260400704754, 10.689042952872539, 4.585257767295362, 5.948149664872591, 4.503337311050491, 2.8056552768111365, 11.6596842715022, 6.9688987515927705, 8.441683108661202, 6.020003617715756, 8.789475100033695, 3.1518534848663724, 3.7852547189030563, 5.534540449061766, 6.496867686558373, 6.532342432995721, 3.2944963536820833, 3.7887165200598005, 3.065663470068808, 2.6035902297116604, 5.091913515582489, 3.951618847938339, 3.619582936230644, 4.06093733123108, 7.920808967074201, 8.983706026512502, 11.599721577216716, 3.6233070111562977, 2.6706109077661933, 2.73609938657314, 8.631378750460858, 9.76225831242544, 5.378838876834081, 4.081239711822675, 4.5010301272225846, 3.0030775917405688, 8.430457162779737, 5.912435586276472, 3.470138651402609, 4.3910068428458295, 8.02369740775271, 6.701405445826675, 7.1548106866559555, 8.249668071983661, 8.015722541891874, 11.571012646978152, 2.97817100963793, 11.057879568606605, 11.71543355368072, 4.826973193324642, 2.6159084462150974, 5.882012612228434, 3.0728416782227392, 14.73726710276824, 5.418777458132183, 8.99718319916911, 5.1790310600119795, 7.120420702857877, 6.386195572704271, 3.8208247851811388, 7.895418273324715, 3.5745446197125155, 12.43960106907263, 6.4668817469188635, 7.572335014353137, 3.192432209397305, 6.957405700896787, 3.98793025351143, 3.7653987328062484, 9.265211090987215, 15.20264412553098, 11.84260678088661, 4.6226667658432605, 5.406383406499994, 4.599429086339869, 18.60761632149822, 33.03247514208147, 26.11318753095651, 4.316191724652569, 28.835265633182726, 38.36441690545177, 4.459179842869363, 22.467840918098833, 5.5361351740628955, 6.762171605882886, 6.732333933047687, 23.184692093404166, 12.415639530289349, 5.548423201804777, 12.158090281412717, 42.17835459621407, 10.63442069657175, 12.11193768549774, 11.663381243889107, 24.513228460498446, 32.75456957028759, 4.597053397912539, 38.86004597230255, 4.504791930986434, 23.256606376134783, 37.996564148264476, 6.30746889931372, 13.490745957036548, 5.573978222043056, 6.544054973657446, 5.091619961389968, 35.49402499029866, 23.70494933895443, 29.832071800928514, 5.215670098076765, 18.06645595693064, 6.25194780750674, 17.56526481145768, 8.620956784226646, 28.912906490229496, 5.685437112766233, 26.944340882866776, 25.994322662004226, 8.218756837338422, 11.662704001020261, 15.797887088355004, 19.695712066164873, 20.251361025273397, 26.369102535746777, 6.002121556943812, 13.824167787062695, 4.206867272599866, 15.867995658828637, 22.866349995971234, 27.913886961523335, 26.75074118679953, 4.718049267088629, 12.12818350309399, 3.248443576828045, 16.243473190807542, 5.81636636450254, 18.42767325194149, 23.565571974583765, 25.095081948632412, 10.771531537731192, 5.29654238729732, 5.558169972785147, 4.399062465166658, 4.80070823695219, 5.418791176120214, 21.044421024550708, 5.327747569715868, 13.518426197593742, 4.160584678021028, 19.961548568612347, 5.705251814469526, 12.6785617441062, 13.251678469121037, 11.222617121241559, 3.800990010777522, 14.19361194197014, 11.069232636543578, 4.327291101366174, 20.264720005742774, 4.376990379786579, 21.011414185426194, 12.837558441456542, 9.027904184957842, 22.812800288777836, 20.916281943646, 5.821086574177914, 4.048841937696893, 13.956614501094707, 3.722862163850442, 11.264653443696607, 18.590952018519634, 3.517434849350527, 14.5621123387613, 17.366868451193092, 19.033836688848684, 5.7412755258731565, 12.39903675045373, 9.680719098753945, 13.464588237655597, 21.24342146549714, 20.16696125568254, 7.214729546701717, 18.658712458977735, 10.853450143737758, 17.296918867833288, 4.090629124945512, 15.141959103908581, 7.41500836705563, 16.35862163071782, 16.133625752723503, 11.800433297142941, 4.514950899162305, 10.876643936419859, 5.961260015304717, 10.545444593958962, 4.07868232609331, 22.2115414316145, 14.12059230175346, 6.291060712044432, 25.468265515601267, 12.433886486155453, 3.1866973335915274, 12.02064688916139, 3.5620952512898687, 13.84334019566392, 17.451323257524137, 13.526518582078966, 4.230500704061419, 20.76715140868544, 7.565922348651547, 4.337338833529124, 43.416361596176536, 3.530822565556903, 16.343860197557312, 15.226870135153947, 6.394422590412261, 5.452078344707595, 4.679784447306479, 12.548988054618201, 4.841561722275304, 19.228180960825167, 4.135800392313648, 9.69550585584241, 7.1423927727272565, 10.687717096287784, 17.06548430579383, 5.0022440509957375, 8.978607995879866, 14.346592901727934, 11.931785873575574, 5.468030212188936, 4.063172672014839, 6.447499570291681, 3.578706655588882, 10.400019610232647, 11.66469172743359, 8.646865502514611, 6.777843662137956, 6.949063313539031, 11.469677767512291, 12.774625105114065, 3.651674943486829, 4.495156836721025, 4.101651069528145, 4.235227555139838, 3.667990517056854, 4.593444516302684, 12.665579549203482, 13.081080083765576, 11.822779192877828, 12.096547308658366, 8.759064861237896, 9.339590520579177, 3.5769960617225434, 10.90864352326886, 11.84963377310537, 3.765326379229348, 3.98413672664496, 10.424128203976016, 8.439149475109872, 4.734923326036782, 19.31346773732936, 3.781681486397402, 14.634020026570202, 14.056161023618882, 4.439630938471684, 2.940209767429307, 5.749061637929041, 9.128734789713837, 3.223552205977086, 4.717075318800704, 5.722361170388145, 2.973873264188549, 10.057916170077657, 3.6994082468392246, 3.661654165271881, 5.227483984680446, 12.03182341957444, 3.858552599000147, 4.18798620881323, 11.034573560153214, 3.3057904038101356, 3.2467962087378948, 14.69692286891402, 3.1484789842009935, 8.661870408871527, 4.22692621050883, 4.045128603842658, 10.525384495231467, 4.056802408319849, 11.626730667945875, 4.5620662682731075, 10.446990707782312, 10.296482495894546, 3.686586850100845, 8.325000720134685, 5.383982667634935, 4.767918223352743, 16.186098747479967, 4.446669791145568, 8.838164598964074, 2.9596734874682116, 5.554009960659008, 3.5528964736048803, 4.427223337307448, 10.748556411902934, 3.050306981931847, 11.20914981930233, 3.983095426623552, 2.830357597240472, 11.17190664571075, 5.679267282882302, 2.8225601800783484, 7.347557001465007, 3.6824751725554554, 9.524526642310688, 7.763883285478781, 5.469558081691723, 6.453071658322648, 17.66246562008396, 17.980639088894957, 22.56205328744703, 7.396196329219233, 11.779704225040073, 22.9272861836162, 16.778520965888514, 5.052162080830259, 17.042604736100756, 16.632992934589588, 20.003395515924716, 25.942596112466166, 42.50662858369954, 19.18623148215876, 27.484124200058705, 25.993230809379643, 18.750532748212027, 22.341704169774488, 30.808527476270793, 28.862501064145828, 20.924035935115224, 4.309190334737217, 6.185742022208711, 5.102443632747493, 3.4684043007030296, 6.550520055462148, 7.985354066550762, 2.8375165091812002, 6.14112904662584, 11.272742237530055, 8.424141326935771, 3.473384143339438, 2.620182238726482, 2.730369944866309, 3.386489169047065, 2.842029278336231, 2.7891970339239207, 4.920896874714933, 2.247468101367381, 7.830761791799828, 9.599799795353148, 6.697285484546289, 2.4741624193612006, 4.205388314158815, 4.955324534766471, 4.62071568406931, 2.79379749435223, 9.934252209282556, 9.558972987679766, 10.770824852288678, 2.5574802565981267, 11.595687283072428, 6.344410812633401, 6.447067232476028, 10.364949041484747, 8.070636019110045, 7.139069917162849, 4.198443698653705, 6.4168340124493355, 16.898403714449667, 8.756090732531534, 7.517434232109983, 3.201369558760965, 2.631158960396196, 7.5029105412182355, 3.985223194642186, 3.9901569809763946, 4.920971213007663, 4.686499113827814, 12.064978206848636, 4.782596367760372, 5.5133119847111365, 2.570194092983736, 2.3211491170511858, 7.4035747122909905, 2.655377476345507, 2.4288500961961637, 2.745210208250367, 4.595664818874259, 2.7771666588489365, 3.2106000704521955, 3.333949581988168, 7.946237194012389, 7.743781592669176, 25.550514946774026, 6.862100428274392, 12.7030904740986, 13.009221530691333, 14.86948381200924, 10.86327215667861, 12.809996157476938, 8.826922226415542, 9.943102923576934, 31.342952582381095, 107.51791874773016, 124.21957108961448, 113.52072673160175, 74.54606104808451, 84.19976180591856, 99.13238348491076, 66.64818870273841, 62.526633899216236, 59.823388525749394, 48.18698458720986, 43.193150233100226, 7.335442961566241, 27.107651017539187, 9.45021483453059, 29.375166207604128, 21.00621257439534, 9.392406503934074, 23.853801101132564, 8.08981779717946, 8.844771278501165, 5.936797848433455, 4.984075681002415, 5.8050835339151705, 2.0589509634269274, 4.116793935681019, 4.59318383761648, 2.8160660738428835, 3.6558816469579356, 3.155424312919561, 7.634154452835306, 9.937866636697954, 8.112311493276183, 3.09457614014851, 2.799593036846957, 5.442547156197017, 3.9345749566281887, 3.0236505506774036, 7.883699780512482, 6.703264811523185, 6.188896615759474, 6.662960239628122, 3.0543267712537836, 2.4267063028057283, 5.241560519718843, 4.75052647361678, 5.829706747106425, 3.8655200596398154, 8.607259292817737, 6.186869088671553, 6.798212526514859, 7.629168927957155, 2.9087125454241156, 4.565041086589514, 4.919073035486731, 8.726905863039475, 3.539064941283163, 6.787185892149555, 4.112158549591671, 8.103350088045616, 26.962991539004147, 17.842002205703196, 16.19782015734258, 22.765770929287715, 16.133710835775254, 17.00469377670666, 16.684533068105118, 16.286077732086913, 16.429953684368655, 14.204540835410953, 4.306540270643781, 3.9794891638989442, 3.62690463161325, 2.689964644732244, 4.619475470183013, 3.0991321821516866, 6.08467600464114, 6.047732686265035, 3.880889420558996, 3.647153618406205, 8.29363588617274, 6.02318931484458, 5.215552448936197, 3.4480179788830276, 5.065328684009574, 5.165887748751946, 68.5526064476454, 80.21462704370792, 86.84292844618984, 82.53363084560368, 69.25516045912293, 58.11331807897984, 53.93400281439727, 50.72193343855186, 43.454519907927605, 42.51097617262503, 29.862252229231398, 6.85369179600557, 3.4374900859331587, 11.558676156792359, 3.3490161716619733, 4.007011697376318, 2.739637521209239, 7.559325786295918, 5.362829228241062, 3.9763451315618923, 7.031134922165569, 6.3168668624539155, 4.618230397796988, 8.71693142957982, 2.9832307419219664, 8.916155881931031, 4.305555734448363, 106.95683317121478, 68.72237375124877, 89.28090690484221, 88.8600109552284, 64.57058684447148, 58.836528907203906, 65.44614192274089, 49.1223461594185, 54.81472736080692, 45.887471791662065, 26.095011421607836, 7.734125879445281, 4.784802680067867, 3.6761632489513945, 3.1236370750427565, 7.5611301706382354, 2.974971107181734, 6.670111561345791, 5.5253411014289915, 4.458713142547236, 4.255959630439764, 2.752264389871381, 3.4276409677515445, 3.4311962153549382, 7.0016311713061725, 4.502416482999484, 5.018262192565006, 3.502052797085878, 4.1094055854141, 2.522470280422342, 3.4545715116029916, 2.2267150795096256, 2.1303212710511557, 3.277183064186941, 3.2426564061747216, 1.9224679910172244, 3.3570144403628843, 2.877699105284255, 2.452229130142851, 2.8888724190469253, 2.4386289474001064, 3.351393756484716, 2.7593102082894063, 3.6222469859528905, 2.984463352646809, 3.016463296246468, 4.2650666432601225, 2.721471998475372, 3.270082233710374, 3.96061196217941, 2.5493312272385524, 4.319377448270949, 3.2328722506957805, 3.8916608883681336, 2.788501037350442, 4.302581375846947, 4.22887215910252, 2.2849772839893716, 4.201920357681088, 3.888988011986977, 4.752363348943373, 2.966467134506757, 3.7513187466526468, 3.9094251437063314, 2.675408881097237, 3.71416725992076, 3.2894855188121324, 3.881994174160829, 3.147828260907773, 3.952211195326782, 3.593551507801654, 4.08531590343438, 3.9785069185820197, 2.500512939459791, 3.1260030113495842, 3.3490911502230944, 3.4461267213130875, 2.1943148121919656, 3.1625988112406445, 3.7176067442005594, 2.252347840306262, 5.820186120817378, 3.4059910901586132, 3.2470411263504158, 2.876177267650788, 2.6570867141921437, 5.899242988754538, 2.322300993933451, 2.9440143773208156, 3.73042255978315, 2.920784041437859, 2.242576033262458, 5.169035346246281, 2.517247924948073, 3.622565529693471, 2.7941242520317084, 2.402663028067593, 2.978377180919094, 3.904697252196373, 3.7235616547107666, 4.629108727057257, 2.4495480512647556, 7.2008141652946325, 3.974493524871618, 2.949902381863745, 3.566794002799843, 3.3168489980576954, 3.3181168105406407, 4.300886474269274, 3.3944658719453895, 3.005905545434957, 3.134981803432657, 3.271708398364478, 5.483385231520634, 3.9705926724785687, 2.590477384816541, 2.9017194526600005, 3.212741234136862, 8.164976871299949, 4.229456552686933, 2.4671330298616514, 4.5821250007710885, 4.990286023899423, 3.815519714668241, 4.351205582730525, 3.263994091975598, 5.629713676259086, 4.768517762930956, 3.418611668712614, 2.742473939146242, 2.2954297668032035, 9.576492913806321, 5.23957010372297, 3.0216409087140703, 3.5681524560846354, 3.3045861134995076, 3.629705118802669, 3.841466426988847, 4.9018264584078794, 2.208608572924301, 4.550907993888094, 3.2977543304855725, 3.8920954917477233, 4.688105112516748, 5.490027101298474, 5.233390881700264, 3.3032160772837202, 2.865721784512712, 3.186925239994047, 4.004571641732329, 3.2577940560732754, 6.383974327035956, 5.344925290855721, 3.9473982665051413, 5.601216350433401, 4.214482958501963, 3.6847959858175443, 2.781792084548018, 3.0101774719801524, 2.493493797848027, 4.367355581091404, 2.9043288455141103, 2.7137921424254645, 2.891110352182883, 3.022047471504317, 10.638838233679044, 2.71348306323348, 6.02418412453116, 7.1148680307176155, 6.097405512774264, 9.422202555330687, 8.25424593293796, 3.4902152621816502, 3.2235797915185587, 8.847254813978049, 6.786058726205678, 4.953317158161035, 3.347855752547448, 7.955695662228186, 4.629305150049306, 2.748573738882991, 3.1885885118055373, 8.083145975706945, 4.838298146843252, 8.458436404732154, 3.1687555918718107, 20.80289330499212, 6.005666619804106, 3.7604781450161044, 3.7263633477570086, 5.916268601513957, 2.8299535252837225, 5.149337107749195, 5.186502591518587, 7.689738091480538, 12.825131918028953, 4.739866091080442, 7.508014783808134, 5.485594668286053, 2.611036393787776, 6.864885183404397, 3.4757093430515855, 7.332577830468929, 2.739344421301801, 2.6765741181718177, 11.622343640525138, 8.995618312011219, 10.562826398820038, 5.498400376389171, 5.9035399136967905, 3.0196445852071974, 4.638429303042313, 3.4541500720099925, 3.441044527636459, 4.736220306537507, 3.245766239486012, 5.042848304155034, 4.340076808293659, 6.113101152415268, 5.025598379384471, 3.117677701115376, 3.7199997583369395, 8.953737060872456, 2.5292380047247, 10.711103555934434, 9.051281957737428, 4.595103563989071, 3.485633097023152, 6.739648234338648, 4.989917269527312, 2.9663848402129847, 6.966870793178031, 3.7244639256156784, 4.127692295899647, 5.852418082068181, 4.7937182717732565, 7.201115924991852, 11.831501244186159, 2.7779191591712333, 8.19577467993697, 5.0374999333863135, 6.220082910688286, 7.870739611926701, 6.157458594848711, 10.288151174209878, 7.224895540699669, 2.8254232116869797, 3.5747197704108777, 3.4289676616898843, 4.641470852310593, 8.340102091931685, 10.883038722227385, 3.4859212270078195, 4.103826838571459, 3.217959059659829, 7.7949585527004155, 7.596660254556355, 7.828651511580289, 3.06960074156417, 9.412903684791264, 4.052738552128316, 7.700279464605342, 3.53511215888851, 6.338905053942749, 4.093605555671396, 4.109353759364835, 2.405085305504333, 2.4703974622008755, 4.339221746516977, 3.4541400461188907, 9.290063281467143, 4.095581442437475, 5.79757283119215, 4.009697764976339, 9.430814630441136, 4.295627350480178, 13.970901461094805, 5.357603789940505, 2.249545428256719, 11.611071035683693, 8.037255092511016, 4.824216149159523, 8.639864294172645, 3.7852859416833247, 14.888935685698891, 6.326469467909176, 3.294224436821447, 8.397023330020525, 6.316057147789708, 6.32919351166199, 4.104764605502281, 7.764454775871793, 11.065655316679374, 5.861802498548549, 8.428501306010386, 2.8128156720125035, 9.866772788865951, 8.596352820704702, 6.38459539353626, 9.630395042393614, 18.86011314361914, 6.5842849380469, 8.132947400338871, 8.485663731406378, 2.811223432775999, 10.613844966414167, 3.175057459902549, 2.453687309342368, 8.975221541024405, 4.504252109044837, 4.6566132233647, 5.992868274748189, 12.582848638340048, 5.372827611515768, 5.522276441496758, 15.405607336298749, 3.5581559235536178, 3.9505805480418514, 7.0096289318599, 7.264035915369571, 2.475302249653538, 7.62015221892418, 10.7430855552281, 4.5393173676405185, 6.223957705402661, 8.067086657112535, 3.247600717509458, 15.052854053613958, 3.7188686764256245, 7.384746368524639, 2.945830218797888, 2.9440914521133013, 2.7561163021296973, 5.148254753109461, 6.854938548090571, 6.728377281416721, 14.768264829449535, 4.256656456221305, 10.41480809272551, 12.425096223819303, 3.159334154260626, 3.384836480471438, 4.544206292205045, 11.710952332481687, 2.699549642372633, 4.313361449262194, 6.468810998895439, 4.3083839452960415, 11.282047439275152, 3.970642786308747, 9.18037935774927, 5.095414572273767, 4.14817190912188, 9.784086824350302, 9.351908805403243, 8.818877866795512, 13.127340975617287, 10.328739607609542, 9.58519084356269, 4.543117081483739, 8.144030240409304, 8.245029713005499, 5.105559560436222, 2.60399987108011, 3.4819394220794098, 6.839655291315125, 3.146516492012769, 8.213266902604182, 10.579917585608573, 6.852625183443063, 2.8608529353885648, 4.280229861938994, 8.199039746726685, 5.155168636032756, 7.644877302731386, 3.38613405339459, 6.443450468568222, 3.950319456598658, 8.79216643002766, 5.495058793872147, 3.226034608228526, 6.441339848165155, 3.2204872243285485, 3.0935052491453723, 3.0392315824839575, 9.84559556643928, 2.6902587553441406, 8.598464904395678, 4.688195231857894, 3.7870283299897465, 8.210469653639773, 14.167771993014801, 3.4076700115158784, 2.7982619852146446, 6.52579695074507, 7.696628229054958, 2.9041427590124327, 5.316732592746073, 16.191674307804057, 3.494315098936342, 8.886698976287855, 3.3682644827986077, 3.603495549235197, 9.130234546856949, 9.015679338811761, 127.7247494866246, 5.768832900137865, 4.741902171079083, 3.1334238720153422, 8.03701487481385, 7.041620477934559, 7.136407172561904, 7.2171774735596745, 6.126921038075533, 4.651788336432312, 8.930783487440797, 5.5683846638217815, 14.267766352875807, 9.002499816472623, 6.938035829947499, 7.577245987968936, 2.575703779848149, 6.953079208697249, 11.389121038106968, 6.667107148838256, 12.348193175102793, 7.04059316782453, 6.354103355455657, 10.91430136290015, 3.215613280019551, 6.349834828705959, 6.791707060241743, 3.1773663530148926, 2.830940667703536, 17.834052012473574, 7.108758305826499, 2.876183235993017, 3.496298221299548, 4.121320229201627, 3.3649511966690415, 3.9648034375246892, 3.845705860558579, 11.57537606650322, 8.793409896720854, 7.671030895395152, 5.9509216919413115, 7.982178733938553, 2.9852004948433613, 4.185216046958202, 9.567438677248735, 11.073814199979568, 4.569126166901678, 7.409860540866494, 5.908132904684162, 9.698936769086451, 8.273076213595028, 4.887120987691224, 12.077225178715349, 10.570725378173949, 3.178320215360297, 8.35390139162637, 3.239921175105375, 3.0185229110303773, 3.785786541529388, 10.815402475578365, 8.59649778040145, 5.691796547907473, 10.124535788034686, 8.139152960897086, 3.6043683973988463, 4.24804223174762, 11.371646846024655, 12.433466503456604, 11.732427774126808, 6.945881773968442, 3.7696453597276403, 6.263765048906839, 3.3033959397830825, 5.314701684810067, 5.471849840238279, 10.546650962874192, 3.038841446765786, 6.748754556917334, 4.927331121372604, 5.131394516951419, 10.959732326720324, 3.5266266849397536, 5.190455142704173, 8.487488724031024, 10.43022561864445, 3.1179579966847153, 10.974777092504565, 12.226779688017407, 4.776191094406732, 9.269258405014519, 7.233599385562898, 12.207953518340776, 12.631573996582404, 3.8404460844395993, 7.9408542426442725, 10.07522425028875, 4.8347070793804034, 3.8792785493105817, 14.499837055523349, 4.456719076529271, 4.089530993538506, 3.2149788938054664, 5.268412286826904, 5.671345481565603, 5.022978240461148, 5.041256436023582, 2.804311085597666, 9.134548478946405, 7.5085353403538155, 6.018365357028278, 3.3868376059176803, 7.4676273350248294, 5.500679085138013, 6.827728785494941, 7.2776326367184065, 5.235616666308093, 2.9864947821097934, 9.5362026626791, 9.203961363910034, 3.285292299087267, 14.962005681233794, 19.42795800124956, 9.752159783197087, 5.119629890397285, 2.723397213694545, 5.588143808278446, 5.056844811173566, 2.265451444100655, 7.366225966326423, 4.191574431187447, 3.0323496245735084, 3.3927660991518325, 5.85943793777718, 3.2306344551947235, 9.799953681548871, 6.061499229176028, 6.559175696973937, 3.2479152511987635, 13.704281894565904, 2.9353886581945967, 8.22421033666883, 16.76883536960327, 6.249572713433329, 6.134673450488634, 8.357470079579496, 10.750148593901423, 5.434565529343043, 3.412203422793881, 8.551373865338181, 2.587471372718647, 2.8686044418296452, 2.861483658506099, 3.7356353921761816, 6.429796658993656, 5.410699323601643, 5.93441648600501, 5.372612633456963, 3.555622266032588, 5.74504523148297, 6.902110451915528, 6.988918408893389, 2.8164768768054724, 11.666767744996903, 4.328637561329391, 5.777357394276593, 4.916141913216509, 5.137369040890288, 5.896846282639422, 3.0114249399137365, 4.023807497863708, 8.375653887465893, 8.060429046677038, 6.333123264673268, 4.191880252820876, 3.7206246393642837, 4.6697070660482245, 8.346405794158084, 7.095730366526672, 3.224109187977151, 9.649531871408797, 2.7222019563617255, 5.431120543012153, 9.120407187095944, 7.641567905825297, 6.203081208052243, 8.0868113487044, 7.368552216245388, 3.2082663931919733, 4.76908987790565, 4.441037252437858, 5.458014004718534, 3.515559193759658, 5.025806565601868, 9.811921277684636, 7.606463966514809, 5.746773249292364, 9.728412380134628, 4.630301823846997, 3.513453024075167, 2.8735835832785304, 12.079008332287914, 5.677321354023815, 3.115662511436475, 5.87090925108768, 3.56811763429729, 2.5778493784934624, 7.927677239516537, 13.755891444782296, 3.4221573059263077, 2.884288930395055, 3.4879491832042384, 4.05247731009167, 7.379002529525395, 10.164860870300373, 7.287935393542235, 6.250403809859221, 8.876289727778659, 5.4586952610546, 8.863929060438059, 7.831752331288767, 8.437845442364218, 2.7392308451569303, 6.627252039337445, 3.3562500732347584, 3.986237197275719, 15.390341755665931, 2.769166048542603, 3.8664684946544408, 6.217889213413547, 6.606556233868529, 5.556597830162623, 3.3561738777192383, 4.018752836738608, 16.158594217201237, 3.3735560968637217, 3.135948851545968, 2.6722806895222173, 3.8659383089245307, 10.182161342243623, 4.92990790182635, 3.7699988852920385, 2.586120709978571, 6.586332350951037, 6.659438899842064, 7.572476113716045, 10.675687933209419, 11.71766613752198, 7.847863410595921, 2.7408974973300295, 3.6090780198046524, 3.1571550559748838, 2.763764001835288, 4.803483945475473, 9.473873386484058, 3.381143389955411, 2.504566088775425, 15.179024064791529, 4.507086528165313, 3.587711917176651, 6.469114180901936, 7.827643393612763, 6.297363804199972, 12.326638170316984, 6.9585532387239075, 5.014712382508514, 8.179274082806202, 3.9107577653014776, 7.569444211125028, 4.699178486494775, 3.739387724717756, 3.3191976662384666, 8.882493560929877, 4.51931116050054, 2.7176013346402383, 12.13927170816418, 3.778535521403106, 7.445938436946143, 6.818904043128986, 10.289388995564876, 3.3375839489729704, 8.966882782046868, 6.194329200216558, 4.102854316402453, 6.159082347941142, 4.055337633391903, 6.572469817706674, 25.63698103253498, 8.526173826616617, 3.7176695635518415, 11.80347066173855, 7.397025194111655, 2.5474486511959364, 3.635058909674017, 3.1967650383795965, 6.225062750054678, 8.510217637059275, 3.475819881375476, 7.931230854194867, 11.65378598114021, 4.452027007078481, 5.850744540076587, 5.007551984131879, 11.26697498151853, 9.605147313222792, 3.935473624244505, 2.748485270624791, 6.456791789689578, 5.8019516122966115, 11.5152930665961, 8.440175434022096, 4.588205471150587, 8.012789718877729, 2.955631913094575, 3.326031847463514, 4.205363856594592, 7.996408081448852, 9.643556602336485, 10.412925628703485, 7.1547172429341925, 13.364411223051938, 3.5628533561411753, 3.917676806810251, 5.346153381533818, 3.619970267562925, 7.361920867131996, 9.46824955175773, 2.9794844877420226, 3.5918511318607735, 5.3351120901875255, 6.134943023294695, 11.907736012027168, 3.7654743758262867, 2.679339378183393, 16.48539850662881, 4.186552126369266, 5.931374224981173, 3.610985872447057, 3.6953845227066937, 2.997506447384937, 8.467228304553394, 5.179040496862988, 7.023246761702728, 2.5554718152196556, 2.7870577637378258, 7.285931847652633, 6.542855088198561, 5.113407293353653, 6.520417858656563, 10.139676919162708, 3.0875850602409654, 3.540940947311639, 3.4762245249444557, 9.895769919837702, 9.478412983492937, 10.400663449331613, 3.5044398794833582, 6.073909087462772, 11.699796602693295, 2.9759831042113896, 4.711026757319193, 6.571173316209351, 7.4586569955669395, 9.324951322497627, 4.822378420209829, 15.532173553146782, 4.013405115621023, 7.602827842238666, 17.726605634496593, 8.380778607249738, 12.03995629967579, 9.944835911791234, 5.942808748438271, 3.570658809935781, 9.247399209092029, 8.550776726731518, 3.2413479464557557, 9.269003833570926, 4.232721578883064, 4.380886091851967, 3.592819355142108, 14.881917553986321, 10.048801603861374, 5.457873024149355, 10.649666703446115, 12.82854722234055, 3.92328124708446, 8.455609749167369, 5.956286359992755, 4.806972633895611, 16.00801015618417, 6.5910139698729, 10.825677302893675, 8.960025867700354, 2.4312830748478595, 5.949995343722449, 4.051402436777164, 2.904730882286751, 15.905217409748095, 7.702767916720655, 14.49963266279189, 6.795675931469885, 3.7518945469432614, 3.5799068757712478, 6.836110848995817, 3.8417805426321867, 7.236123466621301, 12.791471498795728, 6.243338887180979, 6.057860146986171, 3.304008826016977, 20.31719140159816, 7.315826995462362, 6.230881509411563, 8.175704197383288, 4.879751590113335, 6.026781314267263, 9.700037702974713, 2.889961330868497, 8.173277552049361, 3.9348248116120006, 4.263405299765877, 8.84534800364754, 12.050698568380609, 5.6537389571776115, 11.44886510067177, 4.067290746907538, 4.039778599268743, 3.6531129730884, 11.520311394751367, 2.5978740477285993, 3.3553214761160928, 13.793388136253277, 8.416928883075672, 9.116284050133604, 7.471607952878847, 3.2226243284988274, 3.6436517494740355, 13.807985221560154, 6.728107961551208, 4.820210381740549, 5.939710164210818, 2.3507268269449875, 5.462818554347754, 6.272081304841315, 10.39331916170195, 12.028056537129961, 3.227962261416347, 3.0054446677950644, 4.669550140549914, 8.015185150641127, 13.53529435775717, 3.151010692417865, 9.500498008299399, 8.37215332953638, 8.570289774083168, 5.348844317771018, 10.740018839172906, 13.428147212170261, 3.7464404669140996, 12.57800634161781, 3.5257360511050297, 14.35567847075436, 22.327109845483736, 4.498300357467349, 2.416339259630721, 7.944339098763288, 2.2377445905150606, 4.7127659816472205, 3.243126087786712, 10.059997778093951, 13.33778088274102, 7.353085819851772, 4.414000911116186, 9.57146067556459, 6.373947473944643, 5.1784238216538485, 6.858866766641004, 8.571060313237037, 3.2917114088019646, 2.979212558053627, 14.411683118668364, 14.621912761137006, 8.7048627093595, 7.454379252410851, 4.627826304982929, 7.130452447677955, 10.979037119641594, 3.4159804729227843, 7.663494849855078, 3.2443143400290944, 6.469617601040695, 3.7842367355029993, 5.911532956551721, 2.4090290925800666, 3.3131508611806195, 3.6297900750413192, 3.6995418172368453, 7.08438123490922, 5.8229891081038545, 3.8092132154813045, 5.812579860017754, 10.590204124480742, 4.475726510427494, 14.40943914426395, 8.459262331179238, 9.473535774032886, 3.8076108307623846, 8.21387095627358, 5.6554782089118305, 7.2262114514166615, 6.014468902509981, 10.661711672652267, 8.036399926310335, 6.652239675349147, 11.951606885903375, 12.081681895324628, 2.8344568608456098, 6.75441004425956, 5.200413078871063, 5.903259129811917, 4.931003583824951, 8.980618585056774, 4.850325014383528, 2.818470078634158, 7.223023667423568, 8.061280638858184, 5.039411546606106, 5.816122632839907, 3.8105161760026713, 35.56104489402728, 10.45680272549538, 3.2816809657473254, 5.908428012833845, 11.261376337524045, 7.845862327851184, 11.49216597125718, 5.774005835417194, 12.724872380963848, 3.4511872812828224, 3.662225557436508, 6.5893865028529, 6.564542117717482, 5.712556569513227, 10.761616552755934, 8.21729108890812, 10.478554040781246, 12.852727152836755, 3.4899501050512707, 8.929597120527006, 4.912355679266188, 3.0368481765370117, 3.265858231538154, 3.2333171303312356, 3.349904682417895, 13.696226788134206, 12.277857289887297, 10.047819569359465, 3.328128674052158, 10.092294544848233, 10.616265807901259, 6.817517871383561, 3.1160766343264434, 8.857504123589637, 9.087158115485773, 14.027017372982131, 4.555944963837041, 6.652700526810616, 6.100493023914055, 6.7581971722948815, 3.3041332119837157, 7.916776572642488, 3.1852618016332825, 4.3242852779567365, 3.2220131402776904, 7.616550740189477, 5.878461734579647, 11.976860449017458, 3.411931311819445, 8.368814116723836, 2.9663715554301717, 12.966419001268797, 14.017900849788997, 3.953750463287197, 14.573865849311423, 12.249154693991803, 36.643050810764024, 31.87459416360215, 5.117195738544168, 31.530412806842325, 30.298926370166953, 7.237186597114612, 31.247761267208865, 39.940939548755345, 36.58672073861168, 6.095402804315151, 9.323471255605448, 21.953965147502622, 40.218398128303384, 13.971515704117467, 26.88820231459362, 24.61735023982453, 12.175347394802653, 4.183474535433708, 29.686864136173234, 29.296373033652674, 28.60519683958064, 24.779797796643898, 27.298234426148863, 18.057377139996323, 23.231709457833084, 3.3669842429659473, 28.02843732185338, 19.825258152967784, 6.135376845513947, 21.475206520885106, 7.531382700093945, 5.960878418347869, 27.256089922980635, 13.678741699849427, 16.27338529835753, 8.312547908026533, 4.894280603351804, 4.456655682643492, 6.186442777276613, 10.747045770854038, 3.776335402730141, 6.311225348626282, 20.704025480979748, 35.22064488251727, 36.69777527614395, 5.119632972143994, 3.3193032121369916, 4.093710356865397, 13.304604330349411, 11.742560596273707, 4.477508356671667, 32.34177095201273, 6.880663352313595, 8.632980159755713, 26.426222701702688, 13.869136700161024, 6.12852209853312, 8.471831115541045, 14.766685486924354, 38.843692236960266, 24.475013141832907, 22.967863949929278, 23.567822312700365, 16.271916280032652, 22.178477186645434, 3.8646107122013014, 20.887608061219833, 24.399274284703115, 9.074690617930536, 9.460715223805053, 9.854598970906846, 17.69263627942004, 24.52933530748455, 6.113553566969778, 5.512580693652314, 15.90733259113884, 5.550445981958094, 7.0534214937590765, 19.95601040261842, 5.0361028866322854, 3.713189869471746, 15.913835057986544, 4.862647242444774, 10.369313681397669, 6.073091300564874, 20.038986954647235, 17.64565340573417, 25.81901139668886, 24.861938754938553, 5.156925899042502, 5.306215296148686, 4.674776080843303, 5.3727596621507265, 4.29425429200127, 15.43862683573293, 12.361284165897272, 20.361466472826116, 15.447549365283834, 12.662721277565511, 17.4431498618701, 2.7621475398139115, 14.758105326001882, 4.91366175314544, 4.9214132075026695, 4.558300129708953, 9.045642932629196, 4.101040975618714, 17.419601006260958, 10.06401212442902, 4.685317118249695, 3.583280656197712, 11.666897978721694, 14.207105317145494, 6.199457107392653, 5.554554369492593, 4.037383430438074, 2.874119151699331, 13.163412693651683, 3.0162278699731826, 6.0391171392904495, 13.814435930851351, 4.137537940868752, 12.226153225002173, 8.973893630966076, 15.737121282838924, 14.445429032415634, 19.133138667077592, 4.241946319478441, 3.413587614998494, 4.651103455347, 12.691267046229486, 3.167656843065153, 12.66317103238968, 4.562643329692473, 4.739164768806161, 53.250300916854506, 26.57017812354175, 10.622040314992732, 13.965906848693654, 14.617828313294167, 5.198614390805028, 9.078353188307497, 16.90201939614466, 13.012036364288008, 6.28421917287742, 12.022997452274447, 4.150172691227553, 21.050236106114085, 17.836527526986124, 3.1545413129503648, 10.026959418490735, 23.59463172607077, 16.72409877493076, 11.018035038225033, 18.8813890051717, 3.082287581738539, 8.685366204564698, 9.710256627172463, 7.132984817644629, 6.424783340153026, 3.389172614105931, 3.913114096652916, 4.352124529705422, 3.5856106326485384, 10.155792431255476, 3.927795178398138, 5.8051491337151955, 4.013451699252536, 4.458247688690887, 2.521315197332936, 9.055755751787117, 11.657596922152297, 11.312795003868574, 3.1997753839620517, 5.477796881406889, 4.670737536424271, 10.060274398053858, 10.217480250065984, 4.886238568808006, 3.737722619723989, 16.165790099260253, 5.308570958609277, 3.748726487467503, 3.74085040684749, 8.69800794472715, 4.477726808889796, 8.324145620401573, 13.07504934414968, 4.9997825611459215, 14.777487587277031, 10.887107033101254, 4.671440321385944, 12.652955660470244, 10.324232609252396, 8.140481689711988, 3.674384287317552, 14.294621941540594, 19.7420722698839, 16.499642309668133, 9.382608238296267, 4.113209825036248, 10.418506750627575, 6.381653309452665, 9.350277067136979, 14.258717743393378, 5.0007169162742535, 3.9175630330601985, 11.415091888965527, 3.9519028741484123, 4.721481639438277, 8.737398761475, 5.474321986674324, 4.417064187977463, 9.439096293827928, 10.022512256355938, 3.7931064232408724, 7.529263074753477, 10.661053060344795, 3.4105062768479573, 10.72795565426598, 4.619110769313968, 16.085723345648283, 3.294619494376145, 4.080867615822125, 3.3890711172929104, 4.4214121338507315, 3.764990526733612, 13.711748087482553, 3.4870614818170567, 5.892662553574192, 8.01310376234429, 9.838562282539609, 3.4514717706447273, 6.12638337627895, 9.980485346593074, 11.760800832674798, 8.658906009514283, 11.306914419289106, 12.767455530087055, 9.353716341673593, 4.984655649625954, 3.254990172047474, 3.627128258930374, 5.762233894143215, 10.709820145756224, 3.3561608181211215, 5.522633885568033, 9.557550249633472, 3.0214714013578963, 10.814144584374237, 6.610978718025988, 8.878001177651239, 3.1117585772828518, 5.074591827079878, 3.432458053765813, 6.013664412793285, 9.629796782952505, 8.550048776305463, 10.521531182751758, 4.4415777795360585, 3.5345139719226752, 3.594978459183952, 3.3185648629578712, 4.519075642732631, 8.768694932854068, 11.748233420890845, 3.0220269054146627, 12.314575905620686, 7.7412369660780165, 2.7212337907596202, 32.323021255157826, 8.77977075759361, 4.199441672306571, 3.8694962249845566, 4.908385849540951, 26.627471231949585, 4.2779820306351155, 3.2111521622475743, 2.93941610223386, 5.834067813258773, 3.02840570761429, 3.337008425371714, 6.089532726051029, 5.267391728592215, 3.3147449257747397, 11.312665728170472, 3.7814570701607275, 3.14481391032662, 10.251703141264198, 6.981838207498235, 2.5282317717572456, 8.541775769864119, 12.947803211925299, 6.143349884066362, 6.537964088778187, 6.948005371483575, 16.63626082980025, 3.435951785339317, 2.8712484689546924, 6.239240797721478, 16.919292660129674, 3.7487880216132634, 11.47997354864655, 3.841181684227836, 4.1667809810295715, 6.10816242161825, 3.1418258463852258, 11.847609398925234, 17.113434519169374, 11.316246570887936, 3.4675891009267685, 11.79775105935348, 3.454214115207459, 3.3495854270479493, 3.1736059264182446, 10.662049643380787, 8.153771469436354, 10.97242648071195, 6.470640538526658, 10.938985303865183, 6.5134863057872, 18.329788930714695, 14.423011246732491, 15.110663529544803, 13.08282729674499, 6.249516961585935, 6.954885647360961, 8.833565532601668, 5.9129121335970325, 4.853733978318508, 4.4080604492642745, 3.2046726748796277, 12.90289887904601, 9.28261209723613, 3.78090045048421, 3.1169538218687496, 9.105657279785227, 3.189584759992523, 8.317189598703441, 3.1634327082930085, 5.4535757489364975, 9.487190009291478, 12.098761812802575, 6.746458974671802, 9.63370982235434, 2.68090991543549, 3.103630053221105, 7.616825058043971, 3.81591544940132, 2.8580698680509555, 3.847798414512371, 12.329452003027681, 4.176800932522957, 3.2239507667294687, 8.83405412659126, 3.4619701683015576, 3.3240456094728685, 2.6906721932482935, 3.0956890486735653, 3.565180873132627, 9.645360267753663, 8.582749277021893, 2.9411936398276923, 15.365532794784889, 11.422789280453781, 3.8589905360636583, 4.31069634984565, 6.173335666478685, 3.6317746417205976, 6.210930669706695, 3.97058185298592, 3.989062629574282, 6.125354388270028, 6.67840603840011, 6.740244238931369, 6.532484481335799, 4.596461412671968, 3.4002378977345815, 4.74297211447098, 4.146028510094519, 8.173434082198213, 8.243348969012814, 10.392053585195313, 7.505163936773868, 3.24320458198547, 2.8366565654315306, 3.249364964037114, 8.094009658523907, 4.692907613995269, 3.5185863636482857, 4.782293185636442, 3.806414821377866, 6.368961987821404, 6.870128216260293, 3.475565465537118, 2.6293732486104155, 7.259139548409313, 5.838232886466205, 8.83403421344822, 6.180139614891342, 2.7461204394578145, 7.940767399007096, 9.439041575606144, 3.0813200912191387, 4.340731721238134, 3.16613282304892, 4.635028920460425, 5.339179550994468, 2.8686300323230736, 2.310757985280599, 5.765749172074822, 6.625156560824448, 2.971371039515282, 13.768595101234078, 3.8314552877995522, 7.110224805116724, 3.316571194570368, 4.064796045418759, 5.248816267523681, 2.8257142410479665, 8.739077388200167, 3.3010544996829316, 5.026780458548616, 11.469706272805082, 2.934752651973694, 3.4925293046905894, 9.741855234634889, 9.89977614817935, 6.882497019573544, 2.710482646844229, 3.234143884585062, 2.9697220356657383, 15.616970440787561, 4.286387804732634, 12.332377628291152, 5.372334509862359, 3.5309060752150057, 8.566595863453857, 2.9670456992690344, 7.48383481825686, 10.731662603709488, 6.562432978837528, 4.930748278927825, 4.481392844594389, 2.8948690668175927, 7.514972335675699, 6.939903081255578, 2.9235842813692354, 4.37495676868328, 3.3476528899105045, 7.729564445370869, 5.4092233124388684, 2.656964806945369, 2.753495120426346, 2.854114015807356, 6.393186849954006, 9.508374749786928, 2.5781638583053748, 3.27913060812768, 3.306747642492932, 4.024715841492218, 10.141970280317125, 2.7245505581283074, 7.073759059993084, 11.032904402531186, 9.991313690043672, 6.4788290059686595, 2.774545202122762, 7.302775492792943, 11.203196116520866, 21.788653855281098, 6.821340531881564, 3.604705693334836, 3.8425908108644413, 3.5539238467316228, 9.743202609686081, 2.9125478452053093, 5.359517461451314, 2.8974260877630633, 5.483007128865724, 2.6498707411985984, 3.5634061613517085, 3.9426916543608934, 3.7556961489997067, 2.9542661374184136, 4.973992373144846, 3.402986601642142, 3.2374659324135826, 3.745668700867379, 3.4039479210565884, 4.549005747431144, 2.5779586557725884, 4.026860195636601, 2.5458763804587914, 2.4022013897172063, 4.7364913529935455, 2.4319501368514524, 3.1038380524003992, 3.2761307861892464, 4.569311685654947, 4.588557849519722, 4.430246920713556, 3.950205602940488, 4.219289891170871, 2.9663136332204285, 3.193803267825604, 3.171712215835531, 2.8753928023199395, 3.0946866684803167, 4.385903483574309, 5.474716769736863, 2.5275983111736844, 3.204133809549469, 3.318539576390068, 3.3025238391307434, 3.4366396674835875, 3.5147665102224774, 2.7245857733067678, 3.2064534440607755, 4.821999608507502, 2.5458402487003315, 3.805499571104497, 5.306227860206673, 2.9586495035582474, 3.491026989364559, 3.930358601689889, 4.980964195705094, 4.590332677240302, 2.5695528866449817, 4.071711385775342, 4.4886475158875765, 5.077700171043926, 4.272875785963069, 2.76337534002557, 3.296426008375256, 2.7970761939274014, 3.9584543864793758, 4.085783921327782, 5.231144817895711, 2.7418207344959855, 3.4370970650845725, 3.8154360667756952, 2.510778249641176, 4.364514278591729, 3.1503914732035754, 4.497653306528688, 2.9479127780784986, 3.629570917050479, 5.477285203461198, 3.524186472000716, 3.695638093617692, 3.5555093407381664, 2.713900697795487, 4.0693389357929215, 4.630053185695836, 2.2219712729464645, 2.357823044860596, 6.733996796397447, 4.6276076472684275, 6.608462640996836, 4.915931533077411, 5.918029830837385, 3.5087812199327466, 5.271936129402038, 4.942066300160518, 4.725552403582594, 3.3512898878789796, 3.1871061111723558, 6.0373188922880425, 2.896475254394395, 4.348559288054274, 3.458707802847591, 9.150032170504558, 6.001004664184934, 7.112223424171946, 7.012822004056657, 2.491174061500504, 2.7778463827341047, 2.2718878641383466, 5.933510298607318, 3.154244371802385, 6.209925323984385, 3.0443526197830377, 4.038680196952859, 3.6752110124258857, 6.392568105834134, 6.233446668030269, 6.284765743628046, 5.843723757846508, 5.13642095506886, 6.353049227918837, 5.327912694427844, 4.131607877695616, 7.068679552404195, 2.981369282500801, 8.83058108408646, 7.852041207808591, 3.00132003154218, 4.917168882697923, 4.655191772405727, 4.498655333308491, 5.120108049308959, 10.12323854597177, 2.3147012967722285, 7.054952289382355, 6.533182477844971, 4.651339752955774, 2.833520233714299, 2.543180510291933, 2.611330963432612, 6.597230979314109, 3.4791771605401665, 4.780276138639942, 6.628583065918901, 3.016739533239286, 4.1293664921645545, 3.7439692841326218, 4.3778649582965805, 3.4215024987273357, 5.134752510107687, 2.8417479806581687, 5.281138567397937, 5.580820736026303, 3.444944135879771, 4.822737491928847, 4.508933155522002, 5.976388045599443, 3.3229777503967326, 3.471385854371431, 5.864003445640509, 2.7028589762576076, 3.4150209301118903, 6.236766974689207, 4.029056396470635, 8.302408725339392, 5.226774263762397, 2.6535792466609167, 3.843210520579256, 3.454472843064587, 8.136934172987123, 5.196783326176446, 6.844727665752878, 5.099163567911075, 4.5971315421608265, 3.949303810093251, 6.221611003985619, 4.311730721666757, 4.474623649290966, 4.393752800806453, 4.9103095656686655, 3.040467684668115, 4.509505207279561, 11.86660807940033, 6.8850595025101, 3.7337107178362587, 4.714672461041917, 6.142379489744473, 3.725339272215684, 3.9113000981149475, 6.718013961903953, 5.7240757546622465, 3.1771841919336596, 5.052956157658125, 2.753571743973874, 3.2948400467353602, 3.3624902588592986, 2.963893773225552, 3.992047490503091, 3.9572826895906283, 4.5906341947465785, 3.3599669653011217, 7.852283358497859, 8.369233596224385, 3.5419782369264277, 3.529137104835186, 4.436806848104107, 9.195359810767101, 5.6250838612361385, 5.840831313142985, 3.9177434997372704, 4.865710199706222, 3.7696179735568327, 7.9451795595550605, 4.225910548411743, 7.145059523324655, 3.7060232464455956, 3.4077079608805216, 2.8895547557781938, 9.000483536540223, 3.146034517760889, 6.761569665866704, 4.29745072352747, 8.011816257216369, 9.780936788153447, 4.3427036419225065, 4.798716909596118, 8.197943535594243, 2.75003004416377, 8.584675987608549, 7.993848769609294, 3.2419189733092644, 15.480618971402489, 10.864625065131467, 3.7106162563450207, 2.780042310047095, 5.3455067368763, 4.776331157494311, 14.576766967702065, 2.2975625093793037, 6.398423924201774, 9.992624798321707, 3.518281020355727, 2.7630392179495065, 2.7069622080347058, 4.279853448534321, 3.119354692315771, 6.028151775309522, 8.918007625670402, 4.8005513993624005, 5.342523953107943, 8.771729089198782, 8.274633674192046, 10.58320663272648, 7.906115100268729, 15.913348280083978, 3.326599706549285, 8.431417644236987, 2.8530985458527107, 5.260753456502823, 12.233969334703763, 5.38917905876043, 2.8373710157956573, 5.148789657071421, 3.914300104980317, 8.54505668521302, 5.787340909796755, 6.3952307536735535, 3.5949056950182285, 7.345214670871336, 8.186275964223443, 7.871978893739808, 15.753200622160454, 4.453218369081413, 6.21218847044207, 8.158341239488122, 3.0202008647524097, 10.798401845139196, 4.548276804078653, 19.777755218434653, 3.5552184892956986, 3.51472714374183, 10.008565811929287, 6.980498201724265, 7.040189431037105, 8.07894097888214, 3.1503154851606796, 3.456034065035301, 7.060844004817075, 8.479438523629002, 8.258529363509146, 6.6595347232727296, 5.041993055339783, 5.234447597895502, 7.610534141512141, 10.599251503169137, 3.947518948924496, 3.765652160405734, 4.051651434032456, 3.9759575558462545, 3.741073604808266, 4.01126711095678, 9.72426028681695, 3.8369073164846874, 3.3451986125120654, 6.513055509551605, 9.225976462026289, 11.851561712853684, 6.845461642674336, 9.09610670954151, 11.296355834519472, 4.117196258137658, 3.540871829384796, 2.5351185082288286, 6.5879989849802145, 15.234149571865435, 16.762700419810358, 6.659269654719194, 8.484629187350476, 7.060457529269347, 3.9837996853901134, 3.760363842986534, 3.215953145756947, 6.2292554413125965, 7.872326897846188, 5.568947645364061, 3.7843425119088514, 11.055563227567157, 14.395628434321189, 4.088354303905632, 11.397871308251476, 3.8248465253809343, 2.6785594334412606, 5.049917690379801, 17.045243695375728, 10.330629381758088, 14.133139366496216, 5.1013696511535045, 4.483279817159895, 8.48629281491424, 4.972343706007779, 9.586594093734396, 6.719865684085359, 10.459158544744387, 3.791317079622661, 7.408866146171703, 7.64208294960564, 2.486122566393942, 3.3892187692970195, 4.436966273859748, 10.404335072225761, 8.045111647249186, 3.7780933135686867, 2.9748920465705915, 4.1343863033428745, 3.3255298633389443, 2.8903003214322087, 7.918804144801008, 9.434980969483162, 7.031075550817116, 6.471771895426674, 9.61762812734874, 7.557908985610414, 3.552913393785256, 11.139384871905241, 4.615393258750789, 8.036444468669309, 3.539159414251598, 4.223902662617979, 5.2109492417195655, 2.6652797247622844, 14.482932203072876, 3.6344847758551806, 10.652044920284427, 4.915663291414804, 7.346788761817392, 2.7772202013441802, 12.765151257046577, 9.913670016040326, 4.000663873719735, 18.045618038685454, 9.433748382500326, 12.550639804785902, 7.202600658778104, 12.125544175228757, 69.40621988651097, 7.945595551301894, 4.33662577617013, 8.374356534020723, 9.431437293245958, 19.17262614274489, 7.683303469994548, 5.705071625206319, 6.422963062021328, 5.422169216862193, 9.293033274411675, 4.378057580282043, 2.782322972956837, 10.761367858017952, 5.834402963960392, 6.591798639655348, 6.9187220198537815, 8.489287801376545, 4.045815785987955, 11.093949270974738, 8.986450011859311, 10.482522438791532, 10.071069850871362, 2.896497380825058, 2.7748680144792566, 12.868637903243606, 6.687844559145245, 9.854020257811149, 13.680904996185319, 3.493246222396169, 3.4603359051750897, 4.868925276273035, 8.308428918673153, 6.940917162656831, 10.990258486943763, 8.958790935218916, 3.636007213139032, 9.92513469304043, 4.101105423610124, 8.842641306533515, 6.22919612983293, 4.1717542058163035, 3.2043357999847597, 9.844706295679416, 4.96981499683285, 3.454933742607128, 5.561045407640096, 2.4153250254389618, 10.087195439421935, 3.6213570312278667, 6.956506186925066, 12.06823399408778, 10.208802180993493, 2.452465461557321, 4.326743960323372, 6.69402269093276, 5.304195931422371, 6.354439315110408, 8.914902544566747, 7.618153084761189, 4.503241211401265, 3.956223590340833, 6.7558210627053095, 3.7728005027047797, 2.5007944553687023, 9.522371082990885, 5.7466170851357505, 10.913341370274031, 24.145518915090875, 8.092342177342617, 4.605660642007018, 8.515292086854492, 2.9462610577195565, 4.862786348220753, 9.343670233411725, 7.614500418996341, 10.082717768169653, 7.401185214186286, 7.138843576387882, 5.503573075704798, 4.049485396589796, 6.344210800123616, 9.183389643960592, 3.4780953662692955, 4.762585659332422, 12.701573436682475, 5.232177695567803, 8.391008995104707, 8.30639311663039, 6.504438248421349, 11.3737966488065, 9.868554356407259, 10.60266780421949, 11.20234619833793, 7.846548799263554, 6.177492059240337, 16.82623480750831, 8.655539302200902, 3.1918643678413643, 6.763217182281936, 5.68589894918841, 10.471619026500106, 7.332602183260109, 3.3763024928821306, 11.265656845127642, 23.677169868419103, 3.1982330857776904, 6.981634413568953, 9.423558572453302, 9.209100531330977, 6.379925064768182, 5.428747523717074, 17.31555851104267, 3.3992639395317283, 3.6277674918591845, 3.606837307887106, 7.418824348625899, 13.811302717311746, 7.963431925989242, 12.980440791979463, 4.3157307647105485, 5.754948324684089, 7.448153765568166, 9.945148313529758, 14.498095123753844, 4.523151790861303, 2.7383275550592914, 5.870949215499171, 13.333984114202655, 5.595860640054436, 9.47804711411935, 9.006366238946207, 2.6328309755915256, 5.807423145184898, 10.214434302568343, 7.259123915877021, 6.8013431659009855, 3.894632717862479, 6.640199286125081, 5.594605143006481, 9.716848380292843, 3.192100654578742, 6.576648014729192, 3.356282521512613, 5.308077017910255, 10.280441454548503, 4.05539190798856, 11.194535195617949, 10.704805094124142, 3.2815740349609124, 7.304175930336814, 6.683263152647184, 5.376591269460988, 2.9261657003748542, 4.917664612433133, 8.467955094069493, 2.911215964418374, 19.306658538642886, 5.267493158606124, 9.77546115648566, 6.855998004960082, 6.478046175594243, 5.981059364484054, 3.1905893785730606, 5.1251517603681345, 3.1263747621875204, 7.560823314027093, 9.779460859716025, 6.223244004264856, 3.3464900687554966, 5.138126746169451, 6.726775932313343, 11.127729016200819, 7.0457333792825665, 3.392952260700182, 4.015436305762317, 8.6981440330687, 7.7070817613517075, 8.234765195126572, 7.94888628417559, 3.8359266279925337, 3.6431664619839323, 4.100109922890538, 5.735271974454976, 3.133486133669373, 8.361418812148575, 8.2273194977295, 6.741340271838544, 4.451830772608524, 4.742362754382715, 3.250934027764885, 2.8624736062031118, 2.612646861762202, 6.270764282633625, 6.376107174712151, 6.868616598005021, 8.463131024067598, 3.436693912898385, 5.839249374206836, 5.097523191772154, 3.6020147954008266, 10.62385900837205, 3.0233783072932785, 3.4526477999668437, 5.4144630459805, 3.0420556461559762, 2.687961809001836, 5.465262815547357, 8.838600369220615, 5.108600312493304, 10.316509777210536, 3.8575094609160963, 7.607226845910035, 5.834144801869596, 9.711721212254, 13.34615432247575, 10.259568133508791, 3.260881581364904, 5.126955889325999, 6.9784360949568764, 9.025038110921043, 8.598579743549285, 4.78329492826795, 9.571349136910575, 6.9723568972481225, 3.9248597827045026, 8.580725005677632, 9.393146892136427, 4.634023953442841, 5.8194088663364045, 4.419379971011358, 2.978965131752837, 3.5528024513621967, 3.1178252085437266, 4.263046048243909, 6.296653856927598, 4.129116957976185, 3.8502731408741373, 12.760170081512612, 2.732703429308401, 10.061198789538496, 2.405282773992663, 2.7256390018499195, 3.37091452671283, 5.761063769693531, 3.474877181341543, 3.0341669459697522, 11.61648959195294, 2.930911463233315, 4.769848619863011, 3.198088133961724, 5.289868380411791, 8.426872089095026, 3.365975064996236, 6.132164729775739, 5.729108636653296, 9.81381753516471, 12.083234344015453, 17.855259875872267, 5.395370329660705, 4.379569102905852, 6.871600188500432, 5.634298327239914, 6.307123284687228, 4.332951860739591, 9.556150570033132, 5.642166274005952, 2.67035741059052, 5.001399649208594, 3.794044018678026, 4.19543026546402, 5.367885001138204, 3.064028142400654, 2.8591366729155383, 7.2721728605019305, 3.338101757171174, 7.478828990375882, 10.094073719997112, 10.834676347496181, 4.243414341915717, 3.6915311930052654, 5.248827793341667, 4.462572705621293, 3.3702426015205487, 8.0715380294763, 7.811404347257492, 4.291854906870521, 3.7968143622629507, 3.1414243406423186, 3.6270767712358323, 2.758688904423007, 4.1382499524295016, 3.4948927238547824, 6.256497700976598, 11.116055954407326, 7.565042306353551, 4.747166755243036, 2.6723127102588187, 5.034442217869085, 2.587513278144093, 3.3276813654716926, 8.107318817223168, 12.543431244252435, 4.408597678412867, 7.238925152292362, 8.384660150133959, 9.053450488463097, 2.732512530181657, 9.837291263948776, 8.229442697560854, 8.304534098099438, 3.2854237453090698, 6.546968340021502, 2.8884288291683484, 3.3109944899748696, 2.4464592732642054, 3.569503163694193, 4.250679302324561, 19.101575771181654, 10.218398849599623, 5.051364643941507, 3.4242779508822117, 11.665260848767858, 2.9899673770496262, 9.098179346979023, 8.91883431348333, 2.608063615211925, 2.7682129023347772, 4.4372620436746715, 9.14786856405227, 3.754445865197127, 6.556567526543189, 3.057877249521567, 3.6216802950905844, 4.609718741249372, 2.2609878065170976, 4.539609505379771, 7.561076707349678, 3.1829792345826653, 4.241474976959678, 3.9806061767795864, 2.6761859736313935, 21.272720327769953, 15.26359038809462, 9.736576661540047, 5.8815727053170015, 7.959086202352558, 7.358304205872768, 3.6159983234537667, 2.730592881241953, 8.787074899957078, 3.0853953900184874, 2.909184003433104, 5.463749012951497, 2.6033884115307546, 4.882423765400689, 6.2027964284917365, 12.612105734094108, 8.846564485833431, 8.922672964059407, 3.1465308330377373, 9.495729993971445, 2.71497645518945, 9.645634824017362, 4.410968777298628, 2.697273196935654, 8.035806693732772, 6.34887394138775, 5.459707097555756, 3.3749835739575995, 7.471522984734227, 4.042816649107801, 3.399346055308048, 6.882610281579413, 6.436453947958659, 7.356952493870505, 2.9070969284591293, 12.941245990319132, 6.403683102791085, 11.464815508542772, 9.464116874664294, 2.939860318670972, 8.369528250415122, 8.965604728702754, 9.591620668235716, 7.6888887987621, 7.913104001969909, 6.017083855371941, 12.296231315379398, 9.548505160218886, 6.442744238532019, 3.5183413368654, 7.554042835842973, 2.6762441231772858, 2.8446091288363644, 3.097793859631168, 5.282160582273106, 2.870271691420533, 3.8344948894906437, 7.592456699174579, 9.093866631162351, 7.760592147732108, 10.449269886953209, 4.351190247469586, 62.42473698418923, 20.26837075830583, 24.893098732190307, 4.087966175707642, 11.24764684113481, 7.544003443369242, 9.877716627208509, 6.244230053737912, 5.711082345951361, 9.290210573514303, 7.496588084478022, 3.068071455987902, 3.6504139033020655, 3.9250041479468543, 6.2446758584810755, 5.963411024891126, 8.24201674335486, 3.621209873171199, 4.905758440522071, 3.753302398051762, 6.216589521548714, 5.433939510684843, 6.641767559390175, 8.155340875265557, 10.555533790441016, 14.281616209049039, 3.270833011893416, 10.725132457683598, 12.770644766075069, 4.467413247590116, 8.046278385861594, 5.2596229360089675, 4.1036032415313395, 6.427012128460044, 4.529381124377534, 4.906947543377637, 4.989941339523857, 4.039703675288276, 6.491185021946983, 7.8992354343541145, 3.470049238729166, 8.139193387890328, 7.557312829785853, 6.081181334216501, 3.054399962032044, 6.405357667489257, 17.10194967882872, 11.828661971760427, 13.922605175948608, 7.925303863859081, 5.4889987102814475, 16.35507469501691, 9.794847141319526, 5.168115404446339, 8.99407305610196, 5.836050079656802, 10.566781999665015, 7.965998606031703, 3.6358187016726395, 3.9404736753024157, 13.128353149793728, 2.8978576811611263, 5.907513823088584, 7.472867913713091, 7.517261199037275, 3.2973248445968903, 10.230885173885156, 14.83554512923529, 4.524425685022157, 5.569274198920983, 2.907983238784184, 2.772886012594146, 9.720507262382945, 10.371753709267537, 7.766784866261043, 9.403847866686753, 3.948706603277769, 6.909276968590676, 4.816441286243502, 4.127241032274742, 12.622531636976294, 8.219704612077388, 7.813855995475295, 10.195668920039077, 6.415933917517526, 10.254404519625991, 4.905730777503581, 11.99905483161574, 12.211297514976993, 14.201960382855694, 8.648300590438216, 6.315807198496669, 7.645563515587746, 11.424991413616873, 2.5153456748652094, 3.6837884732170023, 7.778137631075169, 3.5035973731186583, 8.227838622831275, 5.732620364084407, 5.725958684055178, 5.1269693037275195, 4.233524805917716, 2.940988707944999, 8.80417958118527, 3.8832284089469753, 3.9643366960116793, 6.364302358391394, 4.530186180361371, 12.660185901629372, 3.142547164280716, 4.912436098694866, 7.3558519823586135, 6.3782568906707695, 10.299812446339825, 10.415806863483718, 8.28140097738861, 14.316315629010068, 7.711892407240071, 12.60073915202982, 3.354395543234725, 6.1169766736857945, 4.723274602039476, 3.4628087600911313, 4.194679951259055, 9.547762145614012, 7.707347274383712, 4.609055296233584, 9.492414503277123, 3.485140221224046, 6.4236747797606295, 3.319769248276306, 11.014351985038072, 3.8131595636906077, 2.670034385678234, 5.610134833487342, 5.890147063188126, 8.063360482191454, 7.5080921638705, 6.852224559206349, 10.517137124260147, 7.429515747016211, 3.821653593934285, 16.55636368435002, 6.2850950123072264, 4.609487229807522, 3.1607418613950746, 4.9424619678043635, 5.023862876298015, 13.79297277084731, 4.3328229558029525, 12.457529051905624, 4.567924965811212, 5.713019127403408, 12.445394961855337, 4.0543967065786015, 7.014529491913476, 2.8519754239801736, 11.142315144810176, 4.348445574082739, 7.086319981847269, 6.503480059781713, 12.558687028656731, 6.885204626294971, 8.079249137995177, 10.32163498319444, 9.401861306283477, 3.133473005213718, 3.365602798150325, 10.115976375949801, 4.179401956275537, 3.419623183701203, 4.154738508472091, 4.737299930914469, 4.750850345144184, 6.4836665446725785, 4.214243393956397, 23.603670162485262, 25.06577421545046, 5.092810153535034, 3.211293780530762, 5.108777795285954, 23.30597542359882, 20.93748851602932, 9.114481601134326, 31.45453345600863, 15.80512147335522, 7.7878372445865764, 27.26961932552034, 30.231739104947167, 5.925220266098691, 18.238932954705597, 27.757671670204306, 4.792031448379486, 8.668627397824624, 11.681060673536313, 25.60403939430675, 7.853519069809089, 35.49863915934936, 26.48716468135795, 8.500279824264899, 6.040265560332117, 40.780527029805704, 29.566856241268717, 15.344444871450225, 7.113832411563521, 23.362889333856767, 16.971355508709077, 22.09049085071717, 18.210454416304703, 22.491342166386982, 12.683778238641603, 19.506470218940517, 4.928784316574412, 4.866335335592846, 35.639573756406186, 35.48203983783229, 23.70797720403428, 25.313153321072935, 25.475627457917867, 3.4992497627730734, 26.015218682294908, 6.927630306836228, 13.889063936494907, 25.56597821161504, 4.536332439147457, 18.966223536778237, 4.270757813849561, 3.374100504905042, 16.044435552678397, 10.41969218351244, 25.43673426202235, 19.504487099950573, 8.033499523032615, 19.382118367700084, 12.035223828454832, 8.288977628856797, 15.041582403451104, 11.167206049299702, 32.70270411282869, 14.639112740041625, 11.491847665714769, 20.468559010362004, 5.0106375776971275, 6.334039525757115, 13.028264327613437, 12.492600263135266, 5.553311893612749, 23.616350906368996, 16.935415904127456, 5.666771036392052, 14.503526224363315, 3.2346545431125318, 4.956685022626517, 13.717172788491299, 24.32545294949389, 3.677780025374699, 16.07843196155679, 9.477164338065732, 7.242083076064344, 19.01504066546954, 5.036116347117814, 20.361897482537255, 18.44454319493998, 18.328550445756168, 7.144091806041291, 16.15701557434713, 13.739111640277727, 5.302989555105154, 22.497076128228983, 19.286850700168554, 5.7602130333561785, 33.16847807468558, 5.462340360465199, 3.421816124563045, 10.759700438867357, 16.916605268655424, 8.823423932633395, 6.14716854787721, 19.859290541347054, 5.378195063976498, 4.067469205841431, 5.055340698576991, 24.112888118121695, 12.610417278296477, 15.918413721169365, 17.357651810119417, 4.904009064251259, 9.92802257706025, 9.753916588985367, 7.670033033163966, 3.5394657521418917, 4.72504973856521, 2.5200245832277255, 10.570810920930093, 9.181746204702597, 6.648724714625449, 5.149952727582681, 3.011498904431073, 8.10034338523783, 6.809766419919266, 12.41957216399514, 6.691863592455497, 4.790488826617804, 9.429836668910278, 6.266917685861969, 2.8761744776975906, 4.221351658316407, 3.859495134171904, 4.908223447442345, 5.8014594064580765, 17.104972062048063, 7.523406620591621, 4.572987408560388, 9.937769281210699, 11.61080343926858, 2.7431710045344775, 2.8315861483268483, 17.74641863221839, 6.776476223224308, 8.839965310496927, 5.619837739832977, 5.931702385504278, 16.42507915712642, 15.784669907764474, 16.807102144789262, 14.073468752509108, 3.2685770170371473, 6.586194763413018, 4.661607237517934, 12.074458102149984, 3.8366338061438605, 24.003189259604053, 19.676793867296524, 11.78987125477215, 10.688969324672152, 16.56252185109432, 14.683104130593897, 23.36591195197453, 20.63370191484711, 10.957175687400806, 3.8934217491619747, 25.110813362484233, 15.566929909756906, 13.371483573765406, 7.459887438175867, 4.962585380795973, 12.854403234492704, 4.134849559936914, 17.628449242218682, 6.061320007052886, 17.938216951295747, 3.5393548154831524, 10.059449040194817, 10.782313701989148, 17.265354339774383, 7.661851990281822, 10.160159562674469, 12.712283019647156, 17.184556911873006, 15.424481874717703, 7.036886642346759, 4.730937332534583, 17.786156435608834, 18.173552799475335, 27.319258529915412, 8.846180243610782, 2.93469371860529, 5.570008222870367, 7.007473292039789, 12.445698302535705, 4.004067278002464, 15.552827242164003, 11.088004950526193, 4.573463647590492, 3.5561691980022183, 5.3900290154395405, 14.95706631383666, 13.945235002669094, 3.419318933718152, 20.581705446844083, 4.520242178290521, 7.755729931266848, 4.144279090598843, 8.479958651001517, 5.963722509615106, 3.6869173878691504, 16.137477817385687, 4.2380232214987945, 8.303129153805145, 15.573068211919056, 4.65879198201313, 7.216176411903633, 11.68433666153252, 5.218950607968452, 11.67611306245701, 10.362056187514533, 3.4847640977044327, 14.590691848113991, 20.659876516282967, 16.051958538225776, 7.906152596204103, 26.507449978606715, 8.755085933512014, 7.733942820169339, 19.270034982059634, 13.517041235510574, 2.7099903278350848, 8.327167469587858, 6.06188537618116, 2.998847990699676, 7.752769713114262, 9.766503082662297, 8.864035901435656, 12.261915076799095, 5.840477990237241, 4.8562911397385475, 4.693858302504964, 5.689683011111911, 8.552141127466617, 3.554604176515287, 9.068577838060904, 10.22888270065337, 5.701813014973421, 12.294999840479862, 9.402261073332973, 6.66320488258684, 3.501850790486774, 14.00848326710189, 4.18576769238792, 10.113650258790003, 3.140826557628686, 5.249793777518894, 7.498993440496085, 14.293992173879854, 12.27588955476222, 12.98465696512233, 8.867336025251339, 3.325065702062469, 3.2015488853498595, 9.237806341601239, 3.6749148358983503, 7.755477849367162, 3.2019958340978976, 78.31466853514422, 4.725537776358904, 2.984701073131662, 7.335955975370707, 5.137031834490448, 7.541416429966384, 6.280937931242514, 2.518242092043728, 2.808815832947556, 2.952776013173919, 2.6629687351254057, 3.789295510604862, 2.387739439666624, 3.8442785311848944, 5.804197995508188, 7.506097802365157, 7.790910343423852, 2.745315763474263, 3.593721591710844, 6.2041924184751895, 3.7243838302967363, 6.35681556582193, 4.376077895858556, 6.072908590985342, 4.493910707236595, 4.156791034313386, 3.114989053155817, 3.9295553171249873, 3.842757722823905, 6.545311055571213, 4.4992287698093305, 11.357949004106507, 5.280399953865332, 15.682695356416318, 9.349673123126454, 8.096920936908603, 11.060520478750172, 3.2441294063854706, 13.671670330041897, 7.772205741332084, 3.5563421392020036, 4.694892258291029, 5.725610153180432, 10.281267377669145, 5.495086453285134, 10.14548066704718, 5.6895981748158455, 7.8208895186311205, 3.488490204091315, 6.723646007776275, 3.044939299347959, 7.359218992991523, 5.284525813505364, 6.988161776392334, 8.796562039521794, 3.4954582325154027, 9.025046995993776, 11.62960151798794, 3.7630718795536953, 8.283115000316581, 3.034735094189545, 3.3449925859290253, 16.892535294782522, 6.2754765024640395, 4.897687208507159, 3.1597092092501655, 3.3222533800737732, 4.404669102639694, 18.696780440818113, 8.261358719430392, 8.895480145654732, 8.830249824011393, 2.9980773894926487, 12.506220313530783, 9.326893163067686, 5.828152542692463, 3.127370056463749, 3.150098842874453, 13.667283472656298, 4.240221393231623, 6.884050942881361, 3.395433946588108, 7.2297294919762205, 72.45527761127761, 6.352635773415774, 9.523572709033218, 4.3183873488232285, 3.222951074973684, 6.821592530131555, 10.883714595616881, 2.4946444942226673, 5.847267490498121, 4.881892934728466, 3.7111489740794013, 3.011378624642537, 7.710547871399483, 3.325105761656844, 8.005683435601897, 3.279964056955173, 7.19067424016186, 2.779170440114459, 3.99509116444505, 3.075480392807824, 8.796348144126279, 3.0280129421628836, 4.752575700765846, 4.0885056052145945, 8.17835715560111, 2.7589354064822746, 3.752118914709753, 8.684306811854082, 10.14354045905031, 3.4477220922572593, 3.50388959525972, 8.420876353018059, 4.866230315539222, 2.769754108134926, 3.341485378519159, 14.179048218430303, 7.090802171054747, 3.042929752682792, 3.0718011240219036, 15.066214624611177, 3.121677473495626, 5.841156385469081, 6.747730353014408, 13.980688790373494, 2.617043869138945, 8.20081014559246, 6.95721665683652, 6.610057868336746, 8.798734435631737, 2.5856663689884862, 8.484798194924299, 5.940039420734551, 9.283867557004108, 7.342554989188685, 2.828335944319321, 3.225049522565966, 6.0605999954588725, 2.7113558819299026, 3.8582176664753858, 2.9948416662089676, 3.789640801218099, 7.271154498535708, 8.282344865750389, 3.1089310676724944, 5.2158325877680705, 7.117247593918364, 4.393044846101411, 3.436265440009971, 4.056273521866954, 2.803246738252281, 3.937245549518258, 3.5101221356122356, 5.327968722869963, 4.281896314830853, 5.474485239190822, 9.008508905310048, 2.5044033982872986, 7.1603881278398775, 2.9008088896113287, 3.317359919089824, 15.198309749042098, 10.096013663263449, 4.762715150756756, 9.006409668035143, 10.691292589907881, 5.569028240665563, 2.642276123339309, 3.0069284860035133, 10.762740347958253, 6.814380096402115, 8.351027907946, 6.705801381542128, 6.179900763287593, 4.876710930707644, 3.7650134003868345, 3.4505679818972324, 3.2155558664573203, 3.3727822178171865, 8.099526664984273, 4.082082524789694, 11.6607467783333, 2.660151376719733, 6.796049304832361, 9.548899722752966, 8.580256093795011, 3.0342769487240053, 7.980916102806449, 3.002957209201671, 12.740531542697815, 2.8330282805776035, 13.32502383214231, 7.839629292486219, 6.20037888695634, 3.5731572853117797, 2.165350165828214, 8.09594014765192, 5.474192616187835, 3.2663315855392803, 5.299500793730082, 11.253409989861126, 6.057091490494059, 5.708898301921334, 10.80334754313427, 6.1736356486096, 6.259070248058076, 7.244124620158739, 8.126062254684888, 3.1175779679825775, 5.199611950814286, 3.5834086895113595, 3.975499038618381, 2.431022845842531, 2.832347892910111, 2.5904295842601917, 6.304628396887701, 4.453632799615918, 3.0321644275648083, 3.360133870557426, 3.9145910451658157, 3.9123022547499047, 3.90425182879196, 4.475177481352737, 3.254767961523986, 4.549607044596316, 3.119131387651847, 5.164516179694727, 2.7380557045222007, 4.745593113902145, 3.5981849691901675, 2.540794693992294, 3.8931494100845088, 3.2002641944678207, 2.114881126132094, 2.986128798299466, 4.185252884877404, 3.1990925684992924, 3.3227902413460004, 3.950335298392781, 4.738799617965852, 3.6623099610511143, 4.983141498229379, 2.4016464809906957, 3.6719380764732086, 3.76971617551063, 3.9956053274366905, 4.503939846814886, 5.317887190017741, 5.138340685609925, 2.4088073116109836, 3.087433731074019, 3.1967293496595772, 5.620169244230272, 2.8100609800448675, 4.2319643657184285, 4.031592511160726, 4.837622475466087, 4.461750686014145, 3.9522499093606003, 3.141501327194486, 4.205153609043823, 3.735474016360876, 3.8140651296132377, 4.510440338491015, 4.729736920026572, 3.0801894984370874, 4.962974938220056, 4.417065756450517, 4.802253279649531, 5.493866854753569, 3.021067668629836, 3.1910177109348585, 3.750622401064183, 3.3538173836417293, 3.8461907586859745, 3.682263971366994, 2.619918859414901, 3.1188190892369207, 3.3480036262834116, 3.5787026377097946, 3.334802041468408, 3.0874453680704668, 4.8880338197270925, 5.523356262014126, 4.477752922434904, 3.160894961087213, 2.961684187364248, 3.9814771245859446, 3.370044366075515, 4.5916326823642954, 4.57413601271131, 3.6213783422049106, 4.057694360785521, 3.7683415490308403, 4.818307951395422, 5.313952965925091, 4.98841452342254, 4.897510370775692, 2.913219062293421, 3.9705808672344722, 5.400887331496428, 3.627572093657984, 5.33251952007603, 3.4157497896748987, 6.621518166072423, 2.5486699232328904, 4.0826959676277195, 5.804139280733203, 4.848757132655042, 3.000402636658858, 6.521875146469529, 3.350912244194105, 4.815242752333571, 3.361449241112279, 5.978474167120574, 3.579972517684353, 7.065004574913586, 2.305354550233301, 2.901488385533886, 5.956679954205273, 3.049310186454003, 6.008103411661481, 4.8974787025835935, 3.266222900197226, 5.012542404003901, 2.94622989063427, 6.112876313664472, 3.2800601651604695, 3.536170060074323, 5.620940747361812, 5.107534147620061, 3.3965069079490773, 5.111124779294664, 2.935547169748344, 3.4858377063621977, 7.129949973229582, 2.9124715333847595, 4.66816997158475, 4.446160814727338, 5.434336972694468, 2.52071627675286, 6.116504887104728, 3.46370778898375, 5.4333378537831845, 4.071730110175219, 3.3341107563276107, 8.331774126858162, 6.172664496225333, 2.7990781196877483, 5.185296099906026, 5.100009806513886, 6.2048534283538785, 4.7932894057029385, 2.6225851902750064, 2.862706368982609, 3.2095895013110654, 4.184119328323392, 5.6056755942236185, 5.826372440852299, 5.144865695581286, 7.215823985583835, 4.983948523630836, 4.682783264129746, 2.4291738657669746, 2.8831256727163357, 6.357803527828494, 2.869515306463309, 5.198718245262075, 3.7485983283821054, 5.353824442796343, 3.636823575774076, 6.018408057582215, 3.4362127098995776, 2.7842965659690724, 4.762111642329841, 6.327063631357018, 3.393532494721483, 5.2221203535191405, 3.463179332015636, 4.4732824233003505, 12.230647340718562, 5.416704716845567, 3.525387001142119, 3.7654293977671176, 7.230378699843347, 14.9769484135779, 4.41528621529365, 2.9540828917805575, 7.800143630803774, 4.155536164713296, 3.477529080015375, 3.1953795465327044, 13.159236446586013, 72.42136905960146, 7.294303297713899, 2.338229595872998, 5.856287599095775, 3.5002827670426737, 3.693286996010444, 9.11994790712805, 4.430895575210079, 8.451201390319945, 7.895471576444828, 3.404531249920161, 3.958762206886917, 6.878043560042313, 4.36936048034647, 4.9791307312917015, 5.056927725516309, 5.518527554509946, 7.992895700072447, 5.685274637879909, 5.214908169221887, 5.335044022588432, 6.974751091404433, 6.513947422293189, 4.149364184510574, 59.913477811272585, 3.1192211176143556, 3.5033017870782057, 4.303855222235558, 2.4722860917782095, 4.386617310960477, 3.448678311472612, 3.6874960903601597, 7.38621175398325, 2.8599024927695122, 6.4025293791516, 8.540866752263222, 3.1378565192570727, 2.584239721728216, 8.24720591477786, 7.0261334072173005, 5.69704117338125, 7.0714739371659965, 5.5836950232911535, 3.1022187026205565, 2.395620189646704, 6.840684358242129, 3.4954069929838427, 2.8062089291140806, 2.8992009200880187, 10.135091332249758, 6.785604290186372, 6.394991345148905, 8.235076021619795, 3.9128154481530877, 5.736817522181362, 2.981824845053735, 8.565563548025667, 19.23030100752064, 8.07316912476307, 11.783357142538872, 14.98427827521142, 8.369260165983716, 8.478820397789384, 91.41955970345445, 10.873259308126276, 11.421495347917219, 6.07032685102861, 6.391779198033769, 2.976381615160123, 9.844254716418522, 14.090284314278131, 7.328779177424368, 5.6317921041882855, 7.030507184390696, 13.038182353625357, 2.9835319639896793, 3.431163497543103, 6.657753725352227, 8.711548964895623, 8.261001409252112, 7.941555356350464, 6.055559582380187, 9.610861499235698, 37.128884708704824, 41.94303425797556, 36.83337220713409, 34.11432087806141, 19.934755314141857, 38.753893516805974, 22.37403508807192, 35.224064739029984, 37.10565286817419, 8.291939508324539, 9.081498587261322, 5.462994353838671, 7.026895207964657, 9.232625766974516, 8.628870673949624, 3.0287412646546064, 5.145871613226072, 5.974244289883629, 5.45033802175683, 12.610697631333172, 4.985509889544228, 3.589316739467397, 5.3342308581190485, 6.431665404485365, 8.907880240210238, 5.726347308023, 6.669741915743065, 3.354885482606106, 5.011515197466003, 11.232669074600693, 4.237330014266034, 2.3647620018137583, 3.787896221879851, 8.920340108040051, 3.080054680218667, 5.1217360478380956, 3.658941341134826, 6.157622279457984, 6.611042934986789, 9.445862227548345, 6.845269515012106, 3.145863112681814, 3.980565553692057, 4.071562061585721, 3.8497771510787135, 7.565667705085805, 4.074470008743615, 3.7120254662665473, 3.2490712363726235, 8.87161642011483, 3.1253105799269387, 9.397222977059906, 12.59697629920163, 2.8875808277443165, 3.258078102560032, 4.089914797702956, 3.3650250904478565, 10.613807635793728, 5.86450989012706, 8.975653873601383, 14.744751482710067, 10.07840930759299, 2.715617565424604, 4.303113347692894, 8.197779830439561, 9.65716830464314, 4.690600327676785, 7.831653489858048, 4.656992890442606, 12.746305481232115, 10.231115773458072, 12.785772834388553, 10.456340135599095, 5.964239189434251, 9.849148733167286, 6.447326127654019, 4.155047990202036, 19.395117317053607, 11.934923930319671, 12.660418397002143, 7.57160999174707, 6.120073149513895, 3.0158714184380715, 4.858681371356695, 6.710564774087786, 3.8843203091185483, 7.845952025014437, 9.570050836200831, 4.658659828818362, 3.674504757886083, 5.911730362675402, 6.125591853097851, 4.7668896912331284, 6.567842558713736, 3.0380614846171783, 2.5518632849813114, 9.743247163013782, 9.217257991560983, 39.991964386103746, 11.009519519256456, 55.26938492368934, 17.195479251043558, 40.0715964044551, 24.143213203172348, 42.94175134418376, 44.827457141837506, 25.049468142074087, 4.3218511842729725, 2.66785512026205, 5.96959475725831, 2.932568709541815, 4.905729467084195, 3.408124330395754, 5.551535528879795, 6.494242366681205, 5.902997734600218, 6.098966453211773, 2.8440058864437807, 5.634703457341754, 5.25593828909399, 7.075902176691636, 3.648473074782409, 4.593512276879957, 7.6589218427218135, 6.23104709088418, 2.9050776373929983, 4.578823567834173, 9.818393654112636, 2.9808574003345063, 3.403395285048415, 6.753945456397474, 4.933214302837192, 3.103688982470223, 3.4974673682240676, 2.733916175643122, 5.504346884914076, 7.3198113950255905, 2.9847139427597784, 5.240437920764255, 11.269384628632867, 2.9900334759955784, 4.049885159104743, 5.298162099867721, 3.0421828449545187, 5.747445756272418, 3.2288880936338864, 4.47631650500651, 8.294640875775313, 4.761281861731172, 3.2181813264673558, 5.6260587442131165, 9.593471829720444, 6.097658075381995, 2.988147186816784, 2.8356557564188423, 7.358019209655077, 10.84147379522019, 17.116104498663972, 15.960726294929163, 15.051634869171592, 9.267102697931124, 6.797141844025001, 14.1747163282954, 6.930813976906139, 4.177278694276846, 12.492983093654587, 15.936472480119988, 3.76760623788759, 5.307150307340468, 7.050264179335674, 3.1405203938749437, 8.888048213324055, 10.009272785682112, 5.769138078079162, 5.745849032108332, 7.707734161579329, 8.9578097258116, 2.7353703896711563, 3.728023112447594, 5.089617330403959, 2.9084902539684485, 2.7011685259324874, 10.154358526706098, 8.7252366625503, 31.21207498454315, 44.885581348523694, 29.531867792841062, 37.835215794161776, 50.840427840052186, 37.65577949636044, 12.980728212994952, 21.10985049045769, 26.815746127800704, 30.265132239146112, 4.928258867142653, 5.8269553305162525, 8.639046266138413, 3.3346222077934895, 9.872945726692906, 7.470764206290751, 6.0401219828086035, 6.015982823004436, 2.6701437768871474, 5.449028197895645, 4.444342156633613, 2.829987684164684, 5.9740366752273975, 3.2586626145337543, 3.974681956399245, 9.44689681714761, 4.174249800984347, 3.828201027889094, 5.412459284632833, 6.493270707803935, 7.633597057385573, 7.1892223956545775, 6.659658827503533, 6.7612779360870015, 3.586432788640832, 3.58812827135784, 3.648206577341999, 2.891482074175374, 4.13212650559949, 6.677885625458829, 4.974830558881555, 3.7719907915670117, 3.0766277597820655, 3.6295464691894677, 3.2340394447811542, 4.066655243125419, 3.5177278151389597, 3.001626774928801, 2.8201852545728734, 11.081851778099564, 4.194964437777043, 6.5645225509557825, 4.630269849137764, 3.690731881518846, 6.156590980760444, 4.023986150896678, 7.795667689882007, 7.919351734915148, 6.492163802666232, 14.844596516884732, 11.28875945944893, 6.391792132558646, 11.150838167434488, 12.044679025497604, 7.871087575444676, 6.9333804653649755, 5.348418360101582, 4.415009965743415, 3.546633019451675, 9.158656859419061, 2.8693234822181757, 3.3576081921021133, 2.866443198849004, 6.556753634562339, 6.431524190366973, 6.851684936801939, 4.643330353426498, 4.82719487188953, 4.3514312486428475, 8.014270660908524, 10.120402750935899, 3.1897375271830795, 6.308578684570957, 11.679159416907895, 28.40095944855791, 34.99140992208457, 33.88882547503636, 23.293946464185694, 22.947246602253202, 23.280595624327713, 8.954048575672303, 12.891285604552362, 35.48850493003917, 11.576198378551418, 7.468911770511211, 3.321954314062198, 4.9685655996151254, 2.760535274838681, 4.439772449436828, 4.274735276772285, 4.975330320460386, 4.579166430682481, 8.124173059739855, 5.658396596152522, 3.080711026666766, 6.856017469267782, 3.139191544795432, 5.439971571826227, 4.6835212143423215, 4.8927975001536685, 5.782648065162441, 5.731996506546987, 5.906013781782445, 3.333597135656417, 2.980672486774808, 6.090815849958695, 8.780628849939747, 2.6192319295339366, 5.884637546136481, 8.644483512524705, 5.495199113251823, 4.23613837728931, 8.293705298340562, 5.9228847866022605, 8.264516581169286, 3.6736854514363886, 8.050362898106156, 6.084889294059622, 2.694516852938779, 4.364539786540644, 5.015240154950076, 5.908420178175895, 7.484806692551312, 6.662782127068893, 4.014286529767626, 5.021390822144596, 3.619235916399202, 3.6993297545132244, 4.918519266395937, 5.7039537861898495, 3.024824600027789, 4.344870793870148, 5.203257900214276, 10.263626047350446, 4.755106904171667, 3.9909981154513376, 6.460947451936467, 3.7513102457929155, 2.7984971661464684, 6.397194636148026, 3.7879399955803614, 5.341450633518507, 2.927938878201528, 6.78643370414793, 4.8772216060707105, 13.188716283811539, 4.186013837753752, 4.0685247318991795, 5.964339157514519, 3.782980973682026, 5.9337355835490575, 2.8008012698746296, 4.7089831946958585, 2.3841868082290105, 6.472073568086011, 8.29776821353427, 3.4048354587707035, 5.293710349744948, 2.9019032581307953, 6.248082666662921, 6.365004272676428, 4.0148981140996725, 7.166260680610912, 4.388943983544639, 5.387877993498237, 2.5177046922161233, 9.125167910068571, 3.6956328876929705, 4.78450455648966, 5.368198999058486, 4.934993155553585, 6.968192160803983, 5.499852897455148, 8.882350915675238, 3.3915113920272018, 2.6971289139942196, 4.85483270656337, 2.749117157045689, 3.262357479700015, 9.466325679620379, 8.814967870911945, 4.549175411889206, 2.777797470153159, 4.815706190779658, 3.5335865189634874, 6.735712273051265, 3.2201249396553315, 7.907901244424253, 3.3292370243848364, 5.785450249773111, 2.9812922564746813, 5.696289994191929, 4.02259714282262, 7.428058796370218, 7.209269692408342, 7.595631605036531, 5.12595066077482, 3.4559882237085398, 2.9944713378053947, 8.447837812233637, 5.72527727300267, 7.166487964184465, 3.308475892501262, 5.139951749041272, 4.278189728437982, 4.041666704734464, 4.327293983740233, 5.008631941617307, 2.726536066310492, 7.000608886070359, 5.799251431638528, 3.592707211039909, 5.133044974307849, 5.800981474136676, 3.9441559962563475, 6.63224647476663, 3.4858412202696547, 2.8094124540150758, 7.181876925398042, 4.124334782381566, 7.240118369632456, 2.8216087669803542, 7.5583256219412585, 8.201650593698252, 5.161651866317119, 3.5494196817975676, 2.809224133362579, 3.599914922976776, 3.0010698712465924, 4.224793949022019, 7.773448921719311, 3.252391835596836, 4.815971206990074, 3.040632580075426, 10.492931951044556, 6.777295205704674, 4.146369654169918, 3.275056218580332, 5.567746106663186, 4.441091683220551, 5.313829846363674, 5.168078973161799, 7.395291059126768, 5.410777812991453, 6.3537172802940445, 3.746111919863563, 4.547123135557156, 3.3326685507128566, 5.237641089368241, 7.208434249550665, 4.1792443459841575, 2.9036392358008056, 9.230740345214347, 4.927188223505374, 2.898634108817788, 7.115953402517446, 7.544589011103823, 5.12294446822597, 3.2900797802227526, 4.276690111793817, 3.2051233621945965, 7.536369914179445, 5.786833199636202, 6.159436866255466, 3.201686573201883, 9.459586247521276, 5.99490607291421, 5.543319896399693, 4.4805526178068, 5.873686805210926, 4.770843680629913, 3.698610974757623, 5.481380472892087, 3.3839989310465723, 4.4685940903302015, 4.258614233645417, 6.5368283661093765, 8.233920512835322, 3.443695638219972, 4.729045160486879, 8.178825382682259, 2.989992048454235, 5.265043341798066, 6.9283703891192046, 5.1722935961794585, 3.2720989179866993, 4.173259524909556, 5.108325641466989, 5.958399389323984, 7.249820654804537, 6.924982860040261, 4.796500602774172, 6.114793035836898, 3.7795942354402494, 7.822453904599114, 3.4363094221343244, 8.374921086666479, 6.733789532146304, 3.4361723774877673, 4.958823271897056, 4.4286352947881165, 2.501497748150251, 2.157392290192661, 11.171910803522392, 3.680222634835747, 16.334996779900624, 7.80633285871577, 5.396071942847059, 16.648060063033427, 5.622407791188573, 18.04107721430052, 7.722478410823025, 23.52170270283415, 19.697084299625732, 7.937385366059021, 16.195232996020618, 17.199983758687697, 3.8899655854344664, 12.882688537444782, 4.397064999454078, 35.44543147261821, 3.8059729504177082, 7.178412678057525, 18.0513780056259, 19.55421697710451, 16.16679583261899, 4.705382380859264, 8.164795988911253, 10.116307619847085, 23.210789454506955, 43.74718950789309, 32.557513252313534, 13.097254004923997, 20.366906247383447, 5.191124263365863, 28.895361749257248, 23.737155341689387, 6.113434009351137, 27.37030652621764, 36.17564520867364, 22.90819971375876, 6.749566728457261, 16.2260195453554, 5.670132824938514, 18.435456015139184, 17.559685931185413, 10.03154808228195, 4.351726962741623, 4.481581270449118, 13.56923122560667, 21.98989087592481, 19.82846290796193, 26.271917774997455, 9.49508360682217, 7.883803022039252, 6.079634016005795, 10.497451034881687, 16.23275188102773, 12.45700863057218, 9.519272232658947, 10.911105216655871, 6.552600159005227, 6.265411086204155, 13.49019612182528, 21.143385850976266, 3.760769102454099, 17.388959601059124, 24.02989660293809, 6.817224273455932, 19.252203712052548, 25.636018780790664, 19.433709463129734, 18.421217303902377, 5.941514906050034, 5.353005254634922, 6.226563231040256, 15.184556126464807, 4.193956968019113, 10.819973249401102, 24.800132561011804, 23.037356441898645, 24.923775924439994, 14.11051922986307, 5.897794240569086, 15.738074607715243, 5.2377828141945635, 6.117465897546229, 4.848031372263382, 7.515966155677436, 14.861531672957243, 14.894946950206366, 18.29888158369377, 13.234091953395886, 5.965194328858788, 11.347409876214734, 5.099238238904, 4.39876752423544, 18.358518066186132, 6.549579836303567, 4.458609821314614, 7.650548971449074, 3.2477177884215305, 7.055869764984765, 17.728201682460647, 8.831526069983815, 26.00823417849659, 4.911656206074663, 18.161758771057833, 10.981129584170725, 4.436199002604839, 14.171477689010915, 7.2220101568600406, 13.806430342282836, 4.254735330328236, 8.495917102187924, 11.565647692111309, 10.998087474058087, 15.178974590656084, 13.556257366692185, 12.354439220966972, 3.817820739668936, 26.76941236766277, 7.016187077761886, 3.5517351341999643, 15.28553978603406, 11.135892578309562, 4.30582343968923, 4.0191759342519955, 3.930498193290652, 9.814696181128012, 24.136332475246963, 12.2067423009031, 4.569485417056133, 7.341957004094373, 11.34087506997233, 5.652208097129634, 10.665538972625729, 15.342783788386997, 4.0932810608149515, 3.050424999134487, 20.275456928671385, 17.780019108875724, 10.595974784984548, 45.79437148036911, 11.91265133381164, 7.366141932424251, 10.516258396650528, 38.04680398925114, 44.860049667984185, 29.34187448480447, 29.296098606972848, 3.692359111302206, 5.663383971539455, 6.639189567160966, 12.413488948394274, 24.212043527254565, 18.011388368379304, 9.443281351765833, 20.172346942946977, 6.832004283324199, 5.668441291363832, 10.686382747418925, 9.098287500772665, 10.936553399937736, 10.157031301906999, 17.16462185426078, 8.826940884933192, 5.185505205504877, 8.968791170467881, 3.7213528899667305, 8.250176485113933, 8.06411029536279, 2.7797973671334604, 13.596137128277748, 12.9002050583479, 15.46772518314279, 17.62300223872737, 50.12962956955559, 28.206480207893424, 47.01839346751816, 6.896168516156648, 20.090265805545005, 28.731120015357877, 18.60210697262133, 3.1976858184223, 7.275068257790257, 7.90062599878026, 7.236151742888642, 14.7174966961537, 4.497980698251525, 12.091001981687066, 8.799208347028374, 6.258898796903356, 3.345814486209769, 15.270785462747485, 3.861322947657002, 6.340792357862956, 11.321717691368491, 4.459732784400859, 5.14599748995019, 3.335254222335119, 14.899366085763601, 13.908544184984596, 9.211408244734825, 9.261010518980902, 10.789138732630786, 12.388162956422102, 3.80397712172353, 3.7342021916586257, 6.38316023696426, 4.1855908312248005, 3.0660080104448775, 4.836809418098778, 4.420917583018515, 6.806322981378681, 4.1557958522041005, 3.910604078436807, 7.941608620091319, 6.114780851982991, 6.502217807368365, 5.351477763554971, 7.26296564436196, 5.258635069713655, 11.783023633146154, 8.466404554507132, 2.8730175863795573, 5.410291121360252, 3.4991399440235176, 12.599369770596917, 3.314281867595741, 3.1119162062447163, 3.027299896695229, 5.32048287517386, 11.520840665247137, 8.106239701945572, 7.399033817168926, 8.281623933363493, 4.720470605899092, 3.377839618004121, 4.717983055742117, 9.905643055643925, 3.0813169017399527, 7.971584103678801, 7.271320488511194, 6.427362625104089, 6.146714929253331, 5.094043470350057, 4.466370418310522, 9.115723629457337, 5.5113759973548575, 9.799673706667402, 4.45500738581079, 3.874093662217571, 7.5484844903236334, 16.513325350864427, 4.883325152017041, 3.584146055885841, 4.241334428739586, 2.7818816660754866, 2.8499020871457916, 3.2044630856062306, 5.220139008738785, 5.215609732381977, 4.832920738789231, 6.9954948175082, 10.600901755298045, 3.7457815313028813, 4.920480179538535, 5.412599906277899, 3.161957787064757, 2.415344612868408, 5.232164642153753, 8.976165621911225, 2.7185230109217104, 5.424509749924741, 5.636571664719517, 2.9842453300253644, 2.2191245828087496, 2.957783280858908, 2.5093860524719087, 5.056797613406541, 2.9469619719492606, 4.24955488739001, 3.8747089360801366, 3.9770401411853045, 4.097810921933752, 6.828076992657515, 9.051495366154413, 2.628737563366795, 4.196992965928023, 3.881383252730155, 2.712545780546317, 3.5361097027991484, 7.860922362510028, 5.072211101966905, 5.680031079351835, 3.4640527216692325, 4.333769289246009, 3.4070696307602666, 7.499167118213738, 8.591277938073604, 8.849960431019158, 3.094591031101159, 4.6287464855030445, 2.3998591809470127, 5.090276639198388, 4.819827576060178, 2.8791650526503303, 2.860748454519842, 5.521694575871482, 4.177472495675231, 3.206507398797636, 5.67486520653156, 3.2629428445934483, 6.2451067740089625, 5.15771219163873, 7.697492035190939, 9.45435606326878, 3.507851215467021, 3.0716219941020295, 4.213076325403498, 8.777507814921277, 4.014815221535009, 7.019487326087645, 2.7128750449678036, 5.07717072184726, 8.150440540367658, 12.855657635910616, 2.5062010121478178, 3.9143553249496597, 2.8461249494510215, 5.743429674419148, 2.8954671041331634, 5.178066689712053, 4.709746213146028, 6.573653144484559, 7.663270205511852, 9.173807638981199, 25.079317895417002, 7.787751131787531, 9.169584392686408, 5.307472639882481, 13.187248435381282, 5.353930528498123, 10.429866788167791, 8.189950157458844, 8.494935414376107, 13.395668659172772, 2.6839085374750704, 6.059091238100466, 4.437562849922472, 10.62719047731787, 7.563956650154441, 3.292600382526463, 3.2028313829677666, 2.9044303324688605, 2.7700541841161685, 11.291700111268154, 4.991587890656644, 10.63284272272838, 10.617242716458179, 6.634119525095249, 2.958082893462232, 41.59233112665932, 26.50119490215136, 11.394776284962584, 14.799028347184494, 20.437531992692225, 23.423364680446443, 36.221023530554426, 38.15625995754351, 24.745064665980358, 23.505735410081996, 7.482969488867159, 3.1083126318878387, 3.0320645838085136, 3.8065298662469815, 2.9327961707725274, 3.6851738432534025, 8.072516305182269, 3.040389140039804, 2.8541452738173483, 3.0462817070377297, 9.782365897378213, 3.614618457410399, 3.0346475529611205, 3.480298789367444, 3.241640017850123, 6.767946704619839, 7.16043743785758, 5.924297571283075, 2.657364574071112, 9.695363044443075, 11.053290444512903, 4.868196114546147, 6.55292908965069, 2.85984253702434, 6.354928559689431, 3.694729721510092, 3.104741856812996, 3.767687280838382, 8.461761245416328, 6.269857052868623, 5.951245652904742, 3.0849268626759394, 7.270459097101635, 7.519732155452355, 7.170827843911382, 3.7503239314239014, 6.547986449005954, 3.4686039548814662, 5.1971357815684405, 4.127024918859487, 4.920726704521732, 2.642216876539322, 7.461343224978061, 3.0786055383337008, 6.068407103756376, 3.707638748336413, 4.494295597850368, 9.290374624845885, 6.913670999692852, 6.448452966127664, 3.8168314165366435, 8.822938333858373, 2.888082714889426, 2.1769634268656133, 5.885883108141561, 6.136780367074579, 2.7433089769686574, 4.668317345851619, 5.957675573275779, 3.8495677876608743, 6.2654942991785125, 2.756807905720775, 2.9593829978768555, 5.120084926532027, 3.9465031389501632, 8.317263633547023, 9.913821268404455, 3.503102213338166, 8.386812940213105, 9.423811647633675, 8.966992251301837, 3.0902885213347524, 4.545040325695874, 9.470877335574418, 8.342747082571798, 7.047168693592473, 3.46773662264178, 4.06787249817395, 12.497268233022858, 2.785302542517556, 7.100708148054337, 2.845162826228402, 2.5367617249693035, 14.686052289775851, 5.015406695807419, 4.913914681485458, 4.88573151683527, 3.950250138078035, 6.941968336857898, 5.18601055234225, 3.3403620910109435, 4.604427148676781, 2.8936775587518713, 3.047852243999217, 6.368881269349315, 4.049937255249614, 6.673185565289028, 6.102471511393934, 5.322448220030913, 4.90162477113284, 5.664565300211634, 3.9719061051061195, 2.784830236827609, 9.103723036753541, 4.349255026041167, 2.8662311931383497, 4.379442614029758, 2.3853863674826696, 9.714171649266984, 2.9844119126198914, 6.0309272984656275, 2.460988958138028, 11.605910936956391, 5.276667544957002, 4.3324512029310345, 2.8821842442018486, 4.4373721892075535, 5.040670580105301, 4.300234080387842, 4.380597096872693, 3.9030131553485696, 2.4883801803530834, 2.662778693365279, 4.208658653179626, 2.698147492067633, 5.090141455086369, 2.658163156715785, 2.717990647682599, 2.3636713707054695, 5.259928532209745, 2.842227290152289, 3.8183609007944144, 2.5426200707838227, 4.737449449413266, 3.4905150133361555, 3.1968638895058374, 2.9858837454219547, 4.276700044097683, 4.365059818776351, 4.069081267610679, 5.957784378412948, 3.8255622438819867, 2.4329968911847324, 2.8618838223219827, 3.2421756941082864, 9.271488617627826, 3.128074150860252, 8.305123079033889, 8.57930445349246, 6.757522893815077, 3.371955009070694, 3.3304758232716116, 3.7269651653743363, 3.827221853874106, 2.6930626890297105, 4.050917101911849, 4.065156897828169, 2.949408390594758, 5.593922179573607, 3.627086172544695, 3.318157790680541, 4.062831156918544, 6.040661679692259, 3.161047573356189, 4.4893817255180295, 3.65795679011635, 2.5956494242122985, 4.453191361999065, 4.483936223858133, 5.046724429053458, 2.4402211041095407, 13.29932804423587, 37.34465809878423, 27.64683728463548, 32.603004012907235, 28.174041643069174, 8.981051438004867, 6.534041921154826, 21.008924345313552, 12.59399906229464, 6.789927329944657, 4.444360488753082, 4.213421624031016, 2.699462811591279, 4.157897648518732, 2.6588543896704806, 4.865620650971042, 3.8610083269262345, 5.201737061683349, 3.8950475673986658, 2.7458272778456485, 3.2841390416345044, 3.6065915758424727, 5.295518995440672, 3.375747671606223, 6.295262839099406, 8.334127538326134, 3.815430190532373, 3.583995081142031, 5.487577806591884, 2.535207963165646, 3.9475263806093546, 3.9428821203642417, 2.3944249285370427, 4.310667188435277, 4.9180294687347255, 2.999361812813114, 2.889236688533456, 2.6185419607495004, 4.059208899745121, 2.9614486594686595, 4.102540985400887, 4.715430097607793, 4.430601338262962, 3.5503813014409302, 2.1697317917719574, 3.8673008605054218, 4.112110968764455, 3.836033696068674, 5.549040271799132, 4.056130671182009, 6.696307473533138, 2.5666918921144877, 3.2634083839694186, 2.906278418453312, 2.409765207308194, 2.9711240396538035, 4.853168611039198, 7.033848159200166, 11.26420103069044, 16.666675932435307, 8.398600540411595, 9.569102344069021, 15.919571225696679, 6.770012723880018, 11.290238617585665, 6.401243535626609, 5.679063574000828, 2.945277783270857, 2.675918008364857, 4.14333695284444, 2.8600725859999208, 5.256388154108944, 2.854932808236735, 9.608319841764816, 3.9701491764635635, 4.887082678491401, 6.497383760210483, 8.100051292188594, 7.030709690726867, 4.1355358602127, 2.37923366518058, 3.476201908983881, 8.456601480129905, 63.87488008453328, 48.75599997806784, 19.71921581751924, 77.97476827921713, 18.054576005896145, 16.951470109041022, 14.781836816059524, 61.72313464985924, 58.23645613645614, 53.70457950843655, 2.4889408629187852, 4.142405404545309, 3.0987977069669754, 3.1888532227885644, 2.949012854230907, 5.257170652629633, 3.876844698889524, 12.899923834833071, 2.1678948814415886, 3.3843853543202687, 3.1024243404048097, 5.133177641696259, 5.747602756133614, 6.671820069618222, 3.3130925980493102, 6.605902974446002, 7.360508119957885, 5.802027903445363, 2.5588637288190843, 3.5116097014179015, 4.888768182824835, 3.418763690153212, 3.709933033504296, 5.786101993679744, 4.3056470167975025, 4.528894191784035, 3.5509099569523284, 5.616815057567791, 4.334565093809392, 3.970246434315084, 4.598152307755948, 3.4239666471027914, 3.0700770622456117, 5.916114190978405, 2.6885917372648054, 3.4816230700742135, 5.604404830613924, 6.013511924878114, 2.2891155841832123, 9.067029293903904, 3.233969109558481, 2.476605525741872, 2.4567358086721853, 3.258643774364527, 3.277539568014481, 3.372942377440272, 4.15734259769067, 5.308462114671033, 2.1976460932988306, 9.539056853677925, 4.44120630297613, 3.300726416401836, 9.567997853467189, 3.194322056443367, 6.594334477413836, 3.4123313422953796, 4.973469245525733, 4.90935416651097, 5.911619883305793, 4.085826193171404, 3.7399559856214193, 4.611146944015213, 4.144787449988404, 5.4876277029237, 3.0167992760011395, 3.4691641195703795, 5.092142430303837, 3.6001234035948135, 3.1095066309186077, 6.069687540009715, 3.9808375169339034, 6.774945872101097, 5.327749185643013, 3.9376821570540748, 5.078211389568086, 5.439877529369433, 4.437651137547948, 9.44235938492323, 3.5375621754777558, 2.0794319751894714, 4.215749720477624, 3.498557271263407, 3.4291805852064137, 5.265156937057119, 2.4248012911453998, 4.761566533219707, 6.886535714910485, 4.241105624378688, 3.715872976076887, 4.567262251777967, 5.177963146690905, 6.126603366238409, 5.410092808539078, 3.7169534018616095, 4.778945671869483, 7.23174824076874, 4.4022868906320936, 3.8199982475651026, 3.4348680252891293, 4.8402176643761, 3.8139333282774768, 2.901840163417512, 6.173111406179758, 3.548310052437605, 6.9279648767355395, 2.7416341687881496, 4.484996212518753, 3.2631006649433254, 7.470514991015937, 4.524746306904417, 4.537395539690431, 6.717168091593624, 7.164512974784347, 3.52247353772517, 3.747295596765178, 6.736796656053033, 8.458615931668016, 4.464732468963061, 8.992448502375238, 10.408802581142893, 3.6513532348644797, 4.613605448345374, 5.402593439765984, 3.2274682125902268, 8.293299138286446, 9.895368852351712, 11.532391929849675, 13.528148182041361, 2.7525438676063945, 2.390588866214815, 5.093851182765457, 3.92164903239105, 5.834447034885047, 3.444047367198486, 3.7605903435402066, 2.3180042638351748, 3.7362646682849006, 13.017315298044458, 16.72351279206847, 39.15191127447514, 17.88032530704574, 30.537404982617367, 56.967324310112545, 28.233809821012766, 27.55768218581899, 17.208821282647754, 26.869024815361517, 15.493701889371419, 5.851063722646831, 2.5399499710691584, 4.271241109766647, 6.138974723831527, 5.339432501519007, 8.304017372988962, 5.259290752028562, 5.166196308580925, 5.705618659399, 3.7400278902551207, 3.5859960417295964, 5.7453005723676736, 7.973036199852526, 2.794556285466611, 6.839378852926041, 4.679949501473042, 6.5689673400990864, 3.6295839171176305, 6.566364339454488, 4.6960151528181715, 8.203082930451032, 8.637504608927351, 3.7672776152665737, 2.877774457755699, 3.0909695180264873, 3.015667540081465, 3.816632584069327, 4.117855205080889, 4.7127599303134895, 14.143474374093424, 12.955732318873727, 3.522602435988217, 6.13528514721885, 7.446678291835774, 3.298631872631514, 10.37420257335587, 14.628274988314311, 3.437365542494333, 2.8700128425703393, 4.060493349888016, 5.871112598718659, 3.6372644472380484, 6.8683784745095675, 7.6140219631349035, 7.418746391638471, 6.383973152147881, 3.444601922837585, 3.1757386941394388, 7.142588277298745, 5.170338047767852, 4.602523455435361, 8.452383644562806, 3.133923480546739, 2.6344497158552156, 4.755096029556115, 3.319604100464866, 3.7872838787292284, 7.940272309789241, 8.587156125528553, 4.976510445486622, 10.716835824220327, 15.37385496061064, 13.430988096234982, 6.1604983547040195, 15.719589044866664, 16.394247011962605, 13.520115065779457, 15.528440918205954, 18.27225039365284, 4.722021876816871, 7.228620885345473, 3.0635924355867648, 3.49452909615676, 5.53344095293638, 8.309151011462234, 3.91179103624421, 4.1974385510998005, 39.47926469584159, 3.7136351210327, 6.116704084908092, 5.979420131473642, 3.174413999146392, 3.6443016514273094, 3.1866595809570284, 7.0204873276665145, 4.13535154008957, 24.33712895358495, 70.17993022573648, 42.326762414775715, 24.436723438261026, 50.24303353259187, 19.944704613003886, 27.64815514413865, 15.761388236475671, 12.299483645293206, 54.41964633461954, 22.991321310592856, 4.585285428156334, 3.99714975710241, 2.694168440635946, 10.066932074498498, 4.710336849476866, 4.294152459844717, 4.940485563684814, 7.276778970719025, 10.555559603246175, 5.777791157271204, 2.85199615655822, 3.176989077694886, 5.502808047096259, 8.89009196971461, 4.035585960744358, 3.857774359071225, 10.081535719708208, 10.411184585867014, 8.501606414413311, 3.8021543010787497, 3.9754196242216224, 2.899674390026802, 4.074545984753418, 8.885759055338305, 11.994358198703033, 2.997699924738359, 6.34988329740601, 5.380731035167708, 11.860633759311863, 2.8711443568969472, 5.495123713994561, 12.339841280630804, 7.4378377629669945, 8.324686085576316, 12.58537149911884, 3.277230710430793, 7.150760000785917, 3.937807897040407, 8.17724088340811, 8.691292268523565, 3.43838787136537, 3.680379120528333, 6.128691246050855, 7.638169175027553, 9.574890941901852, 7.154160924297002, 6.370934919855259, 9.164213740409915, 7.341596202516094, 8.076304965307655, 4.115762553689939, 8.046136449966385, 4.433108207043586, 7.630613064570262, 7.9544392383783675, 6.128173877229342, 9.888287643221181, 3.8679509948896555, 4.70842131775256, 6.416087440333007, 4.598439958114676, 3.0397534693176365, 3.770413051225467, 4.339199664774192, 4.981727539871889, 6.7517394614713755, 3.2167830531251034, 11.683589820914612, 3.878659213665751, 5.445495269058434, 7.825271307639148, 6.787395170796158, 3.617592875799451, 3.2560245931003147, 2.7525389318020994, 9.510184164317184, 3.510008480208017, 5.460393778993783, 2.486864729246996, 7.439184668326172, 3.331626136414645, 5.165156418004987, 2.902042249099742, 6.612759070294905, 4.092139251333416, 3.1710578003611496, 6.719229974496008, 4.295851635435085, 7.004282924799979, 9.404506342178879, 4.1021316475458605, 8.708232978438012, 3.7925654247123006, 3.4301956127521476, 2.943565983697562, 5.308043810295118, 4.756524575453493, 9.562773229424318, 13.253709657883954, 3.7168568234259474, 9.462122435722808, 12.901938659680749, 5.2685397636147515, 7.686222953904833, 2.572840501979668, 8.135657741994011, 4.696997122489686, 5.277335579033973, 4.689135829612708, 3.0829003349070363, 3.395576004091011, 7.305029936366286, 3.7566688746958414, 7.236274455839128, 6.784973849763848, 9.261193953379992, 4.263824092082922, 10.675627336402233, 5.490864292955705, 4.25413885803438, 3.3638007588795658, 6.066108256773258, 3.7919698748156327, 8.17188108255711, 3.6776693435402725, 8.860813260087422, 6.492924452130993, 3.0728770638561422, 2.586674096386952, 3.017643929939304, 6.0121988722725686, 9.041429554156833, 3.9253624864561347, 6.992154467624095, 3.595909838191088, 3.389962665284676, 7.086627698607579, 8.54441473499749, 3.2396372696043287, 13.480878172086753, 9.755154653477101, 8.228237984689565, 4.765226714658557, 5.8713109535373444, 4.842528985693426, 6.846213902114844, 7.994081350279718, 4.684321684404069, 6.557432014199678, 6.92383433012076, 6.21455854632294, 5.87280370180296, 5.729336510494817, 6.067315613825997, 9.761342068202502, 4.775670237577854, 10.709925513515746, 6.481099579038816, 4.188707608036026, 2.888424167092322, 5.46020910466811, 2.8070139343960956, 5.564097847719191, 6.2767361182562444, 4.297911836252055, 5.099858306221283, 4.513011649586568, 5.943024907023007, 6.807793605940961, 3.4763911900041675, 8.84885041254213, 5.958524723553822, 3.9185457855892314, 3.3792857883026857, 5.835183505037137, 4.294209448256296, 3.510020295288956, 2.4012270238499704, 6.470646644085511, 2.6906316444682408, 6.561939565372818, 4.854137238601107, 2.631634507053355, 4.748984254944185, 9.275242059372976, 7.63928450976011, 9.103127350434342, 4.298253218288266, 6.29539548025194, 3.413698812014894, 5.691865687341773, 2.748973429414671, 8.471320978101124, 3.713625019626191, 10.00039677375324, 6.804743387768813, 7.437590494054536, 7.176059023153307, 4.632618891402548, 4.06024221670686, 10.061099164217703, 8.36644310073063, 7.367114798037523, 3.313870855296004, 11.499519185956574, 4.8102173104106205, 5.3525460952070185, 6.807381276958211, 4.5048538086037935, 5.376926548991964, 4.27643858635205, 2.759521123034401, 4.044812910399368, 3.6133208496175273, 2.7017448513757523, 6.131027296748424, 3.017147547024786, 7.8483816297824, 3.39180189995763, 3.3864550586146795, 3.0822346834641987, 3.8326130813769934, 6.6980532066369465, 4.205669906108417, 2.623868557897379, 3.7422735447606943, 5.3039894015007185, 7.029801848311604, 9.561907069810454, 9.762884239418552, 5.143134170382837, 6.0628780700212594, 3.2211367852840005, 7.063591910664993, 2.679636873933776, 8.607458992164366, 10.94819599584331, 7.585320368737556, 5.460521183416201, 4.928957055798849, 5.395525623995153, 2.6171461677237096, 8.493520865860129, 3.0374881790975605, 3.2914225861250097, 3.4669223373325173, 4.864678344030025, 6.42719944763316, 6.499757508111121, 4.079993172139978, 4.171428980897542, 6.811847715927343, 4.58480139562228, 11.539212330118211, 3.988578107492886, 6.62617522578663, 5.958310152604601, 3.7006786008387933, 5.766660697095033, 3.744324309971073, 8.386212006211405, 7.504923075475642, 3.52967362799353, 2.507726120031857, 4.148894390534455, 12.825917024357501, 3.5008801482377065, 7.465995489098657, 2.626707585194708, 4.037250378117438, 3.434674164631888, 9.63308497464796, 6.671572316905903, 8.09923047506144, 3.7021223049402727, 13.44559004963195, 2.7670355034623197, 8.023361263564226, 3.63563532969802, 4.165951014424319, 2.939015264418648, 3.2956077798159304, 5.404148637379485, 3.7067794606461155, 3.583054645431554, 4.335200821163282, 8.869716570562137, 5.9818255138817165, 13.510958411517642, 3.3214320843570837, 3.1917536959881034, 7.548008893390401, 4.3571122537239, 12.344523546775505, 2.876765833200564, 5.036283375517526, 3.0232805985478093, 8.973506069033151, 13.671531537049038, 7.8810607835449, 4.717887441550692, 6.874196944304436, 7.787574013507859, 2.92292162976024, 5.956415645198924, 5.8721418758978645, 7.497215888929964, 7.228438994722271, 9.22411480761807, 3.4138111211464537, 8.309639241028849, 9.702620304184755, 5.785649821299991, 5.649388555079299, 3.006887301273084, 7.224810015715462, 9.79982325871372, 14.60123412760159, 4.831593794108789, 10.233941831935889, 7.61123561166884, 8.798353369038681, 3.644939838525533, 7.000430694136691, 4.391191417409997, 3.1343393703560865, 2.7720536872445156, 4.159493204175042, 9.448076871150176, 7.058700143730416, 3.0068290175720245, 6.72662964320313, 9.658486280527608, 8.41497220246419, 3.2464453387847785, 3.3873891650737975, 4.992496912607339, 5.071477479419729, 8.365047598489864, 8.049557193191774, 3.255594331065661, 10.169677177471492, 3.9383960853738547, 14.179661999098816, 2.975901674511686, 4.2446250228752564, 3.2437020064234336, 4.032203711054131, 2.6933475499822475, 5.633266306692393, 6.223423448013057, 9.90719214466464, 13.624581390454628, 4.615548640543631, 9.949527696691133, 8.435081195807982, 4.880115311300203, 7.417064612185395, 6.234257620769599, 12.518780098844037, 3.8278482422448667, 5.325629973242827, 10.601817828990557, 13.706475775461, 13.479935937582345, 3.861763154330168, 4.914316107890903, 10.935041018903501, 3.7567033190541883, 8.650201553619105, 5.33915559233668, 4.4444393279406285, 6.704421327130398, 7.191628195723204, 9.64071339036405, 4.371786395710307, 8.730458772222699, 4.299420830651938, 14.518590792846235, 12.022417952029247, 6.358671925327406, 10.928249785265566, 5.1475782487941, 14.234848220494605, 5.843083411565897, 6.086201161898005, 7.301558212089155, 18.60225538828541, 10.00312615260786, 4.908250068956941, 6.629373052028512, 10.107929569867094, 3.7976266729754085, 4.001503211967791, 9.439253475537292, 12.475022848197023, 9.375039138278696, 3.1029628884270446, 7.915367385444096, 14.617045132603637, 10.912227921409851, 9.619355547893992, 7.233993325239354, 10.123978321017457, 3.190706017534427, 12.52398566962512, 7.725290169124727, 5.103656776681417, 3.739400941348626, 8.232184032728115, 8.485910005543753, 4.879889072109381, 6.878799934688217, 7.681689017880899, 6.402529938242835, 2.8611788888228378, 4.4491303199298295, 3.573993842034278, 9.806932289410451, 6.305346235240652, 7.252923676975741, 17.449800857372583, 2.2127741998207937, 9.683346380542641, 7.0074642601057295, 3.6544987269437508, 10.28984488736829, 8.096789747550424, 8.758195738253917, 6.698807071144672, 4.846517227237776, 6.463061127040442, 5.795717716048098, 6.000079439102163, 8.584863006494018, 2.8651384868137484, 3.533423149125374, 5.7031172604414495, 10.239839682228176, 3.1282371406853398, 7.58136013085077, 7.0464941268175885, 3.009913513370861, 7.361030838096751, 2.6345788640559253, 10.9364719796619, 19.838973650927947, 5.9723415159312445, 6.738292567289952, 2.535487815541627, 14.5663773129035, 2.4479106223678264, 7.5297536278339425, 4.308659621454708, 3.491772372384196, 6.807232976560645, 7.992122069107788, 11.45276010969335, 8.838700050520167, 11.09173387223587, 4.625574089967695, 5.040534815088896, 2.7881456667994478, 5.042552531611675, 8.078338823562536, 3.3688783450420727, 13.721647647144334, 11.417588122574092, 6.617145355479972, 4.225866405563114, 3.9098668921810216, 8.495310236795792, 4.059379370275384, 9.356161413349282, 2.742837551339543, 9.165850558928847, 3.0643482898431937, 2.571855847670346, 3.6931786405094127, 12.29486534427348, 7.798794078321253, 7.022521186758775, 6.033248890542843, 11.001906801019391, 6.257854718660285, 6.5935024031281175, 6.53377426547866, 3.1847103839474995, 3.5911761348238453, 4.281376585521999, 8.358037935834673, 3.0994962367168233, 5.307003402665644, 3.7972898105948247, 3.208597058551648, 2.748999976690995, 3.872467071044856, 4.222313164154216, 2.803406603800088, 3.6611828183458517, 15.554431891508976, 4.251565271951998, 2.7570991071411215, 13.299931395318904, 4.649925550002788, 5.33952255890659, 10.8238286462378, 5.496523306433255, 7.109968186416155, 11.48665309301428, 11.86299453274108, 3.715330254796501, 2.9561317264708715, 7.040576956303553, 11.04268365531808, 13.047882769435292, 4.718721666486776, 4.523451191177117, 6.758327297552147, 3.5987885317107016, 6.481878654754695, 11.68530107666876, 20.050696342863784, 6.011666090299486, 3.862833539828914, 6.856706093344461, 5.022656450437554, 4.350049520296562, 16.450171401126777, 3.193732282465056, 7.959740579211088, 3.962223934337184, 8.176926283556307, 6.046950845469827, 7.302258962724152, 5.606859960508049, 8.028272061089744, 4.019221074037741, 2.887230745534951, 9.361772990350904, 5.521647826841663, 5.112212219679122, 3.6030751005180597, 7.012537597029874, 5.150484795795407, 4.692590496366855, 6.205374802853205, 8.555511219467745, 5.798530354413308, 7.844505220790256, 8.369619340349036, 6.404549392391064, 10.342274666387326, 8.458187640084605, 7.531213616712376, 9.456487015017004, 2.576966741801996, 6.785941180635246, 7.7964172426482525, 14.520829176003888, 5.913970325938125, 12.939148515939168, 3.9794989232675637, 8.524667516278793, 6.963782108773976, 5.058395182362501, 19.32070501353637, 10.782014487989093, 37.39173496044185, 18.954521007107285, 21.70055163501595, 41.61118312682277, 4.176721946253334, 57.004408911906, 27.810164680741433, 7.069027907529077, 30.996939933823363, 6.623022916032682, 38.49269193375815, 15.467681757930746, 3.816706583528362, 25.40440312882041, 13.422851896894548, 20.686682337619366, 25.22744245001822, 4.031770661989313, 24.739614017718914, 26.103297767454062, 30.61943440629715, 9.72552377174975, 49.69117853645554, 27.459315791871287, 5.972441639116501, 6.3917638287123015, 10.488657179725328, 17.55734534629066, 22.329976007540797, 5.513060876813221, 20.40566153495469, 9.213425228025521, 8.276927273119249, 21.67673158691802, 24.84977082217395, 5.819829327731902, 17.021519821645686, 5.8395925617577245, 7.407017315708912, 6.312040485285249, 3.493751279347547, 13.218879857117289, 3.563573293790164, 10.4384610862662, 4.972963936456483, 9.418079466537087, 14.113603291307351, 3.8369515601262716, 14.234294521789124, 3.324628137234342, 3.6179567487437136, 7.475090853917677, 14.687958933402147, 5.935667643654105, 8.272284204663436, 5.30701039308291, 4.772549550438095, 5.33160830042001, 3.2882646238363527, 4.994550444041321, 5.140307921075547, 6.986977550764331, 12.84961008679499, 12.860309731258798, 4.606048076408732, 6.142642018651879, 3.5691463978462554, 2.6029876481563625, 4.319591266036898, 11.164326468482527, 5.50009759610245, 20.439758182665788, 19.81580554026208, 20.830879517508784, 17.597894335364337, 23.635830888376947, 14.963910380974982, 13.764649493228001, 14.103044871082465, 25.384531809999746, 22.702600395992025, 15.1244280847026, 11.509321588804717, 7.095838910829242, 6.070567887859475, 21.213184170823617, 7.196475964902377, 11.734061183497559, 31.001598264523484, 7.35491820147088, 18.679695831362636, 8.020782800943117, 5.0172556292550095, 5.890569328153666, 6.990279908721193, 27.04687900324904, 3.901833541733863, 10.652416178841753, 7.7509657631061195, 13.059334700316974, 4.5978232641501515, 13.461198169509409, 18.96231587762318, 19.29626713218744, 6.814156232169481, 20.675104334976886, 31.153498974060984, 10.044028905656496, 6.39124852787015, 24.788684158690696, 23.903364231868967, 4.032124267922493, 6.292061903775382, 14.64873896518733, 6.301652591849486, 18.759818589228626, 2.9939204669575905, 16.129811024457506, 14.889512198864368, 30.25550280059388, 5.616971500048872, 20.714255507170765, 4.221818194583041, 5.776577644938003, 17.188639084646727, 13.06633785464389, 4.001054993046454, 5.568739091966023, 11.503885368324333, 12.630065651809806, 4.228644003238663, 6.844866179902467, 73.59584347870091, 10.139976778921715, 10.119024592429339, 6.230476861566647, 6.211797600136261, 10.802512471996927, 12.792792156346538, 7.5932036372636595, 13.20951030275071, 8.81431823664116, 5.434841806119742, 5.109837071032971, 23.615339422901766, 4.677906949568996, 27.082077316113192, 16.289672528853565, 10.706996586036103, 26.145163224588046, 10.298352189233283, 5.022053580929558, 8.190340210244122, 12.97713682933142, 7.814012306783551, 20.221531483786222, 10.172454984171605, 12.155845809241969, 6.127980737369955, 10.65613371126597, 10.976816076094183, 4.556120999379441, 4.255930627754653, 15.249775696053861, 4.206018046306232, 8.14991104483023, 8.255622285053644, 5.087382442888386, 9.928365337377913, 10.082339083198155, 11.684871173190777, 11.188987905980454, 17.892929178773603, 4.607161873068519, 18.071201064998863, 12.440765474786652, 12.614697510451732, 4.110764163943617, 4.099595101619883, 4.560591947919579, 4.8771593429117965, 7.360812332460226, 9.54612001832786, 11.436068444286432, 9.830426142985761, 14.199902903681412, 5.031698454848095, 6.733725126908172, 16.19408757153223, 12.906857460759516, 4.431055055724267, 5.140582287939175, 7.293942282994511, 3.85422070332508, 9.173629187690475, 9.232133590831214, 10.81613225550061, 7.386658017724312, 22.405806275611443, 5.2267475632001394, 4.803235208940021, 7.978351818555999, 4.560240069050599, 8.64816481731848, 5.36181378881733, 2.80839442605523, 6.791632827227037, 6.935305169404362, 49.2164399203089, 25.75447960929539, 3.048705186132802, 3.094305821550214, 3.1642417696361456, 6.5670978685603405, 4.160034354560455, 4.812404700750982, 6.707162520870553, 3.0627346127053725, 4.731279864233028, 3.225987742024573, 2.5446006306540228, 6.9116390678248685, 8.043882142958516, 4.133891663589696, 4.440532348601292, 5.062586623430949, 8.107123806275427, 3.484610606868059, 3.8080164735318833, 2.6564177930945374, 4.613949172604488, 2.966455820086784, 2.7395440045050328, 4.684395892692017, 4.320126407285925, 5.0422148524390895, 6.524676598674857, 6.155381278482469, 3.82956242245189, 2.5683686095822416, 5.8641175219082555, 5.593635199065661, 2.741843601600643, 5.344592095568776, 4.311130245982153, 6.144132557220451, 6.515511440700447, 5.0203313380904255, 5.328744419364172, 6.065308642070985, 5.163666239433011, 8.23200155475766, 5.130509716751592, 7.200164032415042, 7.169726012744822, 4.014533087557549, 3.8425484259089013, 5.674572969087065, 4.150414428332696, 3.2204473065606334, 8.358580672669833, 7.472449230475491, 5.125377985367855, 7.731548895440733, 6.3761463214309835, 11.745294306413504, 7.48940735878306, 13.022480416298428, 4.702688387952312, 3.6274664741477944, 16.262510930092258, 5.49507894725715, 7.27445232449155, 8.037678291294766, 4.085532846321302, 9.715079898734855, 2.8733491699617493, 6.055840212106441, 10.54628428022878, 8.41387955542496, 8.43531815242625, 4.692700841724441, 6.531502549786963, 3.201554077838796, 4.059524591188559, 8.71909025571247, 13.312453140281477, 4.739417106009113, 11.729624786851781, 45.343855465587055, 43.994860227894726, 3.8815869587369494, 11.22402379102238, 5.910259377602043, 7.043291702819769, 4.119694869331715, 12.985918637273949, 15.285008170104366, 9.16016590561373, 2.8681854200448145, 6.846775609545578, 7.471394445123875, 9.385319319192398, 5.301006377271233, 4.960779632873689, 13.333248088780456, 5.014165069010421, 2.7210787123995215, 4.213371258575413, 3.8189286663973405, 7.855259885773182, 2.5821508430770006, 9.15347725762662, 5.03897356526893, 2.275896132196167, 6.4325991452168045, 4.378659582479173, 3.843159220273751, 9.689166076917667, 5.316702715783656, 7.472322507770236, 3.4245370453460784, 3.1988221103136296, 4.66379018360747, 3.7537089579034904, 4.56766394184803, 3.432104558613251, 4.025110299485624, 4.788345101925101, 8.880376023754215, 4.927716181451391, 6.507222817360416, 2.139714197302733, 7.813219371216441, 2.5668378348091814, 4.656262156760142, 2.6724774590178564, 7.885066630495284, 8.224728931238445, 11.739875266670404, 10.138340598367575, 6.292229092312594, 21.95266640085776, 4.022104403942416, 5.013193937506167, 3.4624205414025195, 8.645116846428397, 3.7449012672647357, 4.110815319031213, 5.278910952822677, 3.2767411514547695, 3.40959238934158, 5.255016830586873, 3.0481204694665296, 8.15269066417048, 2.6985920594672996, 3.458177186207806, 5.402221174653362, 4.626008783272666, 6.953558230957264, 3.5368870727619646, 6.53868164452711, 3.62815147869424, 3.3706279097651577, 6.179725940274092, 6.181284714289703, 13.233038180846114, 8.463116113487175, 9.39418786773812, 3.5871669290562513, 4.010164887540538, 4.8645747973869184, 4.655278554790716, 7.522572559649573, 8.85854393076447, 8.005718863993586, 4.38218974130139, 3.1780837219180267, 11.801210632731678, 14.81738009755571, 3.1251579316473923, 4.520398803580419, 12.218323161270607, 3.7660243195467014, 2.8490457270566445, 3.951357435605475, 9.911752169411654, 3.804248758759222, 3.3602199528134675, 8.349958771224252, 3.5991500024726544, 10.360325349428557, 4.868160338925767, 7.316784328548145, 2.601828852700717, 2.8090907987228917, 8.878209778810294, 15.941817581883324, 15.541886926010381, 5.462584152143873, 5.414714418385758, 6.7942859665826285, 9.406309846303229, 5.295357375223564, 16.709059912627318, 7.495635445021069, 5.541457102838204, 10.13563764917502, 7.5250424951152945, 7.782161574101973, 14.204583793141078, 4.205377762268934, 9.574019318287602, 7.240873464601098, 6.671483105927555, 5.044729557603468, 7.105353183254372, 10.401968516974403, 5.753620383231261, 9.000976136560974, 3.8064370217771657, 12.927124365164383, 2.8871912124904853, 10.829333073582598, 6.833336047816312, 4.851995617089144, 5.645024191825412, 5.307081670405943, 11.091322979791407, 6.043119055607465, 3.1134582636826913, 7.056234643812602, 3.5677705719543464, 6.55249122036515, 10.200118291099644, 14.217270231721717, 3.6563151090012984, 8.608509210460511, 7.654773118593198, 3.4521726863383706, 3.0279810355670893, 5.8140319377059795, 4.356271275447044, 4.437781614332195, 4.991454845932433, 3.017279124547675, 3.6851219342930035, 3.3229487689717527, 10.972515844322889, 8.694542203824838, 9.891873403943585, 12.438817363043404, 4.586177180167158, 6.167017746456721, 12.535135796374487, 10.153219114960462, 11.382934639601737, 3.4455282575573922, 8.088267956017559, 7.2126576723427975, 3.816575777974463, 6.44015096527565, 6.651480770378765, 8.297299797609973, 7.878873927439109, 5.447490061986303, 3.8762163857201806, 7.450009078789165, 3.4579446248708523, 6.172615384057401, 3.4823033125097993, 4.388090657704433, 10.26317835744575, 8.716790905904015, 3.5278599810913396, 3.2804745453586586, 2.4573828468435828, 4.921109977475982, 3.881011671851484, 5.166117294965617, 5.776565433971983, 4.485683069758255, 3.0355244402365855, 3.7669322526582834, 3.8099025175357832, 4.108095556945839, 4.895361416014725, 3.5981311115456234, 3.549610833901154, 2.82924152073319, 4.372621282188723, 4.205598347121025, 4.876076462544546, 3.056182686999871, 2.273464058456111, 4.300356866687318, 4.925715604735087, 4.876652280845885, 5.218784437405032, 2.695419408565391, 6.736172511786205, 4.225314720229301, 4.578347962095716, 3.8394011970056097, 3.5798935272619565, 4.415507250907487, 2.843842118668357, 2.649317941375609, 4.888830991012092, 3.201158901225666, 2.622195552130491, 4.695827752193074, 4.0766636496226525, 4.592492645510376, 4.061319276677023, 3.7256580479442425, 3.7812814633382588, 4.124168754423316, 4.664511539852812, 2.108531218270246, 4.191908453918378, 7.2011157064318345, 2.4474813619628497, 3.568059232323302, 2.407473058689394, 4.821986871439927, 4.191527883538498, 2.838836160542253, 2.3776224303785862, 3.883235113889012, 2.6899321850772218, 2.4775028524686453, 3.1096577350532244, 5.9637178907262625, 3.181786301000497, 2.824398823331979, 4.5640067990508815, 5.101746904193135, 3.240257435984601, 3.4399573488628046, 4.626784303771126, 6.224515676146603, 4.67598999248127, 3.70068016763016, 3.208645015172991, 3.3797308407415825, 3.2959548955750297, 2.401926537628992, 3.2097134460348427, 3.5958710872943587, 3.1568587524623863, 3.820298318895454, 3.5262296422607293, 5.762081629397361, 3.769250192494148, 4.176108766610594, 6.047363688301249, 5.612363166089976, 2.5553521465862756, 2.440077269277601, 7.477228923199928, 3.5875966590899067, 3.1325976360992223, 3.815192594355505, 4.130098014407306, 5.324887413488901, 4.0293697715526, 3.7855880595004616, 5.4857933031842006, 4.712364288484466, 3.5414430307706013, 4.005206501092406, 3.428061338428398, 2.5862896216947666, 5.428375045770668, 3.0565021717030088, 6.88332813135926, 3.5157296886725664, 5.383787867278493, 5.309828771067739, 2.868973988358683, 5.73441065500491, 2.9363462048469797, 5.262414126269302, 2.4842481312463285, 3.9468575024224317, 7.160672722741019, 5.6842631929918275, 5.3846594642083785, 3.217167148889696, 2.8795150123290947, 4.822593188502276, 4.959738879073421, 3.4847221872971104, 4.3894956706704615, 2.677970426252095, 4.304678793502986, 5.453850101121076, 3.436388541251816, 3.445691281852309, 3.0677708839767366, 4.1354685347455105, 2.6098233908478425, 4.478518272824466, 5.896530724064514, 6.485295295729226, 6.022785832261278, 3.3208617154470166, 6.784526551091251, 4.23719563461937, 6.341096299638958, 3.5371119395963673, 2.4751359182347747, 5.330365900224888, 5.436526188808061, 6.55377071299232, 9.874166038884729, 5.555539106886324, 4.875730892562853, 2.342316608327096, 2.62848807717353, 2.746140860756325, 3.1044399809357537, 6.158894685547486, 6.529412605420135, 4.780725257246225, 2.5934658112255673, 4.885532290945236, 2.6139477589599256, 6.416918289367848, 7.508012201481509, 5.828330821416622, 3.7553464227918076, 5.888721896418373, 5.338820200285632, 2.8780305976441056, 3.7769764951222737, 4.32084552260917, 4.574202165629892, 5.277495974265437, 6.939153873383257, 7.998003868032879, 7.2934325765989, 2.8722992510710657, 4.387713496506572, 4.078563422614271, 3.8468216102766064, 4.185684931684357, 3.306227752778978, 5.007154982842824, 6.3754373275551925, 3.8536784742622094, 2.258439444921227, 6.48986271552212, 5.819531970238624, 4.517575115662506, 5.675275161862746, 3.592896095795015, 3.3838796989300053, 4.70110840986152, 4.859423981129573, 3.42651252679344, 4.553532996222317, 6.870553154573253, 6.797996246103568, 3.1029934950457325, 7.707762809033348, 5.34391327985726, 8.213335673073114, 6.2849466518796, 6.109663514126424, 6.180524278269597, 7.271654465221008, 5.0925327877284055, 4.312189225546272, 7.906285593948521, 3.589109460108639, 6.906773112382649, 3.1852459115896607, 3.252044531335879, 4.6647876369071755, 5.433537003061712, 6.291867202473046, 5.58587793895984, 3.438983734419626, 2.989587406329575, 2.979516970658356, 7.2567223087189205, 5.093847141813405, 5.350514329107566, 5.306739323417922, 8.520309570682764, 3.6726533156153507, 2.7147778852551974, 5.87651361162542, 3.2744054238673606, 5.5165517193371505, 5.944535999572096, 5.076348121442564, 7.6516008430371745, 10.237818281880806, 3.5537973174470903, 4.763304517792262, 8.051235037257044, 7.416743533299166, 2.8792841894008476, 7.124265231536284, 6.3015050443396605, 5.985669011654227, 5.071879752602709, 8.280429582755948, 5.602640293495084, 9.119667895992892, 7.361375760998429, 7.324848267504498, 10.980182837106987, 2.930344284223121, 9.872345326452807, 3.540351632834546, 9.584491078466401, 6.060920491959633, 5.516674162386754, 6.167920794161975, 5.9822377470544845, 6.793237525814827, 2.6416355855903317, 3.254949933940223, 3.0219395756692533, 12.331996935385154, 7.487642037487513, 11.309851115404319, 7.286018330013579, 4.019693137671359, 3.0598838459988547, 4.946270717347273, 4.0457562642467675, 5.868357399016651, 6.920776049272143, 3.490926315537537, 6.865819560043252, 6.511525272659416, 3.1847397571157496, 7.675608607823192, 3.3720506295007775, 8.256572619260702, 4.83107408728261, 11.165457723575598, 3.0982443967219075, 3.168301288713038, 3.0939191150679, 6.615737602250894, 2.7537683581721897, 3.4187608316953026, 2.666858837076645, 2.266827103814008, 2.0947638495007332, 2.17944616770195, 2.659162259636854, 2.2156046586707796, 2.60586774415319, 3.1714198799500006, 2.7438015337341857, 2.013495299002913, 2.7217175733697574, 2.8198578186230105, 2.5545075470912026, 4.0801178014451995, 3.2744424475225093, 2.7912121017759524, 2.9259402437812123, 2.7521480659599518, 4.347914510416266, 3.451798977150686, 2.354401551680283, 5.618551934984759, 2.193482996740131, 2.208056644948886, 2.492867748897141, 2.4710474352228573, 2.971141130701564, 2.301743874720598, 2.0936613503523076, 3.878145893490144, 3.055443647699325, 2.85783239515972, 3.6052117973893987, 4.998268768924948, 2.4077930178616103, 4.196643241591237, 3.894661626344177, 3.0258204682304, 2.7419352062133893, 2.8640673672465105, 3.1834690524856915, 4.389762811374038, 2.5815241534185, 2.673474770292786, 3.5991390832294643, 3.0860972063416887, 2.307465893321933, 2.678070973597986, 2.2793103635410725, 3.999763276304212, 3.2537697959615457, 3.8463176397533814, 3.5469250357214555, 2.5175578342480684, 2.4706082072559483, 4.362880494887253, 3.564866267442155, 3.77742109831946, 2.830570793120928, 4.876455534651667, 3.6108804055587416, 3.0356393735990355, 3.589611841024335, 3.1883026754530914, 2.9467070821751262, 3.3350450183157014, 3.8629712613747786, 91.57271031088794, 3.6813644758454553, 3.1728465048858956, 3.618322218636689, 2.5716970055826494, 3.643314944311795, 3.025809527167376, 3.614198431574549, 4.946629160941255, 2.969584244385842, 3.5229829823864645, 3.5452883613791433, 4.044783107544041, 3.6564880061522222, 3.397265548043926, 2.8819341345759275, 2.706058061113446, 3.2119145803189872, 3.2532082933294575, 3.2504013829050193, 2.6014615288927923, 2.829021074553617, 3.7784134273113206, 6.352880654409728, 3.024809541596215, 4.179745476077816, 3.4913135196954586, 4.94536047231928, 3.6910711851042133, 3.816857550483803, 3.538012694753943, 66.8326012788017, 3.1641909766359366, 4.0221451348193735, 5.106141799879855, 3.8706411129146483, 3.433867024896049, 3.960220097463302, 3.7070151791302735, 3.4003388296394492, 5.017397707382227, 3.4381016942069538, 4.027255017098147, 4.738046374644824, 2.731076788883799, 3.6558387341001164, 2.8372485355519848, 4.468082887298003, 3.8210304168513987, 4.681046142719956, 4.8972248772528575, 3.103946325659504, 5.051769664563316, 2.6970636893931186, 4.611031710185289, 3.6935915619328505, 5.02081321273067, 2.7587115359267242, 4.182216276415231, 4.3228623146672795, 5.514156444596005, 3.1974201885273255, 4.856676664802623, 3.601672046990712, 4.024780651442594, 3.0902998026480297, 4.1087528270220375, 4.289562526438588, 4.643364901265132, 4.265819300523597, 2.7842287502740546, 5.432025910999075, 4.369088484838574, 3.9766669689682783, 4.905547617073449, 4.929480819822422, 4.212358978945036, 4.395140274926752, 5.6610931546025185, 4.616733137070813, 4.449113511919491, 4.094760761873677, 4.131434931144262, 4.645167401436923, 6.103674562825525, 3.273782014356874, 4.2188267760566935, 3.892894899601086, 3.0524471984062087, 4.721039220191031, 4.325348247923329, 5.657456820480561, 3.9032993841442902, 4.028720851032231, 3.3909942730696225, 4.04864496358901, 3.729554157071643, 5.937048450290638, 3.783694012053614, 6.480918428227767, 5.691380219865798, 5.085733478083838, 5.929019615735686, 4.788209316276908, 4.624350280907178, 5.160270887130513, 4.2502992165936275, 3.984762830867011, 5.208770394607292, 4.817653013154668, 6.891459297362692, 4.587789939688247, 4.0102863146674395, 6.689871210679345, 6.0893627030132365, 3.6696850982282574, 5.260170653616448, 3.7503143894469217, 6.531246236311823, 5.2452582631814435, 3.6968751717447264, 3.3814597813645544, 4.162020832251603, 3.3835093113345236, 5.455368331978836, 4.044859992139678, 3.9842830397851845, 4.809276745044106, 4.029341510589877, 5.92622141049532, 5.350674888771843, 3.7075702233866514, 4.685122689397689, 5.8900827194489445, 3.7731546781215615, 3.5668277483393007, 6.053951687665202, 5.0813269162585035, 5.859255204271522, 8.133942571880246, 3.9568335893514472, 3.73618948900399, 5.911673617860075, 4.464972268092369, 5.556295371089113, 4.416309828385478, 5.891875715609339, 4.6917835290699115, 3.931233333905804, 3.6727973366691753, 4.392488502839559, 4.220744508842373, 3.1536078471743343, 5.226812686786021, 3.760695424336947, 5.239661568029946, 6.565186591335937, 5.0171466403743725, 5.975016202887991, 5.016365747747235, 4.536435827133136, 5.323348296410992, 5.810985363288084, 3.5599755400457824, 4.728255913364705, 3.8841760692474008, 5.1783029520067725, 3.543671105513529, 5.1877294342622875, 3.546222050875989, 10.347320302073099, 4.76668183807907, 5.189019369227344, 7.238626640641681, 4.707683257915951, 3.9326195652962066, 8.075293048863951, 3.4859346829174465, 3.5603918365274603, 3.498442275401647, 5.504125343176911, 6.248822610751388, 6.1791385444565154, 4.93427452007578, 5.084014726671218, 4.089159447557775, 5.144025038759577, 3.7496642685911783, 6.9653661035057475, 3.2800372217441627, 5.864021266160139, 4.173150247526068, 3.3912902284331055, 6.522514255946558, 4.506129352710574, 3.785969518100486, 6.5580137991737235, 4.135595721333201, 7.9709375254688, 5.219994362868715, 3.969199746160271, 4.226416365585985, 5.9028796112747, 3.9472565373918944, 8.209847841045546, 5.555233714153534, 6.287188795817716, 5.41280273288215, 5.9177074389376925, 4.525923346489139, 5.791191793112085, 5.184116708119972, 5.631392925807962, 5.673229146173613, 6.187064799458805, 5.690588941374298, 4.400313305117368, 5.21614414254065, 5.00183306094884, 4.778971446538463, 6.484802989541971, 4.906886844260922, 3.815969607724091, 3.9264442547987697, 4.665983183675791, 4.1814439072985765, 4.1834551178074015, 4.831303081224841, 6.687328730529086, 5.1465432618850055, 7.000377236647454, 7.669140371827743, 4.503662587345473, 5.414653395760954, 4.6360168127229775, 3.241249163728489, 5.080079407538785, 9.457863626316756, 4.446201482327788, 4.715387045652026, 4.6404336229001375, 114.02916666666667, 11.158934740111135, 3.6179372595988086, 5.002406960922434, 4.558376940416139, 4.511700501759067, 3.3624464538459575, 5.315464114360807, 3.5021117624091023, 4.575735709830039, 2.931167808588573, 4.807231945295333, 5.426659043302755, 9.801917397591227, 3.606664501239785, 20.000134687043616, 6.055099280377348, 3.5678678076438706, 7.8040039337343154, 3.6490092710444446, 3.240174887129827, 4.500183640682787, 5.448395637838076, 4.045854720323608, 3.8961196442437553, 6.836282537322123, 5.011870102085729, 4.315908925306105, 5.418986002334764, 4.679576580580485, 4.45438609638087, 5.586790831191458, 7.84547566102708, 5.885675211455833, 7.01649637341442, 3.694461608356389, 4.634581902510023, 3.6437450473184274, 5.047927237682657, 6.293101720989712, 6.557146208913808, 4.828446961420891, 11.013992064437781, 3.6829293010554975, 5.194868209867976, 6.270873540518401, 5.247203636505837, 4.8972279414137825, 3.9126458622783984, 6.537271230644535, 5.882622658615142, 6.753197814342202, 3.7930020765752137, 7.376822735936295, 7.237223889089434, 5.380025485659588, 7.643469548980505, 5.976578493720602, 3.98425822140471, 4.531865509268334, 4.008622353714991, 6.487385634064572, 3.120205005153734, 4.937216622996019, 10.166526030270436, 5.33915761844896, 8.759060791189931, 3.1712918365304494, 4.652062988233563, 7.196814460893425, 4.284467687112782, 5.0520456712438255, 4.945205181435234, 4.44438579257481, 7.2066521308337155, 6.761718658924465, 3.963772498165152, 3.7692938750806957, 3.7748700201947747, 4.888456395873874, 6.084115454206829, 7.347942394826268, 9.552670421255813, 4.563708506456302, 4.6945606412814, 3.287730115701165, 6.627206238310917, 4.231002375363244, 4.47334423502774, 112.17164281663736, 4.405458880380222, 4.171069326729994, 8.870677165734453, 4.074771194451311, 3.7434416310805037, 5.698674809975017, 4.501616093146417, 3.9159627210236305, 5.8730473556205975, 3.9903570993159367, 6.37423019007103, 5.172724756813935, 4.58515949857763, 7.9850717604634, 5.414395800499509, 5.915227069420454, 4.67997499348663, 15.651274203112605, 3.8319491698687753, 4.075266016201829, 5.919704658486967, 3.5188534123870943, 4.782542605087985, 6.328257747846602, 6.227897023906547, 4.48309764668923, 4.9671455336978765, 7.390168962902779, 4.98568965791647, 7.266773332876196, 8.412956231908932, 5.48375069406418, 7.304278638879564, 4.323423020170953, 11.157372426960256, 3.6996826438829453, 4.074172944502642, 4.83158867964644, 4.457618289219833, 4.651540069858034, 4.588892332484567, 5.3627602298130235, 3.5446623600241476, 6.897544922462426, 73.54592488230713, 3.581056998077067, 5.9238092721629725, 4.276748760979162, 4.287828005409622, 15.776662968687486, 4.8219372726266645, 5.936965874078089, 8.383031773804413, 3.5528720165977674, 5.9581041742565555, 4.188658110611031, 3.920504226828131, 8.053123157367732, 4.668529739940333, 8.41590145173515, 3.6492106761835887, 4.656950310851449, 4.727182218523711, 9.738121408156632, 7.56547656631185, 4.5156682521285365, 6.426305932713351, 5.621130480623295, 7.5421604636783375, 4.657412403729312, 8.892899210206338, 5.163551873783113, 5.046241309743411, 9.219722334499348, 5.689805198476793, 4.752440741088711, 5.160585278510019, 4.618670921083705, 7.786209704206549, 6.309770264920504, 5.004721189405228, 6.908694263956865, 8.874429048978833, 4.942388223511625, 5.60091646689914, 5.267473455480562, 5.020882099279326, 6.764731325820961, 7.48902313208815, 5.093917779359989, 9.502668225621576, 3.7841151372351503, 4.587291422879952, 4.704452371210945, 4.704888813517309, 3.1647171365994886, 5.912495265677926, 10.828133522556133, 4.6289694592511275, 4.585820551791321, 10.603682775546957, 3.6611302972007147, 5.6969333402294025, 7.892222233520258, 4.8707119863738235, 12.768949521760167, 3.7454050236670673, 3.891410721341946, 7.104276184984107, 8.680172107820319, 4.080642353768982, 5.784738568169765, 6.900408796762545, 4.438949572159638, 3.773086171473992, 4.029547922319234, 5.438490529955845, 5.302302711385762, 4.461075322221949, 4.712363634866054, 5.546813928151976, 3.98453183666606, 6.714540149799347, 5.319514512822134, 11.36237559157177, 4.552022149152446, 7.156785147494494, 5.288562889581543, 5.904109387012734, 6.5831100538100475, 4.86876425880585, 4.870498362165367, 4.703307292426606, 3.5642690689331094, 3.025718932343065, 4.4620065984622235, 4.746831735399072, 5.917194043295348, 3.3374201095146203, 12.283095440867807, 4.659496073108648, 3.8781479310750444, 6.531958504341498, 4.421132817996439, 5.5750296718900225, 4.097888417384225, 5.057477409936974, 4.249051696490203, 5.8392091443212415, 3.922920121125648, 5.160174876720053, 16.183900660932007, 7.270916113093188, 4.053010491311951, 4.9803996535127695, 6.770116050891237, 6.7818346442614175, 6.967568633118546, 5.914101563211945, 4.380256770536154, 5.1814173838251705, 6.253818092578327, 4.422314575221432, 7.708296155915895, 5.192401403145199, 7.955853781011071, 5.638174256690393, 5.728373215176868, 6.342684739966915, 6.989658691082775, 4.887781929457405, 5.696999413189341, 6.055909608527767, 6.367848761419463, 5.81634857287425, 5.583309272912332, 6.218537593342466, 11.323709281711277, 6.092126853163, 5.394679136793757, 4.478248676510953, 5.652953468653985, 7.856802888720715, 3.6250683124934913, 5.000035892121128, 5.920869530871397, 4.3998786101028005, 6.32505776774248, 4.38175735462799, 3.718287043085531, 11.248670089341333, 6.178975484652476, 4.433129639845597, 5.998182418224579, 5.199652794316691, 5.704427737588539, 16.6353311652237, 6.284513692598696, 5.551214921670748, 7.125492703885347, 4.989500890302429, 6.57986820470262, 10.218872967101005, 4.351644420396437, 5.490953740155567, 212.3285714285715, 4.839548289998201, 5.299953999645585, 5.440232836061417, 5.596103284688051, 10.829980535626834, 7.824135060349622, 6.829418782013274, 5.778855577392975, 10.68623218122373, 5.723417350065048, 3.8043043683572235, 6.697167139579886, 6.200785955307497, 3.7657465681360383, 6.051100727274255, 4.617849110377838, 4.102702360029696, 9.08664754227254] disp = hash_iot d1 = pd.Series([s for s in disp]) sorted_d1 = d1.sort_values(ascending=False) N = 1007 pred_rrcf = d1 > d1.quantile(0.9) print('Displacement: ', d1.tolist()) print(metrics.classification_report(true_anomalies, pred_rrcf)) for k in [100, 200, 300, 400]: top_k_real = anomaly_detection.get_top_k_anomalies(sh_vector, k) top_k_disp = anomaly_detection.get_top_k_displacement(sorted_d1, k) anomaly_detection.get_top_k_performance(top_k_real, top_k_disp, true_anomalies, pred_rrcf, N) real = [] for index, row in sh_vector.iterrows(): real.append(int(row['anom_count']) * 0.05) plt.style.use('seaborn-darkgrid') fig, (ax1, ax2, ax3) = plt.subplots(nrows=3, sharex=True, sharey=True, figsize=(8, 5)) ax1.plot(real, color='blue', linewidth=0.5) ax1.plot(hash_iot, color='red', linewidth=1) ax1.set_title('SnapSketch', fontweight='bold', fontsize=8) ax1.tick_params(axis='both', labelsize=6) ax2.plot(real, color='blue', linewidth=0.5) ax2.plot(sl_total_hash, color='red', linewidth=1) ax2.set_title('SpotLight', fontweight='bold', fontsize=8) ax2.tick_params(axis='both', labelsize=6) ax3.plot(real, color='blue', linewidth=0.5) ax3.plot(ss_total_hash, color='red', linewidth=1) ax3.set_title('StreamSpot', fontweight='bold', fontsize=8) ax3.tick_params(axis='both', labelsize=6) plt.xlim([200, 2500]) plt.ylim([0, 120]) plt.xlabel('Time', fontweight='bold', fontsize=6) plt.ylabel('Anomaly Score', fontweight='bold', fontsize=6) plt.tight_layout() plt.savefig('results/iotplot.pdf') plt.show() if __name__ == '__main__': args = parse_args() sketch_file = graph_sketching(args)
# ****************************************************************************** # main.py # # Date Name Description # ======== ========= ======================================================== # 6/5/19 Paudel Initial version, # ****************************************************************************** import argparse from sketching import Sketch from anomaly_detection import AnomalyDetection from graph_utils import GraphUtils import glob import numpy as np import json from collections import OrderedDict from json import JSONDecoder import pandas as pd import matplotlib.pyplot as plt from sklearn import metrics from sklearn.utils import shuffle from sklearn.decomposition import PCA def parse_args(): ''' Usual pythonic way of parsing command line arguments :return: all command line arguments read ''' args = argparse.ArgumentParser("GODIT") args.add_argument('-d', "--sketch_size", default=256, type=int, help="Sketch Vector Size") args.add_argument('-k', "--disc_shingle", default=32, type=int, help="# of Discriminative Shingle") args.add_argument('-p', "--prob", default=0.2, type=int, help="Random Probability") args.add_argument('--directed', dest='directed',action='store_true', help='Graph is (un)directed. Default is undirected.') args.add_argument('--undirected', dest='undirected', action='store_false') args.add_argument('-l', '--walk_len', default=50, type=int, help='Length of random walk ') args.add_argument('-n', '--n_shingle', default=3, type=int, help='Length of a shingle') args.add_argument('-f', '--filename', default='vast', help='Dataset filename') return args.parse_args() def graph_sketching(args): with open('graphs/graphs_' + args.filename + '.json') as jsonfile: # graphs_nyctaxi_3month graphs_vast_total_30sec graphs_muta iot_1weekOct graphs_darpa_10min iot_june_01 sample_weight_3 graphs = json.load(jsonfile) print("[ ", len(graphs), " ] graphs read successfully") sketch = Sketch() sketch_file =sketch.shingle_sketch(graphs, args) print("\n Done Batch Sketching...") return sketch_file def main(args): ad = AnomalyDetection() files = ['graph2vec_mutag187_dim_128.csv'] # files = ['dim_32_n_3_k_256p_0.2_l_100.csv']# ['dim_16_n_3_k_128p_0.2_p100q50.csv','dim_32_n_3_k_128p_0.2_p100q50.csv','dim_64_n_3_k_128p_0.2_p100q50.csv','dim_128_n_3_k_128p_0.2_p100q50.csv','dim_256_n_3_k_128p_0.2_p100q50.csv','dim_512_n_3_k_128p_0.2_p100q50.csv','dim_1024_n_3_k_128p_0.2_p100q50.csv',] for f in files: print("\n\nFile: ", f) # sh_vector = ad.read_sketch("sketches/nci1/"+f) #(args.sketch_vector) sh_vector = ad.read_sketch_baseline("sketches/baseline/" + f) # (args.sketch_vector) ad.anomaly_detection(sh_vector, args) def visualize_taxi(): anomaly_detection = AnomalyDetection() # sketch_file = "batch/traintaxi/25per_dim_256_walk_50_k_5_frecostp100q50.csv" #'batch/vastbfs/0_dim_256_walk_300_k_3_cost.csv' #"batch/trainvastbfs/25per_dim_1024_walk_300_k_4.csv" #25per_dim_512_walk_300_k_4 0_dim_64_walk_300_k_4 # sketch_file = "sketches/baseline/splt_taxi3month.csv" # sketch_file = "dataset/streamspot_nyctaxi3month_vector.csv" # print("Sketch File: ", sketch_file) # for sketch_file in glob.glob('sketches/nyctaxi/*.csv'): if 1 == 1: sketch_file = "sketches/nyctaxi/dim_64_n_3_k_128p_0.2_l_50p10q5.csv" #use 24 24 for best result d256 k 256 (1024), dim 128 also works print("Sketch File: ", sketch_file) sh_vector = anomaly_detection.read_sketch(sketch_file) # sh_vector = sh_vector[:1000] # true_anomalies = np.array(sh_vector['anomaly']) disp = anomaly_detection.robust_random_cut(sh_vector) sl_3month_24_24_1000tree = [0.0, 1.0000000000000007, 1.3069999999999837, 1.5749999999999693, 1.8219999999999728, 2.089499999999967, 2.1954999999999685, 2.4909999999999606, 2.805666666666629, 2.9281666666666295, 3.0729833333333003, 3.1683499999999607, 3.7842666666666394, 3.526116666666626, 3.547061904761867, 3.555507142857105, 3.844892857142829, 3.760817857142824, 3.6357361111110755, 3.715322619047586, 4.015897619047585, 4.13106785714283, 4.2710889971139725, 4.4617252525252225, 4.676477020201991, 4.354473448773429, 4.21600274170272, 4.040540223665191, 4.136821212121185, 4.377090945165925, 4.151008874458854, 4.3032929292929065, 3.893516883116856, 3.761827056277031, 3.848441341991319, 3.7394662337662092, 3.870903066378041, 3.839645707070682, 3.7634993145742905, 3.662225288600264, 3.557498268398248, 3.546423088023067, 3.437322943722922, 3.516349458874432, 3.7988536796536505, 3.5630521284271026, 3.5901415945165724, 3.820980303030273, 3.9180819624819345, 3.734498015872985, 3.5302974025973737, 3.6719216450216186, 3.8837171717171404, 3.758740548340518, 3.848997113997084, 3.8676169191918874, 4.496036760461739, 3.6177753607503376, 3.8619676406926144, 4.147067929292907, 3.5590136363636065, 3.6623922077921858, 3.7350548340548118, 3.729756782106761, 3.6178666305916067, 3.754875396825372, 3.587275613275586, 3.686499531024512, 3.3453290043289767, 3.561392027416999, 3.576660858585829, 3.56763726551224, 3.895365151515122, 3.4605695887445607, 3.6585208874458655, 3.594863852813823, 3.756620274170249, 3.622473376623352, 3.8295047258297004, 3.827783802308775, 3.887875072150057, 3.62666792929291, 3.827956782106755, 3.7893905122654874, 3.825775829725811, 3.6092622294372076, 3.589380772005751, 3.6329274170274, 3.6515268398268144, 3.8500302308802055, 3.561327489177468, 3.7184640692640496, 3.712509343434319, 3.546767243867226, 3.8106080447330215, 3.472430266955243, 3.753269372294346, 3.6059611832611607, 3.606277886002855, 3.5701953102452837, 3.7618476551226276, 3.82646277056274, 3.7214350288599967, 3.6715644660894373, 3.8966181818181496, 3.658271681096653, 3.8297926046175745, 3.5934492784992567, 3.9022642496392215, 3.698930735930712, 3.7655356060605834, 4.22597597402596, 3.6396637085136834, 3.729202633477606, 3.623097691197661, 3.959602344877324, 3.559363203463182, 3.7172894300144144, 3.3392061327561167, 3.755216738816722, 3.6067015512265224, 3.6207683261183017, 3.9007072510822227, 3.7254467532467253, 3.477940909090883, 3.8705008658008397, 3.5902923881673576, 3.900582287157263, 4.053705988455959, 3.796682323232295, 3.780787229437203, 3.9704607503607203, 3.7233017676767424, 3.697792171717144, 3.7598486291485975, 3.8793067821067546, 3.909909848484819, 3.7378263708513493, 3.8320799062048794, 3.9601289321789075, 4.308169300144279, 4.2086202380952304, 4.1125421356421175, 3.8586067821067593, 3.718154653679629, 3.809078679653647, 3.966138059163032, 3.951136435786407, 3.9802998917748615, 3.9425713203462953, 3.7856691197690924, 3.910652344877321, 3.9663066017315733, 3.977958946608921, 3.780931457431433, 3.820317316017289, 3.6599736291486047, 3.707707647907621, 3.725441883116858, 3.5673902958152763, 3.5991937590187337, 3.8827389249639017, 3.8220121572871335, 3.5044704545454297, 3.439539393939374, 3.3874304112553855, 3.3518844155843888, 3.3086836580086327, 2.9474969336219066, 2.8205874098123855, 3.2005816738816444, 3.1988915945165606, 3.125726515151481, 3.2303779220779036, 3.1010323232323014, 3.102419083694056, 3.068896789321767, 3.0816936147185885, 3.215689862914838, 3.385117207792184, 3.3956795093794767, 3.195732323232299, 3.265265007214983, 3.1392999639249446, 3.264929365079339, 3.4748344877344643, 3.208597294372267, 3.622541450216432, 3.4296585497835257, 3.5167829004328715, 3.7117974747474483, 3.6494369408369183, 3.6282344155843878, 3.7499116161615835, 3.72148538961036, 3.4892155844155557, 3.6508107864357613, 3.7926731601731336, 3.391973881673852, 3.887472186147164, 3.7511802308802067, 3.8429490620490383, 3.847867676767653, 3.7793133838383612, 3.801909920634893, 3.745292316017292, 4.041810064935048, 3.7616010822510555, 3.955913167388137, 3.963381349206331, 3.8228332611832396, 3.579587121212097, 3.4770942279942068, 3.7541075757575473, 3.79021580086578, 3.912270274170249, 4.066463924963898, 4.003379906204885, 4.0052485930735715, 4.156482323232299, 3.9260842352092147, 4.097521320346294, 4.045806673881648, 4.1314053751803534, 3.8381345959595765, 3.587890620490595, 3.9608605699855457, 3.668929040404014, 3.770212914862898, 3.5402694444444123, 3.585081060606036, 3.4611156204905957, 3.354173665223642, 3.4407172799422505, 3.515055014429991, 3.533650288600266, 3.619540079365053, 3.357846428571407, 3.2724475829725543, 3.3691640331890023, 3.688166269841241, 3.5040137806637435, 3.3259152236651937, 3.540546212121185, 3.5978412698412443, 3.5661549062048783, 3.4603155483405175, 3.381314105339083, 3.664481168831142, 3.559792316017284, 3.800688311688291, 4.76248813131311, 4.174080050505028, 3.781430158730134, 3.7634084415584184, 4.048151154401126, 3.7405865079364835, 4.0043095238094955, 3.739411219336193, 4.270551118326098, 3.8755366161615945, 3.7922791486291203, 3.971384379509358, 3.8612339466089214, 4.005365764790739, 4.140303354978328, 3.9664880591630367, 3.8060173520923275, 3.931700649350624, 3.862881168831139, 3.921066486291457, 3.756006782106756, 3.8823032828282575, 3.8607837301586994, 3.8950672438672154, 3.832847150072125, 3.527478751803729, 3.601055447330423, 3.698805663780636, 3.4474857864357644, 3.750525793650768, 3.599419264069234, 3.4653589466089207, 3.829073484848455, 3.447042424242396, 4.093282828282808, 3.6722832611832312, 3.564764105339074, 3.8253759379509096, 3.767274494949472, 3.939715187590156, 3.8363546897546583, 3.571977741702715, 3.8106083694083455, 3.6345401515151226, 3.924849278499249, 3.7938874458874174, 3.9271287157286885, 3.8956906565656326, 3.965942207792181, 3.9157770923520667, 3.9402582611832373, 4.490846067821058, 3.897951623376607, 4.0916613275613125, 3.7592698773448507, 3.903860461760436, 3.9230887085136796, 3.844913780663757, 3.574144877344853, 3.9054419552669337, 3.5425164141413803, 3.4547947691197436, 3.6863794372294136, 3.76660689033187, 3.787290584415554, 3.5852249278499024, 3.3435772727272455, 3.3772877344877075, 3.6352774170273934, 3.56096558441556, 3.701559415584389, 3.4648298701298454, 3.9327364718614426, 3.809838924963904, 3.6214967532467277, 3.820830266955253, 3.6022968614718383, 3.5950069985569777, 3.5158109307359133, 3.3681872655122373, 3.327917568542544, 3.257087301587282, 3.1492856782106555, 3.131523809523785, 2.8823072871572584, 2.9961978715728543, 2.838357828282802, 2.8527597763347474, 2.954603427128402, 3.085678823953801, 3.186112481962456, 3.1077302308802066, 2.861977813852789, 3.0699853535353263, 3.1257018759018496, 3.2181551948051696, 3.1954116883116623, 3.041358405483387, 2.951494877344863, 2.922761940836916, 3.036607972582944, 2.9529673160172902, 3.062448015872991, 3.335139718614696, 3.497888275613258, 3.656845670995646, 3.7393582972582684, 3.7651746031745774, 3.787149531024506, 3.913758333333307, 3.983562734487709, 3.7659469696969428, 4.034907251082223, 3.7833126984126695, 3.8380386724386404, 3.8034597763347424, 3.75308964646462, 3.8597727633477397, 4.166514935064909, 3.987993975468956, 3.981965331890302, 4.159145707070686, 3.9931064213563956, 4.164266666666647, 4.548593181818168, 4.005048953823927, 3.8002693722943457, 3.9042592352092123, 4.215628102453091, 3.837902813852799, 3.7273817460317153, 3.8264467171716903, 3.8019875541125288, 3.983259776334744, 3.8695760822510574, 3.5565028499278215, 3.675079292929267, 3.636276623376596, 3.5744255050504776, 3.6771806998556738, 3.5959114357864097, 3.660600649350634, 3.734209848484838, 3.714772546897526, 3.6122490620490395, 3.7443204545454254, 3.7384215728715473, 3.3945695887445693, 3.6578407287157058, 3.5878882395382132, 3.3685573593073377, 3.6852617243866987, 3.535026984126958, 3.432802922077896, 3.8117803391053258, 3.389550865800834, 3.407892893217866, 3.3898312049061787, 3.458620093795068, 3.4856037518037213, 3.4122480519480214, 3.3716331168830878, 3.5281458513708266, 3.480547835497807, 3.5022249639249368, 3.5978719336219136, 3.6419860028859747, 3.528142929292904, 3.6182410894660597, 3.5675144660894427, 3.5687557720057494, 3.4306428571428293, 3.6162410173159922, 3.387638924963901, 3.457994769119747, 3.6762860750360526, 3.4295958152957926, 3.3442378066377763, 3.3687195526695275, 3.442358982683957, 3.6152843434343236, 3.377038383838355, 3.246517243867219, 3.435268542568513, 3.3391543290043044, 3.363836291486265, 3.4306038961038663, 3.341835028860002, 3.396813564213544, 3.3936194805194546, 3.26737204184702, 3.243939610389581, 3.2504365800865607, 3.2946102813852636, 3.370105339105313, 3.4209319624819403, 3.453070382395357, 3.418980808080788, 3.5703095598845342, 3.430544083694061, 3.8854875541125358, 3.4231378787878497, 3.5119530303030078, 3.6576691919191675, 3.5083237734487493, 3.7449314574314316, 3.808185930735905, 4.129641089466064, 3.9677842712842377, 3.974645598845572, 4.1553882034631755, 3.900088816738788, 4.24138719336217, 4.111257683982658, 4.087929401154372, 4.049108008657985, 4.0701995310245085, 3.9891628427128145, 3.963061363636335, 3.994612229437209, 3.9874138167387856, 4.0791575757575576, 4.121156637806615, 4.485716810966793, 4.025023629148598, 3.9784017316017017, 3.9088161616161394, 4.3901150072149875, 3.59272734487732, 3.899371933621916, 3.5207989898989593, 3.727648232323208, 3.8047510822510584, 3.838017424242399, 3.7218655122654862, 3.589245490620465, 3.650242821067796, 3.5364736291485994, 3.7116599567099287, 3.561733369408349, 3.841637770562747, 3.632162337662319, 3.6258198773448527, 3.569407683982657, 3.476981673881661, 3.5824769119768893, 3.520297979797963, 3.480156493506469, 3.5367308802308544, 3.2851445526695304, 3.2986308080807785, 3.117983982683955, 3.1411892496392344, 2.937624675324657, 3.0914075036074746, 3.024083044733019, 3.1415005050504803, 3.1317475468975213, 3.065906024531001, 3.0378583333333085, 3.079317316017295, 2.9872506493506292, 2.9378844516594285, 3.192442279942253, 3.097848196248177, 3.3933005772005527, 3.2199513347763054, 3.2792361471861247, 3.387874639249614, 3.3847071067820798, 3.2992914862914566, 3.3895871933621735, 3.5103193722943455, 3.8033667748917517, 3.8142067460317213, 4.185297222222198, 3.8993333694083394, 4.163558838383809, 4.010114393939368, 3.9951099927849687, 3.895227092352062, 4.0262886363636134, 3.8292652958152695, 3.9305909451659176, 4.0220564213564005, 3.985374819624792, 4.072601010100987, 3.912447907647882, 4.257089285714266, 4.10203957431455, 3.8865015151514943, 3.976708333333306, 3.7658345959595754, 3.7606777777777505, 3.9296894660894406, 4.686601875901852, 3.469238852813825, 3.3356275974025724, 4.022192424242403, 3.565645526695502, 3.7199209956709667, 3.5822755772005515, 3.7018393217892904, 3.562673304473283, 3.538736616161588, 3.662297582972556, 3.5100280663780383, 3.841917821067789, 3.4954447691197426, 3.637116738816711, 3.5369760822510607, 3.3660578643578396, 3.272842532467507, 3.3586895382395117, 3.3367314213564025, 3.7297417388167067, 3.486798953823928, 3.393612590187564, 3.5102509740259538, 3.6423803751803483, 3.550006926406902, 3.478563455988429, 3.466908477633452, 3.253095274170251, 3.2904459235208976, 3.312834668109645, 3.246499386724362, 3.2734208152957875, 3.2372036075035835, 3.320627813852784, 3.390543722943697, 3.348068073593046, 3.340807070707043, 3.3954007215006925, 3.627350324675299, 3.368369660894638, 3.3558003607503335, 4.468613239538213, 3.931026551226531, 3.232941053391027, 3.1400388167387963, 3.1127095598845314, 3.0500558080807787, 2.954229906204884, 2.897004761904732, 2.8382976911976594, 2.90321186868684, 2.998626479076451, 2.919464790764774, 2.9667556637806385, 2.8921312770562553, 2.9477972582972316, 3.014097763347738, 3.018316414141388, 3.2628918831168594, 3.041845562770536, 3.0241494588744318, 2.906570743145716, 2.9782071428571144, 3.22624325396823, 3.102931457431432, 3.21499581529579, 3.5689703823953542, 3.7453371572871283, 3.8508089105338845, 3.8520875541125275, 3.934362914862884, 4.2473748556998325, 4.374470129870104, 4.34331100288598, 4.570180699855675, 4.436586507936485, 4.657251190476171, 4.698761580086561, 4.734169336219309, 4.507809126984098, 4.569170779220754, 4.431891919191898, 4.195352777777759, 4.312986075036055, 4.291649891774866, 4.370642568542543, 4.329778102453078, 4.643488708513697, 4.157881385281362, 4.155911544011521, 3.977417640692621, 4.1996764069263826, 4.003964971139949, 4.16765494227992, 4.1777886363636165, 3.887695562770535, 3.929709704184683, 4.073664682539657, 3.8862630591630323, 4.119496320346292, 4.2433093795093555, 4.283841883116861, 4.38894606782104, 4.071688528138507, 4.306836976911949, 4.128269300144277, 4.229571284271262, 4.34458658008656, 4.297584668109647, 4.264283513708491, 4.107510750360723, 3.956600793650771, 4.207434956709934, 4.148274458874427, 4.068585678210656, 4.138097655122633, 3.931196969696951, 4.166243181818156, 3.663754725829699, 4.874830483405459, 3.7658516594516325, 3.6013600649350357, 3.4461573232322977, 4.120573088023073, 3.6990381673881516, 3.3915360389610205, 3.1195303391053155, 3.014289213564191, 3.276704978354951, 3.2121335137084883, 3.2805810606060364, 3.025265764790739, 3.0342666305916093, 3.394932215007191, 3.3480020923520653, 3.2993644660894437, 3.5193159812409522, 3.5682007215007014, 3.5242158008657705, 3.3401055194804905, 3.4553292207791952, 3.4600530303030097, 3.321127777777753, 3.419877669552644, 3.7292101370851163, 3.6583158369408126, 3.8965307720057467, 3.8725435786435525, 3.790794877344855, 3.9469353535353315, 4.1162538961038795, 3.700244624819597, 3.612354473304447, 3.727044733044705, 3.7304282106781854, 3.98598737373735, 4.138390440115433, 3.919290548340518, 3.8524636363636087, 3.7910224025973758, 3.845505158730142, 3.742465476190453, 3.7556898989898713, 3.8262547258296986, 3.5784878787878527, 3.9114307720057595, 3.4552044733044456, 3.567600180375154, 3.4313984126983863, 3.401360966810941, 3.5103294372294087, 3.6384211760461493, 3.8652794733044473, 3.715522222222193, 3.779893470418443, 3.6110560245310026, 3.9477557359307105, 3.7382902958152635, 3.6272431457431145, 3.8114130952380703, 3.589814754689732, 4.252455014430003, 3.5765370851370677, 3.723493903318872, 3.8770554473304273, 3.5736971500721255, 3.763515295815272, 3.642213275613256, 3.713972005771983, 3.5998688672438446, 3.7088554112553878, 3.5845093795093517, 3.4722577561327275, 3.8659555555555354, 3.731688528138506, 3.521431132756108, 3.615512373737347, 3.594215548340527, 3.552064898989872, 3.5401095959595708, 3.3778671356421075, 3.5239008658008393, 3.4611955627705373, 3.5396725468975285, 3.4097870490620243, 3.5159634199133967, 3.6654182539682316, 3.4436435064934776, 3.615361832611805, 3.6146317821067577, 3.7560909090908914, 3.3622375180374915, 4.104397582972571, 3.722199747474724, 3.5234742063491766, 3.6003060245309992, 3.6847856060605766, 3.752629365079335, 3.7615515151514907, 3.513890404040379, 3.758673160173138, 3.6348085497835307, 3.6885209595959347, 3.6889089466089167, 3.695586760461739, 3.695525865800843, 3.563030375180351, 3.5564725829725545, 3.615255663780643, 3.7019891414141175, 3.577038708513681, 4.0729453823953685, 3.650629978354955, 3.765920851370834, 3.648463023087998, 3.3420334776334553, 3.763137734487709, 3.3819734848484626, 3.26821186868684, 3.9324963203463033, 3.172318578643555, 3.2652910894660634, 3.1897095959595747, 3.2310531024530795, 3.2905143217892956, 3.716587806637786, 4.029511111111094, 3.6463707792207525, 3.633013528138497, 3.4885319985569705, 3.702043109668083, 3.546944480519456, 3.814472258297231, 3.7556744227993946, 3.9050549783549493, 3.5125460678210496, 3.9588702741702457, 3.6082806637806377, 3.55336446608944, 4.242823881673867, 3.8487084776334544, 3.9865926406926286, 3.8501867243867, 3.973974458874434, 3.9300356782106567, 3.8559718253968, 3.6832797258297, 3.6501042207791987, 4.025721969696954, 3.98425378787876, 3.727824350649324, 3.745838455988431, 3.857619769119747, 3.930786760461734, 3.8179091991341743, 3.785076515151491, 3.498643542568522, 3.6796484126983855, 3.7284332972582748, 3.6319017676767436, 3.8150584415584174, 3.5664540404040133, 3.8854465367965108, 3.572286652236628, 3.7530837662337495, 3.6120602092351852, 3.850244444444419, 3.4907661255411075, 3.8779781024530875, 3.5696285353535084, 3.5098210317460072, 3.622768362193346, 3.631566738816721, 3.0385994227994035, 3.130394480519464, 3.086548917748889, 3.157018722943694, 3.400051767676741, 3.145829761904736, 2.9783553391053186, 3.0482968614718358, 3.147028823953802, 3.171622438672409, 3.2258710678210387, 3.182476984126962, 3.025765656565633, 3.0395357503607263, 3.0063014430014205, 3.092274170274143, 3.129396212121188, 3.0029436868686554, 3.1793716450216167, 3.3833673520923204, 3.604640656565636, 3.72475786435783, 3.609415440115413, 3.80944704184702, 4.076176551226528, 3.80483755411253, 3.925393145743129, 3.7568223665223384, 3.754287878787853, 3.9045321067820824, 3.935764971139945, 3.6598338744588452, 3.7121851370851133, 4.102635894660883, 3.7114001803751613, 3.868902849927823, 3.8516755772005493, 3.937645202020179, 3.7874272005771763, 3.6604439754689446, 3.4287799422799186, 3.43219303751801, 3.5928251082250826, 3.2985247835497553, 3.8608780663780453, 3.5349104617604437, 3.577312698412671, 3.7108986291486046, 3.664618253968227, 3.503300541125517, 3.5352585858585535, 3.5271295454545215, 3.5093473665223396, 3.618159054834027, 3.6370218614718373, 3.7659032467532154, 3.6995065295815035, 3.6806322871572617, 4.3698994949494825, 3.703552561327535, 3.7189281385281134, 3.5852573953823677, 3.5550431818181525, 3.531359163059135, 3.642188167388136, 3.6219871933621732, 3.5426464285713966, 3.68183946608944, 3.4348717532467306, 3.351419444444416, 3.4285865079364806, 3.1619481962481717, 3.440192568542543, 3.451569588744559, 3.3076804834054583, 3.406962445887417, 3.538660678210651, 3.407075432900409, 3.6088866161615845, 3.3670910533910314, 3.3870066738816504, 3.478925685425656, 3.473933585858563, 3.3733989538239286, 3.269482828282801, 3.282260642135618, 3.6610709956709653, 3.754557323232297, 3.251024170274143, 3.4031607142856912, 3.416929797979773, 4.728027128427104, 4.149669624819608, 3.4141779942279675, 3.615061688311664, 4.057926479076467, 3.665839646464629, 3.768276551226531, 3.804749639249615, 3.6634088023087723, 3.6283515512265234, 3.8206473665223384, 3.692359090909061, 3.505370779220755, 3.6949172077921855, 3.952349350649331, 3.6727893578643336, 3.6294423160172915, 3.47851601731599, 3.6835749639249427, 3.587275036075009, 3.616297258297235, 3.563546969696942, 3.4416384559884254, 3.4944915584415344, 3.60104884559882, 3.5511900072149882, 3.5097429292928983, 3.5381064213563937, 3.532453030303006, 3.74723993506491, 3.6675621212120926, 3.4147556637806398, 3.584078860028832, 3.5540986291485965, 3.7009708874458584, 3.5700239177488897, 3.913049819624798, 3.9272742424242217, 3.729306132756109, 3.7916727994227744, 3.8425975829725525, 3.7705885281385116, 3.7748132756132518, 4.016561688311667, 3.86728351370849, 4.082539177489154, 4.224645526695504, 3.999303535353502, 3.879151767676736, 3.854950288600264, 3.9064401154400863, 3.7516939393939155, 3.688508658008627, 3.4958256493506275, 3.550826659451637, 3.7418735209235, 3.5866668109667863, 3.710135642135618, 3.660099747474721, 3.655001262626241, 3.4882670634920414, 3.541265440115413, 3.625677020201998, 4.040849314574297, 4.153912445887426, 4.072568614718597, 3.7927190476190353, 3.5551117243867005, 3.538172835497823, 3.490922330447304, 3.4323579365079144, 3.4711061327561077, 3.3090009740259454, 3.408359776334746, 3.079012734487707, 3.1662414502164227, 3.057004148629124, 3.1421230519480345, 2.873231746031721, 2.880029004328981, 3.402081637806613, 3.243077200577174, 3.1650222222221966, 2.9905377344877184, 3.048860497835476, 2.9624621933621715, 3.1720605699855398, 3.2693377705627493, 3.0494310606060364, 3.212281601731574, 3.3837195526695223, 3.1435154401154146, 3.3310893939393673, 3.470911760461732, 3.5475894300144044, 3.5205901154400916, 3.713963564213534, 3.8042854256853933, 4.0473790404040155, 4.108113059163029, 4.156097510822495, 4.234290331890312, 4.205331782106751, 4.250613383838352, 3.9982195887445613, 4.093688167388143, 4.233216233766214, 4.3351252164502, 4.289782828282806, 4.067612409812386, 4.167921717171693, 4.198703823953802, 5.091683694083672, 4.222208225108202, 4.008938744588721, 4.028236760461737, 3.7938362914862727, 3.694744372294348, 3.8182236291486094, 4.387076731601719, 3.774653354978341, 3.6516845598845356, 3.6201071789321575, 3.7929100288600037, 3.8905396825396545, 3.885323629148601, 4.040750721500694, 4.001989754689728, 3.7492523088022827, 3.881028066378038, 3.944119696969666, 3.9500112914862675, 3.6578525252525043, 3.7131976551226313, 3.8047356060605857, 3.8232858585858343, 4.086534632034612, 3.877719191919164, 4.066037626262604, 3.8448527417027254, 3.8503155483405234, 4.1260839826839595, 3.7476251443001254, 4.014519336219313, 3.683418470418439, 3.4499757575757353, 3.765331421356391, 3.6876022366522103, 3.714670670995648, 3.402627633477604, 3.541385786435762, 3.72142474747472, 3.5527836580086296, 3.432399386724365, 3.6766056998556684, 3.550921031746004, 3.62999736652234, 3.5474865440115178, 3.599895165945146, 3.7800305194804955, 3.598352597402574, 3.656241558441532, 3.708330339105314, 3.6655175324675136, 3.674650757575739, 3.540394300144273, 3.4105452741702487, 3.696750108225088, 3.230444805194791, 3.384690728715702, 3.52733358585856, 3.503625577200559, 3.4478310606060343, 3.4920450216449948, 3.638375252525227, 3.477314502164476, 3.625184595959575, 3.7734333694083477, 3.4876297619047354, 3.6059088383838067, 3.269282395382367, 3.800552958152933, 3.529877489177457, 3.362266486291464, 3.747488708513687, 3.5825629509379247, 3.5042013708513506, 3.395532178932154, 3.4275414862914557, 3.4830607503607287, 3.580583225108199, 3.500523701298683, 3.665647510822488, 3.872947077922065, 3.584489682539658, 3.6708925324675015, 3.5474015151514884, 3.777408008657997, 3.692966486291472, 3.618909668109646, 3.5757731240980974, 3.5262949494949276, 3.5530803391053127, 3.481832792207766, 3.6205724386724096, 3.5976252525252264, 3.7133051226550995, 3.599511796536776, 3.7823583694083505, 3.4381701659451394, 3.8987237373737123, 3.5573990981240726, 3.856887481962459, 3.9940503607503364, 3.8908225468975237, 3.7740568542568376, 3.821846428571406, 3.746914826839797, 3.6169077200576916, 3.2548594877344668, 3.518979365079344, 3.328475036075012, 3.3889639249639, 3.663383838383811, 3.644399675324653, 3.7738939754689476, 3.7552752525252227, 3.34849595959593, 3.4327408008657727, 3.484907647907616, 3.4551621572871314, 3.7098223304473055, 3.3567260822510656, 3.4373492424242125, 3.4018566017315806, 3.605701118326099, 3.425207720057698, 3.3183412337662075, 3.4041341991341825, 3.6121794733044443, 3.5707371212120913, 3.2857360389610175, 3.158868398268369, 3.3927949134198876, 2.929000865800847, 2.9289778138527915, 3.2477839826839565, 3.021589862914836, 3.0477374458874245, 3.3390720057719814, 3.113381782106758, 3.022324639249616, 3.0006230158729865, 3.025646031746001, 2.9532886724386476, 2.942975216450197, 3.1820893217892983, 3.1149862193361946, 3.0362110028859823, 3.00963181818179, 3.3555391414141225, 3.4641644300144034, 3.203723953823926, 3.4524067460317247, 3.1666521284271, 3.4754823953823673, 3.6918847041846705, 3.6687070346320003, 3.633663383838357, 3.7070770923520633, 3.751210642135618, 3.565179653679628, 3.5964057359307113, 3.4051089105338854, 3.4659439033188697, 3.6208987373737065, 3.5815098124097875, 3.4765953102452802, 3.8375349206349005, 3.6348504689754515, 3.8166445165944927, 3.5392779942279686, 3.5053556277056, 3.5751520923520697, 3.5955927849927587, 3.5317110028859835, 3.718763347763333, 3.3279729797979516, 3.3952230880230654, 3.4970351010100775, 3.3201727272727064, 3.2392367243866995, 3.4472941919191595, 3.5568238816738584, 3.328016486291461, 3.7425002164501886, 3.465884920634898, 3.3093776334776077, 3.532860137085107, 3.5723238455988215, 3.3786992424242164, 3.4528802308802073, 3.524616450216426, 3.3484871933621716, 3.5609398268398023, 4.230960317460295, 3.3492879509379243, 3.747972330447312, 3.5152358585858345, 3.5934850288600004, 3.6876378787878528, 3.737392243867215, 3.378313059163034, 3.3405634559884305, 3.357274098124072, 3.390972366522348, 3.39293860028857, 3.4620321428571144, 3.4012681457431215, 3.567406998556971, 3.6901374098123925, 3.3887406565656386, 3.4519253968253687, 3.5475782106781892, 3.4543923520923245, 3.488014466089438, 3.3217930735930454, 3.3198761904761684, 3.3984684343434086, 4.11145003607502, 3.4125689754689494, 3.599721392496363, 3.482291450216428, 3.448991233766209, 3.4894246031745797, 3.441404112554087, 4.243472582972565, 3.5159278499278264, 3.2503224386724163, 3.715845238095221, 3.245945815295796, 3.3797849567099307, 3.214529617604594, 3.324103210678187, 3.2365272727272467, 3.28815176767674, 3.2866053751803497, 3.3371687950937683, 3.392729509379487, 3.4547364718614455, 3.428995634920608, 3.5871498556998347, 3.310544047619021, 3.4340365800865595, 3.299150505050485, 3.083853715728694, 3.7427075396825247, 2.9459798701298485, 2.8768970418470174, 2.999882142857121, 2.955184668109641, 2.785895562770546, 2.7430041486291246, 2.790803968253945, 2.893322546897523, 2.762410786435765, 2.9726768398268137, 2.9602033189032944, 3.090735606060583, 3.175223160173133, 3.138036652236621, 3.0272509018758713, 2.836163383838361, 3.0564254329004017, 2.847228102453077, 2.891564826839795, 3.0693087301587063, 3.368072835497809, 3.595876154401134, 3.6598950937950594, 3.699991450216427, 3.974507575757548, 3.983646392496367, 4.012746861471838, 4.337054329004302, 4.2291153318903065, 4.46325479797977, 4.7486314213563965, 4.383993722943699, 4.821763311688285, 4.668473124098103, 4.455313095238064, 4.5120257215007, 4.522513347763323, 4.601010714285694, 4.685158405483388, 4.470778318903293, 4.593516847041824, 4.580314393939367, 4.404052741702714, 4.462382756132737, 4.389771500721481, 4.177826010100993, 3.9995901875901674, 4.077643759018734, 3.658597474747452, 3.8917732683982447, 3.6595940476190227, 3.473395743145717, 3.3430933621933394, 3.4365319264069027, 3.2920729076478765, 3.1480229076478854, 3.3340397907647703, 3.066109307359283, 3.1994374458874173, 3.1077954906204637, 3.2114945887445656, 3.3088594155843922, 3.156869444444421, 3.077884199134176, 3.099526334776309, 3.054787914862888, 3.1024123737373484, 3.2875344877344608, 3.3598628066377776, 3.2682577561327357, 3.612439610389586, 3.252631782106759, 3.6361869769119473, 3.6793295454545154, 3.5063454545454342, 3.667554220779192, 3.809126948051923, 3.7246248196247906, 3.8221960678210456, 4.062295165945142, 4.063088419913398, 4.083283477633451, 4.119543867243842, 4.035035822510799, 3.7553963203462946, 4.130683008657985, 3.9910497113996817, 4.047036832611807, 3.985762734487709, 3.818288528138501, 3.8200203463203217, 3.8086027777777485, 3.7982616161615876, 3.7707611471861218, 3.7282270923520624, 3.881247113997086, 3.6468468614718366, 3.484032467532446, 3.4301384559884305, 3.525814538239512, 3.500676515151489, 3.474614430014403, 3.7051179653679416, 3.643699747474721, 3.5270752525252265, 3.6891347402597137, 3.5580662337662035, 3.562460822510802, 3.5563359668109435, 3.561443181818161, 3.5538552308802056, 3.641700036075016, 3.7322275974025647, 3.824146176046145, 3.7148089826839574, 3.6341572871572625, 3.5741961760461476, 3.8127721500721217, 3.472552380952361, 5.007212662337634, 3.4344297619047333, 3.296914430014405, 3.3470517316017054, 3.000426046176027, 3.471682539682516, 3.1341779220778996, 3.208550613275586, 3.4899698773448495, 3.674571536796503, 3.612525468975442, 3.882493145743115, 3.63531544011541, 3.4734796897546674, 3.5509739538239247, 3.63261976911975, 3.53714397546895, 3.761255555555528, 3.7784161616161316, 3.796268362193333, 3.6849472943722703, 3.8430957431457142, 3.537596861471834, 3.8313782467532196, 3.8123887806637526, 3.7303450937950697, 3.7882775613275346, 3.6153183982683794, 3.5546108225107993, 3.639353751803728, 3.634023412698388, 3.6693432178931866, 3.7169387085136796, 3.7799597041846784, 3.8705729076478788, 4.383102489177467, 4.090602056277038, 4.607881385281363, 4.309742460317443, 4.075919624819598, 4.69260165945164, 4.426657683982669, 4.463382503607483, 4.4292094877344725, 4.266624062049039, 4.693021356421336, 4.47987456709955, 4.120433116883095, 5.445057178932162, 4.349536904761878, 4.4787084415584175, 4.132246356421341, 3.98522081529579, 4.0722166666666375, 3.9166806998556756, 3.6461792568542344, 3.5739689033188733, 3.482656240981212, 3.1817195887445613, 3.102289393939368, 2.9363459235209026, 3.220350577200546, 3.0759430735930495, 3.2428633477633277, 3.065655591630569, 2.9258775252525036, 2.8245373376623135, 2.885929509379488, 2.847835822510796, 3.141396067821033, 4.123756818181802, 3.3283982683982405, 3.3551668470418217, 3.469151623376601, 3.588056529581503, 3.5172375180374966, 3.707937229437204, 3.792969696969667, 3.8495720779220473, 4.1010886363636105, 4.0254714285714, 4.230333225108203, 4.144254112554085, 4.453803354978331, 4.405859379509361, 4.237852886002864, 4.2488108585858315, 4.280167929292904, 4.131469119769101, 4.147667279942255, 4.234430050505026, 4.231316269841239, 4.358060822510807, 3.965940836940821, 3.932766161616134, 3.9281330808080526, 3.936576334776303, 5.01256305916303, 4.481213564213556, 3.582252525252502, 3.58674303751801, 3.5034094877344675, 3.2564583694083367, 3.1323357142856882, 3.091564682539658, 3.4974136724386526, 2.8989238095237804, 2.9286343795093543, 2.935892460317438, 2.966783080808059, 3.0308311327561146, 2.9853348484848223, 2.861385642135623, 2.9544055916305716, 3.07706118326116, 3.241348051948028, 3.159161868686846, 3.2673410533910276, 3.1919691919191657, 3.0836797258297, 3.192661399711372, 3.556702128427096, 4.232829581529564, 3.427763275613248, 3.9546266233765945, 3.93401345598843, 4.297913419913389, 4.140230339105317, 3.922471428571405, 3.9459054112553837, 4.173370779220748, 3.89303614718612, 3.9299927128426777, 4.131626551226526, 3.8384411976911688, 3.9826668470418207, 3.973119624819598, 3.989994588744564, 4.153181746031724, 4.035403571428547, 3.9838783910533637, 4.5994581168831115, 4.04563077200575, 3.8968884559884285, 4.120914430014422, 3.7723794733044467, 3.922632647907637, 3.644429256854234, 3.651460425685409, 3.513464646464617, 3.613408621933594, 3.5075748556998314, 3.621296067821046, 3.6046654401154106, 3.4264020923520655, 3.563468073593046, 3.610537193362166, 3.481652092352064, 3.5404494227993952, 3.706674098124072, 3.4848266233765983, 3.724952813852796, 3.333707251082222, 3.6118688672438393, 3.528052272727248, 3.4551668470418186, 3.3200620490620203, 3.4355573232322953, 3.6605646825396585, 3.4954063131312907, 3.5781034992784746, 3.6235484487734233, 4.321021176046156, 3.628949386724361, 3.820735064935034, 3.686220815295791, 3.9891574675324466, 3.5791516955266656, 3.6274341269840984, 3.7459085137084935, 3.4290627344877085, 3.6371598124097875, 3.816576082251051, 3.6369959956709708, 3.76666161616159, 3.6521615440115163, 3.7363469696969447, 3.5247033910533703, 3.4669192640692352, 3.3905061688311426, 3.3995422077921837, 3.5062495310245074, 3.5310145743145553, 3.512273520923501, 3.5535832251081945, 3.38581785714283, 3.3415177489177212, 3.6360838383838097, 5.020492460317439, 3.413107178932155, 3.605816341991322, 3.4917253246753006, 3.4903841991341737, 3.492014466089441, 3.4872818542568265, 3.4369271645021415, 3.441739285714254, 3.472251262626238, 3.5228091991341763, 3.507680050505021, 3.365162987012959, 3.5760692279942, 3.4577910173159934, 3.7806882395382115, 4.209211580086568, 3.6073501443001157, 4.031098556998548, 3.6546077922077633, 3.5338572150072016, 3.5994022366522147, 3.6581154040403803, 3.478616883116859, 3.7388532467532194, 3.468500757575734, 3.781568073593053, 3.39025043290041, 4.028590692640669, 3.8072081890331697, 3.696199855699826, 3.891389538239512, 3.735673376623348, 3.966468759018731, 3.940980952380919, 3.9333091630591346, 3.810640728715697, 3.8695416666666365, 3.7972052669552356, 3.9164990620490414, 3.7991493867243626, 3.8866386002885767, 3.8907735209234944, 3.959802308802277, 3.8854520562770283, 4.54199025974025, 4.166458080808068, 3.6550197691197375, 3.906744805194789, 3.923299206349185, 3.801204870129845, 3.6787455988455737, 3.7737968614718373, 3.888365115440083, 3.883305880230852, 3.814968903318874, 3.862485642135611, 3.765743434343408, 3.798760786435758, 3.4568361471861184, 4.019614285714265, 3.7850037157286938, 3.6909094877344613, 3.874967135642121, 3.7087071789321557, 3.6411883838383527, 3.757339898989878, 3.6925074675324434, 3.6023813492063215, 3.6729069264069025, 3.685534199134164, 3.8001212121211827, 3.466937193362166, 3.351460858585833, 3.273947077922054, 3.6920158008657857, 2.9931516955266724, 3.0878660894660643, 3.167833080808056, 3.2559413419913197, 3.2818389971139674, 3.0093848124097855, 3.0745007936507656, 2.972009379509356, 3.135062842712816, 3.1816250721500468, 3.1019498917748667, 3.58701814574313, 3.0519202741702522, 3.253430483405452, 3.078886038961016, 3.184248809523786, 3.2980088383838138, 3.711589285714251, 3.763777597402572, 3.675025829725802, 3.9835266955266704, 4.0374524891774675, 4.121505483405456, 4.056063636363611, 3.9521447330447033, 3.935231168831139, 4.170119119769095, 4.132315151515127, 4.1645151875901645, 4.02005393217891, 4.6730371212121105, 3.882482683982661, 3.7362297619047395, 4.373409235209209, 4.052186435786407, 4.264481457431436, 4.695877813852806, 3.877949278499256, 3.747563816738794, 3.8395481240981, 3.315633008657988, 3.7853284271283987, 3.520634271284248, 3.4188125180374924, 3.685002453102424, 3.445049819624791, 3.651210137085108, 3.9083362914862736, 3.7680653318903072, 3.7850908369408125, 3.5324563492063246, 3.701922438672409, 3.8863807720057437, 3.5133732683982446, 4.314837265512251, 3.990737878787867, 3.574594769119743, 3.626385281385265, 3.6097825396825147, 3.6975930735930507, 3.5981031385281175, 3.7321361832611584, 3.3828260101009846, 3.6517975468975203, 3.6547629148628906, 3.6851978715728535, 3.783434054834028, 3.697980844155819, 3.7010505411255172, 3.632802164502139, 3.7282152597402334, 3.6584825757575516, 3.5914136724386525, 3.660747655122639, 3.66823030303028, 3.6058588383838135, 3.9395663780663464, 3.738607251082217, 3.606458730158708, 3.607536075036054, 3.9030045093794867, 3.657496464646447, 3.5602068542568315, 3.510492207792195, 3.4343507215007003, 3.335928318903301, 3.4871500360750165, 3.317427308802283, 3.1683257575757366, 3.3308224386724206, 3.1399943001442763, 3.030599098124069, 3.485240079365064, 3.5230786435786174, 3.3378488816738536, 3.4408932900432645, 3.47837265512263, 3.4192793650793387, 3.324550324675299, 3.424444047619024, 3.2724970418470134, 3.4097431818181567, 3.3535486291486145, 3.3555806998556794, 3.461624639249614, 3.608790512265488, 3.4881579725829512, 3.5838227633477433, 3.879206313131296, 3.5691301587301396, 3.7241358225107972, 3.9124936868686624, 3.9552411976911817, 3.6279888528138198, 3.6201834415584098, 3.291108152958134, 3.565459632034608, 3.36971976911974, 3.2426462121211888, 3.7276651515151307, 3.4218157287157056, 3.719019588744559, 3.720400396825371, 3.5690141774891484, 3.558388059163033, 3.8153114718614423, 3.5644150432900137, 3.4774637445887215, 3.2958042568542316, 3.681305772005748, 3.6088640692640497, 3.7238213564213325, 3.533561075036056, 3.6808332251081968, 3.534584090909068, 3.6073131673881416, 3.7932964646464433, 4.001544552669527, 3.981020815295789, 3.479214321789298, 3.6734788600288386, 3.7162086219335935, 5.062761399711381, 3.7307555555555303, 3.807125360750334, 3.677757575757547, 3.9131952380952137, 3.9751470418470176, 3.60247817460315, 3.875976911976883, 3.892301803751776, 4.008585966810938, 3.7773484487734272, 3.9559837301587044, 3.9280708513708253, 4.037997150072124, 3.75458827561325, 3.9151349567099336, 3.8782044372294115, 4.511528499278483, 3.899776984126951, 3.9850315295815175, 3.7937445526695264, 3.6646091630591453, 3.682100901875867, 3.4093005411255177, 3.187770165945145, 3.2736734487734167, 3.181744444444415, 3.274162770562742, 3.076474062049034, 3.32521969696967, 3.282427164502144, 3.036281565656536, 3.0100977994227716, 3.052452417027395, 3.116139971139952, 3.127094047619019, 3.0874271645021367, 2.981730158730132, 3.0194982683982414, 3.13850389610387, 3.201091991341966, 3.3534962121211884, 3.5114834776334534, 3.5978278138527884, 4.525003066378052, 3.7970881673881394, 3.9081646464646176, 3.8580670995670747, 3.9713975829725503, 4.066283621933601, 3.931145418470397, 3.9322401875901587, 3.9747953463203247, 3.8636198773448496, 3.9453597763347443, 3.8244569264069006, 3.8804652958152692, 4.058970274170251, 4.196596536796506, 4.017149711399689, 4.137318001442977, 4.011108585858563, 4.196651010100982, 3.9923190476190196, 4.7472481601731475, 3.7403093795093487, 3.7432763708513472, 3.8651509379509115, 4.351109740259726, 3.992832395382382, 3.5597772005771704, 3.780063924963895, 3.9714248917748685, 3.629176659451642, 3.656200396825368, 3.7582309163058834, 3.658012626262599, 3.6192933982683746, 3.7862576118325824, 3.792035137085104, 3.6920035714285517, 3.676818831168801, 3.6062029942279654, 3.575573881673856, 3.5218569264068975, 3.648130014429986, 3.32907925685423, 3.266649422799397, 3.280972763347738, 3.5371432900432636, 3.5066583333333075, 3.319223448773424, 3.7606086219336112, 3.3407224386724117, 3.5894699494949176, 3.533440800865776, 3.6340980158729925, 3.5276604617604352, 3.8509398989898713, 3.4207478354978105, 3.6708613275612985, 3.7488463564213292, 3.5494206349206, 3.4619766233765947, 3.5912321789321546, 3.680754942279914, 3.772236111111085, 3.7719970779220553, 3.528842640692617, 3.62966677489175, 3.875104437229411, 4.02232157287155, 3.761499999999976, 3.7492127344877093, 3.586716017315989, 3.7399888167387934, 3.6403657647907406, 5.200108802308785, 3.911311760461738, 3.828817712842687, 3.7751465367965085, 3.864730158730135, 3.874567712842685, 3.7758336580086342, 4.0169356782106505, 3.868820490620466, 3.907320634920611, 3.7426252525252286, 4.709969841269829, 4.05657640692638, 3.795475901875877, 3.853848268398247, 3.698862409812388, 4.202230663780654, 3.7178312409812135, 3.906308766233749, 3.670550180375162, 3.6478901515151327, 3.700392352092327, 3.5938353174602917, 3.7975800505050286, 3.9959237373737087, 3.7264661616161345, 3.4314088744588505, 3.4219763708513473, 3.5101462481962273, 3.4890120851370603, 3.4895567460317225, 3.6263214285714, 3.46878932178929, 3.648952525252499, 3.7010042207791947, 3.6117383477633225, 3.869600649350625, 3.769640295815268, 3.839774134199115, 3.6599261183261005, 3.7550195165944973, 3.9134483766233545, 3.721798845598818, 3.683633189033173, 3.5769201659451406, 3.567008730158706, 3.567863528138502, 3.151488708513687, 2.9059575757575544, 2.856980844155815, 3.0642838744588534, 2.864378571428545, 2.9970473665223403, 2.931676046176018, 3.0085950937950696, 2.9676823232322986, 3.1455094516594273, 2.7825022727272466, 2.5226681818181573, 2.4790196608946355, 2.48060977633476, 2.858106962481931, 3.1311031385281067, 3.8778554473304148, 5.038908405483376, 5.588305158730131, 6.384457251082216, 6.448848412698396, 6.615093867243841, 6.482520707070685, 6.869166810966786, 7.179295274170262, 6.7603117965367705, 6.8514709235209015, 7.0796906565656474, 6.774077200577176, 6.4462605339105155, 6.744988528138503, 6.660980483405461, 6.56218759018757, 6.173062409812393, 6.609772619047593, 6.168924711399689, 5.983095490620481, 6.158300108225086, 6.251628571428541, 6.200761868686854, 5.538820129870103, 5.45642453102451, 5.369608189033167, 4.893993722943707, 4.4650806277056105, 4.129773412698389, 4.012198556998528, 3.904589430014403, 4.062622763347738, 4.251428210678177, 4.411094011543988, 4.464506096681081, 4.36641836219334, 4.360503391053362, 4.27609473304471, 4.174827128427101, 4.382302453102429, 4.549327453102438, 4.412901695526676, 4.143914105339086, 4.185889718614698, 4.391764754689728, 4.2366633477633195, 4.138259992784967, 4.215189971139953, 4.312622691197661, 4.200580735930711, 4.180838744588723, 4.123136327561302, 3.9940251082250837, 3.8531331168830874, 3.6719004329004012, 4.031084956709923, 3.948914754689727, 3.923011075036046, 4.313516991341968, 4.238485714285689, 4.088623701298682, 4.028209379509355, 3.928770165945141, 3.9226798340548084, 4.25351623376621, 4.053818037518015, 3.9646333333333104, 3.8848540404040137, 4.115364213564189, 4.148201731601702, 4.201911435786405, 4.3359993506493275, 3.8507319624819374, 4.381612301587271, 4.206507828282803, 4.131642388167363, 3.6537212121211846, 3.923167424242395, 3.8371445165944897, 3.9720079004328723, 5.787071212121185, 4.116758441558416, 3.8039911976911682, 3.833515981240953, 3.693162554112527, 3.7065032828282582, 3.800587121212093, 3.6803543290042975, 3.4905672438672184, 3.5923344155843857, 3.8616450577200294, 4.583809235209226, 3.8428816738816494, 3.699369624819604, 3.734815476190451, 4.147355699855699, 3.7038864357864125, 3.8060365079364944, 3.6600371572871344, 3.6930040404040194, 3.652369227994204, 3.4439484848484567, 3.618333730158713, 3.522498520923496, 3.4004883116882842, 3.3317001443001253, 3.6309562409812233, 3.536525180375155, 3.5404503246752976, 3.7210344516594205, 3.3844740981240697, 3.4892343795093574, 3.6357587301587, 3.592806204906178, 3.7445549422799114, 3.610277922077893, 3.73282925685423, 3.7260506493506336, 3.5033815656565364, 3.6581927489177213, 3.756174062049039, 3.6107436507936264, 3.632887950937922, 3.821334090909062, 3.4988866522366275, 3.5083881313130982, 3.476830591630565, 4.005355014430009, 3.6768844516594386, 3.561733766233747, 3.6891393578643297, 3.9335702020201757, 3.8541274531024263, 3.5998069264069006, 3.7550411255410965, 4.05691064213562, 4.029887012986988, 3.7161354256854002, 3.846540584415558, 4.181954870129839, 4.144015512265492, 3.8723285353535055, 3.987701875901851, 3.975181457431429, 3.9734597763347494, 4.029689393939384, 3.7574518398268193, 3.8820197330447064, 3.9878107142856893, 3.8765952741702474, 3.9535232323232052, 3.8711541125540823, 4.4251883838383765, 3.884870021644993, 3.550796536796509, 3.597238852813833, 3.6996158730158446, 3.401019011543988, 3.5508829725829494, 3.6277203463203205, 3.6376094516594275, 3.6493319985569705, 3.538988455988429, 3.4788629148628925, 3.4350053751803515, 3.896739718614691, 3.648218506493485, 3.5878346681096422, 3.606552777777752, 3.75204527417025, 3.4170852813852557, 3.654445815295793, 3.516288852813831, 4.600868398268383, 3.7274884199133913, 3.653447546897521, 3.4595936147185893, 3.7164913059162794, 3.502328282828257, 3.294467171717146, 3.205231854256832] ss_3month_24_24_1000tree = [0.0, 1.0000000000000007, 1.3329999999999849, 1.5799999999999699, 1.8659999999999726, 2.1699999999999653, 2.412333333333295, 2.3888333333332943, 2.5274166666666353, 2.6574166666666224, 2.7595833333332975, 2.8151999999999564, 3.0721666666666416, 3.006366666666634, 3.7124738095237997, 3.258157142857102, 3.4130511904761507, 3.5969535714285406, 3.616549206349173, 3.583492063492032, 3.562311507936477, 3.7134559523809325, 4.389495274170267, 4.061337157287124, 4.151419769119739, 4.3163510101009965, 4.110110245310216, 3.555886544011528, 3.215689141414145, 3.0994366161615936, 3.2528543650793442, 3.4149517676767505, 3.6325010101009845, 3.631707467532441, 3.46850905483402, 3.208544227994204, 2.9705792568542457, 3.2353697691197385, 3.500612481962459, 3.306249639249608, 3.290618470418449, 3.483748412698386, 3.132439285714272, 3.157937373737357, 2.791249458874439, 3.0505470779220527, 3.1924967893217673, 3.1740470057719836, 3.247793434343417, 3.2376004329004076, 3.3602558802308553, 3.324749025973993, 3.0909079365079117, 3.376211038961011, 3.2522187229436947, 3.2632582611832417, 3.11803131313129, 3.230373015872985, 3.244136760461731, 3.2417231601731378, 3.4065972222221923, 3.2890272366522084, 3.360997294372275, 3.14307846320344, 3.201389646464617, 3.2561767316017027, 3.253134848484826, 3.166831277056241, 3.101116666666636, 3.181716089466058, 3.1762659451659174, 3.474047186147165, 3.1866436507936204, 3.25883600288598, 3.3674025613275336, 3.299854329004301, 3.1793006493506164, 3.2029855699855436, 3.377116630591603, 3.030747619047606, 3.167276154401123, 3.1544104978354843, 3.116975721500704, 3.171920743145717, 3.2686136363636087, 3.3189502525252226, 3.197428174603144, 3.274423665223637, 3.296039790764757, 3.174584776334761, 3.390939646464618, 2.962060894660883, 3.4358563852813555, 3.458771428571407, 3.3396124458874157, 3.12551024531023, 3.2880533910533614, 3.255798809523787, 3.2443214285714106, 3.446616341991315, 3.029158874458847, 3.1671040404040185, 3.0127953463203196, 3.2283405483405203, 3.1728769480519254, 3.161988888888862, 3.1150445526695334, 2.896329978354951, 3.1757876984126687, 3.089727741702723, 3.1015059163058867, 3.276429797979771, 2.999434307359284, 3.391308946608915, 3.4482933261182946, 3.4907042207791883, 3.3410086219336024, 3.378124927849896, 3.2703357142856895, 3.3537577922077735, 3.1058992424242264, 3.480178210678183, 3.409717568542539, 3.1684301226551, 3.3083067821067655, 3.067633261183249, 3.4474495310245, 3.5691814935064774, 3.349110606060588, 3.4267053751803536, 3.771781673881642, 3.563572222222207, 3.4458077200576938, 3.533197582972551, 3.9051849567099275, 3.4807538239537887, 3.5189957431457097, 3.721677813852781, 3.644154040404013, 3.806764718614698, 3.6267095598845263, 3.5693204545454313, 3.550493362193334, 3.6456230519480224, 3.671228066378036, 3.5877527777777547, 3.860542279942248, 3.7509724386724086, 3.5400497835497555, 3.7452131313131014, 3.4678009740259523, 3.438513419913392, 3.563632034632009, 3.6510000360750134, 3.5036995310245005, 3.4124933982683694, 3.4718207070706786, 3.648727453102424, 3.6925342712842424, 3.5476460678210406, 3.5925590909090612, 3.649585245310212, 3.47679476911975, 3.391588492063464, 3.4802790764790488, 3.2800634199134047, 3.3088433982683654, 3.4610658369408, 3.4448101370851063, 3.3687260101009766, 3.311314718614687, 3.595174278499252, 3.5296698773448423, 3.7003593073592804, 3.9385151515151233, 3.735803427128404, 3.41480883838384, 3.585302813852795, 3.4745279220778973, 3.9185570346320056, 3.7592962481962178, 3.486479978354974, 3.8393852813852494, 3.8573654761904437, 3.4592840187590146, 3.6372647907647564, 3.491373917748892, 3.5222782106782127, 3.1037520562770293, 3.1427710678210454, 3.1038980158729994, 3.4805213203463055, 3.4273725829725574, 3.5533672438672124, 3.350636724386692, 3.277879401154378, 3.087824567099541, 3.354064033189007, 3.3639781746031447, 3.4742085137084886, 3.408402922077899, 3.2825458152957903, 3.3410189754689545, 3.0895797979797734, 3.345407936507911, 3.2742588744588463, 3.323565476190458, 3.342159343434313, 3.3118380230879905, 3.3105143939393584, 3.574543686868659, 3.2456749999999737, 3.702095562770528, 3.484882142857116, 3.4412795093794815, 3.3610001082250855, 3.3259004329004056, 3.299636940836916, 3.310620454545423, 3.3106068542568217, 3.193811868686848, 3.193097294372282, 3.3568299062048905, 3.702316919191894, 3.5013550144299823, 3.4215923881673738, 3.506765584415548, 3.3899803751803486, 3.6945169552669253, 3.711533333333305, 3.428347150072119, 3.5407994227993957, 3.415917316017286, 3.602492135642109, 3.3516905483405233, 3.4937615440115164, 3.3465848124097883, 3.6431656204905853, 3.455759595959565, 3.5507610389610096, 3.735513347763312, 3.5690356782106485, 3.6626385281384994, 3.4214403679653413, 3.3458831529581228, 3.4223195887445623, 3.214317099567075, 3.520089971139938, 3.50148300865801, 3.285295779220757, 3.513967279942254, 3.2146534271284053, 3.775198196248169, 3.309313744588742, 3.51221118326115, 3.5190541125540897, 3.6441970779220503, 3.2737312049061917, 3.2533346320346204, 3.534920165945135, 3.34213506493505, 3.5647300865800644, 3.5926136724386377, 3.5824129509379157, 3.215714754689727, 3.576672655122633, 3.428462698412672, 3.546287121212088, 3.579698232323202, 3.398850577200548, 3.590693795093765, 3.2800432900432677, 3.243457467532437, 3.0973876623376397, 3.181476948051925, 3.3555856060605724, 3.1973164862914554, 3.438973629148602, 3.325483658008628, 3.3268675324675043, 3.1676551226550926, 3.516073773448748, 3.1720977272727016, 3.268199025974013, 3.3382970779220615, 3.5716723665223387, 3.19889238816737, 2.967476010100994, 3.4313112193361945, 3.344845707070678, 3.210405808080794, 3.4367728354978047, 3.409192821067799, 3.2581446608946343, 3.729139898989863, 3.5155786075035853, 3.552393939393917, 3.510777020201993, 3.3265735569985337, 3.5611388528138184, 3.7272744588744278, 3.606727308802279, 3.431069624819599, 3.2805018037517706, 3.680867532467507, 3.6769692640692315, 3.3799514790764436, 3.3568438311688062, 3.310554148629122, 3.3588836940836684, 3.421560245310213, 3.112643217893189, 3.372487590187571, 3.289213708513684, 3.211331024530997, 3.448871284271258, 3.3918985930735683, 3.4484406204905924, 3.286959487734463, 3.6204026334776, 3.2932676767676465, 3.4531854617604356, 3.4464982323232016, 3.478259199134165, 3.74755256132753, 3.665920670995643, 3.3949281024530813, 3.431939466089442, 3.5051549422799138, 3.5807889610389365, 3.5628576479076264, 3.595267712842687, 3.6470455988455726, 3.5960507936507744, 3.6910909090908857, 3.5782125180375033, 3.72950537518035, 3.4206854256854227, 3.8216659451659187, 3.7421142496392217, 4.147200685425667, 3.7451773088023073, 4.147426334776302, 3.984676046176011, 3.685232611832583, 3.9935109307359045, 3.9439207431457213, 3.5962713564213558, 3.80488759018756, 3.7920375180374886, 3.948422799422774, 3.7927737373737123, 3.6001641414141363, 3.7742449494949173, 3.388156673881654, 3.9485348845598573, 3.4053584054833914, 3.954560858585828, 4.0226882395382155, 3.629492676767648, 3.5969270923520797, 4.010415151515122, 3.4300081529581283, 3.530816991341966, 3.0276393939393835, 3.2839277056276877, 3.5785658369407987, 3.6461273448773133, 3.340764862914837, 3.3068593073592796, 3.3210115800865516, 3.361639646464616, 3.1694581529581307, 3.4587358585858277, 3.434646464646432, 3.2456739177488894, 3.444018939393904, 3.294210678210661, 3.248437626262598, 3.234373015872986, 3.2943115079364746, 3.348665584415553, 3.6170267316017055, 3.2962321067820883, 3.6319436868686563, 3.506721861471836, 3.2707587301587093, 3.580264790764761, 3.6538567460317157, 3.781592929292896, 3.512024855699832, 4.065627777777755, 3.4558023809523557, 3.7071216450216204, 3.610629184704154, 3.9740994588744334, 3.7783087662337316, 3.8356606421356125, 3.598921536796512, 3.85647849927847, 3.6112081890331953, 3.73320519480517, 3.5666824675324382, 3.5021754689754476, 3.5095670634920655, 3.5592421717171434, 3.5639668109667864, 3.5277828282828043, 3.657736688311658, 3.4651095959595715, 3.305879978354954, 3.7847322871572646, 3.503737590187556, 3.5043554834054595, 3.2887750360750063, 3.433892316017287, 3.4998115440115183, 3.552966594516565, 3.4754791486291254, 3.356924242424243, 3.456035064935035, 3.445798015872991, 3.535082575757547, 3.2947570707070515, 3.567877849927818, 3.681597763347736, 3.5667389971139745, 3.2683188672438575, 3.4642796897546697, 3.3572144660894465, 3.3607319264069133, 3.212450577200565, 3.6525105339105033, 3.4793737734487555, 3.4775085497835345, 3.6062082251081877, 3.7482332251081965, 3.442379473304444, 3.3954452380952045, 3.412177092352078, 3.5495773088022857, 3.564922691197666, 3.6205212481962232, 3.2609438672438387, 3.6752559523809274, 3.272239610389584, 2.9801947330447147, 3.3564827200576963, 3.3343944805194585, 3.48683261183259, 3.4518416305915984, 3.348361002885978, 3.2040485930735687, 3.3199879870129547, 3.205026154401122, 3.29963235930733, 3.0919650072149785, 3.279641666666645, 3.3240539321789, 3.0736753246753, 2.9690643939393744, 3.1888418470418256, 2.991413455988431, 3.0258325036074756, 3.0204678932178632, 3.021924567099542, 3.2882160173159933, 3.204095490620467, 3.172494877344848, 3.1429314213564026, 3.246805591630561, 3.2295435786435545, 3.1916817821067593, 3.1849388528138296, 3.264594769119737, 3.253323232323211, 3.313783946608918, 3.3981207070706776, 3.2029621933621715, 3.056548701298679, 3.281959776334753, 3.37488766233763, 3.4568145382395135, 3.3975631673881375, 3.4683910173159886, 3.4598494227993952, 3.547852380952354, 3.513266630591596, 3.6119147186146905, 3.3860443001442895, 3.798192135642102, 3.5819001443001177, 3.6458766233765956, 3.77522160894658, 3.839735750360718, 3.8205463203462906, 3.748179112554095, 3.6778824675324375, 3.9560442640692393, 3.6466014069263792, 4.105456890331881, 3.640036507936488, 3.74033106060603, 3.768739538239509, 3.8072537157286863, 3.9062840909090686, 3.4260369769119814, 3.7863055555555243, 3.78164051226548, 3.746045021644992, 3.51459336219334, 3.7599053030302736, 3.4996638888888763, 3.4753845598845423, 3.332392784992764, 3.563137770562745, 3.8073939754689374, 3.5301629870129583, 3.499234343434307, 3.9113434343433973, 3.479814898989867, 3.4890277056276755, 3.5892221500721218, 3.825701334776307, 3.861177561327532, 3.502567243867216, 3.81579650072147, 3.7933328643578426, 3.675196717171684, 3.8624801948051624, 3.56947189754687, 3.6386884920634697, 3.6098101731601426, 3.7604594877344626, 3.8828071428571134, 3.7859010822510566, 3.70667229437227, 3.5614331168830917, 3.41912168109666, 3.5976551587301326, 3.4759791486291216, 3.479969805194774, 3.564036652236621, 3.5070527417027155, 3.4022931457431267, 3.449955808080775, 3.4480512265512075, 3.2308383838383596, 3.3704260822510643, 3.3097766955266743, 3.3018385642135386, 3.3617386724386575, 3.3001290043289764, 3.405646392496369, 3.3733556637806377, 3.0916452020201723, 3.1092012626262338, 3.1114504689754385, 3.0636422077921766, 3.0900715367965272, 3.4386662698412422, 3.4645195526695245, 3.2662871933621718, 3.209582251082224, 3.1671649350649154, 3.267487770562745, 3.405252561327534, 3.482654906204877, 3.410225360750333, 3.4568589826839466, 3.409731673881641, 3.3557760822510487, 3.629376443001414, 3.4271317460317245, 3.4689937590187303, 3.4349111832611547, 3.3502634559884306, 3.728931457431433, 3.545914574314549, 3.643766053391028, 3.64771673881671, 3.5042599567099253, 3.4796288600288263, 3.4890362554112238, 3.3576122294372106, 3.427441450216436, 3.582754076479051, 3.220858621933602, 3.3574342352092055, 3.437404581529551, 3.675140512265485, 3.424168181818158, 3.310525036075008, 3.845993470418438, 3.3430877705627493, 3.688813419913398, 3.587023124098101, 3.607982431457401, 3.4523918470418202, 3.5150403318903085, 3.740563419913391, 3.4170972582972365, 3.4382436868686623, 3.4544801587301355, 3.4700048701298405, 3.64237027417025, 3.7181522005771748, 3.76773235930733, 3.8036698773448556, 3.603340295815268, 3.4686201659451372, 3.3965019480519185, 3.866855086580063, 3.5083548701298386, 3.519097258297231, 3.5275872294372017, 3.4367401154400894, 3.3442108585858414, 3.516039935064914, 3.6635513347762982, 3.5473786435786105, 3.358969119769091, 3.2345472943722724, 3.3152066738816472, 3.346451370851341, 3.5728712121211808, 3.5150260461760245, 3.405284595959571, 3.3147844877344608, 3.43919390331888, 3.3951339466089183, 3.3184705266954966, 3.2932339105338797, 3.5346379148628864, 3.201012662337648, 3.0851743145742914, 3.333957647907621, 3.3140123015872724, 3.4374105339105028, 3.3955465728715457, 3.5061332251081923, 3.4130918470418248, 3.3304228354978065, 3.4586151515151218, 3.5243240259739927, 3.364735533910517, 3.526755735930707, 3.440016197691169, 3.457657756132736, 3.7400516955266654, 3.5854507215006857, 3.3935459956709706, 3.7254863997113703, 3.603810894660871, 3.336609632034617, 3.7665870490620175, 3.7118640331890043, 3.606733369408347, 3.9069281385281083, 3.689419552669538, 3.7960822150071887, 3.3901930014429866, 3.81042189754687, 3.798904870129839, 3.848026046176016, 3.3415179653679545, 3.467704834054814, 3.4236456709956435, 3.6321060966810634, 3.575284668109639, 3.425004437229413, 3.6091154761904494, 3.48379411976909, 3.3744406926406656, 3.5401090187589963, 3.419716161616134, 3.525866991341967, 3.5295922799422534, 3.493885786435757, 3.6651790043289707, 3.415164971139945, 3.37961136363633, 3.3236186147185927, 3.2771879509379325, 3.4328628427128174, 3.461671825396794, 3.270994480519451, 3.295196139971119, 3.1723265151514917, 3.536570129870099, 3.2166522366522186, 3.565144119769092, 3.223754076479058, 3.051684415584403, 3.255904076479052, 3.3915213924963665, 3.2287569264069043, 3.016065584415568, 3.388320021644989, 3.603103751803725, 3.139857467532448, 3.1313317460317243, 3.2494726551226254, 3.1663018759018478, 3.4029310245309907, 3.222074242424218, 3.27107308802306, 3.2571795093794793, 3.585937914862886, 3.177328715728687, 3.4052170995670767, 3.3472803391053048, 3.229482323232298, 3.024075793650773, 3.237213131313113, 3.301861940836913, 3.2368190476190195, 3.1758378066377886, 3.0288887806637534, 3.2554718975468697, 3.3707642496392176, 3.301521031746003, 3.2818984848484605, 3.2945293290042996, 3.23685479797977, 3.5129128787878523, 3.412845526695512, 3.4340351370851288, 3.4781696608946473, 3.384022113997097, 3.4147492424242136, 3.4334671717171448, 3.3263230158729886, 3.3432296536796344, 3.3406843795093453, 3.422551046176019, 3.4054839105338868, 3.537198665223648, 3.2646361111110846, 3.3341910533910233, 3.3316004689754437, 3.3864097041846692, 3.570943578643548, 3.509339213564184, 3.5152765151514846, 3.6746996753246477, 3.8705205266954983, 3.7263535353535113, 3.577780122655094, 3.5061430375180134, 3.4275291486291213, 3.660867424242391, 3.5146336580086244, 3.6771347763347424, 3.3864599567099325, 3.5480509740259403, 3.2973889971139703, 3.6186298701298427, 3.689237806637774, 3.427964393939368, 3.618039971139942, 3.5546121933621606, 3.501055447330411, 3.6057705988455657, 3.4794660894660634, 3.3378413419913167, 3.4324266594516315, 3.4498295815295474, 3.6464845959595635, 3.6624040764790475, 3.578464357864327, 3.479970165945148, 3.377106565656535, 3.2680892496392286, 3.3914451659451386, 3.352194769119742, 3.2496693001442756, 3.3503813492063195, 3.279417965367944, 3.175944300144276, 3.156163600288571, 3.4042874819624496, 3.037520093795071, 3.180649711399688, 2.919877308802283, 3.0414498556998244, 3.2116134559884277, 3.092088492063465, 3.1874730158729885, 3.2426882395382193, 3.207126984126963, 3.071506349206317, 3.1465034992784737, 3.1830806998556755, 3.2451583694083546, 3.370305844155817, 3.4590401515151368, 3.3565412337662175, 3.296729942279917, 3.732933225108192, 3.812640115440085, 3.5067418109667923, 3.3286001082250856, 3.565257720057693, 3.357377164502144, 3.4495586940836636, 3.4649602092351826, 3.6682970057719766, 3.593632287157253, 3.435684487734463, 3.191418470418451, 3.383928282828253, 3.4826384920634625, 3.4158879148628865, 3.3031393217892937, 3.3177154761904464, 3.234603318903287, 3.34059657287154, 3.3962244227994014, 3.4314681096680784, 3.252552417027385, 3.3811533910533784, 3.478087662337635, 3.499653391053365, 3.363267316017299, 3.3992860389610184, 3.6059651875901597, 3.527818362193333, 3.5988312049061744, 3.3269517316017048, 3.5070900072149778, 3.2580101010100906, 3.342906601731585, 3.8459952380952145, 3.553795670995656, 3.46734981962479, 3.6573095598845304, 3.3555522005771796, 3.528958008657978, 3.16862774170271, 3.3643081529581242, 3.1067647186146927, 3.267607251082217, 3.521641017315985, 3.568632575757546, 3.388342496392468, 3.397970707070671, 3.3222712121211866, 3.311816774891755, 3.494348809523783, 3.4307514069263774, 3.4696966089465793, 3.5920419552669283, 3.304076948051914, 3.433621753246725, 3.4626255050504775, 3.6986308802308607, 3.5313507215007176, 3.5227820707070405, 3.510237229437203, 3.5611455266955003, 3.7341239898989644, 3.8646229076478895, 3.6309011183260904, 3.4476814935064874, 3.489286940836936, 3.723016305916281, 3.4772640331890092, 3.531453066378036, 3.1177441197691054, 3.1153114357864204, 3.273820238095216, 3.284969300144268, 3.7154511183260883, 3.4367958874458635, 3.3604604617604314, 3.4309742424242176, 3.5005072510822206, 3.542159343434319, 3.515248593073566, 3.338075360750336, 3.492381565656538, 3.379949242424222, 3.5675239538239176, 3.399956782106751, 3.4335354617604295, 3.5673384920634668, 3.973664898989873, 3.9762284271284027, 3.420767316017318, 3.6485971139970896, 3.5923964285714027, 3.5358263347763215, 3.509409018758993, 3.2662573953823912, 3.4314336219335946, 3.128323412698386, 3.51868647186144, 3.433025649350624, 3.3481677849927594, 3.71658492063489, 3.478176190476171, 3.4772314213563953, 3.468484632034606, 3.311258946608924, 3.246793939393928, 3.391692027417001, 3.2549115079364843, 3.4633527056276723, 3.3167235209234915, 3.2556463564213316, 3.1392842712842453, 3.3337230519480263, 3.363893109668078, 3.0325428932178715, 3.297155266955239, 3.419098484848458, 3.394329906204877, 3.128301118326095, 3.3238247835497607, 3.526084632034606, 3.348428427128393, 3.163891702741679, 3.5406242784992514, 3.535791955266924, 3.2986476190475944, 3.2868034271284077, 3.6051371933621637, 3.3741913780663473, 3.3029564213563973, 3.5529274170273886, 3.285558549783526, 3.44070685425683, 3.118360606060597, 3.4695370129870016, 3.320935101010085, 3.4321410173159865, 3.4427227994227767, 3.371411183261164, 3.418395815295788, 3.695612121212088, 3.369096067821049, 3.350593759018732, 3.5114657287156934, 3.449411327561307, 3.762176370851344, 3.5213013347763136, 3.465448448773422, 3.4717955627705384, 3.3451326839826607, 3.348158152958127, 3.573898015872994, 3.3418505050504823, 3.5892918109667775, 3.2881344877344607, 3.225565945165921, 3.264094155844122, 3.580417279942252, 3.438658044733019, 3.537395670995643, 3.4818023088022776, 3.7355999999999665, 3.415030844155812, 3.585942821067794, 3.6696440115439897, 3.373930266955245, 3.5444771645021325, 3.5229137806637545, 3.4505726911976633, 3.7583227272727013, 3.5054104978354674, 3.6540463564213272, 3.799247258297236, 3.551510425685395, 3.5837524170273958, 3.833056385281351, 3.848905086580055, 3.6971187950937767, 3.9262800144299903, 3.7738882034631804, 3.899403102453076, 3.7568143217892924, 3.4896533910533623, 3.7308550505050135, 3.697004581529554, 3.3937535714285465, 3.535686976911949, 3.2267860028859787, 3.356195129870107, 3.63035836940834, 3.4226680735930453, 3.442715909090883, 3.3858884920634607, 3.423125649350624, 3.5948661255410985, 3.6420011183260863, 3.708495057720032, 3.587235461760437, 3.683907287157255, 3.7002438672438376, 3.4861068542568243, 3.3675042568542253, 3.5612965007214705, 3.500470129870099, 3.3602507936507657, 3.636046176046145, 3.522916341991325, 3.497580663780642, 3.690469372294338, 3.6060645743145447, 3.644811724386692, 3.6536642857142603, 3.965334740259709, 3.879871753246727, 3.9511494949494668, 4.277502922077899, 3.7832327561327506, 3.6596574314574313, 3.748019949494924, 3.921633766233739, 3.8337047979797827, 3.8343445887445595, 3.7774083333333266, 3.4919866522366307, 3.7019623376623083, 3.6722295815295687, 3.6322216810966514, 3.5369191919191807, 3.5602589826839584, 3.528700685425659, 3.6395221139970877, 3.4774062049061767, 3.60382658730155, 3.5219669552669277, 3.5630664502164278, 3.6118990259740036, 3.1876184704184434, 3.4022407647907302, 3.402097113997087, 3.2882639971139733, 3.408768434343407, 3.4178721500721303, 3.319721284271258, 3.7166531024530745, 3.473469805194787, 3.5031987373737055, 3.60094823232321, 3.2954556637806487, 3.368213492063471, 3.4729846681096346, 3.4928088383838105, 3.4075845238095064, 3.5050091991341783, 3.215383369408348, 3.3048231601731315, 3.3146879148628883, 3.214261111111085, 3.3294045454545143, 3.4625344155843862, 3.3597731601731287, 3.5401110389610206, 3.5354791125540825, 3.2840710317460147, 3.4231416305916063, 3.3915059523809283, 3.4895091630591364, 3.299442821067802, 3.6742915584415274, 3.7748194444444185, 3.3984292929292788, 3.2398453463203296, 3.3642381673881396, 3.221906709956688, 3.23176601731599, 3.3734101010100725, 3.4290704906204623, 3.0402055916305706, 3.3874865079364764, 2.994383116883088, 3.3437816017315765, 3.237695021644999, 3.330110173160142, 3.3629887085136874, 3.3908475108224816, 3.484928174603156, 3.0881104617604334, 3.202745274170244, 3.255394516594499, 3.409432683982662, 3.478451334776305, 3.497638816738791, 3.2357585137084866, 3.5552397907647637, 3.2918890331890007, 3.422978174603147, 3.8572849206348883, 3.510759271284247, 3.62890349927847, 3.664118001442976, 3.600905555555533, 3.7091292207791913, 3.6392762626262387, 3.572951443001423, 3.5601971139970914, 3.660110317460305, 3.6765979437229133, 3.412322727272703, 3.7703290043289757, 3.7946293650793357, 3.667029076479054, 3.4011636002885743, 3.2417950937950804, 3.270664682539667, 3.13488391053389, 3.224727128427104, 3.1870563852813647, 3.0858820346320126, 3.098735353535326, 3.0390556637806423, 3.0424986291486005, 3.0088238455988243, 3.062605591630571, 3.0816245670995444, 3.1512796176045876, 3.0633242784992536, 3.22363466810964, 3.1604117604617334, 3.0620321789321574, 3.2911123015872814, 3.1203882395382165, 3.262742857142836, 3.13222507215005, 3.1551866522366234, 3.4478593434343234, 3.7096640692640364, 3.623038131313101, 3.631649062049038, 3.4473424963924764, 3.5882760461760164, 3.355024819624791, 3.1721180014429806, 3.3838642135641854, 3.436767352092324, 3.6077505050504817, 3.599784307359275, 3.560177092352061, 3.5208250721500454, 3.737729184704158, 3.4897681457431284, 3.3540463924963637, 3.309455122655091, 3.322567857142823, 3.465579509379475, 3.4635800144299838, 3.2191497835497604, 3.3907672799422546, 3.410657683982669, 3.5393303751803384, 3.5435823953823697, 3.3462692279942097, 3.682383658008629, 3.7238622655122304, 3.2819155122654986, 3.5930227272727047, 3.5576072510822274, 3.5780936147185813, 3.580565800865771, 3.579368506493504, 3.428713924963906, 3.6912698773448502, 3.5260678571428357, 3.7393293290042964, 3.5925116883116663, 3.3407744949494638, 3.6755432900432647, 3.609734054834021, 3.276879725829703, 3.4092208152957895, 3.4774647186146876, 3.4124670274169966, 3.392202308802283, 3.5979439033188743, 3.6049528499278223, 3.359168434343421, 3.5331833694083388, 3.245912770562749, 3.6636321789321546, 3.5765584054833757, 3.515837265512247, 3.5235558080807805, 3.388322691197665, 3.4548350649350392, 3.312174025974002, 3.454804545454517, 3.4240432900432647, 3.251796103896093, 3.499100541125515, 3.559444300144273, 3.404926695526667, 3.150082287157269, 3.5468947691197448, 3.5719242424242177, 3.846645887445854, 3.5003994588744254, 3.466363888888866, 3.5936204906204607, 3.317161796536781, 3.550737914862882, 3.398055627705617, 3.3350317460317305, 3.3182979797979644, 3.1948424963924733, 3.392061976911944, 3.315793326118302, 3.234455591630566, 3.339489213564185, 3.1336337662337383, 3.4555170634920396, 3.1809435064934855, 3.4091295093794742, 3.2885829365079147, 3.321748124098094, 3.348441810966788, 3.3545588383838085, 3.328137229437209, 3.4937378066377733, 3.560633189033164, 3.3632632034631693, 3.6589178571428342, 3.3410982683982637, 3.631804076479054, 3.708197041847022, 3.4343059884559533, 3.944843578643554, 3.7046336580086288, 3.818107575757573, 3.5653866522366253, 3.728965440115411, 3.5002593073592987, 3.4668678571428284, 3.511678643578617, 3.723541269841241, 3.504458658008651, 3.390659343434324, 3.1621963924963703, 3.5616936868686606, 3.5128092712842425, 3.3239455988455693, 3.5653143217893146, 3.3234410173159916, 3.2450533549783414, 3.059018686868667, 3.319816378066349, 3.4442416305915993, 3.3818784992784656, 3.170984415584388, 3.3056177128426913, 3.3042667388167106, 3.2166712481962265, 3.3423686507936226, 3.111225649350632, 3.027165476190449, 3.2639813852813595, 3.366237049062023, 3.4600901154400856, 3.4695975829725527, 3.297142424242402, 3.3276815295815036, 3.39976803751801, 3.6052043290042977, 3.498164393939372, 3.6485943001442687, 3.8511086219335904, 3.5735156565656396, 3.7778273088022827, 3.687921897546879, 3.933171608946582, 3.6461312409812194, 3.566362337662319, 3.865998304473284, 4.039666089466054, 3.5157979076478894, 3.7220935425685213, 3.674063311688286, 3.5653184343434132, 3.5493777777777518, 3.7755687229437007, 3.6763974747474517, 3.7203016594516347, 3.944386219336194, 3.817850974025948, 3.5045197691197485, 3.63245775613273, 3.5731492424242117, 3.4249717532467248, 3.392762770562741, 3.6517767316017076, 3.2314377705627484, 3.1691238095237906, 3.123347438672417, 3.4578244227993933, 3.370463564213537, 3.141715476190451, 3.117276298701273, 3.421816305916277, 2.993917748917723, 3.0623917027416776, 3.085419227994209, 3.2477714646464415, 3.030100036075013, 3.008508766233741, 3.3561304112553825, 3.06931850649348, 3.2820080808080556, 3.2633246392496082, 3.350994300144277, 3.258759451659426, 3.3789427128426834, 3.2041819624819357, 3.2528822871572602, 3.184001551226532, 3.5099234126983894, 3.324015584415548, 3.334224639249613, 3.4060054473304238, 3.381776984126954, 3.4260869769119493, 3.5324176406926084, 3.4742656565656262, 3.7628400793650503, 3.5655944444444265, 3.744225324675295, 3.648027886002856, 3.498587698412671, 3.5333209956709757, 3.510369191919163, 3.5610697691197384, 3.468517316017278, 3.439311075036044, 3.3486800505050316, 3.1200852453102286, 3.568140620490586, 3.4685592712842475, 3.658890764790734, 3.452325432900419, 3.6286344516594258, 3.4652862554112214, 3.1714975468975344, 3.5588746392496122, 3.518435245310228, 3.3351255772005577, 3.444261183261156, 3.3945371933621633, 3.2532058802308557, 3.523356601731572, 3.3199512626262466, 3.336163780663762, 3.624222546897518, 3.27864527417026, 3.383857359307343, 3.4687199494949184, 3.3775718614718366, 3.36486388888886, 3.3247165223664874, 3.1915815656565427, 3.487166486291452, 3.4084391774891474, 3.3289493506493284, 3.53820367965365, 3.2706604256854037, 3.5810324314574014, 3.586733549783519, 3.5832416305916053, 3.7530400432900137, 3.744382467532444, 3.1157256854256654, 3.420584379509361, 3.4392482323232083, 3.349538095238066, 3.347660101010074, 3.34180750360748, 3.635148196248164, 3.478687518037494, 3.780362806637777, 3.7351739177488867, 3.4630984126983906, 3.478062662337649, 3.372355880230862, 3.471221608946589, 3.6175063852813563, 3.3491467893217695, 3.4133934704184394, 3.495904617604589, 3.5395332251082037, 3.4271725468975163, 3.485637121212097, 3.2350181457431226, 3.4853507575757354, 3.7104887445887154, 3.5993306998556727, 3.746912662337635, 3.3442119408369173, 3.5813937590187233, 3.317807503607479, 3.515325541125518, 3.3407977272727023, 3.296764213564186, 3.606743831168802, 3.3111018037517836, 3.336507900432876, 3.5167633838383576, 3.610129076479046, 3.5471554834054584, 3.4708850288600055, 3.4971423160172925, 3.5846604617604325, 3.3250670274169964, 3.551883658008628, 3.59935093795091, 3.5694747113996956, 3.856062662337635, 3.6670086580086214, 3.48545667388164, 3.781880519480494, 3.5229841630591365, 3.6372426046175743, 3.936560714285702, 3.5249467532467333, 3.5286906565656357, 3.7459687590187474, 3.467804906204903, 3.5765190476190436, 3.2939776334776085, 3.3860852453102215, 3.290873304473279, 3.314410461760432, 3.326697077922061, 3.5158777777777455, 3.6511744227993956, 3.6070009379509127, 3.756421572871551, 3.450377561327544, 3.5984530663780405, 4.037453643578615, 4.022092135642114, 4.448527705627676, 3.9957113997113742, 4.271315909090886, 4.164157972582948, 4.178872871572849, 4.158167424242403, 4.276667496392467, 4.155344372294351, 4.321037193362181, 4.088869624819597, 4.249960209235189, 4.089403066378038, 4.140151587301561, 4.2251545815295515, 4.008581818181795, 3.9884704545454253, 4.110306457431437, 4.109988997113972, 3.7899787518037233, 3.713131565656544, 3.6306691197690926, 3.5057138888888604, 3.5010483405483135, 3.349766378066349, 3.3140680735930417, 3.1471725108224855, 3.509508838383807, 3.5799866522366273, 3.9397041486291378, 3.4254500721500447, 4.285101659451664, 3.371495743145715, 3.6270672799422505, 3.440475216450196, 3.939636760461752, 3.707285137085113, 3.6440493506493317, 3.6337319264069072, 3.4206152597402317, 3.4766953463203216, 3.645578391053363, 3.5364712842712787, 3.3782433621933396, 3.3004218975468627, 3.342176767676749, 3.1945509379509205, 3.4491018759018437, 3.508118831168803, 3.7443132034631774, 3.3601994227993894, 3.5442215367965004, 3.4196651515151246, 3.63979310966808, 3.424614466089444, 3.315955519480494, 3.378141955266924, 3.826569588744562, 3.3523027417027205, 3.433705194805169, 3.3523681818181554, 3.5237727272727, 4.023938961038932, 3.479545021644994, 3.4745572871572614, 3.5017689033188772, 3.716824386724349, 3.6588534271283986, 3.6964095959595684, 3.739368975468943, 3.5996099927849623, 3.613793975468953, 3.611695526695507, 3.704940404040386, 3.6758972943722688, 3.557323953823934, 3.4368426767676534, 3.2390504329004095, 3.526259704184679, 3.5329863997113713, 3.447791378066345, 3.7927203102452864, 3.5176984487734213, 3.441510966810936, 3.516128535353503, 3.5686651875901587, 3.496300144300112, 3.569259379509364, 3.65160790043287, 3.3929287157286967, 3.4763750360750105, 3.632346176046143, 3.625511327561301, 3.6000547979797726, 3.4161343434343197, 3.3325566378066145, 3.487288852813828, 3.4927690476190207, 3.246955627705599, 3.5028846681096413, 3.4991487734487468, 3.6180824675324432, 3.604977200577178, 3.665578427128402, 3.7045176046175747, 3.363262770562753, 3.7029059884559645, 3.5607610750360443, 3.4711203823953536, 3.64831006493504, 3.596419552669521, 3.3775670995670706, 3.4016603896103663, 3.4494856060605867, 3.1238439393939124, 3.40199494949492, 3.342463095238067, 3.334388131313099, 3.423255194805163, 3.3052384199133953, 3.456070923520902, 3.7392691919191714, 3.5142265873015615, 3.6688252164501858, 3.531621067821046, 3.461052380952353, 3.44930039682537, 3.315392784992763, 3.3503586940836665, 3.340679401154373, 3.5511273448773175, 3.064562121212096, 3.2278831890331623, 3.2610421717171456, 3.488687229437205, 3.2828787157286947, 3.355658694083674, 3.5122380952380756, 3.6231826118325867, 3.4042028860028624, 3.6339021284271085, 3.8676437950937617, 3.536569805194786, 3.7001546897546618, 3.346895238095218, 3.4263069624819398, 3.6255772366522026, 3.7808272366522058, 3.4349837662337435, 3.5832102453102155, 3.611504797979772, 3.4380056998556734, 3.5092514069263805, 3.517610750360727, 3.3764633116882967, 3.598326515151488, 3.6246312770562468, 3.4501836940836665, 3.474727164502134, 3.6527933982683662, 3.396318217893184, 3.5723413059162787, 3.4645700216449953, 3.5002759018758915, 3.4343788239538164, 3.2907455266955017, 3.5791827922077823, 3.5811041847041523, 3.2080687590187362, 3.395273845598816, 3.296913997113997, 3.3370277056276767, 3.4184201298701087, 3.5207560966810934, 3.385987085137057, 3.6008587301587056, 3.562529473304443, 3.4884353174602842, 3.6302541125540957, 3.655049206349201, 3.4293432900432617, 3.603386616161588, 3.5594039682539367, 3.4276949134198866, 3.5731476190476013, 3.205585569985554, 3.5695164141413787, 3.6405999639249353, 3.618561219336193, 3.660250360750329, 3.5690231240980976, 3.6049422799422612, 3.5725487012986776, 3.397205880230845, 3.442501334776311, 3.499210028859999, 3.5931566378066053, 3.5507364357864137, 3.5834439033188734, 3.479485028860012, 3.478391919191899, 3.310271031746012, 3.5914571067820766, 3.59273351370849, 3.6750512987012716, 3.607822258297232, 3.55760111832609, 3.7067989898989624, 3.362148917748913, 3.593859054834024, 3.4050120490620444, 3.5975595598845334, 3.3239717893217646, 3.3990839826839627, 3.3267614357864193, 3.509855303030277, 3.202276551226535, 3.4406770923520726, 3.6713771284271, 3.4813761183260956, 3.596760173160144, 3.6847953463203065, 3.716108116883086, 3.600093542568525, 3.6075520562770294, 3.595976875901851, 3.7360333333333013, 3.5165599927849662, 3.4992221861471586, 3.5285116522366247, 3.5480345959595785, 3.6082134920634688, 3.6220694805194547, 3.67156269841267, 3.6052178932178642, 3.4293011544011334, 3.508401695526665, 3.3518581529581355, 3.4332445165944865, 3.796077777777752, 3.43247968975467, 3.673125685425663, 3.6116721139970918, 3.69820508658006, 3.468771645021611, 3.539292676767656, 3.9654474386724057, 3.5753493506493186, 3.5659643217892913, 3.646480483405451, 3.7614234487734186, 3.743483910533883, 3.677483405483375, 3.6442661255410935, 3.6370542568542232, 3.6693554834054574, 3.8534254329003965, 3.6992376262625917, 3.6259961038960804, 3.6497096681096464, 3.7212052308802, 3.518662987012963, 3.626205266955236, 3.6703412337662047, 3.395637950937921, 3.3346030663780395, 3.438943542568505, 3.7228614357864007, 3.486473124098101, 3.6825029942279692, 3.3514910533910256, 3.528390476190444, 3.467328607503571, 3.527324206349173, 3.532494516594491, 3.204221861471843, 3.3100978715728555, 3.3343236652236454, 3.7396380591630316, 3.4669422799422485, 3.651525036075008, 3.5661218975468665, 3.2572421717171456, 3.3703782106781865, 3.4356599206348952, 3.4426006854256577, 3.52744747474745, 3.5517226911976643, 3.8167528138527906, 3.351922474747451, 3.56634711399708, 3.315893290043271, 3.3682616883116667, 3.5770427128426805, 3.6553499278498944, 3.6734190836940623, 3.3596617604617367, 3.4726179292929005, 3.421943759018734, 3.392463744588717, 3.4646640692640367, 3.5472951298701036, 3.4068395021644733, 3.591805627705602, 3.152540909090888, 3.3409378427128096, 3.6109486291486004, 3.552807106782076, 3.3760063492063237, 3.566610497835468, 3.4967387445887104, 3.322296428571404, 3.711784740259713, 3.2046276334776125, 3.587404473304442, 3.7483380591630366, 3.6487572871572604, 3.3524051948051667, 3.333438167388146, 3.4012370129870084, 3.536367929292898, 3.299234235209209, 3.498042893217867, 3.238408369408351, 3.534621139971104, 3.2058287878787657, 3.283614574314555, 3.20107579365077, 3.4033217171716883, 3.199304040404019, 3.4405079004328774, 3.3154903679653454, 3.3920802308802043, 3.2419352813852513, 3.320750216450199, 3.3448606421356177, 3.2142973304472995, 3.3397123015872685, 3.2660753246752994, 3.3130229437229266, 3.141910064935051, 3.3448118326118044, 3.4276056277055997, 3.3064205988455684, 3.451471825396798, 3.312898809523784, 3.342003174603147, 3.288666341991337, 3.4104757215006956, 3.2790400072150057, 3.1991698412698204, 3.384275901875886, 3.1948836940836647, 3.307539538239521, 3.3580050505050245, 3.1081702020201862, 3.1228773809523496, 3.307134054834026, 3.1510627344877142, 3.3209016233765976, 3.479646861471835, 3.4748538961038644, 3.474859776334752, 3.410531132756114, 3.6174274531024215, 3.5371584415584127, 3.3994079004328825, 3.514477272727245, 3.4363025252525023, 3.7218170274169977, 3.6358874098123852, 3.506348881673855, 3.4350543290043003, 3.617922871572844, 3.6134994588744322, 3.830190007214981, 3.6608829004328745, 3.545925937950904, 3.8678587662337347, 3.7508575396825052, 4.00299527417024, 4.1395118326118014, 3.8700648268398044, 3.697943614718585, 4.250540764790739, 3.6429310966810706, 3.6568993506493217, 4.122653643578626, 3.9118182178931953, 4.009558189033159, 3.8579217171716937, 3.910020021645, 3.9288633838383498, 3.6442356421356177, 3.572199711399689, 3.4879789321789265, 3.2705241702741468, 3.35403037518035, 3.2403025974025774, 3.248706240981215, 2.8923446608946417, 3.1936047258296987, 3.0712568181817965, 3.416106782106746, 3.1766304473304254, 2.994570887445865, 3.1402626262626065, 2.8315124458874257, 3.3640485569985255, 3.426519769119744, 3.510397113997085, 3.4856349567099265, 3.2369883116882923, 3.2682865800865604, 3.1922568181818, 3.285399314574291, 3.5574947691197365, 3.364213131313097, 3.551962842712816, 3.5838068542568213, 3.448910137085104, 3.524935461760437, 3.4287505772005535, 3.388999819624796, 3.4520884559884304, 3.486850180375154, 3.288185101010073, 3.298004004328981, 3.235140151515125, 3.7271895743145427, 3.4914124819624623, 3.7120948051947757, 3.715360497835467, 3.42893080808078, 3.4509375180374944, 3.5101240620490306, 3.4411117965367692, 3.5749021284271043, 3.72602968975466, 3.896334884559856, 3.641075072150055, 3.469741594516565, 3.499399278499258, 3.4940156565656286, 3.5175891414141134, 3.351470382395354, 3.7038156204905937, 3.4022489538239284, 3.6769700216449923, 3.602125757575725, 3.625870779220755, 3.6582954545454287, 3.5921053751803558, 3.5201286075035756, 3.513108405483382, 3.4777691558441317, 3.2880247474747195, 3.324983477633447, 3.3475782106781797, 3.2891756132755936, 3.107030844155823, 3.267221753246726, 3.327365909090883, 3.0455752886002667, 3.575517784992755, 3.4836657647907354, 3.235919805194784, 3.2626624819624555, 3.025963239538212, 3.3861622294371996, 3.1655125541125293, 3.3055551587301295, 3.3473224025973765, 3.304992171717144, 3.510782178932155, 3.380530663780633, 3.1728139249639007, 3.3474877344877116, 3.6445877705627407, 3.385356529581502, 3.660799314574289, 3.513949675324647, 3.2966316378066076, 3.65127427849925, 3.7438681096680755, 3.8357191558441364, 3.4628260461760263, 3.2598133838383583, 3.5265018759018565, 3.5011014430014122, 3.35850948773446, 3.6043847402597136, 3.4303568903318706, 3.6693863275613006, 3.494725721500695, 3.438726767676744, 3.4408869408369145, 3.4315762626262365, 3.5394078282828, 3.614963239538234, 3.479173015872981, 3.309512012986989, 3.2107059523809336, 3.539382215007182, 3.278323448773435, 3.405395310245277, 3.061225505050481, 3.246955411255387, 3.3028983405483157, 3.1950409451659194, 3.1305961038960817, 3.3173962121211824, 3.034025649350624, 3.228019624819602, 3.2047064213563847, 3.332253391053361, 3.2388595238094924, 3.314918795093765, 3.3618299783549497, 3.283075252525232, 3.465293434343408, 3.3088450216449994, 3.463889357864339, 3.419786219336196, 3.2087825396825203, 3.522573268398245, 3.3360270923520674, 3.424782034632006, 3.367450757575722, 3.4591977633477367, 3.2789356421356155, 3.6316588383838115, 3.6825156204905922, 3.9001475108224883, 3.862914790764771, 3.8830613275613057, 3.8035015512265207, 3.714767063492031, 3.8134426046175753, 3.587301262626236, 3.3655253246753007, 3.8412998917748764, 4.059842207792186, 4.284045707070687, 4.169291450216422, 4.293944264069251, 4.256984126984106, 3.843303968253942, 4.041025396825378, 3.9166680735930544, 3.8722202380952173, 4.049738059163038, 3.7550568903318675, 3.71240443722941, 3.483060064935031, 3.8624164141413884, 3.347439466089445, 3.5778279220778955, 3.8550708152957913, 4.248108008657984, 4.489894769119746, 4.396559848484826, 4.563660173160153, 4.342820598845582, 4.236970454545442, 4.13688614718613, 4.1565161255411045, 3.945583116883095, 4.237365836940814, 4.3258683261183055, 4.228977669552654, 4.346015656565634, 4.392648737373719, 4.485096789321772, 4.207221067821043, 4.504071753246733, 4.644336219336197, 4.558519841269825, 4.29503279220777, 4.283737518037495, 4.514020382395366, 4.218733802308783, 4.255114466089451, 4.0093888888888705, 3.7060284992784807, 3.902351406926384, 3.5842570707070514, 3.50645266955265, 3.5928034271284037, 3.558307756132728, 3.416949314574288, 3.4641007575757383, 3.208823881673855, 3.2894423160172797, 3.5185549062048813, 3.4904814213563964, 3.6075619769119456, 3.5799585497835196, 3.613853715728691, 3.7100060606060343, 4.105699891774864, 3.673746933621902, 3.9589537878787575, 3.8795498556998282, 3.77941114718612, 3.4756365079364815, 3.7126886002885744, 3.587670959595931, 3.687042424242398, 4.021024458874443, 3.8566215007214795, 3.738314249639221, 3.6091256132755936, 3.628927741702714, 3.5086377344877073, 3.472952200577178, 3.5387726911976634, 3.726934595959568, 3.692004725829703, 3.746876551226521, 3.577973124098105, 3.4958566017315786, 3.437313131313107, 3.4413020923520703, 3.656373051948025, 3.776435750360721, 3.842288311688287, 4.01849570707068, 3.7744726551226213, 3.7897423881673595, 3.5102832972582743, 3.5768917388167107, 3.292435606060583, 3.6728684704184476, 4.157170454545436, 3.5345207792207622, 3.4960542568542294, 3.599462049062024, 3.390737121212097, 3.5566846681096465, 3.5339489538239253, 3.7530128066377797, 3.538101046176021, 4.01714134199132, 3.724827092352062, 3.896990007214978, 3.778241702741681, 3.8946558080807834, 3.7854972222222023, 3.573991450216432, 3.5667772727272453, 3.8854299422799183, 3.8094425685425506, 3.947839826839798, 4.238178643578619, 3.7105190836940576, 3.7696475468975175, 3.611162373737343, 3.996808080808051, 3.989477597402566, 3.7724437950937713, 4.169715043290018, 3.9015271645021343, 3.758420598845573, 3.8888927849927564, 3.6642214285714023, 4.114003102453073, 3.7498011904761652, 3.87393214285712, 3.6473646825396546, 3.549368290043263, 3.5539690115439826, 3.5105417027416825, 3.71054325396823, 3.768528643578616, 3.658768867243839, 3.683383549783529, 3.6796175685425423, 3.651033333333306, 3.742247619047591, 3.7100461038960755, 3.81932330447328, 3.447403066378041, 3.7545474386724127, 3.4887262987012755, 3.6876364718614516, 3.795770670995648, 3.486950108225079, 3.4286481601731302, 3.630055808080781, 3.642051587301558, 3.64739563492061, 3.774097186147163, 3.608849314574286, 4.074280808080791, 3.777415584415552, 3.5965112914862636, 3.5197398629148338, 3.767559307359284, 3.7046252164501903, 4.113040512265486, 4.096717027417011, 3.9257302308801996, 3.5444796176045914, 3.746505375180352, 3.865215404040382, 3.98939765512263, 3.825869913419885, 3.721755699855674, 3.9998325757575564, 3.768903860028831, 3.9001917388167144, 3.765781565656535, 3.7642763347763073, 3.885239502164481, 3.9098973665223395, 3.449542532467517, 3.8661339466089184, 3.7893130591630375, 3.742495598845567, 3.557431204906183, 3.9245551587301395, 3.683747691197666, 3.6981939754689486, 3.3842016233765917, 3.588271356421329, 3.4919087301587046, 3.5403440836940563, 3.671433080808055, 3.8135924963924697, 3.600260678210655, 3.4482345959595735, 3.635264357864336, 3.6944480880230626, 3.6880526695526465, 3.581007611832589, 3.6345391053390834, 3.750940259740235, 3.776628607503576, 3.770705699855664, 3.778300252525232] d1 = pd.Series([s for s in disp]) pred_rrcf = d1 > d1.quantile(0.90) sorted_d1 = d1.sort_values(ascending=False) anom = [] splt = [] sspot = [] for d in disp: anom.append(d) for d in sl_3month_24_24_1000tree: splt.append(d) for d in ss_3month_24_24_1000tree: sspot.append(d) # Create events events = { 'Thanksgiving': (600,648), 'Nov29': (672,696), 'Nov30': (697,720), 'Christmas': (1296, 1320), 'NewYear': (1464, 1488), 'Blizzard': (1992, 2040) } real = pd.DataFrame() real['event'] = np.zeros(len(anom)) real_s = pd.DataFrame() real_s['event'] = np.zeros(len(anom)) for event, duration in events.items(): start, end = duration real.loc[start:end, 'event'] = 1 real_s.loc[start:end, 'event'] = 7 print("Displacement: ", d1.tolist()) print(metrics.classification_report(real, pred_rrcf)) fig, (ax1, ax2, ax3) = plt.subplots(nrows=3, sharex=True, sharey=True, figsize=(8, 5)) ax1.plot(real_s, color='blue', linewidth=0.5) ax1.plot(anom, color='red', linewidth=1) ax1.set_title("SnapSketch", fontweight="bold", fontsize=8) ax1.tick_params(axis='both', labelsize=6) ax2.plot(real_s, color='blue', linewidth=0.5) ax2.plot(splt, color='red', linewidth=1) ax2.set_title("SpotLight", fontweight="bold", fontsize=8) ax2.tick_params(axis='both', labelsize=6) ax3.plot(real_s, color='blue', linewidth=0.5) ax3.plot(sspot, color='red', linewidth=1) ax3.set_title("StreamSpot", fontweight="bold", fontsize=8) ax3.tick_params(axis='both', labelsize=6) plt.xlim([4, 2180]) # plt.ylim([0, 10]) plt.xlabel("Time", fontweight="bold", fontsize=6) plt.ylabel("Anomaly Score", fontweight="bold", fontsize=6) plt.tight_layout() plt.savefig("results/taxiplot.pdf") plt.show() def visualize_vast(): anomaly_detection = AnomalyDetection() sketch_file = "sketches/vast/dim_64_n_3_k_16p_0.2_l_50p10q5.csv" sh_vector = anomaly_detection.read_sketch(sketch_file) true_anomalies = np.array(sh_vector['anomaly']) sl_vast_full = [0.0, 1.0000000000000007, 1.490000000000001, 1.7100000000000013, 1.7800000000000002, 1.455000000000001, 2.203333333333333, 2.5816666666666648, 3.0725000000000007, 2.468333333333332, 2.618333333333333, 3.1201666666666648, 4.885000000000001, 2.832666666666665, 2.8755952380952374, 2.147166666666667, 3.6497857142857155, 1.838214285714286, 5.315777777777774, 2.812238095238095, 3.2381547619047613, 3.078515873015871, 4.529853174603175, 3.7458189033189018, 4.538138888888887, 2.3045234487734487, 3.9079166666666647, 1.9696340603840605, 3.7305703463203455, 2.6001663336663334, 5.102301587301583, 4.11497619047619, 6.937190170940167, 3.3317508602508594, 5.671685637891517, 2.6808455139631597, 4.393103174603173, 3.5497279942279936, 3.46266989443305, 3.0899802741118507, 4.084215673215671, 3.6542838827838815, 9.099530483405484, 3.1833452870658756, 4.91520404432169, 3.5223060689310683, 3.513890062551827, 3.4316554556554526, 7.361717046238782, 3.034030247530244, 3.5310568729516087, 2.922128819280134, 7.7212221455445125, 4.079142108730322, 9.254576312576315, 2.432390327305543, 5.455857618301886, 2.1478042199748724, 5.717154465904462, 3.8056670117322278, 4.421209786945079, 8.25086314289575, 3.9806453075648105, 5.727092564298445, 2.2562179417804407, 4.726554874616326, 2.677858543417364, 4.647202617322312, 3.7667160478410473, 8.502338286713286, 5.371667172696582, 3.7220769479058933, 3.576872840746761, 5.672282716738598, 2.5096632245168564, 9.910175995573049, 3.7785037460976065, 4.679637417536024, 2.716194069819068, 8.629652946976746, 5.139533376711007, 5.80293475274725, 5.964897491397492, 4.9442456430043356, 2.580831972780479, 4.06149549146569, 2.8358605887099064, 7.453780982905984, 8.303637507045242, 8.939271899668952, 3.1272130815419152, 7.212484656361171, 6.0686778583559535, 6.4849147969677405, 1.9282294054311582, 9.1355835577466, 3.6393741215011333, 46.1344817251462, 10.535195634920635, 3.517713645901447, 13.903026048895066, 10.986628982128975, 46.87568816110287, 4.502153165109742, 2.3054975305856416, 3.9902068301925087, 67.18650000000004, 6.436401108076753, 2.9037945225053585, 26.276562895437905, 38.22192063492066, 7.659223675028898, 2.522062522103756, 39.35848469994057, 23.99845426824637, 29.993268808533507, 2.6173386692584395, 4.040253601184814, 69.4936666666667, 3.0327631390127134, 29.84829747540043, 50.814211376858445, 4.523049856432983, 43.74888023088023, 8.065274023338803, 2.5897766484663363, 9.986485255924695, 7.6404389382547295, 32.95801323340515, 26.934599137222552, 2.122800695507033, 22.719991302526008, 2.531943126662511, 2.1558683074106626, 2.5708741409260822, 1.9434624011492079, 2.0757465872643626, 2.112191638790354, 2.1096226232500697, 2.877354582108181, 2.018921542056945, 2.3010023212314104, 3.468095728869127, 2.9194415187548293, 2.192044953956719, 2.656430041857208, 2.247205654490438, 38.94106878306877, 23.100060904008263, 4.288507682349105, 22.36149772449771, 45.40354273504275, 39.483467352092354, 4.040192685218999, 2.062892591069062, 2.6459853032547698, 2.3301549219464825, 4.53012095596005, 2.9772097452807142, 2.8574584285347373, 2.548702471322061, 2.65944699872955, 2.3178856199551947, 3.534616098190533, 3.73302985152985, 1.515600041087059, 2.5456805194805203, 6.110558996558996, 4.519910499042486, 2.2248168402956487, 2.8929118477498887, 4.901385737844415, 3.0371780894668152, 1.8101252678667985, 4.101566830031821, 2.369464362967107, 3.3470473701906855, 2.427038507535658, 1.5092799924770854, 2.2393657326208065, 3.0204576584312086, 4.952721740884551, 4.545370277585918, 3.924783566704709, 5.679710899880955, 2.07507759482395, 3.689693986577186, 4.410048364585616, 2.395058360658565, 3.6105811351207198, 2.115178011484056, 2.8206351638239213, 3.853601344470662, 5.629191429184849, 2.688231487467939, 2.0287039034873398, 5.847567952148525, 2.335106430051789, 5.12541678257092, 3.117835198159749, 5.275337101555593, 4.574242697844625, 7.278482289017314, 7.196986561756102, 7.387243180155941, 5.759555818450555, 2.608319026470451, 4.323878181497967, 2.435695102799575, 2.5092351455577186, 2.4582267426944915, 2.5584739131116807, 4.855368125535241, 4.865108087486137, 4.122068797191757, 3.4873005866257736, 3.0433521286770286, 8.639741025911903, 2.201531830484797, 5.025303611525683, 3.755774402366179, 3.555147106457937, 2.5364964085130333, 3.722142841228145, 2.48247885796658, 4.271447546666749, 6.776819864615641, 4.277098861935588, 3.709109123203335, 7.183871606420256, 7.806880290238749, 5.138150428165338, 5.030142926030408, 2.7982305694827194, 7.09283679668314, 7.6988370345551225, 2.881321122862117, 4.163881733806376, 2.556985623498055, 3.528237524678694, 5.852479341137831, 4.109318090561147, 6.1545703356341805, 12.344342507710156, 4.131945865247535, 3.9870180327335487, 3.1779193852350267, 3.472430132464246, 7.8153322360666735, 3.620740995335953, 3.323551554097161, 10.810294973000854, 8.63308429742397, 3.632960134708154, 8.11147760808906, 4.336612368661363, 6.89291983150511, 5.82210924531265, 14.330259048456808, 3.494165167016899, 9.573348636018238, 3.7180761212323588, 11.202624465320335, 3.5557115359266405, 4.172923984092086, 4.500268075284338, 9.687788267998425, 4.140257106161449, 4.8787484102923475, 6.211739463108268, 7.372484195237485, 4.1178916374103975, 8.89759647073753, 11.326268564376145, 6.9458143337417075, 6.106456541856061, 9.170521105019516, 9.42727084425986, 8.40229245145132, 2.802653113145537, 4.141863946771091, 7.182149471621556, 3.7302128901799922, 7.247612138486243, 6.658189470038223, 5.815450303923129, 9.073282476112974, 3.5132360508852547, 8.799354414422949, 3.996735892005669, 5.791928514455155, 17.375807236064585, 5.716573824007423, 6.040451151859592, 13.252769128390991, 4.459342597781656, 8.304756656212426, 1.6980046914404392, 5.252022282785437, 2.697608278171014, 9.525614042146932, 9.649622163790943, 12.597816726256198, 12.087499700462937, 17.26588324235, 5.416809380839663, 6.744729129692225, 11.52585637934218, 9.038647712028743, 5.55738532923505, 7.148217616449185, 14.971559308625604, 5.484246597550578, 6.604505788028619, 4.706706504272274, 6.056393192282342, 14.422203111007722, 5.968753545314402, 8.43818908331422, 6.739394866846011, 8.70991038247342, 15.882690106243881, 9.519841064185808, 3.6689399466244503, 5.374653857232868, 7.285325948650889, 7.708996100034014, 5.522543807038958, 3.8149253799356084, 15.373093136038582, 6.125296988550094, 9.776068773617684, 15.77058670162355, 13.82363960521091, 247.6191666666668, 241.33333333333354, 234.42900000000017, 232.09750000000017, 210.64066666666673, 221.72516666666675, 232.2900000000001, 222.12333333333342, 195.435, 188.7107051282052, 212.0550000000001, 184.82833333333338, 174.603, 197.49654761904753, 201.08250000000007, 188.2996666666667, 168.91083333333341, 140.90283333333332, 182.10469047619037, 167.76266666666666, 201.27583333333334, 128.51128571428575, 163.6542142857143, 144.93942857142858, 165.571619047619, 126.74703968253968, 132.71890476190472, 132.64626190476187, 120.56686111111115, 133.08200000000002, 124.06377380952382, 109.44774603174604, 119.52338888888892, 132.30933333333337, 133.28711904761911, 123.43590476190475, 122.62227380952382, 119.69415476190476, 124.21578968253968, 101.97053427128431, 121.55083333333337, 97.77622222222222, 118.32983333333335, 85.58539105339106, 93.25142857142859, 92.86189430014429, 148.130974025974, 107.23876082251078, 99.64868109668106, 106.35083347208347, 124.41839774114771, 92.82343434343429, 79.42896667221666, 115.31892857142856, 102.09249603174604, 97.60596031746032, 98.39762049062051, 97.84232029082025, 74.7981453823954, 117.20717460317464, 82.88765778665778, 116.06709235209233, 112.63099350649348, 77.57687301587299, 68.50434188034187, 68.74346683871683, 66.55115656565658, 57.29339610389609, 82.01547757797759, 78.97707052669553, 59.293463203463205, 80.68080203130204, 68.20699583749587, 93.13353715728715, 82.54827380952378, 71.05218829373243, 94.86532683982684, 81.07937770562769, 58.239944319569325, 78.67548490398492, 77.73863247863247, 89.3007863158084, 60.59544094794097, 63.535196311858066, 54.066168898911535, 58.69705555555553, 62.112702227511036, 82.83547150072157, 76.60754390054392, 66.45232736707737, 69.87924711399714, 95.8731394993895, 60.590718475968465, 64.98781875580559, 40.28886784925603, 42.83568489190547, 63.44847224413014, 44.71849708624707, 57.9525066045066, 64.72960320480175, 53.59518587784764, 66.21941450216451, 56.599784756909735, 44.74083139199121, 53.34800285825286, 83.39110589410589, 61.71693729881226, 49.89878665044107, 45.469751470751476, 38.22292039496449, 63.3234285812227, 51.26063616397362, 48.50249020320923, 47.96220337995338, 41.76456023388377, 60.32749657042304, 78.21711122374357, 43.71192171218873, 74.69666076957098, 49.90576030376571, 39.539820534943225, 37.679378791057594, 40.80346641185612, 37.977084683290585, 32.41200153114859, 32.30609088602318, 45.93041749418451, 58.983918257009606, 61.89522984939897, 49.95603525567998, 52.72657009167304, 59.49734652748351, 45.7758046158348, 35.79614894337689, 56.338855168077544, 51.79309429154439, 50.17492246423167, 49.45681448535126, 94.87377564102566, 5.583283140835772, 3.9162921604302654, 59.28472619047617, 11.883705882494882, 6.915702521893311, 10.396591880341882, 6.91654627381261, 6.546112079441025, 11.451208101470254, 5.696588820477437, 11.162068886832122, 9.775125576986621, 6.667897129916862, 4.07249083943068, 3.427912597767718, 6.855468166852067, 5.262775517441072, 4.217759079737734, 8.438877241038531, 6.139497244793982, 4.155880007939896, 11.924343073593072, 4.112602314098305, 11.264307262182264, 5.586391976444605, 13.835801871822309, 10.366778818403816, 5.224708357337165, 13.664748223998217, 5.775802314352313, 3.7491118402825703, 12.640176046176046, 13.278944583194585, 10.60006447997059, 4.545913295038295, 4.137727793507116, 5.322219585969587, 4.137522028506548, 3.6467037770963953, 15.298778345837171, 19.10643365330322, 20.12315502144914, 16.2593566017316, 22.72560515873016, 13.387081353115406, 25.970498168498164, 7.15262736315175, 4.508708978752147, 23.648555707337977, 10.06831043895718, 22.33236464266728, 33.119184820081884, 8.204233006990385, 7.612921109806563, 21.478803054377366, 17.0805397935398, 6.8324731088767665, 15.51072815107598, 11.11415237452606, 19.32150271950271, 14.106476608187137, 16.141752961950328, 27.431247585747595, 12.988704068154068, 3.38169460598815, 4.0732080205394565, 10.804547558922552, 5.12622014341008, 17.40577338674397, 20.495269896769898, 22.278985181485194, 5.649780350182326, 15.86570876637982, 10.942273236567345, 14.617256521256516, 10.849919946599298, 16.393261994541408, 10.034207796451916, 5.222813611645463, 6.966476149667325, 18.843976190476184, 24.03774325674326, 7.157834376715055, 6.605692477654003, 12.482704532881002, 21.278275432900422, 9.492165812129052, 6.7409658798752705, 27.940258731464613, 5.186259425952376, 5.821990818508626, 14.840411772536765, 27.982968364968364, 7.2517002109144055, 26.41445592571679, 3.2213331698750385, 14.973314234511003, 5.891178387583598, 14.134004470202997, 15.104925575632095, 24.396750000000004, 18.53616784121676, 13.568361705545916, 6.126727585666205, 8.451839101716809, 22.887695669526547, 3.0808813504708805, 8.127122518909283, 12.862281399521528, 10.648651695526691, 10.34753681318681, 8.152438186209926, 14.650473216524126, 11.638633667956539, 5.927901170149454, 11.733014675520558, 7.434446923446925, 6.409333236938498, 19.368656813602644, 9.17803330796629, 10.765351883665227, 14.477716356107656, 13.71163424702459, 8.444197508947507, 5.251662244890185, 4.697624808198339, 4.8688349170587815, 5.3173791223396485, 9.202607416219262, 15.353170601650431, 18.94445810014359, 16.71226147670699, 12.653465651995052, 8.256661825103, 12.731945883743107, 11.498063149384548, 8.055364233332435, 8.451854445354789, 8.111012981159027, 15.732954315555835, 11.457314212642716, 11.153882807232547, 4.313494070269162, 8.952838488202627, 7.666871714714594, 5.964522730308335, 4.554589636001515, 8.313256336370884, 14.495610997786484, 16.115692661203532, 6.56816189202954, 13.195922991288455, 16.706598361820493, 5.705755287893645, 7.860273627688101, 2.475742251547555, 19.636313081703747, 6.293349770440286, 9.97330286380286, 13.916166379370408, 11.36112190907819, 12.218882859010904, 4.45602520842071, 2.9430648885164987, 9.025770072486543, 4.874773443840634, 3.8403056188378226, 2.8356793287432316, 2.855574242612899, 6.488899660764235, 4.486395485812943, 5.247979789309864, 8.037945376377852, 4.061050134918251, 4.754734366596591, 9.506047402509525, 3.6984312289018173, 4.560583411510789, 7.581555760018381, 27.29878766869413, 4.21898278916216, 10.802250230150907, 5.322705895268154, 13.011138349157132, 5.120299777237376, 2.5404489153808196, 4.138665206832909, 4.523924983014456, 10.399930040607897, 3.690950834342338, 7.718602409380349, 7.190240054659171, 9.394291920669092, 4.56354511183656, 7.22336542326033, 6.963257201059073, 4.663388387611124, 6.463243831952779, 4.957760749908201, 2.5029190324668145, 6.1018353564735905, 6.895868406921364, 4.432062112051939, 4.932937399202103, 2.6209314302551325, 7.091240085829241, 2.7871860363765397, 4.988536916009182, 12.238069121170813, 5.902388181856735, 2.6744604526694373, 7.069325425637308, 11.389871317161333, 2.4032967990235172, 3.187427619233651, 6.212646670287652, 4.425432562138935, 4.888203613274407, 6.156376357212045, 4.130593305332705, 4.145753257068871, 4.472086153368514, 3.406484848962027, 8.105159937284936, 9.513209739638093, 5.830413010819851, 4.5679915077027635, 9.370917975053096, 6.474360043387983, 5.161303263360733, 9.393186871476933, 9.212958309655408, 6.362967118111655, 5.4360638814985105, 5.37057641965138, 9.402097665722074, 6.2496566006257215, 6.718457246261504, 4.779065757174989, 5.801093469590185, 6.938687223226251, 6.641724404459532, 5.910398084692218, 5.8420188830094535, 13.003173856654671, 7.488764560626808, 6.499377551469278, 5.0326612993215925, 13.501693734180861, 14.79726454147782, 7.3638314988559666, 8.136374053949105, 10.157367763170786, 8.648649934721831, 8.964934614807692, 4.590364661220342, 10.598533660024756, 4.000223090379563, 7.573014177807931, 7.6784310654014485, 7.9139903781846055, 8.142755867503777, 7.142233541675048, 5.878573375073361, 5.670243636775541, 8.813096891169259, 6.734255940838059, 3.3130886984740853, 12.202141468242083, 6.387797699321444, 6.811708665110413, 5.554487659992712, 18.393146091997103, 2.994229282708331, 2.9695969357744114, 4.640360104551808, 3.682165193500811, 4.979289774586387, 8.858425964827523, 7.046054002189139, 7.98036349179714, 8.699491386212072, 4.419739449154545, 3.4725895947005783, 5.1913184024041055, 12.522598765542384, 6.117596536944922, 5.410794590563778, 9.785013886997014, 5.410251095625295, 10.010762259104451, 9.724111506361838, 4.967477974468255, 10.478704672652107, 7.491293348879519, 10.084161043651182, 4.4765761536025614, 3.466113433732224, 5.764284346867644, 5.4375955369737765, 3.5091357996576655, 12.567910943578498, 9.082663640804247, 6.690770057321501, 3.8115607700336396, 3.766753484055016, 3.9775284856755677, 4.575929096227209, 5.748117873545612, 9.337037842258484, 4.279955245147894, 9.681489324680681, 6.202011384519112, 2.8053369264758663, 8.31513280555846, 10.272768843193841, 10.65789559682535, 10.475383805206182, 11.034965760957187, 4.675316935859336, 10.865258550832438, 4.07388252496779, 7.572939770995434, 3.8085544510567124, 7.623991132603425, 5.137287340440001, 11.193981948159058, 5.909353753935898, 9.268760260913087, 8.955359571864085, 4.014580026441012, 5.783108316173687, 4.522790867868221, 14.196439538739313, 70.34369737484737, 4.420739714417686, 4.192648929054516, 6.755636028781819, 18.299101852543046, 6.009912819777623, 11.608528403857347, 4.613083979706875, 7.052186105893475, 5.89841834432738, 5.917525188891852, 9.759138943460524, 11.894002594812457, 5.318167697946567, 5.002751115447399, 5.667061495095006, 12.657578149992789, 12.893289230021516, 4.905139305470335, 7.804551722924032, 7.579083475601618, 9.737115593973188, 10.330092413671368, 4.150206989499608, 9.621892645473329, 6.212767623817634, 5.371412395802045, 3.574867981327862, 10.225843296967698, 17.79178735153735, 5.66193372729291, 3.2262970764499475, 6.691210613076483, 33.61721026522496, 5.279902660377963, 21.597245922115, 7.942735948378962, 9.820111805843547, 6.288531092731508, 5.483464801507197, 14.24396571374063, 12.288671587069855, 7.648183652162015, 4.49184730808679, 10.78408653406847, 7.916047563553965, 10.489721257899507, 8.630210177791842, 5.133489688377472, 4.988057771710349, 4.965948976407311, 14.906004091384158, 6.066853482418141, 8.04587416598969, 6.680791732941142, 6.748698835823832, 6.311640957253616, 14.772305215167336, 10.797241173152855, 12.925805755288334, 4.264731259403715, 4.991710649380493, 5.009271174146117, 12.21672969666499, 7.414331358072427, 18.424103042046973, 4.51772492030994, 6.626874183507175, 12.62415436255304, 5.653644402834151, 9.546078996439292, 13.699696013716462, 11.89458706164477, 3.754389272346343, 17.32610468760255, 8.754448698915068, 6.4897363681927045, 4.04352252024941, 4.868542880223281, 3.2102328729105993, 5.283628285627627, 10.524642258119613, 6.773285703419255, 10.674523287396676, 19.420218140122646, 9.998369183603351, 13.609883437712076, 19.3932482464248, 4.487370887609186, 12.986820797565757, 2.5420520660560784, 2.8856621144412378, 6.116537736021501, 19.096490651249862, 5.027251285024823, 6.9718180403904055, 6.762863513717259, 4.907092191807456, 10.60909334840158, 4.613728050760086, 19.275985998144694, 3.647090180360135, 4.3343234094174905, 2.689343739718656, 14.944138794692185, 3.13080891025279, 5.330096755819715, 6.594407900866148, 6.719093609901944, 7.8524017565607585, 7.661996043790779, 5.603077628357012, 15.323181350793758, 16.612217106495326, 5.317194150079851, 6.5429150108163245, 4.38369888326027, 7.362772733118935, 10.940129646980385, 10.129733702899857, 13.561220853097494, 12.09612063750999, 3.2941071755403044, 9.146874310570814, 8.589547131858351, 7.533941865535475, 12.262955331347356, 6.174453733217691, 6.005145247834839, 4.100829624985816, 4.520033545194874, 7.875817455035052, 7.5598141326959425, 5.5256151602266135, 4.046506117565845, 6.460446272804329, 27.27896449332679, 6.487522879099003, 3.9962592754433506, 31.77882415184669, 7.075552676673064, 37.480402163388526, 6.564832671603695, 8.896854961386197, 21.364714674876634, 5.869871578320369, 5.958813637728498, 10.04284395869471, 14.726459474163036, 13.88743471369218, 8.370435062561826, 7.433452116490029, 4.253337067935477, 8.09878282349033, 7.78021399438485, 3.6298005266318336, 18.366575469804783, 22.398342227584962, 11.723666172558136, 6.24254031316392, 22.157740779265975, 10.445440048082961, 28.038730907980895, 5.544169911164545, 4.132413440108247, 4.333925061289477, 12.321951254145775, 10.316776464854128, 7.064362815795455, 8.424710328641895, 7.274401335638768, 3.772645744903738, 13.009179776200051, 10.232214528192872, 23.46117859498315, 12.875558268580404, 7.751365183680181, 12.52365987585898, 5.746000489335289, 11.151511647605007, 39.982383726739364, 9.76667280764577, 2.2735913244954267, 18.72279609627788, 33.143790393816715, 27.495152314849886, 11.684390394787442, 11.081526872949073, 19.127169768495992, 5.60331921434815, 18.37432462460853, 6.308808108682307, 8.150610756048675, 4.810981873543789, 16.32845226995227, 14.588555401603227, 19.28176605836574, 6.641807450843539, 6.136436046634811, 17.107405655646225, 25.123840676627562, 21.66451049667179, 24.61830414389326, 5.7046207232732735, 12.614526194505343, 13.59728276884813, 9.548434354622666, 13.554886281398204, 15.673559487403196, 15.9552585371285, 6.98932740803902, 5.817134993957514, 18.214144216267194, 5.798175249169598, 4.267671729131833, 13.262312208170547, 19.079132412769603, 7.125461867838604, 11.754135321990475, 22.148579125977342, 8.578574070727024, 10.276744372853672, 5.0502720120293905, 5.970507084011388, 3.130244919722136, 28.954526055405868, 5.62301064926638, 11.800487685924763, 3.345262480736936, 10.498201817171141, 9.56996193246838, 46.461462121212115, 21.69526041785871, 10.496582672079382, 23.88074521047069, 34.12727716063756, 16.68236225009041, 5.424904862625608, 20.898953132033814, 4.2312944680765865, 6.822008221286105, 4.371855701402526, 15.466577961461379, 3.663659159889427, 13.40868321243321, 9.754579851915203, 12.230988984788594, 6.258843613642201, 20.425590798479472, 4.872608515828295, 11.608897620934158, 5.118909876293218, 26.443981681967042, 12.278645721378409, 24.478124463795957, 5.500293925321154, 8.570961797334416, 7.52108321541819, 8.436497916989225, 6.419179465365417, 6.191619571948149, 5.642184287412434, 4.957901731992718, 6.4396313507970175, 4.791422746133915, 8.335201034995388, 8.025210720019958, 10.407089202574634, 24.312817079643562, 16.371659443808397, 6.772955871663006, 7.362698837039819, 11.305929357452744, 8.335691214445319, 19.663817688936682, 8.938002928507967, 17.037557076026683, 6.91425867280519, 26.539163483397818, 15.456143633007251, 18.432423683302165, 11.709296604751223, 16.219493586637483, 4.8865261714593045, 3.904912929185273, 4.77389779272011, 10.510798262794212, 14.29571332611589, 2.8963376280319237, 5.34906045121291, 5.297092034154884, 22.39875627324412, 3.897874229247449, 6.835601243574589, 6.502496588728675, 8.385041421199093, 6.476506668947719, 5.759031957040077, 9.852994228479085, 6.360295947005669, 5.135699164288796, 4.827434262824485, 3.687625113906477, 3.7985735228951114, 4.021726966027275, 5.444005340334725, 12.586068381269467, 5.550495358840311, 6.355901085780496, 4.759641440345736, 8.76004449580553, 2.8724083724278984, 7.282940685468586, 4.8968816118504455, 7.719817990095814, 4.5890498179825565, 2.6559463205846385, 9.358873394742984, 4.175046510961847, 6.121327319435993, 4.562476303178764, 7.769590196730136, 5.909757838769212, 8.166563986768635, 8.2715977300226, 5.765039009248197, 2.258992826352867, 8.780992427426527, 6.46267635776547, 8.07447649697314, 3.8912436130581356, 3.501094355448997, 4.583656199797027, 4.1693054762106465, 5.11838193362818, 5.177908139084728, 7.093736384865986, 4.383821612983267, 4.7417069914377095, 9.059579397334968, 15.056223185365495, 2.9903823476123894, 4.909923070806315, 6.044758151816731, 4.222712232560273, 5.4325999447868405, 4.3142043339961065, 4.41020587769659, 7.3948189693364155, 3.315013380168869, 4.950332516900091, 6.950534350883, 4.234082173937385, 4.593613975909927, 9.140618025705814, 4.17786657976753, 3.6590805254829353, 3.6562201238404715, 12.025285635006938, 5.3577289609182435, 2.764185272894862, 3.175876506374693, 4.5695279008655545, 1.5224232307542054, 4.034824772179724, 6.514772292658305, 9.39556613721005, 5.825124048397003, 4.912957356835825, 10.84936886232347, 16.806353810305893, 4.6671401341821594, 5.706686362546352, 5.620026685449318, 7.639066208116213, 3.8196507348109363, 9.549884120119895, 9.436067701768419, 2.381261943040097, 4.637575193357027, 5.824513493286397, 22.635317069403225, 20.286803263566277, 12.021027908873934, 5.399289416914467, 5.293309410762931, 11.66791629146699, 4.236889959007673, 3.932433283342532, 22.637998234715727, 3.3856957442414544, 6.225912840656325, 7.44990595158409, 5.920706718390405, 5.068278923675923, 6.741666787554045, 6.4117694367435, 5.1423954258701645, 13.340009955977699, 4.100491163027525, 42.4583556204164, 7.158175050441313, 6.316560454090386, 3.075419187067377, 5.781655678983319, 21.368297872095738, 6.911367842580244, 5.521236040398778, 4.150402179361338, 10.608082403630666, 8.961739539247823, 7.0128981065233225, 5.270643591038622, 4.8272914582481095, 21.513526867807595, 19.24524848868969, 13.08883750445682, 11.106315259549739, 22.485291365678687, 8.400316426476722, 4.213453174001138, 8.609830977322915, 6.349807490335054, 5.753819203768615, 6.754217337087104, 17.77277854622577, 8.739618149763867, 8.923116544699507, 23.526541449001165, 3.904753301366436, 25.81270803959474, 4.495805725801664, 7.879876250567199, 5.055846679665509, 3.8629918221454633, 3.3866294834700468, 6.545951996260416, 5.066935391801311, 9.953089509213722, 5.094357421074281, 6.742167295252234, 8.260326991523595, 9.35903277515232, 6.869527782948236, 18.999408835283397, 8.691836882367857, 4.740870593380876, 6.431252208649583, 17.94370960902315, 16.56120962357321, 4.852514005930007, 4.906361867989892, 3.8661173277535643, 3.6293981138280653, 12.87857334235837, 5.248298415230963, 3.269042024250639, 4.0244484483722465, 3.1992859181527926, 7.6212804806996015, 6.346689388908598, 11.850165464391743, 4.81584099947576, 12.882745133632804, 5.024954851664175, 21.141225286229822, 7.31816996213415, 14.057575932939116, 13.328513053641041, 13.319237238922303, 5.604037968461136, 16.33455539132995, 27.793965565802612, 4.28885866319966, 3.6356025477868816, 17.644601468082243, 6.921641095977537, 7.571173729375573, 15.058266237628379, 6.467898201808389, 4.779795241345447, 4.440845161786979, 6.697790669353766, 3.6779568665665603, 6.950859181350681, 3.646611598909862, 7.398004789939606, 9.882421608286853, 6.643880222494823, 6.471825580854626, 10.769653287234302, 10.565460379285454, 4.066041671047592, 8.39445761564493, 6.524423605275287, 11.451637844445798, 13.674422424021476, 17.797956848890323, 11.129609651869954, 7.494167240463715, 3.174917423945621, 3.5210026706233686, 4.988267461785916, 5.32019474841897, 4.264214093455234, 11.49934044093448, 9.272824544085418, 7.213943182857975, 6.42674762586472, 11.376023458802905, 4.16110100495977, 6.8814588111891934, 11.96614367261914, 3.315691363796779, 12.770327244033606, 10.69638424927644, 7.581041855058365, 9.901148412295525, 8.708700396825398, 6.209075822606015, 20.57490986215866, 6.239979752144355, 9.149753816992488, 3.813186595081301, 5.797123902988166, 3.1112190817689807, 10.491925437480374, 6.264145432488714, 6.304395122052313, 2.953762353056263, 3.6580223939863177, 7.053397784057207, 3.1683782325110466, 9.933754230177188, 10.211928141722659, 7.846197633091597, 4.299921326071041, 5.034308358598116, 24.9167307706424, 5.2614090389264065, 1.6965423108907323, 3.4979671830326278, 2.830371914775606, 2.382483641764512, 5.321921248937085, 8.079326513057161, 6.196294018071383, 2.8648131684483378, 19.040185351988605, 5.013113261262615, 5.120040083550557, 9.35556047283063, 4.6169863390409445, 8.462181120905331, 3.9794556815810975, 10.261177510426695, 5.065160297506375, 5.739174864380309, 3.657911040389759, 7.094503693422968, 8.4646729378028, 4.816889630975927, 3.9956209853767337, 6.115604430803648, 9.727023029487064, 9.13341305225004, 4.436192745254049, 7.723617892806342, 13.023882466916847, 11.702058365873032, 5.479499483649542, 2.0663483286523237, 6.2324153761425185, 2.3922840575388546, 4.876915447520157, 9.389428843277122, 15.703787821568639, 12.692224113553975, 8.05781357836058, 4.518006900667411, 6.51671089291499, 7.606699256496376, 5.002354629337845, 2.9527939250116653, 7.57930867453637, 20.052117836187104, 5.327184792013411, 6.739023326082021, 16.20881996914667, 20.53829714500149, 10.292291613201021, 7.154396095772808, 6.204974243052325, 8.390521360408563, 4.468496146937139, 31.8862381893469, 9.23281614442116, 8.552268015627577, 3.954238497238485, 19.731812007709056, 11.153800119916141, 10.179487379477933, 7.21443919857401, 5.730680655393299, 7.177315966744833, 5.010006364998353, 6.7325330397615915, 15.071427229660314, 10.861593021585124, 2.4631703500240985, 8.144476313789712, 6.002946504112475, 3.850788306302886, 7.9960873552549225, 6.1567175197005035, 5.521919416404644, 4.17249006724567, 9.483908652147068, 19.71314559333581, 11.139693935009154, 12.408991928712858, 5.912648161443951, 10.622397016357613, 11.012450738724873, 12.611876673891105, 8.6310357968322, 4.931290955895879, 5.4569163371521725, 9.346391428109335, 3.7028743654227854, 7.215036715515788, 75.92712186663915, 5.826102330559747, 1.9988100172765526, 4.839004293137091, 54.799213274506144, 7.117459729008697, 8.444333906921493, 6.149922469219011, 3.1743569757705825, 14.835260830963767, 4.686197610147247, 2.5920873864697387, 9.281874567950343, 6.051469835719837, 12.148308680680964, 7.55670268241166, 5.930223001753931, 5.932242042572403, 4.096824978123931, 4.678265807437728, 17.334617952375503, 6.210568749208691, 3.0489205645827004, 16.238976708010494, 6.710454483972813, 27.39898107579571, 11.018166743144631, 19.97467744480371, 7.844345272805788, 5.596868694149338, 4.253798868871739, 4.792923286546565, 2.2758321908541705, 7.029245350735423, 19.16703093685938, 5.333349780147723, 4.941629590612227, 8.538756267680842, 18.957519909485075, 7.82926497897766, 6.37587615676167, 5.553522612563944, 7.055656100497035, 3.177637158504278, 3.8695127105660485, 4.816158196593598, 10.541696349703912, 6.502089135912557, 9.598871132816825, 3.954581710508178, 11.6595303043984, 17.411504633308073, 5.811574361519297, 8.017156103333656, 16.082199296660107, 7.001072307632092, 11.151115114145487, 11.992966476780976, 7.414089286997061, 3.5792677813487574, 16.402860625305333, 3.2071630975161822, 3.7789662711536627, 8.663576217343621, 14.922280747328212, 5.630570076172603, 12.395673385913726, 8.464426639438031, 15.12930621153679, 15.20708183578615, 5.46607894619787, 5.997729615613641, 12.808098998479492, 14.77616432713397, 4.209865560794379, 24.84612419588782, 7.233928525833469, 11.378960867602594, 8.157116370980559, 19.628730537776995, 4.653725463127432, 4.094516612939164, 5.7956446916190645, 21.45407006877558, 4.892724202502492, 4.495300586614007, 12.200338431201212, 17.09875693081339, 6.550018415465836, 5.069237105544719, 6.210888040127815, 2.9874262366658866, 3.3468639171820005, 5.598039154211833, 13.688221685506486, 19.69138489269868, 5.747165664896292, 9.249634695354027, 4.651562388907897, 22.537294377812085, 3.611300576766086, 18.070437780669206, 4.249528007988983, 26.100475664203955, 4.4129928112257, 3.738363181033513, 9.172547465662577, 5.506908125668041, 11.633118092814637, 3.9625176270199267, 4.78558646254703, 3.1874065051097697, 18.04297207271067, 12.93286323464707, 5.387761700179083, 7.993462048179355, 9.091343341372063, 15.785258626647021, 6.967481125406733, 6.806599701924643, 5.908750193953117, 8.04388289564685, 4.281447117257351, 8.353068074011805, 5.9411235823945585, 10.318198096420193, 4.030022867106396, 10.00963693739524, 6.951152541429556, 6.855974793769826, 7.646496213823191, 10.971262435383599, 10.429542227572995, 18.622066372353142, 8.182477960182272, 16.5037290954536, 11.865863504201593, 2.587937721340759, 6.418813156808198, 6.486269691406053, 8.607651056314795, 8.232549477668618, 9.6648803515112, 12.6593210486812, 13.514734110292954, 9.806547891775969, 10.312070650719265, 24.550412052214448, 12.244491017200804, 5.814318581461162, 4.565518382037574, 4.425117446860761, 5.37475143030316, 6.365054196796288, 3.043442710143448, 6.0605912030243525, 28.74066804376455, 11.462687461312168, 5.181234190112623, 8.907548307799447, 3.2676313328722717, 2.7723237553962656, 3.887633769902192, 8.984905534948211, 6.559384729349868, 8.503925283308302, 23.547916063979994, 6.568812242515167, 17.126703584043877, 6.927006719547506, 9.726996474682444, 10.537010639108884, 7.083189347200626, 10.312845085719793, 4.9232063967973625, 7.644425961651089, 4.912174888954818, 27.23269085836264, 8.266921915337194, 8.852272940510696, 6.0751498822422025, 5.150600576434679, 6.723720791679342, 8.29194302801152, 7.3520003413869945, 11.336141348117806, 14.395780546006423, 4.479157793426355, 8.263916490090605, 8.585589741323405, 9.939123866088792, 16.024930245772374, 4.175380909458602, 7.0542094678418765, 21.99593776474689, 9.5528256727881, 11.064200042520351, 3.8609889909442683, 12.247833244166213, 3.8541804992514876, 9.919220302554054, 3.725314260672789, 13.861237641310778, 31.759412303506835, 8.514254930372248, 5.710483212787123, 4.242388352699626, 48.17469222582218, 10.606267301371208, 4.721979838062604, 8.32525960546342, 9.178193455387111, 16.892396261804933, 5.0258828190504055, 8.549911168593665, 5.887956304604292, 7.4806286154249655, 3.354009953915761, 61.94569298245614, 12.22576094389498, 3.8997547124350187, 8.857999711613111, 34.243424224496486, 48.796215140629066, 5.775442544318576, 20.46144494881336, 12.392209164149431, 16.4153783189969, 11.60707559186728, 11.933736377650463, 10.712611595530811, 23.991659565698306, 5.400807227458303, 21.26896142965458, 9.446843266830967, 10.981981311824745, 5.823905827262828, 27.911417636037616, 5.22802853209439, 4.427500451887293, 4.3568432262619305, 2.717481826658528, 2.393851292440523, 5.200637159826839, 9.519963346643094, 12.226697016272523, 8.588218815053516, 5.9492524626597305, 4.6551175918210905, 5.697546148539092, 13.022301532211678, 7.2223572676321215, 6.927677470890193, 15.196334401742835, 4.540811967120863, 21.43143455764161, 23.46210749522669, 4.832723831229602, 12.348584337718798, 5.401110642495526, 7.808905531880198, 3.880963414274634, 8.130302763332434, 5.941628034348454, 23.388220168791882, 11.068107631143024, 3.725549509701481, 18.897976292093578, 4.511449404102183, 3.738415078002015, 6.174905580036896, 6.606117499239378, 3.918728215360966, 11.009465304248582, 14.156085373138904, 15.536950062364532, 9.279120621482091, 9.08980162865324, 7.209381907982097, 15.190120021187045, 10.510898940101127, 5.31014776366279, 8.502027930165506, 9.787254519608359, 8.492530951011593, 7.073948650515989, 14.174882425418373, 4.674037003587778, 15.209358082226077, 3.983136726888404, 9.180197517281554, 6.139450475945979, 9.699438714919996, 22.229111218846505, 17.218274607993603, 38.49296447789937, 13.040214230196632, 6.27266873929869, 6.090271443922233, 7.86081108485591, 3.192555046906884, 9.806178411168032, 3.986162235310443, 5.4550852597359025, 6.47120976088684, 34.06629851957666, 5.755276798609125, 12.017574714758931, 7.353045550203165, 7.983952459067948, 8.205851137512427, 5.4772053918232855, 7.852225657482755, 9.310157809393482, 3.9377279255762345, 5.4340465195629815, 6.464358122084535, 7.304705912819562, 39.692705091326786, 11.293657488572757, 8.408318105930496, 5.041438636836622, 7.555393198357362, 10.829700468330664, 7.584648735227397, 5.535492523448054, 10.751273384215832, 7.388212593061557, 9.221565004070484, 3.9867649404931362, 10.316049956209072, 3.6355689513343785, 5.877493943193312, 5.076311209805827, 10.41743698707375, 15.753995338335303, 12.755807875060432, 7.623567403572548, 8.144733896187173, 19.133214777361154, 6.374029751261652, 4.744631789227512, 9.197443350443514, 19.66775173630057, 12.452341176927385, 12.935189966218202, 12.89301532981893, 6.983275299915448, 10.956805715201266, 15.282838154925063, 3.2040025301291597, 6.8192532082464385, 8.191832221887001, 7.927495772114315, 8.933716608151645, 6.261496811999613, 7.672866109474354, 15.48031926270327, 9.831560370190726, 4.02088719871801, 5.788456539913445, 6.404147444123141, 6.04154162474451, 8.234889114787542, 8.947127174661942, 6.941855597450226, 24.104596785282318, 13.27215582517136, 5.787065417371858, 5.4140397149836454, 7.737850256030146, 6.89415441128471, 8.292782844501831, 12.190591164972599, 4.390802025972559, 6.834657092366682, 5.8999214386348005, 3.2107798358005053, 11.098796353457343, 9.350735531333639, 13.88779152589756, 7.9377232458186855, 7.068023126547957, 10.85458878615111, 9.688772014926636, 3.938327261333751, 10.117317198625253, 10.37078552520714, 8.850131887578176, 3.486804354858702, 3.0875919909464518, 3.0237270499380315, 3.914244550002287, 11.15170802456127, 27.95138892489144, 4.2312173305480405, 20.114182231091572, 13.04391566952999, 12.645683596496097, 21.547374175426175, 7.2876674754722455, 7.4924888264054035, 7.704364950875452, 20.805509138282105, 5.411602765324307, 5.132325457456683, 7.881179871598986, 6.993544139632175, 6.789931201975646, 5.3013680362067435, 13.92460257209149, 7.310486988225737, 13.921655089854884, 4.3881374366380115, 27.977488028053, 18.676168130086307, 6.2584970005771465, 9.501170200465591, 8.438881833944729, 23.1662568627126, 2.233322870547618, 6.815704632119698, 4.005799738979591, 6.538631022824141, 14.632775232645502, 25.83692542825887, 21.73803330038257, 45.20799618850171, 3.917856978015019, 7.981508268181463, 3.1974831103558534, 26.58530753637822, 4.074504704480598, 15.741650488861456, 4.016434105023951, 10.134856914926505, 10.075090168466772, 5.741821509593228, 83.77561038961036, 16.254242892489764, 8.473630529428227, 6.7179136146116685, 18.1876447563874, 9.593567667703226, 16.541027253547604, 4.1717618868450845, 9.191806290365246, 11.569957921576073, 8.820152268968084, 13.426664818868076, 4.337966404075075, 3.417813054170824, 4.048703339956507, 10.037448845386779, 19.051444688021355, 11.951901560397825, 10.868107902990259, 5.874626453858863, 5.9039602695602165, 15.462766535097414, 5.6697692360718825, 7.055221852015359, 4.7845798530106105, 8.022482106973579, 4.696510480607568, 3.153499796387361, 9.965040458055176, 5.008322864887911, 5.17887182087257, 4.931479814878407, 16.877208772522074, 4.868236509723786, 6.981298950177241, 10.679169870932483, 9.491140168589961, 3.3978154450468674, 7.891841076681302, 9.119563827902702, 14.617082052020779, 3.881856246139176, 3.71220154907418, 2.990326304495647, 3.9290766558739105, 4.300100602398586, 10.919730875119741, 39.68478769031121, 3.995688113948439, 7.8959238317900695, 4.501093756191927, 5.978342919051536, 9.761428843846636, 4.147962510656495, 4.934014350265355, 7.901970452489504, 5.47358591673653, 6.086457736518798, 12.306512264036986, 8.090444261255117, 10.081915330108322, 7.370675504001194, 8.084204790975837, 3.3925643224242807, 7.186564733706643, 26.059801373350563, 9.330492091483018, 4.920972192663959, 7.077298746649848, 2.5140251794854676, 5.050244060923549, 4.3186523139125805, 5.488990217924306, 6.0119131565131685, 10.545761172204594, 4.664999041378637, 4.395972096694571, 13.482387032834016, 7.31650928968859, 5.884840881960686, 3.749113650094172, 3.8486278555587154, 5.2685278698717335, 39.344286882682546, 14.575966670833154, 12.911559313350537, 4.113172852890344, 4.3993961031572075, 6.861969821442276, 3.4541934704648414, 7.492970487346816, 8.141401147934605, 9.922443104156764, 8.091826396382, 7.250741781009178, 10.974869572068698, 10.032059723210082, 9.171750545347233, 3.590774641202003, 10.766217945349409, 13.315394506511382, 4.3089048569065405, 4.561989498490873, 12.956994229111105, 3.7113032745521837, 8.372959816012147, 17.439457390957397, 11.460425211404756, 4.310601565553097, 2.420807561498785, 5.607384965692218, 18.62242689499595, 14.016143276981659, 10.959263651678983, 4.234544638306588, 23.100607284314588, 20.665077717451297, 5.047362263985754, 6.580098072221818, 9.837113307197837, 9.49899082191888, 11.059953129457607, 11.151821676500028, 10.019770423527914, 10.022862899459707, 15.002289361945657, 11.998671597813583, 3.3268674830453233, 8.947137475149196, 14.24396220560522, 5.847556738510811, 5.757338678753938, 13.198478732254221, 4.3908203276227065, 8.979980706934125, 14.049629944605336, 21.344707411829813, 8.405436787224605, 3.5085474606066054, 22.397256094909416, 4.629801871898122, 6.9730466337669395, 9.10011163899167, 7.745283756416652, 7.343959278969712, 7.354535666557634, 17.760070282230476, 6.167347150549566, 10.137723420575718, 25.415382079262812, 7.895646356549281, 6.4434960886898285, 10.5141159127874, 6.901465001327911, 8.16896764852834, 9.279863997113997, 14.222862196988578, 3.9827050066312464, 10.283559727328978, 13.551294781134668, 12.475378871213476, 7.239567663466878, 4.812448040778229, 8.819537888135962, 8.58786275759184, 6.756180193438427, 17.840272370508416, 26.201372231827342, 6.7738388316476525, 7.658232646882646, 15.794613837428697, 18.83204674524234, 10.965805051264354, 13.54880548993682, 56.74566537833081, 4.347975368591587, 10.617703925292055, 7.906352675198575, 25.7780005755961, 7.6417043817603965, 4.715220541192695, 5.973950666969344, 8.843369587805986, 8.104552142177939, 7.243107498036564, 28.931420845596573, 5.791462668052331, 4.852764400900038, 21.97749306411775, 11.704692297269627, 7.657812734461681, 5.401130585518517, 6.490177723548177, 4.138706992914091, 4.019431268929987, 10.135339848797974, 17.48651841622407, 5.8072323003111, 19.086667999256335, 9.186889503995785, 28.854248776310275, 6.985466715120929, 4.634561305818927, 7.600916313914842, 16.574248960433223, 8.839250131562359, 4.691588184051666, 15.087182204732848, 12.299354563953559, 5.653897261643733, 9.33595379736235, 21.948183918637064, 5.428317550401152, 6.108281323728257, 10.511189548623419, 19.013656373541814, 22.812263791604366, 6.689820088235208, 8.133607810732503, 12.56888188582364, 12.444039904732685, 4.424598538183805, 4.773567696055602, 6.192304810866182, 3.6551816494906917, 5.755123691224868, 11.83555656081329, 12.070227185598128, 3.6729694608684, 30.094650098058242, 7.386322715287205, 14.262172297181836, 8.87494903754826, 4.447710280713821, 30.7061796743013, 12.560810283924452, 4.609459614798261, 11.708846935019793, 6.9980124841594336, 5.131984153197703, 7.860782395960912, 5.583299881280569, 8.519661209396528, 7.194644419191028, 4.82742952146236, 7.402045787911461, 5.4123310997833425, 6.53166433776548, 19.728496153563224, 7.472040293500193, 7.652353429376844, 3.7798853033901754, 7.339384184352598, 3.29482090119315, 7.692107323317127, 9.459431949730622, 28.423530731859366, 18.879592931259847, 6.7603990945173305, 13.776086012057883, 2.913651887154564, 14.187327699471634, 7.4973093531057, 3.416322444279233, 12.363219952808967, 12.275322493137669, 5.209665796366865, 2.247310146858424, 16.399704745220973, 7.297765565064022, 7.28882913214119, 7.138919273998935, 13.582190846808075, 5.196705225333775, 8.291592789933635, 6.8956536964940485, 15.79680419524698, 8.615094123506411, 9.44922691056078, 9.946534191484067, 6.518781322898558, 6.750563160135847, 15.493193684684037, 3.511396255755573, 5.112747566258074, 4.982724125649725, 13.891798214246863, 3.703361263440025, 6.5936466528866235, 5.199978466423328, 4.74570960169367, 16.52361359617242, 5.342901741260504, 5.3104986711550515, 3.9591326728414002, 10.18167256878019, 7.345238613462263, 10.270781942441104, 26.982509703531772, 18.576702235100196, 6.933386473293249, 5.907316570425173, 9.56943673560273, 11.407653838148402, 19.00553982978202, 11.20264982948567, 19.21010894225597, 8.9601328834412, 10.51205869139164, 14.110108132939086, 12.489609850243275, 11.065914640359265, 9.258941098497834, 5.429679578910079, 6.166871722451963, 8.430040339123218, 11.308583305105959, 16.546140897746167, 15.546374696611387, 7.27413687080053, 8.676449029523425, 5.580483074891191, 7.10243025052904, 6.5054236822146505, 16.035822420863713, 13.268579012450841, 5.8095924722606815, 4.774484401833607, 14.828447574605736, 5.932375720647418, 10.098545741137933, 9.067991566665942, 6.992206505133068, 6.332384822335955, 8.541913151788359, 15.599370248163174, 8.434714564923073, 8.311275360871612, 6.938177956130223, 8.27859765345483, 8.290922054816859, 8.26854869717614, 16.663786674964356, 5.862367406446742, 14.09179517363459, 4.9407654655485205, 13.064098543064778, 10.025809868626878, 7.669656043026568, 6.545843674736865, 5.067451727272577, 10.062647454145266, 5.916450395681582, 10.634941497240526, 6.397495860292902, 6.123027446042261, 9.548024737822175, 9.678072952995509, 15.246276599707489, 4.788679375020072, 6.369885689609286, 9.80021621492874, 9.169049239662334, 5.028730397321919, 4.6026784643348035, 12.767159143507973, 6.410295960338068, 6.437744461618016, 21.022515010920827, 5.041271984276267, 4.306784247455186, 6.542596716108062, 3.158579515116257, 8.07214547678405, 5.826453323349181, 6.999913913513847, 27.61748894140193, 16.023873456351215, 15.130505544901338, 18.931435603436547, 21.397004817078347, 13.904505460317878, 10.91146365069484, 7.858682070790505, 7.020505855029726, 16.306014960530938, 7.608936501847312, 8.181750167710234, 13.326081579090713, 12.665350559245656, 10.762486680552085, 14.934992819022503, 10.396663968468806, 6.616849616106926, 7.432704808917247, 3.7174894936584337, 5.101503780963642, 7.69712764465926, 7.059063755246728, 8.847988858876661, 5.411818003774829, 7.111789825620757, 3.551903878399639, 7.707738609756108, 4.901642513071194, 6.28169922401591, 16.01019789427943, 7.67931168693082, 8.540494396876564, 11.153177945137953, 6.195544776838442, 53.84183851650141, 6.175681915870547, 6.249154910090326, 4.74867819938777, 26.189212552724868, 5.319818205528572, 5.250762575773292, 6.645202775537235, 7.096125389428218, 26.477237672050173, 9.178818351419922, 3.936784527425826, 7.075522982436399, 4.839792912454828, 8.216424269806078, 17.46182847847835, 9.579861340220969, 7.662116344086812, 10.710757136495326, 4.487963690546854, 5.9119342523703535, 5.730608758798746, 6.886853883360552, 9.060403967973668, 5.30409515891038, 6.185598451454303, 13.37431732230928, 6.611144399910029, 9.914311219313078, 5.6790567352809935, 13.743888482876926, 4.550676156778085, 4.819878987651913, 11.469036002138548, 11.656487268431926, 10.12058568885091, 3.4643386430096865, 5.482478481651011, 4.572219985320612, 5.602833328854698, 4.9190338968633665, 10.66818993647742, 15.77054189814369, 4.7642578851546356, 12.093648797949886, 26.074850853059083, 8.318916785724431, 6.285503805450807, 7.167544272232638, 8.441893647309511, 4.783344934807822, 4.563012186019585, 3.6683621661028862, 7.354225353996698, 3.4116797977572153, 14.857025486989555, 8.334715803919961, 4.758060352249258, 7.166219743312315, 6.088429734186327, 25.431853625711064, 24.69067632145921, 9.309890328045174, 5.029801352294837, 17.31094728866328, 8.261707076616718, 5.135652113659637, 5.0651885366412515, 3.999905395215885, 7.385658547165633, 6.373992112439257, 4.644263043783147, 5.684864625259941, 7.5666199661029125, 11.940447161191397, 9.493549775701666, 4.196912658810758, 7.049508066006666, 7.65282698913018, 10.841743692768471, 3.657592915762696, 4.1276679789167465, 5.869004090491986, 11.154436272892408, 10.083940442267084, 16.81099792841313, 16.467845972280745, 6.142442269426564, 4.8720381278946645, 5.067153461239785, 14.380016700599858, 8.600405149758643, 11.446022963424955, 7.447582167417332, 6.673288813988872, 10.510021899258074, 9.535914366009788, 15.454509571684383, 6.689210777874944, 9.969077479082662, 7.341148706012817, 2.9671887250470435, 9.943260416296381, 4.8538557041290655, 8.458246276655844, 21.040828757330978, 3.6756979175737143, 10.5486167998668, 4.741291142522634, 7.205071131160896, 3.632251837622062, 5.299991566221829, 8.076747639006273, 4.961304104799081, 6.700997852943775, 9.058147889331059, 17.660380030625976, 28.708090891263886, 9.014444723334138, 7.662274112393614, 3.0027971307301167, 10.24826173137117, 5.483013743407209, 3.116102963187991, 6.225447557852249, 5.780640059268157, 4.72388796895102, 6.226398814225451, 3.171465440731145, 3.7785193785333973, 4.958210648619986, 6.47552322903748, 5.502130621039259, 9.284580404148691, 5.26838211993714, 38.08753681417679, 4.64947612295916, 7.853894115579653, 8.958705229466865, 6.852447058237661, 3.6468494782007506, 4.317749955690622, 6.276197037286591, 3.9428940645349315, 7.2256173102390795, 24.38765535853037, 8.96838076132095, 7.27801264896112, 4.725124172661822, 8.288910073488095, 17.95289219420837, 5.9677093876280125, 4.959524744184077, 7.567669017752461, 7.898698634574335, 7.223105688972204, 4.177825669082097, 42.89719558113099, 3.208395286018363, 4.363676466603786, 3.7850105536661123, 2.9880180308349185, 7.663107235617991, 9.006054273083269, 12.179302161614292, 4.805373384518153, 5.496891394808283, 16.131245194220877, 10.031205637919845, 4.705926715306426, 4.920105794894221, 4.7509568340386865, 5.265232380331265, 6.92829056413591, 5.295117448571836, 44.04787726872449, 15.30897619609246, 5.977263685034859, 12.422705924891277, 7.969063772908903, 22.84043278227501, 8.96011439138579, 6.022578898261145, 6.131658223389956, 4.746592364131122, 7.132407372648792, 11.182220492539841, 6.640837769991687, 5.199065787408646, 19.858310829312913, 59.54167634697685, 5.5470872590135265, 6.183490228319156, 10.160110609793614, 57.50669304785251, 54.79375517374631, 8.08324023214306, 6.564344401022343, 24.80546706284502, 12.538940428520261, 4.219328803213051, 36.83689928453626, 8.068145052176327, 8.425262570177342, 26.767431408022617, 16.728028140996106, 10.463975854791556, 4.845757718114527, 10.616477048888282, 6.843165233098705, 12.173363778647861, 6.409442164134019, 4.993615778271519, 4.772058694298475, 10.086664325552702, 8.474035277280427, 9.37301235368842, 11.744534273563026, 5.397528473336163, 16.961199574526773, 6.153328507282435, 9.451244455858038, 3.9462265252399717, 4.7479565244929915, 3.364581172841034, 15.20204609314095, 8.073840757178843, 22.053427100962548, 9.986048844593656, 10.636992259278319, 4.040917076614769, 2.9174226793832534, 7.173900817514712, 11.0256010489216, 6.9628367263880415, 7.991917447181942, 30.0761965336812, 4.990856805761688, 6.041366850805293, 3.8509491867660564, 18.003937702914115, 17.985743671289725, 6.8827876446770215, 6.698229965740028, 8.355211622198496, 5.495774555537023, 11.207675645371792, 16.79798091644153, 13.281822904890344, 7.593630288851235, 3.749839251781833, 9.261658398541327, 7.802597909290156, 8.336017468764044, 5.139425327425365, 21.30644381759486, 8.045065690245444, 4.930693067013283, 15.569059684652201, 2.9713913910261205, 4.474129282628867, 5.4605342992694705, 3.049499287490356, 4.348440290127113, 3.633348575457624, 8.734476328195798, 7.486353083976629, 4.752753421112131, 10.446931654160617, 9.212948472299589, 15.38985054194367, 11.812706729330325, 4.810341734752247, 6.691115695407101, 3.8905247516476065, 13.30204438572077, 17.267658039287628, 14.682634388852609, 7.2082140922327165, 7.489523545927584, 6.438988446149295, 10.709616561452583, 6.580838651015501, 3.9951831916053204, 9.304278884995487, 14.995361431650892, 12.045727232903316, 5.295121567813516, 11.18229922765287, 5.360902447430085, 22.835305533365293, 3.9212683307609626, 7.999393116325372, 7.873529144970675, 7.177800512552967, 23.07287258982726, 10.184604978004414, 12.854042818169797, 6.090077734380018, 7.131849328092789, 14.494928793202162, 12.416376689659524, 2.9429062728713595, 9.290216372656865, 14.972420156173552, 8.964955415590955, 9.188377598129254, 4.452237356249441, 4.953965327781026, 12.767618122152447, 11.877689009196086, 13.814344420715162, 6.101470358060409, 8.207655244529278, 12.151816293859756, 8.123055369176337, 4.4798119777732754, 17.418805230234476, 12.050763232948414, 4.836222111905063, 4.270585841015363, 11.082068422340722, 5.077630123387898, 7.743345722633846, 8.651882327788943, 15.119487477700705, 15.700708556914853, 12.962049893301268, 8.856459952351225, 15.875326293388051, 9.416066025836686, 11.376590030003536, 3.7808039978042474, 14.727845822345575, 5.58481269928982, 4.870030346494157, 14.292611024101795, 17.475206823177892, 4.892870438610866, 9.922989522698213, 4.260445048907693, 17.67619235719401, 5.8622008150764096, 7.620731777156808, 19.363222937344162, 5.1287944653919135, 5.855927411360027, 6.111220289855072, 11.37222828809051, 4.76916202900799, 8.127034538232765, 12.248668829281293, 4.858131422073862, 2.470477882835571, 8.797942452544744, 8.169734598514731, 16.7361061763314, 19.86129404806301, 19.957034955788917, 4.303043890110557, 11.709020913592711, 6.673997972002217, 5.152787242432608, 5.561741211220309, 5.947823644437439, 5.7815927168360846, 6.248810987537355, 27.469366175099594, 4.196898533579739, 15.036539528703694, 5.0690714158403924, 5.590576307958039, 13.506110811676612, 9.822109766566426, 5.6312296570062506, 10.36339740729332, 4.32430039662294, 11.234395953387654, 6.958346754452864, 5.138775771095086, 5.081248803998748, 5.3393722580085505, 6.004653270917271, 5.513504854581473, 11.47597159305693, 70.48402143058179, 8.32558832249315, 6.536462684608457, 12.383816401871796, 14.712069017795532, 13.20046276815131, 10.967497412502654, 7.800972284208743, 17.860646355312078, 15.215635033386675, 7.721736826745279, 30.0528694271426, 29.551761718772607, 4.7462287392963605, 22.22571945550721, 12.857561463057028, 22.016587841566828, 5.077851178505586, 6.026872495039591, 14.6769815538291, 18.355290018307763, 6.437778178662763, 9.984232599424297, 21.701144888082275, 7.312228737120376, 4.396296877005828, 4.171387585561038, 14.304608277767159, 3.671248757187105, 4.406314999332337, 11.591604178803848, 38.15418285551255, 6.9040721493905854, 11.434279567071128, 20.13112585785077, 21.39099884331916, 11.348004013168719, 18.223794412600785, 9.726201360880664, 2.8960243357271573, 6.928887138694854, 7.64942873280316, 9.225547708308676, 6.793648553235593, 6.135238812041799, 5.874010155834435, 7.29742061930561, 6.628084630253089, 3.6183676604917845, 15.92377664844926, 14.701607813243308, 23.751142785913885, 11.699499898969785, 8.685407283935294, 5.87393200615692, 6.90929285443166, 3.3816956987535693, 6.208006850304838, 10.975773505211157, 7.3645448154570134, 6.816868814311902, 10.51684822546287, 8.153164338454928, 13.633537437618973, 11.436635642860463, 7.670893644445047, 19.099193643754276, 5.359833382706686, 4.231170428372198, 8.38060325777437, 18.567685828092515, 6.75990181034858, 30.658215003764482, 6.654991028251202, 15.059205847630864, 25.76100144462819, 15.748223831047584, 13.61473474003137, 4.683349172872582, 11.307666296747538, 19.770999746461236, 2.1478753633485765, 10.280177198428657, 8.623464154771979, 28.738893426794494, 7.601086981063902, 6.268588457281112, 4.818955449000079, 10.02409203678383, 211.08416666666682, 238.88000000000022, 223.2891666666668, 208.6516666666668, 192.51250000000007, 165.39916666666667, 74.3100210698536, 207.28500000000014, 177.13404761904766, 79.95185998856196, 180.72450000000006, 206.47733333333346, 131.58951515151517, 4.006734431834675] ss_vast_full = [0.0, 1.0000000000000007, 1.610000000000001, 1.350000000000001, 1.7350000000000003, 1.545000000000001, 2.1266666666666674, 2.043333333333334, 1.9366666666666665, 1.787500000000001, 1.633666666666667, 1.7291666666666676, 2.6831666666666663, 1.7413333333333345, 2.184047619047619, 2.6536666666666657, 3.017607142857141, 3.5431666666666657, 2.223972222222222, 2.721591269841269, 2.4456666666666655, 2.501591269841269, 2.2428084415584415, 2.595282106782105, 2.563206349206348, 3.6822792207792188, 4.090297008547008, 3.1897428959928944, 2.503088744588745, 3.3329585414585403, 3.6262044067044035, 4.535511904761905, 5.754773809523808, 5.230098290598289, 3.1477431759417045, 4.381201465201464, 4.526019758019756, 3.629815476190476, 5.3852813283208, 3.530430097680097, 3.7079058704453423, 2.089884615169831, 3.480077943298531, 4.3206568022620635, 3.074368593953346, 2.6074047831253715, 2.8101329257687615, 2.316904402786755, 2.097452622925601, 2.517491247314776, 3.8955429244668376, 3.005391070362685, 4.035090774722353, 4.077996520387823, 3.588200439660696, 3.962928066378064, 3.514162524101882, 3.1681044102955873, 3.7835892313000996, 2.5344028070835867, 6.523561050061047, 9.405019841269842, 5.917159408319877, 7.030597473301169, 6.265939054409642, 5.717573529411763, 4.2021984126984115, 6.565499999999999, 3.1704352869352856, 5.933319979856748, 4.088169866365517, 5.21350974025974, 7.661133123412536, 4.893430562532554, 4.006962726569133, 6.050474858474858, 3.777503945571337, 4.319855688429218, 2.50214072039072, 11.35328646963258, 3.914229825729827, 5.1598691761454925, 4.176439393973758, 2.8794218761630535, 9.644536514835796, 4.547099905458526, 3.858818568600301, 3.257425422326986, 4.460229893468802, 6.244460146826373, 5.935232754718047, 3.862399941402765, 4.550704302402577, 5.271911114484643, 5.524398091159044, 5.152712881433689, 12.40983254245754, 53.88163888888888, 19.41338815319378, 18.188429902721854, 23.5880811965812, 25.57162806637806, 40.413129037629055, 26.347939227439223, 17.47032500832501, 28.773504710975303, 35.78372402597401, 14.505976495726497, 15.176151631825643, 13.423378558575928, 17.098711596728005, 9.948780428721603, 9.311170417037095, 14.304828330424309, 13.21492194730557, 10.401243753798957, 6.987455443885322, 7.65499889885998, 45.55698596286754, 6.3971096665053295, 10.83585114926017, 13.19807457102285, 7.948615266636368, 13.189130560260999, 9.841313558003291, 5.686140685970303, 5.9678041569535365, 6.212143835707632, 10.236074814621844, 7.820182617218663, 7.021783942931789, 6.80636292554697, 6.481279839465633, 6.081589681645849, 5.343069449962749, 7.060440498437066, 7.036945391944243, 11.467710352706831, 5.1284644282497345, 4.896903032488303, 4.187982943728577, 4.5087252738003505, 6.845671976325315, 3.38189069927783, 4.809042556201204, 6.777229155862521, 3.7964116468409204, 11.104032019923658, 11.479308371953111, 6.222597658609701, 7.4007098038091, 11.328810997696488, 11.390515020201661, 6.827678037688418, 5.155339582032291, 4.216758828799619, 5.836526397678142, 5.724225751162181, 4.784789819355283, 6.951005267890081, 5.355720129990177, 5.296425216947378, 3.961170065377181, 4.729046703135839, 8.109865202913022, 7.705903839736798, 5.239328442484015, 6.4411745792712845, 4.423962743087215, 5.510129530243154, 5.62525934017285, 4.246525595953542, 4.363529931697539, 5.183307184570041, 3.9729676778250576, 3.464146991531922, 4.9844110404215645, 3.8271011412136327, 5.940224129265269, 4.188283369133097, 3.59672357406764, 3.8685618188485247, 4.6288781214223675, 3.227808380584662, 2.887948404227081, 2.963739425779569, 2.7607397603388217, 2.7763589512641578, 3.3943760538694017, 3.4381434774527406, 3.6499260879517745, 4.250855635064442, 3.056492426769624, 3.3737998740787662, 6.279345517722414, 3.300716631373041, 4.275117686603405, 4.054278154290544, 7.214489660194196, 3.8594524349432238, 7.916694330080086, 7.218914673046253, 4.151134562794706, 6.854801884281384, 3.096161143823969, 7.747189827480196, 7.14216284250748, 4.666146124771757, 4.377830960373329, 2.8874431043016995, 6.4451528600753445, 2.344819788824938, 4.577319511044511, 3.5229178953289932, 1.8741888352890748, 2.9795282633455296, 4.463073379488837, 5.95032818316874, 3.7920714974635605, 6.204140314916242, 3.5720571917875774, 7.530421735077666, 2.588298380493065, 2.7191843593381604, 4.5295402363850545, 4.63684546890158, 5.448846461348201, 7.105374313173218, 3.3267144820998062, 5.34825298484723, 6.173868569641863, 3.939992627372442, 7.989554643188245, 5.133562866449007, 2.4141612480458536, 3.730491487402097, 4.631595290532387, 11.290146331938478, 6.600367706902804, 5.372490814740812, 3.361935750316196, 3.542716110150347, 7.658179521977373, 5.5783800487804704, 6.177897943785554, 6.8413325438270505, 6.686933744953177, 5.028956356758634, 6.311990206967954, 2.7147863332455633, 7.568474936298765, 5.661845496565516, 6.3283105393693155, 3.485388968917179, 6.266688427879682, 7.3377550537680465, 5.925291045119596, 5.5474245555024115, 8.161870774245683, 15.710492628197022, 15.174715867465865, 3.2885000147027275, 8.970193914745382, 3.8613475976770344, 15.35009227813631, 6.172777790558765, 15.052837344542771, 6.277445650048603, 10.372782724986278, 2.5593512205668034, 2.8676770059160015, 3.5835447135621306, 5.823279434224117, 7.551516325779483, 5.22393027243342, 7.130527680951507, 13.339591329079102, 8.358987465019633, 4.294492946035177, 6.861808524992659, 8.324893640876363, 8.362880987655876, 6.950714354820872, 15.732880403227, 4.205150250588607, 5.237235381348363, 3.756558637796797, 4.954204726203783, 20.060138584921145, 4.7727168140966265, 4.330846105804302, 6.353190268223107, 13.128868010098266, 6.9800661380960465, 9.53928435952194, 7.279895726254519, 7.931857840457585, 32.137074820604234, 10.65449569805019, 4.911883514097227, 10.398901879705463, 3.3570910875080915, 2.318265205978205, 8.13259487734424, 5.8282850417295515, 7.548158472320214, 15.29943818637275, 5.945498302035301, 6.9253911507340185, 7.201474101889934, 15.402258341984412, 14.94764504368192, 14.230504365774435, 5.365915075664811, 13.76135081321216, 9.33620768382364, 9.209969921657596, 3.318232529101634, 8.141777835386607, 9.581241887629417, 6.786182312813318, 6.862194222574507, 6.127414252903815, 6.119411793567267, 3.0148255174351064, 12.504629846408355, 9.6937996356682, 7.157820205478446, 13.860355831848006, 23.77414152187566, 7.726572457577576, 3.168676546086535, 6.621839081443347, 10.42031041398029, 243.22923809523823, 190.50916666666686, 111.4131666666667, 81.37416666666658, 58.496309523809494, 48.31958333333335, 39.84426984126985, 34.49076190476193, 30.47272763347766, 28.973611111111126, 24.43203069153067, 21.93387012987012, 20.20577680652681, 20.1052706043956, 17.792001256913014, 16.17832142857142, 15.014621189568933, 15.015656671759599, 13.251853843052375, 12.493227692500136, 13.216078568774222, 11.968701630412943, 10.76889827929508, 10.37213107944687, 9.871954005374658, 9.31295424624396, 13.097196020642276, 8.745779655529656, 8.424420247196775, 8.040078833827122, 7.60162257350908, 8.077461794607492, 7.741731166543884, 6.831942837267171, 6.703315261989779, 6.836571857969582, 6.935180334494725, 6.563032886640078, 6.493473854421221, 6.992756634602977, 7.5333723811168705, 5.469592410231103, 5.635060514358018, 5.931116829067011, 5.210256647226523, 5.1231242132126, 6.818829309384225, 5.969532029123706, 5.644087474479095, 5.81235098986963, 8.589672776517174, 4.302042506736659, 6.826684354244847, 13.717074361806997, 5.1166572494218086, 3.936571045199097, 8.836524365313839, 9.957153375437574, 4.579200405184814, 4.627755063166853, 4.043092815761099, 3.59706337514975, 4.237837204567095, 3.757850768795513, 4.378696685485488, 4.44780122041701, 11.603212121212128, 3.3867642715138175, 3.2434630894702257, 10.618807692307701, 4.249503155238177, 3.3567879037510107, 4.6216350232956795, 6.523690400365582, 14.415628881344404, 4.3401815670243, 3.2613139202258856, 3.557351336694193, 4.513551713284332, 7.342239236780844, 3.2492163280619124, 3.0387278114750327, 4.0944925528844704, 4.058253663282277, 3.8746589826924294, 11.748854341736697, 2.584819480158512, 2.9098332964585105, 4.3784952086892215, 4.8940442428472695, 4.211011736685196, 5.385077011134268, 4.058407666152808, 5.557302763794536, 2.984991994253381, 3.959108505910351, 3.024482809571943, 3.9294525386078116, 20.372147186147192, 9.460837702115569, 2.9340251384310116, 2.788867781088396, 2.8733729216821446, 2.783979190080347, 2.7281556551556565, 9.876465741709387, 12.219202380952375, 5.234439662631313, 4.671139084350273, 3.9210595389044247, 3.0147692956266097, 3.852693304302882, 10.939170634920641, 6.599271078544725, 6.437528460574512, 4.484890872827372, 10.145000610500608, 3.284217609901817, 5.007512356025198, 2.665893938434698, 3.423528619819705, 7.932354029702195, 4.224605527846579, 5.267479159892263, 7.948358710607335, 3.7461439722494627, 4.288761325115727, 3.6120582359220457, 3.3543502391405706, 6.10718067930354, 5.936209138861903, 2.3195387098733287, 3.009217726126701, 4.275738616043249, 4.4577216575465135, 4.148175382424991, 9.02693765464439, 55.97848190583716, 99.55500000000018, 6.79725387376034, 5.59863919761349, 64.4183239556692, 5.778419138743524, 6.117692655022729, 5.171557685232345, 4.417776676208052, 2.754996257196058, 3.990732979011123, 6.6066350089518195, 9.980008634463145, 13.383311738983481, 10.079784956402083, 12.030061488148938, 15.309821947269835, 3.2803010581784755, 6.596664386195156, 3.091968621315326, 3.377043480058105, 5.240849544870486, 6.808335006357992, 3.123559543036389, 2.6106245146510085, 5.496308140309005, 3.7494064287325677, 21.105405997869227, 7.017750060033023, 6.411037402033501, 8.292643577437055, 12.528176520290614, 3.8691097470520828, 9.240819639179607, 5.573905641532098, 6.940823624280668, 5.657274816552426, 4.898395258741228, 3.6670584901677974, 10.091320331173257, 4.378322414422638, 11.89508333012033, 6.668272289350616, 17.806672129319956, 20.569766992186562, 10.34346531609145, 20.584071733821737, 21.062909947070484, 13.668658202908201, 12.30592987543645, 11.745685955384479, 15.971637445887435, 22.705868854421983, 20.71653890407837, 27.532179377854675, 6.606968595087406, 15.111406658482151, 8.516692959530596, 12.309389929693959, 21.879765569397915, 7.536893948337523, 17.08356378339248, 7.301879639115206, 6.386914526993475, 17.571528041403038, 5.677004941335877, 3.9692172381705704, 3.831236812853309, 5.2342456758429305, 3.8036813451878375, 7.747037870094438, 15.440072149518576, 7.679148228382251, 6.4869993082230595, 11.364830964816345, 7.295633030566124, 6.992579347045234, 8.699648521762175, 4.638216659862833, 8.621463223324229, 7.99266025259776, 11.942828430882845, 6.227238652929987, 5.88610603886522, 5.915757217576025, 12.676094680572321, 4.9195555452791355, 6.0790730926158005, 3.6024884700297393, 4.380442164789533, 4.70222858014315, 9.310414959665675, 5.006202184651085, 3.1486366726260346, 7.889669223242012, 7.88693800952466, 14.027499923468898, 3.5833564249209098, 12.198652884152883, 6.50205599526507, 5.880408860727798, 4.247556865504819, 3.396621006134396, 6.387786201883059, 5.352498665900178, 12.307598562993087, 5.533781199240986, 19.465821428485516, 8.502202663419123, 12.516734826362521, 6.407883300279255, 5.83886360402001, 16.865851012506965, 16.558954822954824, 8.120675518925518, 14.121467543961252, 9.104379034816438, 13.973004165877049, 4.940104523716085, 6.830400866433764, 8.228400618853081, 18.10012815044432, 16.99368507536621, 8.624231133815847, 5.227232738616281, 9.830061162040574, 7.925663626766888, 10.457191888391991, 8.933785296674099, 3.718596617665995, 6.03241328625508, 7.637286956235482, 10.636477230695716, 17.144018556933265, 9.554165568129003, 7.51483785689533, 6.057566833966419, 8.772401775872574, 8.243013722299404, 6.256134072693854, 4.8705504559995125, 7.718848879769474, 14.313492416132942, 9.321739506109388, 9.257836160730987, 4.140804511528155, 10.43343573786946, 5.660000424288618, 6.75797390872303, 7.439718019644709, 8.022038146693342, 4.631597479498286, 7.4955830927952425, 7.628649075273906, 5.080952946352518, 4.240342499230491, 2.7056172733598283, 6.019768681095304, 13.396298481640356, 10.424955461918278, 5.16237829727658, 9.17519807009078, 5.408892758914686, 6.891807607962035, 5.535550479445962, 7.1548600889697855, 18.702623773871853, 4.361950929408542, 2.992402173202204, 2.5054608091873445, 2.4118077599931196, 5.331332514668973, 21.083712612078326, 5.972298865622393, 12.666106159126047, 4.982676445824328, 2.4730280317153737, 4.762413478191338, 2.473206858646153, 5.2335013534820884, 4.586842040732939, 15.102406991838574, 3.71256521034785, 3.0261606788779623, 4.5896874363195685, 6.927182654114193, 6.399581420832942, 7.175478124680878, 3.8146244337350894, 2.982767838796117, 4.112230917385933, 5.100311074207667, 4.426977843219568, 4.4860797418974885, 5.584909114240602, 6.82576171259913, 3.149480907291949, 2.5745418061212937, 4.9146789940877005, 5.1257545693737825, 3.8796410417537746, 3.1260687235805222, 3.367656387782178, 5.3443581315646, 4.067109834742056, 4.749351440299679, 3.8158112312734773, 2.555942019097123, 3.289782952787176, 9.140238841919208, 2.945699675163197, 4.000783811954023, 4.8840071291456555, 4.72118355128622, 2.752803204316909, 8.760275705349406, 9.073673070440295, 7.1700719740893915, 3.188280692441329, 6.2981524489748875, 4.290475922120275, 2.879340093437189, 3.9095127484015957, 4.7760010359971945, 4.681505283439204, 3.8167810643169346, 7.757913407188154, 2.860378166582211, 4.4522204815193245, 4.125171117038529, 7.639892160614413, 4.9233538521168905, 4.923717141780811, 5.654760023795314, 17.477251145906152, 8.357578191971086, 5.068493905346498, 6.967708078402978, 4.512212038578024, 4.7092841972205735, 5.635650163798511, 5.932193651614615, 3.781987871411093, 4.031381392196628, 3.487383225316296, 5.623170493327339, 14.284380007053885, 8.800071212995807, 4.166696787163318, 6.330041010689251, 5.402281562690499, 7.326884310258575, 16.656900170981775, 9.147818307297218, 12.68165403933439, 19.07799701577826, 6.746613748901975, 6.453294722406516, 4.052513105291304, 2.979908808660571, 5.022558361978486, 8.257876729431086, 5.6343533227994875, 6.720304222016208, 6.95281551267529, 5.941495473880956, 5.185750797581147, 3.4959380783102154, 10.80457912583637, 3.3456053858361896, 6.651655419922411, 8.042106681287999, 5.3660254745207325, 4.814160473088147, 7.689731892217304, 14.46057270206813, 5.9452595354608055, 3.352173226044365, 1.8519009073109975, 3.692003837227918, 7.887469452036401, 8.53037279010612, 3.9616760886507065, 15.138957304290948, 22.700676152394163, 3.092124678187194, 28.46860481695573, 4.5684261877788614, 10.313815512683632, 5.729049084626475, 3.7572060010052044, 4.661860760593103, 4.28429002771392, 5.167915305776376, 4.088706159765366, 4.611967874501532, 3.3174165074268704, 2.5641274682708612, 5.7746827976925825, 9.045055040092786, 7.111971768012014, 3.811525330694016, 11.049101405259883, 5.10617403694337, 4.88018840116837, 5.735195111956566, 3.5596580694432682, 5.036496214832601, 5.1970163954720325, 13.00423948450189, 5.774208667709625, 3.3351362017910406, 2.16919284923644, 7.786915429197889, 7.174143482052082, 3.177843009900516, 4.607499996505623, 12.769136816030061, 3.6526902078691377, 7.778444300473401, 6.960822713570406, 5.327996488319122, 3.9652018868968786, 4.320371126970474, 5.3653181816598075, 5.441417818200018, 3.728832918070757, 3.090939062344042, 6.134020910256342, 4.462337550509075, 18.5543045558309, 5.871070669772459, 3.123801692023508, 6.5923862825154895, 4.146384299114528, 5.036395844929764, 17.08820357514986, 4.494519717246817, 5.442481103338771, 3.1917483697071094, 8.34924930174096, 3.348453788757699, 7.292693967450897, 6.337286849755709, 4.103445809210521, 4.5850392642119395, 5.057093364349607, 3.848750333523377, 5.277807360693435, 5.26642247112902, 2.7459855877286943, 6.1905732170312735, 8.19519694311251, 5.913966730383516, 10.3634388279603, 5.581984033026646, 5.324437847697102, 8.850163349900948, 9.420653429468436, 3.322069421896923, 26.73559643319518, 5.309486924847618, 7.034494093328716, 6.304838373610757, 3.097524931907907, 24.110261720985978, 4.430587635356009, 5.089718028512845, 2.6840771703988633, 9.184380828937627, 9.199986534292288, 12.89444546856519, 4.955951078348218, 11.78599281725232, 5.201082678231846, 3.8321568826394463, 6.278557064015495, 13.213911030775822, 4.027052052597246, 3.475633034408614, 7.25712327490598, 2.7344558502882124, 16.369680498805128, 7.773808322818547, 4.511892769306728, 26.711762394525838, 5.3360106300708745, 5.402252003443662, 7.203141510313486, 4.9167718694129805, 4.526270027813033, 7.118627881765672, 3.8938936048068387, 21.14483835007833, 8.96750679858855, 9.580843230589972, 3.9041098951357185, 4.375196788035029, 4.052054795003316, 43.25566561325284, 7.776162932919076, 25.13106182853175, 5.075131259225567, 17.42804849001524, 7.317415968142205, 3.417094079140668, 4.498596761671743, 10.083490695652184, 12.096849426107198, 10.66516510691251, 29.5066450935713, 12.761536665860028, 10.645006122366475, 6.860220812063789, 6.255475946269228, 12.924897152552525, 6.241158773303134, 3.9376845685550173, 3.977905739503266, 6.510770371980226, 12.138420993369513, 11.66967942473257, 3.2417079782816933, 10.523678262111787, 8.52338736196433, 12.285514187160734, 11.279616197924804, 2.7339890563300355, 3.583850968556231, 5.475270531481759, 3.745124128517835, 6.55976431491149, 5.197534105364151, 8.547213043355226, 8.238709736561358, 14.910379629014008, 6.619170032038475, 3.9338035322237563, 4.384117224507015, 3.4467602043543253, 6.542081796095856, 7.723185871266737, 5.318637143656267, 4.69175099109687, 5.777133652532866, 5.217904422409642, 18.147205528166, 7.130852313993208, 3.3937842887048677, 6.5603016322925765, 5.686140413265776, 46.2376565730832, 6.747898026063194, 5.673728770559225, 8.92718217871695, 6.45406469422689, 5.993648090206872, 6.822350610542726, 8.604153830918737, 6.288087726394491, 3.8769504771190606, 12.751484423639262, 10.393771777635887, 5.15736966296133, 6.291662593391402, 3.7263883830312214, 6.237152887892637, 10.838961912276742, 5.1268369285561555, 6.776077814489963, 5.948727321983139, 13.614790099467866, 6.113245996077964, 9.057805845652746, 39.14970152872764, 17.028760434010426, 11.013588927289513, 16.72046375538583, 3.5076055452037886, 12.889542953307942, 15.226993845112087, 17.910950847174608, 3.137323212845872, 11.268374887912577, 9.479696796950083, 8.872780047102596, 11.076063522808324, 19.394076099666993, 9.067493977020982, 19.82616906082624, 15.469501780091251, 7.128820755086305, 11.780252065628519, 13.743464256824733, 23.2325870747096, 5.8858704495524545, 16.96321060817066, 9.510217721166226, 13.363439628998638, 7.060765038127701, 5.119585685079844, 6.791820955473384, 9.053102615993875, 8.144057337116406, 9.27741495300746, 9.124336723297427, 6.371676444412296, 9.680990542210175, 11.882422897301995, 12.623794137868405, 8.467287827934882, 18.671343587775237, 2.7062835446705233, 9.039925001168882, 14.35125579839841, 8.002664440894966, 35.779763542885746, 6.993036196371506, 3.303743512265181, 8.89828112870831, 8.89426779172843, 18.842263280381527, 7.593673354335515, 28.45931413228492, 16.276360868942255, 10.067105782474153, 6.157146826217997, 8.47414539466703, 10.028817960490976, 8.036670415836511, 5.993490693233814, 27.388456901748064, 8.118412909995754, 9.081482850916505, 10.140066729004749, 6.577513419559202, 10.141723788654014, 6.58118242681813, 14.204994569839322, 8.818138669030082, 14.216916272647765, 7.406351478467742, 8.886114448265774, 6.666573922281396, 8.361220587823947, 6.926579040023649, 9.09824200917709, 12.46697106918378, 4.397040903634903, 9.771492206671025, 19.763888602550782, 8.71165168044092, 10.300240897749006, 6.978460342871235, 17.872146754123644, 7.657668235698957, 15.96865122516248, 7.703179611336996, 19.49029751348308, 4.173124048102969, 13.181294675879842, 10.781401349736377, 37.654679863077575, 30.51192969188814, 4.320555913000756, 9.572503608113715, 16.48202391358939, 19.98177606807094, 14.724308043840416, 8.707708764234228, 13.132119767768497, 21.660039749185227, 9.294022479744708, 6.393875105292177, 23.52628970379635, 19.016750546647376, 11.093476713656646, 6.779677293276037, 10.176643267473139, 51.47065109257878, 8.204547867549296, 41.283406778937014, 10.282406786705492, 36.52265974545545, 13.173583293626418, 20.255692334958358, 17.26661793864983, 14.967408943423603, 21.608296961112114, 11.53137480052082, 27.907257395597565, 36.55986503537169, 19.63685170024146, 11.281921390451128, 14.473831704901011, 19.052612224434114, 22.046560940637203, 10.89252769138805, 13.111076033017948, 9.364753040207814, 17.35064198275633, 23.395167577312495, 15.678137141519468, 7.7552977504892935, 8.74544230450943, 10.134651387024455, 12.223826715276038, 37.315773024579705, 6.464012467560361, 8.26856813927038, 7.440591251831878, 12.4252736341444, 18.814923139384852, 32.210464498729436, 17.700268067095998, 12.68773153327073, 16.828272890613476, 32.2900751290484, 17.094743012763463, 8.606771881317101, 6.483289532043372, 8.03660356369249, 17.28982197399157, 5.488688861189077, 8.704904447456878, 6.509744328133466, 7.026530571095089, 10.447082686170887, 6.3467420462966135, 10.721752287869624, 8.73045246996459, 5.002415090529427, 6.075042983773206, 6.4147737702587255, 7.479546939791197, 6.775784960130278, 5.456702567676142, 3.8532262582377257, 5.640225965374088, 7.959916082898032, 3.9456026148457943, 4.965896908321996, 12.306195507250507, 12.851135868906896, 9.76384694433652, 4.165441977496339, 6.613730064002306, 4.780881636766679, 8.207950114756512, 4.874199047764359, 4.680417980942588, 3.9249436697319835, 3.847237624134633, 5.423318082853923, 2.7629406229297815, 3.382066404716585, 5.958379037035155, 3.39853517933313, 3.3753046481083753, 3.0914789249588033, 3.8225767012673364, 3.167727324219464, 2.627308235339734, 19.676288821766473, 4.4800738275356, 2.554240310567391, 5.532626314668199, 4.1653628716735, 10.065378813463278, 7.165311573740336, 3.8617132682461257, 3.493479197422221, 8.652230321679486, 3.538048160720788, 5.744494421853457, 9.715211559138968, 7.326262167444052, 4.8538827048497, 3.6119755756422767, 7.583064267850052, 3.218456037038131, 3.612656545319661, 5.382627562547582, 2.2128384578686497, 4.420621288294859, 3.20302651104651, 9.167560735209824, 6.952236587728966, 2.880690356892287, 4.057671854240752, 11.890092419646507, 6.12007843804101, 3.3814330170196456, 3.4539819574903534, 3.3236493136851877, 5.222286464419832, 3.311300698234595, 9.657309389688137, 9.625317180931765, 8.573191340793434, 3.450154285855794, 2.4304678428567206, 4.207668477614224, 7.241252348966884, 4.270599239963729, 5.157049918530046, 5.986585770098808, 3.616271382817115, 2.979678480880911, 6.48499361583548, 3.6230568917804042, 2.5571335766626486, 5.390724119036219, 4.647078913078448, 3.912148175864558, 4.218310507480991, 3.6487868527292595, 5.973087655213438, 3.622246251395038, 6.265799711184742, 3.5048043486672746, 4.034004187119578, 4.636681001214305, 3.6049859001528732, 4.251388167754712, 4.476468026837329, 2.16147966648599, 7.2322466338125455, 5.695090813447923, 4.603266670973452, 9.6654553045587, 10.73989264787193, 7.412548076138782, 6.458444870520282, 6.787847277584561, 9.267586458981855, 36.12265180768666, 5.845707416480068, 10.941516407126192, 7.079011313417018, 6.814471174894802, 16.40565095126998, 3.6442916380794044, 6.61579896476365, 4.747083102969033, 13.908498051939246, 6.645425601098268, 11.5511666932219, 6.463696745503451, 3.8516826271656956, 3.086950273139932, 7.4745722368692356, 18.95818175372258, 6.396176892177969, 12.328424856234244, 6.736743967730758, 7.100125927021454, 16.577167036323548, 5.036557687806332, 21.341899397164344, 5.702191124454367, 15.676448537377718, 7.202797297064319, 3.695149166588638, 12.594927686363931, 5.17410326383264, 7.718522056062632, 7.769844533872699, 8.342283191069571, 9.823018031704951, 2.9764469988131435, 3.9994684290137053, 8.33073679053682, 5.5787356739905425, 8.821933773920318, 5.31340880362229, 7.451736791391655, 5.838585598767442, 15.134969777106248, 3.6292269823430066, 6.542477202238461, 9.509603548704462, 14.717157519368145, 6.092455209762424, 6.755790127295222, 7.1158961210438525, 5.9876850931311285, 10.665146420197507, 6.333592013237682, 10.173974583513598, 5.33159975202019, 9.986459329659834, 3.876484225527051, 5.981540110126046, 4.981556606007947, 10.176411287374064, 9.341667601772155, 4.378028123087903, 6.675870037991941, 7.622210261393323, 5.731589705722979, 11.44511222316974, 13.043594692862795, 11.132771348595993, 6.555752853396203, 15.498543750528118, 7.190704749343894, 8.47967387189988, 6.555781499319016, 6.98539918944281, 4.655536980112358, 4.9673036500156815, 12.968910486838924, 6.475426867286256, 7.97400636953182, 6.228230812460336, 7.476282028621267, 4.2402868374955265, 8.04852399381347, 5.210179048965863, 3.850842323431837, 3.7399414208508994, 8.36409781043932, 3.949973936108111, 11.934978402751499, 5.001281890078899, 13.376203004896235, 5.532414175067969, 11.823118887787452, 8.87405256689522, 8.582257910339253, 4.404735496817864, 13.131773864739715, 8.521265655069183, 12.600991425892957, 4.854676014817793, 16.035898300575713, 14.464085992048272, 2.3832439470912394, 9.028082535396152, 3.565785444723366, 5.873823991802777, 21.57824041308795, 11.366025758435422, 11.989111019742676, 9.454255352890081, 21.38694247180469, 5.5060602036064425, 12.683172738615188, 3.4785728941476366, 8.072697912411051, 15.624136906013124, 5.393740322387761, 7.625798789007849, 11.47271942706272, 20.728974669233406, 7.767518079241093, 6.915503523178395, 4.508273865024383, 5.920949528706234, 5.709263278000951, 3.5886080269853258, 3.48223346036427, 6.110229095018159, 4.139365258443038, 4.120707081843783, 5.652357381984099, 3.710046597159165, 4.7384556679362655, 4.349196340196067, 3.8245841653684622, 3.8246657068917957, 3.3105963123669193, 4.120241511538982, 7.358338328240398, 8.047685086332224, 7.500481664460933, 3.4413513726654226, 4.678487100033714, 3.870505091173514, 7.612695975889445, 4.184560131247796, 4.875164159562264, 2.8039070017773917, 5.111413189394434, 13.131622843351701, 4.931715142838431, 5.292720863447, 3.0653798458828176, 8.676127034742008, 5.747317851736019, 4.868712521212098, 3.681049426015205, 4.964182914693074, 4.39272019777068, 8.927725181130977, 16.181123911921695, 6.08173045814988, 5.5442603427071475, 7.328481415436079, 6.821112139702579, 4.235242727732831, 6.467076548168842, 5.32218209384725, 5.833875111773006, 14.146616785316532, 6.22104972611593, 5.78680293592279, 4.819491707932415, 4.0800273772914615, 4.492361076173556, 6.073414245364855, 5.296972538148999, 7.8034314734583665, 6.022971242118372, 2.2258766438845807, 11.675379869893613, 8.372450504136085, 5.644163429630762, 3.835951524430439, 6.284846891784312, 6.689039110788817, 5.06546068804733, 3.8066832444622336, 3.6381613787129528, 5.2182895569571945, 16.647726923021704, 5.06834782989106, 3.956002215184598, 3.540319482432098, 6.5157802129778855, 13.740782464440231, 24.596432453281512, 15.1296814199627, 7.0842453958114655, 6.549279460650761, 10.750129082562493, 12.020284818124335, 4.262741857471925, 5.0161985151936594, 5.037200979411362, 4.834829718549365, 5.194360949091123, 24.495180631653877, 4.2551919827757745, 3.4458285388408507, 4.618171513921044, 7.047458998292819, 4.387099939234511, 12.632425144053602, 23.433777020098038, 15.581155492710176, 6.507318902452752, 5.617078737339156, 6.083229071897519, 9.150885149602342, 4.740935567923931, 12.814153880458935, 4.573322355563096, 4.418350080793259, 3.73938167640638, 3.5906598322108048, 3.841629565286016, 7.08768746240661, 5.69971567831054, 11.593573872846074, 5.141178002123109, 32.03809337443889, 2.8790828838863547, 4.872624782719695, 3.131061979993798, 10.152281543292906, 5.031033792602787, 5.21980469789965, 6.932776026145645, 3.1278094045224694, 7.917374431877509, 6.267355663915088, 3.3199629433411983, 5.87251416389103, 3.9987079961824508, 3.3488726212095514, 5.146334657956826, 2.283506642117731, 2.7727282294044615, 3.828297450396821, 6.520096758301603, 5.731531846015899, 25.190289130531788, 3.1904075554791373, 3.534207633823991, 8.746023801116936, 11.517368103898088, 3.631854872587607, 7.925176192232579, 4.809131656014299, 4.939615245320029, 12.646621709949708, 20.11354083526589, 3.102440274933981, 7.24328964699423, 4.407507152281575, 11.683033670709149, 5.439726996761711, 4.046951474345454, 8.781488855910888, 5.099059157363012, 23.354735238873, 3.532044392416472, 9.88564213514775, 2.7977268987009736, 2.834049551197628, 4.443272852634789, 9.836617561959194, 6.452712347284199, 4.805401179662565, 4.958897461983098, 24.653043064693787, 4.284235437215048, 6.821849945419262, 17.931653921694235, 9.264198113531037, 4.121355789560243, 6.763015971736628, 11.317670515486462, 6.7524597171679215, 4.556068867667423, 10.150717606422056, 3.846345031686042, 11.826510904472663, 5.038091480781996, 2.8209559128702604, 3.7067984189194605, 3.581891294212323, 4.583996667027102, 5.017071241710025, 14.997340265498625, 4.479339779582827, 49.13744834328455, 6.472258618511641, 12.896789881291008, 7.536161542204167, 13.97863325563324, 5.839796405186311, 8.025937939269202, 8.256077227790291, 13.063847326991743, 10.890200884771195, 5.071747570709869, 9.47677268351764, 6.383100720594805, 13.426634815919982, 9.384943892909893, 4.976995147044789, 7.024942887101395, 5.068876152919323, 19.267869247912156, 4.560116019847054, 5.343700221894241, 6.2838022614384075, 2.251427701668152, 7.1452151812950495, 14.332281535161266, 9.18610349476785, 5.660320770938009, 8.38394411443446, 11.730334434979214, 3.900042966061245, 29.545255140049566, 3.76632984516461, 21.526516219133498, 6.586360572932944, 4.500304174663307, 13.61592319837913, 6.399282286632547, 27.583853970202334, 14.510492409300339, 15.532380913434626, 3.0395860323422537, 4.801350124548441, 9.84566472368985, 8.85702715649108, 9.135525777742949, 13.767505237901183, 8.691041150271847, 18.610765105546914, 7.338611566770299, 8.466887706677566, 6.431208614119904, 8.749681837747, 2.692891224263522, 11.414253653671773, 5.9823325859408465, 27.72787164011109, 8.421318787077992, 8.498677382250989, 25.631924427703527, 8.246619281177757, 5.406952332565256, 4.45423468281841, 12.15125270733268, 5.978825132429761, 4.736833603867829, 5.834997267883182, 5.417743053428507, 4.879643775225897, 5.781682471419344, 5.310432070870112, 4.975716371651636, 2.9225588419449684, 4.091217156262695, 6.455471080933543, 4.993628555328171, 8.265302896133443, 6.283275315813516, 9.63218176034456, 61.5537136844637, 3.9583811018764328, 3.3893691851707004, 21.770023675973615, 7.03819670089834, 3.8428313083633556, 17.62177992838991, 3.5384462992217633, 4.278284141857476, 3.1380836047159972, 3.9821145370339996, 6.407437884138632, 3.12946534904629, 8.325510664270684, 7.0955535788931074, 7.929687802991112, 5.527767229228098, 8.251841609033335, 4.311315691354549, 10.766402266883619, 14.869278142825472, 55.87182364837243, 18.524855471387355, 13.541213648170425, 12.561793361355484, 4.325651851832371, 4.631397884167498, 3.8784794059607077, 10.508633640650633, 3.4302114005184166, 12.12784335711767, 34.696104324736325, 4.141523197592549, 9.82009594775072, 37.900827274109744, 6.835975815229517, 3.327493494184536, 9.761708637367846, 13.607057029395964, 5.125028840542606, 6.47499139586107, 5.822184627656128, 14.45721544439392, 7.9673142795635945, 3.4829031510133306, 5.40247293782755, 10.260085114056261, 5.138043770693206, 3.8517847753135013, 4.672681826364149, 4.751984828303473, 5.892391617668507, 5.814904592917355, 3.192902016681597, 10.473837640046247, 4.912748357395075, 5.305519307453694, 5.30005221506584, 9.970609534892192, 5.952143256351046, 6.193688751204839, 7.851370946526063, 7.587463059400362, 15.27348094711069, 5.453960628374414, 5.709547517329282, 2.7761759520474065, 10.64154873475998, 3.6495144306973604, 30.58537698412698, 4.271077232306083, 3.5654846924412955, 4.78077889707243, 16.62457745515524, 20.985671131331372, 2.8285935391570995, 5.365326781435876, 9.187108153811034, 13.244631008454776, 5.078409595648318, 14.311964124484756, 6.521718028121231, 9.666011553094798, 8.455052969530543, 4.680351722105738, 5.861418102348017, 7.124079522516078, 5.818683593117469, 5.947027579565568, 5.206666901889421, 6.8934449938758, 4.088593761556058, 6.302262219409214, 3.702818153830435, 9.767266645173308, 2.8835559847911805, 4.151126357061434, 3.8495359317157307, 6.949545755505983, 14.319916851349182, 3.2867355075454725, 2.7568802351474586, 5.842716074656195, 3.507575040035684, 8.51401447986039, 3.363823605446613, 14.380943024771435, 8.758647239059275, 4.097830660695419, 6.055461352981475, 8.611442092142568, 6.194479936169286, 2.7358556512715353, 2.8324678395077862, 6.556976431522063, 9.87876204952551, 3.312603736566109, 3.341397846077514, 4.8628637033289515, 2.939671380572769, 11.439700606749703, 3.875049007076098, 14.487769116767627, 11.647495395022803, 10.51052766454881, 12.225088015058885, 3.224551884079638, 26.06288342995986, 14.779324061010863, 12.308516631054099, 7.0497152031938235, 7.956833984861025, 8.304701803490321, 10.822188708169387, 6.112340990764525, 3.6253090708841222, 3.200749142598753, 6.194112942836478, 4.124176115184951, 6.470584938088354, 12.01287220817132, 7.661737417805864, 4.680749535965232, 5.275846735128513, 3.949176925586444, 3.045737262002232, 6.054275724407181, 6.928093595077071, 19.47311815838989, 29.733456400640296, 8.228710184568603, 3.379348925856311, 8.461889337556855, 15.241547668456343, 28.64125294313529, 23.604844863917446, 7.8893614645879655, 5.256432178711735, 6.472911551901184, 15.849713818573617, 12.583325694146398, 5.596474216565164, 3.353656334642691, 6.699418530030366, 9.0139529690792, 6.574229331863982, 9.611347202401966, 7.906698925184202, 4.43800805061992, 9.217523508382778, 10.364137705873425, 10.51396090988328, 9.729312461794152, 7.879427047372615, 6.068305750505947, 4.554542071984087, 3.3885417681299588, 10.938050409917631, 9.232367872603508, 16.930945206229104, 16.251415973031197, 25.797694916752445, 3.7691211370948987, 7.178609893627522, 29.353684687871954, 4.610575780537476, 11.054074805234125, 5.81034810654052, 18.74683757783045, 19.426504406016143, 4.143334752707501, 9.305929550666349, 6.233813492078981, 25.01945566163582, 32.38979668837489, 29.573567530012763, 6.300440947215322, 15.84541476436188, 7.481601120589138, 32.29788409244281, 8.913665009825056, 8.220999205944524, 5.473339151834446, 4.221147004334737, 5.943616383647505, 3.2450847346145544, 15.08663726260984, 17.113450957542597, 8.68206154802608, 14.138509981089692, 4.991524900322029, 14.251764038276713, 12.171798636252184, 7.446419448574121, 2.829308434312948, 6.9386949354199, 7.946528314226442, 10.829356959844183, 28.031737952535945, 9.257472628720974, 16.18882842823983, 23.027375314717958, 10.613765157912834, 5.842483141848829, 4.673771033226173, 3.8576817642096968, 3.2647623015234846, 4.1139153940894015, 7.863734574697982, 5.77966379998555, 5.1272247473929635, 6.003109049181816, 11.035475480834604, 11.208172100105957, 5.50364629173854, 6.315670891148708, 5.383622587992693, 6.763453460741172, 5.824023008501006, 10.690986283409199, 6.294448856336544, 3.7949472505914206, 2.7671811153426753, 3.191996761298318, 6.141363156251724, 8.675998620925565, 2.5504579335444473, 3.6224048236914728, 5.114267685204321, 6.1261206923107245, 11.721438799763435, 3.996872287361375, 6.347368309864664, 13.454211064605532, 14.682894785332149, 3.646083243953446, 11.612125995674244, 9.941433915753848, 3.507537934170463, 4.191801435157826, 6.831370943584352, 4.712231754023648, 3.2856697443748666, 11.858094934345116, 10.371178584258088, 5.215954056050952, 6.576549285138021, 7.956802009315452, 18.327133605284285, 19.485736025369484, 8.906047967053698, 9.975015809183354, 4.848521621251858, 7.734719994992088, 4.99963833531677, 9.853493256503459, 5.997737447863766, 6.756141618101834, 31.701173095854404, 3.8871328913935863, 2.7420670350756295, 4.182913072218974, 12.650448309103822, 4.670626969465878, 6.102077686354625, 3.474862883157778, 9.601012748770062, 9.377102566569418, 5.508916349931226, 24.640213732389032, 4.404074396257511, 18.55504125553261, 6.520622349742245, 17.295827703125457, 6.979522764397399, 7.332738562102261, 9.306076721948113, 4.36923722731561, 5.757165751984068, 5.0064294847763176, 7.512533001618251, 4.581522419796865, 10.241805413055248, 5.183324868501838, 6.390505490355763, 8.089732268381493, 6.272143672243181, 5.781886978973144, 7.160228727670387, 5.619320695338206, 8.918628153618737, 2.671643459151879, 6.240538428635606, 4.125798162184652, 8.063215505885664, 6.087189078432615, 9.10741759661721, 16.900536700970274, 11.202838257014209, 5.116528470162036, 4.1268800445673355, 7.277239439439798, 12.792657945601798, 3.632957553766786, 10.84594026843452, 57.81035706606784, 7.779257743676468, 9.007281374921057, 4.631533226460808, 5.197413214834803, 8.681490316301906, 6.174160973841399, 3.9585437935575274, 4.640846369781558, 3.496549276757766, 5.285078392685345, 5.369636728815393, 8.722626911264236, 17.696735492247058, 7.514218747862719, 10.143051416960924, 5.187803789147636, 4.610814974715186, 2.5032540729053725, 4.603269442511095, 6.058648683407153, 3.3024537564869143, 3.6889719748717735, 4.758460938522728, 4.6496097458399985, 2.9792840871585216, 4.363964542353639, 3.2484870372077963, 3.869220132221478, 3.7338149123005744, 6.606451330254179, 4.365106542394324, 5.667890942643846, 3.6023815022321615, 5.846397071147915, 11.425200396235116, 7.068742633999578, 3.786393140364495, 19.495026807219237, 3.791355362823042, 3.424990682417127, 32.26879582117495, 7.625625001833563, 6.80883688379913, 5.887367143266095, 8.836845447384206, 4.8526983544451445, 5.149519788318905, 6.216773460510728, 16.39454980928639, 3.848440186900523, 3.0255124544500367, 6.22465344337033, 3.3652116524098337, 4.605036587475218, 5.726873476419084, 4.803454057764471, 7.711514104357305, 7.1262161385116425, 5.757649097460818, 7.48565270349451, 9.80134450693411, 2.521161508813635, 8.10340314487977, 4.775418242727904, 9.017944670116407, 3.0477478565221996, 9.596220808120995, 4.319719046957329, 3.9851870069587334, 3.5105085623833485, 5.41483909058945, 4.376101925889554, 5.655132501302446, 2.9612793737217062, 5.679236275052477, 31.741144596580494, 6.354260546598431, 5.175239536264615, 10.693877956691585, 42.86289089188874, 8.086463703186848, 11.572391457157307, 4.656079254847969, 11.934286566567156, 13.598586183856975, 9.368844460081442, 16.341360837239403, 7.153003834477214, 8.124090393447743, 7.778971490968056, 12.602175705671879, 4.5437354660625004, 7.381937177992689, 10.71846937731057, 10.216151587942115, 29.588471163449515, 8.571575986306225, 7.03963754159075, 11.934279199737029, 5.789800377346494, 4.904035601963038, 6.128594550790093, 6.448848545516938, 6.665659431461182, 8.821076588240112, 4.767468124068839, 7.67704834867366, 9.943954615521319, 6.453818740861246, 35.932271466165, 5.423073048610366, 4.3357710847389335, 12.545833089511113, 33.88122247319955, 7.315885254087242, 4.623775204041511, 4.115871647546105, 3.3469838191091887, 7.195579435196836, 9.01992026601854, 7.532389771600525, 12.747340781900162, 18.506510104830117, 26.769264095838782, 8.34316012030257, 16.793271779921934, 12.164486046259926, 8.971787672817396, 10.143447655062896, 6.817736889045322, 7.852768380739106, 22.07212566629275, 6.645292379115008, 20.149394176120154, 19.874955961366663, 9.675282845760956, 29.074629316831793, 27.271903607013904, 6.114757724188924, 5.281799789815672, 3.14933744549059, 15.318678614031553, 4.146328460116972, 3.4135922552353066, 9.019771585163369, 3.3970817434807126, 5.151078644354292, 5.5596517513816925, 6.782424084847141, 15.048344673491291, 6.749357373797587, 5.137972817542476, 7.658473656562194, 4.111973101907997, 11.927033495310281, 11.705158423592874, 5.603902967964662, 4.7899387437330425, 3.335648136548961, 11.705398451049302, 6.9112134884978635, 3.892708704843425, 38.68750107945889, 28.2582972657005, 4.498475915666721, 4.171905515327453, 5.751282508704645, 9.036417647370849, 8.507107167055871, 5.587324433165266, 6.760912854118121, 4.506960309456234, 5.541222520443668, 3.135582078380013, 6.25568606792513, 4.959340455321014, 3.6693773206081226, 3.002549595253874, 11.935589938362508, 4.762335884384007, 5.7023635300271085, 5.845222937204753, 9.990675957776014, 12.792786640086781, 3.7235826690364098, 6.481872259056407, 6.16941694798728, 6.701784294877861, 4.162015529320613, 3.29925855906149, 4.925981726959877, 4.691951176910097, 3.914296067029885, 3.315575050926989, 4.749606750386784, 7.365086936488375, 6.597623535160247, 8.115675162626026, 5.873308796036664, 6.315925264911377, 4.723161181784616, 10.026435958912153, 4.403845911846353, 6.446129270359189, 3.762866278951812, 4.554552739174263, 4.959692961678571, 4.751826765860811, 4.541836995848003, 5.6325262262140035, 3.891834501183026, 3.960997984983092, 4.808872127319778, 6.094131668037797, 4.3745422354220365, 5.2434685771620835, 5.508507671681498, 10.355698480710434, 5.100927708528482, 5.574528488205751, 4.873176255039511, 3.889839398299324, 3.0797652971484375, 4.449252801187311, 4.435141662519876, 5.961549757998014, 6.707787055425346, 4.832711166314533, 5.241573516930189, 6.539412534272725, 5.930681589560717, 4.018364596992657, 3.6267135154079724, 7.476212128221307, 2.271833227922319, 14.462475584213134, 4.77337060788102, 4.987043237082845, 7.806994932496761, 14.14076668863377, 7.597802546495483, 8.27590561891807, 3.985230228424694, 7.119736021650193, 6.363396055303706, 7.426104583929951, 3.832898735750548, 6.956974990841678, 19.18784090570974, 5.981297999922699, 6.158134387814199, 4.020305488371199, 17.345877853076683, 7.308461290078046, 4.408841407492331, 8.397816559665236, 5.657071592515379, 8.430754523438814, 7.073038344323704, 8.745393392353563, 3.233124560756208, 4.330708578892487, 8.502070331069751, 3.7830786296409884, 8.417588802665458, 17.82798104480124, 5.131361591339746, 6.768039319149854, 8.700183587858595, 4.613263688418212, 6.615441980052778, 16.560262390304757, 5.649528840524336, 4.440174998744167, 9.198814016968631, 7.315832778432175, 4.50189069989324, 17.60802397912227, 15.097214804284306, 4.637628398837419, 18.039185774180925, 4.04729351703526, 9.07588687141271, 4.2806894815143925, 13.23875992493225, 2.9800268234337053, 2.9908020084504114, 9.144543060186063, 5.834400921760536, 6.958294093178832, 10.84836660493784, 5.746069757605405, 5.171056895593867, 5.004854887493789, 5.056825482816804, 6.6059798669405, 4.55035686498018, 9.846816298968921, 3.095451566197688, 5.4801607255685205, 5.903843858872448, 15.328024875081914, 33.5811917525683, 11.949759385884642, 5.144280151242698, 6.497321391221139, 9.866790687191028, 10.736395803866593, 5.46282697828372, 5.785629551282477, 5.542764180305799, 9.728096977526716, 4.854435828564403, 3.4834091795011015, 10.193289776161622, 8.338691815733814, 6.697812524424513, 5.283177983761645, 3.1357124012010624, 13.7340797557679, 7.634332134326042, 9.999349603126985, 10.158096906769106, 6.950784900710087, 3.3130579079825364, 9.693648285621617, 3.00103791769962, 7.943308745793474, 12.486109826352937, 9.235056978614958, 18.30010460322807, 6.370663082185829, 8.30804014033368, 3.923264163054067, 18.78725901160268, 6.664019650186005, 7.577561828313528, 5.56203234325541, 3.9513821417603308, 23.90161589832541, 7.4406730190778685, 5.467088924338255, 5.432163037397449, 11.173743934706675, 16.8444616883641, 5.3450212663095105, 8.99568389251761, 26.121562097419286, 22.39026775743601, 7.769289311794607, 27.17356390946862, 5.183348557588493, 17.7332280323427, 11.190582416211088, 12.297890350868375, 4.4837853876352805, 2.5950552696742837, 4.945659152063762, 3.8661612700640324, 9.540363173850421, 5.394788040187463, 4.571458343714551, 10.533878202852872, 10.463080985182799, 17.221488665132856, 5.474929106085753, 16.896879158836168, 13.728286690998718, 36.49892302416531, 5.576451784261432, 5.456703090487443, 3.991744213934253, 22.96500525368793, 26.482705915435236, 80.352206377769, 4.96374036887337, 19.879856019075945, 10.537448889199519, 11.105236313513993, 6.75006556257471, 3.902300187216403, 4.028645507693791, 4.478399681795918, 5.303735520091472, 20.553835888289132, 4.094223908081453, 4.059095358099321, 7.923648938822544, 21.343536179955386, 5.424480753945943, 11.099488161619663, 3.4453011088443892, 10.69705633332862, 3.125297144304181, 5.527412503727933, 5.312450217987057, 7.641870247969587, 8.197199220735365, 2.8075972956565765, 5.294998198525077, 4.855955975829562, 4.37341648005169, 25.35215362791962, 3.721638817212205, 10.353897663175102, 10.165660292878428, 3.8011976784004324, 14.293478048070815, 7.878062280627568, 17.416262257507995, 4.1920247013226275, 6.571346034428551, 3.3032993211610804, 2.8673016213524454, 4.326910300776788, 5.701585750289625, 6.995192021646759, 3.917232956151616, 7.089492294160853, 6.898856812354332, 17.02995606056707, 3.4933645413243064, 30.127605195319514, 9.219346140020326, 6.863065303485863, 10.733078962171067, 41.207708193323015, 4.591158968988751, 4.515083551529023, 4.507537291144586, 4.688979081293415, 3.298582559373227, 4.631178970700603, 5.346534190003381, 5.417715992773585, 4.982206372792216, 9.517984562520665, 4.217139857768305, 4.7958749437851536, 3.7690198035538884, 3.2183723622396068, 6.8613569209881495, 4.891860532807078, 6.317018631219338, 3.865235272783267, 3.7700321425382413, 4.77385910836939, 10.373835548754963, 4.311410040167134, 6.219007554598962, 7.712085022692014, 6.180325925666361, 9.025154824902957, 5.6866167348696095, 2.813325799022762, 3.386188712289489, 3.7465321825498448, 3.446653799305904, 4.543655637612946, 3.696469951991111, 16.1879954849923, 6.600892941158291, 4.940933619044217, 6.953243601891233, 7.799068046813703, 4.186258192472536, 5.978112032882579, 3.6573255525544712, 7.231014945787176, 7.5976203986787265, 9.78972949748075, 4.66986212970157, 4.718327884180999, 8.521220891392456, 6.307716063257928, 4.038192504399238, 7.198386265624158, 10.43484333913709, 7.685324888957897, 5.060781362822875, 3.124603523108737, 4.254602649567519, 3.5977695974528987, 4.56060399614951, 7.802865976301906, 4.744322152322994, 5.290050514248599, 5.085429655704539, 7.671908347824095, 8.832736293041432, 3.6906725966218943, 11.812376500132142, 5.45336510351925, 4.1836539963909845, 23.171734686516373, 9.195458809916401, 12.871644616025177, 4.444944936406545, 2.902802557870095, 3.8984579581367638, 5.424336120138798, 3.0471480598463376, 5.325866278373315, 3.8859340549498667, 30.03653647647151, 31.307870209529213, 14.30308021588102, 4.942419222427668, 7.115629356754355, 5.478705973581337, 2.7840675054993547, 3.910226859295189, 23.376838160732618, 3.5861200178460884, 4.640094082683826, 3.2141744537292904, 4.593282735087466, 3.5833596962804473, 13.896271846828505, 22.1552425940073, 5.430873597692535, 5.259315856439655, 33.769686629576796, 8.952953730588014, 4.577878749847645, 9.699162791844316, 2.639965229334251, 3.986631424535483, 3.0148411923765166, 7.093295937946718, 4.744774633416941, 5.848714359798775, 3.700273018560549, 7.49923424850588, 7.942055074181912, 5.610012029856253, 3.577589583915895, 9.209167069494873, 11.030617747755992, 5.720704811430163, 7.870863043434015, 13.256050848658704, 5.475774369071188, 7.836124866814362, 4.712245523433429, 7.918808483563229, 11.198552130283693, 7.6390400946279975, 8.48782885665498, 6.14943216008, 5.373908476778614, 5.103115304744701, 5.325357259992283, 4.573029300075507, 6.596884201245451, 8.264814962330233, 4.967699583280098, 4.028371325019063, 10.180444668130784, 6.125593920851535, 11.417145047956808, 6.37768696383657, 11.933085247720083, 6.089189330091174, 36.60068797026233, 7.537439756601175, 6.722219202132156, 16.76477901505109, 11.940318901434862, 13.052454511818956, 5.409651831463152, 15.78959024801856, 9.959055165986612, 7.813444335262989, 4.2935975996076605, 24.85243269079527, 10.491800121116574, 21.845259439909743, 9.645793164539882, 36.633603173482584, 4.630317286889535, 3.5974870019172585, 5.442316783557465, 17.139173867622453, 6.7547056867503805, 5.897265450731509, 4.236642127596219, 5.327373896705648, 9.456804442130966, 13.1280248703945, 21.413665352878013, 10.70003040162215, 3.712978172038231, 9.70927232990385, 4.708011109882146, 13.11807240188373, 3.4879884788040245, 3.5230215910003033, 12.444551927421342, 5.7310830907196175, 9.190271926632258, 4.504117686705615, 7.985641911022094, 5.438554964691417, 9.064139766076707, 9.024772969215494, 4.3244556213185605, 7.161776540625287, 6.786423332689946, 6.430156591602907, 4.604520115056411, 13.158173316265074, 19.515252965481377, 9.055337643791674, 6.296033827863806, 31.17866817146097, 13.548339140331478, 16.598643644531812, 4.054575798854779, 4.15933908357578, 8.119008313552726, 5.668235026975534, 13.832912886961632, 5.609850932546354, 16.202756996142245, 4.3560441519454045, 3.6323183657166727, 5.2166541593907825, 5.533726823410904, 5.107063705556773, 3.485045664896496, 3.5798792599257085, 3.3653737576289364, 5.167664118476599, 3.9353763137811293, 9.773828993548742, 4.564924782763457, 8.281956017227389, 6.435402302668965, 4.421232305340476, 2.7953677962404506, 3.71919971228111, 4.017090058369151, 12.520485688497493, 5.061314809665785, 5.026103150849356, 3.926708224449853, 3.6835486498348344, 5.465930035459657, 5.00776287549737, 6.257817874764033, 3.9998029266969484, 3.891073454773397, 7.312617771020319, 4.784182960586324, 5.927280564507869, 3.371366028913933, 8.03573922401726, 3.5621793504354047, 4.3109266803293815, 2.9792396791613784, 6.062371761080185, 3.4995581683380386, 4.202620167574864, 10.435584948650689, 7.7667402064453706, 9.238851399823, 21.398384201852938, 5.546060975178506, 4.998096937610588, 6.596826215057189, 10.392124790918816, 4.963045289644483, 6.46222159544622, 6.2688612938352835, 5.539792610647881, 3.55584275849333, 5.9325014104766245, 4.924031932862491, 4.529632960609362, 4.617217342786777, 6.9642496954259485, 4.477881375504603, 6.274923482220143, 2.9581882896045637, 4.708180981661648, 13.226787739432035, 7.363914742984098, 17.055413050619862, 5.937770444632421, 7.115507022936839, 5.9177030751794, 12.312366452431533, 4.213455319353664, 3.4151652358750284, 3.313370433922311, 6.82117389447937, 5.1179058761328005, 6.609138816464878, 7.097012203375249, 3.8190127146618065, 7.443728281470853, 22.18217847058376, 5.625624389943032, 20.548237934439914, 6.3722342394156035, 4.22341584552549, 5.384151571479134, 3.4748501455871135, 6.869661779916626, 5.336252539787203, 5.785025227856389, 3.0145626733443263, 5.561684328045606, 4.31214235434573, 5.61618408756758, 7.255011293183203, 7.922038066631852, 6.474334974301879, 12.470340010312636, 4.388950007025997, 2.722056950933836, 3.4584804662466366, 5.017295508427172, 4.312787450238429, 3.1357084532026733, 5.378364899986384, 3.033146138258301, 11.686070101444347, 5.512990816221309, 4.0460717363560965, 10.959177026976544, 5.048634887506822, 3.43490520310483, 6.407265364405028, 3.946320362621253, 6.809133687176401, 7.132418913652385, 3.1527887880830505, 4.74984119543506, 10.721130914576566, 4.878926940958672, 2.206135393085696, 8.585076376950346, 16.956724458177177, 3.203569346948641, 5.032535400355347, 3.424450732543473, 3.607108770046668, 7.649639713394501, 4.91923777477829, 5.710652464981575, 6.231354351298216, 3.9899065073084814, 22.88391081792106, 6.060100895618763, 13.554831932282983, 8.908266064654145, 16.32534251229476, 25.47711101573754, 7.395065206866156, 9.868054288435724, 4.652781467761203, 14.470255138481097, 12.723603452344605, 5.6358363029190635, 36.88919565347702, 7.1458454291252265, 5.604416131105586, 8.418831819053647, 24.356143714591834, 5.176303604785377, 2.9343866831277245, 7.01597049574644, 8.823693989674425, 11.152532646772684, 5.793274213296902, 6.464461998861531, 5.741066172203698, 18.30747758426046, 3.1637309897142694, 14.51809320917205, 14.882594643291267, 5.34441527910203, 5.708282351102021, 5.024275697667294, 8.84455284105679, 4.748333096628725, 10.018230432118166, 8.847400224502035, 5.818123260372329, 11.273005312319714, 2.7885651287507267, 3.371497018828274, 13.535684275033741, 4.294224977107795, 5.353828216035466, 9.06390869437302, 3.6102214458736315, 7.1749955596631905, 7.9994557941000055, 5.33754161659642, 5.4846933840725605, 8.286917630773422, 10.607836995624528, 35.22697374536671, 17.416908181687585, 14.843755450668498, 22.567716653490304, 4.752250860723012, 23.121292419617642, 5.795907305820576, 4.816601006069565, 9.645698154692667, 6.557487986434411, 4.708974953067092, 4.200804705876116, 10.499303929245162, 6.9758216795993695, 11.890492648109648, 9.7033925972866, 2.9726335359651164, 6.056978721052131, 6.172042097585656, 7.233728977651893, 8.363207887456303, 8.165516015346183, 7.313420896185071, 36.996648901004995, 18.30429184612562, 7.880660907286411, 16.65201630227358, 3.6278455291092007, 13.71563502976439, 29.403488606994788, 21.40287670937027, 10.748602564687282, 2.637156995527578, 5.031258871569934, 7.698883264232863, 2.746005947831717, 5.302684848487314, 4.202988029329397, 50.26924553889957, 22.18070040205025, 6.903931325358423, 4.985716359355113, 6.751081292328291, 194.4214124649861, 219.87355555555575, 161.43200000000004, 144.63296969696967, 97.65705555555554, 97.01960379094592, 133.66688619713622, 122.03943754313322, 89.25500595238097, 122.0256563240681, 76.61718636363639, 53.611720783602365, 63.32708716478454, 12.508229455427305] hash_d64_k16 = [0.0, 1.0000000000000007, 1.380000000000001, 1.5600000000000012, 1.684999999999999, 1.830000000000001, 2.0850000000000004, 1.9466666666666674, 2.1975000000000002, 2.955, 2.8928333333333325, 2.397166666666666, 2.7390000000000008, 2.7524999999999977, 3.1905952380952356, 2.7048333333333305, 2.8171547619047597, 2.8150476190476175, 2.855559523809523, 3.0081269841269846, 3.0618452380952363, 2.9779166666666677, 3.279576118326115, 2.807281746031744, 4.479670634920633, 3.5455873015872994, 3.599864718614716, 3.17834163059163, 2.9124267399267385, 4.918124819624817, 2.7582105117105113, 4.2992856587856565, 2.7435873570873555, 6.09244444444444, 3.1532694943944914, 3.839006493506493, 3.3833313075813067, 3.8623630421865696, 3.648791292041291, 5.684544955044952, 2.740150920158272, 3.0090841658341665, 4.162438117438114, 4.635921101774041, 2.9413738206238196, 4.525793575619425, 3.6020656383090572, 6.3997579365079345, 3.5403714522491616, 4.622477799977802, 3.5784554954961125, 6.282277629233513, 4.112729116351484, 3.7773949938949953, 2.633717888106047, 3.1632118698295164, 3.2263816378989003, 4.688184274875449, 3.110607659446937, 4.9180332641215, 5.430401368626212, 3.3572225609974278, 6.39829102674445, 5.646405582979111, 4.219616081716702, 6.848138874713179, 3.826576628207198, 3.579621975399378, 5.976289612511671, 4.687845753919284, 3.98477725645814, 6.2368180708180665, 5.421206003405914, 5.106302438890133, 9.425979574773045, 3.3730919448687673, 5.36467384004884, 4.210500000000001, 3.5123889060363314, 6.567789562948227, 6.19618021804773, 4.093686184366209, 3.8252129021911623, 3.54000480597658, 4.488469702629612, 4.928181562008605, 4.529177801338158, 3.038990014155817, 61.24139285714291, 3.0126051519509405, 6.043039362001694, 3.3213602506616495, 30.901519385585168, 3.8868836048703326, 4.657450002790363, 4.106119720676204, 7.2461696636105195, 40.81965151515152, 4.018822605384156, 4.021843202798979, 33.174642743221696, 8.737379332259072, 36.615600427350444, 6.601705478776723, 4.519466224233635, 12.407898096885194, 36.536307236623024, 21.61928705499294, 4.766309323062993, 21.144017178083363, 19.406318542568542, 4.96205827349465, 13.211305686702358, 43.98135607959291, 27.106148281950606, 20.744022515904287, 5.461497782624, 4.244601711061268, 32.57459962259964, 4.710403162903162, 23.836733755375075, 26.22471500014146, 3.9264195151296213, 29.314475371656954, 4.892083806114623, 8.427751857361763, 12.390216761454095, 12.362554628421119, 19.872883462942283, 18.498082115792926, 4.463715750315821, 25.452839329903288, 6.051522877706348, 3.387040415663894, 3.0645374640836103, 3.4214982257485858, 4.475165717038744, 4.534136404233257, 3.8631626449281633, 3.4614186494895582, 4.158542913607383, 4.813015320169574, 9.513014725137845, 3.2216517666807807, 3.2949415409903717, 4.784823942363612, 7.9917681086886985, 28.31197003618352, 30.713398198035197, 4.553949252623011, 24.38238899470942, 24.32970751113014, 23.00888687023508, 2.904761458149336, 4.488661190141801, 4.667956880520622, 5.548232173508052, 11.28143342346509, 4.149601894915022, 3.143443184700261, 4.973604156305296, 3.9426541968026187, 3.594159475999211, 4.6946097404955545, 5.874376107808128, 4.728038593344501, 4.61204258865266, 46.68629473450527, 4.536174603893877, 4.088266549339534, 3.3820746086530877, 23.105692015955054, 5.726787564772249, 4.742733140413696, 4.172160134086354, 3.6395531511212553, 4.570981614840745, 4.617211796782356, 5.9582009501943105, 3.9754055051036405, 4.705646054425398, 4.660186320453835, 3.448418077064677, 5.190516443857579, 3.3785039648913906, 5.220906341047645, 4.041367728240402, 4.216220550373914, 4.427311008828882, 4.977942145722972, 4.022866816345856, 4.2567556302531155, 3.9801209305985275, 6.4113756386804575, 4.753248101296979, 3.818906470724643, 5.042585039983472, 3.1547373971737174, 4.742072662389099, 3.8700822814282687, 4.575833735693393, 3.687332880012333, 4.191728516356183, 7.098814557887826, 4.919821467744433, 4.760060267644871, 4.051854485162256, 4.961768452982834, 5.630974303831769, 3.447102910576475, 4.904441097734193, 3.292002816176007, 4.324805893323714, 3.605550303631862, 4.945530087810879, 4.871373356954013, 6.066859699962059, 6.354385103501081, 3.1061243838117534, 7.2040404386620285, 6.252545986790944, 7.965212210181691, 3.957741246345329, 5.211243122687875, 3.9790045960242626, 3.4380266423154064, 6.47236308206559, 3.6671087949495194, 4.18822188792178, 5.813029689874007, 5.841601293049146, 3.843480588900359, 3.540864046279373, 5.516761742563303, 3.8888605821175863, 5.1693605846756645, 5.688094912759984, 6.220577198794681, 4.6828514566709725, 3.2122395767552296, 4.637384751410522, 4.301536512873919, 3.775837911570016, 4.026253028125037, 7.462610515233246, 3.384427754968601, 3.1058339121992202, 4.045306180655183, 5.0156311119855586, 4.047296464424852, 3.182878794331547, 4.527621259941916, 6.347344630560056, 6.3838802629824025, 8.25112170890559, 3.415445960873646, 5.752543094397615, 5.621912593039154, 3.624969729403404, 5.2478065532676705, 4.119364794135799, 3.8173560222332434, 8.246317009522286, 2.4420319479831742, 5.696156857276708, 6.382658243543114, 5.073698544514499, 8.003143166716185, 5.302507052840072, 4.270982404586025, 6.487440114716659, 3.425050064776935, 9.200642125871704, 6.860852754350688, 4.078374126989185, 7.517995931313244, 11.785243886348155, 4.48491285443017, 5.144374602817137, 3.6612823401210908, 9.162060063409399, 3.801476395088532, 3.8700952361553735, 4.94351821069566, 6.34164277340846, 4.593843758338161, 4.919096311877926, 3.790094345807487, 52.38341981639641, 7.257619545913024, 5.750638878257577, 6.119915881615413, 32.78842457047687, 4.588550945241049, 14.205879428582161, 7.070169834878364, 4.4544690641944085, 4.1650910101012615, 3.8172525092247263, 6.129879019941336, 5.105825911865695, 5.880203923614348, 3.4775225528810725, 3.963758230480601, 5.168025052945455, 5.365020157998925, 6.979504319475095, 3.5606498071090815, 3.679545192464918, 7.898649550123077, 9.589857333550144, 6.883097929768899, 5.171332332318216, 5.304426375058862, 4.969832256587819, 5.199307742946105, 9.124681574050303, 3.7652301557855794, 6.157385436237178, 6.725118096593249, 2.94008937507364, 6.047097823997014, 4.950991933651789, 3.367224544518757, 5.619865928572133, 6.092077026846566, 5.230338597516927, 4.95167278303011, 7.085365381034621, 5.825037700612022, 9.034156221541805, 5.63628981951455, 5.9588518445362775, 6.192747122390419, 253.3535714285716, 222.2113333333336, 194.16166666666683, 163.26583333333338, 132.021, 141.26787499999998, 123.65216666666664, 122.88492857142857, 115.46036904761908, 107.2412887488329, 99.22940476190479, 99.39775396825394, 90.53080591630587, 81.04327561327563, 101.68389057871953, 78.56215337440341, 69.7724671162171, 69.23227189477188, 79.50743248418247, 74.42570826395827, 63.166856740481734, 72.9854080747684, 68.41684677658942, 54.20995695511057, 65.9691852761102, 42.633399395768805, 53.966370119560516, 42.94965658945456, 51.45441226420266, 38.4943532174269, 52.056721852245126, 46.297085193699075, 44.919487871422604, 51.853008826721414, 36.209185574257326, 41.34793207679084, 50.82109691638969, 35.18485035094837, 49.57839972086074, 43.317239255150255, 31.125491743701005, 30.67934063616667, 31.2945135489635, 32.46969200957355, 42.37360271143078, 33.243745366284834, 26.903400129506984, 30.930233817917355, 41.8251285547405, 28.404654141348686, 30.81698981422551, 36.698994668503175, 32.634475504248805, 51.4387759516308, 27.416690357456165, 36.813140605368105, 19.536448583013044, 45.85981860727764, 38.274271733513196, 28.11413743343678, 35.16631191617051, 34.34090876086539, 26.334632893659922, 33.590835685903976, 21.298205748559546, 30.059847805991375, 16.538603788318976, 20.120438023178778, 36.371168949581794, 35.57311544321137, 27.87200317901737, 33.63302343029623, 29.53310704003906, 24.148555436438297, 22.931990315075762, 31.385744148538805, 25.11438041460531, 26.046321001451194, 22.277063956959708, 21.31325293518181, 30.51054619382644, 19.189904995852626, 22.42777631147613, 24.939640559163333, 20.297058991803524, 23.68993189117389, 17.478530224597176, 46.321052652028726, 17.433684804912897, 18.732153164916536, 17.571584482310733, 21.08618674811509, 12.876662489870712, 14.395896502922687, 14.943222823709952, 23.680896289927826, 24.11789498373879, 19.716975969604665, 21.004783838972713, 15.204684364703553, 14.305726892470679, 25.115972569411404, 16.51905985266357, 15.35132179746887, 13.834740002307987, 16.90145506097357, 12.29754494924142, 11.283974857860043, 13.86879368596928, 20.37954365302613, 12.789154160185925, 13.66538109561941, 18.559179320223294, 15.475145555364861, 21.408368042355374, 20.19320009548891, 11.714789030758078, 46.06684414059545, 16.039837533510013, 20.471155245001345, 16.64663649352662, 13.093687257621076, 17.15531372346817, 9.448324670028496, 12.091577185521361, 14.219176507475806, 21.063208242487743, 18.942977858468936, 7.900881500874676, 9.29439914600382, 19.213099229992196, 10.040265272471302, 16.94754458191024, 9.577918582874421, 10.732501471720946, 18.824922908430135, 12.899070033378168, 18.99421329499996, 12.791015584603663, 3.9495528877263046, 8.706655497803323, 81.76535056136274, 8.62837336770867, 5.116371875436389, 7.281322505112635, 4.140145933084819, 4.862392603664709, 4.109600823719489, 2.4938319807581717, 6.178531941075942, 5.727764369240042, 5.941122989025078, 4.026884871797637, 3.608180679174043, 3.8943477492564718, 3.5339919059114777, 4.001422433111459, 2.9522383580357268, 3.2649347498901493, 10.99744369806096, 4.882198223532907, 5.248299187534383, 7.492231851367548, 6.08377224070804, 54.96571367521366, 6.97312580788284, 4.252509325219589, 4.373106185344951, 45.43225225968857, 5.866233783130011, 9.37954187659993, 10.51472779106858, 6.479689073493621, 4.72547400786784, 9.11176624489548, 4.560651312779645, 4.758522286536992, 4.527488752584916, 4.633751031880057, 5.002635496650199, 6.820655701029101, 3.9551366382196944, 5.375555813864502, 6.495916618253846, 7.583727714838007, 4.006715143769907, 4.86924245025737, 4.287360960576516, 2.595719976867515, 18.426982978374284, 11.119405951406897, 25.70790013771242, 4.005010302224261, 5.225529046638488, 10.872603011883609, 17.21405518492664, 3.918337985183624, 3.3627954398713906, 6.024612691173063, 5.826323919525763, 3.742824681922231, 18.196355356002847, 9.935669091708876, 5.302947093043465, 5.956027448083297, 6.20531098068598, 12.245004863727099, 6.253124405830144, 3.797200842531638, 4.081134244901724, 4.448617734888462, 4.675046825552188, 5.051709973879562, 5.029750251982916, 4.369787941449349, 3.78926631271373, 4.262377227603313, 3.684748859226017, 5.397673435961397, 4.573689788294448, 12.10536350084015, 7.808586640211639, 3.913627054064934, 3.8094540974949767, 4.809303058968351, 3.8272073383740586, 3.377217235384358, 5.0755599970205205, 3.0772787911574193, 5.051282688222292, 4.714161326017749, 7.498816892073166, 5.046746253572686, 43.11288658175843, 3.2940132565867817, 9.2040687716423, 4.3466746215641185, 19.021299393174235, 7.598726108948225, 6.048088128105836, 6.7702107909571305, 6.198385894741769, 38.71054587969718, 7.574705009369711, 7.2121455953168, 5.893397732128689, 13.15881565824526, 4.65246840187203, 17.451174325347857, 4.894476325373551, 6.498392401127534, 4.240385607603683, 6.554602499047408, 7.194130462831462, 3.950528350754461, 4.519539489387186, 7.736608247077988, 4.391562317943581, 15.223643280067886, 4.585687793865083, 5.7795724669220006, 4.258800013083161, 9.20870505360343, 4.520669882832344, 4.532206302414678, 6.705358178043526, 11.959261331480468, 10.761187861802659, 4.624506206981328, 8.295034553795238, 5.672418023070101, 6.801402508693354, 4.233672389604216, 8.399925313329726, 7.111609463197102, 5.973606432357573, 4.0769930283730025, 7.586947271627778, 5.923456378997382, 5.089932631384575, 5.099114352443143, 4.980623637382984, 6.2981367882701145, 14.534879107004103, 4.557490828037145, 4.322404277016606, 4.294119704192764, 5.7057709397643555, 4.134526951367136, 6.473346970046266, 4.4602914547512205, 6.607501664456959, 6.57186635042488, 3.9825712256921655, 3.8648969455296016, 5.837981852270468, 4.510217524689041, 5.335768671161923, 15.595150125365368, 6.448556762506432, 37.856313852813855, 3.526398354418198, 4.3054927183262475, 4.452255928833646, 6.9101870978673405, 3.3730728552298457, 4.220171142108538, 3.4359222853170057, 4.7404530378328085, 4.29700596169826, 4.103316384937175, 5.7823275607915114, 3.2864808699690284, 4.610849711762641, 5.627874807231791, 4.5207473596760375, 4.923807780574207, 6.449909010305686, 64.4294350298824, 3.8231464327463045, 4.035400337441707, 2.956328722464208, 55.01515748194228, 3.3972009895413664, 3.4778141627535293, 3.7100157770261557, 5.0012686062884795, 4.528261406261089, 3.812081673486147, 3.8664982660411997, 4.434950921129585, 3.8300302800847774, 4.27952258980596, 4.018635468625593, 4.948406815325217, 4.569542573634014, 5.756027207617354, 4.957711341270261, 4.8341660109778, 3.292664017077823, 4.93695268407577, 3.996737537629296, 3.7050746309580864, 4.088761881519161, 6.238146377375166, 4.298651131259823, 10.900546451027358, 4.7732679873041475, 4.768583183481773, 4.33868885998219, 6.3539714562821805, 3.825749138789539, 4.234546183074665, 3.9946547418842413, 6.0084436547526145, 3.9574676643892186, 4.9597244975101535, 4.768911906019775, 4.108857508485613, 7.349604301207851, 3.97649591893114, 4.433121363947868, 3.4037619994624873, 3.4433628175719853, 5.013769032116486, 4.0691984880688326, 12.830657746802, 3.7258289242277565, 4.36741407918891, 3.2206256421010675, 5.925071682371936, 5.287736570819048, 7.788200030388506, 5.948493780962625, 5.3157940646903326, 8.008696171711696, 3.120602939363422, 4.0823318523509675, 4.135979360007195, 4.176078877487195, 4.948849103519435, 3.7177452951405425, 7.222971916202278, 19.536383265997287, 3.8313844313077454, 4.353305180871888, 8.206219248393587, 5.1357157889718215, 5.38429927440598, 6.9583333084903565, 4.7765902123908965, 10.630580274000986, 6.0156434995059795, 4.271320443328613, 4.199396832085865, 12.124318888122371, 3.9790107091391382, 6.632428529585515, 3.5883478033367586, 7.123184008059706, 4.749932145136451, 5.074863393146203, 9.954480979356472, 4.672102906366967, 4.909878549901924, 6.0054819611998695, 4.402497297505343, 7.37440909355196, 5.6518303390144595, 4.192517805195282, 4.2222987355914565, 5.308303848992029, 6.415783129752548, 4.676056247785585, 3.456076054875811, 3.431675816413403, 5.377254349253488, 8.68008901779966, 9.756988066204713, 4.276450209211423, 4.218987344376318, 8.641515520028658, 6.309095213878649, 4.875120382390565, 5.2027705966498194, 4.5666827695215, 3.410751428844372, 5.472052873827526, 4.140752110698307, 6.186760495887669, 6.068236928502007, 3.863006176348991, 4.988738094959887, 4.511650722075897, 5.322480692468325, 7.014590726615224, 5.4732842101126495, 5.097430472946419, 3.6852469817989157, 5.443520752797291, 10.560965198357806, 5.932097205255977, 6.094039386757542, 4.578603587508579, 4.475843256809096, 4.199227156514666, 9.41641056408922, 3.5859490234097002, 5.2767589917787, 5.027503455885986, 4.272210759772436, 10.93302009260659, 6.475425174185372, 5.3564991546761345, 4.814983235166664, 10.854252641864578, 11.516435196284009, 5.334671508242384, 3.7685945691315363, 3.46787213760456, 3.9230116196658953, 3.2962722415829275, 5.519941249619518, 4.927356001844554, 7.807543233721472, 3.4251658766512496, 10.454426534829619, 5.868787268844258, 5.874406909638669, 3.5778862012180594, 5.146057203514086, 5.513395779963328, 5.349694927740676, 117.32450306637809, 9.486420592308045, 3.187528917472293, 5.184854001004473, 81.99055345471523, 4.2509444320512175, 5.146936407424559, 4.048341317946439, 3.973233029482906, 6.992132770566766, 3.694850098445229, 6.137014907412307, 5.73134319248439, 6.387772034671311, 4.400733055484912, 9.18534175650478, 6.010467013529879, 9.11145512662386, 4.673813861971811, 7.084939773471615, 3.2668478812150195, 16.89713387385662, 5.031806529454641, 4.52883581322346, 3.635962151965087, 2.8995430148995633, 5.233594815263489, 7.536881479451256, 4.658069461069737, 82.13938477902812, 4.062225652894502, 3.6653359471484595, 6.835069950063075, 67.85043134411882, 3.580788752868208, 3.927801532805478, 9.460659032475405, 11.59018723785984, 7.0723498538404685, 6.422317684419081, 2.7743230545902082, 9.068497624817308, 6.887561431105427, 7.8073074722348705, 3.7840392730412997, 3.67751758292826, 7.772284547940904, 6.707275562325838, 3.2388101112602548, 4.686844896825149, 8.161649750040878, 3.3806181859041082, 4.510287370388402, 3.247905697608337, 4.690030741683099, 4.073605052594782, 7.20552751388578, 12.172675851733587, 6.73280885776306, 5.87785847431231, 4.5731545153803514, 4.492559870117857, 4.508125549506411, 9.5231094314824, 5.169327425809325, 4.491675319048568, 4.970416199927924, 5.873208593451313, 11.50350400092757, 6.150727443725811, 5.889308805634453, 5.90258197630872, 33.669245698068046, 3.9546220081039847, 4.672718121342066, 10.191227438473456, 5.901462625541473, 4.921032581817656, 4.267315135235156, 12.752342073213768, 4.567272715897558, 3.9675635883720233, 5.066144918194302, 13.964338043325279, 18.87898761719268, 19.45697072728804, 6.143610206991126, 12.001030107561657, 5.578187579928824, 10.452571265549786, 4.28796606547593, 4.969653879638903, 3.5479455913974487, 15.814860779183075, 4.014009080955706, 8.541255331550815, 6.71769363645259, 4.555469187073753, 5.554141596488823, 3.8179884570945775, 28.20582550195979, 3.8093031404568025, 3.6407361321121, 4.791576966307805, 11.11296091259354, 5.31795724343949, 4.52202000424276, 4.662489370916568, 5.373297158384177, 7.782564075149989, 21.02092813383294, 4.407898075725379, 5.879064103928036, 6.957808532785323, 5.678667039930207, 6.855726622772152, 6.355875311401285, 6.4029696679137835, 5.50116722963601, 18.197678713276133, 9.033195650227213, 13.014886431584015, 3.5107711797746832, 12.590935521614583, 4.698539193306021, 4.987938214698731, 9.626680394092983, 5.625926417006723, 4.173395259087993, 5.053166081555947, 3.809360792533341, 5.159344552037937, 5.343669873190661, 13.557504998045223, 3.2140852422742054, 5.073308010608321, 5.486280182269641, 5.1522909402736765, 4.996149982189293, 24.517070400387997, 6.941386025814103, 6.730868197706553, 7.023084325104663, 4.007324485861022, 10.773286895326699, 13.41641977746099, 5.253394675213449, 9.32930704167193, 6.151456620093904, 3.964222035530309, 3.833211318317877, 4.42300798652835, 5.772546846953493, 10.877593542698465, 12.185307547163465, 3.6465377493889393, 7.091373667315063, 4.235799358860073, 7.465102320572203, 6.694161355097706, 13.229958261983212, 3.7882662766912087, 8.864248131391042, 15.668405150314003, 7.1035394741524875, 4.047331240745043, 5.658215968182944, 5.803362042514713, 23.22998714926473, 4.690085030852736, 3.755957362217163, 4.233910306049663, 7.003024052237756, 7.476929822620332, 4.975416511173395, 10.696464311061147, 3.7624031041141963, 5.166006259780815, 5.338084188385034, 15.563342880061528, 100.11749179415358, 11.478665479296243, 4.624575295001733, 7.633678164165454, 57.5313534410615, 8.748870545589106, 6.747813370558742, 6.40002695918707, 25.394275024883722, 3.160543054718841, 4.985597895334965, 5.549280159217666, 16.235645904925835, 6.6113213956173364, 4.739283247596806, 6.127623840308204, 12.091242904626077, 8.230014274788623, 5.302579175903191, 8.298754562237297, 25.898051327641323, 4.5584274387036325, 19.145440290559574, 9.444211959722676, 19.210100103431188, 6.4507880336867975, 10.869711672131048, 6.960538890586698, 6.364299666379223, 5.238905620220971, 6.405453417771934, 8.596166108170232, 15.49777687433142, 8.154009183295928, 4.163033078790138, 4.366006239013703, 6.523351699806144, 8.010208290559298, 10.781548762397199, 5.645791913737846, 5.8498134282732375, 20.435446577710973, 2.862997588749532, 20.75314167604415, 4.819879172433078, 9.072147723765585, 4.767043416589563, 10.347310953548579, 4.03242508078129, 11.313318132829728, 11.161152839701, 87.81763482705841, 29.801708593581, 7.158187671999367, 6.712768100177855, 57.55855209235381, 8.96028465491732, 5.782040252498856, 9.357135449130551, 3.3106401887205323, 10.2087194733962, 14.23342907804055, 10.670467400092166, 5.215078326891438, 10.287950590784503, 3.84618271557314, 7.440741919082424, 4.771618227317023, 9.929170024142866, 9.51516440427155, 11.219519088177861, 3.9353114380316256, 10.465453158441449, 14.382345362757196, 4.716405469405042, 5.047570504791744, 18.96685460340566, 5.082897078503178, 12.792836280720387, 5.244366506430007, 5.1116424407384535, 4.788078043891969, 4.661658043768249, 6.994872465867988, 3.8520987844586547, 5.054418194451167, 10.033196525171665, 7.779976838639389, 8.388220083063494, 32.53871939594034, 8.231720332371635, 4.368889760308863, 13.475634299336221, 4.9874073251113105, 13.24230164849433, 5.637841227996441, 4.787090318567689, 6.346298430293311, 10.48041334921366, 5.636208553939759, 11.893730548190728, 5.451887257096928, 9.711447729964403, 3.912191391260718, 4.956926779459748, 4.249039424529107, 3.3448563788633785, 4.664480179045106, 3.502776310517483, 5.943804141314044, 5.817065453689742, 4.7824057175577686, 4.612822726282896, 5.731496474792715, 4.5136269595703435, 4.640692707934831, 3.638935239003426, 3.125737780242337, 2.8997550504675713, 4.5806916306947345, 3.6451296682460494, 6.847038117650234, 2.9146224874757567, 4.338547034761181, 4.984530931258522, 4.230333344705208, 5.396348342714061, 3.825875721298842, 4.127091089266542, 6.3652265304694176, 3.803678045332679, 3.621946943936245, 6.4008343817419195, 7.995863461036908, 3.3068175844476264, 7.085712507243291, 5.525262236284755, 3.745847147544945, 5.328010312965102, 5.971584411395176, 4.0835395502217855, 2.9319766080589957, 6.584199510860627, 6.346457611179587, 3.941602026423623, 5.079407700829298, 3.9324082907852524, 8.518444997433376, 4.563208052957809, 10.57269446391646, 4.140379523180657, 5.305842503411829, 4.373159747052065, 8.073089838657824, 3.2741192106720525, 3.440504568189366, 9.063768642634976, 4.026470138758419, 4.314947377509836, 57.447190760062206, 7.371674708637624, 4.318980377241584, 3.8865714507773066, 4.673563097100287, 4.297893651906997, 7.804574491192801, 4.1900688695417, 3.6089916227200622, 5.322198640627838, 7.432415154777939, 6.410779787178536, 4.328278783166354, 5.634624755114558, 3.33964705241533, 4.631248941532958, 3.4229182012689807, 8.20254168217372, 4.230568964129573, 5.744865408477235, 5.736403547218008, 5.271866707932465, 5.598472880857904, 4.599285352899097, 5.029733372966707, 5.626695205868036, 4.571187210923358, 6.544135919912354, 4.2448067027796474, 6.218735653729263, 12.872325838441178, 4.846782384826498, 6.644067033185977, 5.114996646443623, 8.494036338868279, 6.799205513834225, 4.630584319131715, 9.12469232565397, 11.836599200394526, 4.865630324421395, 8.515744636680623, 4.264215752902743, 14.03486452104578, 3.840671781574434, 10.490850994251609, 3.6268541247073403, 6.07981087925745, 5.367146430284468, 3.8826829736770243, 3.7739538347333466, 4.317311970272641, 3.8808172044941216, 5.119409199336183, 19.37286509813916, 5.305854282249385, 3.3105483643640787, 5.735867926536909, 4.876291479890379, 3.5845570475957564, 8.90543713654488, 6.234660645569407, 86.6488444277944, 3.711624251941669, 11.867855680739757, 4.821129456461794, 26.603319402599823, 6.70636571568083, 6.715533746102769, 6.232081542687894, 4.147005413923967, 6.898875607424889, 3.5018257949967815, 4.57332907465186, 5.527164858428656, 6.22315652629415, 5.935184442813478, 4.722278353734514, 4.74088729363582, 7.4914439911281425, 5.788033413984336, 5.12535784113553, 6.686110092586525, 7.477203338782415, 3.2256317177963596, 3.849360424303821, 5.31888196393741, 5.066191153913051, 9.83681499413907, 6.864752555572173, 44.2994778264115, 3.2045784579082257, 3.894670905596922, 8.494698941524936, 4.653933555405478, 4.843729452067801, 4.13719630160643, 4.285469730597592, 8.214605491294776, 6.710854669537004, 5.035937973200938, 4.733695208608097, 4.710400514539009, 3.645088919396292, 9.41104387158643, 4.537441918211587, 7.436578486812259, 7.207104461289823, 4.705843936068644, 7.839429349204351, 4.101827616096886, 5.718886244398414, 5.400941665790989, 4.9706346098608005, 3.981212543753104, 3.1412759592564754, 3.8529710160134987, 4.523115061614346, 4.188428295239213, 4.35858672381184, 4.7590175121273575, 3.3822409126012336, 5.180901526427113, 3.5846002954695217, 4.556614347071929, 5.84424132209223, 7.509648393804657, 8.331557195168719, 6.39241459869115, 34.32182838793344, 42.84735349062664, 6.974062868038511, 5.308487491583456, 4.101253405712823, 45.67153977350121, 4.170245328366604, 3.5907014950825693, 4.8087080845872485, 8.51947990339692, 4.642685074964303, 5.996551871331986, 6.213095863118397, 4.864728322611435, 4.62965266069655, 5.254161349092297, 4.1169563675795935, 10.72309066845607, 4.041328490481162, 5.667226021058598, 5.4945906922864385, 10.015186671145157, 9.082148656249707, 9.07814634743601, 5.604098708206957, 6.285100285127696, 6.489917153717737, 8.84918215860843, 4.354470590933004, 5.739020992889553, 4.551098523453433, 9.400091112086645, 4.582075247597539, 4.087561594002276, 2.9625693837279057, 3.755460211336087, 5.128858676720836, 6.8445024276213235, 6.636796718116405, 9.548994296683087, 11.405771573252855, 4.715977036142946, 3.904447134499188, 6.039938059185575, 7.222011063444944, 4.435678182709681, 4.854138906380048, 21.905178262145956, 4.939029969728931, 6.0742236386079185, 7.848973848591119, 10.072328019054458, 3.96714889995823, 5.135663970916455, 4.624247811279557, 13.64552593380891, 5.910822628651783, 4.128933416313667, 5.825806656954034, 11.343252434662176, 4.7094023936671325, 3.9649882905103904, 4.405225037575543, 4.540989636179267, 4.401791666138643, 4.249559603766745, 4.57026505333286, 4.735284924601945, 4.203451175822993, 6.201102587826277, 4.9052798434764915, 4.855708434990895, 3.85114186822219, 4.355346489097752, 4.16818278038852, 5.020377502211314, 6.024330811066152, 4.32556924827692, 4.124496675450922, 4.283592815798169, 4.026939318620315, 3.6733485590914485, 7.2748776628138945, 4.541822417632991, 9.88080643906299, 4.40557869833084, 9.13165850602582, 4.1463674835916215, 6.5655989250131706, 3.9898291174659897, 6.249448941324927, 6.558603302752992, 3.793324076850173, 4.176383275273717, 5.229699609351755, 3.011376876961345, 3.0157762298231847, 21.1432920499511, 4.527810415879351, 5.77109581117, 3.9529696322596872, 7.642409458783628, 11.570501367856036, 7.919756382875755, 3.415839890021782, 3.9415542820881426, 5.443110941263357, 15.222112293076488, 5.0655877831374205, 6.480974449476074, 7.210221344575724, 5.864280563653123, 4.077141801249079, 3.60373403499765, 6.043052053187474, 5.900648691743049, 4.1608211578190115, 4.68517799680854, 8.160447612578835, 3.5812520003877846, 4.423548605029885, 7.944020943023386, 11.422385082290276, 5.46258343769722, 3.872879756675663, 5.36434408604376, 4.205721454131917, 5.547809705998751, 4.85162398620493, 9.914702292124366, 5.071783652590853, 3.179145505376703, 6.31435745750361, 10.336746456788138, 8.438740927758563, 5.719941686742195, 4.96939098949475, 4.440794063108836, 4.021362469564175, 4.230272629773342, 4.078057478011621, 5.784058405349274, 4.624104368250979, 7.733516419856946, 3.677594210081542, 6.524768143212142, 7.066374074487176, 5.143447270639973, 22.440995587575134, 4.229688175915656, 5.0752793516411865, 11.993992744867843, 4.268123348023843, 6.798146204944138, 4.634578232000967, 7.5198140580153305, 4.4876266633495945, 3.8989156586308873, 4.601249353657101, 4.996028051666647, 13.470575018258891, 4.4796399717274165, 5.400347469197467, 12.713326340357966, 97.30145060855062, 3.46263236581296, 3.8906105059499883, 4.369294851290587, 61.41476879349774, 15.157002714942557, 4.4045778091289876, 5.680090522510075, 4.693316210711594, 6.553564444563638, 3.501747396295945, 3.5450137342635686, 5.48979203067526, 4.273106938909612, 6.427995147789099, 5.6563920821344675, 3.992117127668658, 6.003342560074616, 3.582772106546129, 4.493487050095118, 4.180082961107665, 81.01447239941805, 5.061015524338627, 3.896189913625548, 4.82103830738019, 51.077838001616065, 17.288887251021674, 5.845819873893094, 7.003882753440541, 9.583183624149628, 4.426987521192454, 3.0132054478214605, 4.649102600009726, 3.830027021278617, 5.827128025194808, 4.697873439950875, 4.043771210661222, 3.6195032226011725, 4.500837211504956, 5.270657516036255, 3.5389609091188143, 3.8645323079041702, 8.92058558506467, 4.346278824685438, 4.92931858023679, 6.984804689401747, 4.718640966604109, 8.707615881435732, 4.203473159488001, 6.299972717588432, 4.173827468748365, 7.59155375061731, 4.437008912136734, 5.469878790985787, 4.912087134007971, 5.9699566982944425, 8.586962999208332, 3.581340171487345, 9.772536255258402, 3.4125044259542103, 4.308990206038409, 4.712768047936717, 6.362780594624093, 6.545155998574394, 8.081610641877887, 5.187987303244811, 5.010259380413237, 9.061963603126307, 5.696048975381467, 4.965162743767697, 7.962555372026547, 7.062147796945563, 11.061092418896013, 6.473767833080628, 9.613079846605991, 5.491381545065283, 4.413812424114696, 6.123180261856331, 4.026090687521655, 15.584569118929442, 9.296366203139886, 6.249179883724336, 4.238540702356132, 7.130319017985013, 7.483750627083126, 5.222070314588011, 7.833576985611429, 4.780236882306156, 9.609208594319181, 8.830539124153656, 13.391624401573027, 7.3899831369868805, 6.432511324691714, 3.711724675691236, 4.763137995803572, 7.4449849984248475, 4.015123659103607, 7.162961646923322, 4.032477713065998, 7.052348870811501, 10.348060560091536, 4.279800232070412, 4.328793450564379, 10.800440668036977, 5.309561978374725, 6.079144392609833, 6.060111063929426, 3.2671086501458415, 6.478118768374161, 5.777677445349716, 4.872496173054208, 4.1287038539714, 6.026276551334028, 6.279040376673887, 5.848468250083247, 4.9517713302681186, 9.76825003748939, 4.217907382582055, 3.833993390103513, 9.440618981458282, 11.942066745374609, 9.690050269125994, 5.315451173758536, 5.4393494956478445, 19.011115603801333, 11.11859343443306, 4.08544724419464, 4.318310594741711, 9.188190703984333, 6.124518527171524, 7.085864044704064, 5.904904459492124, 6.843707058809332, 36.85998200230058, 5.226126872216242, 5.79935860767464, 5.510729521114107, 3.4922220169569846, 3.9574188373460686, 7.573795665684751, 4.255370705899032, 6.384541040298559, 4.0164337617672805, 5.492217842157691, 4.95043917125404, 4.63023521364397, 12.03780207482615, 7.893219250710325, 4.350959749532263, 8.107577016727594, 4.689287971082338, 6.53954235163071, 5.005927197035518, 3.7834061880829912, 7.006777093976195, 3.8157821990929053, 17.036802175233234, 4.416585126302539, 8.712968476044312, 3.454852738347294, 5.70372870622193, 4.305901427642266, 4.5898614645166305, 4.428448414343846, 8.024727402655087, 4.855421749635699, 9.540789206692033, 3.7585510337929677, 5.957112147155145, 10.193981913003539, 3.7089405905387944, 9.11903129448991, 3.846747195888775, 30.824499300491613, 6.634383305283439, 6.708600434346098, 4.747702602816254, 7.6492030218518146, 7.532437251787794, 7.215172512332695, 4.525065817235199, 4.041665622779477, 7.831380532109241, 3.459394082494076, 6.073321072733902, 4.807624064325001, 9.488655866214522, 3.591192401532257, 11.791380954878415, 11.621881815107981, 4.916791511235199, 6.3602197265156155, 3.7469125009510145, 4.773138565529527, 8.262824374106833, 6.409736483179723, 5.255376613728241, 4.263707460833194, 5.885906020108325, 3.788652057339292, 5.721141648581647, 4.20392500664583, 5.0763623885129885, 6.312560599605449, 6.321929493345352, 7.433960626938249, 4.681874776046969, 8.628409327332609, 10.345453392789414, 10.648538133025808, 8.336371201277172, 4.673542294485675, 6.2215282218211065, 5.461591852244218, 4.903543067284811, 4.667504141669467, 5.628386909492049, 2.7848425738928873, 74.71155059268212, 9.853037839532398, 4.389975341555492, 4.443525874420843, 78.0367441933795, 79.90598358585855, 4.481149762902938, 6.607647175286152, 7.605733732876104, 56.07756881525337, 3.62117641585723, 4.1168425235921555, 3.9171549243649433, 8.466822797529097, 3.693598359007282, 7.616385641436109, 4.962652871655363, 6.197816554324354, 4.388756651834837, 6.089992981731396, 4.741807785837885, 4.03481462652021, 3.7817158136250826, 4.1745434363506995, 4.232058148256014, 6.097097496224208, 3.7488270992702426, 11.700398565873149, 6.281088359936362, 3.9211730288511055, 6.083397376715437, 6.257893700269734, 5.663518614705044, 6.049773454808169, 9.13330784173635, 8.32490975321935, 3.8967345994203737, 8.504030314454575, 4.868888484763653, 4.153562263587045, 6.656528242611954, 6.053672906499471, 4.490187875181513, 4.444054118683632, 4.22862577149739, 5.9709292511208085, 6.443455882483703, 10.884872402017457, 4.142371819044738, 4.640390205717368, 3.5611256017905535, 4.027009117617833, 5.395943253892097, 10.453947425140438, 5.468238045480743, 4.6804193965328675, 7.076125496095378, 4.315999136628655, 7.7119153845908714, 3.138882300132296, 19.11512783494011, 7.170986604939493, 19.798402797008134, 3.3394272102799483, 5.613343384062103, 16.066807890678614, 5.888184866322412, 5.5881138509899975, 7.0508011065837115, 5.150266052860032, 4.503684703994943, 5.1636419592312155, 5.237754607875664, 5.019462305960814, 7.519838289108709, 8.074847104933475, 7.911339309901398, 11.643645484111387, 5.773705895760619, 7.139743919508444, 5.228079145084267, 5.834440445291204, 4.222654965427714, 9.146632902432318, 4.659777636226883, 3.7000973923426566, 5.337100748032939, 4.7731330304105555, 7.830731743971186, 3.6769934812482776, 5.057136295684619, 19.793700107931233, 8.07426523766116, 4.058605652609193, 4.500640884969426, 5.533924831842904, 3.6722605844788303, 4.788993177141626, 4.726002880896287, 11.623697122239149, 13.42541693514147, 6.966453825818134, 4.529649074700707, 14.372261605545955, 4.719277903118388, 6.36823824374302, 3.796677232260053, 4.016846336969032, 9.600911616470059, 4.448622164698111, 4.234132438130352, 6.625064346894625, 6.4596403846718236, 5.35684877317826, 5.244840709688381, 4.492275835582461, 7.661584343292342, 7.113438610217785, 8.362745166994838, 5.650032468530412, 8.621492859184077, 4.852051010514424, 6.624888055869182, 5.18555122102833, 20.21185987095237, 9.97190579207576, 17.435244794068545, 6.8551572766741184, 10.63014639121177, 4.316948946544505, 7.892116084060777, 18.055059153351333, 4.54507034336949, 4.948613420310915, 7.16646352920542, 4.01816617407955, 7.04339852251297, 7.1015337001073995, 9.215886216017275, 9.74521288260765, 5.6745322411599615, 5.174913178402194, 8.18776683072722, 5.943722668351503, 5.3280932350755785, 5.529679701228951, 27.91886359107246, 3.39147347297507, 12.461537943095728, 4.492999998688725, 5.608605988775144, 6.272325650217502, 4.325273271284277, 5.247819285728877, 6.379726559013119, 5.412685604772375, 4.45715210092852, 5.634231524798324, 9.524270288517853, 3.9710412582562666, 11.024532292144785, 5.426147006254066, 19.4590161072569, 7.914158600351719, 6.719869717519387, 5.350797535756458, 3.986593857234563, 4.675378269200718, 9.808597418746604, 3.3064581809112443, 7.926954110447761, 6.205469380132573, 4.7158632186855085, 3.791894852387377, 4.256961127408792, 4.990668277838074, 4.928809003822286, 4.4346376555035745, 5.350858899681473, 7.227314659645908, 5.353333256451478, 5.669107954565869, 9.694818121575532, 9.504298070491204, 7.199129352941574, 12.114636836531638, 3.892024284423771, 9.252644650444275, 4.7585781169715995, 4.775142449436908, 8.89412195873714, 13.547555335878751, 5.65588885840728, 4.795169065971136, 3.8825092515811916, 5.0392005723694036, 4.966965772167838, 17.704552914761788, 9.487804946356565, 7.254390053647155, 4.481347770053769, 20.661517358037592, 3.1972705562576698, 3.8620245053514535, 29.271705674049088, 4.339500428820203, 3.5512395262932803, 3.6495962841487155, 6.348097826660865, 96.39141797584116, 4.344582263600271, 6.6597184286629565, 4.346861806335845, 46.985908876709566, 4.4626901841578235, 5.3413768055558615, 4.499713087987705, 4.782361535467278, 5.0889190059898555, 6.893504415087577, 106.39455613106274, 9.732839734951233, 4.079561538871624, 3.984081201927759, 60.19564745410154, 4.2670948296752504, 4.933385736748947, 6.359109755562769, 6.074809859788866, 6.491214079217952, 6.57935814071693, 10.457523777907399, 5.810216388282369, 6.857495365350347, 4.800212897748511, 7.73894116142715, 4.942875908828293, 7.0147188320204, 7.256962076394831, 4.22387998668078, 5.478080489878519, 4.219313710283973, 3.6575689961294318, 5.315639348149862, 6.213080760955669, 12.796126770279837, 4.578873469700271, 4.739701809234731, 5.9824341650104484, 5.055801847824093, 8.704860057583433, 5.02530012776716, 25.581879528249296, 4.714798370235959, 6.1827481709002825, 4.535743653772277, 4.849245014266849, 4.507821072173681, 7.167099217362901, 4.523725242187399, 7.492717906749569, 4.366702293659084, 10.621957608620885, 3.8922915999189076, 6.940050574265407, 3.8054490368687706, 20.002736597349447, 12.608064070743946, 6.4261550737196735, 12.973849948433397, 3.81763023871588, 4.579211308475125, 8.017931959582732, 4.758507892327098, 6.2798165108781845, 7.3604062665852235, 4.617255313830386, 6.333988187997394, 3.8362517915611445, 4.788385649090258, 7.7995966173534, 4.342878748321515, 5.606745024564772, 3.9840646881637727, 4.815499368957855, 5.246201928211123, 4.289224515277654, 5.663411273391354, 8.480100521656224, 5.071252735607, 5.160127213764547, 4.53624053244735, 10.58681619345704, 5.209329932522391, 5.369305444705475, 4.173447549846968, 4.038379326479908, 18.458799366894336, 7.01827369872429, 31.089323285588268, 3.7926589258484737, 4.673081241888267, 5.379553503435119, 5.060093679521548, 4.574115291095061, 10.745941991778293, 4.742908808649098, 3.735449362256459, 6.412221658497908, 3.6629670564529717, 6.778038255288373, 4.862063374872832, 9.743430744762845, 7.721993778458546, 12.192976788810702, 8.868736052709298, 3.6291384436701626, 5.94674670050698, 3.288543432187872, 7.411632498495848, 9.12045246633228, 6.659162228044054, 4.115906216748908, 24.21532870917519, 3.951975547687561, 5.74539973857174, 8.429737884798515, 6.006669802900052, 4.187970190313094, 6.08889093690921, 5.376420484795904, 6.3935641213023615, 10.904596132407457, 9.204757842236951, 3.9172711047970594, 5.528851448075698, 13.891355556775126, 4.746953981927097, 3.865065277164962, 5.805905357304684, 6.931340594117201, 12.029615564984518, 8.425371024529602, 5.085184457950282, 3.280609489693107, 8.205840203416141, 6.431918192143181, 5.1438579797414, 6.237966310639673, 4.7217009943862, 6.044580194465542, 8.112861610882568, 4.468604122083538, 4.941038027236907, 8.653643012419089, 6.85859557102304, 5.589608007996393, 5.321441726080196, 3.407308324305435, 4.115526908037804, 5.319017978527499, 4.371558167167956, 8.534515601376901, 7.793445252564381, 13.170515109445383, 12.940050176941833, 13.876621907427365, 4.210255029958452, 4.949766828721009, 8.744333088793061, 5.338644674058964, 5.930230548591903, 4.298277313804668, 5.339493884931879, 5.4377146791473745, 5.218984930986356, 8.423420014688961, 3.0110084263655064, 5.654685177165838, 17.07034085764611, 4.6351295588841, 6.045744136072352, 13.36158620860923, 8.759215900211307, 4.248885286520975, 7.30974021181997, 32.63274189204161, 5.156316528050113, 3.2152397848718364, 5.493284229334652, 6.658415758378075, 9.949410185075989, 12.557949837894705, 14.270039948835203, 96.47247763347765, 4.4546491009725315, 5.32917615657373, 4.076866201063356, 48.057929650991916, 4.214839976030131, 4.053433501905146, 5.660294345311738, 5.367432174303512, 6.960233511726815, 9.922608858470506, 6.213648839420147, 5.814721512943981, 3.5693835177417115, 4.350409998547591, 3.736180684351418, 5.231794568133515, 8.91431915719982, 9.470174401222394, 4.696216490915048, 3.9808891463034386, 5.138015959660937, 5.753859611633492, 5.050128131800863, 5.1235060891007045, 7.7062240703113, 71.48784454292752, 6.825803450636586, 5.100129220835478, 10.925549297112228, 38.12541664137584, 5.449964011118487, 5.3063753492859576, 4.6111919923762965, 16.483474089218557, 4.893046658787131, 5.87044342679265, 14.078419470957442, 6.692102532227791, 3.9990680915229064, 4.37574441769043, 6.926845212947712, 8.385377026131087, 5.880953043258881, 3.8110233866388024, 6.662585556216499, 10.3619983497534, 4.1628384509555945, 11.457539470274272, 28.74406940473319, 4.635177899331946, 5.254809065853005, 5.721574647686535, 8.017944633481154, 4.325918718994144, 13.460829506376832, 4.633505602214586, 8.693285724460967, 6.174374616296545, 8.448419203654886, 8.010910774984154, 7.1421747626892325, 4.705500900602683, 4.843092735462783, 4.54363217387585, 4.582397111947013, 9.382505146080929, 6.0759973743049445, 16.5515373470651, 15.288657637130626, 4.486265478458969, 4.862151021455249, 4.897859905334749, 5.431506975610722, 11.533116238931333, 3.666482573822144, 9.191574166403944, 3.7886896922061744, 6.613417574053774, 4.4631429469123844, 4.678086087873755, 6.862152225472449, 18.421655949072548, 5.07356880442428, 5.016872471168126, 4.664865423562431, 4.920880840924658, 7.738996946616494, 12.027150039407031, 5.648425493558797, 14.548022686188835, 18.1697463147409, 9.091437380847163, 3.7965075426581287, 5.19359377289507, 4.983347581840493, 5.022134110728351, 4.445498014852892, 8.680529108879307, 4.961389181595413, 6.595963899387285, 5.638385485226645, 8.658172394755681, 8.240082384797514, 4.566208646141089, 5.023432571290552, 5.240936840604281, 5.689323245963404, 8.19835468249718, 5.1558570777971875, 3.8506315877027397, 3.762193812880188, 9.257686879362911, 3.732168077560872, 4.453574547405246, 5.824650497405196, 4.38313720726955, 21.48589025007454, 4.235621940781383, 7.925705465277665, 3.5420255693497635, 5.139841413987035, 4.178271340909672, 30.83129583449978, 7.470639907605776, 6.119095288614959, 4.461094672255623, 5.329738392180714, 10.196535247138582, 6.579685254458529, 12.04773379704316, 4.981008797506586, 7.440865157022765, 10.572615176505991, 4.776204575971024, 3.844241956249167, 7.575950748952726, 16.846836501786374, 22.094932925858664, 4.843832760395906, 15.027926658906145, 8.639954892147877, 8.585711797096746, 15.533737882656224, 7.980053756063187, 6.82459375820547, 7.309205841634009, 6.838541069804603, 5.200923876418877, 4.636014006111041, 2.5526625191549526, 7.504703714333534, 7.10452098214158, 3.7750078401702827, 5.010918743105055, 6.593636676962553, 3.785170967037593, 4.080565576720883, 4.923011123568876, 4.437741203761117, 35.58729442780021, 3.931989409241744, 4.382251528268847, 7.964636688325425, 11.514145804674087, 3.445798139507279, 13.20805836043085, 16.861905242723086, 8.814593175115936, 3.896392969094484, 12.79224812186171, 3.3456327711851186, 5.06889046774407, 8.19637748494281, 4.270746491008874, 4.4445793527267154, 3.694935603972859, 15.347315564003553, 20.377787974701786, 9.438302728175412, 8.854074122627217, 5.513549449515017, 9.518138007551933, 5.416236021482268, 17.83675358714541, 4.693326730433356, 5.719923773849992, 6.9959841397489235, 7.5484651695100995, 4.138223177250136, 5.9703640899850345, 6.265982512558192, 3.346046515467288, 6.5728485789935895, 6.958124879801262, 3.0151226623005303, 7.053528424914303, 6.52032465676714, 3.700722746283858, 5.84479369466134, 5.384910186842543, 4.594555668911704, 89.32372979797982, 7.3184630542856155, 7.0826346582337605, 5.268022394952462, 53.81057865818388, 7.987862588992585, 4.412528567818481, 5.423719897378626, 6.524999786626248, 11.898727155120145, 4.757906126296604, 8.203651948192617, 12.337721955671459, 7.750752672183431, 6.698997972003267, 18.80425671624694, 11.069676907678167, 5.493928476417855, 4.408443853041393, 4.997196853630912, 5.865467748429236, 4.274692409823381, 5.467460556619783, 5.714741005345589, 6.284847000006847, 7.504307218645388, 6.075751790782945, 5.691890431818707, 7.494434090915378, 7.988721670790352, 8.824553424416592, 3.920469412050295, 4.197949941923195, 6.617548121873491, 7.276486726927269, 106.24683783173353, 3.5891690056591337, 5.17529283283749, 5.69073562392182, 74.0923241466136, 4.31415127282138, 18.331079593072953, 4.884144118999509, 4.3431219780202595, 6.707639548174727, 4.286779978469495, 3.375343433936151, 4.444215372844148, 2.8991830236508673, 6.491415546579535, 4.736286076603143, 14.448132865952553, 4.708927223752809, 6.061057335153116, 3.802702841750057, 5.911293668565118, 10.097951139099003, 4.711973927040004, 6.712553459192512, 4.983884163967108, 4.123336896511393, 4.4746077369970765, 8.870701146545013, 5.102364124225052, 6.238455479805944, 6.604833668846406, 6.851027321042884, 5.414851570282144, 6.132331500484442, 5.792227881349751, 10.383213680817855, 4.586490470415602, 4.588039023927166, 7.366478402006874, 5.319050140142637, 4.881157575928772, 4.418079002117587, 5.2751736414096495, 3.1512106434078455, 12.85589105193198, 4.473216179632033, 5.029226226138273, 4.130620564768121, 3.1296011181659624, 7.495322716249779, 5.0616695521133614, 3.8240312811561066, 4.539220353793917, 20.878494957389343, 4.341434624731889, 5.663774039095819, 4.971268190988804, 4.454873646628871, 7.133919914293835, 4.3247519469400295, 4.078670252765944, 11.392840777507866, 5.1785573286172815, 3.6531664491514673, 9.702959925220206, 4.253151331463266, 6.052924680837613, 5.514666049286846, 4.088058245820178, 5.178157891208398, 4.071490397210668, 4.380542442191832, 5.304980445599756, 4.748449510668847, 4.6087084506889795, 4.845283853934818, 5.232120277655134, 4.942451544284616, 3.8114406261204437, 6.47061152474121, 6.10287732384041, 4.7421062116282435, 3.7418445213672764, 4.672418543037096, 5.652149197833138, 3.819485988434009, 7.226234281232544, 12.898882968896372, 3.389469928474437, 5.208582299929198, 4.37347058472928, 3.070137165380015, 5.468294140409445, 6.484221858881405, 8.383541645711917, 7.494251500443652, 4.247053544710369, 3.4247638761383006, 3.94025299343362, 10.982276741994422, 7.400441784066865, 4.756987414628638, 5.744419358924994, 4.559860932386488, 6.291628903592943, 7.592068390793693, 4.551027462674331, 5.541364972994601, 4.647094506209214, 3.935881926604759, 3.890443257792303, 10.28910987676883, 8.93890139903397, 5.064015105199889, 3.3172598216100484, 4.1332652973098565, 3.9122253610391846, 8.169228036820567, 5.663687420287502, 4.682269201610077, 5.146887174733895, 5.562195278346267, 6.558643746025055, 3.426451247249198, 5.037236039224802, 5.354866938672836, 5.911013947393742, 3.713013202719885, 5.041145523001034, 6.066281513917537, 4.726193639646821, 5.29454504482428, 3.0357904616653415, 3.8552864093591532, 5.129494493390832, 7.100354763100173, 4.13637374114932, 4.091764492762668, 8.046202815190185, 4.389489283929181, 7.233481715497053, 4.830340833444482, 3.700334878569339, 4.7447342565937625, 7.438086433530066, 4.2645690091195005, 4.450526861031847, 5.15409992945452, 4.529839652907426, 11.396014556411922, 6.935017118348567, 4.666557859319071, 5.71820065577343, 4.1389015257098904, 3.8521951359801188, 7.414426756180776, 5.5293306360535714, 5.109297313674496, 3.8512496566712016, 4.170284639853617, 4.485310252987355, 3.923376333439818, 14.781754185451081, 17.07818954695582, 5.891850827581667, 7.662196323862342, 3.9921504279160307, 17.530625493919285, 6.255460169044325, 15.154404354080242, 5.032593085373171, 9.012802943992801, 4.379994929544328, 4.010316403188316, 6.118614854775042, 10.206521785948357, 5.169978380181049, 6.2732290923958205, 5.997743753781235, 8.675525763149992, 6.80000471825454, 3.336519832081901, 3.6245429943139618, 4.351133256180397, 3.98855353835253, 5.540531238429681, 4.898114156544732, 3.3909106632763764, 6.724361925869456, 9.280109744453908, 90.98158394383394, 3.5435526494303717, 6.238779203315486, 7.154373895817096, 51.96964146147972, 6.455506249527327, 6.060167910186619, 9.672663082836667, 7.578215806109628, 10.345417648108997, 5.157577358009241, 68.67602107833686, 4.596868983150261, 5.289617753948291, 4.267092636195443, 53.31936804670552, 4.346481549904992, 5.704993000443485, 4.9447038101964, 6.273575022075576, 12.815555907433415, 9.878782935949957, 5.442716075069811, 4.302360175781767, 6.773115692142414, 12.329037285485686, 9.409616426007991, 12.485208744564904, 5.96139923693845, 9.03276465517973, 3.6363921240025596, 11.137802801386618, 5.343887113514807, 3.7509485329042493, 6.586234043379925, 3.440946510791815, 4.784711601478, 10.35266818732416, 6.665347414405268, 14.945789119274226, 4.359410674061038, 4.2441757961924615, 4.022063862654319, 5.243362805735359, 4.357364800738818, 5.985273142488592, 5.517780793492746, 4.61296417193103, 5.572827416846629, 5.694451086003136, 6.341996351625966, 5.446074726609395, 8.500301393046556, 13.03329274744092, 11.496410179907038, 4.204502406661319, 15.082194518253692, 5.463190655673827, 5.864543949702261, 4.401393573178707, 4.01559714460999, 6.469176246357146, 7.102570377160952, 4.507245566323382, 5.67774429669077, 5.535460114473451, 8.402005779401476, 4.549831464332064, 5.204590849354795, 7.86586866865239, 4.473354382368581, 7.718949212155101, 3.992178266079432, 4.553065926045751, 4.489391642790594, 4.119201351721222, 5.070552336715513, 3.6940571094273613, 5.103685581368194, 5.629042626106282, 4.827201955213366, 6.357577613410335, 5.618315862429423, 3.8283524715852297, 4.493340644174309, 7.933194682855006, 5.349495458346115, 5.002451111719425, 6.6034694351283445, 3.752872117729314, 5.0809557757556165, 5.490364553729335, 7.0488714068475335, 3.500272992086024, 4.594350314047062, 10.064148313290252, 4.395987717469432, 8.018787546387507, 4.999416695911521, 5.457312234067203, 20.036073569706858, 7.0451121257428175, 15.735689052241797, 5.431357858327, 7.356403732198251, 4.8735780340207056, 6.458713345722017, 19.062922482956374, 3.923284203442875, 8.407322659269198, 5.4275323423177735, 7.566951082785211, 3.0605766573099076, 6.313793288754308, 4.374346561063539, 7.653598119248807, 6.26316517224047, 5.5585099151606, 14.660605378142902, 5.48256618384375, 4.224145152240332, 4.823383351186576, 6.267866596109082, 5.8267522910758345, 8.794350005945956, 4.546099958403632, 4.789392605553063, 5.445800730265066, 19.85649132480237, 4.480652110690157, 4.694551331423652, 5.416387084252549, 24.00014885536387, 5.280013322705469, 7.183756362838304, 6.0539170669191185, 6.162627160828433, 8.860593841795659, 3.6508035946834534, 5.536919207616954, 4.229190533569512, 9.593880179909734, 5.393514307700737, 5.298205442213041, 4.221195824073728, 4.319647194151816, 5.935815648366723, 3.937524754872264, 5.2687926114155985, 4.175420514176529, 6.791009954035219, 4.214317412007233, 4.783562559498678, 4.382220636077555, 7.186023709928945, 3.8101691502496147, 4.170050189740205, 4.656222631912055, 5.182360623148151, 3.6704790562491523, 4.704678647174085, 5.423172206561201, 5.4585155278904045, 4.022163627490244, 7.27729592041331, 3.1917806245356735, 5.223467722309978, 54.05799180355065, 8.806076232088042, 5.321424285991631, 7.530577934991345, 4.325440796106714, 4.494142395129428, 4.503712293152162, 4.787721446306103, 4.805335187114755, 5.286394524056076, 4.114565024157908, 4.84634938523383, 8.287898441944941, 3.550966916293093, 4.489734263730584, 4.740123837418329, 4.215939187429979, 7.584062698782617, 6.758790784939823, 3.484655733494167, 5.266119653622785, 4.063540078105357, 3.911872514001788, 6.811297764271617, 7.089170001110997, 6.944550608246189, 11.870103167753333, 7.534969356436415, 95.03692090317092, 3.280283229780598, 6.888340265073104, 4.382451945847729, 16.79981921519696, 22.21617025466301, 8.658456203127592, 66.31422651149816, 7.554545455820509, 6.414425967555687, 5.8397248394077925, 57.17700365137866, 4.850437396270492, 3.3641484472894776, 4.853834239797295, 4.455878927723499, 12.167640252949122, 3.3824276544358236, 10.899007702264312, 4.920564082566869, 7.1933566164809015, 5.0031878394032026, 6.026098185001474, 16.337197033268147, 4.0060566069929155, 5.019364482142843, 4.294086383175312, 6.99424299832918, 5.422639018020572, 9.748197970159408, 5.516794668670503, 5.0351036763950825, 4.756959660313524, 5.009131792778426, 4.711952656506742, 4.0539185412321945, 14.694755432224378, 12.478996429500498, 7.081815331114763, 4.603579218997312, 5.882212096853533, 7.247889453009348, 6.430912837956567, 5.345386910438969, 5.295440426935573, 6.452357458557856, 5.2182439500746245, 7.918400871457242, 3.3909678743246285, 6.814595197874945, 6.286240359423917, 12.138022049332204, 4.079368658531858, 9.822643017740281, 3.4400144737482936, 8.454516543070689, 4.285817957164266, 5.275949583417665, 19.158778408130754, 3.743532936281448, 5.394816600035037, 5.478942168424618, 4.750166564438174, 3.5158941215221975, 22.81217891434468, 4.5404289252186585, 8.84706474396011, 5.269676306156845, 3.4818148218984386, 4.252892557738076, 5.990617372177311, 5.270814317980557, 6.542075480198961, 3.839421349220167, 7.881098371221939, 6.074923673670978, 7.996994826174421, 4.6230999888793765, 4.350915675237615, 4.828605458332533, 3.097526700727491, 3.8373491782390055, 8.896256570217373, 7.91317649118198, 9.742374635484941, 5.913793393796919, 14.367247743791681, 4.451204775308458, 7.22232590686502, 153.2765665771011, 142.6251917562724, 106.57551785714288, 38.35177037084983, 42.15812837120763, 23.89646246763309, 5.8546481851499275, 105.80587229437229, 92.45917452186059, 3.050450196504593, 71.60443894993895, 76.05857395382402, 48.67401159963142] hash_total = [0.0, 1.0000000000000007, 1.370000000000001, 1.480000000000001, 1.5400000000000005, 1.5150000000000006, 1.5450000000000008, 1.9283333333333346, 2.6275, 2.3708333333333322, 4.436833333333331, 2.5891666666666655, 2.345166666666666, 2.0541666666666663, 2.887666666666665, 3.0416190476190454, 3.335928571428569, 3.13297619047619, 2.789976190476189, 2.6104285714285713, 4.321916666666667, 3.3618095238095216, 3.0660555555555544, 3.046063492063491, 3.7963769841269843, 3.136785714285711, 3.6055981240981234, 2.898527639027639, 3.316326118326118, 5.345642857142855, 2.377603701853701, 5.5427561327561286, 2.7614300976800963, 4.891527777777778, 3.128548733129614, 4.92867496392496, 4.770721819846819, 4.519309357309355, 3.6516469261732394, 4.63085187035187, 3.0794931179931164, 2.617604150751208, 3.2066953185703175, 5.091088516746408, 2.6908068043068027, 4.347160760807816, 3.8107554896794027, 5.179540200138026, 3.3254698471463175, 3.0936308136308135, 2.7597177267177253, 4.430002490629426, 3.5005616157148665, 6.1161093220504945, 2.7428019994281594, 5.216418211905053, 3.272062590187589, 3.8437909590409602, 2.7577418268006504, 3.5392025818384503, 7.296163856568271, 7.220718116034292, 4.0377045671219065, 5.449168467752189, 3.184595178063943, 4.997976546114704, 5.269072966961923, 3.740358318968612, 4.628531198686372, 5.971318620992534, 6.879275242280818, 4.8046163478017005, 3.8574880118555375, 3.341905969597997, 5.371752898572017, 5.779727022994206, 5.347512574382137, 4.173584424633336, 4.695841497246875, 4.453745412818007, 5.340867946381103, 5.345200098210965, 6.578836985691202, 4.308112807943691, 5.946055363219156, 3.15356547064047, 4.338007105874399, 3.0486007656161136, 55.680031746031766, 3.345044424796398, 2.8817170932167158, 3.8318769761059306, 29.750252062550974, 3.912754125447035, 3.712328218255384, 6.078671820955102, 4.593785282205062, 32.605773448773455, 4.524485792562566, 6.5172087133275864, 29.829859279609288, 15.813620668284461, 26.616475930931802, 3.446981501157077, 5.34559567150743, 17.853489329384068, 29.01935155122656, 17.39361060508119, 3.6011181988507883, 17.24020196537881, 14.600713847555951, 3.4344154940246456, 5.112650034688494, 28.510584665334676, 23.301322982572977, 27.361794670607175, 5.756550957737914, 4.944926630603637, 17.112726529026535, 5.447868409368411, 15.660429194726541, 11.017437099546134, 3.6587961829414657, 20.114800434644476, 7.318447663447659, 7.149026994083102, 10.244183318446915, 11.089980800841243, 18.03152468542627, 19.84193617575502, 4.602386796182308, 11.759328516905986, 3.456858028045741, 5.339943957716154, 3.622143311031125, 4.10047082917083, 6.947706017672773, 2.89044004656924, 4.8507075477885815, 4.203221775265099, 6.164354545192569, 4.021954052710275, 17.479796320917647, 7.858442436043904, 4.608196276892795, 4.753762280014237, 5.175352552518802, 33.50072208407535, 33.859732854234394, 4.814521169446285, 20.137925663664223, 27.480219504351865, 29.49867861965203, 6.85399068546552, 2.774933753269552, 3.5438718866640033, 7.723537691237746, 13.96513242128645, 3.6691071325383606, 4.466778995450812, 4.196546916538465, 4.5246168285900366, 4.295684852211096, 3.3864602099751058, 5.010407563168896, 6.3697114284248055, 3.6802356870192434, 36.22190476455089, 5.311817170690737, 4.101441978596438, 6.581971338978733, 26.095092566927168, 5.437794870811646, 3.6414734433419533, 3.2513682581356873, 5.248974967082237, 5.526143609949429, 4.120736136959752, 3.6894299241408244, 6.040114280936402, 5.847077030983218, 6.409954164527981, 4.092860200338839, 4.3023643482026355, 3.6333603675983115, 3.525799161276523, 5.347597901625286, 3.5790794215375423, 3.526744829259409, 5.911561200715774, 3.8789691430885567, 4.44996875886121, 4.3188848480746636, 3.6336423075847044, 3.2842547644493543, 4.851637291573674, 4.329119040920045, 3.2388364381193844, 3.418037728642145, 2.7549817240068, 4.258297749962227, 2.7276299660964267, 8.873005844479326, 5.124731414367305, 3.8085879639374536, 5.4346108868570715, 3.828563754904701, 4.2788102435280795, 7.16046246599874, 4.869242980187677, 5.286800829236123, 3.694699130821793, 5.229704113033511, 2.9924794460757678, 4.804161235964438, 4.6319133959603676, 6.936922182127253, 10.258215589598217, 3.4728458083398284, 3.5646972896032434, 5.678827453650639, 4.239343137840533, 4.041486363033127, 3.9847149776649538, 3.290269685892484, 6.194987127666591, 9.570265003209308, 4.889929007951815, 3.8480749721757443, 12.797580468934886, 6.866735014269158, 3.834316024276235, 3.195395397906302, 4.2644815520765915, 5.842922260721511, 2.9466675010333447, 4.583710931773336, 5.6109644968704195, 6.120615622904864, 3.027295976524202, 6.494514396866862, 2.9001390052679916, 4.2771731980299315, 6.14850173583913, 4.139811117360308, 4.253711206118185, 3.4569419186393153, 4.737197990292212, 4.726963082009917, 10.603573092731274, 6.36647672822481, 4.700024159928488, 4.572963393341579, 6.774468622490044, 6.073102715211463, 4.67601732219726, 5.912915443144219, 3.9278442412343653, 4.737408293615949, 4.462808870699439, 7.001330203459879, 3.721745476657147, 15.678806580459934, 3.4960323986301596, 6.02559442165706, 6.053541944357682, 4.0023120265136845, 4.595141095397793, 5.107577808778385, 4.329189906482331, 6.793055190039062, 2.7935224362162985, 5.542319873291132, 11.145571210190795, 3.90821505834543, 9.917700798039109, 5.347142849375628, 5.9777261073187065, 4.165452331280944, 5.295799816448592, 7.045790192467125, 6.603974517998712, 4.162709275443324, 11.974491427064859, 5.137688523564575, 4.655118812349199, 4.913187657394458, 3.32385088102379, 48.34320237744516, 6.2048949870398, 7.045804924230284, 4.204907775171661, 14.958632945677989, 3.9346151463059353, 8.363089858064274, 13.92104731927803, 6.4949914750655, 3.844515983249122, 3.6728702475745503, 4.435206893084193, 6.347260847555153, 5.305730336123152, 4.579898796434006, 5.960849180786521, 4.511321735376219, 9.255241895729629, 7.312844194155281, 12.18619191520712, 6.249220565892574, 6.478348129262939, 5.528169473926321, 5.203972513643349, 10.993169623441927, 5.832821794857073, 3.641885701269975, 10.252885173629151, 7.01418301261511, 2.969084025530879, 4.562532374477739, 9.692820210975272, 4.115537013929998, 19.412608920551918, 4.011890810257433, 4.682626401077979, 4.726089121172255, 5.1469508857126804, 9.72305400282241, 4.34073572304049, 5.72300559173256, 6.130884034150061, 10.170063534387005, 5.161735805165327, 4.52635925538217, 12.847627418236872, 256.00000000000017, 206.60333333333364, 173.45000000000016, 189.01499999999996, 142.3478333333333, 161.8728333333333, 95.4618333333333, 107.06003623188408, 112.66694047619045, 89.82233333333336, 85.21278571428569, 116.38327813852813, 82.58558838383836, 94.2065235042735, 97.84561202686209, 69.1951612831613, 45.9307011044511, 78.69003626928625, 54.319138320013316, 55.02407005168032, 60.33871499415616, 47.24183176034494, 60.43372064863239, 56.8904927918688, 48.35422062376048, 35.14489440938041, 59.1210749042624, 50.87443496304175, 79.00043656699448, 47.683756708428184, 57.95635194117699, 43.790416732054254, 48.04163357662139, 48.624886367475554, 45.20110705072875, 42.94233190738644, 33.80064376496544, 27.028638697082837, 49.11952914749669, 24.54271056600699, 43.20164763427416, 36.23512917133807, 22.32940478064256, 33.70623194282591, 49.09644640698212, 43.24190004413066, 25.30534947176471, 71.69365946472345, 26.624910456756858, 23.832067024218794, 23.738683244971146, 30.41995517747168, 20.62962736005726, 78.27540139766847, 18.178889098697635, 51.633368095449036, 53.39163023610123, 48.435073755391834, 31.70642333352148, 17.380023788154762, 24.502663696533656, 35.084277719423646, 20.372545261367755, 18.740446140633583, 13.895596080175165, 23.38809231909508, 22.525589156710396, 15.570400817636317, 33.63387773283659, 21.179010234032223, 44.62096338294047, 15.647453411639155, 9.990425075744467, 20.038917749820335, 50.37810222769657, 25.352745070499974, 17.130067366465465, 29.466511279418544, 24.311717473872932, 18.50742502982995, 25.69091894475654, 13.81675887892718, 84.57528307216303, 33.20869029111403, 34.04531251187813, 24.199478026154306, 15.73940163541811, 39.55697027841076, 13.288827600095798, 19.244020247408205, 16.89203108363686, 13.587053481837527, 14.888557827724625, 8.0156621640645, 16.62222633491103, 11.334914126462301, 14.841287905351848, 8.594662785251284, 17.809784677155402, 27.203402211955794, 10.410479287020058, 20.089683012594467, 22.082046960779664, 11.404345123174004, 13.126248218652846, 8.337339146088025, 15.618139063552912, 10.288512070114336, 28.991959191696175, 10.404020381430316, 16.936247041378152, 8.670081207251055, 9.594434050070955, 16.42933629547147, 14.851434023097848, 19.96846761732323, 10.297930092017028, 53.84387718584273, 7.886537925605216, 22.770360287111853, 14.882486598719913, 13.839518007851325, 8.718690322505438, 16.328833796498603, 8.907139816034768, 12.503438931576332, 13.59024669921626, 21.301715036641962, 28.250217019652258, 17.392989984450164, 13.38232450288639, 9.463761154112202, 17.649868921752443, 5.188432714288377, 12.653304567618072, 18.795831373132412, 7.397639416645063, 17.590149494689097, 14.683725723787177, 6.916155737911229, 6.444824630018432, 89.95999618473896, 5.306602966633537, 10.505985956572157, 8.265974250108153, 4.752938683423392, 3.6228163302458705, 3.5518858525156163, 3.837889991373686, 10.293663555685617, 6.1751189865653915, 7.842416670824878, 4.675004831576213, 2.5298732491358717, 3.7535837149666236, 5.302180514136674, 5.38909239586956, 3.6526612614529066, 3.2617458125938374, 12.207637460827783, 9.576619743864002, 3.628619726033935, 5.999246225910309, 4.478414177708443, 47.82661904761904, 3.38820539347084, 4.5815661975569855, 3.7060557873499054, 38.23304722401779, 5.682986580611023, 8.405750199839478, 7.514439967737497, 6.350069399807935, 5.176205221927073, 8.062260159401397, 3.6829494376786487, 7.174294327033255, 3.4273226719745677, 8.804948199838297, 7.073814179229044, 7.715857059953725, 3.984036834510519, 6.023444435273737, 6.665973980139616, 5.979913184682535, 7.750364691229752, 4.393229810500844, 6.508401079252702, 4.596190757332169, 21.917481949629327, 5.4567491009377616, 22.538919415194123, 4.079561722956395, 5.230299877779971, 19.889418185760583, 5.061170122951232, 5.395844021402013, 3.0956135420696786, 6.266333172608005, 4.001268974297183, 3.4953870054952145, 9.102869479067545, 17.329446698081764, 4.814283407066452, 6.461083009775159, 4.641459949873304, 9.100701508494344, 4.3736697364025305, 4.022239817182738, 5.686152171450339, 6.123619735723342, 5.461840979860761, 4.575998364868959, 12.842423715428005, 5.276137795308757, 4.158697578780757, 4.295014585277955, 5.77085241912613, 3.5628194943719813, 4.187200399343336, 13.983498817230297, 4.083027079136625, 5.16219510000041, 4.781558978734831, 3.6723243760115487, 6.359837636909196, 3.4993147230449853, 5.590087070399095, 6.897926215252303, 4.757189672873912, 4.446342995588054, 4.441515544288207, 4.942140970942722, 35.44342986467921, 4.998921499381251, 10.370423659021908, 3.804046660927447, 22.525540293040297, 5.1152273172530744, 4.3621283528562955, 6.883927686862568, 5.130721610500324, 42.671852130325796, 3.4122222525644887, 4.706243836694735, 5.3801052437398, 13.506814249273184, 7.836259759041777, 10.49480924931401, 4.320942566519635, 15.476265831476184, 5.698813640263034, 6.129510239760237, 8.069742280380433, 3.9599112705096657, 6.453447852700025, 7.055306133081075, 7.3720857172472325, 7.3637040005368055, 6.882253522054403, 6.694117987535629, 4.240118055675241, 4.256359138003636, 8.062573851039774, 3.067837552956854, 4.320422994421556, 12.060789761901372, 3.44734424721506, 3.6683021367821396, 6.331045948639088, 2.728672169290717, 5.060517695033613, 3.768295549555026, 7.995517245936932, 10.014788192902445, 5.183106110636513, 6.569656301962519, 5.061565209087587, 6.866831903989197, 9.10686280948378, 8.119892039502993, 5.545161439702863, 6.464989848283602, 8.399691404860462, 3.5972933493192283, 3.7432750011641103, 5.129048008896491, 4.794537773694604, 3.13699083420132, 5.943789710253744, 19.88966596435202, 3.796608753802116, 6.909604558351847, 3.18740674962348, 2.984326146855458, 6.425435193935855, 5.789343880196343, 8.390353176744144, 4.994333002300126, 6.053990155312521, 15.583647274789103, 4.2236817768871635, 5.5907680139458416, 9.987760633443312, 4.484258958316696, 4.733549663193328, 5.076770160000369, 3.966232713933023, 4.297286663670954, 4.041770760639577, 9.702697717859483, 10.114113608150591, 3.7884739257578244, 4.876675276767032, 4.876442389039969, 5.443860989563759, 7.934715403532671, 6.848369249343281, 69.69566783543257, 4.451195155789844, 5.8320990274738245, 3.8225967304778865, 31.67483871239641, 5.631409801516175, 2.6774410263035278, 4.3522915207444415, 6.728306132066129, 7.266739054367251, 4.685138318901717, 3.552499270220073, 6.025940459970185, 2.9424031285208416, 3.551475749789613, 3.276524230496021, 7.331556469409709, 4.171156700953663, 4.187346753522795, 3.084871882049099, 4.260468026131223, 4.340730338667255, 5.660504891428682, 6.146334007483103, 3.1543491511462047, 3.8245951993995306, 4.27662949046205, 5.181996233834794, 6.107927791203277, 3.5862976644278164, 5.98396341530145, 3.127451249928977, 4.637029399145075, 3.8736641787885353, 6.497628092671161, 6.588205098802152, 13.952642085192172, 4.555666853574389, 5.239151514136963, 4.026075679631959, 4.0261277525867225, 6.495141228501427, 3.927841183175814, 3.1478914592796126, 4.56276558970257, 4.655820023275554, 4.492343798714695, 3.8737285283299308, 8.641958369108583, 3.7745315272968427, 3.5086048425454828, 3.1102558906893383, 7.220768678169501, 4.910007861254338, 13.157959892068359, 3.4185065446925336, 3.9787334162411567, 13.724860629033818, 4.0103763958663325, 2.6170190725179223, 5.031825382617378, 4.547090413178191, 6.568084241586703, 3.813607161583265, 3.7114222996590254, 12.499371801938125, 7.1561543911983225, 4.486373458487356, 3.045015263003888, 7.310697394041053, 7.577400315092797, 8.334914874541022, 10.553584679296728, 14.710373956650969, 5.8560055105888, 7.527950516286462, 5.528693996383563, 10.508229121257711, 3.1428009452109587, 3.9831739171266842, 6.220450950021309, 6.736380256972243, 6.652295332073811, 6.456076379618568, 4.695412258781951, 4.696029325447591, 4.536196031778883, 6.028537577285266, 4.872823254995748, 4.981787902575128, 7.5100928422389925, 3.1758556911896743, 4.573618639443587, 7.4583680738603535, 3.3862787059683788, 3.9306613961239343, 3.9088131911338873, 5.64700616038372, 3.680134138450972, 5.061450196976852, 8.29142415391136, 6.1472658873252835, 9.781731833891781, 3.526837235443678, 4.747605028507521, 4.350241282721064, 6.854911863247151, 3.513980531485211, 2.9759813372094266, 3.848659360571672, 7.850726305049896, 20.2991216591771, 4.448635584091286, 5.381649354464277, 5.981904310501906, 5.222604305910701, 4.402814997100649, 7.187051970060694, 3.963098275402184, 3.5957869603387373, 6.873660218275245, 8.411280468568393, 6.5461698488375974, 4.128991603926784, 5.101001822369728, 4.930960932709185, 5.876846810677089, 3.7535102252279895, 13.962944719007956, 6.1050212974795715, 3.6884127893585874, 4.43584267287276, 4.322736502293988, 36.11816632366736, 4.325502362043059, 4.950054966219912, 7.151150861390332, 17.283052773770287, 10.443726720870728, 5.226291381459381, 3.9480875826063118, 3.787560456289948, 3.9645631463936906, 5.957233283274457, 5.16996612683911, 5.407538867698903, 4.541603815727541, 5.729777348384016, 7.399371236220614, 4.939299358671694, 3.9330108787590685, 3.569777284883416, 9.735944822932858, 4.588543904672138, 4.1722121397259295, 99.26132305496438, 3.937956876420951, 5.605274392020021, 4.711369803634715, 46.13735164895304, 4.872635166850594, 4.187942157842644, 3.049395633644281, 6.398821391127863, 4.222453500657748, 6.529875592962625, 4.654894775429039, 20.088219169609552, 10.84890005483155, 3.896464563715543, 5.928450000959421, 14.127810871026766, 22.513873053313834, 4.561604239071968, 14.38520246081283, 6.177264413573306, 11.740774493450216, 5.462799676127402, 5.728231376481865, 5.193167354268336, 3.9755308652220394, 7.659524558398329, 4.199003314968515, 3.5553518480098605, 92.42705468866129, 5.312275558164018, 5.227823904337602, 6.364804848334145, 45.25516246601437, 3.1150790852627925, 4.8256617651930585, 5.90858656354247, 6.836282647304256, 8.029886033239258, 4.769285489393938, 4.085643118236332, 5.3799543256053965, 8.396422896718505, 5.651121940345203, 3.3965020244503115, 4.488716829465371, 8.685476286687814, 18.02420737623831, 4.7439058875746705, 4.317629531057453, 8.192161412199157, 4.263324786064531, 4.949295981477808, 4.244549199905214, 3.4331295811245464, 4.654131715034195, 6.88487935035846, 7.590644287786345, 6.3567291143737075, 8.193533237981997, 4.919037137410376, 4.592715734065193, 6.899807402920119, 6.222640745037287, 3.2824245585832417, 2.6336521598182214, 4.356346610061301, 5.456647972880106, 18.833514964166945, 2.757035908037126, 9.855498248722755, 3.8095409271571645, 10.938811639700093, 3.9982489945473425, 5.608572408073678, 15.02067289209583, 3.7637471296971965, 5.253773160701345, 4.67908797337093, 5.702393798483723, 4.36576132728234, 5.616161256964726, 4.846402861593178, 33.88330685979818, 8.02804883139122, 17.740647992316944, 4.344454881543151, 9.948507400837709, 10.93546303098698, 12.893043564054846, 4.390677009260528, 7.82240612033427, 3.4430985626280517, 11.066831068784905, 5.241480806594505, 7.6515799029155644, 8.207376900343496, 6.0359189682257455, 5.989294065228926, 5.265435787115834, 16.630691556278816, 3.2108509513297783, 6.115327883334297, 3.8900445267670016, 20.146703073224554, 13.289535794289343, 5.613912666194342, 4.904351336805561, 6.940933983725276, 7.377922006210218, 19.05931586594452, 4.606435005593459, 9.767593704326465, 14.821091111558797, 4.137704725169842, 7.214790707896992, 21.261092824290735, 4.125311135616368, 4.2734249020877275, 4.866406088502753, 5.26006244682358, 24.148545563831238, 6.446244245061676, 5.958345710325573, 5.016253857196133, 3.119643703969434, 11.89580847786905, 4.554196052071564, 3.4720881861872583, 9.560006506467793, 3.9379441419203904, 6.907871629354886, 5.0567942786003615, 8.483486020310268, 4.831252281020245, 3.875378410394877, 11.769055947603283, 6.354553744940638, 4.838910989288118, 17.5496031534373, 5.994388401743654, 3.472355030441222, 6.351187032683942, 5.369454079490605, 11.868449183044353, 7.832136817485156, 3.4254248054910654, 7.613634153101604, 18.849964089910614, 26.201565960321886, 6.25863024352835, 9.805596967242385, 7.58192646903941, 7.4704699665768795, 11.532172024948622, 4.267587278723473, 10.379244631678036, 5.310446445659429, 6.789628197755238, 13.661087573212022, 13.355214063619469, 5.460171068970346, 7.474152097033268, 10.632439402399163, 4.751425559905089, 5.573599815159975, 4.588477508178735, 4.954787036552212, 17.099140468691925, 4.857234050652183, 6.022188144718213, 4.213370397221638, 5.233134782240719, 12.224154730453366, 3.708863003743581, 18.57748680825134, 5.473604887298035, 3.9827518036113583, 6.204918622660923, 14.919116694148919, 102.05367348671625, 6.825680722593352, 5.390881068622671, 7.62104519893122, 57.53412363458358, 8.701282351043808, 14.171277348436512, 3.6403085640374666, 25.613157806465722, 3.780985214830239, 8.963280411782877, 8.005083491829893, 29.505700079203564, 8.512021685049302, 4.973477887615543, 6.4729138015043235, 6.060828590819323, 5.282039416385146, 7.840982794326656, 4.50887321133584, 16.057263935294095, 7.667785756450459, 14.064612379605279, 14.902602444464291, 5.376693585095885, 15.287070199622104, 9.247613123290629, 9.29315016032691, 4.408476695210489, 5.65546299733656, 5.820931845403107, 16.865842787431014, 18.06565902472134, 7.746742699527189, 4.552997902051323, 5.57732590212564, 9.235726067711107, 4.597612870754241, 7.5725698423740955, 5.591734090892379, 5.793448304859187, 15.27201455246912, 4.854337045873139, 19.502173747621505, 4.237021229557576, 31.035035951011697, 3.888384379782468, 5.330468750783977, 6.302177210048079, 11.579319846917898, 17.316735354546786, 97.7236661627846, 12.122504075765052, 7.400152487080239, 9.294712920038851, 58.22042094715605, 11.537978270860588, 6.440003981963902, 8.291681648500594, 8.778467631651948, 4.125408732095308, 10.068323351377893, 11.130583887367942, 4.851232971794322, 7.968985577588044, 5.245029325225454, 4.533606048623678, 7.3792056403953, 10.967367157297867, 8.229497925172138, 17.263487327635147, 2.8137626251629655, 4.73258070605688, 17.77215887818718, 7.333224112817215, 12.717329079989225, 10.688201994223615, 4.259880717722104, 8.365080846677785, 5.186442597217552, 4.730261913888361, 4.859887677130571, 5.114492330636918, 4.891838226149551, 5.778042639269554, 8.298916031369544, 21.959295507316142, 9.94340075741442, 5.856220112505582, 28.33886876242726, 4.390772102904992, 3.895897027200591, 16.364457618533848, 5.418554978578287, 26.942301289918582, 5.93232600980445, 6.853853155820662, 6.876204780824719, 5.8313973198597875, 6.1022908566014875, 17.24039441442388, 3.882493676393313, 13.14245364132226, 7.115615994980958, 7.138959579858204, 3.5113786468928287, 6.4674066312380125, 4.741126345646311, 4.736977984763538, 4.166621113394453, 13.42385800449998, 4.396239388165861, 3.9655013502367367, 4.588721833562313, 5.812971293267103, 6.254822507486526, 6.5024398918201785, 4.565409624786817, 4.098308366136023, 5.522148420294746, 5.227262741250819, 4.127652960847887, 3.142174194495657, 4.709687287671841, 4.025166807475409, 3.510912864172782, 5.766589701024391, 4.970157088235254, 3.316228036833793, 4.402237877985659, 4.280569306874725, 3.6304641455795195, 4.2654879134163135, 24.318432441833934, 4.591288233243504, 6.413133292207735, 4.584397166217185, 5.6740721244935495, 3.41376452528423, 3.6515477845036997, 5.636079415915172, 2.8806584736136474, 5.128853124515669, 5.068515973357416, 3.2859267294882746, 4.298781590234928, 4.13908993697116, 6.250822633691704, 3.8511784931355377, 11.029527340330826, 4.604584217829853, 2.405657913964714, 3.8652679126208147, 7.460449680058358, 3.2840128439198724, 4.105877231225552, 4.61213993922648, 2.90759122293461, 4.2554583182743215, 44.84339144567137, 5.506200616943247, 4.287970794641107, 4.684794096126822, 3.2422174880382806, 3.70995620283021, 5.396731612133346, 3.8956632821195276, 3.7867177939921293, 5.444673492616526, 10.489697737417188, 5.113670454369369, 4.0319037695584585, 7.309768116572641, 6.840444895212542, 3.3083322499024654, 4.405267737403501, 5.858645744098564, 3.7686103347482214, 4.484952241393195, 3.4973898105173085, 5.30609584087853, 14.329204360025495, 4.827580489897377, 4.77175766707501, 4.7963539996221956, 3.4526067582868896, 4.459816131490887, 4.646192277932853, 3.477548066016266, 15.678553782568835, 5.5008151126365545, 5.584668597457272, 5.2219403373190705, 4.815134665329988, 4.0921947572445685, 6.815024462541278, 12.232085427551658, 15.90729687788431, 5.148572028704057, 8.479912265099577, 3.5820329221408516, 6.927788995336828, 15.481987135158736, 8.37135644553301, 4.488881511786259, 4.614286213925998, 6.021751254248534, 12.663085296647795, 3.8880563063338944, 7.624689220380631, 3.5477426906033007, 3.8598978661796908, 15.967586093789878, 4.4640088031594205, 3.5376400554400815, 3.3610887260577162, 4.404287511577387, 3.768712081317265, 4.459268119825021, 3.699281574605993, 62.49823088023086, 4.888568257555104, 5.48240246756454, 3.750071666422767, 39.32923292992607, 8.276239140501744, 2.8301247220975854, 3.6559844642215418, 3.3763808382430014, 7.044081624589563, 7.1742036827339986, 5.480130860513483, 5.832544080704338, 5.469933464067111, 6.955259595387718, 6.621711125141992, 12.348445677974636, 11.375971844177485, 5.506978704677663, 5.682973873132405, 3.5173265791529054, 7.310730915301997, 5.012942838294337, 7.15487343330488, 7.607122734324938, 4.171576137696724, 8.572057688781044, 4.237175726159628, 34.29599407827331, 2.1943905774702035, 9.124358263856246, 3.5053297996976513, 6.689218814339734, 4.878347527661905, 4.4781130290572735, 5.902239561566548, 4.197297880194242, 4.318954385771064, 6.653152341715105, 5.4440673905331165, 15.436848150634605, 7.1933331589047915, 5.935911056448459, 2.71872354410436, 5.327739288386457, 3.8438748417239967, 10.62215856907254, 4.98132123976279, 4.460182388909975, 6.860601131611273, 4.853872347497453, 6.400893876324572, 4.8408659276927795, 9.386110464266483, 4.674058983527797, 4.815540636260423, 4.4218013402548895, 7.279686685317376, 5.048731471775273, 4.303141118348247, 5.788845807967062, 8.214906916851053, 3.643541165786069, 2.95404808460754, 11.540091095162081, 10.214625783914364, 5.122847091060183, 38.230228562383765, 32.546506933371894, 6.982416517721017, 4.437252274084765, 4.259775620799406, 53.22649592076762, 4.216676654571481, 3.862633967756919, 10.361116926699298, 4.528605863828611, 6.4384048025725695, 5.393288553146349, 2.8209255525827457, 8.987794624796493, 3.860501461888144, 5.9369545607184975, 5.22342458420442, 11.603491478272357, 3.7365588617196015, 4.066156546380156, 4.172660093221739, 15.649255457248758, 7.682379672200265, 13.025901955480004, 3.3818369476728143, 9.769270831798, 7.61379971669336, 8.140954046707847, 13.998900111887712, 7.341685469795024, 4.03075501474508, 9.333551674590435, 4.640489442845953, 4.644032463202681, 3.7213811183674164, 4.6431649362149034, 5.250796246357576, 4.549055891520474, 5.8364567924510835, 3.892422197480882, 6.050251309861904, 11.754626929341336, 4.423599594857783, 3.90145791233042, 5.404489275330774, 4.207393009710961, 5.402985440875136, 9.205143648067317, 2.721979110999525, 5.874898255656085, 4.405111093830713, 7.805800662279701, 4.501576221043738, 4.7369219683130614, 4.883838053567372, 4.897873991472897, 6.354126224679604, 3.883849869771697, 4.601955167138035, 11.452688961210407, 4.998362034017084, 4.205751390151167, 3.85172256159781, 7.0256396302182225, 3.8297866687179574, 3.951859634181461, 4.354093848346477, 3.4113905490688032, 3.6379483533893473, 6.146761490762079, 3.7985471443362964, 7.323022683530335, 4.1730595866396065, 3.580198546100938, 5.26987668097862, 4.016789814017285, 5.20297741524512, 5.842393628005731, 5.200044113693369, 4.239512745963366, 3.542584189832903, 4.7694654085602055, 5.053745429741391, 4.620780713981803, 4.980564562241774, 4.4566918285802055, 9.591669529914274, 2.841769997417686, 7.008816956333041, 3.6548828828829123, 3.849892419647106, 5.488099201341627, 2.916226958564236, 2.8337192967851568, 5.98904878835684, 5.306479504195258, 3.96465287251003, 41.81124000538494, 5.262835827235809, 5.2963589048090896, 6.349949730141675, 4.826735039874237, 10.169996564486505, 21.305180362781453, 5.028475219801622, 5.866270769524567, 3.1297213884794908, 10.898671259554321, 5.443555003044572, 9.917442177566903, 4.448923465734941, 3.7699154353650552, 6.022948112456969, 4.55682340254982, 3.7128337176653354, 4.6597725616091505, 5.507647642635927, 7.396519400294355, 9.956735649337979, 4.383625205846445, 6.590859606109844, 7.866471798276061, 6.124986913200773, 5.509584894126776, 4.989652959548868, 6.513819998001558, 4.739144880559427, 8.163177525631813, 8.414452228625313, 4.091240785798429, 6.031672986991259, 3.1070790045777086, 15.474033897599869, 7.517426271614827, 14.234779167676827, 13.380495770545348, 5.5089466271216105, 4.541528165340181, 3.3234602690527986, 3.537894095375288, 7.445221471432106, 7.490622910593649, 4.665934274128824, 6.5054638341037005, 4.887875353323235, 5.774989081669614, 5.084878209107116, 2.6941362284846786, 6.267890114702725, 3.570140518844968, 15.066071636801308, 6.082936984245938, 5.490055174654937, 11.611759010525251, 4.679552378621431, 12.152886603441333, 4.088536861116428, 2.9905486991730235, 4.218101373796461, 3.921099475197462, 4.590987895269859, 5.298755774985243, 3.8190966433425375, 9.480548226500513, 131.59373105111266, 4.245352731110115, 5.188666072088949, 4.123933174108046, 87.52241999125745, 5.294788354982236, 9.211251122615256, 7.639964711756565, 4.371026939380054, 3.9062788746204355, 5.403512534355155, 5.829883511550545, 8.214140967803983, 5.1237158790288655, 6.850599934112565, 8.553541224413632, 5.339672368401139, 5.280029812512434, 4.720740783847467, 7.151140679042664, 3.5692460026843498, 72.10244665571672, 3.7782284198992846, 3.257631155993482, 5.20661669555853, 63.19723868383078, 9.55101964362503, 5.453311247931178, 7.376279300332299, 12.611775500563068, 4.328418135141026, 5.7280664118106985, 4.160804318391321, 3.2392199776614072, 5.419788676376491, 3.8250096592277747, 4.2622752948110465, 6.378180507316691, 4.486356453990332, 4.233814523637621, 7.033420600491364, 2.313753384308622, 5.286334625748784, 4.309233460627237, 3.5927774109811215, 8.421414323858402, 3.796640078658833, 5.869167606916584, 4.827080685106284, 3.9175037644255464, 4.111949635808487, 12.291102047593842, 3.86222075366621, 8.966359491130717, 5.42124381985609, 6.482219031640723, 7.60757447934623, 3.8526101019451304, 11.694828100379016, 5.447362793063194, 5.902953740923306, 4.856357651296925, 15.278873928142444, 5.199413842615459, 6.774970323136335, 3.8792481062630073, 6.1564080896232936, 8.44025258731929, 5.512389590129986, 4.57842509773945, 7.0472841832704995, 5.171502157525633, 8.292887120064982, 4.743250450757501, 7.300397582957623, 5.813019144550904, 5.925828238666093, 8.5286667296458, 4.895156115124268, 16.27475993104781, 5.440867482955448, 8.383876794813395, 4.7452238192395, 10.108963331331296, 5.118371575553545, 9.980422461094216, 12.6267193624127, 6.225576075134423, 5.637487148904361, 9.177911272574779, 10.327267066317992, 10.97361387380749, 4.697808629118397, 3.624756771049135, 5.825214352307738, 10.44912137549208, 5.6449985094732416, 11.85509198747683, 6.062101085589202, 7.777732430715205, 4.6634431638743585, 7.7162106195635936, 3.3644313467359477, 5.626918515286708, 8.368033855836048, 5.731423795179883, 6.876067175977994, 9.465104709523374, 7.1239679147279045, 4.767575127224403, 10.34271086225646, 3.7614674290871646, 4.583223876754537, 3.3750184733220334, 3.980784546336138, 5.945256309706154, 12.705597389556923, 3.9340769649693756, 7.146489320455318, 9.405998662571252, 12.208811509697908, 10.456053276004631, 5.76596722971689, 3.9894609378898633, 9.211337876739483, 7.329606261534579, 5.3370120045552305, 4.699031002775291, 7.204321241606614, 3.9068940209294905, 16.396951107259717, 4.450219416636335, 4.698018691794827, 42.06990323802811, 6.405129324389397, 5.748794011038786, 5.09795740541239, 4.195335514871742, 4.663944745003203, 7.504891454736678, 4.208102465382809, 9.5250212197276, 4.484021987866008, 8.45016904640983, 4.518350639535859, 5.27038544873167, 40.534927347391815, 3.660963393506159, 3.9160221026353117, 8.264051903355158, 6.571357150608214, 3.5647621063662327, 5.07160900900285, 4.006141401060041, 3.302689927025634, 4.167588475731783, 10.093936860304323, 8.68559802547767, 14.427909125138068, 4.490132678233234, 9.798331920748351, 9.841737840342685, 7.2728739798349205, 5.791512500886614, 11.602919890828971, 5.766501495863139, 21.72156279780156, 4.559468287568835, 4.175500195474266, 23.31130511584226, 4.103828833109712, 17.720810080927578, 3.694139180245995, 10.913097215795016, 4.900265868465838, 5.222943418121083, 5.109640673651168, 4.327089923470661, 7.007841431656327, 12.774093490364404, 3.5679851669015097, 5.294336117342144, 5.696206011631795, 4.51273849460311, 7.068168294037622, 3.5406071977616427, 11.874148365073172, 4.1192029034541715, 4.792689799329113, 5.361411620351601, 7.472296761863833, 5.303666541691023, 4.113028296449898, 8.033873993377393, 6.359376343749499, 10.69554330418645, 9.081978536798267, 5.200082077420122, 5.202725389691531, 3.573670726143055, 6.760854933768728, 3.8400790597370573, 9.472461146669525, 7.988844589531036, 5.166338303582664, 8.973374399071105, 3.4146498627978255, 5.470810951401419, 22.2259802518781, 11.078359208010164, 8.308629488845312, 5.646939696612294, 5.043543373632838, 3.8843187203650276, 6.098757671389597, 4.858090119340502, 6.8467460109141935, 4.603781209200034, 96.00624170692434, 7.718097433938, 3.9729139921429426, 6.119316847241977, 65.05857773092718, 63.22244372294371, 7.647860540928002, 8.284220524544097, 8.659030191140667, 51.9528919217575, 3.192360076652562, 4.603383972347622, 6.465074074572228, 6.3447378079996275, 6.940269481685841, 8.726227197394257, 6.480407389359918, 11.71250112252665, 3.5417737840388086, 8.641220596099224, 6.422100057222647, 3.265607816751588, 6.759388361319697, 3.136587980283251, 4.909153542534759, 5.175421238791225, 4.658497283883559, 8.110828801341452, 5.329149419569796, 4.140472386688593, 7.590124886326516, 10.141227946663715, 4.889189805297605, 7.631710824249511, 5.099957739717213, 5.6539647388792575, 4.0678899914981645, 5.428926225773284, 3.7253035378066586, 3.430647957928786, 5.200372635860873, 5.007082043574847, 5.225682452880235, 4.551780702634472, 5.095768982840321, 6.00432054438245, 5.589366103007318, 7.077897768825921, 3.9593967263981744, 4.5395606891855, 3.734771811627123, 4.973523881185686, 5.491631246245759, 12.121074133226315, 7.31839042458422, 4.252450567587272, 11.892353646599343, 2.979253262486367, 8.75097678663233, 4.4015778308768265, 8.327419682565335, 7.09110614668492, 3.55123257251956, 5.204222443356319, 5.936216421288402, 23.305295544691695, 6.312714937616763, 4.0417543901707145, 4.912101488934159, 4.197571714180728, 9.143466555721565, 7.1822457601265, 8.033816593355816, 6.000071151457264, 4.579920314405342, 13.135490183391049, 13.172610529152115, 8.365478257295559, 6.081107395657352, 4.390743652250078, 5.214720021359267, 5.001278158894381, 4.886973030590809, 15.399745102879987, 4.882686357548205, 6.373142982944433, 5.030911788608857, 3.5072929286229484, 6.4957636292989775, 4.539598474931286, 7.283493414529499, 10.721045767391228, 7.913102454540966, 5.53278806663368, 5.301260543756994, 6.8568037139094296, 2.752039387265085, 7.01494094911633, 6.240928086125125, 8.332023405730627, 10.156703931942044, 6.0102601421798605, 5.055206188081637, 5.586269092037571, 5.048509724830527, 6.654258746270198, 3.419504268580273, 4.554322772960764, 7.223818418559933, 5.163158332658719, 6.880207924606838, 3.843815222526138, 5.861940600152432, 4.489159293608596, 3.5722329589962385, 3.5510325342954454, 9.67499643882283, 4.805583755762179, 7.105837743740491, 6.032968745114878, 5.4794538587285375, 5.864655663721316, 7.183662209975655, 6.119344458686845, 20.243645266066434, 6.359542436039817, 6.982163335525998, 3.9257152532884474, 6.170558869424338, 4.731107712181197, 5.1164414144698815, 23.319750041032982, 4.054748063938281, 3.4244213310567604, 5.10626416799627, 3.512311422102732, 6.966975448207064, 5.415640412352574, 4.559851792491192, 13.27231864253539, 7.179911559645389, 5.043302560564653, 20.388293540581568, 5.8706026562661835, 6.660786814068004, 5.942419339825402, 23.3858431066483, 4.585752296113456, 22.98528742070065, 3.8862896380695666, 5.158290564487303, 3.7280972572632334, 2.9458972712434006, 6.395531338202309, 13.60890399704756, 9.079554512406183, 4.858192041955569, 5.403257927532903, 5.287307525625407, 7.210899557313705, 7.2951151492055715, 5.483233029584732, 8.104306764523244, 7.273493648715359, 12.72823065686173, 3.3017387150835225, 4.164243826015761, 3.422720378286983, 11.01029334596668, 4.281087763024371, 8.071536288085529, 5.366323013023987, 3.8257384776828514, 4.834583785517996, 5.123204914861237, 9.030365157207303, 10.265271802172775, 4.082884916753802, 4.4054801434875275, 19.665331293190086, 4.818700942613985, 6.900810523315638, 5.577548457174949, 9.36090639975608, 9.405572927051521, 9.71338404054257, 4.815908323802247, 4.632858540773106, 6.537704509789054, 4.5163954935694255, 7.0285491451840185, 22.462025834836076, 3.8607145222184376, 8.313848093765081, 5.188704739427533, 4.047149619072533, 7.465848368956567, 13.704585680637935, 4.475183489702379, 5.069810005170972, 3.2909067122965405, 42.85868084097638, 3.8824992218445376, 4.565978598535458, 15.208764944017938, 3.79756654967484, 12.187769629203286, 4.896186384304875, 14.65586906220956, 88.99087527207094, 6.206036432998477, 2.98853288230209, 3.8972076840944436, 77.8985664613164, 5.340575965369772, 7.672666545681466, 6.451731364271385, 8.43414976857891, 3.5888417051986052, 6.970916605998342, 89.25170306654127, 5.24131570952794, 4.545980295476669, 4.443652487198706, 70.76748043623041, 6.658750271077607, 3.4257554306588807, 11.820224075988195, 3.5561688354778322, 5.110309901261683, 4.225028731458688, 19.099156319096625, 4.556853514691344, 6.9432079680615875, 5.069820843544164, 7.307037198780643, 5.28551581654005, 8.925045874871731, 15.55229802577759, 3.6856525306998535, 3.368913484237385, 8.617568762254898, 6.50938632553973, 3.120556336673061, 3.432731763672828, 21.05755827815139, 4.880811242988837, 5.620387618576774, 5.63922538956532, 5.038649255061763, 5.090506831711359, 5.433485412583556, 13.978845144665302, 3.5760948080392563, 6.094275097436794, 7.092143363211757, 4.308243660021323, 4.171962630827852, 7.311495568836342, 5.746516805510507, 10.912361364201809, 5.599755340439134, 6.2645732875256845, 5.056471161903876, 7.07230591633663, 4.078568781918347, 12.412162591298666, 11.445338299186057, 7.802842811473111, 4.858485734996276, 4.097023828853436, 4.629436405631504, 6.43849632214457, 4.363767614896927, 6.5547404200047525, 6.848230615680141, 2.70190045419373, 3.997951194069021, 4.848295458471198, 4.206879915684403, 6.521018309851089, 4.978842383826835, 3.80561570043989, 3.693937650187517, 4.17815513832992, 3.633893128764766, 5.256620073926068, 4.9282942741045, 10.797305493052091, 6.429627979128444, 3.798673097526656, 3.53742492050943, 5.157536641787977, 4.125707347246439, 9.076511050165513, 4.169785740658422, 6.239205287662089, 15.009723964653826, 6.6812092448391684, 17.944895987364642, 5.4235269423884365, 7.466008928052885, 5.623557099464735, 4.857587463768638, 4.257230903648065, 14.829669778972338, 3.286547563180595, 4.220859308803869, 6.40358281501158, 4.96307604175722, 4.490492324983599, 5.381763681097021, 14.784463795534597, 9.284703668771314, 10.238913535168276, 6.6848791526073725, 4.4043587802485575, 5.91852011370633, 3.120631283153217, 8.381667603674753, 7.7080553923825805, 6.3107616064218615, 5.057347560803695, 10.932972718798885, 3.992552607117055, 6.2203172520038335, 6.279019162573704, 8.912448640460768, 3.365269822043902, 5.089793896851523, 7.27940144827608, 3.7562736508561154, 28.000564316259474, 24.52189887800224, 6.088332881292748, 7.78954387241658, 6.372164079908193, 4.440632287446253, 9.039782678122315, 7.579755818900054, 4.419159961740572, 11.651867198172768, 5.132862793909565, 9.439037607480072, 6.1837292208077725, 8.279572153038652, 5.325471771460893, 3.723649903762889, 10.041131858386063, 8.485986338894485, 5.298864257216539, 4.778591982037458, 17.43265652811241, 4.049951462630827, 4.678332043943729, 14.311494219701926, 7.792042488787917, 3.7565142311932656, 2.6398113269440833, 5.008698303725858, 5.9308447983139, 4.957516005177335, 9.270650193983732, 14.18811945988825, 8.40353407222558, 7.668418898456487, 9.390597098894826, 3.842920773310571, 5.679796357076892, 19.49159840996966, 4.4324575422770405, 6.976183745476914, 3.9817966277715215, 5.08085910708289, 6.15885056999312, 3.58905711957294, 6.716360912647122, 5.072748546974682, 8.45323338000317, 16.10135518332838, 10.19643250727491, 4.870705129764351, 9.798415861185312, 4.88827792050047, 5.957337160429, 7.550357620952303, 20.92654345219328, 5.548154714200907, 3.1369581942091216, 4.015521766744323, 5.75547266282326, 8.350018029465648, 5.339205651370688, 17.997690573281986, 101.74103030303031, 4.1976015196051275, 7.309726114311267, 6.100844111143235, 41.687435406549625, 7.017490426412561, 4.07549262287961, 9.076406115217326, 5.044534072227583, 13.824923702548714, 8.295126485619546, 6.229638327932235, 10.84677862878515, 4.525871022223804, 8.074281943258926, 4.168498885787336, 5.992895478504521, 3.6433173320627446, 9.609745094347339, 4.600174686513494, 3.5138932091427804, 4.563893693526982, 3.796421191451038, 5.112549383782337, 16.468040730621045, 12.6942502425257, 110.52506652240035, 5.556189446830952, 5.192824422138159, 4.947116773912166, 44.6218759237103, 5.576326293477241, 6.377682842629314, 4.117157560588073, 19.893232066908944, 4.152309265080854, 6.580658362822054, 8.277401603049498, 4.6144632242065216, 5.28564346842367, 5.24698434586251, 4.463097816419789, 4.04297914723992, 4.9293079123009775, 3.8221164850440643, 10.145082821639633, 4.9677077813494614, 4.831740391670801, 7.944837185440968, 11.691100917332568, 6.835843530127028, 8.6767802559385, 4.119527314378831, 10.970125639848149, 3.5785986925202398, 5.919534525269331, 4.997246038027469, 12.140029212390004, 13.098407467194935, 7.178100405283027, 4.511602396615941, 3.972681069243441, 5.454397890610897, 5.234220886752167, 4.844225021442568, 10.22630209361536, 13.667978067777485, 3.7215825613442792, 9.384574302635365, 7.155418877697582, 5.689618647295254, 2.999992927959471, 6.213141719328204, 6.3484486897646955, 10.604959252472096, 4.925915118342775, 5.140211568088658, 3.8056505795363966, 7.49768792504455, 4.898939730092987, 8.94547391611354, 4.7096210889185794, 8.102599913411463, 3.687669959805206, 2.6556883811120646, 5.767741714240629, 5.002847596518113, 5.645947277064139, 14.416605908723346, 5.759299924145805, 8.300718831392524, 8.53781846373953, 4.074919947707334, 2.8273961399962686, 4.091206864365489, 11.36277172877854, 4.69069806063981, 5.503011297192813, 4.169436937792529, 3.227335979709522, 10.927397428988128, 4.651809062350412, 6.211176037265824, 8.202651425644643, 4.55140013939773, 9.276112935862553, 5.5793640821497394, 4.831738821825663, 14.335556364312636, 4.712004413959613, 4.131850094024241, 8.949034427005735, 15.09767539248144, 4.164010107842091, 3.0351288980277173, 3.7635277145792667, 3.9334441347729334, 8.1229969913426, 4.174933364580936, 5.469444242529065, 4.655265407435733, 5.115089494246537, 4.007535387839185, 11.038425542901994, 5.052376649140364, 6.011985646886391, 4.230650474998805, 4.713020261479946, 14.135825727913803, 4.524033167224263, 6.140640957898205, 3.367054764394021, 4.287068656591268, 33.50391164706565, 5.343432514636487, 3.2072694974904623, 9.46351477530971, 25.732486606692383, 6.6559933754946625, 5.326949710270922, 7.700448098163023, 9.623377196222025, 5.290016867006781, 10.318246630593064, 11.461276614000688, 4.899730136709521, 17.243929889510806, 5.7655490003853025, 7.7093964293703285, 6.71122268352426, 2.5904513597126537, 13.880125472166585, 11.93779872188574, 3.400180280000814, 16.709364926945955, 11.670224942230467, 4.184842382679839, 4.578218045197121, 4.582884649021197, 3.565759073710494, 14.524317514839522, 5.503138145637034, 6.238196683461711, 17.37220878781065, 20.434154485381526, 4.566787029804762, 13.975145735053681, 17.913545608559325, 6.3088131710986035, 12.210554128084466, 30.40746068494728, 4.827447692311119, 3.633284278162139, 4.1032110844421315, 3.31797008148174, 6.297678215654514, 3.2712620464394053, 3.709872068504734, 13.873046561745232, 7.323835385770356, 10.267732963177622, 5.524188548523757, 5.252260678752115, 4.010954034334723, 17.849252202690668, 2.717428598022562, 4.845309784015924, 3.588150991968713, 4.062358245225303, 6.5451953011362916, 4.594650998117036, 7.357212954984582, 3.1389851765506864, 8.155599887712313, 7.5305434677793395, 3.562559704028589, 3.8256866984521336, 4.161672991140334, 4.358439659411398, 8.175806749715456, 8.44925733109829, 2.5451409691372886, 124.2448057791355, 6.845275731725891, 10.342140409947344, 10.15561884780337, 46.86358071867744, 8.109758283078275, 4.728823941209188, 6.5954769007178395, 5.545256914810451, 9.85326934406742, 3.2157393937969823, 15.900778423566141, 3.1982417792285345, 4.289854078347183, 5.86527659162743, 11.544927404551617, 16.232418734444074, 3.057898031868858, 4.471957014796953, 5.206936491738273, 5.726270752686892, 5.8858024662886645, 8.990660740619703, 5.500586508383595, 5.264817521065193, 7.22545243886128, 4.265435581878583, 5.024075399314687, 4.382873514107971, 8.054286033925383, 8.365286052084514, 5.386371349005402, 4.84627035084442, 6.86109107089569, 3.9800194154174964, 120.42264703918288, 4.6910315210670435, 3.2779600617017404, 14.77103677143258, 76.04951159951159, 5.59717835438087, 7.208146610489702, 4.115273771682239, 4.921884396557897, 5.944808606025899, 4.195200296705362, 3.670358767437835, 5.145863145184387, 4.920670527026277, 6.279200579818427, 3.1012904123187117, 11.506139651028507, 3.1104296686970043, 6.245975221716039, 3.2316056706776695, 5.10035819455401, 7.53061693883638, 4.036234470283838, 14.563349377517, 5.267779411195879, 7.455462003840974, 4.430637090879873, 7.198560549183444, 5.248775198236952, 3.96895648524596, 3.6584862914483423, 5.650463593927018, 5.859260864850698, 9.108980264210008, 5.18051072642452, 17.305737697529732, 4.799317794891999, 3.1582815182487654, 2.7953608548807933, 7.240296823391461, 2.538957497910281, 6.651304218238559, 3.8882431343575825, 3.4505486491072968, 9.380542240066298, 3.369689205012699, 8.14420812869237, 3.8052677352809234, 3.0425601236589497, 5.702359888527926, 3.745680507246183, 7.0939399596565815, 4.84335022560825, 9.121713443449174, 6.793573370647204, 4.345075986194123, 4.524873022018129, 4.0978728158818996, 5.4709592216601335, 8.338998142586695, 5.264880013842203, 7.77800374494665, 4.711759300454508, 5.068280326085494, 5.293671002599666, 4.374937369959342, 4.283035196306944, 3.8280191538738966, 6.533628143028695, 4.324673648552489, 4.235564836752248, 3.5131775799173313, 9.465234097938572, 3.9624449844199057, 4.6570092578875855, 6.959980708774088, 5.199644453454408, 19.803562894236325, 4.375925742805079, 4.536184098255125, 4.586034209720847, 4.888118385738485, 5.23974726073579, 4.30720644872254, 7.320601213526189, 4.368802208014962, 7.7519187909365606, 4.762790099172769, 3.8753593657313172, 5.891853897183487, 4.722583725953089, 3.5466093412511914, 7.408643241285464, 6.82693110152808, 7.093303126162585, 4.680594262712849, 6.996386627101509, 7.327804297679037, 6.3415822151148316, 14.193108432314082, 4.030173909364596, 3.692230363050654, 7.8293511292817195, 5.784738608944195, 7.5889063293245655, 5.096278295534232, 3.746101786049061, 2.9919821734121177, 3.142188622251834, 7.358230595368869, 3.240346718412382, 9.11863385135738, 8.389137504029517, 3.4402517213808435, 4.702650682895258, 5.220843459233053, 4.517220453364481, 5.963155954281133, 28.550421333647698, 4.93714057863691, 4.670914274794189, 5.168806153082114, 7.16870761324864, 4.696063945402791, 6.584637115393755, 7.00269918912026, 5.130960764181455, 4.977492376617347, 3.251515420370515, 4.431062428217242, 7.682700802723183, 4.903494185488425, 3.528851521220606, 9.217290458047831, 4.18534470381575, 5.972318373472608, 5.2591364515332515, 3.8178467839019588, 7.679290012410782, 4.359930866965013, 6.209749921398044, 4.466098667334301, 4.35074835214217, 2.7613444616833083, 16.72524458456286, 4.402241542753284, 6.939970546380042, 8.297240870435441, 5.113116523281707, 4.740540751528764, 5.055747741686464, 4.022745917816791, 13.137256514943573, 3.6483731117599323, 3.4867979453521665, 10.222849232826183, 5.44526926404446, 7.77423201905466, 5.547698119559078, 4.52162109234846, 5.907769337511224, 5.722592273811731, 6.28274803071215, 20.23952127790497, 4.8575536643632775, 10.331131260798982, 5.279849215915478, 16.00043084572449, 6.899476437081788, 11.589425614503213, 4.242925522194997, 7.40819338515186, 3.5890713444554123, 4.9573216588424005, 3.7955871849022333, 6.141974232660044, 9.482789969172872, 5.143808107975955, 5.410408748598575, 11.67620107953851, 6.41779523791449, 3.4759992594037974, 4.635741323861855, 3.374276497853453, 3.076952914917783, 14.243249453802962, 8.550107804092484, 3.1644690646107003, 25.206608112607398, 8.514678531337816, 81.88144648208934, 4.03838253706934, 19.475949996762978, 8.69298425905638, 77.56302804140309, 16.99154529318515, 10.175701490182261, 12.235323949128562, 8.701438394142096, 7.053474190324598, 7.028903240835134, 98.16008881118881, 8.653968498412384, 6.140220718979678, 9.392051484642222, 78.7086210250804, 4.219458400907928, 8.090563413398275, 6.539354312376947, 6.993096866252306, 9.44147941190532, 9.376022306012919, 4.082741040407863, 4.496323206213832, 8.735737060263741, 4.855110825391274, 11.811151523313283, 10.798512248497625, 5.995242823780354, 9.667205604741838, 4.929436918620809, 8.012349600660778, 8.380470202977959, 4.895274133462526, 8.43796258605483, 4.6980071313934495, 5.605537416329118, 7.111768909317338, 4.837426710667193, 13.723565095581806, 4.237476278478476, 6.232069502267665, 6.95843319647167, 7.572192876082414, 3.8535901506152963, 8.945383848896428, 10.245353052702225, 5.773679264449326, 8.851156486611767, 5.18358587317758, 4.078695453583622, 5.926389033694539, 7.775306778288269, 14.701262168140024, 31.5559349203141, 6.3370981943614995, 6.084286502398295, 6.893686192349407, 5.85039978071514, 4.656068571549489, 3.9907279163162577, 5.803049172498916, 10.213612403392116, 8.802149038368533, 5.647589627061451, 5.682574509081085, 4.505895602651871, 4.7771723610001136, 4.954884489633116, 5.836035482551557, 8.48432459799846, 8.559520785689646, 5.080092088075714, 4.5143400922111, 3.2356411377139414, 4.35688397520755, 6.253646493330805, 3.2347681213577486, 4.1754490246288665, 4.246795169513299, 4.733331017365892, 5.399544811523383, 5.564378633087008, 3.451288489085621, 10.636772497444479, 14.134963848272129, 5.005722705038961, 4.15806604719205, 4.492440743943638, 5.057863665878178, 4.393856821746158, 5.811550332979167, 4.515961379221338, 2.7044037280266755, 3.586674866045954, 4.287671374082517, 4.519391614296786, 8.004253910390199, 4.383391110861225, 4.701812993778778, 25.22901575499826, 7.755497824386054, 4.959664943655632, 9.023873726302574, 4.227017026859467, 4.948121041718659, 5.353329291249265, 45.090020826509196, 3.566175953104494, 4.168202371194286, 3.0692349633064686, 7.960869020094999, 4.934509720541848, 6.410213167243775, 4.618053499871165, 9.478127760723714, 5.582944487523082, 5.704867829297357, 6.436000431445338, 6.841917236307939, 5.098072070748721, 6.3370368707862275, 4.553119367302885, 3.568697390609944, 28.031856254136947, 7.376789245554716, 5.038374893830336, 4.699700891705708, 16.019589659760044, 4.859629634401877, 4.41675014903738, 8.615531047423676, 33.254254357222635, 4.498705690337913, 4.209408988413425, 5.021513877849141, 6.154495252187022, 10.815950733178827, 4.898975986689111, 4.333347371161432, 3.3367879496291195, 11.119366957403923, 5.693470390689326, 10.093331611511582, 6.523024329671994, 5.313127910334534, 11.544399088207319, 4.640768235343204, 4.5906811013686735, 5.876647878104949, 10.032781710217716, 8.088181877012058, 5.007062806082465, 4.990841982428381, 10.381334674380781, 4.754486767388873, 5.145434397668821, 4.794402961816045, 4.5416664656796035, 5.497493323034263, 4.4240593880308, 10.072639246648427, 4.906330108661817, 3.9836192514115245, 5.573675306878233, 4.528693703895169, 7.15291368889014, 33.498251879291544, 6.056764760041608, 3.9349567796730116, 8.344128789379441, 4.233632936608567, 4.582922179948601, 4.363669173458646, 5.126811748713679, 8.053325017469811, 5.859751112097018, 3.6037688539479253, 5.018232307906261, 4.36824743891563, 4.074755624405861, 4.918462130933962, 6.8921597392245655, 5.631109247577801, 10.6405356300439, 5.74792698232398, 3.8744329683339616, 4.2451243679476285, 3.2206254165411092, 5.43161280107861, 8.272784850294613, 11.262044192385067, 13.34790269536158, 21.03973311226588, 6.637256912837035, 76.21368415356572, 4.170519658185719, 5.444735857901127, 3.511291366583334, 27.44086109313028, 17.2284553864111, 6.238288480830508, 93.42825235875235, 14.205268146312594, 9.370470424869858, 7.653869205092988, 84.90812245952397, 18.335954489820647, 3.9874612834410734, 24.94872355388109, 5.095030325030941, 6.2853069584719234, 2.8534773175150914, 4.067674711093241, 7.236127532729077, 12.702672836470757, 4.6294997878213815, 6.400526259198397, 7.002304109704079, 3.0079846147731684, 5.696283408470379, 9.285548003755759, 16.307335573979923, 4.79250981128249, 5.183219557314282, 4.271489314808509, 3.9649293523118487, 5.228027125352108, 7.931367896307529, 3.760562952298764, 4.9239291742590385, 21.847992503034092, 5.687764155336558, 6.7854367574116115, 4.053687054325117, 7.990017579965818, 13.541966545771945, 5.950335295074856, 4.898379498353713, 9.968785831023773, 7.319323979110153, 8.291096485429346, 6.019688618312564, 4.619755723667158, 6.037966108078858, 3.9786416038839345, 8.437999418080933, 5.066295655281356, 6.438209005367972, 3.614588178036152, 4.974102026431111, 7.513271924658028, 6.380559616320375, 6.214457905935818, 3.2273805194580456, 7.663188007219167, 7.38182560730083, 4.3737251770211305, 3.2269914229057757, 9.331663455275287, 4.815515498812364, 9.981319539439731, 3.003137153642821, 3.612970945213923, 2.9715983174974947, 4.978909250156718, 3.7546670177483916, 23.829626776856447, 4.80472166109154, 9.427197564202189, 6.893852204128162, 6.280011759944602, 3.672835019092789, 3.920436811705465, 4.904409218746314, 3.8965303558259428, 5.30437154108258, 4.519105958933951, 5.279126737501654, 10.447126806795405, 8.001379886800319, 5.479163464529284, 3.558483633961946, 20.173462483825126, 160.86820411935744, 141.5939125457876, 93.51120535836706, 68.51066008419684, 56.261066969213424, 25.035994011964995, 7.47022731347819, 89.10613414608267, 81.13326291417468, 3.959350977193689, 84.96572565811383, 77.96401073001466, 51.48801459792998] disp = hash_d64_k16 # [0.0, 1.0000000000000007, 1.360000000000001, 1.7000000000000013, 1.6400000000000006, 1.8700000000000012, 2.4199999999999977, 2.15, 2.486666666666667, 2.1799999999999993, 2.423166666666666, 2.6085, 2.9619999999999993, 2.9808333333333303, 2.704166666666664, 3.4734999999999965, 2.942488095238097, 2.7040476190476173, 2.960230158730158, 2.867682539682539, 3.5075952380952358, 3.536325396825396, 3.227134920634918, 2.8935714285714282, 3.9966717171717137, 3.974535714285713, 3.6998145743145736, 3.1830714285714294, 4.196338383838381, 3.0742698412698384, 3.181853174603175, 2.6707907647907643, 3.6087023809523773, 3.528883116883117, 3.844977272727271, 3.032621212121211, 3.6225079365079362, 3.7019126984126975, 3.798941558441557, 3.1667669552669557, 3.3222420634920624, 3.867099206349203, 3.1760021645021643, 3.665690476190474, 4.04963095238095, 3.441810606060604, 4.286608225108224, 3.5220952380952384, 3.705000000000002, 3.5187380952380947, 4.21305266955267, 3.8597045454545467, 3.869464285714284, 3.0523185425685404, 3.4762738095238084, 3.219630952380954, 3.0513095238095227, 3.3271111111111114, 4.277714285714283, 3.7261547619047604, 3.307714285714285, 3.5916626984126974, 3.0944523809523803, 3.606596320346318, 3.1530735930735925, 5.986513347763345, 6.5998207070707045, 5.091261904761903, 5.457230158730157, 5.912499999999998, 6.369274891774889, 6.283380952380951, 6.876734126984126, 6.949249999999999, 6.376948773448771, 7.223809523809525, 7.397726190476193, 7.176527777777775, 6.726389610389605, 5.736404761904762, 8.00035714285714, 6.378502164502163, 7.530452380952381, 6.380392857142856, 6.744742063492063, 6.6557348484848475, 6.1491944444444435, 5.680607142857143, 6.091142857142855, 5.827896825396826, 5.227822871572873, 4.988358225108222, 5.250218253968254, 5.125305555555553, 5.158547619047617, 4.879817460317457, 4.78717893217893, 4.469079365079366, 3.7591518759018725, 4.451143939393939, 4.250469696969698, 3.7470883838383804, 4.010727272727272, 3.8451915584415577, 3.912262987012987, 4.224940476190476, 4.04038095238095, 3.836682539682537, 3.529089105339106, 4.097136002886002, 4.568158008658007, 3.7307023809523794, 3.9340476190476195, 3.5814065656565646, 3.6198106060606055, 2.6754761904761897, 3.7478174603174614, 4.020809523809524, 3.0517103174603157, 3.842694444444445, 3.683091269841267, 3.7726031746031707, 3.6825418470418465, 2.820634920634919, 3.6009974747474742, 4.554015873015872, 4.502298701298699, 3.71865873015873, 5.505243145743146, 5.951714285714283, 5.293380952380952, 5.110178571428569, 4.82525, 4.686507936507936, 4.5743178210678215, 3.793743506493505, 4.265499999999996, 4.433571428571428, 4.46933333333333, 4.1294444444444425, 5.0239999999999965, 4.7133452380952345, 3.949269841269839, 4.893821428571427, 5.464928571428569, 4.704154761904763, 5.335976190476188, 4.570242063492062, 4.140576479076478, 5.000273809523809, 5.330297619047618, 4.0908888888888875, 3.066420634920633, 3.440658730158729, 2.5824444444444437, 3.5883888888888866, 3.4353968253968237, 3.7163582251082232, 3.557063492063489, 2.7567380952380933, 3.3260992063492063, 3.2859166666666666, 3.7865952380952366, 3.2024404761904743, 4.076005050505048, 3.5761666666666616, 3.8921313131313098, 3.7656756854256836, 2.8560515873015873, 2.601119047619046, 2.257888888888889, 2.989806277056277, 2.3116944444444436, 2.3076944444444445, 3.27922619047619, 2.3256677489177493, 3.0857896825396818, 2.3875317460317462, 2.725953102453101, 2.2987619047619035, 2.693595238095237, 3.6470833333333315, 2.4820645743145726, 2.5971428571428556, 2.7430328282828285, 3.5192110389610383, 2.5670941558441553, 2.7539087301587295, 2.71295238095238, 2.8518787878787872, 2.2623373015873014, 3.166374819624819, 3.5161598124098106, 4.0691082251082245, 2.920901875901873, 3.610285714285711, 4.412762987012989, 3.5274285714285702, 3.473873015873015, 4.118016955266954, 3.2327341269841257, 3.7380952380952355, 3.553283910533908, 4.456591269841267, 4.2890238095238065, 4.3757777777777775, 5.079080447330447, 4.779492063492062, 4.204480158730157, 4.910277777777777, 4.185039682539682, 4.2081035353535325, 4.3382301587301555, 3.7155883838383827, 4.207353174603174, 4.691072510822509, 3.9722907647907633, 7.314882034632039, 3.2484880952380926, 3.8516749639249626, 3.9466944444444407, 3.766219336219335, 3.572543650793649, 3.3162261904761907, 3.218071428571427, 3.7238077200577187, 6.648373015873019, 3.0051443001442992, 2.685729437229438, 3.2808989898989886, 2.8566468253968247, 5.19886219336219, 3.3223383838383835, 3.9396746031746064, 2.8441269841269836, 2.9918809523809506, 3.137577561327559, 2.7269606782106752, 2.976629870129868, 2.7357503607503597, 3.074940476190475, 3.799739177489176, 3.6143777056277044, 2.9208531746031743, 3.930988455988454, 3.2166746031746025, 3.340813492063492, 3.272535714285714, 4.058694444444444, 3.224797619047617, 3.758142857142855, 3.8115090187590184, 3.717182539682539, 3.8527579365079347, 4.106957792207792, 3.381087301587299, 3.727686507936506, 3.6770039682539686, 4.177372294372292, 3.631540764790764, 3.360576479076478, 4.51423520923521, 3.867107142857142, 3.501142857142856, 3.458952380952381, 5.11025, 6.516226190476187, 6.9872341269841245, 6.3750883838383805, 7.086913780663781, 6.866785714285713, 6.706273809523809, 6.7226746031746005, 4.826115079365081, 6.494800865800867, 6.5750645743145695, 6.340727272727273, 6.151361111111113, 7.023714285714284, 6.741305555555556, 6.291623015873013, 7.21586219336219, 6.576290404040401, 6.34287012987013, 4.337206349206344, 5.687853896103892, 5.951238095238091, 5.81078571428571, 4.998056277056275, 3.604453102453101, 3.4054960317460297, 3.470130952380951, 3.409970418470417, 2.388698412698412, 2.5139484126984124, 2.3861955266955266, 2.9661273448773424, 2.5853293650793643, 2.549489177489177, 3.736480158730158, 2.640608225108223, 2.6924094516594503, 3.1933373015873006, 3.0665634920634908, 3.152012987012986, 2.8928694083694073, 2.785055555555555, 3.329211399711398, 3.4866428571428583, 2.7145952380952374, 3.4621486291486288, 23.199999999999964, 19.659999999999986, 17.211666666666673, 14.23750000000002, 12.940833333333348, 11.494666666666673, 11.373595238095236, 10.38677380952381, 10.270976190476192, 9.584690476190486, 7.977539682539686, 6.869874098124101, 7.947559523809523, 7.776722222222223, 7.207682539682542, 7.344219336219337, 8.37522619047619, 6.941285714285712, 7.69720238095238, 6.9115288600288585, 6.507138888888888, 6.449580447330451, 5.904762626262625, 6.983191558441557, 5.995405844155844, 5.192150793650792, 4.922040764790764, 4.66249603174603, 4.048528860028862, 3.6871269841269836, 3.559370129870128, 3.320497835497833, 3.9885039682539656, 3.153539682539682, 3.5766590909090916, 3.744011904761903, 3.104765873015872, 3.2188939393939386, 3.6144523809523794, 3.3959693362193346, 3.846355339105337, 2.9117738095238104, 3.29111147186147, 3.4798701298701276, 3.8607063492063474, 3.635019841269843, 3.444560606060607, 3.007044733044733, 3.6808611111111103, 3.532489177489176, 3.6248870851370847, 3.3227182539682527, 3.7852619047619056, 3.211473304473304, 3.575032828282826, 4.064436507936508, 3.097167748917748, 3.5235021645021627, 3.4868611111111107, 3.101559523809522, 3.191259018759016, 3.514107142857143, 3.693313852813853, 4.291941558441554, 3.9912828282828263, 3.475369769119766, 3.4170169552669547, 3.298259379509377, 3.662393578643576, 3.060150793650792, 3.1040634920634926, 3.2762236652236636, 3.6066598124098106, 3.535640692640692, 3.5611547619047617, 3.3296468253968245, 3.064321428571428, 3.5417153679653683, 3.913023809523809, 3.518345959595957, 3.5522478354978366, 3.719297619047616, 3.8371056998556994, 3.462465728715727, 3.867449494949494, 3.280691558441558, 3.152116161616161, 3.8282680375180367, 3.6944772727272714, 3.2000169552669546, 3.4813214285714276, 3.654089105339105, 2.961603535353536, 4.2022619047619045, 3.0474256854256843, 3.5130883838383835, 3.794825757575756, 3.481970057720057, 3.644305555555555, 4.212758297258296, 3.224990259740259, 3.7449664502164484, 3.863813492063491, 3.9646720779220774, 3.196512987012988, 3.6394217171717163, 3.9206295093795096, 3.2968474025974026, 4.3809307359307335, 4.116432539682539, 3.551777777777777, 3.4930515873015877, 3.835239177489177, 3.6180952380952367, 3.402266955266955, 3.818384920634919, 3.6997857142857136, 3.707349206349207, 3.7417074314574315, 3.5444812409812383, 3.571386002886002, 3.0427748917748896, 3.069477272727273, 3.805489177489176, 2.951826118326118, 3.41806818181818, 2.798519841269841, 3.611277777777775, 2.6670259740259747, 3.812376984126983, 3.6121868686868677, 3.2223293650793634, 3.176115800865799, 3.5816031746031722, 4.012737373737371, 2.9661955266955258, 3.4507777777777755, 3.2202817460317443, 2.8475093795093787, 4.270023809523809, 3.961164862914862, 3.8043023088023085, 3.9565205627705637, 3.9853095238095246, 3.6368968253968252, 3.8970487012987, 3.1586865079365083, 3.3744148629148634, 2.762620129870129, 3.175517676767675, 2.7349978354978357, 2.4923513708513707, 3.0595555555555527, 2.4771428571428564, 2.5046608946608946, 2.461858225108225, 2.4306608946608934, 2.7307651515151514, 2.109129148629149, 2.3105165945165944, 2.2862918470418476, 2.5984018759018754, 2.107161616161616, 1.8530894660894663, 1.975536796536797, 1.9061251803751813, 2.226801587301587, 2.0987738095238098, 2.641792929292927, 2.8324999999999987, 2.9268939393939353, 3.265333333333332, 3.0123333333333324, 3.637333333333331, 4.083666666666666, 3.9111904761904737, 4.661071428571423, 4.385285714285712, 4.5409285714285685, 5.135190476190469, 5.572428571428567, 5.36272619047619, 4.846555555555555, 6.678893939393937, 5.204285714285711, 4.980249999999999, 6.226777777777776, 5.6773333333333325, 3.988337301587299, 4.508727272727272, 3.8697738095238123, 4.09839393939394, 3.4583419913419897, 2.984480158730159, 4.183464285714286, 3.138694444444445, 3.424051587301583, 3.07345238095238, 3.097047619047617, 3.1575573593073587, 2.7456984126984123, 4.251960317460318, 3.35369841269841, 3.613037518037516, 3.997523809523807, 3.203580086580086, 3.666059523809524, 3.4129209956709947, 3.3911944444444413, 3.8308582251082224, 4.024944444444443, 4.381346320346316, 3.746540764790763, 2.7769523809523804, 3.647960317460317, 3.7595800865800846, 3.2806944444444435, 2.8524065656565663, 2.7450764790764794, 2.78475, 3.2537074314574297, 3.0579642857142844, 2.9625043290043283, 2.9275678210678193, 3.2041121933621906, 3.866714285714286, 2.640707431457431, 3.1397499999999985, 2.654813492063492, 2.956862193362193, 2.6677976190476183, 2.7869047619047596, 3.017147186147185, 4.681912698412698, 4.489226190476189, 4.504992063492064, 5.460909812409811, 5.073837301587301, 4.785499999999997, 3.944690476190475, 5.093785714285713, 6.359964285714282, 7.9034898989899, 5.961126984126982, 6.174583333333331, 6.790297619047617, 5.777305555555555, 5.643416666666663, 6.639499999999999, 5.261687229437227, 6.718650793650796, 6.271940476190475, 5.215988095238093, 6.921675324675321, 5.6264772727272705, 5.414187590187589, 5.675233766233762, 4.437190476190473, 5.159682539682536, 4.729499999999998, 4.918603174603173, 4.7164404761904715, 4.48835714285714, 3.752702380952381, 4.7253253968253945, 4.285551587301585, 3.1388055555555545, 3.0122777777777756, 3.0586904761904723, 2.873143217893217, 3.2611403318903305, 2.6179891774891764, 3.145676406926404, 2.4879610389610387, 3.187108225108224, 2.7704087301587292, 3.1288214285714284, 2.9606904761904733, 3.008936868686868, 3.13239393939394, 2.7298257575757563, 3.196230880230879, 3.0233787878787877, 2.756065656565656, 3.662559523809523, 3.130099567099567, 3.2636201298701284, 3.1707499999999995, 3.042712842712841, 4.082931457431456, 3.4346904761904744, 3.2323784271284275, 2.7857341269841256, 3.2392976190476164, 3.2174581529581516, 3.271055555555554, 2.9024963924963902, 3.826658730158728, 3.3433712121212116, 3.788777777777775, 4.056940476190472, 4.896770923520922, 3.724759740259737, 4.350440476190478, 3.670547619047615, 3.74179761904762, 3.350139610389611, 3.368552669552669, 3.5195566378066387, 4.0174794372294365, 3.615802669552669, 3.5373044733044736, 3.7452352092352075, 4.520186868686866, 3.7507103174603165, 3.359327561327561, 3.5248899711399706, 3.720573953823953, 7.314936507936504, 6.066270562770559, 6.005246031746029, 5.478638888888887, 7.700666666666664, 6.714896825396824, 5.753739538239537, 6.4980988455988395, 5.583327922077921, 5.443149711399712, 5.79390873015873, 6.671290043290043, 5.399857142857141, 6.181035714285711, 5.362424603174601, 5.898249999999997, 6.304166666666664, 6.699940476190472, 5.955916666666666, 5.69270238095238, 7.131880952380946, 5.960992063492059, 7.388666666666661, 5.373119047619046, 3.8762301587301597, 3.4329653679653687, 3.447841991341989, 3.514869047619047, 2.8649523809523796, 2.6227698412698417, 2.5145367965367944, 2.3509880952380953, 2.568380952380951, 2.7244642857142836, 3.1873542568542543, 2.6065526695526677, 2.372516955266954, 2.484560606060608, 2.8506720779220767, 2.6508373015873024, 2.3897500000000003, 3.6818221500721493, 3.3214404761904732, 2.737230158730159, 3.3651049783549776, 3.5131832611832583, 3.271428571428572, 3.3836349206349197, 3.1968264790764778, 3.2236309523809523, 3.6566785714285697, 4.3096836219336225, 3.551034271284268, 4.475873015873014, 3.5375418470418456, 3.6355158730158696, 3.255817460317459, 3.927325757575758, 3.088155844155841, 3.9474047619047608, 2.898667748917747, 5.317147186147183, 3.310865079365076, 3.0168106060606066, 3.149452380952378, 3.1895396825396793, 4.98197222222222, 4.053219696969697, 3.542537157287156, 4.343027777777776, 3.277854978354975, 3.6591944444444433, 4.149219336219336, 4.54167965367965, 3.9962034632034626, 5.627396825396825, 4.599687229437225, 3.4112777777777783, 3.529869047619047, 3.9375158730158732, 3.9934444444444424, 3.907831529581527, 4.221823593073591, 4.022232323232321, 3.7897431457431447, 4.519857142857143, 3.845023809523808, 3.837388888888888, 4.068071428571427, 3.385278138528138, 6.539396825396827, 4.126226190476191, 3.928289682539682, 4.924857142857142, 3.049888888888888, 4.114929292929295, 2.689706349206348, 2.7200248917748913, 3.365410894660892, 3.2732113997114003, 4.1188253968253985, 4.011269841269837, 3.194095238095237, 3.8708452380952387, 4.100347402597403, 3.343198412698412, 3.8332391774891774, 3.6122658730158737, 3.6464292929292923, 3.7698026695526674, 2.7637748917748923, 3.074921356421355, 3.321659812409813, 3.3083513708513688, 3.862707431457434, 4.328671717171717, 3.014020562770562, 2.9364047619047606, 3.0397431457431465, 3.3884891774891766, 3.599536796536795, 3.23751406926407, 3.3311309523809554, 3.6058304473304466, 2.8970396825396834, 3.111190476190474, 3.1375638528138516, 3.1145952380952378, 3.5919087301587282, 2.6508809523809522, 2.4699880952380933, 3.2142539682539657, 3.2234642857142854, 3.7791753246753244, 3.5325119047619036, 3.0150873015873016, 4.233178571428569, 4.424905844155842, 4.385014069264068, 4.05013095238095, 4.107239177489177, 3.8210833333333305, 4.018515873015873, 4.253595238095235, 3.8976626984126983, 3.2149981962481964, 4.379937590187591, 3.58626984126984, 3.862516233766232, 3.6030873015873004, 4.422908730158728, 3.821730158730157, 3.625940476190478, 3.494691919191918, 4.268535714285715, 7.828142857142858, 8.941638888888887, 8.678063492063492, 7.468977272727274, 8.568500000000002, 8.504261904761911, 6.801536796536796, 7.194464285714285, 7.642583333333334, 7.466388888888883, 7.343777777777776, 6.627666666666664, 8.74322222222222, 6.99692857142857, 8.739944444444445, 7.925833333333334, 7.6394285714285735, 7.029603174603171, 6.676444444444441, 6.990083333333331, 6.962388888888888, 6.055393939393936, 5.1389761904761935, 5.034726190476189, 4.145778138528137, 3.2523658008657983, 3.08044841269841, 3.9450324675324664, 2.56078968253968, 4.238448412698409, 4.889452380952379, 4.108095238095237, 4.571019841269839, 4.774107142857139, 4.9085649350649305, 5.162830086580086, 5.911341269841268, 5.486203463203463, 5.849611111111106, 5.798759018759016, 4.829345238095238, 5.338527777777777, 5.664136363636363, 5.856630952380949, 5.509708152958152, 6.127474747474748, 4.969334054834054, 5.32792857142857, 6.509255050505045, 5.5307976190476165, 6.80252056277056, 5.2799653679653655, 5.1024722222222225, 3.9344920634920633, 4.060007936507933, 3.1786785714285704, 3.1582500000000016, 2.90234235209235, 2.8314772727272723, 3.339628787878788, 2.9966132756132753, 2.7189209956709948, 2.8311547619047617, 3.429810606060604, 2.833203463203461, 2.9611547619047602, 3.0183730158730153, 3.4883257575757565, 3.4132904040404037, 2.7799841269841266, 3.0788257575757587, 2.99767857142857, 3.0211479076479084, 3.6796666666666655, 3.716845238095238, 3.1533650793650803, 3.3984603174603167, 4.509349206349206, 3.6671901154401154, 3.8959325396825384, 3.198260822510823, 3.6172312409812397, 3.53027489177489, 3.3815873015873, 3.417309523809522, 3.7374256854256847, 3.264928571428571, 3.991941558441558, 3.8081706349206303, 4.877984126984127, 4.10838492063492, 3.9732896825396806, 4.168777777777776, 4.680051587301584, 4.948023809523807, 3.874111111111113, 4.005204545454544, 3.9325476190476185, 3.45963095238095, 3.5285992063492064, 3.3510443722943712, 4.903944444444444, 4.567607142857142, 4.025523809523808, 4.583115079365078, 4.023560606060604, 3.5818383838383823, 3.3880277777777765, 3.7365526695526694, 3.597909812409811, 3.199555555555553, 3.709350288600286, 3.8181727994227987, 3.2682182539682527, 3.5231955266955257, 4.371532467532467, 3.1493134920634915, 3.064965367965367, 3.243211399711398, 3.349706349206348, 4.130285714285715, 3.7040663780663783, 4.448001082251081, 3.8300955988455994, 3.0884285714285706, 3.514277777777776, 3.513441558441558, 2.9977438672438668, 3.3787041847041843, 3.6233542568542565, 3.417484126984126, 3.4593383838383827, 3.4314047619047603, 4.619095959595959, 3.6821785714285706, 3.6245447330447336, 3.2161273448773455, 3.53232251082251, 3.449603896103896, 4.018281746031745, 3.096952380952381, 4.085632034632032, 3.189055916305916, 3.352742063492063, 3.742598484848485, 3.623481601731601, 3.193734126984128, 3.8404722222222216, 3.807834415584416, 3.5639563492063497, 3.503634920634919, 2.9161071428571432, 3.165643939393939, 3.0338041125541126, 3.0326129148629133, 3.3504036796536787, 3.2421396103896085, 3.1680281385281353, 2.967080447330446, 3.7664047619047603, 4.261536796536795, 3.8028102453102433, 4.524595238095237, 3.909191558441558, 3.199642857142856, 4.076511904761903, 3.5324761904761908, 3.5140883838383847, 3.332223304473303, 3.477115079365078, 3.8947391774891758, 4.115666666666669, 3.0884285714285724, 3.8700317460317453, 3.9282499999999976, 3.751892857142856, 3.9796360028860023, 4.392666666666668, 4.412392857142857, 3.799560606060605, 6.9498968253968245, 6.940039682539681, 7.548396825396826, 5.668170634920633, 7.042638888888885, 7.224147907647907, 7.473642857142855, 6.534976190476191, 7.366060606060604, 6.1900873015873, 6.909051587301586, 7.600146825396824, 6.590310606060602, 7.078291847041844, 6.4467261904761894, 7.048666666666667, 5.61083333333333, 5.951797619047616, 6.00264502164502, 6.234101370851368, 6.314253968253967, 6.183511904761905, 6.1265119047619025, 6.378401154401153, 3.7307940115440097, 3.0915440115440114, 3.2545039682539674, 3.372664141414141, 2.968640692640691, 2.755833333333333, 3.5373968253968253, 3.163886002886001, 3.301845238095236, 2.9638701298701293, 3.475494227994227, 3.0794206349206337, 3.5639209956709945, 3.985615079365077, 3.229474025974023, 3.8010169552669533, 3.6912406204906185, 3.4939935064935046, 3.6838333333333324, 4.471373015873011, 4.039230158730159, 4.097837301587299, 3.8592777777777756, 3.7749523809523797, 3.743019841269842, 3.9658253968253963, 4.742317460317458, 5.48711904761905, 4.933742063492063, 7.41232142857143, 5.0339761904761895, 5.172850288600287, 5.8721349206349185, 6.048033549783547, 5.783215007215007, 4.516556637806638, 5.417892857142857, 4.9728373015873, 5.266059523809521, 5.812691558441557, 5.606171717171717, 4.986676767676767, 6.171548701298699, 5.187386363636364, 5.588999999999999, 5.185107142857142, 6.032579365079361, 5.009087301587299, 5.089873015873014, 4.7677705627705596, 5.4566114718614696, 3.4179603174603153, 2.908714285714286, 3.315130952380949, 3.916111111111109, 3.4744715007214997, 2.6945245310245305, 2.9685793650793637, 2.941458513708513, 3.0059772727272707, 2.809425685425685, 3.2810331890331867, 2.996643217893218, 2.872283549783549, 3.1786111111111106, 3.4355515873015885, 3.276441558441558, 3.991257936507935, 2.9910786435786423, 3.207909451659451, 3.8048253968253962, 4.4047507215007204, 3.7491464646464627, 4.142565295815294, 4.394480158730158, 3.9596428571428555, 3.9479235209235197, 4.500926767676766, 3.752655844155841, 4.072417388167386, 3.719560606060605, 3.725405844155842, 3.86754437229437, 3.5666666666666655, 4.188214285714283, 4.235632034632032, 5.031908730158727, 4.334714285714286, 3.714412698412697, 3.317989177489178, 3.5868452380952363, 3.756397546897546, 3.6906515151515142, 2.77254401154401, 2.7042380952380944, 3.439749999999999, 3.7144880952380936, 3.51493253968254, 3.3420090187590183, 3.646083333333332, 3.600118686868686, 2.7323214285714275, 2.589904761904761, 3.5988939393939376, 2.74446176046176, 2.9413066378066355, 2.476388888888889, 2.6431673881673876, 2.4275479797979806, 3.624642857142856, 2.9038870851370837, 3.158150793650794, 3.9695238095238095, 3.3569761904761894, 3.31179365079365, 3.2093697691197667, 2.320115079365079, 3.261355339105339, 2.7202189754689754, 3.3822067099567086, 3.1031641414141404, 3.273126984126982, 3.889749999999998, 3.549290043290042, 3.5048463203463185, 3.79281746031746, 3.471965367965367, 3.271329365079364, 3.704996392496391, 4.61640873015873, 4.319532828282827, 3.0323582251082253, 4.578603174603177, 3.178683621933622, 3.03620634920635, 5.363985209235207, 6.212559523809522, 5.618892857142853, 5.955040043290041, 5.292607142857142, 5.433837301587302, 4.796632034632031, 5.557083333333329, 5.899718253968249, 5.253404761904758, 5.537634920634921, 4.309476190476189, 4.3152698412698385, 5.1700678210678195, 4.881313492063489, 5.017568903318901, 4.761726190476187, 5.587964285714286, 4.980561688311684, 4.6470021645021635, 5.026817460317459, 4.703999999999998, 4.542928571428572, 4.198853174603176, 3.1861706349206327, 3.0209206349206323, 2.8695487012987018, 2.999107142857143, 2.685163780663779, 3.2861388888888894, 2.682380952380951, 3.0525963203463204, 2.8525245310245286, 3.8290288600288562, 2.8819444444444446, 3.44043326118326, 3.604144660894661, 3.608724386724386, 3.1421890331890343, 4.03292857142857, 3.596647186147186, 3.2547420634920625, 4.180177128427129, 3.5837878787878794, 4.090952380952379, 4.102536435786434, 4.191532106782108, 4.082857142857142, 3.8284098124098103, 3.840869047619048, 4.08247619047619, 3.8498769841269835, 4.697297619047617, 4.208540404040402, 4.628901875901873, 4.105992063492062, 3.8841904761904735, 3.3349657287157277, 3.655286796536796, 3.562421717171713, 4.314499999999999, 6.21683333333333, 6.319738095238094, 6.937738095238092, 6.018802669552669, 7.020691197691196, 6.277833333333333, 7.1505681818181825, 5.548841269841271, 7.197690476190473, 5.820067460317458, 6.951404761904763, 5.996301587301585, 6.225520202020198, 7.009404761904756, 5.987146825396826, 6.561365440115436, 7.126940476190477, 6.21177489177489, 6.653261904761901, 6.152345238095239, 6.080869047619044, 5.67737301587301, 5.182083333333331, 4.867595959595958, 3.4355616883116884, 3.6442712842712828, 3.387928571428569, 3.250690476190474, 2.8985793650793625, 2.665801587301586, 3.732690476190474, 4.06388492063492, 3.9463571428571416, 3.5875678210678217, 3.98326984126984, 3.8981071428571425, 4.485580447330446, 3.0408571428571416, 3.443916666666666, 4.4507316017316, 4.055588383838383, 3.8242182539682528, 4.495954545454543, 4.027096320346318, 4.233834415584413, 4.72035714285714, 4.257608225108224, 4.746440476190476, 4.594266955266955, 4.416313852813851, 5.235380952380948, 4.137365800865799, 3.1729963924963913, 3.388786796536795, 3.581956709956709, 2.5912777777777762, 3.0313470418470407, 2.9846053391053387, 2.868083333333332, 2.9796847041847028, 3.111722222222219, 3.2988412698412675, 3.1928571428571444, 2.940251082251081, 3.3155634920634918, 2.9600158730158714, 3.3240119047619046, 4.036024891774891, 5.561261904761902, 4.620178571428571, 5.361301587301585, 5.286580086580085, 5.79820238095238, 6.404499999999997, 6.2393214285714285, 5.825476190476189, 6.034186507936506, 6.494166666666662, 7.141350288600291, 6.498420634920632, 6.383337301587301, 5.463249999999997, 5.4285595238095254, 5.508452380952376, 6.26770238095238, 5.921690476190473, 6.4468181818181804, 4.735886002886001, 4.739040764790764, 5.261023809523808, 4.579011904761903, 4.160805555555555, 4.148071428571428, 4.014849206349205, 3.378511904761902, 2.9113809523809526, 2.9334523809523785, 2.7179761904761883, 2.939583333333332, 2.838980158730159, 3.0244523809523796, 2.7531352813852816, 3.476893939393939, 3.0022601010101018, 2.559136002886003, 3.0028809523809525, 3.0397867965367973, 3.7744880952380933, 3.3000039682539657, 3.200155483405482, 3.6155101010101, 3.3897402597402615, 3.046968253968253, 3.618853174603174, 3.8353134920634915, 3.771338744588744, 3.5273474025974036, 4.397782828282826, 3.6523740981240964, 3.36168759018759, 3.277047619047616, 4.168381313131311, 4.279202380952379, 3.4208740981240955, 3.2910248917748905, 3.5180487012987, 3.5153214285714274, 3.334565656565658, 3.9244682539682536, 3.7349545454545447, 3.3592182539682534, 3.81883802308802, 2.89313888888889, 3.6980436507936485, 3.507505050505049, 3.4718968253968248, 3.1526468253968263, 3.167891414141414, 3.211003968253967, 2.788661255411254, 3.401908730158728, 3.2600288600288594, 3.5245966810966816, 3.379079365079365, 3.5467023809523788, 3.5389426406926394, 3.1190476190476173, 3.191255050505049, 3.4109801587301587, 3.8580140692640685, 2.908420995670995, 3.4857619047619037, 3.3308784271284266, 3.705468253968254, 2.9860515873015876, 3.651186507936507, 3.0801746031746022, 3.089123015873015, 3.3200717893217884, 2.711306637806636, 2.91607251082251, 3.6903253968253993, 3.451289682539681, 3.155261904761905, 3.180821428571428, 3.191031746031746, 3.9915396825396803, 3.4003928571428554, 3.5038531746031754, 3.6502936507936483, 3.6967193362193367, 3.4831706349206373, 4.51814393939394, 3.688079365079365, 4.2043214285714265, 3.9163780663780656, 3.9973690476190504, 3.3444047619047605, 3.78318759018759, 3.5095634920634926, 3.5547142857142853, 3.1754653679653684, 4.12674603174603, 3.3411450216450196, 4.6033026695526695, 3.832944444444443, 3.143031746031746, 4.164015873015871, 3.406735209235209, 3.9694365079365084, 3.8084942279942267, 2.8185277777777773, 3.050325396825396, 3.005186507936506, 3.337436507936508, 3.2153831168831157, 2.809413780663779, 3.8132121212121204, 3.058857864357864, 2.9290021645021644, 3.4798492063492064, 3.374846320346318, 3.0261626984126986, 3.6990079365079365, 4.093210678210676, 3.191547619047618, 3.1724087301587294, 3.7101865079365064, 2.8749285714285713, 2.9461666666666644, 3.2194007936507902, 3.3259098124098125, 3.39010064935065, 3.8306489898989877, 2.960464285714284, 3.217170634920633, 4.255695526695525, 3.507107142857142, 4.267073593073592, 3.9201904761904753, 3.6493542568542545, 4.647666666666667, 3.868953463203462, 4.31172619047619, 3.8976785714285715, 3.7301587301587307, 3.157011904761905, 4.487338383838383, 3.7345851370851344, 4.200061688311687, 3.344555555555556, 7.103444444444442, 6.613976190476191, 6.4347182539682555, 7.063678571428567, 8.701055555555557, 7.161843434343435, 6.627047619047618, 7.394790404040402, 6.460857142857141, 6.3580050505050485, 7.498190476190472, 7.295037878787876, 7.420035714285714, 7.2981666666666625, 5.527353896103897, 6.1073968253968225, 7.648861471861473, 6.177575396825393, 5.185785714285712, 6.499964285714283, 5.612265873015872, 7.175499999999999, 6.383261904761907, 6.60686111111111, 3.822051587301586, 5.633949494949492, 5.957500000000001, 5.202583333333333, 4.4964880952380915, 3.8337510822510805, 4.866345238095235, 5.231051587301584, 5.296314574314572, 5.195616161616161, 4.3272034632034595, 4.437770562770561, 4.401762265512264, 4.686865440115439, 4.458146825396823, 4.658587301587302, 4.639575396825396, 4.574563492063488, 4.819835497835498, 5.519091269841268, 5.152253968253968, 2.9350476190476167, 3.7723015873015857, 3.2414812409812397, 3.360111111111108, 3.001642857142856, 2.466694444444444, 3.0550515873015858, 2.674591991341991, 2.4772420634920627, 3.551549062049061, 2.919988095238095, 3.8661518759018763, 3.6282142857142854, 2.855266955266954, 2.8640133477633474, 3.1591230158730155, 2.923409090909088, 3.773436507936508, 3.092488095238094, 2.459583694083693, 3.9722261904761913, 3.103096681096681, 3.4238098845598826, 3.1411190476190476, 3.619007936507935, 3.172738816738816, 2.8997987012987, 2.972684704184704, 3.033768037518037, 3.79506746031746, 3.169210317460316, 3.0320050505050493, 2.980869047619046, 3.0933621933621933, 2.8303502886002874, 2.8117499999999978, 3.552607142857142, 3.5305357142857132, 3.330773809523808, 2.8382063492063487, 3.4811944444444434, 3.473154761904761, 3.3726349206349173, 3.6835082972582955, 3.9411677489177483, 3.371369047619047, 4.275564574314573, 3.66345238095238, 3.7279329004328976, 4.003320707070707, 3.6457907647907626, 3.775714285714284, 3.8232420634920636, 4.086771645021643, 4.678862914862913, 3.355472222222222, 3.744972222222221, 4.391083333333333, 3.5331717171717156, 2.8856428571428565, 3.050802669552669, 3.243509018759019, 3.4127193362193355, 3.694194444444444, 3.2214801587301563, 3.1047261904761885, 3.134277777777776, 3.1866507936507937, 3.0212413419913426, 3.0353690476190462, 2.895559523809524, 3.3211547619047592, 3.053497113997112, 4.387059523809524, 3.2590645743145723, 3.3006150793650777, 3.4053026695526682, 3.731000000000001, 3.3287936507936497, 3.161234487734487, 3.2278333333333324, 2.7637471139971144, 3.16961147186147, 3.4261865079365066, 3.4406006493506487, 2.810948412698412, 3.7436309523809514, 3.4509812409812404, 4.634007215007215, 3.9744087301587294, 3.793989177489176, 3.755630952380951, 3.9922950937950934, 4.309485209235208, 3.797170634920634, 3.342120129870128, 3.952857142857142, 3.1565714285714277, 4.156115079365079, 4.000730519480518, 3.779766955266954, 3.6734880952380933, 4.4917738095238064, 3.6008452380952383, 4.15065476190476, 4.995158730158729, 3.939897186147185, 3.9214653679653675, 4.044071428571425, 3.5660952380952367, 4.102912698412698, 3.615702380952382, 3.0391111111111098, 2.6425634920634917, 3.1389801587301567, 3.5788849206349176, 3.0999534632034638, 3.880027777777778, 3.3804682539682545, 3.2050833333333335, 3.176047619047618, 3.7190674603174587, 3.00702489177489, 3.3048849206349202, 3.30667171717172, 3.540722222222222, 3.5077272727272697, 3.2430158730158736, 4.136345238095238, 3.424104256854256, 4.160811688311685, 3.3319642857142835, 3.50140404040404, 3.7187182539682517, 3.9318181818181803, 3.649214285714286, 4.179850288600287, 3.4052698412698397, 3.769728354978355, 3.954468253968252, 3.934797619047618, 4.4195324675324645, 4.118534992784991, 4.651556637806636, 4.183991341991342, 4.421842352092352, 3.599103535353533, 3.387612554112555, 3.8061785714285707, 4.631380952380951, 3.0478968253968244, 2.986869047619047, 3.76627489177489, 3.1829296536796527, 4.113063492063492, 3.0126428571428567, 3.42947619047619, 3.0788463203463197, 3.2421118326118314, 2.9392341269841253, 2.879869047619047, 3.704158730158728, 3.508718253968253, 3.6785912698412693, 3.484573593073591, 2.9874296536796514, 3.162996031746032, 3.802001082251083, 3.6173452380952362, 3.0381309523809517, 3.4924826839826832, 3.4889722222222206, 3.0930660173160143, 6.133429653679651, 6.01498412698413, 5.603544011544007, 6.328433982683981, 7.193694444444445, 9.597357142857142, 9.312608225108226, 8.20324206349206, 7.728154761904764, 9.438194444444447, 9.372583333333335, 7.6010714285714265, 7.721916666666665, 8.006305555555558, 7.56663492063492, 7.309940476190476, 7.086333333333336, 7.384810606060612, 8.258048701298705, 7.317273809523809, 6.4888333333333295, 6.635690476190473, 5.819488095238091, 7.002666666666668, 4.762888888888889, 5.042904761904761, 4.993888888888887, 4.734929653679653, 4.114333333333333, 2.2502738095238084, 2.932920634920634, 2.671516594516594, 2.4821158008658006, 2.5447272727272714, 2.366774891774892, 2.6187665945165923, 2.2032391774891766, 2.666698412698413, 2.838429653679652, 2.6135360750360737, 2.5898253968253977, 2.611251082251082, 3.5728780663780664, 3.2645606060606043, 2.861460678210678, 2.7854927849927846, 2.8283492063492077, 2.996623015873016, 2.954180375180375, 3.1200959595959596, 3.3379585137085135, 3.9669256854256845, 2.628102092352092, 3.0759271284271277, 3.4554372294372278, 2.9501904761904783, 3.385242063492062, 4.334972222222222, 3.342467532467531, 3.4301507936507916, 4.018571428571429, 3.7866230158730163, 3.7858225108225096, 3.84892857142857, 3.6664087301587287, 3.545391053391053, 3.2931587301587286, 3.555778860028859, 3.449138888888889, 3.9371370851370826, 3.451397907647906, 4.048234126984124, 4.35406349206349, 3.4444206349206334, 4.123170634920633, 3.703027777777776, 3.6295169552669537, 4.468477272727272, 4.961444444444441, 4.403833333333333, 3.851782828282827, 4.7085158730158705, 4.264420634920634, 3.6704404761904743, 2.9435050505050495, 3.530936507936506, 2.9476666666666658, 3.4580357142857134, 3.5256785714285686, 4.402408730158728, 3.733052669552668, 3.087801587301586, 2.868408730158729, 3.4744610389610386, 3.4877420634920626, 4.544666666666667, 3.8040367965367965, 3.896306277056276, 3.06070238095238, 3.508759018759021, 3.6618106060606044, 4.230528860028858, 3.1791309523809526, 3.360460317460316, 4.270136724386725, 3.6540912698412695, 4.314926406926406, 3.496747835497835, 3.4322601010101, 3.76151984126984, 4.422670634920633, 3.5520699855699864, 3.042576479076478, 3.992492063492062, 4.064117965367964, 3.978476190476188, 3.358505050505049, 3.062426767676766, 3.453982683982684, 2.8262619047619038, 3.1155963203463206, 2.9560912698412696, 3.3757103174603174, 3.2988722943722935, 3.0009090909090896, 3.4080725108225107, 3.5284098124098118, 3.3297709235209227, 3.5042976190476187, 3.419523809523809, 4.4808225108225095, 3.6291836219336195, 3.8491269841269826, 3.8098860028860035, 3.3236825396825385, 4.310278860028858, 3.5359880952380953, 3.307905122655122, 3.6180912698412686, 3.187694444444444, 3.8616230158730143, 4.089694444444444, 3.9536468253968247, 4.008999999999999, 3.44849603174603, 3.999932539682538, 3.914584415584414, 3.7251630591630596, 3.016468253968253, 3.1243264790764775, 3.617742063492062, 4.985123015873016, 4.496743145743145, 3.469384920634919, 3.5088134920634926, 2.5773037518037514, 3.331563492063492, 3.3787074314574292, 2.928941558441559, 3.560480158730157, 4.090757936507937, 3.1315119047619038, 3.1345873015872994, 3.362093073593072, 3.266770923520924, 3.007262987012987, 3.2922063492063494, 3.205503968253968, 2.9692936507936496, 3.4751360028860026, 3.7373373015873, 3.160583333333333, 3.128523809523808, 3.188739177489176, 3.7583333333333315, 3.0010508658008668, 3.043277777777777, 2.9597070707070694, 3.6401785714285704, 3.5346832611832597, 3.4446150793650787, 2.8582074314574326, 3.27330266955267, 2.9394379509379505, 2.93134595959596, 3.426448773448773, 3.406730158730157, 3.5067049062049063, 3.584758297258294, 3.544785714285712, 2.8208373015873005, 3.3141230158730157, 3.206119047619047, 2.9429834054834054, 2.630318181818181, 2.728313492063491, 3.3035277777777763, 3.1648026695526683, 3.6407777777777777, 3.3308344155844156, 2.9859494949494936, 3.2363946608946574, 3.7448968253968236, 4.544936507936507, 3.6222348484848466, 3.7580505050505044, 3.431464285714285, 3.8871626984126966, 2.7745800865800874, 5.803272005771999, 6.014833333333333, 5.507599206349209, 6.466706349206348, 4.914833333333333, 6.602615079365079, 6.223464285714284, 5.381218614718614, 5.540297619047617, 5.567388888888887, 5.538714285714284, 6.797892857142856, 7.7055725108225115, 8.239032828282827, 6.974194444444443, 6.924928571428569, 7.1740476190476175, 7.46096825396825, 6.02812698412698, 8.068309523809521, 6.523730158730156, 6.385714285714287, 6.221670634920636, 6.8852896825396845, 5.957132034632033, 6.775658730158727, 5.460833333333331, 5.290833333333331, 5.103773809523806, 4.101643939393937, 5.4176717171717135, 4.416023809523809, 4.685662698412696, 4.477667748917745, 4.284797979797977, 2.7397150072150076, 2.8346796536796512, 2.58607251082251, 2.8721619769119755, 2.268501803751803, 2.2787366522366512, 2.8526038961038935, 2.315413059163059, 2.865762987012986, 2.8255010822510807, 2.419650793650792, 2.962235569985568, 2.395235209235209, 2.9928383838383823, 2.960570346320345, 3.305921717171716, 3.2501284271284256, 3.1103106060606036, 3.8741190476190472, 3.067845238095236, 3.18240476190476, 2.9362961760461745, 3.5018412698412695, 3.2644999999999995, 3.3406904761904745, 3.507035714285713, 4.116015873015871, 4.033536435786434, 4.368051587301586, 4.286559523809523, 3.6638730158730146, 3.9224087301587294, 4.26877813852814, 4.3688225108225085, 3.6811670274170254, 3.266647907647906, 3.880965367965368, 3.95454365079365, 3.5582341269841273, 3.688252164502164, 3.7150833333333324, 3.6523376623376604, 3.573553751803751, 4.0002658730158736, 3.142710317460315, 3.3873769841269827, 3.035448412698412, 4.270334415584414, 3.0122777777777765, 3.265404761904762, 3.499286796536795, 3.7152182539682572, 3.144088383838383, 4.078286796536795, 4.067711399711398, 4.2979563492063475, 4.094769841269843, 3.98302886002886, 3.819555555555555, 3.873151515151512, 4.3375876623376595, 3.9983304473304453, 3.891869047619047, 4.571194444444443, 3.376739177489178, 4.689361111111108, 3.2223095238095247, 3.885357142857144, 4.567916666666666, 3.7145555555555556, 3.7365151515151496, 4.52034235209235, 3.963203463203461, 3.903547619047618, 3.823686507936507, 3.400989177489178, 4.147722222222223, 3.3848376623376595, 3.1959534632034625, 3.526960678210676, 2.9963946608946617, 3.5389642857142816, 3.14038095238095, 3.171575396825396, 3.181406565656566, 3.5271706349206333, 3.719440476190476, 3.358968253968255, 3.428004689754688, 3.7804610389610365, 3.1268611111111104, 3.042539682539683, 3.403785714285714, 3.5169761904761896, 3.2630032467532457, 3.2139891774891773, 3.7175248917748913, 3.486750721500719, 3.1843650793650795, 3.746316738816739, 3.276923160173158, 3.5898968253968255, 3.7037543290043264, 3.239095238095237, 3.196265151515151, 3.3703733766233746, 2.9647352092352075, 3.714205627705628, 2.876615079365078, 3.3653333333333313, 3.111188311688312, 3.7457471139971124, 3.397238095238095, 3.216061327561326, 3.136130952380951, 3.416281746031744, 3.1136439393939357, 2.943100649350648, 2.9419761904761907, 3.395059523809524, 3.2607867965367947, 3.0838513708513697, 3.306314574314574, 3.836472222222219, 3.8153795093795075, 3.2688106060606037, 3.8916071428571404, 3.893301587301585, 3.127396825396824, 4.090551948051945, 3.4442193362193345, 3.355506132756132, 3.3895487012986996, 3.750580808080807, 3.5240436507936495, 3.688215367965367, 3.3086240981240973, 3.4999404761904755, 3.5217182539682534, 3.6072153679653662, 3.5822341269841256, 3.8864098124098105, 3.5157788600288584, 4.336460317460317, 4.262991341991341, 3.680678932178933, 3.619869047619047, 3.4385205627705635, 3.655413419913418, 3.634440476190475, 4.60230952380952, 5.867833333333331, 5.960524891774888, 5.168781746031742, 8.181287878787877, 6.190777777777777, 6.374358225108224, 6.449512987012988, 5.725214285714283, 6.4258809523809495, 5.620404761904759, 5.971273809523808, 6.073702380952379, 5.219497113997114, 6.207011904761903, 5.856261904761902, 6.046441558441556, 5.198106060606056, 5.243326118326116, 6.170535714285712, 4.894964285714285, 6.1255, 6.40313095238095, 5.089363997113996, 4.201476190476188, 3.8969246031746025, 5.193230880230876, 5.334781746031743, 4.235456349206348, 5.729888888888886, 5.242619047619044, 5.0394920634920615, 4.422198412698409, 5.184290764790762, 5.438142857142857, 5.324925685425684, 5.6663333333333314, 5.513976190476189, 5.5860205627705595, 4.847659812409811, 4.855151515151515, 5.431948412698412, 5.956357142857143, 4.678507936507934, 5.267638888888888, 5.033988095238094, 5.648242063492064, 4.666333333333331, 5.349444444444443, 4.598142857142856, 3.5962420634920624, 3.2085959595959586, 3.981404761904763, 3.967916666666665, 2.5434494949494946, 2.4351468253968256, 3.15686111111111, 2.7248055555555566, 3.2020833333333325, 2.5835555555555545, 3.4582835497835482, 3.285630952380951, 3.1490634920634895, 3.3494693362193355, 3.217976190476187, 4.007333333333332, 3.236035714285714, 3.1987023809523802, 3.186357142857141, 3.401433621933622, 3.0690357142857128, 3.710083694083694, 3.4972619047619045, 3.3535010822510807, 3.463010101010101, 3.2035396825396814, 3.2560952380952353, 3.7758730158730143, 3.830540764790765, 3.429619408369407, 3.230091269841269, 3.7095158730158713, 3.54175505050505, 3.5753095238095214, 2.922787878787878, 3.3984823232323227, 3.243492784992785, 3.606397907647905, 3.8906699134199125, 4.150531746031745, 3.7059960317460305, 3.727310606060607, 3.438325396825393, 3.082611111111109, 3.4063769841269846, 3.9151190476190463, 3.468511904761904, 3.489715007215008, 3.412781746031746, 3.0583917748917755, 3.3558578643578634, 3.9713751803751793, 3.6953740981240957, 2.9929029581529605, 3.4122525252525246, 2.836361471861472, 3.8693961038961033, 3.568421717171715, 4.056623737373736, 3.143182539682539, 3.8292748917748893, 3.3988701298701285, 3.5416320346320336, 3.0694541847041847, 3.9889595959595927, 3.0826309523809514, 3.5792420634920616, 3.5657500000000004, 4.682712481962479, 2.9723683261183247, 3.0613419913419913, 3.6733185425685404, 3.7106792929292918, 3.7585447330447312, 3.55820238095238, 3.6788015873015882, 4.178984126984127, 3.436055555555554, 3.7851230158730167, 3.349730158730158, 3.6622936507936505, 3.629708513708512, 3.5743661616161604, 2.9981706349206347, 3.580425685425686, 3.1851677489177486, 3.502159812409811, 3.5763333333333307, 3.7418354978354955, 3.050976190476189, 3.2719574314574307, 3.390002164502163, 3.628788239538239, 3.7735674603174583, 3.4619184704184685, 3.7239069264069258, 4.443188311688312, 2.550112193362192, 2.851295093795093, 3.13812121212121, 4.210436507936506, 3.404324675324672, 2.984405844155842, 3.3361998556998564, 3.706825757575757, 3.153004329004327, 3.977468253968253, 3.0839444444444424, 3.38994841269841, 3.3684642857142824, 3.365718614718614, 3.0363221500721487, 3.6187817460317437, 3.5008621933621926, 3.4297186147186145, 2.833548701298702, 3.613028860028859, 3.751766955266952, 3.561449494949495, 3.092208513708512, 3.738175685425685, 3.423730158730157, 3.9863059163059145, 3.429600288600289, 4.023865800865798, 3.6458261183261174, 3.1073095238095236, 3.081531746031746, 3.6348809523809504, 3.5880079365079367, 3.6027312409812384, 3.7992669552669547, 3.3684891774891765, 3.465421717171718, 3.55345238095238, 4.27801587301587, 3.903032467532468, 3.9189080086580073, 3.427734126984127, 3.384936507936506, 3.483651875901875, 3.62123015873016, 3.715070346320346, 3.785753968253966, 3.1759087301587274, 3.0010952380952385, 3.291761904761903, 3.572714285714284, 3.1348452380952345, 2.9978272005772, 2.743611471861472, 3.0010808080808062, 6.382758297258294, 5.031740259740256, 6.260449134199129, 6.507206349206345, 7.650075396825398, 6.908703102453101, 7.0751558441558435, 5.6634404761904715, 6.8467142857142855, 6.90173412698412, 7.1184682539682544, 5.912476190476187, 6.056643939393938, 5.6350476190476195, 5.224405844155845, 5.422388888888887, 6.2445873015873, 6.53813095238095, 5.635805555555554, 6.76484523809524, 4.877147907647904, 5.7836111111111075, 6.741909090909089, 5.44961507936508, 3.893846320346318, 3.742113275613273, 4.417567460317461, 3.6530515873015874, 3.140758658008655, 2.89906818181818, 2.6310050505050495, 2.789687229437231, 2.778051587301586, 2.974417388167385, 2.733630952380952, 5.953290764790758, 6.427004329004325, 6.648952380952377, 7.339888888888885, 6.575297619047617, 6.946714285714284, 7.715976190476187, 8.658111111111111, 8.319480158730155, 6.553777777777773, 8.09297727272727, 8.255980158730157, 7.701666666666666, 7.396325396825394, 6.7798333333333325, 6.972166666666662, 7.447476190476189, 6.873797619047617, 6.750464285714283, 8.20509199134199, 5.563107142857141, 5.996543650793651, 6.962404761904761, 5.949980158730161, 4.305817460317458, 4.827071428571426, 4.186690476190472, 4.131134920634919, 2.376690476190476, 2.388904761904761, 2.6822738095238083, 2.6920952380952383, 2.9440101010100994, 2.9671865079365074, 2.632877705627705, 2.9563582251082217, 2.8754999999999984, 2.9581547619047597, 2.8170800865800865, 2.8635952380952348, 2.8569642857142847, 2.7343225108225084, 3.1933134920634916, 3.0899126984126966, 3.281243506493505, 3.0042622655122653, 3.484809523809524, 3.0588149350649325, 3.1910440115440095, 3.7837817460317464, 3.606257936507936, 3.8229166666666647, 3.5357380952380946, 3.9510515873015857, 4.217753968253969, 3.9010216450216424, 4.105369047619049, 3.476499999999998, 4.254468253968254, 3.2352586580086573, 3.135354256854256, 3.731273809523809, 4.123135281385279, 4.2116785714285685, 4.096691558441557, 3.4197261904761893, 4.350136002886003, 3.7512225829725834, 3.7260277777777784, 3.8009999999999993, 4.129392857142858, 2.855318181818181, 3.613238095238094, 3.990398989898988, 3.901071428571428, 3.380075396825394, 3.3266984126984123, 3.8227976190476194, 3.1739545454545444, 3.497069624819622, 3.6627427849927834, 3.295057720057719, 3.964525974025973, 2.7835256132756134, 3.5987352092352083, 3.2309603174603163, 3.298690836940837, 4.125422077922076, 2.985845238095238, 3.5845317460317454, 3.2441796536796534, 3.2266825396825394, 3.656018037518036, 2.9952637085137073, 3.9969574314574325, 3.8551746031746017, 4.585456349206349, 4.015780303030304, 3.097563852813851, 4.29775541125541, 4.037830808080808, 3.7625129870129865, 3.471087301587301, 4.3745573593073575, 3.0904895382395363, 3.880101731601729, 4.347519841269838, 3.954281746031747, 4.25192893217893, 5.670000000000003, 4.796579365079363, 3.1528333333333327, 3.594166666666667, 3.0534642857142855, 3.5776554834054832, 2.890468253968253, 2.988060245310243, 4.225345238095237, 3.535942640692641, 2.972294733044734, 3.1918888888888857, 3.2604920634920633, 3.9743412698412697, 4.154273809523809, 3.4798015873015857, 3.1546230158730144, 3.301274891774892, 4.055761904761903, 3.7194126984126985, 3.3725241702741706, 3.941639971139969, 3.12, 3.146588744588744, 3.284480158730157, 3.9908769841269836, 3.2807507215007217, 3.5214372294372303, 3.578777777777777, 3.800456349206348, 2.6509642857142848, 3.8218026695526692, 3.499309523809525, 3.6877499999999994, 3.1870003607503623, 3.40456746031746, 3.955810606060605, 3.7790992063492057, 3.550539682539683, 3.2897698412698406, 4.043266955266956, 3.7271111111111086, 3.447150793650793, 3.647996753246753, 3.4908033910533907, 3.3964574314574323, 3.346235209235207, 3.1201309523809524, 3.5201230158730166, 3.406321428571426, 2.8862182539682526, 3.3366111111111088, 3.6270198412698402, 2.7095714285714267, 3.0732864357864367, 3.082579365079362, 3.5792521645021655, 3.544476190476191, 3.670584054834056, 3.946797619047617, 4.255012626262627, 4.656556277056275, 4.101031746031745, 5.183503968253968, 4.241105339105335, 4.078734848484847, 4.463968253968256, 4.172846320346321, 4.042095238095237, 4.202060606060604, 4.114063492063489, 4.1924624819624805, 3.673417027417028, 3.649163780663779, 3.8136154401154374, 3.3855992063492053, 3.5941587301587297, 4.268492063492063, 3.725802669552671, 3.2893109668109664, 4.550440476190474, 5.889198412698411, 7.170984126984128, 5.765838383838384, 5.159047619047619, 6.018476190476187, 7.091330447330445, 5.461257936507938, 6.757686507936505, 6.592063492063488, 5.918611111111112, 6.10878391053391, 6.847358225108223, 7.709084415584415, 6.170103174603172, 6.763833333333329, 6.348095238095236, 6.909929653679654, 8.235727272727269, 6.672380952380952, 5.691219336219335, 7.2762619047619035, 5.912532828282827, 6.687500000000001, 6.4791785714285695, 4.751193722943723, 5.1812619047619, 4.744873015873013, 4.7950357142857145, 3.8895248917748915, 4.3000833333333315, 3.936747113997113, 4.261825396825396, 3.84615476190476, 3.8309011544011518, 3.814996031746032, 2.252976190476191, 2.7870833333333325, 2.371892857142857, 2.8493253968253955, 2.842639249639248, 2.713370129870129, 2.7820122655122645, 2.517551587301586, 2.8849657287157275, 3.508190476190474, 3.2860198412698414, 3.340607142857141, 2.8498481240981226, 3.112424963924965, 3.0266313131313116, 2.963670634920633, 2.871662698412697, 3.224969336219336, 3.3577673160173154, 4.804580447330447, 4.6198127705627705, 3.815047619047619, 3.421781746031744, 4.3499285714285705, 4.294416666666666, 4.237632034632035, 3.6272554112554123, 4.115920995670995, 4.248511904761903, 3.1585732323232327, 3.5358510101010094, 3.450044011544012, 3.7505753968253948, 4.78451587301587, 3.619904761904761, 3.0410725108225103, 3.7582348484848476, 3.9355284992784987, 4.013226911976911, 3.765028499278498, 3.097190476190475, 3.7097063492063485, 3.3913744588744574, 3.0087301587301587, 2.847099206349205, 3.7160656565656565, 3.4381493506493475, 3.046131673881673, 2.9550238095238104, 3.030914862914862, 3.034440476190475, 2.904599206349205, 3.557632034632033, 3.3122124819624807, 3.436511904761903, 3.3328095238095234, 3.537706349206349, 3.2628452380952377, 2.7690447330447308, 3.8342334054834057, 3.6402272727272726, 2.839845238095237, 2.9113394660894643, 3.72640476190476, 3.8679563492063473, 3.7769444444444424, 3.5105634920634907, 4.2451309523809515, 4.296757936507933, 3.903624098124096, 4.956500360750358, 3.983112193362191, 4.21193362193362, 4.2892777777777775, 3.571430375180375, 3.8660681818181817, 3.0336284271284253, 3.8172420634920603, 3.705104256854255, 3.788100288600289, 4.149253968253967, 3.6086598124098117, 3.8726230158730135, 3.536349206349206, 4.0738939393939395, 3.412541847041845, 3.480639971139971, 3.42527380952381, 3.367811688311691, 3.5947272727272725, 3.353501082251081, 3.521295454545453, 3.335726190476191, 3.938595238095235, 3.586182539682537, 3.6934325396825383, 3.575928571428572, 4.041722943722943, 3.364291847041846, 3.7595714285714283, 3.574777777777777, 3.4528134920634916, 3.242543650793649, 3.9069285714285686, 3.0500436507936493, 3.4892142857142834, 4.230464285714282, 3.7655324675324664, 3.406388888888887, 3.7108019480519467, 4.846434704184702, 3.8331388888888873, 4.153893939393938, 3.9900883838383847, 3.7023730158730155, 3.3251785714285718, 4.305285714285715, 3.0412301587301567, 3.4577153679653683, 4.437702380952381, 3.71976984126984, 3.6225447330447302, 3.554126984126982, 3.4300328282828274, 3.2811428571428563, 3.0351439393939375, 3.407773809523808, 3.0156926406926403, 3.8024801587301558, 2.9104166666666664, 2.968821428571429, 3.6308820346320347, 3.3340923520923513, 4.623809523809522, 4.493876984126984, 3.8821320346320336, 4.262999999999999, 4.383583333333333, 3.738769841269842, 4.290262987012986, 3.955785714285713, 5.410749999999996, 4.29165079365079, 4.10280266955267, 3.487261904761903, 4.158932539682538, 4.163509740259741, 3.775215367965369, 4.566647907647907, 4.436789682539682, 3.6880598845598835, 3.4868777056277045, 3.906519841269843, 3.530714285714284, 4.285666666666665, 3.8074999999999974, 2.800599206349206, 2.90329906204906, 3.469897546897545, 3.385167027417029, 6.365043650793647, 6.667230158730159, 5.929152597402597, 5.948111111111109, 7.2200952380952375, 5.735774891774888, 6.328325396825394, 6.919333333333331, 7.361488095238095, 7.41815151515152, 7.4267142857142865, 6.642952380952378, 7.813214285714288, 7.304134920634921, 8.023984126984127, 6.983999999999998, 6.804642857142856, 7.497103174603176, 7.807199134199135, 7.76875072150072, 8.34432142857143, 6.913666666666664, 6.110924603174599, 6.746880952380954, 5.182389971139969, 5.435797619047616, 4.317634920634919, 5.734261904761905, 4.990297619047616, 4.372392857142856, 4.907547619047619, 3.6778852813852785, 3.0706002886002874, 3.6560476190476168, 3.5317759740259733, 2.704349206349205, 2.720361111111111, 2.6086984126984123, 2.7178015873015857, 2.453916666666665, 2.8806071428571416, 2.504083333333333, 2.372704545454545, 3.2147233044733037, 2.479321428571428, 2.818830808080807, 3.3800090187590164, 2.5311547619047605, 2.5557103174603166, 3.108925685425684, 2.731865079365077, 3.3656269841269824, 3.2371468253968247, 3.5824404761904765, 4.070726190476189, 3.788892857142857, 3.785449494949493, 3.380397907647907, 3.5211161616161606, 3.335397907647908, 4.178905122655122, 3.29757251082251, 3.5249343434343436, 3.8863888888888876, 3.0946825396825393, 4.173023809523807, 3.6699769119769114, 3.046761904761903, 3.4730634920634915, 3.835464285714285, 4.125230158730158, 3.149472943722942, 3.5055086580086563, 3.2101388888888893, 3.2135992063492056, 3.449583333333331, 3.7082741702741693, 3.49490476190476, 4.014480158730159, 3.5960714285714293, 3.8185674603174604, 3.460046897546895, 3.2951111111111104, 3.1032034632034615, 3.4118492063492045, 3.33977380952381, 4.644646825396823, 3.8287341269841257, 3.7051240981240983, 12.35923520923521, 12.441630952380955, 11.346428571428579, 11.284107142857142, 12.190941558441564, 12.109083333333336, 11.942166666666669, 11.341928571428575, 9.052892857142863, 11.166666666666675, 9.7525753968254, 9.18716666666667, 8.875178571428574]#hash_d64_k16 d1 = pd.Series([s for s in disp]) sorted_d1 = d1.sort_values(ascending=False) N = 140 pred_rrcf = d1 > d1.quantile(0.90) print("Displacement: ", d1.tolist()) # print(metrics.classification_report(true_anomalies, pred_rrcf)) for k in [100, 200]:#, 200]:#, 300, 400]: top_k_real = anomaly_detection.get_top_k_anomalies(sh_vector, k) top_k_disp = anomaly_detection.get_top_k_displacement(sorted_d1, k) anomaly_detection.get_top_k_performance(top_k_real, top_k_disp, true_anomalies, pred_rrcf, N) real = [] for index, row in sh_vector.iterrows(): # real.append(int(row['anom_count'])*0.01) if row['anom_count'] > 100: real.append(100) else: real.append(int(row['anom_count'])) fig, (ax1, ax2, ax3) = plt.subplots(nrows=3, sharex=True, sharey=True, figsize=(8, 5)) ax1.plot(real, color='blue', linewidth=0.5) ax1.plot(hash_d64_k16, color='red', linewidth=1) ax1.set_title("SnapSketch", fontweight="bold", fontsize=8) ax1.tick_params(axis='both', labelsize=6) ax2.plot(real, color='blue', linewidth=0.5) ax2.plot(sl_vast_full, color='red', linewidth=1) ax2.set_title("SpotLight", fontweight="bold", fontsize=8) ax2.tick_params(axis='both', labelsize=6) ax3.plot(real, color='blue', linewidth=0.5) ax3.plot(ss_vast_full, color='red', linewidth=1) ax3.set_title("StreamSpot", fontweight="bold", fontsize=8) ax3.tick_params(axis='both', labelsize=6) plt.xlim([0, 1500]) # plt.ylim([0, 200]) plt.xlabel("Time", fontweight="bold", fontsize=6) plt.ylabel("Anomaly Score", fontweight="bold", fontsize=6) plt.tight_layout() plt.savefig("results/vastplot.pdf") plt.show() def visualize_darpa(): # for sketch_file in glob.glob('sketches/darpa_10min/*.csv'): if 1 ==1 : # sketch_file = "sketches/nyctaxi/dim_32_n_3_k_1024p_0.2_l_50p10q5.csv" # use 24 24 for best result d256 k 256 (1024) anomaly_detection = AnomalyDetection() sketch_file = "sketches/darpa_10min/rdim_64_n_3_k_128p_0.2_l_50p10q5.csv" #"batch/traindarpabfs/25per_dim_4096_walk_300_k_4_costonlyp10q5.csv" # "batch/traindarpabfs/25per_dim_4096_walk_200_k_3_costonlyp10q5.csv" #25per_dim_32_walk_300_k_2 #50per_dim_512_walk_300_k_4 0_dim_4096_walk_300_k_3 # sketch_file = "sketches/baseline/streamspot_darpafull10min_vector.csv" # sketch_file = "sketches/baseline/splt_darpa_10min.csv" sh_vector = anomaly_detection.read_sketch(sketch_file) print("Sketch File: ", sketch_file) # sh_vector.loc[sh_vector['anom_count'] >= 100, 'anomaly'] = 1 true_anomalies = np.array(sh_vector['anomaly']) # disp = anomaly_detection.robust_random_cut(sh_vector) sl_darpa = [0.0, 1.0000000000000004, 1.4200000000000008, 1.620000000000001, 1.8600000000000008, 2.4500000000000015, 2.660000000000001, 2.606666666666668, 2.163333333333334, 3.553333333333335, 4.0166666666666675, 3.8266666666666675, 2.5980000000000016, 2.075, 2.4666666666666677, 2.6790000000000003, 2.6266666666666674, 1.9041666666666677, 2.3625000000000007, 7.323666666666667, 2.3486666666666673, 3.3153333333333337, 3.063134920634921, 2.320262626262627, 5.969333333333335, 4.417166666666666, 6.199833333333332, 7.968666666666665, 3.1812142857142867, 6.162523809523808, 5.600134920634922, 8.386054112554113, 6.047714285714287, 4.551000000000001, 1.7697138972138982, 3.614246031746033, 2.480444444444445, 3.6538547008547004, 3.9801907308377915, 8.834181096681096, 5.261960317460318, 6.4440873015873015, 8.789714285714286, 4.714586219336219, 8.04961821511821, 2.5418132978132983, 7.096460317460318, 7.826078477078476, 2.5750670995671006, 7.68892007992008, 3.289951346039582, 13.420904761904762, 3.4483250670897743, 2.714681762681763, 4.418218118139173, 15.451951465201466, 6.739684550743376, 3.6353293650793663, 3.191541549953315, 4.221762570762571, 2.153847555952819, 3.109875457875458, 3.456950705727022, 2.0999702634677067, 1.7787056255054985, 1.764123928359223, 1.888398291251233, 2.1237179487179496, 2.3554988921579323, 27.04, 1.4998784545456214, 1.8871840829000228, 2.1192714078931822, 2.523507449178502, 2.239671578421579, 2.2529392409483693, 3.0643626177743837, 1.7397439836149518, 3.2541237553342834, 6.007199999999998, 4.979633699633699, 3.022961038961039, 5.0280000000000005, 3.695000000000001, 1.181985185185186, 5.990666666666666, 4.469416666666667, 5.625238095238096, 6.6290714285714305, 5.471904761904761, 8.187222222222223, 6.22639393939394, 5.630380952380951, 3.611518796992482, 3.755980392156863, 4.919714285714287, 5.687798346763989, 8.450095238095239, 13.118333333333334, 10.500526315789475, 5.1608359859095145, 6.445960317460319, 4.468441225441227, 94.62000000000003, 1.849484126984128, 6.652187590187591, 8.298173160173157, 5.727428571428573, 7.41424844720497, 6.326612612612613, 5.260150270781852, 4.67154761904762, 7.080579365079365, 3.9539688184156283, 5.400383394383394, 11.620560606060605, 6.3928064713064705, 7.091154061624651, 4.573704184704185, 6.098405483405483, 8.40033333333333, 8.324523809523805, 5.90677399738653, 9.351690476190479, 9.586746031746031, 4.338500000000001, 11.507795959595956, 6.9307226662226675, 10.670614870509608, 11.878396825396829, 7.195762597052069, 8.516702003878477, 6.877984126984128, 15.88485127629807, 52.858583105272764, 14.575487772812583, 8.832610667626147, 27.922016441891447, 24.288219378700596, 10.230674551488356, 9.96259378212087, 19.37658603966858, 20.71149731984562, 18.11692194476176, 11.720506869377614, 12.556118281296232, 14.40514704971671, 12.711814221023738, 13.611805977546764, 11.695705313453097, 9.0722865139116, 36.89595798259711, 13.599971055244287, 26.120275743359702, 15.813094768258562, 39.845679618163054, 17.78679301417537, 22.838877823016034, 15.62679340936206, 8.283368255660255, 27.842289826596406, 21.127534373749498, 15.221262595608625, 17.381740030622446, 9.146739426050868, 6.846115926499629, 13.071590108441631, 21.923272042996793, 10.317802546379866, 18.425980322620006, 30.234829644481206, 14.531590541059806, 9.573266545302635, 8.987315507648862, 16.427142411584526, 6.38453513760854, 26.95818628296048, 10.9001273295491, 21.382636009368646, 5.6808780355697746, 13.785458700084103, 6.208451253250925, 8.285535876579322, 13.75196263746655, 7.0574740066299375, 12.39048394540935, 24.12781351701881, 14.607803294602528, 5.907120080805687, 9.537022880394684, 28.923416540459883, 18.215603996608586, 26.229191444520392, 26.32272596263386, 26.439771672771684, 21.58314554772714, 11.215849289398824, 5.918494842282637, 8.92842238956368, 8.062072458727261, 27.439653670375037, 10.015162493688404, 29.779922410922403, 22.851694083694085, 9.900029127883176, 6.496280127897179, 31.12283203463203, 4.572369865562637, 5.786272283272283, 5.032613275613277, 17.240070485070483, 21.522490620490622, 25.278413882277693, 21.743482141473194, 14.61895238095238, 12.677347022860179, 8.837439198732305, 15.18930429864253, 7.245868686868688, 4.233264207433517, 7.6578774282402025, 6.6793896789485006, 5.597083333333333, 13.952092231619755, 8.786316017316016, 5.512380952380956, 6.562544733044734, 8.441238095238093, 5.790069675736741, 5.166466193373899, 8.4475087076666, 5.500767930152801, 5.12483543799952, 2.775991635543107, 7.107941169941168, 5.193493470655835, 174.24, 8.673855921855921, 6.023595571095573, 10.485618527671157, 9.90137228268807, 4.409333333333334, 7.986009984639015, 6.630210802269625, 9.920619047619047, 5.533016692801522, 4.587290043290044, 10.208107238392842, 21.54610844710845, 49.65733043769974, 34.89217267877051, 16.117369963369963, 5.2655962046904055, 6.129448051948052, 7.99017165148744, 6.420636392846921, 9.652349697404048, 34.35008129326216, 11.734443974383106, 15.562287938051423, 8.648869408369409, 7.01916688213747, 6.56917771701982, 8.584023549621826, 5.639651986575515, 6.725441919191919, 22.628654168516313, 34.157179059153165, 28.72741929323071, 33.914209571054805, 12.751380342289602, 59.56423990695492, 18.123795261927395, 44.88750797704535, 68.75638313538315, 68.84855960820367, 66.65561532058473, 66.4490010734879, 34.87412711580358, 19.30370496217802, 29.796296196875357, 25.745602983181634, 78.08579198910968, 37.06561628017687, 25.84962146907153, 37.46286858419658, 60.145880896174184, 28.8026926747768, 45.778784564969875, 47.00360624270333, 256.0000000000001, 45.765418059157476, 75.87339742141914, 217.4923333333333, 234.5466666666666, 51.611096143298596, 26.480645471444625, 42.8401704129204, 27.613920094485955, 22.4861896525969, 32.92889432390501, 24.508271045980088, 27.921504458934386, 41.08780572562321, 44.303331464358315, 21.904861023608355, 18.994658952034495, 90.9135948188927, 48.451170071758305, 19.610725088443647, 37.15938147749761, 36.828293539180876, 26.988203625818578, 50.42084675421529, 25.39270676488424, 18.69621855867736, 111.56150768551763, 160.23137468671678, 185.79399999999995, 14.259420460213292, 70.11899432584961, 49.45946264906402, 25.514827977984393, 72.91996915365337, 32.307471982403825, 51.804427351028025, 16.29518208087506, 17.316294907478554, 43.86812487507389, 12.880700724902727, 23.12664894119357, 58.12136223274934, 56.13361634199133, 34.4468547008547, 30.24839194012656, 10.030587700724277, 61.438566137566134, 47.396100807106386, 38.999710879763505, 44.52266685945632, 11.151174297924296, 47.5719480356245, 21.18413364413365, 49.04500356273154, 41.47301824918002, 32.55670766285434, 30.195910524073206, 44.124127381390544, 38.59233230859317, 27.730611357479752, 34.74411389193359, 28.71767957904165, 49.39840476190476, 40.22545850640586, 23.684163225663227, 33.531199134199134, 34.53729659498209, 22.01248595848596, 11.745338458629787, 11.950060425032937, 8.955575773899298, 31.23491965169334, 9.194701528771128, 7.786111214744211, 28.89396745525007, 50.94079412381619, 11.574547174985897, 42.72398173055016, 25.536105230526058, 204.72378787878793, 18.801039543381375, 32.54878533042466, 37.28801171319719, 43.24845238095238, 11.817689806151883, 10.760127602702056, 12.24435586314044, 40.608207749766564, 30.16583633247528, 28.105479831537977, 22.51133900564631, 9.895192528966085, 25.727486017430838, 13.063970993372111, 13.971930547225504, 13.097792429792431, 24.877006418569554, 16.71685317460318, 14.86511111111111, 14.36881007881008, 7.313338102537897, 12.77489438339439, 8.567069697622639, 11.185876971068145, 14.561406151983551, 20.377666666666666, 16.3628883286648, 10.158574296704328, 10.81099677282321, 17.985198646039205, 47.96712306674807, 55.569324188918344, 16.8274467767676, 32.59738213801149, 12.63999184578741, 18.116949928194476, 15.531208607795561, 20.411191059062528, 20.737816107126676, 11.997042372087718, 9.299228086757477, 20.051917924661495, 35.29627484441793, 32.59275738563496, 18.845067176446303, 14.862712375349206, 13.594655351127557, 7.854556982057959, 6.340112949882739, 6.745851567167713, 35.45828157153083, 23.68984778891028, 13.866494697110422, 17.323509087651363, 7.089541919250832, 24.605193639001296, 9.920252427745412, 11.173704926809306, 24.828226930729084, 11.074508891304925, 12.290277469000713, 17.935256229637808, 9.731490470387246, 12.170032960835517, 8.249946614336467, 19.40556474121583, 33.11007454966117, 14.977125397050896, 9.606475982376846, 13.877532562724964, 9.11897674106761, 19.022783928781845, 231.88166666666672, 252.21999999999997, 250.6400000000001, 251.08000000000007, 14.915925316076672, 243.4400000000001, 219.08666666666664, 11.756457822943561, 8.967071892926164, 9.123418816647352, 6.887436335073637, 24.195166753027053, 12.351597325235128, 13.25993005121449, 33.37107629728373, 6.57647696889942, 37.90155886284339, 20.479374785842182, 28.917224224641416, 15.981442890854035, 28.88646547741903, 25.004347948347956, 17.166059612936085, 5.17967965367965, 7.692126984126983, 7.197523632250102, 22.956412698412706, 10.573655844155844, 19.061777777777777, 14.007752348800624, 17.899779331779328, 14.213457070707072, 6.6261707410236825, 16.439956058434323, 11.643660054122122, 10.233145824330942, 9.004788270552977, 13.122549599805968, 8.064404437846893, 5.183224553224552, 8.45267434715822, 4.712257575757575, 6.028017536483403, 8.862937560478738, 5.508625159154571, 10.752853107344633, 9.942634725096026, 2.4791705676620936, 7.2607061923583665, 7.556027733923845, 20.150589043747587, 14.890556077199296, 10.478825356887516, 14.425177738927744, 17.585712121212122, 6.615474053976685, 19.04538993712381, 20.077621123321123, 25.90031818181819, 10.467523096022784, 190.11889822595705, 14.156410714285714, 10.45700432900433, 22.359520923520922, 17.225427664588995, 9.271538265438263, 15.295802780552776, 20.73142701581539, 11.86680782639681, 7.503165846543319, 13.18277736211779, 11.000525530025529, 7.773113730567871, 12.139197390026789, 3.8862393162393167, 5.39544461887319, 6.269925817216839, 4.327121794871796, 5.99380635704165, 5.070264814895251, 3.4309266409266423, 6.864625740160223, 6.93712601616936, 3.040166666666668, 8.388347278041653, 6.406598683891488, 3.3450517241379307, 6.91429093129093, 6.93480130980131, 4.171000000000001, 8.9450771096986, 29.110306369987917, 43.72591595931302, 111.7928724082935, 79.85671435053148, 110.74019321594322, 60.209269102308696, 88.48917355866017, 75.42280436230435, 62.28854612763098, 94.14734997389954, 61.51235318963802, 65.75828907882624, 53.973993251556394, 18.813522818655482, 66.28811877741428, 51.20159017214947, 46.786345268271006, 80.62459858389451, 76.02560145154185, 21.154291399211402, 86.33210830019655, 18.01776968765887, 40.528410248508685, 23.469283139486244, 79.27143470926833, 99.13234715284713, 16.369656907146297, 54.93751904957787, 38.98522029673113, 14.738483666972295, 95.21723905723904, 84.09281428571428, 23.42043289903588, 107.75021212121212, 33.803829021551564, 27.048853504092445, 114.44805555555556, 96.74256997356427, 38.02342926396564, 72.15724647136487, 52.51811760648968, 84.74594380370229, 34.948731891647455, 78.21082332308491, 15.357621461846476, 31.870309769499205, 28.175474900730578, 45.53038031302453, 51.16638156288157, 40.32344079968325, 36.017937011045376, 70.47261035321038, 62.35651626583435, 36.29733821470266, 15.04300261523374, 18.138884147655723, 33.68866407459053, 14.412407826150309, 15.282315831616073, 11.320003048470932, 11.82944183037174, 34.70633660122775, 8.532608323920092, 28.190830292658934, 19.43359308867978, 10.609073248240346, 18.53894442159148, 6.891641025641024, 18.16888622196517, 6.337180935922315, 17.234422258297258, 8.903049190889396, 8.457635870139622, 13.995785976441859, 22.00616017316017, 13.128644467853176, 12.005681045212526, 11.66190885040885, 8.858947496947497, 7.101690845386497, 21.117046641267233, 15.610370395997446, 10.99275240853917, 7.851375308901628, 23.41575885369012, 7.909174147250874, 6.218553111639318, 5.1874809152200445, 5.524517268985459, 10.351315789473684, 5.994930735930735, 8.601683938106135, 4.1046783706489585, 4.372190476190477, 14.452104542516304, 9.079083394675498, 10.998008055350372, 12.792810800310802, 22.805550671550684, 11.923546345879064, 8.911460492535921, 7.196103896103897, 158.6919696969697, 6.45527922077922, 6.287724716202271, 5.36442930741143, 8.585392253816517, 7.082503969759717, 3.9686774891774896, 5.796569976922916, 6.8838412698412705, 5.171501221001222, 7.203989745452569, 4.423616433587496, 5.524345519977098, 7.524333333333332, 5.990616738816737, 5.507054481466247, 6.333813513284103, 10.996441542203925, 5.6163736463736464, 5.120564781254078, 7.361165891165891, 6.721808080808082, 11.050766844266843, 6.050502290107555, 7.611673542144128, 6.4829684350736985, 9.282055555555555, 8.944864756158873, 8.649997557997557, 10.650099694423222, 7.744477370852911, 63.12181224898252, 27.474283792033287, 33.55237243286843, 45.95146159214024, 33.05257731817546, 114.72760807448485, 55.15915289163346, 25.685725570888255, 27.89554380375332, 32.33507761181242, 38.671361970193544, 42.85233940960225, 20.419355629672708, 35.81692369293833, 35.79624871414686, 18.13937556133584, 20.09381451287761, 12.896178332945368, 36.486976964727724, 37.49788894765365, 162.68834593837533, 12.45897715671828, 30.000273203957622, 15.609543464088292, 39.26531127761127, 18.028882178891717, 27.867956026239032, 20.99650399203248, 27.716657902236395, 30.141408922607802, 71.80829292929289, 16.44325065240057, 33.21517973294149, 12.508085430184886, 18.54703855765782, 10.59585138335189, 250.5200000000001, 23.666325985874312, 22.416518988540396, 41.60743682058681, 19.675083298436316, 23.772514832875316, 10.194122033185494, 18.776676244786668, 47.62400269259311, 18.252807390841113, 24.913350657400102, 13.318285935372797, 28.507110274423273, 39.123706206947595, 24.562357192456084, 20.67178882332953, 14.078844261640905, 15.909051792810462, 16.292526734699116, 23.765329727223673, 28.966229178990943, 17.108782970228194, 32.67459987052851, 17.351643348999, 29.121712259111195, 38.96805871274114, 27.686631285818113, 34.22033000822707, 9.381277640982923, 12.124605674687064, 15.224841310736048, 15.094291115420525, 12.124318764603714, 16.373483965393994, 32.522003108003105, 15.716379132265791, 12.266782378991303, 15.310450466200466, 9.529194449218648, 6.402413906559439, 6.1109996171751595, 9.263782505336852, 15.982723221176109, 8.670482097795565, 14.615797959925832, 5.772154410369651, 17.282689942446016, 15.639711935123698, 11.811944497531453, 7.20306615069331, 16.378459234241213, 26.69823532023533, 19.03183694083694, 7.202315992788007, 25.563247540041655, 28.165618159618152, 24.064854134589424, 13.413784682740722, 7.883887358811763, 18.051896901344268, 8.08764250072114, 8.72216583124478, 17.59643599187362, 16.712514221158962, 10.342004802711411, 8.62999381972504, 16.11061122211122, 17.424565130947478, 7.017944912923536, 11.543808611678177, 57.089363985635956, 36.96026713861723, 35.63886074155193, 13.611646312834594, 240.9899999999999, 8.887222342311096, 12.541217985025344, 12.24514227875884, 8.845233261163916, 10.190774457972001, 10.434057438493593, 13.204520430932053, 12.599280560775263, 17.93686290204778, 9.482841101218604, 8.924796733177818, 23.88408301203154, 19.65508189481573, 14.159095791514883, 18.999508569516518, 11.763818765813804, 26.477372426632908, 23.242178889467635, 54.13296071546089, 67.63379567457966, 52.701434232434224, 46.47126798303848, 64.71946942599885, 28.70470992009011, 38.50378204716598, 33.11695995495193, 11.772639328684566, 18.390967210946275, 16.479668850233384, 12.383137923080426, 12.926354091526695, 6.191814801040324, 17.992945878819448, 25.64966950727224, 23.38102163870335, 19.334580776400575, 11.450736169750666, 10.77296489067011, 12.404250567744494, 14.385363836707645, 31.26845829364518, 12.945658030525747, 13.21938605970696, 16.79575154710321, 18.466114861275297, 9.73461389984552, 29.256409245659768, 14.388686145838262, 13.878367082443175, 17.785061313278057, 22.76712259146083, 23.26950981612725, 19.172274250022156, 16.144825623220044, 28.498014011787937, 28.481873057670928, 31.040709590927435, 24.42865331469357, 27.630342598370515, 21.47040584415585, 17.258242035412703, 7.479677970963271, 13.002381891894018, 10.06353927325896, 30.460180708180722, 15.733849368972836, 14.521602318539655, 127.7264592760181, 67.37804381858845, 20.3598954248366, 19.679715727890212, 23.840593864805943, 16.188140382977693, 27.84820977331847, 10.51881406111533, 13.80736587127081, 4.79356200764165, 9.968798013326616, 6.1155441780441775, 6.037872143060122, 6.101244631185808, 5.946574390521757, 9.87301958161169, 11.153905246714068, 7.003413159939477, 7.775180799755799, 154.34385413245758, 7.998084335255388, 8.78329841838987, 4.763890886890887, 5.6696838118022335, 7.306309523809524, 7.203751082251083, 6.849120681605974, 8.968952380952379, 4.236905920922086, 8.378583805083805, 174.37911111111111, 6.930985058800848, 8.058793636188373, 7.71119011707247, 4.320030212462205, 3.318168456065009, 4.47753154849466, 6.954563642240112, 4.781507995925644, 7.028025030525031, 5.625716082392553, 7.937942287244918, 5.25746275946276, 9.006604434567992, 4.0362966305299075, 4.519234982638183, 7.67986404416839, 9.299982966309056, 4.496453432141983, 9.045960439563187, 10.07024156795585, 6.657494040956464, 7.674141971753734, 7.5601091149103326, 5.400342043920991, 5.612054663454114, 4.685338297125242, 7.018114076543423, 6.4317215007215, 12.04717857142857, 65.2564754901961, 47.57563861138863, 54.170948962148955, 25.158312099573035, 11.786538102541943, 12.297619222664009, 145.61323020117138, 7.3243349308793295, 18.748949848626317, 11.673275026369375, 10.051728022077945, 11.413848055105284, 6.97033417253616, 6.951179973152276, 7.310848602557263, 20.6258259233521, 21.23166816784185, 16.894346141209414, 10.685973158787927, 13.116974333484828, 16.14988081643753, 15.009285693677327, 5.86796849735895, 7.298271282866242, 29.694090061183854, 9.252867190471523, 15.815498407845459, 5.248800350634451, 15.386443123553969, 6.593052648074113, 5.924541358775022, 13.198962656796748, 7.09891718310098, 6.258356317945546, 14.786132836999483, 6.634399532985791, 15.587228590280834, 5.1554780452209545, 6.647110997406465, 16.278856417358007, 10.043795636082406, 9.871026783395306, 12.791951417345247, 10.301744460060101, 12.942346980962288, 53.012252487364705, 16.95789814529067, 89.26340905190906, 7.544496735987636, 13.999147289827686, 85.7027992982195, 54.931379290368525, 25.19438269421681, 27.43006695955061, 7.5115820571107905, 44.7806746560076, 17.275173684790108, 23.054579619557817, 37.75922832722833, 9.839630859652473, 16.934517483471023, 23.53676558996559, 7.670305462511345, 15.414912650244489, 10.936148030918094, 17.309181757997607, 15.992502416959736, 25.562446093397487, 14.08057073253544, 23.822601731601733, 141.0358403578403, 11.531176431869929, 14.162926295926297, 3.3081521517697996, 12.986149229232545, 3.9386443441410672, 11.888666454460571, 7.739673114981779, 5.9408126318126335, 14.006225601883495, 3.403572716555476, 3.38627147320034, 3.22352017719123, 4.074230722342793, 10.294681457431455, 4.174608252858253, 3.1072383040935674, 2.3257830261136716, 10.436968580439173, 8.090781763754118, 7.444439603451508, 16.852621745493067, 25.915714962299692, 8.34042751771976, 13.603175277345759, 8.277049293640442, 10.571624206253517, 12.631949456975773, 3.79588888888889, 4.077516339869282, 4.996506571859513, 4.258990052431229, 4.5972868817342505, 3.0576352583586632, 4.535858940649492, 3.210700778775765, 5.745734530175707, 8.397895180147772, 4.717836219336219, 4.490992016242353, 7.667530011265538, 2.9709682539682545, 4.35140876959298, 4.745807724546106, 4.687734739987229, 6.304261373129793, 4.435376162039447, 4.095651233871049, 5.4410939064375565, 5.36324050673808, 4.737084123770967, 9.23438888888889, 13.107914214651949, 11.105187560920369, 13.336247347767474, 30.104619788879855, 83.87077397625718, 81.20823628037574, 79.35238367994864, 89.77634594315427, 113.21479820424675, 72.5103487741933, 96.62027651515152, 90.23040875790875, 93.29369435154214, 89.7344322344322, 85.73326408662271, 84.82433073593073, 78.41589976689977, 48.42747973853712, 49.736491100297556, 76.73436180124223, 99.49315126050419, 67.71181659298539, 66.75177404479578, 55.806834859584846, 63.95115419540674, 94.02797396600278, 85.20255661881977, 48.38483610833612, 48.56257647254708, 64.7065273923523, 66.92286570183626, 112.84414492753623, 121.1408694638695, 47.298463724114136, 51.01297152804129, 29.408901496417656, 56.95806528559158, 70.25029820465129, 59.15171640286613, 88.56380158730161, 79.3584482850483, 62.63867996665778, 56.74702393684747, 75.23016666666668, 36.800279317439255, 58.71865445665446, 49.62617172113657, 58.101805187731664, 37.0013891582274, 53.484463644878225, 76.57571475235291, 66.28678068970754, 76.72343499516477, 58.89532063797282, 56.43946354068636, 55.728109968554676, 35.32652597402597, 62.27199353894481, 44.67383741331133, 55.091881634705175, 51.14136328051035, 59.25529946719948, 51.26011835522201, 32.62970907719582, 34.66946901986902, 75.33435858585858, 48.460432567432555, 10.493692957042958, 72.62858496732028, 46.57846172346173, 47.226715083442635, 39.68308357383357, 75.78681355572533, 62.96989177489177, 47.02605315962864, 75.75947619047622, 74.7656953086996, 59.95492868242868, 39.700184578189834, 60.94585353535354, 47.22959188034189, 53.410501675154116, 63.16333837578918, 44.540760298937386, 44.46919075135392, 47.00045709845711, 51.78621016184251, 26.529230619954753, 55.977142857142866, 59.34356782106782, 61.1691792929293, 44.377713064713056, 58.687858467803714, 38.63292495439979, 52.23369214119216, 60.65892982526342, 34.84249555752275, 58.452163326869226, 56.985016692120126, 41.62634537684538, 40.85975722664433, 65.74328776778776, 48.73435775423407, 52.95062426192733, 25.81150406729445, 39.79419153069152, 49.83476371657019, 43.18010103703174, 51.32846366435498, 42.031444406900285, 57.57648051948051, 45.33148129648129, 44.67683871329909, 33.16088934594817, 38.91234744667098, 48.3921398090214, 36.708893835209615, 41.8645989729225, 39.18689547280676, 35.84412348762349, 37.09969719169719, 25.721697178413216, 37.85942827356681, 34.87763252270605, 37.83895384027737, 37.56585553335553, 26.457909701409704, 22.78355368934471, 32.75492051306182, 29.999366082099506, 29.93116103607435, 47.24407142857142, 30.154439866646772, 26.589568546950133, 23.59526598547651, 49.20916456582633, 21.08763888888889, 34.72143903865387, 37.165773617187405, 28.183664630089552, 31.66283159165396, 71.23513492063493, 19.414290613669092, 25.107425925017786, 23.060075520970255, 28.642792878441153, 22.981016856478398, 23.402590351796807, 25.26766973658151, 31.716680672268907, 20.894511581555694, 21.303514213260524, 23.082222967381725, 17.344890640175322, 25.80493015334353, 18.33925516995082, 51.943547154081536, 64.14254194736928, 33.723571942677204, 5.399108876786296, 3.980147186147187, 5.4719312169312175, 15.471047179784984, 6.697329004329005, 3.8364163059163063, 4.978984612557318, 14.4706075036075, 18.974018913662878, 21.547986067196035, 17.404079596971957, 26.291296092796095, 24.95849850649643, 12.436152675584513, 11.073192705195057, 8.292873508010727, 13.2181435670679, 15.105852882347177, 15.426048535380504, 19.698545882480097, 19.295572382983377, 25.509699226937148, 10.248395431177869, 17.285284027580122, 12.27407818357376, 11.805642651849098, 10.323235316371028, 14.633317099333905, 18.19486527361527, 18.90693191048717, 26.420127350273262, 12.291542451710763, 19.1678121692968, 24.297645258250522, 9.714208126039063, 27.71489566546855, 9.682134736739101, 10.995160533910534, 10.475533778157956, 12.891965181876945, 9.746281623781623, 17.95920389612404, 14.891238095238096, 7.444642526260476, 10.513693330358093, 17.818857142857137, 9.434517316017315, 15.796762077294682, 25.351380952380957, 18.445815295815297, 16.647891152057813, 18.517083916083912, 4.204686257192652, 7.095984487734486, 7.971956971630245, 4.220255411255412, 17.876488687782807, 8.942502800622176, 6.676834249084248, 13.730334776334779, 10.234182853378508, 6.737056267605802, 8.954726107226106, 12.465363581910747, 7.497181615769849, 9.382777777777775, 6.4275333555333525, 4.314549783549785, 2.4680000000000013, 6.320599567099567, 6.660935546722781, 5.09759249084249, 7.918547168855487, 18.81112121212121, 7.168442141715725, 23.73347186147186, 9.429657598440206, 8.583438744262274, 5.285904761904762, 5.197116466866465, 125.85711111111108, 5.168373011046923, 3.786338603425561, 2.752855701036553, 3.0125246798119143, 6.895927990537466, 3.170558867846103, 7.720632756132757, 7.231617243867244, 2.836663596450832, 4.186298924479777, 6.144302099334356, 3.715598925170506, 7.467620629370631, 3.732775410413342, 3.2378542568542574, 4.181693861693862, 4.081260536398467, 3.770039682539683, 6.412923576423576, 6.476769841269842, 4.6841115273615275, 4.04998733454667, 3.466146627881922, 4.142351421789128, 12.09523772609819, 4.517017316017316, 2.508903096903098, 7.905286928104575, 31.620781635117687, 30.26401945440181, 30.72861456125573, 21.361970800867738, 23.26571602245364, 33.2886742146742, 23.114760867152174, 33.58511624514893, 19.74308720825642, 16.76272969187675, 25.87570234607154, 27.715251771683988, 20.82286292191608, 30.062838044933123, 28.450573717948714, 57.88563828184976, 21.314673228646576, 24.583627766259248, 32.883871199835596, 20.95164587944389, 19.307515739604813, 21.206248443476976, 21.998016630426527, 15.875301827784293, 24.137543643712608, 23.963885059145998, 24.795025031719312, 20.041420847704426, 30.081039901737668, 34.241785813099945, 21.382386508099746, 20.465076447025066, 42.6516899278882, 20.81124059167002, 20.013458966604766, 25.00583265865485, 23.353260612658758, 20.79274891022589, 32.54570942035261, 17.373984502052565, 24.673138499181974, 57.823472736076184, 12.665419839891904, 21.158723144850548, 20.709480987810142, 24.257585463863595, 201.48691269841282, 27.649108946608944, 20.516375595565194, 24.593939610389604, 33.14464893439893, 47.41507092907094, 17.772147325481534, 18.00588924666491, 14.74544646464406, 28.52336522717049, 34.24374147519146, 24.359223704400165, 17.309152150091343, 46.247691524677585, 28.277490801547984, 41.22883774367396, 40.18232876905704, 22.55259288393763, 20.19985994560995, 28.939996605132052, 22.883624721967436, 17.66046468465523, 29.28586695450233, 21.810593738235465, 34.94888131729575, 23.51128624903536, 17.52092476165494, 28.862658520040938, 19.15658534619539, 27.18896686156981, 13.485741974258449, 9.17479583065174, 12.541899444318124, 18.820996498149015, 13.068440292321212, 9.66048885507698, 8.957134660565659, 17.59404812859307, 12.516326842722055, 15.466106387129983, 9.654072604174713, 12.775403323390696, 8.441826555106756, 18.47132865113902, 12.73512357826543, 11.541960117951653, 11.473502269972451, 18.08643310209196, 22.43331623801036, 9.656425881784374, 13.56849729365635, 12.388588437264099, 12.534826012166391, 20.489001448006107, 20.0711799523188, 25.066041531067917, 10.321813465064642, 9.734024373226209, 5.964475213779522, 12.917162627861696, 11.54162519087786, 12.7512892556047, 5.810309945664639, 13.178496253746257, 8.294672490650047, 9.556702802013948, 14.881141745367449, 8.655713352007472, 12.619201687201686, 14.631356113831528, 14.39027144750674, 9.098933501683504, 7.016303172782378, 16.971898074148072, 16.722634920634917, 13.247672893680132, 86.33215873015874, 101.03894444444444, 103.5290714285714, 70.98661904761904, 5.379225629791894, 21.04441881548403, 15.79048011442749, 4.473923674364851, 83.76283127058127, 14.154985958485959, 5.078162951507283, 12.490193362193361, 6.701462481962481, 3.402948051948053, 6.896249182190356, 12.161331843595, 2.4165213032581465, 9.313732586233158, 10.306975468975462, 2.2858412698412707, 8.98158371693666, 8.431696995986472, 18.294001307900235, 15.548, 12.026425027586793, 8.422305555555553, 5.013378139919936, 5.293322193073423, 4.160107744107746, 7.618853387373309, 141.92906349206345, 4.930438339438338, 11.728678359652047, 15.699552187925072, 4.477749799661564, 9.659375252908179, 12.537577181596266, 5.48644231911879, 11.784211090496804, 4.985478637671621, 4.430986445917634, 11.486008238749204, 8.685319199177258, 4.019180063794668, 7.220752275502276, 13.762455553735734, 9.367694444444446, 7.880623937311668, 7.223747715030068, 1.1467184466019424, 16.19173791527522, 43.012240106951865, 47.383514332328396, 29.040192607138813, 46.46880586350768, 27.09453042581752, 42.70342486423146, 54.96290675990675, 42.05454621095752, 52.09415155991115, 46.480828848687544, 36.02166553178782, 37.506361920855966, 59.86695695611579, 46.15716788766789, 42.76431368341804, 38.40729780703108, 29.88016286817758, 40.36644280062358, 38.17887185621397, 40.61756992337166, 34.61852823565324, 27.26814435564436, 25.28587917429047, 49.876424444704064, 23.557834099509023, 43.95169215832971, 32.78447840755736, 66.45369885490852, 66.1960253456221, 39.61424932183399, 30.968039853335522, 9.5531437546301, 32.769420265214386, 45.48128354978355, 26.274608033728722, 28.84434849234848, 24.614850162908986, 20.801848155929036, 39.42287590187591, 27.430370400509325, 31.92621545121546, 46.11281315360738, 30.020816447707166, 21.975599415739172, 21.528639342088063, 31.360610336976904, 25.458193471698987, 27.092944099812186, 27.37129953040734, 34.255113275613276, 26.164917701863352, 24.08863508581531, 31.537085410887958, 30.31225933350276, 37.511783466533466, 27.636730411401466, 23.762038023895613, 29.99491693861693, 49.94961262626262, 32.03407215007215, 39.83446029460737, 29.405218999844248, 26.028093400063995, 37.3538836098542, 25.71649677239383, 65.46873015873017, 31.471634750354557, 32.97822996447996, 33.395580811345525, 9.787331890331892, 38.290896205244024, 26.063148384295445, 36.72728715728715, 16.98425950511477, 33.04600602665309, 21.45814029090747, 34.16297494727494, 30.62399808035102, 36.612081049218986, 37.50437506937507, 49.48294769180312, 34.47966606553435, 23.933602064602063, 31.69999428349429, 23.16838261179825, 19.908758817333187, 19.611893467643473, 20.29086706986299, 24.615571751419036, 27.005563112326268, 32.44740569561157, 38.01520961494647, 25.60732380038262, 27.92783658764696, 26.32038111760708, 23.386040049019574, 31.74789599878377, 20.31403219819396, 19.641644490227755, 29.25361283859828, 18.78109224358933, 20.242747803108482, 94.37061789838513, 21.92681286491286, 26.163925436881957, 30.598761682761683, 26.540729903007882, 28.635942102015623, 22.261664485840956, 26.152628091722516, 24.495113783800736, 19.310801987461655, 33.64128754578755, 24.392768035507157, 17.700211643018143, 35.12143374023637, 29.20232280584912, 26.906015890240024, 22.63982787010736, 43.35335536294826, 24.00659973798131, 16.632875583298215, 24.203931348727174, 38.535448370343104, 21.62976486220412, 21.274779864757072, 24.124983458195416, 25.46302148940384, 129.42658585858587, 33.84984446173322, 29.03890037837978, 254.66000000000008, 247.758, 247.76, 254.64000000000007, 231.38000000000005, 244.0133333333334, 17.251110163447642, 21.230596660585316, 73.08525532800532, 38.868570937516594, 22.60561031109414, 200.4112967032967, 32.493682478632486, 24.992143106467278, 26.208069503824916, 13.238566626012444, 26.460503586282996, 22.656516756164038, 36.67948723498724, 28.919488508223797, 18.579515034580787, 17.892794735658864, 30.54139198965287, 30.189167776152313, 21.971318533805384, 23.74420573327638, 19.78026849327568, 16.47058663011918, 24.736762684683736, 21.246527679836504, 23.973217618982314, 13.241479107725658, 20.437864909571566, 23.705191657376442, 23.820107911057406, 18.310933083256618, 30.649220892557736, 16.431876512359327, 23.411983151127448, 44.27308703577124, 30.746792558395505, 19.097788856729494, 22.928768600680364, 18.14233662143956, 16.584760845194925, 20.82039743675657, 16.078383714835887, 22.933882093740454, 32.03494445114568, 23.660402181152183, 18.644091821974644, 39.00311604251156, 17.328139623408358, 18.94904344067189, 12.93559401811019, 24.600620491701335, 23.16060663193016, 12.867837752306169, 15.719621325090461, 15.04566978646854, 29.314373675018892, 14.434184776161722, 15.314974449818445, 19.417324732285255, 14.82518250896613, 14.942085954061794, 21.041320924105136, 18.29682857863932, 19.31267024905431, 20.309164138683588, 11.30997660558653, 21.781030878614445, 235.78461538461542, 251.04000000000002, 209.71, 58.07369473173885, 243.03428571428572, 182.31666666666678, 37.786093795689624, 22.881367518210894, 44.784868838763565, 17.79309132595635, 13.275164583841994, 14.380026058482581, 26.154236378087003, 18.1817489353465, 16.89697816299478, 14.45956382383364, 22.935359947242297, 23.581069358178055, 18.27091620213292, 27.93252991452992, 15.567446332099276, 16.48366038683427, 18.447768030662147, 16.568370490620488, 14.375125943770676, 11.477321479174421, 18.775206547206547, 10.90608544590085, 11.434060077177726, 15.899811231252407, 12.188825006886868, 16.81376767676768, 12.323645361947992, 30.86890975690976, 10.148750890716538, 11.523688880835936, 12.545946302722617, 10.05844699976666, 12.849368620879885, 12.66777966389189, 15.029747474747479, 11.080185405686281, 14.50871579745194, 16.18611027861028, 14.436747365379718, 11.768849364687599, 101.5819998097141, 9.773641735674255, 37.99800745136091, 13.079763205250202, 10.845365782909901, 12.617916064893365, 9.418298370257196, 20.020336681931305, 8.371363844782072, 10.388915858811524, 9.392135775988715, 13.102388213180008, 7.342274929336791, 7.99721671743775, 12.27055832130832, 12.3205860704483, 10.617496575071705, 9.507700687655808, 10.748986711946463, 2.856221466364324, 12.666473001139243, 11.635196916630019, 11.105693231841572, 10.70034620008859, 11.478165943197403, 9.642063480063479, 7.815358151564153, 10.978944246426982, 34.45895651319784, 15.288327415676502, 12.876257474003113, 10.599754407244168, 13.43362373012862, 11.880469900951258, 12.068303659360938, 11.192493659186272, 11.356101756964659, 14.070156904420795, 15.307904374391832, 10.13223949011121, 10.612546917026828, 11.217950959684739, 14.60472148460059, 41.039306928432765, 14.83358585798446, 14.948764639508434, 17.878848601003398, 11.37139088250289, 14.253943707863565, 12.40768541167344, 10.614103747130065, 9.101826839498377, 9.828672216858937, 13.342338479762638, 11.733065421992194, 5.74624045691472, 6.511400258103802, 10.809303604996078, 11.818839239271162, 10.516847240994297, 18.54030699280827, 16.67214109185162, 9.876123301692015, 11.454911092716102, 14.941738888888892, 9.272646826412002, 23.31140908156884, 11.720802118933701, 11.440335052615833, 9.09592597864862, 10.922736854321364, 25.757384345904175, 4.7380373602432435, 10.682787303140866, 10.912596435550714, 14.783997602484073, 9.443663742612873, 12.059086694895523, 12.596542732084853, 12.35239990505972, 22.605029060202643, 14.01970979431122, 3.21721794871795, 9.43678305959873, 11.36497913904694, 9.797993763135503, 9.954137568357865, 10.119131871674004, 43.65614916570885, 10.202283143327262, 49.818861925550216, 17.03336299317733, 9.287211784898195, 17.14164463967406, 10.14423774864726, 26.93103981606628, 32.37973131587904, 10.941549777908138, 11.562043385750817, 10.515171991437162, 12.107195292667427, 11.26033560581074, 8.528767109373952, 9.347270111975993, 11.416326892044257, 9.796587958744897, 6.873981619539124, 10.017093265582526, 8.853800581855417, 10.40758701927587, 9.857082473082473, 9.953800049129018, 9.985919796148126, 15.756614003484312, 12.542389728803176, 9.566772587151707, 10.774990212352176, 28.931862937715888, 6.3717815465216905, 43.56134271284271, 12.286473252431687, 10.079452065668773, 182.69730158730158, 9.090435315561631, 6.471923731169013, 8.887365284058832, 25.908869303806235, 6.4047559250175325, 12.337871886283649, 7.500911669127485, 11.26294277038751, 15.430986497162966, 8.450042430352736, 11.439436125965539, 9.656264720021957, 8.492132841691296, 9.019976190476193, 11.035514071669644, 10.86929598388042, 10.421832791506166, 9.784658722498616, 10.674730182022236, 10.565032702804437, 11.457007486631019, 10.294602232712757, 9.25964329977591, 11.442320088856567, 9.29813425901584, 12.687396456158224, 10.534930398625445, 9.183283699947657, 10.854637426900586, 9.745141404471715, 8.265275125537256, 10.931815201069753, 9.077421001687389, 10.289357964119752, 15.572625196313746, 11.538889266597314, 11.276146032089372, 25.699166240242846, 8.800488451150141, 12.135609140704492, 10.63965869055983, 8.445843358855345, 11.142225833136218, 11.401840310239566, 9.360430500458545, 11.913815730490894, 14.390670656761234, 6.868276436193239, 8.824210985216071, 20.983249611075962, 9.808161729398464, 8.161875658225503, 10.539999835628993, 12.89626239931782, 15.3036329980587, 13.661688307694082, 9.891261790384936, 10.484185888675695, 10.440366458436522, 89.54665294604621, 13.733012048953748, 7.734964557605241, 8.506606884059769, 10.963808453041215, 24.43161269690701, 35.84828228654745, 11.246661289919022, 33.665371641587505, 12.656206161674582, 12.751356061025046, 9.973704751635497, 9.395958387678538, 23.307617569938476, 9.799231724874781, 8.607621720013144, 12.839838739300957, 8.36941796703054, 11.867530050725165, 10.125878740490707, 11.377564554322525, 9.156573761364088, 10.794380351722412, 9.644205595276501, 15.32016765594451, 17.86577262800173, 9.470174840253788, 9.022596189636745, 25.56268748461111, 24.529668545244842, 10.924096714370444, 38.161828236337925, 9.349205724687515, 11.232016670464034, 9.241528172186484, 9.420166285796906, 8.628389171901068, 9.406817561861173, 9.193271102064456, 13.317450943680988, 6.978647084657312, 11.456508144940068, 9.64371315308684, 11.321983707263557, 30.54828376604239, 6.540480345027761, 5.755450584581658, 10.088532089104685, 5.542688271595733, 10.784139714636929, 11.25900492229611, 10.267989436611705, 11.81962584672267, 6.612118607595695, 12.952953237079397, 11.068643311639706, 31.50847379139608, 42.95126095668384, 9.727563501777697, 10.636348556814028, 9.617893358942103, 8.911481341428967, 13.580366054598667, 8.04361814373396, 9.939612613127588, 23.97970731065697, 12.917404368578286, 10.208660815792394, 11.512295681946231, 25.92539149094799, 11.238765575555052, 10.011948051948048, 109.18756483516484, 11.33220326831534, 11.086274680126786, 12.224112188053331, 11.704824313872642, 9.350046072292674, 11.094293981164288, 10.90872857917871, 9.576999856457384, 8.189930269206496, 30.67665860874533, 29.48729885886387, 7.347341675610251, 12.547833270427912, 8.569910533910532, 10.471304024080494, 11.344532148247152, 8.639428466599025, 14.173799928571595, 12.801544298796289, 10.669867357345147, 9.26502652241217, 13.027039475236707, 9.53790065425815, 9.056663642623983, 15.316227089335788, 2.0849247436866487, 5.503220733289698, 29.26741035985986, 24.76876793772247, 18.617943705123555, 17.282968412420235, 11.356300809059428, 16.13628349911183, 71.42385635782409, 9.465129524582737, 22.30941315610193, 18.024075027638204, 10.889514449658973, 12.237643924816304, 10.814661238550611, 16.602563859887386, 11.48212265447794, 7.472644077836821, 250.8600000000001, 249.9, 10.424746940546555, 241.2157142857143, 245.65000000000006, 240.27960784313728, 36.48403704404285, 12.062670133947654, 15.556019905875731, 26.20100284931176, 12.263198871577027, 15.54902265125199, 16.51428803833769, 14.61052770145435, 13.008079752749408, 13.676456511664401, 12.751422970780979, 11.233325811669697, 9.036198098520588, 8.611919951261577, 27.59543251452678, 10.872632420241507, 15.151637532569426, 13.765441195061767, 10.335638754385327, 11.580739329312491, 10.160666261432802, 19.042795036601525, 10.600700201793755, 10.584145628738979, 16.573020023731303, 24.582583566286196, 11.601864193756589, 10.222437510087666, 14.931409802516322, 11.072802535184115, 23.610951786656656, 24.280984139171984, 24.890282925651356, 13.193510289362155, 10.879649073860286, 22.168808977403238, 20.419197016123363, 9.942207035117445, 8.420024268311234, 14.605960380156876, 14.454535564911154, 10.68747338201692, 35.69474634527984, 21.93926446064389, 10.1448069540688, 8.75837685278635, 9.432856245120647, 11.352361619008708, 10.484317934138826, 11.119634209911887, 4.6338208957242575, 13.857949064437454, 11.257179530909408, 14.798186948761389, 10.891657404471221, 9.089522936615518, 11.53762952253616, 8.230168249774184, 10.121511387859245, 8.882061599781293, 10.182605128796768, 10.34045363861026, 13.234324561403504, 7.4538062502998566, 11.102980399516438, 11.656185369085362, 10.046861940342753, 29.976529449363564, 11.526871159423463, 8.655423943376881, 9.162415679095883, 18.330235808968013, 11.912689052250235, 14.103134803105393, 13.505194765332432, 12.513067381501253, 10.680077152259507, 43.66533538030597, 9.760920233142183, 22.499459244869023, 8.392823400737274, 10.112024588449044, 11.305325877460591, 6.760835472233305, 2.0139669738863293, 10.56114268164004, 11.21355080545081, 12.270818502524008, 10.186877316679276, 13.246732792611214, 10.584021836109674, 19.23217114553759, 18.103716312617554, 17.08413377775031, 10.296932141287439, 12.61438453408191, 13.039122290950296, 10.794905175321032, 43.45454502874176, 10.091117291902421, 14.718132984709714, 11.991397787455059, 11.482783208020049, 10.677683000043883, 27.579034748091626, 11.440398560560096, 6.779626468769327, 10.261487427630849, 4.219851445020111, 12.3971874870835, 14.883629273155377, 23.8693616597153, 14.59842753533353, 14.875494128006169, 13.54847542376712, 34.47888607890367, 28.24938481101758, 9.666832032968836, 21.259089990903288, 12.41908177297226, 19.94996860934567, 34.91760928175156, 64.43456694042018, 12.904148904056871, 21.4251358014948, 7.994142655421329, 24.839502122409506, 14.749333391637915, 12.037808106070758, 14.842868348806082, 8.35728969696858, 250.29999999999995, 245.80000000000004, 21.64167901471954, 243.20000000000002, 225.47999999999996, 29.747838060255894, 12.57936769809068, 20.927786312680933, 11.127396511699757, 14.891687292949475, 172.76333333333338, 249.82, 247.22000000000003, 160.33666666666667, 242.23999999999995, 198.35666666666668, 199.7761538461539, 29.47529976251882, 26.115533530933227, 25.025547036606348, 17.357651631323865, 18.55534445326763, 15.302563127019777, 11.715753645744616, 7.992465726558191, 9.709731982739063, 7.867370716105815, 29.769958835523678, 14.595463602250486, 44.853014090689385, 36.484546176331804, 22.35490514248636, 13.850995835590805, 10.192219687589652, 6.617814177188525, 11.938405370762249, 6.820361566778658, 173.63680952380952, 11.626954713792692, 6.707591162460728, 7.064193674319186, 13.60547107735152, 6.669282880968479, 38.876782873874205, 20.159739803749925, 9.057592621319884, 8.672016175581797, 13.984586442320591, 5.705569579571663, 16.954534878826138, 6.654651868756596, 7.9421095327387885, 23.85163578255219, 6.3749118590713065, 6.109995354572254, 13.643388361732361, 6.047078698813766, 8.126596356596474, 7.780819051064544, 8.124474314436855, 5.978175017315639, 8.002827958190188, 6.370630761396448, 6.539542563615227, 8.100864885084103, 10.062502230751875, 17.577141999698036, 7.466160316414261, 15.004574429724656, 6.985744741759502, 10.370895402943628, 24.527620190744372, 7.32515394097265, 18.89471849908667, 23.849337614125215, 9.811889328465442, 10.454948296854536, 5.865154515934177, 4.3016178321988185, 6.630015025273802, 15.307033034675142, 11.84866175252906, 12.409198577611047, 6.100450256243455, 5.552594948061732, 14.849654003040007, 9.01128207037201, 7.656095292355681, 9.996882653437751, 20.301483121575192, 12.447118158794812, 9.560050813562125, 18.021000752231863, 11.417763440349358, 14.186866162714674, 14.033701680176048, 10.736053983053981, 20.21250133703125, 7.9121595152635935, 9.50937613716631, 11.300883457135221, 8.080407160078872, 9.289023461004065, 11.048290422296377, 9.395525170493135, 7.284953089302769, 12.643164170403654, 191.48083333333332, 190.0088888888888, 129.17270995670998, 1.273959726891485, 26.972906216439146, 18.20421461938885, 16.95855288507079, 32.126805843034276, 34.274641016522125, 25.80530266955267, 35.18936158346158, 31.2184666852549, 40.63224511237555, 38.617650323499674, 47.89698633205085, 43.8657264367436, 31.170043898350066, 16.351353055485408, 30.924679301340884, 11.527222500374577, 43.50427723257208, 14.510591384974548, 29.82502875280893, 76.34741409701414, 29.146519927642686, 37.04853403273141, 28.318333610726718, 38.06805946873694, 18.063641244449464, 34.03263256381861, 33.79217713249121, 13.254350903941214, 18.236872220373428, 46.79677920974147, 33.96004231100856, 17.181993367102, 14.279621626553684, 16.02657202536279, 13.204100896958044, 32.31166978238357, 21.39385203181669, 30.073435942898893, 56.77680422283332, 13.607907045166753, 13.702573200481364, 16.084303659008597, 32.72869708573965, 15.607370521252399, 32.18190556138776, 25.044277787464107, 39.511731115375866, 15.10369864459092, 25.010671940807196, 23.112121412861327, 43.876943468296396, 41.55885009435009, 25.62851435781761, 19.05289375627796, 16.280697297256122, 17.10100545395437, 23.844731086970786, 6.974963982367836, 9.807751792724734, 17.10972938325965, 19.631241341991345, 19.529168303690042, 22.063867354147995, 20.848879033797804, 17.36013099147155, 21.206921609973588, 17.12721961956172, 16.45679331111662, 26.97202719789018, 12.233653837643288, 14.089332862479226, 13.748111673241143, 17.189734313456576, 29.165790940947097, 13.921506845006848, 20.724607706592657, 16.82666833550082, 19.254595939191525, 12.966885717579878, 11.324721293988775, 16.547981935532874, 9.224921512507322, 16.419204207639407, 1.3848635033928283, 14.496849084249087, 11.694559329559326, 15.429215155027533, 17.58743219461698, 20.383346965899594, 16.05709046251903, 15.167271593305516, 14.595852580168366, 12.188989204707104, 9.808641700404857, 8.828121986222735, 14.492296882855708, 17.448825670498085, 2.0258333333333343, 15.085652949217963, 20.224809523809526, 14.003280346588397, 15.155954078888577, 15.652199273138283, 18.16567858213911, 17.15549503829504, 18.826494810744816, 15.288272588522586, 12.591063615359753, 16.524828960513172, 16.706166666666665, 11.218332602323674, 15.082628717119764, 2.077605820105821, 13.882094479826103, 10.988833860583863, 8.603796417665023, 14.898100908695824, 15.16605883724071, 11.218098058803943, 14.310444444444446, 10.530126984126987, 13.332600481218135, 9.831791510418173, 14.845590744521182, 15.125351163048844, 15.423592490842484, 20.250729493581154, 13.778203425229743, 18.480245946432035, 12.975534667566814, 10.783044222381461, 13.043214034331683, 4.436666666666667, 6.62778522557658, 9.68260796242696, 21.192926862945928, 157.44122932330833, 10.577675887275452, 15.827115452865568, 7.736804651560958, 7.470651064295774, 11.147497506923374, 7.226782671993389, 5.3704893537765015, 6.152375464629088, 25.27368523293524, 8.551786877324322, 9.70744690127737, 9.060711818606238, 6.856298089454363, 9.32092419324298, 8.681005633058822, 11.646604517461187, 11.224589425793939, 14.755162894754198, 7.848407381219305, 8.29016502077777, 8.821302826813719, 8.61223341284629, 7.533222274460223, 10.331762329288644, 12.329565213527443, 8.336383442301594, 11.064173455072458, 7.190856936981361, 6.615239089844284, 7.255941880874904, 7.257084848832039, 8.094077058931404, 7.017003814317131, 7.396629118055287, 8.12368638311265, 7.008099318442046, 9.047135285689617, 11.60933059214034, 7.81847559248237, 11.000072213075343, 13.93839357083506, 7.824654026114505, 9.370329844825934, 14.84653548118548, 8.791217532642667, 12.302700041974427, 7.571324253545692, 6.817440576154542, 5.151770316391479, 9.12441729474272, 5.889675009078969, 10.239635083326263, 6.693236561604008, 5.623043856870622, 9.364342741345498, 7.9609065076921395, 7.779819499380474, 6.431811271828057, 5.225343669250645, 8.222147976355783, 248.59111111111113, 240.27000000000007, 239.39000000000004, 6.654921525339637, 9.081670846532303, 9.603689427183355, 9.846758670536202, 8.675662309814939, 10.765382130540022, 12.639094276094276, 13.874370751265733, 8.49889313879957, 15.814671471835922, 1.960000000000001, 1.4528571428571437, 12.414666224456546, 9.791373319662794, 7.146884920634921, 6.4499869574275115, 10.222731198685683, 7.882975580002199, 30.185149187968143, 11.769828403954715, 9.956506348038436, 7.319945857105343, 8.299796231250399, 7.201897494526409, 10.543335330355921, 21.410407870384134, 8.056128567039693, 10.85167930380473, 9.111353326709242, 9.829384655990388, 10.523131039967145, 12.808021157468835, 11.178836303407484, 23.09901885470852, 8.362466888725304, 13.213364465775278, 11.352127201391065, 8.226183810030944, 7.876598224195523, 9.316873261062469, 11.256903305611294, 6.396146921078456, 10.2899244196442, 7.418039653331103, 8.8728746520916, 8.598953245381624, 9.260909923377875, 9.11917560119135, 12.245145522290294, 28.765676365140394, 6.562053508064629, 10.889746695828341, 12.618653285960631, 6.733219874546117, 9.983862288865057, 8.591484009138044, 6.653125321940754, 7.465992297235404, 12.290337612228495, 7.8239531243774465, 11.257847587397125, 7.089320169006088, 16.66679145744139, 9.285775199385338, 11.245888310959984, 11.350681508242145, 9.624061916886573, 15.20946157187212, 12.597628550037134, 6.148384325992829, 8.3739303674549, 10.723160978189068, 7.38140923087301, 11.331555164380466, 8.66186611692523, 9.481574562269161, 9.046190132221067, 10.430725220883815, 7.82443659918091, 9.368766379358224, 9.973769590993694, 11.413947252747253, 10.424019567360743, 13.94208135811557, 10.886836488214788, 7.858424171018928, 10.702060611902718, 11.825765675998689, 11.02599688581027, 12.432194642723662, 8.473598989898992, 9.243477188291585, 10.74264448915378, 10.681720541775876, 14.292833333333336, 14.130540051030563, 14.773937747596706, 16.922598112136907, 10.29574832477464, 10.047198675163846, 15.795912022620005, 10.296064890579478, 7.7554025236755795, 11.653587673369799, 11.62434905597951, 10.084555107927596, 11.525389406458055, 13.443302185839318, 12.470775703808192, 11.828642060377721, 14.007137768061229, 8.992740981240981, 12.279253115658289, 15.82676160833827, 14.086699772662689, 17.631444677871144, 16.6858974048827, 82.42333333333335, 12.140341225088363, 14.082800486707265, 9.70708888888889, 4.088333333333335, 12.033549911368087, 12.783537061901663, 15.712921547750494, 11.414682529974147, 10.906551075676694, 13.509788942695716, 10.307549783549785, 10.596681408331651, 9.01104819438592, 10.627780000867336, 8.825824787974375, 12.88938136261528, 16.50790652197868, 13.73861770707423, 10.770652484357509, 12.644857694153696, 11.028149425257508, 5.5548715728715745, 9.452348093105265, 11.439539488803035, 12.438613239073897, 11.15227829985208, 11.94942544134572, 13.122116724110969, 51.50705112168542, 100.24964835164832, 97.77575539946247, 67.61632023619656, 80.63000831352555, 91.483108715817, 58.74979850173466, 72.72984668015371, 59.076687781173064, 75.84228128809714, 43.15740023296825, 57.07867223986882, 71.09032846842817, 217.8625, 36.95172097114122, 11.567528258836733, 55.413162987104386, 52.83149948700108, 76.31360829610257, 31.556757717905263, 22.458843229268822, 46.35023112675735, 29.04239885122358, 43.589561201518265, 30.755827052032934, 31.150637941972203, 61.098987256624206, 35.26282835536159, 50.353002782904895, 36.237670952314005, 48.54241194006171, 51.1946333666334, 32.102029295181474, 43.649683269345054, 41.72337176454089, 11.212408646338805, 31.30438484062314, 15.511343804053412, 32.97482799675958, 7.154274464563769, 59.79485866180603, 41.87682721611522, 26.40985686059283, 30.692191364916912, 38.21143532578123, 64.63081818181816, 51.663973805168546, 28.753430370844885, 31.330421852094258, 11.551497879285606, 51.611102727511245, 12.844515963219347, 11.558465186728016, 8.649910418673242, 7.740055417380442, 21.862325702075704, 18.925721947410537, 12.141613748470627, 8.736374286498966, 11.057590324491978, 10.086380159900711, 8.952717675557288, 11.46695979445391, 10.588084299882482, 8.688299270301442, 11.878931421398812, 12.09578502978503, 10.824156088412625, 7.273690745898903, 16.345002721867548, 7.204630397062812, 12.07626095956724, 11.612654434315072, 12.084846440539163, 29.815746968717562, 12.191503506867845, 14.867575387989088, 9.908827474296201, 11.72500926380121, 10.692762737709998, 18.441992370059666, 22.60608209301681, 15.008970775158085, 8.215707146906023, 10.544974469411587, 15.548940081089704, 10.454150365831714, 15.485512331464466, 21.491942577030823, 19.679659431006574, 9.408994511924194, 18.17901852023012, 9.047221316705034, 12.562167861710433, 14.29265308062352, 34.64426984126984, 54.33138489736069, 10.84274290513488, 11.412760958847912, 9.890481751548469, 13.660467912859266, 11.57728319716092, 46.414690032190045, 7.717509803921566, 30.563645251737263, 12.623922806845677, 5.114588744588744, 10.441199787025191, 12.533472713308235, 10.978340057857084, 20.06329919333283, 11.806410228520383, 16.225386667537002, 19.23844200206449, 23.792604056927992, 25.5239222694471, 18.56298229336585, 26.477740406651677, 22.958525555635774, 17.516056044801278, 15.83238122461736, 14.449927563318445, 13.026316219609697, 11.622340388024547, 10.548310382098196, 8.45360333365462, 7.3632592854131484, 10.890492576782767, 17.839688690290217, 9.936684157973998, 28.222838755493726, 27.690417598565556, 8.914233529603068, 20.747708169496992, 23.234912992029578, 55.44145655294695, 17.12252238681811, 16.031425089114098, 8.487396068645548, 8.932223658297186, 13.415027383999341, 18.861733756391523, 9.516802406637144, 9.452384527149304, 10.960886428486159, 21.46636400820017, 26.958988825828825, 16.660572838802146, 24.737894044917837, 12.164313468245975, 11.203890576298798, 19.095678153891704, 10.073500722368065, 17.249123669610313, 27.651514890906185, 10.327629709144867, 11.203219359805676, 15.242525887386574, 13.515331658692178, 10.482926270614586, 17.52409121053003, 18.290515614370648, 12.613150035077666, 18.54066830720999, 7.3017796631473075, 11.881651024285281, 10.427960645473938, 21.21099271362837, 9.052898154126023, 8.228880672157215, 10.22842761398428, 12.27598614294202, 13.552488573779453, 10.683500229205098, 11.03011030645404, 14.057502839783705, 9.712882808058161, 135.96574578239563, 244.6900000000001, 244.60000000000005, 252.30000000000004, 199.90000000000003, 226.8800000000001, 7.554837711087711, 10.554620088212557, 8.502317766631206, 10.175458715976106, 19.822300865800862, 7.839696164939095, 33.46412103027125, 11.564434908026575, 15.922994902545858, 8.105955816989475, 16.06883356088285, 15.309656096138164, 7.679534976443495, 7.379555541018848, 8.470335788222783, 24.34406041366042, 14.76601127915772, 7.878972914944188, 29.325563770133595, 17.505462518665947, 10.274534186531328, 13.869406556867691, 13.081339184664728, 11.384052377583043, 10.936359608817058, 9.358035382770687, 31.47814419660665, 7.652060563069727, 12.520223196286354, 17.22258147001929, 9.522233830718019, 6.113563179024402, 7.306015390644061, 11.534943206152017, 6.787486404364772, 6.974774457475145, 8.708142707045235, 8.159461600185738, 6.768558716957481, 14.61207493491984, 5.932416716115964, 6.973806606298113, 14.302527637022328, 9.159265724317555, 20.289244114505713, 7.009126631472001, 21.174650943431104, 13.296980057657487, 8.227226611972867, 12.435889361238555, 6.852437059364388, 6.428328551185493, 6.644996381011289, 1.0430226480836242, 2.589738095238096, 7.764411249674188, 7.9467441676792205, 6.728920932218238, 8.279728168169129, 17.854741107485864, 15.273763160722456, 9.141641774109996, 21.04307708530586, 28.836666791020452, 10.166896004744686, 20.10661218273305, 4.951726385567918, 6.954112473101799, 9.629222214191806, 12.332570254603523, 128.72444444444446, 7.306052542482406, 111.80916483516484, 17.439761803393274, 16.299365553964286, 11.918236879062968, 13.887423986797613, 16.298197066247504, 6.18017512423971, 16.86063731934698, 12.782949808078103, 7.106805206429021, 6.692610996473208, 5.4457716497691235, 16.53430173580174, 10.470665243682122, 9.115358220631602, 6.703677481640172, 11.93357167199133, 17.076539470112994, 11.949070187122818, 7.052841899554258, 13.21783654153125, 14.735146239140514, 9.47472920015521, 16.20214572000108, 13.52438516074318, 14.267977828829176, 15.476534437724501, 15.503221893912276, 11.916849772357876, 11.456894867138184, 8.869429223563063, 63.597023243640216, 8.32331092185908, 8.337686573169169, 11.808976553761015, 11.720505556473833, 13.284995060702336, 10.886000278543554, 8.122250966822323, 9.987425857193664, 9.767965985193676, 15.351012755560134, 18.40125113099395, 18.619463171504893, 8.120332367852878, 90.72360531400967, 6.7009731323659745, 7.599976524532345, 6.1927161335523175, 11.1389932769516, 23.2590080805337, 10.0853497355409, 8.966959782605715, 18.124130744604084, 12.131900759760265, 6.02055008438538, 14.401562798493865, 6.944021731810726, 8.025399452573328, 13.7739073378306, 4.536270611826056, 13.07753281375012, 8.236015010411728, 11.441061408698015, 5.094321075083426, 6.014607880461975, 8.905469605873106, 14.132928774287176, 6.95905961593861, 6.672568121132838, 9.405662354896565, 9.30696407323254, 6.134610166469548, 11.667444695504946, 10.09380316267317, 8.443391350197588, 5.657542088271163, 5.434045956675313, 7.683300810399797, 8.140549294528398, 12.199255152994192, 6.251573919163955, 10.293625671952338, 25.021778329601172, 9.106430487885769, 13.884159872806933, 6.456910671075185, 7.885496695289895, 11.009205509399871, 5.807247916484584, 9.812995708223564, 7.010904851736103, 6.295603907603319, 17.163208679963212, 16.042286685359255, 6.447818160109547, 20.497215128282775, 5.517207980922131, 8.36881226015127, 11.793082107859176, 13.680458586436108, 13.556780675176086, 8.079304112326433, 7.470320726904585, 5.024272202354811, 6.46672433847459, 4.591583833236545, 7.129470205438261, 5.516225699623337, 5.131880787766886, 9.57916899566682, 10.73927531074491, 7.153215157188403, 9.886180927131281, 5.690337999635207, 1.698000000000001, 4.830038140304529, 8.94754439872371, 4.413026790392772, 8.772272081856414, 13.744203385785974, 13.811035992979978, 5.455075744674821, 8.58872449076399, 5.814719903592116, 4.987656680539625, 4.672914063261428, 7.9338018353389135, 4.3181891299616755, 4.8798258305735835, 4.658201157885605, 5.712822933689953, 4.47243036052292, 5.667609382377076, 4.248862650697148, 6.363783479232961, 26.08664457819124, 9.888929706112982, 16.167631704579083, 14.758004352920796, 6.4813924092862685, 6.962345982129978, 8.301936505154602, 6.255038800573683, 6.663251914743384, 6.429431343866528, 6.367713405411091, 5.215412641968474, 5.157248483563984, 4.5496130365181155, 5.367557290723344, 5.328711413966634, 5.706869983457237, 3.4430372647319456, 5.513341328776847, 11.371381028717982, 5.091331859005619, 5.93794234021613, 8.85286146049197, 5.157314610287409, 4.951845485308932, 6.618881008885035, 5.245921988729788, 4.318219685765484, 9.285107636934777, 10.642273346102519, 5.392691900436634, 6.6904637680414005, 3.9174316249572736, 5.597079267443968, 9.1506137925332, 6.244417896563201, 4.713474980757235, 8.59176425013017, 21.40585315432632, 8.258471104886201, 14.455435355319858, 12.62639366572125, 7.524762206751921, 11.822070787481184, 7.973149448133353, 10.322817389026522, 10.917894084342743, 6.725812901983994, 14.625318874362351, 16.188519395014755, 9.48650944713825, 6.480202867371733, 8.933462628164673, 6.4344284393504285, 6.761228109029677, 6.919145192468087, 5.56999392252027, 6.043698227717927, 4.80780497069256, 6.327520347878522, 6.5751805575532964, 5.359794362832484, 5.207128511430411, 5.124824653237953, 6.094444319313519, 5.718856359170385, 5.883750496406492, 4.941009856343483, 5.0897439561580535, 5.2358206983010005, 4.815473899885067, 4.373395498456729, 57.495020753756044, 3.917968463635267, 5.338990278131, 4.752015089322453, 4.451048138403338, 4.923464444648928, 8.31411792527149, 6.476077908843451, 5.114810630283379, 5.667084747235964, 4.91310879120879, 5.822543045289707, 6.7008997011581695, 5.098102062010502, 5.503929838846814, 6.4081568305049625, 4.8060328123838705, 5.145858596321395, 5.069545109165399, 6.01099903481599, 4.940704611078683, 2.2802352941176482, 3.642937682472568, 11.79482211554174, 15.8065718145493, 9.131210031758176, 9.582339684226056, 18.442584971638045, 11.834612547918796, 17.52497828145189, 10.817399457055766, 11.281710406660446, 44.11026761007771, 17.501657350878084, 14.64747838939239, 10.816797735637593, 29.66218142494404, 16.719236703248985, 20.646106249140654, 10.632809683462476, 19.785960196632292, 15.551862935434555, 17.486330909668165, 5.545964438315507, 6.303322184921611, 13.526622653073368, 17.30067535652926, 6.3357062830429385, 5.763342214947691, 9.122720270855403, 17.44892421775538, 8.37347175158631, 15.41486383950991, 10.383930156101712, 5.715116024834161, 12.554523853897075, 12.393107005498551, 9.67948176628088, 6.23321815404169, 8.57302430208972, 20.98001450923804, 8.483537521598508, 13.115144208432241, 17.606900477416783, 13.696574028943765, 10.510901565470437, 9.674337389655642, 13.408176315530406, 14.139179583220546, 9.20368423458724, 12.45718206673341, 10.636984209107636, 11.743746040428128, 11.376403668170916, 19.89375357945294, 15.464393996766187, 8.393604293734901, 10.140358073018733, 20.894047180287888, 17.264409238087815, 11.197700748177239, 13.698776612276616, 20.44514371139548, 7.198737422524866, 10.464076238190055, 11.220046421870862, 7.591805466686774, 6.340690434799292, 7.115688005305824, 19.430098469699303, 7.205211457231113, 7.6896175518090315, 17.47003841999877, 6.479054568718951, 6.828225051421738, 10.679747498274669, 5.306090062083319, 8.905220157426813, 9.848772439657385, 5.4537608217544085, 8.692304770127611, 6.2279408594647245, 7.230976080525407, 9.32618366724592, 10.353158844198143, 47.997764340472735, 8.89185270062263, 19.75304097227527, 12.470575224777642, 11.762367027740588, 10.935203238131761, 7.4620647981901795, 8.348203109305723, 7.670632786753478, 18.815083955620576, 14.989857159717005, 9.436966594981271, 7.39778944739471, 44.35088769382278, 17.639388344052843, 6.69997210684053, 7.862831877739597, 10.820542071167468, 12.425248021707668, 22.488675502780765, 39.85922552272078, 16.88896753317974, 12.091558982956046, 9.46881031508301, 6.886254007060232, 8.68364442728574, 15.182667240162507, 7.089458495351333, 27.148801924699026, 13.420768286220145, 20.11102087317528, 9.522615743649979, 8.934637460870123, 14.164457597807152, 8.284157474733421, 26.67016054450935, 7.097252530915241, 7.539267789748608, 17.93966126566462, 13.464222432996255, 9.253602220278312, 7.118842873547744, 21.50560229773715, 7.106935678542001, 7.906402427989796, 11.82260104054753, 6.915191263973182, 6.294608878162631, 16.039265402471926, 22.869426443503105, 1.7801428571428575, 6.630363794445936, 7.863988934372816, 7.202038431822876, 17.890909356479348, 12.669064819905163, 13.606571436025162, 21.37032652350773, 7.061951333784996, 11.692678069748005, 8.681233448743615, 20.448629291553996, 5.325447765814478, 19.341273705191114, 8.976387550185843, 8.94098823538135, 41.997508002866695, 7.963903600712674, 13.626927235088612, 8.378580523292499, 13.945956226423538, 12.841003992093196, 8.409408950880229, 8.800753121482709, 44.06548577510639, 16.13919709306485, 15.305914910602796, 11.36296709101877, 9.416353484907454, 7.731827873877719, 6.81157023351923, 8.01459208435509, 31.350165871593052, 129.21147058823527, 236.4353846153847, 242.08000000000004, 236.29000000000005, 240.56000000000012, 237.4200000000001, 182.59567226890755, 18.229094061339016, 13.923532859484332, 20.42951410479669, 11.90590737381288, 12.403131439197153, 8.015212020745546, 10.61393599944644, 7.42309717699619, 6.324602970646044, 12.199138737887758, 6.4791617407978475, 6.485386398951718, 10.910447808089328, 9.688950782040028, 7.946212254206645, 4.182677381626035, 10.450080514680112, 7.198226469469476, 6.564667403820998, 5.168345198818945, 11.0385557822152, 5.463746020270458, 6.259488676940735, 7.629797937066565, 6.211050064554903, 6.081309295631783, 9.470895623110845, 9.138386335349097, 5.941184017059684, 7.716789140525593, 6.606794840070175, 6.2939879586987555, 4.094368630391136, 4.570213673541791, 11.113589529379004, 11.395234664865415, 8.218604276292162, 10.061302028507974, 9.856972280577413, 7.056336276490379, 46.619900547358185, 4.015776081641936, 75.4809371168792, 55.327003437738725, 44.70712607655504, 4.5510564182194635, 45.245662655971465, 3.5708397360479096, 63.16140788840788, 68.99807171586585, 39.391205648926224, 7.389219864168377, 15.461621522900437, 6.5400987692456125, 12.351924106110692, 7.5381071341134, 6.2701830961057965, 6.7039410192065265, 8.609806178670025, 10.752583136212449, 7.979074528163911, 8.554437374624097, 5.767512920701969, 72.81638461538464, 9.226302034156832, 9.276175911282312, 6.58297033624599, 7.266385711297315, 7.85820949723576, 5.9148679783819755, 11.941318126585987, 9.735151613919943, 6.546211681159984, 7.531534761156246, 7.08349146741189, 6.271992335858577, 7.365474062373169, 5.330791736299477, 6.657341322518883, 7.1930455095527215, 7.368344471633953, 4.823349544072949, 11.30076596488703, 6.2854716761171465, 6.647222346530012, 15.529737582241006, 16.086479118962615, 14.535314487353189, 5.233754710408019, 6.024588283573623, 3.8083550279391805, 8.397804053057923, 5.224061005843059, 1.4809523809523817, 6.825697551285989, 10.311992358617308, 9.734215901558427, 8.175275609142052, 12.096941234313094, 8.592301325029325, 8.021424061023406, 27.7493286242033, 43.471012220000375, 39.373282407434196, 13.927827891830056, 13.078981249336673, 11.69781453385507, 26.381729360296283, 71.35745432900434, 12.498319224092722, 14.004147176305942, 12.360784827140836, 17.532913988862557, 13.030970028778452, 11.675497786571986, 6.191877961557562, 6.4548734328489505, 7.969419993450488, 15.284330653877714, 27.945644447474535, 12.338252997957902, 31.985896082368928, 6.9359640873778154, 18.608036236256268, 33.0736844894315, 13.477599744711624, 9.143097423051973, 10.238493068696997, 20.492472145952966, 20.30220437134593, 23.098261989250602, 13.186929167158112, 13.56893968416078, 11.887071864327002, 37.76914567132766, 18.26567430564781, 16.34364694454306, 19.27194193984795, 10.764048563994587, 21.90077720215929, 7.980558047915876, 18.56359588700493, 7.888457128894203, 16.10854465384952, 20.45434793083494, 30.79893391434482, 11.994047627606523, 14.692139743237771, 16.455195508893596, 13.27843472473763, 8.46538714513623, 8.444208776502084, 8.04567929912198, 15.302185103256528, 11.439488694482554, 11.497575131619177, 6.854457820735245, 7.197151108614215, 8.891029559919902, 12.414550941991875, 9.227398582308943, 18.23114359132825, 10.292063259033588, 18.293343912285888, 13.47338012531227, 6.931913251755714, 10.036250978528292, 9.750028478426167, 14.144359097088515, 10.097257506589198, 17.563099359232098, 13.810631861355581, 20.787713726691983, 24.166215402938697, 20.180453367693055, 16.97860203731842, 7.690083855929017, 8.12961452174112, 8.25635148844359, 13.170717916456535, 10.854176593763498, 19.99765259897336, 8.1545125888697, 14.615335858226942, 6.068109659611498, 6.77174617394177, 7.071596057606198, 19.88993695843528, 17.90886764850318, 24.004181198369828, 8.002251083086328, 11.11108611586656, 40.550016211575034, 6.662482419516786, 7.350766822825659, 16.164051533760357, 10.352221002370744, 9.302565950324379, 13.725356730785782, 9.032164127762256, 8.831419354658426, 9.439852687030656, 14.226907681660759, 12.47067717785505, 11.31995855936146, 8.997184778982218, 7.678806596203891, 6.473876837428955, 9.161998784715522, 11.522001098171879, 8.996762531225226, 7.618870042665259, 11.369935185911096, 9.872220015149317, 27.63644790093024, 17.393950019962613, 9.17482002407313, 11.800903452058408, 9.87869212631924, 6.896950092557289, 6.499123380754841, 17.43747823733551, 12.461221799735867, 6.907273523885078, 8.970662066918589, 8.484278470824572] ss_darpa = [0.0, 1.0000000000000007, 1.370000000000001, 1.480000000000001, 1.590000000000001, 2.479999999999999, 3.2133333333333325, 2.841666666666667, 2.192499999999999, 3.3899999999999992, 1.818333333333334, 2.3178333333333327, 1.8816666666666677, 4.51283333333333, 3.4455, 3.1767142857142856, 3.39935714285714, 4.890000000000003, 4.4642619047619005, 5.215833333333327, 2.2203730158730153, 3.4738333333333324, 2.383388888888889, 4.84099675324675, 4.398749999999996, 4.202912698412696, 3.297258297258296, 4.629690476190473, 2.4776706349206337, 3.9398015873015875, 3.7835746753246755, 3.984190476190473, 3.427429181929181, 4.501248168498167, 3.0603411212970033, 2.8278383838383823, 3.5661758241758226, 2.5414819624819636, 1.868693473193474, 3.703209595959596, 8.400609649122808, 3.6349201680672247, 5.194741702741702, 4.458728406827091, 5.62196681096681, 6.899766782237364, 3.8096919828537463, 5.430405122655123, 3.06800911425176, 4.056868307131465, 3.657538614163613, 2.458401317523056, 2.8229965179112773, 3.5274715007215005, 3.7687158535908525, 3.506609240175028, 4.552747538572536, 2.5520334030434646, 9.34090586537645, 2.9178267704517693, 2.4195636735269086, 4.0488287217168795, 5.510118881118876, 3.0474129791865714, 3.3357444027234022, 1.8931370368864686, 2.6420972129827955, 2.4446213567564192, 5.220454137795467, 3.6998157904187283, 2.173342800516843, 5.11564957264957, 1.903393630677345, 2.804830086580086, 4.206045318472948, 1.4550106686671105, 2.2255112942612953, 3.3395496954026354, 1.4332099437716959, 1.2127050997438384, 2.9346935958020612, 1.1034203454998814, 4.009285714285717, 2.9561428571428556, 2.098677655677657, 2.080904220779222, 2.586464662883141, 1.1895329433208692, 1.1671955253896436, 2.7068452380952372, 0.9369567994355158, 0.8636337884216158, 2.4041469404778226, 0.8137626854437792, 4.000000000000003, 2.5643611111111118, 22.52314393939394, 16.823712158808924, 8.426562499999998, 20.183271478549628, 10.513720845899876, 12.400890025575443, 2.011937321937323, 23.351484848484844, 2.1985162906390348, 1.3746893814997274, 2.999999999999995, 2.1475954247667444, 1.5217004078605834, 1.0585130623532326, 3.1143382352941114, 0.8407826146377257, 0.715427619469435, 2.2073425818247796, 0.6490851001875911, 0.6062647160128907, 2.1176562349610784, 0.600274622676035, 5.99999999999999, 3.085789473684205, 2.999999999999995, 2.000500000000001, 2.1583131090242067, 1.5073475609756075, 1.2173934378629507, 2.082327199255019, 1.0322808794533134, 2.0000000000000013, 2.05634338851202, 1.0290191449377502, 1.026611989459816, 4.011739130434785, 0.6751911600544387, 20.425191023030564, 11.512657880094201, 13.744576999798888, 14.68029850501769, 15.06398289093292, 23.598517276467586, 22.754251565717393, 10.255425962496354, 14.210675553072686, 7.556466067524916, 21.980760009211533, 10.136696530014609, 24.658961071295867, 26.258695294728163, 4.868184865772893, 10.735464534818275, 11.275514282138861, 12.705457473012125, 15.878749938265676, 10.768277342970071, 9.047628451949146, 9.797330511106827, 11.857095896572687, 14.230680280130684, 8.530682189403741, 12.821902723838722, 11.449930413528966, 18.023083213913704, 12.389448346319409, 19.879826978449568, 7.336608469331379, 13.383954857032164, 11.937183521585807, 7.144784808294556, 14.921697024524859, 20.388965119661467, 6.718427882294324, 17.49787838755742, 11.806454267483128, 6.284229536424672, 21.935964491814993, 11.583455783376218, 8.949558240754158, 9.298687622995681, 11.503190188317928, 6.036042963260912, 10.789808247815166, 12.907162030939377, 5.94899601114821, 8.100977064804095, 10.245667510213114, 13.84075436633595, 11.612974760858169, 5.488189573874374, 8.346411387373536, 7.29270129592636, 12.869281862201632, 19.279560234951433, 17.34356319284989, 11.66479577514873, 16.817033513589596, 19.342610753638063, 9.509798551944534, 9.811029936567547, 11.98474343471304, 10.734535088770754, 18.30357181737366, 24.76408865199801, 29.987265241282483, 20.200154517204478, 18.075769230769215, 26.28062316849818, 17.11214671497836, 15.582908293614329, 32.566346664264685, 19.90683333333334, 10.658238095238094, 20.86221302107882, 12.670045249841756, 11.71532490026764, 20.46602272727272, 12.967061057438492, 11.488870333478653, 15.879533242011227, 9.935429571103805, 5.620949253127827, 4.460399542709723, 10.106064806555922, 3.6672397903048792, 3.970233738290836, 35.444999999999986, 2.8352479802275474, 2.5487862445232623, 2.3202898852151113, 2.133473430590183, 28.686450216450226, 2.0297257776104187, 2.02696423636409, 1.8912887752062295, 6.762857142857139, 5.809999999999993, 3.0560256725854162, 2.13503511126521, 35.819001577642574, 3.507414604819809, 3.3051954887218047, 2.669531236637684, 7.924722222222218, 2.5514286233719914, 2.0296648065353478, 2.1775592456295114, 1.815564500990253, 1.9351467667402003, 3.6695387808675752, 1.8811281539868445, 29.094999999999988, 39.58418261511572, 12.762236427083291, 2.1748311120789796, 1.2419141830965874, 1.0600163322562512, 2.1486330336330326, 3.6667619047619064, 18.330833333333324, 45.051663780663766, 37.18191407050623, 22.817741815530262, 1.5412765725608573, 1.7456190694069822, 2.2151605718007765, 1.0358177588849322, 21.559999999999995, 1.9442513893429227, 45.7134001268654, 24.594494881048877, 19.34227178789581, 18.349089366506828, 26.492560511928044, 11.415371745681183, 18.14137010387509, 21.138093804266145, 15.581903015859396, 45.98478369626738, 18.064869305331094, 11.77836078459496, 15.356944205311924, 10.841617738245787, 28.902250486664656, 12.523239127436076, 12.78958232658759, 35.651456916102646, 9.960688594107333, 7.880708420773493, 16.213378820908133, 12.497913111715604, 37.47918272023998, 9.55480658853859, 244.03500000000017, 13.360376730855887, 20.79924524774912, 13.788111988671146, 26.39609057123859, 8.284953790184117, 20.06523464118182, 10.120934685293966, 7.507368228588805, 5.749118158256299, 36.6049032752682, 19.780537685154115, 18.629737488153605, 11.786915170301537, 10.81234815114699, 28.04973915361927, 12.944013722153901, 8.673324030698408, 19.248593739410897, 14.679690649217097, 8.189688196083807, 6.950381331619967, 25.551797846825327, 7.352131765413554, 27.35076299497259, 23.61059398840704, 11.845775719230941, 8.550899103044914, 17.127312716332717, 17.155369985038675, 5.849317089697884, 5.975848247678119, 21.167493935003833, 6.633742629368678, 5.6363184709524345, 5.185046583968273, 5.0283788081503245, 4.952883960626598, 33.42930676415059, 23.386942986897115, 23.302496560478414, 28.753987717702753, 11.771202684839531, 24.763682912119428, 14.325050457912836, 10.713410289679414, 15.95969388068072, 24.464222541635564, 16.520129542594372, 20.132665738481982, 6.887051021614137, 9.146161814097775, 5.720601793900731, 10.865756235761362, 11.373996546586618, 13.342420611611443, 4.546283865079599, 5.981457272605511, 14.033382597439504, 7.20449644724438, 7.73680460434179, 9.651534714447937, 4.559797157589618, 19.05661954898578, 3.4706396960406236, 11.195659477863035, 6.208188317368357, 12.943700046685342, 3.033955944506185, 9.616493811271289, 7.457614652262489, 7.348910829146734, 13.103792248802959, 11.499623324457023, 8.938691198855143, 8.349450224044961, 8.656865900816703, 7.145013478302338, 7.895685281170885, 27.727432967167633, 13.746895189543004, 10.462860547840098, 6.031695461635422, 6.029147390576696, 4.53861696828733, 7.8423781843944385, 9.130002451882612, 6.741542840343842, 2.779968935292475, 5.123017577165726, 4.593717321922908, 13.636623004964967, 21.77844401071493, 5.066349869069471, 5.288846231713043, 4.321438355040963, 20.506782159017455, 9.9044538325286, 13.57008958425475, 12.61443658400535, 8.612826519378684, 8.561299034317122, 12.066318952687679, 9.467474654879688, 6.9880274250534535, 5.9996073570826285, 5.450653581012825, 5.001301166155992, 8.518187510390897, 25.308356502241022, 21.783660658866246, 30.26681229931892, 21.537204240189812, 20.06917537618217, 45.92452902130076, 10.070388524016337, 19.906508795952284, 17.148298320140313, 38.71697469097971, 14.169934223776451, 28.419207719785156, 29.23481779327198, 20.540966602448957, 10.61732599309336, 17.125848461509953, 22.802279918943846, 14.602089212859598, 25.847657014009958, 13.23258512237208, 24.140060564833, 19.661354277607213, 11.310177354623926, 9.329390271024073, 36.92760300457664, 23.278955740206214, 12.41365519769936, 23.215365059473445, 11.560709075962965, 21.1116451236759, 13.620871845604274, 10.342745812249124, 14.881613072654753, 19.328456902305117, 14.767697336762946, 20.139730838332706, 11.387892925572055, 22.746668598656385, 32.97842880579147, 30.69055873619078, 13.278763914003697, 15.031693390750345, 9.326445973658439, 22.859974593117876, 68.41021507929304, 48.0373083463735, 35.69824833589349, 51.47286805293713, 42.9364854924998, 12.327627247193423, 5.496658775120707, 33.25089586222166, 6.791897623911612, 23.11685956720887, 54.98972940927319, 6.096129823593552, 27.73132625348307, 31.18174595224029, 16.286335150450007, 20.31293858382927, 21.618104010194735, 36.03968935450515, 17.33335754994781, 26.414912110893873, 26.3130801975802, 14.119916578966269, 1.0887443702516166, 0.9529948439795366, 31.73418037518036, 23.126618741765473, 19.170272712194922, 24.18228289602554, 21.01687266073192, 11.79546787134047, 29.326537116392387, 34.32353646947279, 10.852152979373566, 13.480916123336128, 10.822904507645926, 1.0050661474469051, 7.285721310044935, 1.011575033324619, 1.0108240754702127, 13.513453573157806, 1.014976243424273, 0.996659566257686, 7.409257977930427, 0.996659566257686, 5.695446029134647, 9.454592445604067, 5.579914440905009, 4.514954914006704, 5.920371397066981, 13.292159277067995, 7.498223149554265, 9.649635903450816, 8.415063001784546, 5.523119047619042, 11.404517388442551, 16.459108895490473, 33.702513452730855, 41.96827939174687, 9.474470284689431, 27.596687465059176, 6.110448336896832, 13.16504098396789, 11.733097010649287, 23.137517272345054, 27.841498293124886, 26.741109217171715, 6.450372948396629, 5.283967755420625, 8.652681128082442, 34.20704106651308, 4.876998608957933, 15.026623586750608, 3.745074961493364, 3.3994762465193484, 1.7969310248208155, 13.780981570864517, 2.2184992826068304, 1.9710058591504909, 1.5140223762472782, 2.813483891733921, 1.432799671307571, 4.258499782958294, 2.21075144390087, 1.3733257567516166, 1.8986544844848976, 1.5496826635863852, 1.3694467590025994, 10.478933606880881, 11.34870707070707, 12.642233471666598, 7.9425259960778165, 12.63870851460842, 15.340439817215163, 9.586457843258406, 13.618131682423993, 48.688479736187425, 9.35273984146961, 12.626524914473089, 15.010805614908477, 10.970843876841048, 23.21213552611503, 10.542430243627813, 12.827185344908553, 11.73021341039272, 5.699770379000489, 10.741800968197971, 14.192465699608361, 16.078168822043033, 17.728148400464164, 23.617333914830056, 17.102934907007604, 15.180549745456936, 42.10749477690236, 14.951302398709329, 12.462447124888275, 15.066860047601667, 12.111703359470711, 7.584498824930837, 12.904043430743396, 12.82061929232923, 17.604521461821225, 8.504182576590093, 11.456022302177535, 11.020784335568772, 11.213571691409609, 5.9794920418919295, 56.71439913454364, 14.68995415680498, 7.346266793721143, 12.913105132728248, 6.605866305559149, 25.362088794098252, 10.953021494913052, 7.612118325016952, 8.03248281575402, 14.443625362240594, 7.355212227967408, 6.869671146449533, 10.541885390210947, 5.8194305317906885, 10.777269887786895, 17.04420848009291, 7.279165570434773, 13.406703969516977, 7.426808734019915, 9.907547749799415, 10.168016872206278, 5.709903659328264, 11.641242637205595, 26.932349493541068, 22.180730867590746, 22.264108460810515, 9.935230916806985, 12.862982934764675, 15.715520241572177, 20.16788906633114, 16.329423131254508, 7.714011892111158, 6.594601318970886, 14.901196969696965, 16.674677088678344, 8.315899221385612, 8.915080089587061, 7.282869699449662, 7.147608312566197, 6.645307565467628, 10.995874948764135, 6.855027025013083, 15.521779571697495, 5.915179201746967, 11.276585468090436, 14.35010595622128, 10.594604905200462, 5.824836309921373, 31.80602164071722, 8.932254726571227, 1.2315129933175413, 2.679958994708991, 18.28790799489079, 6.826970722889062, 1.3318614821943433, 15.819999999999993, 1.6188526929052833, 2.1585926522830716, 12.266063543819916, 8.557907524734896, 10.959474882516995, 9.862073623353822, 18.602314048873836, 9.822155001394503, 7.54406180894566, 4.799437813221521, 16.577353341696945, 1.5205111335408026, 1.6600373005320814, 1.4591574276029395, 8.539160320013407, 4.662951196129701, 1.1623253019954036, 1.930985753643356, 1.3256483232805423, 1.283673323747705, 7.804969433752519, 7.250992471377212, 10.904999999999989, 1.3157431781298692, 1.144683152479865, 0.8425320236054483, 5.965557050105038, 5.581968586155409, 1.8392185036242754, 1.0132537893455118, 0.8191558636077256, 1.8510500285128615, 7.724255049439972, 7.282175186848784, 0.9480295885356235, 0.760967857034902, 1.8609819250871094, 0.904357325331737, 5.909898040166069, 5.453602990602448, 23.772495874724054, 16.59744311160135, 12.693668075093978, 7.340288728120125, 7.291210035966378, 12.038879492529398, 11.858829396882491, 39.298178766112045, 13.10600168021963, 16.49099369923385, 9.419748911147522, 11.810165280771031, 11.956741803940433, 5.735748962666822, 13.479204137021432, 12.517192630890742, 8.92647571647413, 37.43123781835234, 7.114227492019795, 25.119054218319725, 12.580798333958489, 14.137583829280272, 11.320858806370728, 9.639072656194257, 11.936707000769761, 9.217195746201291, 9.77584578110488, 38.65949582137876, 10.223815967051674, 12.142581614209963, 56.04555893551711, 18.54079375322625, 20.088993914304694, 13.82864904050147, 8.979043811973979, 11.468908458876223, 25.802871016749712, 180.9825568086885, 6.101296688310697, 8.761825361842044, 11.87891601442327, 6.783934650174256, 7.215746053015849, 13.100833865539625, 13.372303376647684, 7.876130261165425, 12.783314189423256, 20.782809768802757, 14.641967918569616, 6.625361959817771, 9.06905540664363, 11.517543644590429, 13.004272268544856, 15.643495117143656, 22.619186362351375, 6.917777129552555, 25.059387484260817, 6.790104714133695, 9.91461493133381, 13.332056822204988, 15.15057458975764, 18.13047946858017, 14.16145529709357, 17.713861007311934, 10.102797917964079, 13.954465709294922, 8.571735192611696, 7.769418455891817, 12.026951902325042, 7.21831665799632, 13.458246898628635, 8.816399742348352, 8.904905164015595, 7.262495761459302, 7.3741384990329015, 5.947068401399592, 10.348925798988615, 8.592216986751696, 6.642030532139068, 6.167063388127718, 8.501030698914123, 6.572136352684134, 23.967217670011152, 6.8762586840906, 6.566611499638761, 15.924358720740663, 4.231436389477771, 4.428768095894741, 6.887155406334468, 9.15922832182992, 22.137024614274615, 8.998919600000248, 13.983380254141625, 8.526097223845305, 8.210266962750767, 7.290378668649057, 13.668040507601347, 12.447295726015199, 5.9553998778998745, 6.71061587729277, 9.094790019255177, 4.731232555410073, 5.966675557013197, 11.972010680477622, 4.0779999223966055, 22.712945404064882, 22.20509699949429, 12.25311097730295, 11.977819125952411, 8.182541352318413, 9.559857581666316, 22.318237548222747, 14.034889816871766, 8.3977447551499, 14.766164281448688, 11.949313193286851, 10.307273642480196, 9.420827811552567, 13.452329832087443, 8.280864535666531, 20.560379675136257, 17.04756146180937, 41.38196601335678, 7.0571620933136305, 4.372046760746967, 8.872167815594668, 10.890450872134362, 12.657213168166255, 14.81810671840505, 44.31356690632743, 6.454027091369181, 8.128942797278297, 27.232676289533774, 6.212323667243805, 7.63817024445514, 12.654837531314547, 12.071009481798484, 4.8595436359313355, 17.215619574592342, 9.428215601638724, 8.248950359535723, 10.516057174148676, 6.87589388511499, 23.222280113234582, 5.506608321159418, 12.920775915518746, 9.800113773133182, 7.913940668073627, 10.89601753364319, 9.44881324066347, 8.467634130751584, 26.252642051679594, 11.089944324467705, 20.475170054264666, 4.987966428706756, 4.363050897186688, 6.995878742415861, 8.293172993716826, 17.428446593389218, 7.105926292236005, 10.776638401941272, 10.97005225805469, 9.895152485510463, 6.264892473069576, 8.030335164106763, 6.086575208985127, 17.298724440541857, 12.836324617194714, 15.031030573410925, 6.396712137187184, 14.338565395485121, 5.436827024504259, 8.978311694806147, 10.619938171712167, 8.434095391877893, 9.7194662868619, 5.453591724317822, 9.600779251265589, 4.0807603533234165, 16.42658125225845, 10.506116003945177, 6.054157331179884, 6.187426027094637, 6.249204759957194, 14.184059515023703, 18.695153976312646, 23.92260606192053, 4.522098359507785, 11.123242898452768, 5.3145270754152945, 7.912813254366686, 5.668958690147181, 4.483772192829837, 3.641391912776852, 8.602068158519783, 11.358358966108964, 4.725736652236646, 5.693072845725929, 14.94789612430053, 5.749379488158895, 2.940614152111758, 2.497453487565711, 2.2157165033741815, 2.0253252497653116, 4.955604905878319, 9.027661512277792, 3.6550000000000025, 0.8480476386998623, 3.7841852632499573, 17.68121759581881, 3.2860805172980663, 4.12204165279165, 6.561262561512566, 2.6663776235153787, 1.7689085838780196, 2.3944260884959343, 2.68856043956044, 1.0808575767958963, 4.866192295714912, 1.3285761825311688, 2.238805133694772, 1.9226127502528436, 2.105567337642912, 1.6004479520003583, 2.0054041424094677, 1.4371029699370932, 1.9215577417974545, 1.3023965152321806, 4.308066057886271, 1.7793609548495177, 5.774999999999992, 2.894999999999996, 1.9325000000000008, 1.4504999999999981, 1.1610970873786415, 1.8414156837882927, 1.0047663494744836, 3.996108196609129, 15.136781011624038, 9.173305856288557, 25.769127142603306, 14.763765762882656, 8.726554389224509, 7.067189052988001, 8.22077130654253, 7.7325207323996645, 15.423378875866987, 8.116651543645624, 9.977361623533142, 9.84869609602446, 7.299915421501547, 5.0895403407974955, 13.813640331617703, 20.508674385947, 16.977934095223404, 6.341188242776426, 7.004975300173089, 12.651480588727358, 10.260411334057226, 5.6143699056913805, 7.4355401822705405, 15.73596210874655, 6.618648241875991, 9.44778001932911, 5.218315083118475, 14.646475720375896, 8.463351663652155, 8.192681260178324, 5.38014069419807, 12.411705566331843, 13.404117078447882, 5.723196269428659, 8.254808894213868, 12.101344791977517, 11.710513107443004, 5.4116401532912155, 33.13054071956593, 9.133268473476855, 6.214723860591404, 7.631950164551208, 10.586268052141238, 11.284491874894838, 35.69997785092072, 8.674442355396549, 7.238159048733384, 7.66718628949102, 12.35659032125246, 17.339432170105344, 7.610582211470712, 11.305576478112197, 28.485527478253783, 35.06110573026734, 32.6027045791689, 12.636567874474126, 8.416267725812071, 5.912103415800921, 18.4673401638803, 11.019282232271728, 15.474405452528721, 26.292933675405298, 20.289484198797403, 10.18859837259503, 7.835117984766176, 4.776678213574277, 6.271431935834305, 10.423471227385841, 11.79020349493542, 15.74102501199912, 14.435459589650977, 14.087083132301345, 6.978774520495257, 5.980703588010667, 4.833073068955142, 19.534280114260795, 7.6344497902945525, 13.06792920037644, 13.47125662655253, 22.54022686221825, 5.426312271062264, 3.6996883588833773, 3.5532329950754535, 3.0883504764266783, 5.94999999999999, 11.236579885879232, 6.377714285714286, 2.832176034686392, 2.590816184138952, 8.648935431536316, 11.764346434815106, 12.180124083493894, 12.840934793893137, 11.480358863358862, 24.03889358671704, 9.532327009842298, 7.280763650571108, 18.92557597468413, 14.366770913770926, 2.9811111111111064, 3.941457702935566, 6.841565656565661, 13.799899153149367, 2.347437123565293, 1.9910000000000012, 4.178636363636366, 2.545872991073724, 3.0436172161172186, 14.912645529676498, 2.2683305737050614, 2.4207011847039306, 1.4968181818181794, 2.23636875049901, 1.1996666666666675, 17.196749613667805, 2.4389744394296664, 2.0925292559630937, 1.0049125173676905, 2.0924239338368227, 1.9173027088636356, 11.85962884349734, 2.0160393757870203, 9.508574008616874, 21.452564675543893, 11.430875244568853, 17.62568229551677, 36.84437631738914, 10.95747428026701, 11.50835958032721, 9.282457025474649, 21.807421312295364, 17.70732488202972, 33.991041971532276, 8.286797689930092, 6.76646617225508, 8.553132548523838, 12.46188486465064, 11.086333111256192, 17.515819611523472, 15.908069134525082, 16.91259395974142, 13.356835360514483, 21.086999459203255, 6.543300530201449, 21.393478022267956, 6.909415308609889, 7.756818369456049, 11.347724632878366, 37.324621087832746, 7.070332418400259, 9.717147455523612, 17.70724872919387, 8.053205045664637, 9.851709426007524, 8.297400657616006, 14.569121098658764, 7.594758289180671, 6.447995172101054, 8.589775399865843, 6.912592253107444, 18.376895855529504, 10.528255215229239, 17.804690904791126, 6.602413555148573, 9.670657787384348, 8.417110318567842, 8.01904452560052, 6.542043570310167, 8.499285644207443, 11.961148406557246, 32.73423098068065, 18.264103739141216, 6.184695520964508, 8.043825587028538, 16.576416389861294, 7.351632109152231, 10.737562505675452, 9.753683278849396, 9.897755560035785, 31.463126733927858, 14.762390236679442, 9.628954468296804, 6.096271889167021, 18.666225109567705, 6.570006637069742, 7.586511536905799, 17.219548239495587, 5.868234196671882, 22.122176948642622, 18.99556069619289, 7.695555905205221, 9.202496773489386, 8.913655016157698, 6.354024572433797, 6.978747826149337, 8.855672102738863, 23.792190570664406, 21.301972705224966, 6.690201027666149, 23.575566392525246, 17.944004894553224, 22.94827478147792, 19.786260388504108, 16.835224745812837, 8.582082457764475, 22.69117705881371, 23.12247079711276, 10.18060525554045, 5.183055359802761, 4.532801795193107, 7.360942036892573, 4.54621177356854, 10.188853514193793, 7.553386158213554, 18.562229649619624, 13.017299020858848, 25.418560936401917, 10.79943491702932, 38.10811911695932, 22.149770388746575, 8.297845892142606, 12.507031405123643, 10.690161017701218, 28.042548589407733, 11.145417468089239, 4.574633146258007, 6.353785540989745, 9.585637720050755, 16.485807681873514, 11.83112991879084, 5.356530564350489, 4.6843329185104645, 4.250206455379101, 8.349528745166092, 7.636529539095805, 10.795786376093082, 11.26386285028871, 10.085772673990434, 10.913120136824682, 6.684367746481439, 7.136688540539338, 17.8475491006229, 3.8984931062747994, 3.6135796186713995, 3.8555245234880724, 7.233049000664044, 3.3067479593797344, 3.5639111232425082, 3.6224344029993127, 3.01498121992654, 3.0494214429308486, 2.8610463883439166, 12.993447732822736, 2.810299854538931, 2.9070068152844812, 11.668434052426166, 8.292056002088957, 4.083937337872839, 15.2006929147257, 7.133047697219125, 16.683948350949063, 8.190552548062865, 15.3261811641889, 7.092443469002854, 6.673302238521932, 9.194777078646219, 10.356417986865193, 7.623149433597165, 4.696772978569169, 6.102664204328861, 6.228383878838032, 5.095761519326567, 10.474668228429485, 9.6122299450215, 17.79280168194345, 14.353860464690314, 3.8845320585250684, 14.582875627494003, 5.8667316597431425, 6.695883510042053, 4.460397400813121, 5.309708217244453, 14.112333211828236, 4.454023809523807, 1.7209434364209812, 7.501069927363656, 3.05964727747201, 2.231378187397309, 2.5431320491547384, 8.559906744458777, 6.383738156205445, 8.619651911511994, 7.624509039607413, 33.80794171082916, 9.851030505353668, 10.24045260587055, 6.377835168813295, 8.657103574993737, 10.230835312970683, 8.278184538435854, 15.000794976952509, 26.99597474203567, 6.878866403778402, 12.65544374421609, 28.90349935943891, 17.630297953722533, 6.248574617058403, 10.731499367195468, 6.576691363736465, 5.9328058542357125, 29.496832613139055, 8.250169751378175, 6.297976861827701, 6.111229375109799, 6.308094230795693, 9.26111999629297, 9.500832889659387, 5.7550226455483, 11.236804368945235, 8.633726686418159, 14.169335768475886, 6.937682883337695, 11.400539906767104, 9.75142525057871, 8.068621295661622, 9.336237007739188, 8.654281591779887, 6.243440146201102, 7.410023115439904, 15.19616125541125, 8.620031031555852, 5.279657443828585, 9.646077703272157, 8.349166580917336, 6.471181818181824, 5.58326937031252, 9.601379768425003, 6.888843888686911, 8.613500737451977, 7.549204932314923, 9.47740650863462, 12.529583333333342, 15.049434005802656, 5.208561720407792, 9.240626815879278, 11.86314863511695, 6.622361664364129, 12.328611405164038, 4.6841319979455545, 2.0753041081116934, 1.7667315835807766, 3.4333325311883867, 4.066464927971371, 2.602324175824177, 10.1296350209826, 3.6093971951896666, 6.324147667127754, 8.060816184212262, 13.50932923772135, 15.604202270381842, 5.693356227106221, 2.0000000000000013, 18.633877079944586, 7.5522787051472395, 1.219566148527356, 2.1400451733110866, 0.9912835873577488, 2.8346126717261866, 1.5565652740276128, 2.726849247605899, 2.4494587877759524, 1.3665793457040114, 3.5140895023827596, 1.0684437445592712, 1.3012180860486338, 4.236669184186701, 0.9971325024052778, 1.3111347400700004, 0.9368538844029584, 3.9937612467005144, 2.467940878207274, 3.398511509239516, 2.498924366138273, 1.6211580392436031, 3.517219775274675, 0.9623241266824347, 1.4245386849340758, 4.354576708523679, 0.944635696126249, 5.909020202020203, 9.119999999999994, 4.020610933082907, 6.812669238905441, 8.723590524832693, 12.776180226938799, 8.104408166432988, 7.267930989327815, 10.284980153119365, 26.06467693158475, 11.626460009746335, 12.667067648804334, 9.248669178955524, 16.234247064484613, 27.867679222945576, 7.277121003002296, 34.871195146765004, 8.595432306714894, 13.850441173900641, 8.052987397970467, 7.334885224697135, 4.339423350272662, 8.778586704722054, 7.884190740795349, 5.627314429947791, 5.068789259416521, 18.74713172353898, 11.769643893290844, 12.663629726265077, 11.320225998079126, 12.899885551533469, 30.279074130247118, 32.99648169934642, 22.993628154294708, 26.5824482412975, 7.575868337696808, 5.9725125482592825, 20.322052087224836, 8.004834246688866, 10.049146294468946, 10.091925988984205, 15.447615463916211, 7.234857261332721, 9.528379756598556, 20.756068812047744, 10.62250171175205, 9.361374897060749, 5.719047267652582, 169.5790175438597, 7.740466789492054, 15.179659228059293, 8.62040445620497, 5.055436164285702, 24.910863142549506, 13.911141040452963, 14.955275846742996, 5.439272489635966, 17.095496717734562, 13.954592288287904, 9.641495559855526, 16.44962043629882, 32.4586463742135, 4.955569031901872, 11.520149517328795, 12.420469988652737, 19.127264644600668, 14.486158651311706, 18.346018284844455, 10.10486218500212, 10.38263651372912, 12.842028614383485, 6.633485509658847, 23.43487567014159, 16.876727241667716, 19.124946440207662, 10.201100406166434, 18.929055023428774, 10.717727141946236, 16.66135867280753, 5.632800359416001, 11.608564885857549, 7.486091220422492, 9.8693816042649, 7.7048210115296145, 5.304883938613756, 11.884402204879269, 4.823050161127715, 5.3043386086344615, 9.711096062720852, 9.077079823974987, 9.51887552759523, 28.166928291228142, 5.362804991217006, 5.09348218961488, 6.9518550275329005, 5.623881745091006, 7.358864164967655, 7.061304083651485, 10.22716438209695, 5.590383081514885, 19.222769909078384, 5.925293076972356, 7.263163238322194, 12.23818984126581, 8.98910656861015, 9.249962701584984, 9.042781610165344, 9.396497383201131, 6.422211046471483, 4.663843017511887, 6.381670647972469, 10.682653025521885, 6.023147816887465, 10.454872088773435, 6.835593422833074, 19.376181149452986, 6.504879293833486, 14.896689195111511, 23.33951632265734, 6.985246515949638, 8.384601748759756, 10.754712923141337, 9.613310401941746, 11.071776245579949, 10.543305095961829, 18.709706907787552, 14.988187982375994, 12.07252631092087, 2.4851953467119183, 31.163410015018265, 13.107781143306294, 2.1055192829480385, 11.713160296769093, 13.714121496399153, 10.489999999999998, 13.948628549786513, 7.556466354975901, 1.910828900487617, 4.197942475878274, 17.91858145723743, 2.1515119348013036, 12.908987955940168, 15.37803552885486, 1.5049989420080403, 7.356786283161277, 16.262052904380134, 10.80983073081638, 9.428523145746794, 9.940534180301979, 4.57833333333333, 7.560422533349002, 5.398782873148676, 1.5809990453818223, 8.97572966497781, 9.933022518495795, 1.338711978752055, 4.280781610266481, 4.829751953375635, 3.7827687142435593, 18.796974958949097, 7.619462318807719, 8.329757575757577, 6.445674255055621, 3.570894096991985, 1.654516082673085, 11.192477060429503, 5.938803509756304, 1.4347003157219222, 4.207443924762071, 5.985091576619338, 4.568872549019606, 13.271238095238111, 7.0602180386663145, 12.956153846153837, 12.572908818713715, 11.19818236425992, 7.662345422650591, 22.462550607697175, 5.749124250839707, 14.748066962344831, 36.926568233316225, 16.800931396177138, 9.77928476147765, 22.449159712343626, 11.232733881045174, 9.020993991398988, 15.713307401331564, 17.579980105124317, 26.697581038218992, 8.51404613214475, 6.438445351781923, 21.54248125545025, 18.218163668212114, 8.227966101676124, 21.891083397439395, 5.982322383887943, 7.352045286531772, 20.46649352472384, 11.393490585513934, 5.152677992356305, 36.32259404261136, 9.976073039383099, 8.530964374104526, 14.689039250550332, 13.01107052937015, 13.904201175978855, 6.874346762912311, 5.700486999147892, 11.251651011051617, 6.854471312267238, 6.338923491940402, 11.037279295038234, 13.983823592616254, 12.517301728767459, 8.230771581995096, 16.929348226904963, 4.3109768300328914, 8.078904589591541, 4.801812812088941, 9.355025186341773, 14.842521711885043, 5.145808051535352, 5.415686478297753, 7.49337161482619, 5.107383838401341, 5.101639078273275, 8.618964047922729, 10.880244460599615, 6.577112013465215, 4.532501473123066, 13.273268087455175, 5.357280408164965, 7.604798551768908, 6.725441651455861, 14.875814896179266, 14.78074309504367, 18.623540435971307, 14.672815967437142, 16.56341009925747, 9.239550299068487, 9.335636478625123, 10.361800495994604, 11.371027040331205, 10.980188937951981, 7.3149092133963345, 9.132921479253707, 6.2419373893845025, 8.275819370814977, 8.53742897268321, 6.55096244666536, 7.757044431981772, 5.575749288504826, 6.4181669043754415, 5.6627161636290255, 6.03812640885157, 5.12812056094929, 6.517963193728795, 5.937629871052503, 4.41811995892527, 4.981339411431388, 5.056023067328601, 4.198298516217178, 15.866758150986444, 4.475382334625151, 4.743183267910339, 9.258685698027367, 6.450249516062447, 5.533300493220226, 13.63379787832325, 9.200417100643946, 6.084099367143544, 6.701353088672744, 11.26121829085309, 5.164527759490797, 5.109033496649392, 7.974143157619374, 4.645838172751554, 5.690035984080689, 23.09629212231959, 10.275066064103264, 11.505831157963126, 2.783925598937501, 5.623251372906096, 8.633957332212818, 3.968354674307569, 6.48829495703361, 7.918232579887456, 9.784409783236308, 5.667395957245646, 6.189573210745179, 2.8733253268564964, 6.021786354326675, 12.696971500721505, 16.489928300729773, 15.183534133604711, 41.611041844712126, 12.429679090345514, 12.230605873295861, 14.191148422866176, 8.480960733428377, 11.60613735530176, 13.330608160925927, 11.748346606151644, 5.738335629255058, 22.743830717945013, 6.178034055436292, 41.400039253967556, 53.66065898461756, 70.95619520593651, 44.559862154526165, 45.23678575050709, 21.299026257370155, 7.1894214325324475, 9.704788429976231, 6.547328175771124, 5.582541683104852, 18.302542099803674, 167.71200746965468, 8.433992091507916, 5.945571354627371, 10.040191917653294, 9.097666474997748, 30.987578991772022, 6.160199299905887, 5.120993382850251, 15.22172778651788, 6.884275366100314, 5.843040026557467, 9.330000125648887, 6.259061919354404, 5.315805484663967, 13.242743465830372, 21.685203347750676, 14.338426626951703, 7.573702729374941, 6.260718543922484, 11.113780468882434, 6.0962022983436, 8.667754953404812, 5.6916100996245405, 8.389544954802039, 7.291736981327285, 12.41359264731847, 3.9371035287408933, 10.146304567313912, 17.78933126466492, 8.45440358915145, 5.233436490197918, 7.159977051074606, 8.957131616743258, 4.95480171894381, 4.913772826681673, 4.615022849137175, 10.770022091437147, 9.575794590965247, 7.723103002283248, 11.862407982979263, 7.777699746405494, 12.552273160496426, 15.845507360908018, 13.19135209447192, 37.63984132458915, 8.910555547425412, 7.63974460011164, 5.258033843962162, 27.795957890390397, 6.372743869898959, 5.196570304225371, 16.913718600967993, 11.603993747292602, 5.419383694343092, 7.120426062776444, 5.73175244534996, 10.285720892361041, 13.46836176397692, 7.704002379252475, 26.683509331548816, 9.490236225218649, 18.619952256019502, 52.88997108191936, 28.48749936191104, 57.79837390215028, 28.671180544945244, 23.143804898932302, 5.381687778421392, 3.229918627126736, 2.024042353963638, 7.614357475656025, 3.110451134051778, 4.912278080313405, 3.2433969297700744, 1.851696784594836, 5.037557004629338, 8.999889086114871, 16.818224855918942, 1.993990744756215, 10.168980305212507, 9.518048463723934, 1.6189545843349302, 5.591023200580956, 2.760793680655093, 9.152871555429904, 3.5129036225752137, 1.359456787970062, 3.7931155097262295, 5.473491380083567, 3.0017882039705572, 1.998867431144395, 2.8365796172037, 2.6426935472407234, 8.270706951935267, 7.82818558563891, 2.7211159101816054, 1.079265767890602, 5.323572552813698, 7.382855093699112, 7.429514269065404, 4.236440674460824, 2.2859090307468657, 1.1156284069924605, 4.3122223303317275, 6.1242975978270096, 0.9590917186906874, 7.271026690518274, 17.111841269841275, 2.1663684941199506, 1.7642182373894886, 0.8820782488439947, 3.577694444444446, 3.46564167351781, 0.851379153335151, 2.5863483365949103, 1.8381588020329018, 3.2242666666666686, 4.03565277002681, 3.320230301105643, 2.0245827555529052, 1.7985913806778622, 6.492983377556906, 1.3391051844750381, 6.550565857709081, 7.511192980489227, 21.271017678164654, 9.960459071649607, 5.635327350980949, 6.5792231480262195, 12.225398030554238, 7.23144304401316, 13.85661810375354, 13.267752914815494, 10.710619172939497, 7.129247023704163, 14.42875685984467, 9.218578905804986, 5.999261061821078, 6.708107523529279, 10.03997334858824, 7.1572668775115895, 16.287366013230915, 6.8679722426952114, 12.62852369701326, 7.619172100121367, 10.107538732413587, 15.639391890535666, 14.179184650185992, 8.008559149639224, 7.578848352225508, 9.126013931539926, 10.63517046971326, 9.168468874215751, 7.104288225860554, 6.287679491197369, 5.215043184072159, 21.920076053647993, 6.607650762740127, 4.436111191262302, 7.425721513086364, 5.603893972733182, 10.596921764551944, 5.0441726597023155, 24.44512639900699, 4.277235294102018, 9.728553819585274, 6.110427341155391, 7.456770231655718, 5.590920420425098, 5.466956554163294, 9.206571010045595, 9.841322351397807, 20.284510120843088, 13.531488054197883, 4.638196202295079, 6.099779461185651, 20.112849334821572, 9.860386990918995, 4.564890471364061, 13.32940466461222, 9.014571947482628, 4.666325645341869, 5.187441140677924, 7.332652366817342, 8.734958263962906, 5.420620076577967, 7.63769296250151, 6.425509400047916, 5.882782634906421, 9.581908694151021, 7.651941874519256, 14.11352061620258, 7.373305900228924, 5.716787701897023, 7.131122820274349, 6.165760858945727, 16.817708826358825, 9.010733617077268, 5.73252218013411, 6.926886860925194, 20.69969945697576, 8.945267757164093, 8.180924339549337, 3.601216392395823, 7.334277040653785, 6.607876248529296, 1.2564370336941015, 6.304974515780387, 3.2817249886777655, 8.181069867930447, 6.707792169755086, 8.135806004298884, 3.3807376715440287, 4.24461880767093, 9.848286652537759, 1.1469060863422005, 4.137507009144462, 2.9173053235259903, 3.5706254758204197, 4.198171860090595, 2.7292777897190343, 9.80255330330331, 10.332395905213502, 40.022613141558175, 7.184391683694597, 8.563608758218326, 7.141519720455057, 21.551770024254687, 5.326671538655241, 11.610693718422807, 6.825296683044609, 8.24493837237972, 6.531609324009323, 23.269452380952362, 10.393895128082567, 6.178313916028932, 7.40985192585193, 2.971937766118082, 14.978984848484842, 8.214493462226859, 4.556522940516736, 4.061147968367015, 21.827523809523804, 3.754389080000841, 5.818317280758458, 4.634954186613354, 5.199969073193626, 20.05947596779637, 14.800869047619047, 3.1731280419293566, 8.551285901929884, 13.633273809523809, 7.055904364177999, 12.485658730158725, 16.262290452745823, 4.543796098582951, 6.828238967358807, 19.72983333333334, 9.804343650014431, 8.474991427180633, 12.144382760212265, 6.778560222822424, 7.214256700528151, 11.104648874771932, 28.48272877253308, 6.64209996100313, 10.936644984658159, 8.240347753029683, 13.177912622725344, 5.629310770223021, 5.8342417860728535, 14.16113930430928, 9.549059860676465, 20.840886283736733, 6.315193015428528, 5.17653595283868, 14.905716545730591, 6.083457044368166, 5.422995634017306, 10.487616177031454, 9.694444768914355, 25.063450083746535, 23.760608787720084, 9.788645125808115, 12.425960095674604, 9.902465180487944, 5.5172020366012315, 11.108201010532165, 13.78929866191572, 8.711195918085998, 9.324227951508565, 7.5412762564160625, 15.444905478093355, 14.57529633828912, 8.224082638903486, 21.26151002122774, 11.56318448493262, 16.7518753000946, 21.298629831533425, 9.915738557063214, 7.659782370335707, 7.674401566688261, 23.24633874806736, 7.680008293298091, 11.93645721962922, 10.20286500099306, 9.087762294933208, 8.350137555433811, 5.5984550889874765, 11.580182856669554, 6.803489220384097, 4.794777253902561, 10.491721919186025, 9.490293550554663, 7.997662727182262, 15.067080684673874, 10.012627222491513, 7.642008617081111, 14.330345312094321, 8.018818857760952, 10.244069875794139, 7.2365756391128295, 10.956208939975214, 13.140541988829796, 7.027517396934523, 10.794596747629846, 6.876207180556908, 9.903927897133368, 9.895592608088897, 17.451998651863164, 8.984094400349706, 8.011820216601809, 11.410773072278765, 2.132079396417198, 5.701638301962775, 10.799901834987939, 4.809254701547463, 10.21794849345409, 10.139760677300046, 4.428071319610493, 7.329526820345531, 22.656152288167018, 9.120342533272984, 3.717996021544667, 7.30465564801128, 5.153756525151262, 15.02896195625939, 10.90850104537463, 6.650369876684233, 8.151220396315871, 17.22659720336424, 13.283539359189781, 12.015881900917618, 10.590354414436902, 5.585479529290055, 10.356864144046082, 9.476275247451802, 2.713093974269389, 7.350085528398733, 8.751046896099332, 6.44770443108653, 7.126145542406689, 6.278071479885384, 2.3204549478626797, 7.58098949254046, 6.349034227830024, 10.375889930562572, 5.345524412755648, 4.848805309794623, 1.8823784730301043, 4.999115297527821, 4.279036347017509, 5.770062065691933, 4.145431510880027, 3.8641850074153203, 1.627666239589116, 4.0253214119326675, 5.171446846756604, 5.053542566295214, 6.830859315752386, 3.4246208768897843, 1.2847139134277228, 3.5365084068658756, 7.074799856309, 4.601656668414506, 3.3094927233179225, 4.216430501487308, 13.805972228676, 7.062810676666099, 9.414113967599498, 5.719786764482382, 13.44268634735589, 9.068606334914863, 28.25433162300206, 7.530178616079311, 17.578907705445957, 7.871806337829766, 6.025404352435461, 5.711395317742683, 7.541437485305778, 7.5385921906189175, 6.798201587396214, 7.594834319613782, 7.144509438509646, 6.025612753309718, 69.73185541754353, 71.26090554186992, 56.562189568256635, 32.276684886392296, 28.431164528333504, 13.281904945252709, 12.164671323957656, 8.603846334918444, 5.819867843188194, 10.506560185183144, 20.42886116370878, 6.5057412602702644, 8.9567813129554, 9.904009048246952, 17.28605909273622, 26.037448059107824, 5.789512466416196, 8.885484184876654, 10.385939600641715, 9.89269717498774, 22.67062075503305, 5.637294403799072, 11.427639534641862, 7.098951778185018, 24.631312451942758, 6.761135018084243, 7.637847053332772, 55.42082785775766, 11.5207028745584, 22.43250342625224, 6.109354648700006, 12.010352777390557, 5.831661945676182, 18.777249217948853, 9.899627135131409, 12.336584335092626, 6.2215473487794775, 5.370389707331727, 6.6484349345510525, 5.272133503232331, 8.561644020547039, 6.591583084735985, 11.914920474088172, 6.3700575696941995, 7.104132977948303, 7.239938556841704, 6.24911583972129, 14.686228727238685, 5.515065563782337, 4.648505502117114, 8.967724081309811, 4.944053500289756, 4.821518572658303, 5.292498720085185, 9.92271156592692, 6.599535357202323, 8.636254606851844, 8.214676548372525, 7.555334257257515, 4.561051045676849, 4.299307840812057, 3.2487432636522824, 4.060591265746189, 4.722668294709034, 3.1308853144005755, 10.740801278033107, 3.5905497442311587, 3.1822148204347913, 3.462082471635332, 8.159912825615187, 2.50636418153036, 2.766558742903572, 5.776133253658636, 2.6685953906495614, 5.062219981876959, 2.2548301763736496, 4.777165499251212, 5.090659635671366, 2.7407785661761728, 5.833020228745429, 6.612088661185529, 5.115827146085677, 3.102345820114629, 5.382466372786258, 3.8071378006572703, 2.0954957256821096, 5.7269257550677635, 5.827550676911902, 5.188963885290612, 3.6430744756045006, 4.399445039327679, 2.2750769962324218, 2.328110396606602, 10.218613794082033, 7.408254205550546, 5.402413328572535, 3.439716907293191, 4.180681181563535, 2.8040002045645456, 2.783932660133061, 4.587319612184144, 7.288533346955048, 3.5760239225594153, 1.7565531366971048, 2.452610709551491, 2.268221171629144, 1.5570906431882783, 5.233994343828577, 10.852905256464714, 6.4342866340530795, 7.553448853176555, 3.3496634199134196, 14.171627545741389, 4.6309328522881, 24.003827956303898, 8.95275935502112, 15.165839623340169, 12.759283280398773, 36.65910303409184, 24.77353254388714, 4.622428718190056, 11.109557737660387, 19.660808638926362, 12.821130978847021, 6.100994257261718, 13.155799803435896, 7.858492006851243, 7.760165461310355, 15.071647349430812, 9.989024123305244, 5.365635321167172, 9.520582081312988, 8.730620524269936, 8.093584204080608, 11.014011945890518, 4.3166453129220965, 21.23400868003503, 34.77647037358452, 30.59094264989095, 23.151256371599118, 40.60075144669198, 19.499098759676606, 4.913285683449075, 20.362950950448848, 4.4923328912483, 8.225960664956249, 18.363179280192863, 11.156735205724896, 25.433862404362834, 12.902703859380598, 16.45333904853114, 9.64800504803738, 20.502771860589824, 8.814477861440851, 15.57837002999013, 13.744042969360223, 14.693750326946612, 4.407877294636769, 11.606397861677266, 16.528473355847154, 25.08402188090535, 19.34263916148175, 7.389303088455874, 5.498142089140075, 5.087045293023595, 4.044728135287111, 5.302289137407386, 14.680858658244182, 4.107581699743906, 4.600160316933593, 11.764179999892702, 8.485005842229164, 7.7292305543125455, 4.6160005052573245, 181.53555555555562, 4.818772687242227, 8.57740363716283, 28.75213696324792, 5.8155580372935, 9.504648097490776, 18.79896277677915, 6.18138938131895, 11.476887088105638, 6.097943025998387, 4.023626926626025, 4.476407355660779, 17.769478666388217, 6.621305372339423, 17.89253296241203, 3.8947563773919662, 4.867885663310377, 15.367658379001414, 4.426852419480644, 11.364974335585758, 39.258487819488025, 5.83435926666747, 12.43626683838033, 17.10573278656928, 3.9071446293174636, 3.6265773102743504, 16.30092183127922, 4.635517290509161, 3.282516357162191, 6.422200245435246, 12.799308773171692, 17.817502506355083, 10.503261772991193, 17.781685544714435, 7.54595736917479, 4.761277240491276, 3.7941225701508623, 9.603461165925093, 8.300487304876322, 5.522018386209546, 4.267560308367401, 5.36902404568602, 4.465979380310985, 16.08017812857003, 6.1496446255491435, 7.023965443569442, 6.959041151794746, 2.9679060476742625, 4.361502873166984, 6.95210084529789, 18.009090857126843, 9.063083665021098, 5.247228992109215, 4.817669056963745, 35.987727283329356, 6.730025946483744, 9.292057075085776, 3.8442583803743324, 6.460063763733612, 6.182817362444349, 17.294867451777428, 7.56145715159314, 3.4442344054894956, 4.911568476142524, 9.970703797795162, 3.6646474316719146, 4.269361679678415, 6.1975044952882445, 6.44095532652872, 8.587562996732329, 30.145230630480622, 24.735738666573283, 13.265103335140235, 5.572727125920672, 15.630263789105324, 11.32182099498316, 23.270118065764372, 49.897186617304264, 21.153210554956377, 31.085890135162103, 7.208935032342443, 12.5526167339272, 12.883423289737651, 18.643746203910613, 8.542818824283021, 29.46537509832423, 15.511131699727658, 8.393653388410872, 33.79417220586014, 8.791144358553819, 15.970524377232596, 18.78818959410153, 6.725434191343424, 10.712654101620327, 6.316040349584967, 11.024150141978247, 20.434015967857647, 4.739752994464972, 9.581232946768438, 9.382068200985955, 12.436598977353624, 11.556730044554794, 5.411785089897249, 14.087233806989893, 9.169374611156863, 5.7270060177572315, 9.59690401856593, 6.273811139479868, 6.073835922030636, 16.79355616303489, 10.660580085006016, 11.309450657114288, 8.083510713319598, 15.152068337390942, 7.9816995084893, 7.729462720693473, 6.384288370940956, 14.604181713514162, 7.914770063645139, 13.874081173424933, 3.1910726409665857, 38.21837161531278, 6.148488325098923, 2.8741504814013843, 3.6208692600557346, 28.297380570625904, 8.806912946468948, 5.2017035894752155, 10.860560730380156, 4.009166773209791, 5.167442016812408, 15.481394834958449, 6.056114780604548, 3.052090818031354, 3.137395506730824, 4.122054399179749, 9.604330134359978, 6.520841522171524, 2.9040897277278037, 9.702985706034427, 6.5967370789614845, 2.7242191183050752, 6.309113747781694, 8.744891792237317, 5.414186638562849, 2.2538274106251035, 3.3048844312701147, 3.946746023565528, 3.6106925726586514, 3.148781729883571, 3.6417609549648637, 4.256350089524002, 4.180165585070654, 2.9540970333012826, 2.8063561882468697, 2.9806801333104045, 2.8869436771217503, 2.395024702078488, 1.9953017199617828, 2.051450829506407, 2.225940700573051, 4.35617796951976, 1.7226057879654655, 1.908092615522604, 1.7997273418310962, 2.66558082581861, 13.129401547384214, 1.443104350526821, 1.3745749950845016, 9.787379713281881, 1.308355367631344, 1.2840900533416706, 1.6914100668554073, 1.22799618905713, 1.2138399714680597, 2.2224664451817193, 16.936905457498717, 1.5604992824118018, 1.1867728629757628, 6.892486657464917, 1.4157628238652777, 1.1344855153424342, 1.5727051825354603, 1.7795118176992066, 1.1306433783396712, 1.5181439426090932, 1.4599585882200417, 4.365934387034105, 1.1585375301310774, 8.195114443573155, 1.1149868510742937, 2.3183252707995616, 5.355579861723243, 1.3108128836013988, 4.65397983959526, 1.8438397392708514, 4.961632485359516, 1.6170806418879764, 1.9893016045402414, 2.982663903566374, 1.521496220058828, 1.5630806881970065, 4.259904631702383, 2.8372910771942346, 1.3535776086176043, 3.340000000000002, 18.771701659451658, 4.59048380893915, 10.452256335475017, 4.806758579575216, 14.997696813056605, 18.229546809309202, 7.4918249065453555, 11.1188510134853, 4.455954711021868, 13.154018321560892, 25.17621613659958, 11.40625635207502, 10.525146010799299, 9.217143650173, 8.93513006461676, 8.718343526876215, 5.131168425210141, 13.219782882681528, 7.4450664622822105, 10.86618768107976, 5.861611755266879, 4.527213583272224, 15.975329742898637, 7.841038482411999, 3.903215720150246, 3.453681368090777, 10.308549802799593, 21.728176037135086, 13.578086413338214, 9.692895682820934, 5.610519843930981, 13.380924297449464, 8.375679808145279, 4.051988869075818, 15.182274592575148, 10.3034312880087, 8.30394963426996, 9.946690206435477, 9.201934416655767, 13.905686630866004, 12.654498158910291, 9.724719046490124, 7.87792337453512, 11.85827565153211, 12.438063009058366, 6.230016685401587, 7.69011655011662, 18.189075439625373, 7.500376581601705, 3.262344596587958, 9.197569978190225, 16.6724801073322, 13.574858080933385, 7.658175003894835, 10.743666529740244, 29.10812555517162, 15.157681701018006, 11.907223862102018, 10.226989354029257, 10.441126059445747, 3.3916962170630205, 17.64931681071201, 40.35767864251257, 56.339674094397786, 37.82469585480929, 27.05886992043756, 26.07839830783253, 17.248180203240704, 10.809237919620333, 2.871057977234632, 12.229015854633666, 43.8389841101563, 11.23965098790099, 8.128628979085326, 9.941069945641809, 10.990188169667666, 7.133745499186806, 8.125377988239832, 18.30434029579563, 23.191935195295667, 8.812221735973852, 14.772656520143942, 11.685282605583028, 10.761358339777232, 17.349314149139772, 8.62039752163555, 9.994440703553774, 8.848954050309331, 4.617399980322515, 14.057557983864603, 8.902804860414657, 8.996727428459874, 5.89164261471753, 14.887701389569607, 5.909859776015726, 5.1498952466536405, 11.53309195532743, 24.775948705651484, 10.474698167551006, 10.267223970162469, 8.959884032722963, 9.899621140933796, 9.709642039879157, 18.070940026679835, 15.144357264792424, 5.418505251454563, 7.096322188558108, 22.552616137920314, 4.806880028329342, 9.146282945716004, 11.529080919045988, 8.368385319801737, 7.630417144822308, 30.808036253467765, 11.241109000736794, 8.648825335753676, 12.611016699337046, 11.852450447005372, 8.04920714703299, 8.70884309602332, 7.388926284844245, 11.247671795413334, 8.863405491555506, 6.656801639732145, 7.241700405986191, 22.475259903262288, 6.961039794455407, 5.823166454741345, 3.8146235709569627, 5.809500101553023, 9.020549299611048, 3.699288621769647, 8.63089966962821, 7.964379388535887, 4.745855825948188, 4.700064137218269, 11.43949652983212, 3.6903015553752923, 14.77170440965062, 15.387397636697242, 11.038353882642795, 14.05712398817362, 9.089928534276588, 21.657492348040883, 8.97634448803931, 7.290598587293488, 18.08974469985275, 6.322063529577529, 11.4990947925277, 15.468394402043483, 14.638256660305146, 9.674598930765358, 10.991313695181455, 13.433803532302141, 9.511176608483318, 22.062535236541482, 7.330403852911868, 7.100914436841544, 14.74752909883692, 8.58392343815394, 10.478358930431428, 10.46313654701747, 6.6034010752097965, 10.870452606688907, 10.943449195727814, 8.447977494195774, 12.689791471591986, 8.371660906529709, 4.747314356481977, 5.298110095260533, 6.914880752122063, 6.503686919805759, 14.24168279483076, 6.484032448572616, 10.612630512508263, 6.962997641437676, 4.909476274898618, 3.8491344382066677, 16.253506699821916, 19.489400196612443, 11.158762263646198, 5.079549887757641, 6.08461863030262, 6.970489633225376, 3.6727772059225314, 7.271180528924823, 5.292125963302353, 2.845010144559267, 5.751357705204894, 20.81475266762223, 30.98177105196143, 3.368831336371174, 6.358058455533732, 7.290528420698208, 5.795819699392866, 12.33464285714285, 5.682098519197355, 4.936548083685401, 12.797680480739304, 11.315629891864488, 7.483916982251137, 8.045925423513443, 7.011606723123255, 17.93979120320045, 10.928923410265602, 4.574931784937476, 7.80935397669706, 18.658615079365067, 9.589403663246305, 7.862300065646971, 6.89530548906252, 6.153411965725089, 5.777547370967876, 23.012173268429496, 17.964830341250778, 15.314075809330072, 15.279617987085347, 5.796520197501803, 8.360375472067775, 13.68730965200369, 9.811793862692419, 9.110809814658692, 13.059826089539923, 13.927032956618085, 11.991167534930446, 20.146452694879436, 36.18588135030573, 11.749573205754158, 25.251543340882495, 5.252376268314221, 18.379403285126063, 11.159071088040454, 5.149674317729189, 7.826789673905207, 6.976370949503522, 36.233569555079484, 21.98342672733882, 5.996670588041931, 23.28087551793901, 17.01739794705618, 13.969886987337752, 11.804918552329134, 3.999783766088679, 3.7019483431161024, 18.45510380227663, 7.196263089530596, 9.797325118533909, 8.626053190105461, 12.542793144093313, 16.02487252023428, 55.72663455576464, 6.165100606709687, 14.925925012040693, 4.356768615275296, 5.19231124460907, 24.069678565784624, 8.879957607072718, 6.59005759646033, 3.6074426506215014, 12.563428700636234, 12.937199219548518, 4.290675473289347, 3.4410441470065964, 3.5084481732181154, 3.222792590256687, 9.390429981384655, 5.577623432017288, 4.533915126467342, 10.317875754359452, 8.5791518858494, 4.187512612616065, 4.484566979504624, 4.816209401811706, 7.090664261632885, 4.128148813618696, 4.212589440149441, 5.680452746024246, 3.5753919722262237, 2.5669539625453943, 2.121704905111291, 4.24827001194743, 4.270286903897745, 3.4428665419412696, 4.106328339575756, 7.210720905221198, 4.202215015885603, 5.049265385049362, 8.34484255025003, 3.7751295655813784, 2.8417376944160626, 14.088868025356998, 7.241588197749961, 9.764532488159855, 1.5939674548540765, 3.264732192359415, 4.1561126855600525, 19.305982259570484, 14.77584213649636, 5.70111172367364, 11.470199495961948, 3.9130484657668143, 2.36465532484297, 2.4332400432900423, 9.674352707749767, 8.99861035708899, 12.614830810345241, 5.649269460540484, 14.844166517236978, 1.6481532150819354, 1.3419157306335783, 6.054034662453236, 8.695559973686398, 4.551479685190895, 4.7258952414889075, 1.9869558823529425, 2.8017445390866453, 4.071938084940682, 4.559238095238098, 6.28648809523809, 8.571533228738328, 9.351042066602073, 23.926472605937708, 6.108338056104581, 4.384695340201269, 14.395848879532455, 19.13674988993558, 8.65902900718964, 13.293210933729807, 12.05785450967042, 30.152559536148996, 13.231582951673843, 13.001939380048716, 7.855876671489433, 10.671965236680935, 14.365627268315782, 34.192903737540966, 6.963998972216899, 12.205337561524598, 17.89839042945114, 5.198646726064298, 11.816178132891581, 10.423856698903753, 9.650279287905027, 5.296896822558803, 6.906925865979049, 9.009362340717223, 12.079188409533128, 6.260650511243087, 22.461453429086685, 14.650977729621214, 7.712316850254102, 14.24772685263484, 15.829715558034632, 6.005694118001093, 18.94966800963967, 14.571554761906915, 6.047495275154955, 7.267054002193215, 8.76974060974398, 6.292371842870529, 5.401705813315239, 15.604378928515844, 9.942356092606522, 29.725426248669628, 5.525121629097206, 12.550360263880835, 12.880993780553554, 16.3966466724803, 7.044784175566117, 17.559834231168555, 8.914702791947102, 9.979196712485464, 11.544672609113318, 8.780066307119185, 4.144713685550562, 10.57055282704815, 11.944137187508897, 6.954218292997434, 3.724798411128583, 5.98774587104745, 6.620779327619388, 8.070776526391228, 7.448505485886942, 7.153783060420084, 6.249802050838473, 9.084569592456418, 7.6341960194528715, 1.136052018856637, 7.359047915735322, 15.705250601309219, 5.308721414629833, 13.664263517798771, 102.87484848484847, 51.431289682539706, 54.09645354645355, 36.069523993955414, 27.488660630588054, 7.336938090673436, 3.6301574886945396, 6.305117487986096, 11.063813045847695, 3.808933097562423, 4.616168609186931, 4.823016803898102, 3.8434748575432103, 3.5121584888363953, 3.319735390002278, 13.297020287000818, 7.2960590231280085, 4.4555100572931075, 2.6945160329916553, 4.023861001361, 2.7782428719986574, 2.5170624074649317, 2.668979714533103, 2.0892569399544874, 1.9017302182939417, 7.485, 3.9149381528120264, 3.258968253968254, 1.485575335429635, 1.383370640290214, 2.597941176470587, 4.338766630225033, 1.7182719837803486, 1.5366863264805704, 1.1572555381048828, 2.0255000000000014, 1.0862445556139388, 1.0101987089012239, 2.020666666666668, 1.0110164228205496, 1.5071021349666223, 0.972767415657441, 0.8742023900803036, 1.9366071428571425, 0.9175962458252696, 0.813210376217557, 1.944583333333335, 0.8721233321250934, 1.4458415498266246, 8.392150735294114, 6.334550151972212, 0.8314777059815583, 0.6584978193612284, 0.6295888935334333, 2.4095454545454533, 1.0191155788198543, 1.4656811594202903, 1.2753907520920311, 36.29676879699249, 52.988226817042616, 8.954259696176027, 12.441399352998376, 7.097260863349882, 3.532920758445527, 9.93361252303435, 8.648160092645057, 4.9414207746407035, 6.77139675577662, 30.25046415941433, 7.321922683644073, 17.964614941273094, 35.1143358586702, 10.961320566159479, 11.610096310124508, 11.029412900953648, 141.11916666666667, 22.878530767577086, 16.54992290954257, 10.230088827965886, 16.308731303849587, 10.098791820102395, 4.333101705342148, 4.940182024374896, 13.899803773177437, 7.397737294452648, 3.7942365847185653, 11.013719533515498, 12.308906218283818, 3.600756736633612, 21.050437027635677, 5.923268988106542, 15.541012466870887, 9.340339142563897, 5.592199879412295, 7.548420066693145, 19.6312258399312, 7.113971209950831, 6.759137238053617, 6.721358038813849, 9.070479723680261, 8.866558596171204, 3.541098917660215, 5.293112702453673, 37.68758076749098, 6.991820200928997, 6.6626856916469315, 3.9477406404981252, 5.387352931157758, 3.8198991316087296, 4.593071679277402, 5.495123774278751, 9.9798790828764, 4.667389827518293, 6.233006834554762, 7.095889102409309, 9.533413959375757, 4.629436040210859, 9.13291183237899, 7.413078303715396, 5.706084397542397, 4.6606065116401085, 8.669111897305434, 13.06325017023462, 31.202132352941174, 26.421217846481014, 17.468077439322787, 28.84526763484101, 15.60646932966097, 19.283573817493277, 23.096675759798064, 25.98153619039854, 31.08794444444445, 10.62130845803795, 26.75850561884833, 1.2227139018847166, 17.214639844708987, 23.135000000000005, 11.798833333333336, 12.52466666666666, 3.0635655737704877, 2.3963521680244995, 7.152380952380944, 5.733238095238098, 1.5439750080768064, 1.3629053934652207, 1.2366290937034723, 5.202361111111111, 1.0588289733399996, 0.9896661310169749, 0.9303589629497943, 46.24189416876747, 17.765859499653725, 72.93777596818387, 4.46954761904762, 18.334230898283312, 22.17596355863934, 11.405581539558236, 16.370707343825767, 43.42074070450099, 13.44465924985963, 0.9008991941563188, 0.7929814300754505, 16.439648511218035, 3.809075757575759, 6.626373626373632, 3.172294927294927, 4.071047619047622, 2.85191575091575, 2.6097835497835487, 2.8005416666666676, 2.813488733488732, 2.489816176470588, 2.5045694444444466, 15.59937075677339, 2.2695751633986943, 2.2939290905235556, 10.152111547808918, 2.3633333333333315, 2.3391885713615577, 2.1320760233918117, 31.625087962586704, 1.1215384615384623, 13.020438080287338, 2.1678282924505834, 1.9338157894736832, 1.988336946077962, 1.2641666666666669, 0.9817692307692311, 0.8550212510136169, 11.67729014970482, 0.7886818908645533, 15.354393573797097, 50.83265085731264, 28.653621587873054, 12.900672919700376, 12.376606447155767, 11.426431270923993, 35.410176182203415, 17.791596515405537, 7.317806641088378, 6.8480932191399315, 20.25837586734612, 12.834685747566152, 20.04260658685664, 7.69280932962693, 11.75786424673094, 5.806293994175715, 17.66714170919522, 12.99822478893809, 13.959532572489941, 5.402547202591308, 5.903320078833551, 6.1745725428399165, 15.811302073441498, 5.672003905568485, 11.644948412751503, 22.778596000492065, 20.672890499161017, 34.39494536598179, 9.498007834678848, 4.495281252518852, 24.73321322987212, 9.011814760385787, 18.363131943172434, 35.31403869805898, 23.679220183219524, 13.026091197781305, 7.258643626429537, 19.206809980181276, 7.768549708664633, 12.679493641727365, 37.1349451125878, 10.688822635851235, 15.483367713945936, 20.416741711265676, 28.434235365043172, 21.523528999332772, 37.34061057090518, 12.283054787797365, 10.756690351415184, 12.023714029876627, 11.612650983578446, 14.883302864247966, 11.048161480355846, 14.990282542657857, 27.824190626089173, 5.711058025892226, 40.098524106706634, 4.2377944634027145, 6.873265882332481, 8.410440435762824, 29.313457091161894, 5.012773728474209, 20.87771186889536, 12.464218002780592, 4.414800193022371, 24.906882685350634, 23.50407465707506, 23.097764522849914, 48.301861233568914, 26.936864341710383, 15.339963905966858, 20.930262248254074, 43.86323637253724, 7.89227378611237, 30.78225200064155, 8.244207573681742, 25.015976260021326, 13.46624431986462, 17.909189598097086, 24.41702522844186, 35.94154502976548, 29.190823862413115, 20.110722027972027, 15.212088484407229, 12.380054526087095, 20.20436071484916, 34.14488649616339, 21.68006487574504, 34.311841463414616, 27.392637202164465, 17.274271559149373, 13.844185717670634, 17.634322572779226, 25.137056785234986, 26.397750542528314, 16.3794261075748, 12.364631147851997, 10.567092148177545, 25.89443700404634, 5.956996274740228, 11.871815840584715, 9.064511310325626, 15.768198229390261, 8.37097859403725, 13.823517327461994, 13.150670884075765, 10.639412451321927, 6.67712151361763, 6.392514030968676, 5.511523114431658, 8.075698904175216, 7.707080880834303, 6.359904720371754, 8.446730980186716, 4.9097084465803675, 12.558904137047113, 21.501935649819295, 6.478345902119823, 4.982040658947886, 8.695159344305415, 4.221356361639095, 9.693800301225219, 6.2137990713040105, 6.156912389614252, 4.82426315467434, 10.865972211920866, 4.508191948127981, 6.745785255992372, 21.995361014986266, 4.311845631079713, 11.28550122382938, 11.609450468090078, 9.590990921562748, 31.43659754207836, 10.223854815711777, 7.738308817367905, 15.63778921178028, 19.917399731547633, 4.64909896062254, 9.74012409652731, 20.467493574750293, 10.347544945580642, 15.333992347464083, 17.272914560123002, 7.995698209331934, 4.620121574745688, 4.875063746466592, 12.31048061844551, 6.793920940781019, 7.7518395538376375, 12.070601535421329, 12.207899560843465, 12.608696713422574, 7.913850251787228, 7.255401143921998, 5.1487119745217536, 6.34202947126203, 8.265676172776653, 8.291596041100586, 8.12595661198403, 5.42275411400905, 6.420395410609927, 5.883701788750361, 5.1287619670636335, 7.461573131299129, 14.537457434611593, 4.344618466952883, 7.126178497699982, 13.632088526010458, 3.8778561052746574, 4.5394327717427085, 4.726146701763509, 3.7234854618013524, 3.423687536675494, 11.031585867440752, 4.691157461986144, 16.273219546193737, 4.687925190710548, 7.119600243753179, 11.556040874707607, 11.313767272729855, 12.768608966682795, 6.469662569908769, 20.652547570105618, 12.093313994667497, 5.330303786107955, 9.720069613991873, 5.343171826605977, 9.23510665262684, 4.961773845615778, 5.471300804367885, 4.785454544571983, 5.226421264637623, 6.381625641721743, 4.5461396627206945, 3.5975948774968423, 5.426537549741299, 4.740558284788148, 7.80265704119724, 3.6679760317860315, 4.185237137008114, 3.0848080984890296, 5.738424205641783, 9.743041360021785, 15.387867383707453, 24.089403625810665, 12.356384303324566, 5.758476226459295, 9.683731096011487, 15.267923137722498, 19.704578683166854, 10.179233505048892, 17.060247854461792, 6.883516840372773, 6.473014072433618, 5.037466461473054, 5.483812811055586, 11.277301701416063, 11.545632988759744, 10.182221083458135, 8.38367891667156, 10.018694495627235, 6.493801506880381, 6.974626925265648, 7.019014610583688, 5.494500524294594, 6.732589945745465, 3.454492476892031, 5.331047146751623, 6.2809131107235725, 3.0729912182313592, 1.02992185825591, 8.410085802270443, 5.919671605500172, 8.476704285683057, 3.7991940423953077, 10.382317276114694, 4.92244571605848, 19.024368341275895, 4.846827224919979, 7.863456137334699, 5.0333520184710805, 4.96009008818284, 3.291468018293296, 2.4550666399282832, 6.238978956228954, 1.9820992063492062, 1.6586052724788938, 8.19702087277271, 17.494425182000594, 4.837342349368857, 21.925086549398433, 8.45119008254587, 5.563925582237154, 9.29500501147059, 17.985748132109464, 8.315480718867624, 6.866598932149092, 4.731257631962359, 10.21426933512506, 5.866484083495402, 8.85307932489558, 8.157639722720752, 13.332144142788355, 6.710016714188515, 5.892138438653019, 10.84643216940724, 14.053585700729295, 16.439312583049148, 14.299298614294075, 7.8931879050449965, 6.6712215066335325, 10.296758870182526, 35.9412435329193, 17.10181032597235, 8.247522808722781, 14.504167821667684, 4.213820638063769, 13.080408676136381, 30.258970191320838, 3.460924795032958, 13.535064738171474, 13.145820684302567, 53.54204573707443, 44.50864678365314, 44.51098049240758, 25.17916889489346, 22.7627328201917, 11.802244706621273, 6.692587886653308, 8.079779173575876, 27.911448652516075, 11.05715279327298, 6.319521045827586, 9.55799098982932, 8.68485664502342, 25.94319729834212, 17.94954224434472, 3.4898307334722567, 5.0311902107315145, 6.983507930998317, 10.768174493642281, 17.0774588318517, 4.045390185321974, 6.503116030087162, 5.0814971324299885, 5.013612059232401, 7.183332693414658, 11.71384258262563, 13.021910527095304, 8.240549688927494, 14.219597870323415, 8.515274153571614, 4.0704233016633475, 3.064421045229184, 5.32907638754605, 3.2145228441787723, 4.586687287297177, 10.584873047623624, 3.8618576822131, 4.460493638142745, 2.721891434805997, 25.232483300079938, 8.62378802993794, 3.975588771869712, 5.287113377942767, 7.614645463479219, 11.451367632307024, 30.45287770562772, 4.153126052557081, 12.37492179783696, 4.210680723725836, 5.947735524652819, 2.764387890668955, 7.8298845591251744, 5.810184878527267, 9.568875648765045, 16.009438639759924, 13.012647291804408, 4.131233710170228, 2.525046351950099, 19.354617043481994, 4.85694502743641, 4.2205473651793515, 6.7789904879819485, 14.10248602750665, 3.6868461717628875, 3.432089829010169, 4.008485272060237, 3.8978196288105655, 4.8189881132237575, 6.499553395437163, 4.699512680080049, 5.317292802834877, 2.706122198736529, 5.1383673948290784, 4.685286634469393, 22.063028506066395, 4.4596866778659106, 6.7714114945831945, 15.639597138002042, 42.81198240811477, 34.31154741226515, 25.500909312909307, 45.15456084313005, 22.23808374270675, 16.748790836356633, 36.00175919342095, 16.428421682634536, 23.001429121352544, 19.946559771557688, 18.34625445397786, 11.149032054692068, 4.024693396392563, 4.155208284256238, 5.731277761082405, 3.885413968438369, 2.840776083192195, 5.199380613073656, 5.1019643659048, 4.1558998697711775, 8.78720422506652, 11.119380999117846, 5.121475234371085, 10.81304104272723, 11.767575460766528, 15.480671424223623, 24.11243709095552, 15.646976246684565, 7.357586795241217, 23.177553898878898, 20.385327194394513, 25.22517414512726, 13.37400708391706, 29.007525020227988, 14.27575893071851, 8.392738355278253, 9.740672770531107, 7.523811901797325, 7.065362736370635, 4.339270955790387, 7.911632060975681, 7.434641266901803, 13.703594834829346, 17.12808045298226, 9.35191840137004, 6.819185890394815, 18.10091422630373, 9.210399498148362, 6.070657740624884, 10.65975345571015, 9.44106074986706, 7.0814737756122454, 14.71019828935632, 8.590704606509542, 7.303559194192596, 5.786662625139241, 7.17226528191349, 9.645496773081295, 7.956788197752481, 9.12488697135823, 14.212925134841928, 15.316029606355558, 14.918354290816687, 7.022098820180295, 6.0882842419308, 9.391956117688991, 8.618552691465629, 9.173592158152799, 14.619698625754754, 9.42396229061828, 13.262218501867435, 8.137279734464833, 8.749766394613578, 13.91934533927471, 7.236629087950007, 20.425596193691522, 10.449047941488997, 7.2499822035933565, 7.68234159738692, 6.970166840429135, 10.55201735177062, 5.139253811860414, 5.071729783861045, 5.750411979055963, 13.684533302690824, 8.179525883012916, 9.815167781564838, 7.885377371373967, 5.8849196018120145, 2.3299386922744025, 4.620441622340927, 3.3845858173967494, 4.268952347224587, 5.185314453466995, 5.982417622963162, 4.658553108422951, 3.8199333729912976, 3.7756268600600515, 2.915024479896921, 5.064811155984935, 5.837087847675806, 1.1849462688275512, 6.063606364913379, 14.935863064219463, 4.718808895549375, 7.076081873715713, 6.857071310840358, 4.819131298237799, 3.525029591075802, 7.175024639463178, 4.301571428571426, 3.606102228085924, 1.0119150494671265, 0.9410903852612074, 2.696692962321722, 1.2006680454500809, 5.157018711491839, 5.189983010948515, 4.936381052354831, 2.612019589181387, 7.647395338648276, 2.600532383466206, 1.3465001662044973, 0.8561132173760728, 2.4161822801445747, 1.2479710451862795, 6.926347178381616, 2.4902383091318345, 3.775657894736845, 6.877545915191617, 2.570064771331361, 10.430072361131401, 2.02503998894067, 7.748687347686732, 1.6591374253225608, 1.2521835129431846, 1.2130025158624613, 1.183229708867639, 1.122629091115248, 1.9207670454545467, 2.4874448616862264, 1.3347567471954578, 6.052482327576494, 10.045942792810903, 6.029999999999993, 1.5154728383234908, 6.899511092732654, 7.67256070114319, 2.673272924007253, 1.8571804873868571, 1.4513470564965025, 1.2149828691068838, 1.0737280286319202, 8.93506967177587] hash_d32_k256_l50_n3 = [0.0, 1.0000000000000007, 1.0900000000000007, 2.12, 1.5150000000000008, 1.1500000000000008, 2.3133333333333326, 1.539999999999999, 1.9308333333333323, 3.528333333333334, 3.0426666666666664, 5.404666666666662, 1.3908333333333343, 1.461500000000001, 1.393333333333334, 1.6815000000000007, 2.677333333333333, 1.8240952380952393, 3.070666666666666, 2.7575119047619054, 1.746250000000001, 3.4634801587301567, 2.4395158730158717, 3.7325725108225094, 3.1082777777777757, 2.672607503607504, 2.6084130591630603, 6.116404761904758, 3.713297619047617, 5.946948273948272, 3.3615191197691177, 7.236096264846267, 3.2555013042513035, 2.736054168054167, 2.4410222832722823, 1.9497837301587313, 2.211550420168068, 3.98787554112554, 3.330204545454544, 5.542714285714287, 6.287928196158848, 3.0089963525037042, 7.465478864272982, 3.8842025197025203, 4.290253685856625, 2.1120412014885694, 3.561309523809523, 10.9217132034632, 3.87459453046953, 5.515537878787877, 2.5761971785524427, 5.31799386792744, 3.0506058108558096, 2.400618067433083, 3.042607614607613, 6.330860315827962, 2.3758198125403993, 4.256863671175246, 2.72490723530855, 3.4156214847244257, 2.7423578454225495, 2.323466477966479, 3.8282845035940993, 15.55679440785131, 8.241096286563675, 6.070402377739217, 4.718858436852999, 4.599965304303538, 3.651288453213452, 18.513767399267397, 3.7878288644695703, 3.462804239133185, 3.56905432560271, 3.4497387539996227, 3.5124505661999272, 2.7349476560337855, 2.4268977148688817, 3.2830779220779203, 2.701842942732647, 2.801322869019026, 2.3353071672829815, 3.0528692654095124, 2.600513768593224, 2.0675959110309203, 2.5878429390381523, 3.4249816872042254, 2.3740248914648316, 2.4128429261559696, 3.0185413752913752, 2.06526989672968, 3.6415627928696397, 2.786576225431878, 2.1491209451316986, 3.034941758690618, 2.9276476821603294, 2.7009921966137447, 9.31148096315449, 7.281802765947504, 9.645760767010769, 7.789106003645476, 6.728564978215871, 5.884561137072639, 2.8327318657219975, 75.92744631185812, 2.1063682770588104, 2.30213945082695, 5.183125396825395, 3.0842684001207736, 3.1034482535600945, 3.481621207011233, 2.163027892410292, 5.3071259946949585, 3.0845245493167512, 2.1757340666784644, 3.313481229726585, 4.241571789321788, 2.147932125900908, 3.010497720770806, 3.1302817870255097, 2.3668549039905815, 3.2946081848820774, 3.5843101445274774, 3.8437660560895828, 4.636506625835166, 5.5840450060626985, 2.213394139194139, 4.359924990332247, 6.157937756370763, 4.17332104332449, 5.087113537301749, 5.2229260926712175, 2.7906086785353588, 3.1640325928965636, 10.409626238040323, 13.500071857222105, 8.231517836431042, 7.963635907174485, 9.58904314009004, 3.9487769247431617, 7.7451080280603595, 5.835807951380003, 8.386338437363051, 9.190936793917913, 4.809838707020381, 6.308538618166415, 6.59034021470321, 6.073359023383169, 5.830616879482815, 9.264214699894934, 8.214274303607633, 4.4122402951078135, 20.321892203988114, 5.887172595757688, 15.881573820382517, 13.23433628800445, 6.938677776313332, 6.758637100383564, 9.454535780318148, 6.802352546454964, 8.897534718244096, 6.107307207013783, 5.792191087707041, 6.986019866575817, 5.921704129787615, 5.129418967749392, 7.858646817369826, 5.4743946204889475, 4.525158554746769, 7.773086288662804, 11.586885745159028, 6.8060612293410685, 3.7533380789081017, 10.6400946460998, 7.10823674438025, 5.6181329146983545, 6.686938106681445, 5.225702500479567, 8.041965311961166, 5.781212269327482, 21.612965645465646, 6.011119202168527, 6.389750929074009, 4.614934554747455, 6.446101528359554, 5.488968686212186, 4.66101032456373, 6.396098266709312, 6.720184844934191, 7.122370560424079, 9.997597970338541, 6.4424095120021585, 18.080731884128937, 9.52248810193638, 12.556815448484054, 10.491999472749473, 5.573627797014157, 5.65480943047385, 6.875427191049356, 8.538536570618925, 6.309548866654973, 4.584430845732961, 7.779686346895999, 9.663873511035126, 13.90498269389861, 14.954710895342465, 15.027827624017473, 17.20651397393456, 6.870119971870441, 2.3054808452940474, 2.010040462501942, 11.162309491549038, 13.147649721631781, 5.60554958044742, 8.418049561291024, 6.61859306699398, 9.094469056219221, 9.934259397572374, 11.643320845820847, 4.054548945408198, 3.347500755012935, 8.58530876551303, 3.1392476260249853, 3.477869278818238, 5.757909431100606, 3.0361289956238675, 2.962109517168835, 2.7733086234577025, 3.2767702681964392, 5.263268798216974, 4.400990965174859, 2.483022536527896, 2.8282889804987494, 2.5423161010444506, 3.3694652057341017, 2.3090393367312223, 3.387519913325568, 123.54542452033257, 2.732242341203102, 2.810439416248068, 2.5320613578129723, 3.958028911987414, 3.141219334759006, 3.3507957041111065, 2.769549167822666, 2.9977491485123053, 2.155926314245318, 2.5672323652223317, 3.35899876087105, 7.34752330856278, 11.631442025602508, 11.432554173936204, 3.5425767822219054, 3.2265346330402083, 2.6840264988531555, 3.991888269151629, 2.723950580767692, 5.38386456006611, 6.870601851815863, 10.085694469025993, 8.113039016443379, 2.586308271614407, 3.695321083678225, 2.574673029156054, 2.8321443512552333, 8.782149175940326, 2.574158106884529, 13.41555438890634, 24.91114639302072, 27.566879308982802, 20.068027970829586, 5.786701450653047, 72.14147240130848, 12.76879892504724, 67.2050710394678, 54.508259187207464, 32.90181042355477, 41.19365139255308, 27.696734362447938, 22.582060233706287, 9.273705803121135, 19.069210884816428, 18.289597072991388, 27.90701026448713, 16.794773516344378, 8.817114307868025, 11.667518188037608, 15.295696917807355, 14.680290131321996, 18.62906574732756, 9.568222889096234, 233.79662500000018, 11.332809042310803, 67.17982211651965, 9.702173214844835, 7.725283589838928, 11.416393241900213, 8.19988993386491, 19.310536849460846, 10.501035168979842, 10.61379666886361, 16.08775207096861, 6.675055082632892, 7.81068196613812, 6.112732980667522, 8.36745516723859, 8.28559724506679, 10.58645375968507, 9.70010458024163, 21.414790408629493, 8.294013820223784, 18.649873955646576, 8.21489163169185, 7.627587212351086, 13.483091989207436, 8.66239159936907, 6.396185771688206, 30.90805064527597, 92.48019712859389, 99.56062854440019, 21.377314093447588, 13.072957513937043, 7.6899384478541934, 6.140084097363058, 12.159776786537734, 6.570857435568309, 6.811588155154275, 6.163012962902497, 33.51741148124895, 15.22324024517986, 20.98306236144245, 9.427740608450021, 27.09913380021096, 10.222624289364981, 13.665077005714997, 28.171261008750253, 19.07399662296859, 15.722031847392172, 29.396767468444253, 16.21970851896929, 22.91454552370574, 19.350503288804216, 11.933472421404966, 17.925828776345124, 25.88115370542156, 7.92269840471226, 9.778649257188782, 14.274121208318732, 19.984971037416685, 14.616335396989975, 7.187336544027468, 10.447439425490565, 11.68356737418804, 23.062158248335653, 14.183480571451732, 19.04502595258418, 19.021618277642435, 7.6226943776574, 14.980094690369464, 19.50109545379273, 14.800665591202746, 11.632893520184002, 12.074857019278923, 16.17079563492063, 9.02314810560466, 8.2708294958033, 12.770132100226911, 7.606308639553889, 11.977129060482001, 4.8591875360669405, 127.80611351611351, 22.493755821089973, 11.681731665158798, 4.844992849418231, 11.399781815968039, 8.53375966792321, 12.018093184593187, 5.381955308312314, 12.366034889033825, 12.244516663132746, 7.657643018582722, 4.170483849732326, 4.376954607159505, 4.665354276628274, 3.201764630274014, 3.8442245114985223, 5.942413778420069, 5.277799965397511, 3.081726890989027, 11.389728899499982, 6.137074295769859, 12.846503512010866, 5.626971994379889, 4.271443175168175, 4.442894241775588, 4.83999096325542, 6.010689218444599, 11.000158317282636, 5.787332611832611, 4.062041481572417, 4.985831190969444, 7.720923132964633, 8.121002472850984, 5.988733061127187, 16.953759930803795, 5.902815260723822, 7.01359496351146, 5.865788091115435, 11.772904777076715, 18.678569773466535, 19.43201500057373, 7.080059889767329, 5.925417516351763, 8.02466720366998, 5.591432717752751, 7.29441951632053, 10.286956613762275, 6.451996006584997, 9.478325229452837, 16.80325132755086, 15.254687493227392, 16.80496073770103, 5.309570383831242, 8.37359300796242, 7.156966745469001, 12.146875303049606, 7.453063562779806, 11.53988956598734, 5.763919677083507, 6.951042317068228, 16.46551926896633, 15.03784200586136, 14.534596848483345, 5.335755195986518, 12.214351975918957, 4.822442581714842, 14.499146305951514, 6.733163664954866, 6.614007241648431, 7.941293568571039, 8.261490461880895, 22.69682778588411, 4.9785624823380035, 179.41711111111118, 226.80780303030318, 218.43583333333353, 161.80669230769243, 152.10940476190473, 142.55014285714293, 99.29511904761905, 13.9476152277854, 12.606594307809525, 6.247703765296349, 12.02767482913357, 11.795999521762948, 8.337244109663814, 9.668409826534651, 8.107450680945147, 10.035558943679048, 13.312910252330534, 13.265834623671639, 4.314055150404484, 4.175965980270432, 9.134288520863047, 6.470958892114324, 7.367834001363331, 2.756716426595084, 2.960205127048068, 5.599413440024306, 7.817351748522224, 8.061941590227843, 4.4392279261569, 3.2702046001946656, 4.500586907256879, 4.707080422534173, 6.937968308750015, 3.496398196610151, 7.361263896016987, 3.750012821662614, 2.5244765215596625, 6.77318533126401, 2.572056112220501, 2.996938593930573, 3.8767688201783597, 2.2680341670979236, 3.4115138660390563, 4.66296648103906, 2.7883662351417375, 4.77709138870191, 4.92561215791817, 1.9929078632352504, 3.7478735021788414, 5.836272701316732, 12.368252087811863, 11.164063290293281, 6.621229301175821, 10.894632027903205, 5.58007560466469, 3.575972595404564, 5.422764353598787, 4.058762500911988, 4.310528063564384, 3.7538112698375983, 109.43433606731426, 3.144708631235968, 4.7975853101564665, 5.298212207308926, 7.206858441292485, 4.5932782088093775, 5.892259545084066, 8.81678213749931, 4.438365366814858, 3.9738754184491847, 2.8814414352092212, 4.940899349773031, 3.84609787656598, 4.874052387026457, 2.346325434827407, 4.139489667403588, 2.595308606160809, 2.605600777910915, 2.8542368734246435, 2.942288476222172, 2.196964256862092, 2.8558941763202026, 3.2173300047534044, 2.1817307760057907, 2.9989385868319416, 2.6085018045162003, 2.953779171463602, 3.474341279181449, 5.405669034425291, 2.1017793397707853, 3.633535912728738, 19.921797473189567, 27.24553664578078, 10.160093998098661, 13.57622098991915, 6.482088262117104, 10.894227477864282, 17.195017394059658, 9.495698680545074, 40.682585049418925, 7.910280655905923, 14.533108771938583, 5.6132510265862035, 12.121457790896274, 12.732643648830765, 25.51317248723799, 11.775293371936483, 22.582811938066197, 6.510880472170697, 20.73428183103195, 16.649999686325014, 5.780773101379461, 15.771809180121444, 5.847362900209909, 5.85606523138643, 16.362340900749327, 27.804967833294217, 6.196654390555582, 11.288212297671045, 6.803701414829073, 7.436343182395267, 31.82724429334371, 12.815674821448141, 19.34450839519202, 13.939263924719148, 17.377409753804645, 13.155574046525086, 5.373188682987699, 4.315722725015533, 5.3027197863632605, 8.903940038209079, 9.052299272667657, 11.755063267212922, 7.468723263802141, 9.794939566816177, 8.602719699026856, 10.434472946241256, 21.508700095478407, 11.715782961821395, 11.10485655103387, 8.048543518088257, 8.69948640088955, 10.158368092299632, 10.454991362094963, 8.070549833470345, 26.304049125129783, 9.534293848061274, 13.170628343083488, 20.049273425738377, 9.229522482740544, 5.246205904787879, 3.344617653860643, 39.6756565934066, 6.3341779817862385, 7.5002118546795, 3.6389491445814333, 5.912730904232282, 5.480672698787158, 10.170869615828787, 9.961845238095234, 5.008078310970912, 3.5463556824184486, 3.426625196178491, 3.7323549360429586, 8.594524505987739, 6.233728946863771, 3.3874086452288887, 3.678057872597882, 3.9541622443232245, 5.386149194062449, 2.8829585146312486, 20.87034505309505, 4.042827767076848, 4.0821004912544385, 3.9363931615109715, 8.091529961713022, 4.638652552348142, 2.4640678652885764, 2.264179471442502, 4.216581697858328, 3.3856669398627255, 2.3971809047538586, 2.8128696546831833, 2.5476535380696586, 3.1878597678774674, 3.730543918754636, 4.6225370800990495, 3.803473965095569, 4.714519225657435, 9.672788297778805, 5.452693770289524, 4.799651826291699, 3.839889933365682, 52.41792485243523, 2.289834483244712, 3.3180843057407836, 2.009341818358488, 3.556996955342741, 3.0527114680327605, 2.0963996481812, 2.630641817895791, 1.9203529344726307, 3.283556565063935, 4.240973884583912, 3.720453840223627, 2.5716293075942604, 2.3794248760565435, 4.663171544824877, 3.897500657994821, 4.037679675219406, 4.998341277421363, 2.475486065986171, 3.8117751875368686, 2.9119450068855297, 2.290676585109843, 4.3425207516883955, 10.721299539170506, 3.0347188062833106, 3.7195688925480948, 2.4133831092729765, 2.774923682526624, 4.82789640694995, 5.451662469012432, 3.6463043075695833, 10.602574820694212, 17.180714081729842, 10.632488371036304, 6.672991165059031, 23.564427650882987, 11.815618116764146, 11.664138543474877, 10.51445003696698, 24.24164961883746, 6.8183297426875, 6.19683962677287, 7.273477526773572, 6.074777186480598, 11.093381905581579, 5.8922497084670065, 10.471341372868812, 8.180075390850819, 6.354275548767677, 6.884372910063017, 9.333808780731687, 97.47073362722588, 6.039111853587412, 8.990142721836186, 7.220545298971335, 15.413822794868397, 6.63352615620337, 6.648112892729566, 7.5988295394367285, 6.956285976253027, 5.384479408839082, 38.40079766305894, 6.111762410689039, 6.5018692672424665, 13.09921743280576, 11.001620655542565, 4.735228821273517, 203.1066666666669, 5.732108110428765, 9.268205059345641, 14.824266375743878, 4.600945089807059, 5.442897269029907, 5.750837026842455, 11.793564466971173, 8.85089836973203, 4.563834615752229, 6.374454281450483, 12.751568360307706, 15.910690045814773, 33.83714364119474, 8.518897327451782, 7.754835325252568, 5.811568204986643, 6.584679262506831, 9.217640914321677, 13.11679817013827, 8.42262661995569, 7.383528054200256, 13.559911059984397, 22.949885077939264, 13.460750719143142, 25.032720927367897, 27.482302223295562, 12.078561193246532, 6.368366575255996, 3.9243163748796497, 6.977791663268173, 6.688005555106815, 7.946405012886238, 6.207762838343015, 8.335218745128012, 8.916073423605898, 8.194086639447043, 5.627754264015842, 5.859503524215254, 8.326773546010909, 4.2825393946033445, 6.9280435505290185, 6.482970468982888, 6.577970713926596, 6.0657887159177974, 4.397076040474696, 6.238733878725647, 6.1595602879388975, 4.117535035784895, 4.2495758763343865, 4.989773752405597, 11.772085883283033, 6.044233386671459, 4.806252389868208, 4.997479259870924, 7.695442539082232, 7.324479898265445, 5.287093328857359, 6.922726869402004, 5.256760610449449, 7.070288637806358, 3.7010998383640725, 5.114386941994365, 5.6931687136038125, 5.390778901684122, 4.952481032478715, 57.3173642135642, 7.415354707696811, 5.274525438282471, 3.501772096610471, 13.798790489289434, 15.76749574148038, 12.108464439595554, 6.021213809959071, 197.5833333333336, 14.162078669802774, 13.784751986009146, 6.729945728265238, 11.967946829851138, 15.78238387813957, 6.175720454393972, 6.806860092939293, 12.79947132100359, 7.253803769825364, 7.888371270804771, 12.682688777739454, 9.794674639103588, 11.832056451544899, 5.672888200327971, 4.930104149854885, 5.772295475829161, 7.186845050476549, 5.033569923078307, 12.252891646152367, 25.912767744578577, 16.764062904774743, 8.331660644673377, 13.144510132350277, 6.6329343723816185, 11.726637620671545, 6.72461323172834, 9.493614955967425, 5.740691724249418, 8.252192549323027, 7.0456293777052466, 12.76455197528353, 7.326304215050757, 6.2272896856494455, 9.872481531539103, 9.170770954360096, 3.516742686069265, 4.027501682062187, 4.33420753887344, 8.007853570696419, 8.320979457728969, 5.388129122528906, 5.560541692379456, 7.190292011760706, 5.316419262548455, 5.879687602950022, 7.551832909565586, 5.7835154443409555, 15.776693353746905, 7.387327116147989, 6.088165471028899, 7.016254406329624, 13.480646943876943, 9.895780914668027, 13.883621120480608, 9.004187008790163, 10.868238680352528, 10.975186291244116, 8.549907367901405, 9.675466654551414, 6.180710791862003, 5.598023673031035, 6.079065323200192, 5.915416468902675, 8.638147433515563, 8.554562689576924, 6.233387345438505, 6.956922369095511, 114.85765059940066, 16.772650328898496, 5.863221157193661, 9.013725731835123, 9.29743036959563, 6.577041390678465, 10.184986240067117, 7.5776679194230745, 5.586876288946867, 3.3657366232420762, 3.9078079879677503, 6.733511562004715, 6.200802149549672, 4.03329468212808, 8.186833259735398, 3.2691160126722107, 3.978729961409662, 4.380228297828483, 3.535521072069051, 63.7372151924652, 5.356039174477171, 3.311198886701477, 4.461024262065566, 3.618102382367243, 5.13014871759351, 4.4113815963992415, 4.216675618639779, 3.271960874053684, 2.7640731135023957, 3.3465663685823586, 63.18750761330174, 3.721243084076732, 5.010748443290978, 3.814592872472566, 3.0676932773132006, 2.2425243045068117, 2.96860145853792, 5.857140464930785, 2.6628003421499327, 4.987650264801555, 2.610558186051085, 2.7732701051534976, 6.11099155507759, 4.118658655419748, 3.047625225413282, 3.5317440609499426, 5.041092771789769, 7.491730010185892, 4.08322763215651, 3.458904954641373, 8.05096741788456, 3.0824863416775004, 3.948954726856201, 4.377198531747033, 5.880178198570688, 4.176131292892275, 3.448411196382824, 3.002174130319669, 6.146641571331208, 6.274239154791482, 16.890363197867313, 25.911282991491365, 11.475863902125774, 24.869950406283742, 6.943011853197707, 6.682489692702467, 32.25389852782129, 7.569447720110227, 6.596486863247998, 6.441094001254892, 5.180998119413391, 16.529528673216884, 6.550369470730935, 8.490837985732583, 5.308739521300887, 24.571468481708607, 6.558543120047906, 7.1761439259304645, 5.921763502779809, 6.2770458779607985, 6.271642639516986, 6.08237219168299, 7.219566852693674, 6.415664442061481, 24.436594310897753, 4.806115542601821, 5.5882301387937385, 4.731762053720882, 7.382627134869248, 5.572424457887996, 5.002239517507644, 4.559660606301763, 4.7490847211685585, 4.774004234871994, 5.84774250889285, 5.758467471074455, 6.08877731013904, 6.188729138203112, 4.981258170485328, 7.048637587105919, 6.820745712150434, 4.570764487517316, 8.044867590164174, 5.748187942506993, 8.110318360819582, 8.835648185455767, 27.258500022707693, 12.516087733099715, 21.390863689153797, 10.000686637822456, 20.280390561992927, 32.9343419294703, 11.241213382995367, 9.999595613348362, 10.265370481283943, 6.591512689258242, 9.95555385581848, 6.694289954928112, 9.138611483789115, 11.534191123220893, 11.209596067383709, 8.516326667984861, 10.967376863006276, 10.079719260290174, 8.65257935169119, 6.340987888942622, 10.749896334254315, 13.225090798090799, 7.134012187764156, 8.186059359098135, 80.79203794843502, 6.544321774775726, 8.108343705232334, 2.6253085043001185, 8.85359595055716, 5.379291636012763, 6.708782488987305, 6.862652862116748, 6.186452383691935, 6.798816902503241, 2.629913434792413, 2.6897125863622553, 2.710550576159876, 3.23627481511483, 5.634795453299574, 2.6896113024113193, 3.2368780343034778, 2.785606825851121, 7.515777015990425, 5.698198548468469, 4.174123732701123, 6.145087793609592, 11.181180078159615, 4.905148253610176, 5.119767657286932, 7.265956063829009, 6.558699581196834, 6.704795878741109, 3.028641247573605, 2.840136591937915, 5.021798603605082, 76.16657290405094, 2.4730415828363275, 3.432819925874183, 3.0345649881342327, 2.405077058331528, 4.811592048474399, 7.069786769503516, 2.482975002573922, 2.7611514318066637, 4.376712225548706, 2.6506698540429223, 3.487718716886084, 4.614093041741872, 2.8253963348905917, 2.967792713766195, 4.155089163597258, 2.6028585661869714, 3.9476298111418844, 6.073711921636041, 3.059993674312621, 9.21888947777966, 8.889517442794487, 7.953475502425969, 6.467136464896114, 14.082822508006885, 32.003501466511466, 90.08327493696534, 30.682235674942213, 18.829790294212373, 21.114640894267282, 21.898883879278436, 19.914317487182583, 25.972661937052276, 14.438532623170984, 9.687283605658804, 18.32004030912631, 38.16345798779091, 19.00066794048715, 33.74088947160223, 30.052423637502386, 20.878223947166834, 15.835501411751288, 17.757188974521, 14.107168077033476, 12.375129390725458, 9.87542071457629, 10.95112967201085, 15.49571900984812, 14.166737853557526, 28.540337954898014, 16.33385603938332, 35.20428602822693, 35.27047428298351, 23.944285528601892, 24.000751350347777, 18.797155334445918, 18.864693708333878, 20.912114997402742, 12.382416492515796, 10.598818458613849, 11.956527112313932, 23.101725344591568, 25.77582398557077, 10.916245859607262, 17.51086893931934, 16.882995322846952, 14.027230517867638, 11.681388695311055, 10.152517793180268, 12.81533292674176, 10.58954607342579, 11.331332948706917, 8.514766084740877, 17.92593388519835, 9.697688789083896, 8.79384857973685, 25.125577567042562, 12.71487154186888, 12.865502987631675, 19.67528407011034, 13.84070801813835, 13.407124445590634, 14.850140226646584, 11.366372632007756, 10.306864099562127, 25.54957025879706, 12.370031622061681, 42.92106339448072, 20.6501804037904, 22.418791501465368, 31.323814577330147, 12.915753304149652, 19.496226737501733, 29.428727664475627, 9.440295894706315, 28.01552230167924, 32.71266008771719, 32.19404831722947, 27.123749627187397, 32.13566705710439, 12.67365848983596, 14.346567628654128, 28.868001591872932, 23.449566894407383, 12.519522718053675, 15.217396674191484, 19.837161566277356, 8.340822772987451, 7.972587270357597, 20.119873979210723, 11.578569830595846, 17.7705427167529, 19.591265952218322, 13.342387448095705, 9.366572241987802, 23.563791931009597, 14.534476076239084, 13.581490913602167, 30.49221692850134, 10.26953002975096, 21.916700030729515, 14.38681103443776, 17.860586930604484, 10.15542328395617, 8.37650591161743, 9.088941038645325, 19.641075105669852, 44.654367650060784, 17.426735674048174, 12.940251336278443, 19.622563821534545, 21.115862841556144, 21.70216363464578, 20.5841792883043, 21.903068629866876, 19.62668922522163, 17.594754921806782, 19.00479029548833, 16.70540726616347, 11.274369410345415, 8.672990797464609, 10.370414238075405, 14.69723180201494, 17.304231930449955, 14.682895117951979, 14.708310909733465, 13.811722864624352, 10.083429073960152, 10.010328957681145, 12.05437161038771, 11.02361302943965, 14.922322517760014, 14.002305917276448, 9.41621378650608, 13.601558107217754, 12.621931447801384, 9.530969465732118, 4.82558892384705, 11.658946370398137, 7.770748728763732, 14.900098450783558, 17.88988524139722, 8.320707122393287, 9.116418426010846, 7.56016101644848, 10.538061621670721, 18.576108661539646, 11.772512415482899, 16.113053438756538, 13.255818821345136, 27.245029385699794, 6.604299255357088, 9.185349212167663, 9.042363560137224, 6.803329432891379, 12.8165909234586, 8.651697692648561, 6.421548394013397, 4.957771634421631, 4.324435796764297, 3.269503023332442, 2.9540849590491893, 4.21516533116348, 7.719949310178413, 3.049098928036362, 2.5351845399958095, 3.71688933761996, 2.9878399923619052, 4.2970866979704265, 8.246420413542287, 3.7881652547935825, 6.270911423214458, 4.3986074055537046, 3.8779147716602647, 7.353668702215594, 3.99395922131253, 3.9500020431368954, 4.786449494370856, 4.372117073714009, 4.284942340996653, 5.387576379298405, 4.852397731548879, 4.72926878128611, 4.358561935081263, 5.846464411755635, 4.290790037811862, 6.46045163245191, 6.1605102073541245, 4.730866756625559, 4.5230091646007615, 4.898646462954619, 3.9795464517832166, 7.411139291659188, 5.474883085909899, 4.262991891767048, 4.7857770144756895, 4.780879052102178, 7.667363052487999, 4.758049566138661, 5.18014802480716, 4.617007966318448, 4.0635614316155655, 7.162834315903396, 5.253957999148226, 3.5570655438940917, 4.458166026664168, 7.027856091955111, 4.9210440359891425, 8.983084296527839, 4.095378921108821, 4.491909978011833, 3.762078004900625, 4.035071829387172, 5.703208535329113, 5.24888371231277, 6.241369372406646, 4.47678804512481, 6.922625746350806, 4.329321858861424, 7.032304714456122, 3.270492621651343, 5.310004193390026, 4.071216906296317, 3.205022333471395, 4.050269776057215, 3.7830571666416777, 3.7449316971626967, 3.4597727780616796, 3.8395126056048965, 4.648942460238199, 3.7481367870567857, 3.8224082521835125, 5.147144388318815, 3.589938187724625, 7.019829616807324, 7.30341609970489, 7.978060570951242, 5.050048252092467, 2.8084259335007156, 2.697095682340985, 44.12541282682419, 4.160524154586383, 4.92033763772865, 4.508773368241311, 4.430001144390256, 3.8534072824963195, 4.604089157702555, 4.424604055706047, 3.9619200255626716, 4.419174289095233, 3.6503794149168387, 3.5725137736101966, 3.7119637388688576, 5.353081730919576, 3.2510015884406123, 4.5875066429666465, 3.5053937707527867, 3.5860483587533283, 3.9613956525028304, 4.381980236609789, 4.343163823230176, 3.419186676999532, 3.746788046088264, 4.584552000488004, 3.8966853085891975, 2.890472264491855, 3.7865880596858843, 3.036297384681519, 3.68600808497936, 7.316171450360225, 5.915286657128802, 15.685471766915741, 7.231970252381743, 10.167263096385218, 21.97212523638704, 19.12210684070766, 11.853028739381884, 12.537191591766286, 6.155930833069234, 10.163760258619925, 24.284193297525306, 11.868038072164495, 8.747265919752076, 223.36125000000015, 11.306446358056867, 10.694668510965661, 6.094918885759873, 6.738650693535411, 14.902987191697134, 11.71213360047007, 20.63931095103713, 13.636307840661697, 7.781999426927651, 10.945085164831863, 7.985677622070796, 16.88720478136853, 14.791143778968657, 19.367748602897, 8.60622089054008, 7.743168568137454, 21.99676790658625, 13.55897447491703, 9.00631057340899, 12.241783963784961, 17.593469541594132, 10.23787925565746, 9.212067026477577, 14.365417863894608, 9.230147012586205, 6.968483539604391, 8.988932249911525, 20.713480640364548, 12.162684550887661, 17.001709969318025, 11.25478884997821, 22.701908101190735, 7.11232869581734, 11.744391255555984, 9.998207214095867, 50.368967203864685, 7.049066843472592, 10.916998400190229, 12.377079463332532, 5.732505291589879, 13.167218394425987, 28.84521390962693, 7.880899610963003, 10.357146483700589, 7.390902055285741, 11.142020497634558, 8.49721510627337, 10.390750656556499, 6.4143565279431245, 5.9854338960412035, 12.351300636519586, 7.393081955125382, 7.760250921503331, 8.551598066978114, 6.29653707163525, 10.246828737302478, 12.095265205868643, 11.498303790632752, 12.958439560363045, 16.269153646044135, 22.669354490729184, 4.502834934191804, 3.741932454817376, 4.2632239330157615, 5.063055631854469, 4.540292814451961, 4.916972169372544, 4.195643281163075, 4.290937149428429, 4.871638413786152, 5.170397621108421, 7.114914853465746, 5.2047457729776125, 5.069516819837095, 5.025026168516579, 6.288675115054021, 7.7027413776780245, 4.404684478780423, 4.716727339384338, 5.072006437389995, 4.685114058160734, 7.458567800108031, 5.067846878015054, 5.09029585962284, 4.6051108470552435, 5.986183067472016, 3.5003817886669433, 5.032355603384957, 6.65477930484451, 3.6474405379647195, 5.8851551657249, 4.907383231149409, 4.470375169215793, 4.60927567756645, 8.649660590871113, 8.749689515311946, 7.12610801936674, 8.150272689121179, 4.699453565347093, 11.605152097902097, 6.876158851613502, 6.26126575044285, 8.025118292191824, 8.83777531711993, 5.730732236768383, 4.71843282512712, 8.129697663136616, 42.31273694283399, 18.39631955710286, 34.96316522312529, 38.821894603934076, 3.830895131461708, 7.221831863016, 12.366410524719672, 4.624963887315761, 146.591105691057, 6.649986443693244, 3.9404984363303086, 5.491749149878694, 5.256415040740655, 3.3855612253939675, 4.869539563440509, 6.310713187209718, 3.8183854721594526, 3.4196795914973896, 5.292104202203803, 5.796295298312061, 3.9813734421623312, 8.26294229744612, 9.567169299450546, 4.934248888402734, 6.096810855600761, 4.117665982569486, 5.169025987397542, 5.338034715558123, 4.566208581744491, 4.162106682254184, 57.665507288176116, 3.240298520850816, 5.658311354777015, 5.575745294185428, 4.574997783899191, 4.435926112389183, 7.743761764086538, 4.976039285802804, 7.275434884559882, 5.631162731660489, 3.1456415680982226, 3.6274651961962725, 5.724936185680569, 4.2725866951396405, 3.951516333613694, 7.73862035162905, 4.565706003381747, 4.480053795556665, 5.890820908052811, 3.793180307054729, 17.867805842033786, 10.661811456742116, 13.145748236308501, 9.021746044612822, 6.683091641698841, 7.546672251763415, 14.336882099526074, 9.103304489752201, 8.72863804195202, 16.126916048313845, 10.979730034559056, 10.179161791853938, 6.2108187226476375, 7.139119554987791, 5.5552935846382345, 8.436841165634435, 7.2040122913049665, 9.960754289591915, 6.820435442819974, 6.089223467068272, 10.555053141741995, 14.378494210756815, 8.80862249785018, 16.05984597856786, 7.919937760982691, 31.307558553095003, 10.228272458692473, 7.69515378865866, 24.506901043929414, 31.029086608905978, 9.497007182052531, 5.397152041006707, 12.699677382491474, 5.122788652350761, 10.387710152713332, 6.872197485359169, 9.106249480619379, 6.789040479818622, 8.253736562527887, 6.346645818396101, 31.741958258830905, 10.221624772225912, 10.412291265357695, 7.033308077017564, 8.689243409395562, 5.463402945201767, 10.734933383230631, 6.896173756416257, 6.049686895040139, 7.7095029800235375, 13.224065384533581, 8.419870227435979, 11.69694175054588, 6.8734537498119845, 6.317708001108031, 4.896877077288795, 11.404308586262305, 4.826513751990153, 6.400123539242891, 5.957506483557939, 11.478326227676993, 7.428494174391517, 33.641971361971365, 23.396533700973357, 13.568638063816888, 23.768173641173643, 14.167260591366798, 14.94168772528684, 25.415105380730374, 21.341154970760236, 23.721138808041417, 14.689714305891114, 9.000343656640231, 11.983957325169715, 18.296390075567707, 24.013525857475862, 24.76047435897436, 23.892130880504574, 18.713945317083642, 18.399135975941967, 7.912676707515004, 10.220714486711543, 11.571053697343245, 18.605444934694937, 8.894453602298045, 14.294110339222176, 16.9618300571977, 15.981732575757574, 13.090305287713127, 16.523330196741963, 8.695812432651008, 8.818395451197695, 14.29975810446863, 13.754567539135124, 8.520002842639032, 12.431818435541777, 8.16990411171393, 6.09464349497923, 9.338573618006027, 10.489792229626191, 7.387501007330388, 10.714017329892329, 6.462012777617921, 18.129468502035014, 5.768113743782155, 9.6877504245898, 17.948380876469002, 19.064038475942297, 8.187947164642685, 17.93100031699617, 13.750185827258594, 8.384952292875438, 14.050150515566303, 6.865227982052255, 8.074953152267023, 7.283473370129209, 11.548895584674991, 14.82474632099971, 12.734981220095893, 11.209561804810251, 85.72837945557568, 12.568544018640047, 5.520168381165457, 6.7176848741876825, 13.039389709261219, 7.248508500464896, 18.516951923935792, 9.465803878805893, 18.482587509735005, 48.301360914511946, 13.31772898054154, 8.279393375745638, 247.66472222222237, 214.21344444444472, 187.12833333333353, 167.30583333333334, 140.164, 152.2803174603175, 6.030201416284934, 5.8525770628139275, 17.1263962433719, 10.50140153467346, 42.01710216538204, 14.309418554638064, 16.39968011308502, 10.779592626611366, 8.70519496494143, 8.273649960193067, 8.102851549978256, 7.148838110011866, 6.126925377587145, 8.80594273569149, 13.060517594892142, 13.864456678393662, 8.926648559368779, 5.846487862268191, 12.459030814524093, 11.495212579948053, 7.845050225937455, 10.483350631268506, 4.906852878497209, 17.705148101500487, 6.80171446525095, 5.602809817105409, 11.084846759297635, 6.352623663524468, 9.456535445382745, 23.76409623733806, 8.462120102331115, 12.433719086819806, 6.565894748156921, 8.251072849356566, 11.650873470054497, 10.365594010962736, 6.533732164880438, 11.425607084303238, 5.781990923937627, 5.126761066105651, 10.777218386245853, 9.012488750042843, 6.338748150742646, 5.431264532285955, 7.455758390215146, 7.95338507637643, 5.903243124807929, 5.125115933706565, 8.961253880883323, 8.058556491931688, 4.64002199096903, 6.073783446585532, 6.10565921078502, 5.572757544548368, 6.227478702587231, 11.273873287207646, 20.23908528881496, 8.028138810001034, 4.98423512466601, 6.071293671306709, 7.937522902516347, 5.821099028529066, 7.593683225095866, 5.49646895152608, 12.050509406496067, 12.85398873494601, 172.0692777777778, 171.33083333333332, 108.45188095238092, 154.19526190476188, 97.09909523809533, 168.75037987012996, 5.604443267392848, 7.682934760798269, 11.608955870763229, 6.396593788102003, 8.769266671458158, 13.685079832156148, 11.03898500738739, 9.777596362637503, 9.41977039285326, 6.767757721184571, 10.84128541211539, 8.732681757471957, 6.811138686899082, 5.542591733693314, 11.794153419942559, 6.306746862904272, 6.457326903262756, 7.12634113237771, 5.481556690328511, 5.405249969541137, 6.649075151941633, 7.797487346651895, 7.825401549519901, 5.318202390071343, 5.221573255010345, 4.88632304231307, 8.020740615004318, 6.43130712772593, 6.325521099557768, 7.349446168820114, 4.338660737485779, 5.505581612808025, 5.592970485999587, 8.798615529132201, 5.237488171939554, 10.594394254379795, 5.715052002169179, 4.6735682607013, 7.971257679358926, 7.299894049586885, 38.96972603731875, 5.2758315269479645, 5.113696491333731, 3.775044336533402, 8.129893101893854, 3.820313125790203, 4.959963451963028, 5.422482183571869, 3.2832248950255165, 5.740543190422645, 5.477462346394553, 5.473570871538589, 5.525645878343525, 3.752185864031703, 3.751303740123063, 3.721124692714532, 5.023321186625007, 8.38031717073673, 5.1239579926038505, 2.3302023390879705, 7.139790699074246, 21.497616555017643, 5.435556203781176, 5.176704985070293, 7.79787573150244, 4.521028767808105, 6.080250132000086, 5.332420007993175, 8.073383086088317, 13.205637867566988, 8.62767093861025, 5.72578698180353, 6.510668389427813, 10.585065838338648, 7.731353463486937, 8.431699284517634, 10.708520369621576, 7.400033816155474, 7.178219704631183, 8.252403717019654, 6.466241408983419, 5.094641239546449, 10.940621880670212, 4.7717347003681825, 7.057511568118749, 6.243025713333175, 10.815670232812794, 6.445672890405285, 4.338675771582244, 5.573754608090131, 4.141132673965423, 5.578290624459162, 4.141191668018304, 5.5807272220010224, 8.606967775941062, 3.352881717310315, 12.34555557487485, 9.148914662246261, 10.069355594803437, 8.09918144976223, 6.402456587091932, 7.431200404505195, 8.047753895722975, 18.372468871486298, 6.410343208403737, 8.057221458798864, 15.855149216926774, 7.989389885904581, 6.803059975369297, 4.4490729313668504, 3.6689024396572627, 14.24416018026874, 9.174549815789373, 5.198942431311214, 3.491802792045457, 6.552701023258865, 10.424259320581374, 7.017421884202655, 4.655753154517935, 9.116476755041768, 4.965540868309055, 5.222416035877895, 5.5669832206279635, 7.928447909286744, 9.752439553475725, 3.333323865637405, 3.440471024610877, 9.848322252008526, 11.322589860942504, 6.622933242241829, 7.739201342859861, 7.441235451247298, 5.447584126984307, 2.922190054879237, 3.266316450725862, 5.180977989438754, 3.4747686030916434, 2.5953064902926064, 5.063822741968306, 5.216970679606191, 6.206596174355607, 8.210767434990066, 3.0612060894656934, 4.97718771361783, 3.5990685393194384, 6.132849509817357, 4.3594577162426535, 6.270430509032529, 5.045501106378803, 5.687561575822431, 4.5990693292369915, 5.301520376195356, 3.8465944621686394, 3.1952908387559025, 6.17872891697288, 7.206003015011361, 5.33219901924592, 5.125502643404859, 4.013108074130903, 5.408381165923801, 5.328608362804302, 4.8643319926157575, 69.97567128076525, 5.020728071382927, 5.90346907076299, 6.314686155219047, 3.1352149227871524, 4.335771816160311, 4.83665937334335, 4.412063602220974, 3.9862611681672733, 3.5320534530248056, 4.254514718215669, 5.18721414695336, 5.546434613566887, 3.8988005302208246, 5.485022773404583, 3.055870449598201, 4.8652803963691476, 3.999057284034997, 2.5881765725538566, 3.457435730550485, 3.7856900545836307, 4.892889477258373, 2.6839215596568775, 5.9512203459012065, 3.5718743496009124, 3.8213842670853233, 3.1819029473625196, 4.854887878944636, 4.309661084994767, 4.175656338195486, 12.949804951716176, 6.354889247072918, 6.543181582582334, 7.19335784466424, 9.388788563968404, 14.97740344885974, 16.892605938728405, 8.566144039158381, 9.593850224020096, 16.659741846566554, 9.5332122577889, 18.59297657483312, 6.343985855349266, 7.664385902657768, 13.429336245347786, 21.04457118633304, 12.425932590369221, 11.253927292499318, 7.127007056497561, 6.6183031216854715, 10.230118106449188, 6.690107133771127, 6.992670766942032, 6.372388355639056, 9.054091257468885, 15.147685228818741, 19.64111026546567, 13.407916449866319, 10.529233078700312, 6.02703178534992, 68.37841325819045, 15.746161195469416, 11.318529934769119, 7.520203147263901, 9.79394886182841, 54.27159020410608, 55.37275464891348, 49.1753245966022, 37.13249235282617, 5.036607987573001, 9.353776700465168, 13.777048128461017, 3.981793554055116, 4.785296084612525, 7.181126003177115, 5.821891508098447, 7.3375509975815785, 10.672802493446195, 3.8904143416234884, 4.8189974177564965, 4.675413078580307, 5.743129340865768, 13.767144939917122, 6.989909912614704, 5.482152972353993, 5.473627151510064, 6.372093455824315, 7.815715711867862, 5.593071850968957, 8.672519055159528, 7.6821360393875215, 3.668896400632437, 8.069400883922238, 4.374437826595982, 4.193957053766486, 3.9213243132850497, 5.5518153909155945, 5.237634008822946, 4.21318648023036, 4.305443695802259, 3.539922895175314, 5.225275952410977, 5.121095383397375, 2.5754988605061486, 5.171356702558336, 5.793349242456746, 4.5434069762159774, 3.249420435531869, 3.6657587018387923, 4.696498891631528, 4.983930552104648, 3.249515751366358, 3.9282674509601, 4.439586799941747, 6.959543777777067, 3.8209504777971737, 4.712580619928632, 3.6963174389491398, 4.136943299998896, 4.316806738415252, 4.579892551729492, 11.25035961797148, 4.695545898932849, 4.107822281594559, 6.216084330785867, 6.17234018234669, 5.070082638087224, 4.20629863593882, 4.251946125582162, 5.608428526582481, 5.593186178830122, 4.658552400030285, 36.52780105176415, 5.822389373612233, 3.9699763770944054, 6.769635566640022, 3.5963078822464953, 4.462315444506626, 4.203630410804237, 4.679617695279191, 7.1926589959803895, 4.5574629352470755, 3.621468553455248, 3.120024733065069, 3.849604304292078, 4.008462398699999, 5.399464017322001, 3.305041631335219, 6.7241764121278225, 3.6458668762679998, 4.190093205762452, 5.769389900872443, 5.480339060517135, 4.205841154572831, 4.61832100410438, 5.629249374475891, 4.053490984331943, 5.859672516218879, 3.495980491137702, 2.406727125967814, 7.5627673640618545, 10.786589110008562, 4.904344561204071, 14.492014235203735, 31.162196066886686, 24.873965940316808, 3.9919253443618423, 13.657148052439231, 19.739248660862234, 10.844922183298504, 16.336664267058687, 6.621628138995919, 9.264069955219732, 18.970892076759977, 12.534349401754952, 51.20200661595508, 238.96734668109684, 206.1292222222225, 166.18646969696977, 164.72330303030307, 126.46633333333332, 175.59820113220107, 8.14338190779164, 5.40671948770456, 14.453162763408265, 10.263234173943172, 8.39846659926822, 8.174418601420973, 11.47341993287651, 66.75675360086011, 23.010530628596833, 8.73939135006478, 17.00221982291195, 10.00725145595183, 8.922250507144952, 6.243260151817996, 8.054778514949838, 23.223610665851012, 18.687412389297002, 9.468097268040982, 10.39405373811908, 7.57371475979725, 7.306450172718368, 12.996504869823386, 10.648469408584047, 12.411249629914325, 10.515591140534289, 12.600606584898506, 11.369184417546784, 14.645405201110044, 13.221088425299767, 8.145341082695557, 27.88616811122805, 8.544831462803256, 12.497791466066785, 5.941467314775969, 5.137408057982936, 9.42043273334496, 10.55502312864641, 7.706204693928652, 6.752586537093491, 9.333839202544635, 7.373830146877218, 5.733545453577934, 13.300935739702854, 5.641926216267806, 7.9783401244321865, 5.93934421886191, 5.9457581160043445, 5.513100165112332, 3.872503904192466, 5.136166646699429, 5.497922765407763, 7.6584810327899175, 4.6756815837064964, 11.238840476888335, 5.692188415480397, 3.7394097122789813, 5.051107637204209, 6.165176632876984, 7.386586996176825, 3.267550328108379, 4.941104089912499, 5.23752227544473, 6.727581434851075, 3.02853922772128, 6.596054811429378, 4.106486614988763, 5.786412271471265, 5.050655481854669, 4.327574812470192, 4.363318805852612, 4.26031603281384, 4.374826934757717, 10.425779824362786, 10.69934631019027, 9.734180780978013, 5.49008505883864, 3.188995651098278, 3.343047818837243, 3.8117119183448107, 5.3349644784246095, 30.66149724430343, 3.3432359425399922, 7.019954016466048, 7.474048740571071, 7.30210725078571, 4.353030097547015, 5.204864173721678, 3.5813965245336092, 4.396858983550919, 6.485273080207415, 4.8946363804775626, 3.884388755681554, 6.011428968214125, 15.877220482238242, 12.2650386719862, 7.101111909534336, 3.9406837356840962, 3.0206013976364376, 4.6321089987771185, 5.41828952952325, 4.342993132917415, 6.366184798371488, 4.031179526631096, 3.877723544757697, 2.823098693923612, 4.625309828015401, 7.025085034738171, 3.8838532776744246, 2.5806702019753014, 12.661151761635438, 7.836437108014144, 5.524638505462288, 7.593910211139057, 7.638955211884339, 9.863162065401774, 18.75751871244282, 10.261955221551466, 5.3549743903548785, 17.513054487563227, 21.785737111088142, 22.021498056949497, 75.3172675750176, 35.13135373306178, 23.805621340182224, 5.8288951959490785, 7.656862968764077, 10.592034583300432, 9.285565098843204, 5.185322132007925, 9.142714945163181, 137.6185833333334, 118.55473809523815, 112.541208994709, 160.3425317460317, 132.7115357142857, 119.0502817460317, 7.404307886604974, 5.289719177846302, 16.35605407013466, 9.857506519824325, 12.064548741780198, 64.80410044325619, 103.168097041847, 88.9997435064935, 76.0662803030303, 77.59188603063602, 101.5443149350649, 99.14150022425022, 7.339542988151691, 11.186135239493309, 10.061453348702482, 15.762293282709178, 12.534529381699109, 8.579298737036977, 11.170823682325109, 10.095378306069012, 5.688374928486233, 6.722472677159275, 5.787850154164311, 8.526613554980603, 11.22254204221487, 18.569698280861136, 9.4879307034661, 11.381825205485665, 8.243717644759657, 6.8265912344403645, 5.085417118017792, 6.445935124109242, 6.167298555764424, 6.592815140545183, 1.8838770958921378, 3.078942055600466, 11.385843104735013, 7.402468550954435, 7.0326799678868674, 7.746781331878381, 7.391480569007925, 10.762760223059834, 15.144499974672526, 8.140405100763704, 8.881829973998542, 4.344133372835268, 6.33053357278889, 13.927760501553502, 6.005478269960106, 5.58627885368289, 4.845822034968127, 5.044558789423421, 5.412224309516779, 4.295663568760374, 3.915763936712913, 3.864913875631648, 3.4720198670617695, 4.906333315031386, 3.2381561160528807, 8.8821767081607, 6.370444316825648, 7.8464598812016835, 5.190323769628619, 5.51585971139337, 4.5952510948197265, 9.170839706960857, 11.151212157267334, 5.298693655229908, 13.841627072461677, 4.610810945930906, 4.40751012004225, 5.4817044425882395, 4.039400616827162, 3.792410724682243, 3.5396205027235053, 4.803632456442182, 4.155877352960046, 4.4932685289923375, 3.964544159183673, 4.209244779636499, 6.5832263899323635, 6.845459366270227, 7.127115000086069, 5.750371485376712, 4.960917158523064, 6.418957852446203, 8.655672286138913, 10.359167770023523, 5.650682053646579, 7.367996413323354, 8.290494236963479, 6.582075397496303, 6.407377169820949, 3.8645030454487275, 5.952889831186337, 5.178693364089291, 5.462017175167031, 6.419405489926731, 4.231554971894761, 5.069341355118497, 5.099801815647349, 5.466672919260731, 6.23807454153886, 7.902530235149029, 2.7984531834213544, 2.937107645167194, 7.742039563304638, 10.363230784867758, 8.110095737908463, 10.29514035119353, 11.749763893318427, 15.261875718336237, 15.0748771408564, 35.7088690395218, 59.5541599310651, 56.383630679720966, 24.67864909496703, 34.40459398649703, 23.817184582909025, 19.036967773034704, 20.26753516457527, 19.934951872960102, 18.221473063086762, 10.905336890586481, 14.919653421970587, 41.23489413005012, 17.060376665334136, 15.232148416550308, 9.221784302785231, 10.885030342960773, 7.641585720860638, 44.72109179202254, 14.279654234034195, 12.336569987989545, 10.683465596391846, 13.066826083261553, 12.981977533796325, 8.4836569473972, 10.423347141851034, 11.08272795548724, 6.922802597967104, 9.906411092901672, 12.335889881576374, 21.412366741928054, 13.886462020124963, 8.413287793499446, 14.534225386657043, 7.983422225765939, 6.680810314869713, 8.517449027380728, 10.744861570314589, 8.454352712727365, 11.220760957747672, 9.087848950048503, 16.92934696066687, 6.782251744953979, 32.75885516965288, 25.42752638571558, 5.8708486049275255, 6.612938920433801, 10.367185204799222, 10.431729180164426, 11.43058988435953, 6.474019732831972, 6.424098368068947, 8.155846297024516, 7.217617917677934, 9.481724809638138, 12.726083265744291, 9.345533112293468, 7.595404680095196, 15.261880104112114, 6.803335199313136, 9.177214322714324, 12.708878404854001, 11.617015507374505, 6.03426575870882, 9.774453815454324, 7.329209819676519, 11.606107386322243, 5.812012995438438, 8.64421835053323, 4.570941870900777, 5.683995262388088, 11.28848133807535, 6.438988051985274, 7.585886315778548, 10.892481843525166, 6.0668057049361686, 7.29318562211209, 3.871123693526602, 6.40346129478116, 7.061078455887569, 6.8549624339199156, 6.842827737731378, 6.867880098550411, 4.053628045270882, 7.326056621146524, 7.462051141616106, 6.192339947689972, 6.763830918377863, 8.239570618233591, 9.914001522893974, 2.5341035136091805, 7.069210306829952, 7.423896125131674, 5.466380611526971, 4.6494784608287985, 27.707856949423114, 5.653742098442932, 4.506516714561241, 5.442143970818307, 4.736461013685397, 10.186837395162977, 4.332313895009306, 6.478311344093995, 9.094547750381295, 4.068412282963074, 4.858386848292428, 4.856099807142947, 3.7441771782970408, 6.222344088225211, 5.258172213234786, 4.236691580306826, 4.678333170805382, 4.185487773240894, 4.113606478545456, 4.527645868665279, 4.3426413409526585, 3.92817023414344, 6.585189714829989, 3.459940585045429, 7.012607974435922, 4.673233859166301, 4.832714992539404, 3.1559884642036438, 5.499744014078985, 4.398242484069108, 2.3161504116343616, 4.422472939023358, 5.532335944281389, 7.3357765216668165, 79.08068975869165, 4.553393284680665, 5.1907846212765305, 5.285464914422061, 5.249851700024495, 3.9850691206347415, 3.849576551288411, 6.328451027878917, 3.3004002754436224, 6.073218824741718, 7.7617557523688685, 4.926552227549255, 4.863736618550895, 4.29810519784524, 6.177960429281441, 4.817350772284129, 4.43637860721463, 4.809761605248855, 6.7635356450585, 4.193444243155064, 6.511990601098459, 5.608397861313777, 4.832888131497881, 3.7142483463234948, 4.85204868212348, 10.704424638011606, 4.857699129505945, 6.4612426977012944, 3.979409873254493, 5.777089487687668, 7.056151239879632, 5.5775520705642005, 5.035541227116865, 4.095068607821258, 5.438799115104688, 6.688885883876658, 3.7629577873781983, 6.430272066636639, 6.1386743533188595, 5.7943590992382354, 5.81171344571375, 7.442659906329555, 4.888809446569755, 4.891485083790895, 5.588248175112152, 5.625363330606618, 3.276454040226192, 3.362718759146332, 4.792045313170912, 3.5642384667741096, 5.222036925840905, 6.678134921849818, 4.47913919887025, 5.399375489575312, 4.126831085581087, 4.369255554915312, 5.677034537365792, 4.81682274608234, 218.35852380952397, 206.5821666666668, 208.95358974358996, 179.1167391304348, 186.22128205128217, 146.7733874458875, 4.376538700254749, 3.8768085993144172, 3.0197995185983486, 3.0021043968942047, 3.155425926902732, 3.6609180402205777, 3.3034975938577538, 3.4714995327632647, 3.222189773542454, 3.1599010988413414, 3.371314330166429, 3.0693896364703495, 2.921741265145744, 2.81308167759716, 2.076208557970526, 8.720651554245, 7.611670052930053, 5.259527943385375, 9.960868900957628, 7.980329308567723, 6.942200302404903, 3.969584897358349, 6.137327624938821, 5.213342019809207, 5.21208932417499, 13.111535766641516, 5.048652044087668, 6.480524672279307, 4.516584434088353, 5.365486532175825, 4.540975321060202, 4.6874232953502055, 9.748219865941572, 8.810235946061654, 3.878474458664686, 6.283862094862914, 6.767781900607578, 4.279832056442697, 5.585559393422246, 5.040441962835234, 4.46377877899698, 4.795504228271616, 3.6206107216678265, 5.531187275114516, 4.400178824453123, 3.8116151841450976, 5.608649107555274, 6.92537208122339, 4.430047463339452, 7.851116149741821, 6.5944066187058565, 3.130053205727156, 4.577628494761939, 5.922231302637891, 5.220745965093164, 5.401166020062352, 3.527875441896294, 4.81439087095123, 3.505294550670403, 5.430134045068089, 5.482004880554167, 7.9957491357475, 4.981592416743155, 4.127447644106359, 6.562144571420116, 5.684761604288757, 4.650484521230898, 3.957088970086996, 4.65594436450163, 6.4118313172490575, 6.01822173354415, 4.9710455474818245, 3.757625785100091, 3.3919816421291262, 5.179047672818953, 4.364023326398385, 4.374783331558208, 5.673773315914151, 4.038129923151515, 5.632973891068678, 4.295148561201164, 5.526659618980658, 3.421356114032078, 3.0884793713832925, 4.834093442080917, 4.6022347225314055, 4.743721430660236, 2.6927867786722013, 3.3070593960483676, 3.0247760585543837, 3.5676333173268606, 4.286590569272959, 3.1090576936566974, 2.772591483609037, 2.928405170357631, 3.241133023008519, 5.332977374432476, 9.334521650957342, 3.881427437614446, 3.4371721930859342, 5.007993275323155, 5.093311920832459, 3.2819750428507963, 4.154357513871347, 3.547962804097917, 6.003434406020806, 3.65319449707933, 4.463180630180465, 5.661182190481607, 5.40024131872868, 3.7617975981843643, 4.139120092808402, 3.0222699794012815, 3.1363028809930698, 3.3905841099161917, 3.4232559826940845, 2.9220815532732587, 21.563519625666686, 3.2500873622324775, 4.110306398278555, 3.076757285791605, 3.5046575309860484, 8.662850158481879, 7.338807305496129, 4.482055084257708, 5.685204084400623, 4.979854680735245, 4.143850674301986, 2.769056629082749, 4.017197204028433, 5.658696513216321, 2.6437570474258694, 6.156957186923596, 6.902068558908078, 9.712034380533673, 5.594575019758864, 4.968348718188674, 7.577857103472515, 3.5495994151237995, 2.1952134297514956, 4.8801029586729285, 10.503278227561216, 4.214859602235089, 6.19777621999339, 6.01437521836503, 6.790416569520446, 18.96773600521582, 37.785235430500684, 26.50912363840866, 28.674956785496583, 19.925710943195536, 50.224889885918245, 21.22426551216737, 27.341765804486457, 24.26669324051999, 14.185060336740024, 23.461134401583774, 24.63414817182951, 20.158779065700074, 126.11930982905982, 11.32209174127141, 12.534804014365553, 13.1507059548753, 17.209231567136946, 19.347143836844722, 12.467854839737278, 19.494512271069652, 13.096996559766223, 8.97847204254372, 6.124038709249851, 8.356056396987679, 8.38708416147423, 15.378079735206898, 8.928945020566626, 11.12270449126897, 8.673738111724576, 22.18799627496624, 7.410716339953183, 10.189619901902464, 7.736607160782966, 9.628825648234807, 8.423344681972571, 20.601150932400923, 8.892496747244012, 19.37987912195202, 12.455195703685689, 16.348561518043518, 10.800604681461877, 10.788007129169841, 10.05989505655786, 6.497367697014268, 8.127550586147828, 12.003075622126255, 10.045189972937939, 15.99679439294145, 8.882654343940105, 9.473398624027467, 4.982992503424196, 3.9270214325034516, 4.607234030913851, 8.708672950029568, 9.62871536977376, 9.218374583110984, 4.364080964936677, 4.7850854530065545, 5.222321044283309, 4.789776520579367, 5.631724661707162, 4.18250963577026, 4.936330291167477, 4.697888861395247, 5.713102704387951, 4.947847467001633, 5.028089650726552, 5.039472684625706, 9.836358205907652, 6.424936698292128, 6.605096239819287, 7.81363234959748, 4.8807347997562465, 6.695105552836781, 6.613925481729699, 7.683051102098462, 3.4464456323778, 4.244629188630048, 3.4726764905470833, 5.44185773047426, 6.548101939588838, 7.222206686138513, 4.225122722876184, 6.508217065350194, 5.980770013660026, 8.737359884911971, 6.363532735434026, 7.359872470642529, 6.432783151638745, 8.472710097371488, 5.667329063152154, 4.559126615418614, 5.752346636484123, 5.716159499660547, 5.481675432223609, 21.76559082252289, 8.675473046869381, 3.2913733977557027, 6.558432586617058, 7.0450972517768795, 4.809108124710867, 10.53502408687489, 8.218767513631386, 5.3044414781722935, 6.2463778192896156, 2.152002537967664, 5.117949614945949, 4.63996127082877, 6.0544511586115775, 5.114115151363564, 5.940591786339223, 5.684139440887796, 4.385536226847577, 5.6195978415850885, 5.809081543135491, 4.634404965650457, 6.248393128701957, 7.753025164835028, 5.248005281610571, 4.358469931195056, 3.5160391410042124, 3.6590957110092317, 4.438047818722609, 8.0966413583226, 5.661617038987753, 4.602820261392384, 4.780807428521827, 4.448153493217712, 4.296208913201179, 9.903052849887137, 4.925095275566317, 6.669543233804666, 3.6682790654824857, 6.660258288749244, 23.032626194468296, 5.336100295388685, 5.303085770572825, 4.533392653661858, 4.379005249069849, 4.204307087639605, 4.901171027501358, 5.3816067212766265, 4.647182081925036, 7.761249413813634, 5.103924533571479, 4.714544286231303, 6.394042754911794, 11.48824783047947, 5.000905935795615, 6.536964582853039, 6.186713924468249, 2.7399852239765616, 5.819407866420563, 5.081652532799661, 4.415863549366519, 3.861975633799454, 4.3832170269037665, 6.220306025441812, 5.982634351683464, 8.783880797532417, 4.570419628822651, 4.917317516923176, 10.016769368344233, 11.611812427826825, 8.471423838463915, 5.452989152903055, 6.769368585191962, 8.343653612272256, 5.793012831210797, 7.110971173203675, 4.628558488117489, 8.28079364102589, 8.320323312308322, 5.550867675022271, 4.832366611949255, 3.9870700722005865, 84.48786904761904, 219.83702380952406, 202.68450000000013, 186.42101914751922, 165.77350000000013, 172.61750000000004, 73.38107506382508, 6.487516100284548, 6.554573354991113, 5.8585452825503905, 6.728999312215679, 6.566745701660236, 5.143606368686115, 4.72445075046082, 8.576160050524704, 4.537362428861952, 5.68424547416101, 8.086447289182768, 7.371425402662372, 4.060931868590075, 7.704951208848413, 5.065986961842033, 5.372306848785276, 5.437935032650924, 3.497644133846128, 5.572007185189273, 6.466897632059084, 4.92397222743075, 4.167928158466366, 6.04633331635832, 5.868569631486716, 4.816448391823814, 17.779295971688715, 4.0697181265094935, 4.535109868914777, 4.3749976818858105, 6.851790579229252, 5.404510159126377, 4.34085124013932, 4.688167251482704, 5.835636131721985, 5.130186632709612, 3.417765565044499, 4.280350218537009, 4.200079062753962, 4.050384054133689, 4.650869682050058, 5.460720511871702, 3.84659223498649, 5.588322205643356, 4.3892417878363, 6.852363122725877, 7.207750285061191, 4.900387541958653, 4.767765226727861, 4.661940288407933, 4.322637176083917, 3.8817557920385344, 4.724528948082356, 3.7164206845579137, 2.752938916517456, 5.138039458615386, 7.006093611433393, 5.337193835624486, 8.900996156594655, 6.962096981501022, 4.383745485174384, 3.6311114881149766, 14.306560094867935, 9.68996789389448, 2.9601461558764166, 5.342200074127408, 4.63438019176508, 4.868352183400017, 4.948910349721234, 11.479035284350585, 4.007391386723003, 5.31062698309354, 117.16286309523811, 5.10732592182512, 3.6129583950460176, 4.789435884893134, 6.070804366618554, 4.504334867786612, 5.162390096611438, 7.775229524771851, 7.491341313665413, 4.0449037427257135, 3.6483879158198684, 4.994175078379385, 9.548259464843294, 6.074817579543514, 5.4036996889668885, 4.536805198168346, 4.598242038392694, 5.732135414827015, 4.33711849013644, 5.532704903681365, 13.026387789340637, 5.8096293445464795, 9.712454763594707, 7.515129244526408, 15.006596311590975, 75.07343733842002, 18.122125031627505, 9.838865947967555, 8.591706926237961, 20.500398909772596, 6.145868394121073, 24.891804902295593, 3.373626431798618, 5.04146067792253, 4.934386125969001, 8.988867961576085, 8.592411528664561, 8.200137881466684, 5.701684599344961, 3.58718052591054, 5.277911481327346, 5.116757821845833, 7.194383374535509, 8.971421438361409, 8.291731762304153, 68.48588247863249, 3.4739153186612675, 4.357731939111566, 4.367663293385389, 4.249585873998627, 7.989954023254616, 4.623485057727464, 5.325410853801597, 3.7812124066948476, 3.04140290060138, 4.860416774071578, 5.097396789927202, 5.361917673745581, 4.447465937104515, 4.476737926052443, 5.7554620341037666, 4.92098168708346, 8.12572868924877, 7.12851191467921, 5.600115043942985, 4.795849615326582, 4.797395199246665, 5.948907705257704, 7.00962806538106, 3.7843797475360312, 4.820267109381289, 4.179000090213575, 5.289062418850961, 4.3179155403690554, 5.3105873646206465, 4.903709766873073, 3.965499812272341, 4.113466699238756, 5.2403037462398565, 6.295107709323769, 7.726268845068843, 4.6089293248557075, 6.660394060459772, 5.052886567538741, 4.155527114235507, 33.65527946338163, 5.868542246732696, 4.255840736618292, 3.4790249065603644, 5.763977933403856, 3.9693045573773214, 3.172224245707057, 7.529729024893505, 3.126247519959159, 4.152315953138338, 5.134434093165695, 3.1108305912804433, 6.256779080385478, 4.819925617721681, 3.3707995620112445, 4.819799153818008, 4.617701202277706, 2.7091196153184525, 3.8870493926830476, 4.994511095636187, 4.268826412369437, 4.102785083650716, 5.176703870956702, 3.2652936024543027, 4.15962600829941, 6.441361933091701, 4.713772252639414, 3.5446035387045445, 3.465921327321887, 3.388498284196346, 2.955398879305364, 2.2637233793920517, 6.001470609338387, 6.676722126062487, 5.743057699387367, 25.94000711406841, 5.915220692075659, 6.743147819345343, 8.389892566092685, 5.078817596447274, 3.9137588965961942, 4.9080656249373975, 4.222632744039062, 4.6212502882775235, 5.4477859535960045, 7.682398450921999, 4.153659529237868, 5.1014076665985675, 4.682092091166956, 6.988289138251694, 4.408699930880105, 8.675054860916239, 6.781246764378361, 7.73535908828579, 12.985937877515022, 6.178367586294833, 5.3591531968026995, 3.6564614990640316, 11.252211139312658, 5.531582134598387, 4.6620717750431195, 6.41073998678833, 7.303141906151505, 4.244911812323229, 4.577685169394554, 6.324744081747589, 7.537124693928224, 5.536126635000493, 2.744409564235298, 3.3834206415697525, 4.437308107452022, 5.682851183363937, 6.041576111905919, 4.9464218830579325, 144.331354978355, 4.571294285698769, 4.897143244899071, 5.819224903363524, 5.904650768920392, 4.005705315476611, 4.21957511062605, 5.933079950491446, 4.855811475525967, 3.975045174312898, 4.214096851963972, 5.3950529442621535, 4.746958421357167, 7.082095467959102, 3.8042366036875115, 5.677910144666414, 4.546549457447023, 8.733683260851032, 6.25286035728082, 5.78225712320043, 4.731152168531744, 6.068439212738564, 6.0451850566695855, 4.737861474007129, 5.189485561395836, 5.365229829460232, 4.2949670605014525, 4.631821938390036, 4.4620311582285055, 4.063574008497383, 3.775761870418909, 3.3807237649784003, 5.0631240611355235, 4.382940145610893, 3.9933715744900358, 2.2296674143473907, 2.9227561240858164, 4.274956792132211, 3.5222050289249154, 3.188298058581771, 4.614441135478097, 4.148899179871974, 4.933136471527569, 4.5583142799781315, 4.944385591931345, 5.719798047757227, 3.593018001542468, 3.3306437553381745, 3.911716740770196, 11.066757380095963, 4.962464499913326, 5.660449678093702, 3.620996641328459, 3.812185338059194, 3.9393336392946634, 3.882826231915113, 4.492482490872637, 5.163030485154284, 2.748757128315187, 4.469573061593563, 2.8813407903838337, 4.045810684170835, 3.9011783380870684, 4.02990734684801, 3.748561814756459, 3.446595923925401, 5.357052727967645, 3.163480337843698, 4.977157904878782, 3.386894502169805, 2.906990892774877, 2.9296441964504756, 6.894288785456072, 9.193200144638784, 6.43895076438326, 8.020449968453963, 10.20882966294847, 8.769678527524848, 5.476589489965349, 7.670175180756946, 8.567456228745286, 9.09667322133229, 9.683603024412369, 6.166103336740152, 7.234869175492318, 7.227348613538913, 6.41031188269522, 5.497940721580049, 4.799188464307484, 8.123596282635896, 8.275714661865157, 5.085546726736202, 5.484624479216519, 7.258964281690984, 6.399275765249909, 5.828081972568728, 7.038935962970752, 5.341002682407411, 4.25169038010282, 7.3629414170597185, 6.163122345010431, 5.458258245773535, 4.541773017078752, 4.80291709189454, 5.711915193749337, 10.915496491271327, 5.067006994572138, 3.794872941100412, 5.496807847626472, 6.314841204953191, 6.28042477210364, 6.2537313484143, 7.201399004934563, 9.788399523729954, 10.218866981402272, 6.2941167122190365, 5.622346283418998, 8.025219718689996, 9.415819377709639, 6.5674747532700675, 8.147543379251745, 5.829650192866668, 9.583210491191398, 6.979190645994466, 7.702344880691204, 10.630518105133268, 6.088790258415359, 7.98617751449587, 6.6573058848412385, 8.491497932021366, 7.965821518529802, 6.127746784434482, 15.161804540426866, 8.910608679058068, 6.043205436134983, 12.142389035096798, 5.520444791582938, 6.791824521097053, 6.683751117838138, 4.691487862617105, 6.869906417971962, 7.890086566695883, 6.294278927765735, 5.154076255954143, 3.936938727736448, 4.0559441066173605, 3.6342230180357533, 3.497406363203469, 3.085556052684679, 3.3757482071168554, 3.723047624837195, 3.648164260727993, 2.964070045372543, 3.8456302272654694, 5.916362386207724, 4.375387817480799, 13.75068201470357, 6.4459005843719055, 5.071817452672373, 9.640158935212424, 4.178893511730254, 5.430790434641988, 4.716118116923257, 6.062925764837212, 3.279320900178542, 8.654941770020194, 4.327854068472271, 5.046236367694734, 4.786912281382617, 4.878969788881279, 7.575927344294496, 5.696537230378698, 6.304952338676334, 5.785846368407887, 19.894809733947966, 5.500590605062678, 4.257352363896287, 9.85666821154714, 3.7960267598967032, 4.474762618368569, 9.340911533404281, 8.466952939254858, 3.7272750946739603, 4.960246461984477, 6.804536603809988, 6.47581360073332, 4.541454345587819, 6.821960963969014, 5.026666936908318, 7.650804223927731, 6.070323906957918, 6.398825166081818, 5.436056390259267, 5.985872625022739, 5.387411297423195, 4.320329874655879, 5.645930464736331, 3.651507487099243, 9.004343281808701, 5.2228031096492735, 9.389341757065537, 8.73658663718762, 6.869560313880642, 4.872895935572831, 5.612127912151569, 3.9390129480782137, 5.913168233394416, 6.222144046831312, 10.93638973758776, 6.536288028955786, 5.459677676988502, 15.298887791231826, 5.420658329628991, 6.10986355896022, 5.5053554632982, 7.89412472203697, 5.55846931377092, 7.0171985782839865, 5.716477020387305, 6.155341033548288, 13.65988637791191, 5.216843386558789, 8.873153160030098, 5.966416393170936, 4.622922113894504, 6.123424682689856, 4.642882043951349, 8.1919273529404, 51.462205773343314, 14.574631989051158, 5.0486661167788185, 9.70540962115909, 6.689916102080351, 5.493259626063649, 5.961290760457304, 4.4938947085456915, 13.174720210596188, 140.2224826954092, 235.61166666666682, 205.49083333333357, 195.09249999999997, 149.93166666666667, 160.12550000000002, 136.90277372627372, 14.502040992890636, 10.156387175705616, 37.85819844902654, 11.081328682655597, 9.067567383591296, 5.802311549376016, 8.165811687770368, 4.406505233945343, 7.980607047575861, 9.200117998579712, 5.871104783242988, 5.408412288677813, 7.66388629131851, 4.887843274276236, 4.06995965007721, 4.4719523078457915, 8.583301517755524, 5.290175879887891, 4.490673847732631, 4.450142356666214, 5.724249339451169, 7.290852735412077, 3.4929570957785963, 4.214314888344227, 3.6328506601416555, 4.854753882119326, 4.741243290000104, 3.9706371115475, 4.958328943660623, 3.429006764341695, 4.680884348757502, 4.295832458263375, 6.939000066208228, 3.963629356482264, 7.051990281354536, 9.781483301683707, 4.910238558402753, 8.02729643794455, 4.968159819742636, 3.4039314965982763, 13.003085127875273, 17.312361459796243, 17.343166302779338, 21.66526630130096, 19.207033839228263, 18.03053481403237, 12.15604231061364, 24.97175404820497, 18.473688515406156, 18.502267042614214, 17.492388186976427, 4.408874815811053, 5.200589882497892, 3.265344486413436, 4.150205494500041, 5.281596512908808, 4.479181499995422, 4.006109995126432, 7.160447631207469, 7.593311050644461, 4.431686278382602, 5.026216939435095, 4.254749426938451, 13.922276414349254, 3.049180234551613, 4.085301908769142, 5.968804800758321, 6.813244445813855, 3.65149012870023, 4.6164394577998795, 3.569418602577581, 2.9652115270081016, 2.835090530465346, 3.239599625431157, 3.425301545718303, 3.3127203484514403, 2.9712992141191727, 3.4563069760553446, 2.663376250131092, 3.0486732283030644, 3.5275584680881913, 3.2208149368057177, 3.0556215256879455, 4.558594063512832, 3.6782322833324095, 3.3559484485983, 4.010501623163429, 2.8227569578161527, 3.4838547461951057, 3.662218710017806, 4.4051016142509605, 2.9622620446894614, 2.330621540215717, 3.5230654889028243, 8.32374025043715, 8.266939635591855, 6.817671644969853, 6.027419416071854, 6.145058314204303, 5.68825880123285, 7.496106354029265, 42.85311043322936, 26.88556291193702, 19.582625738021864, 8.805217887117376, 8.9438727957838, 8.918308470261223, 6.072689587601431, 77.87095670207191, 5.4278428080685694, 4.3882077908135715, 6.972848568978416, 6.924102406533673, 5.543972754469504, 6.923641238481456, 5.0961509783367225, 6.208831655257487, 6.395603749640776, 8.144561193599788, 11.522885542765705, 5.357551478463659, 5.955465578286734, 5.6287327820522375, 5.96206582466672, 10.392651684162496, 6.941321213212771, 9.8008112121853, 10.681465352504297, 12.295806333607143, 7.591064237274143, 7.846024303288662, 6.623518603208976, 8.258418208489896, 5.815849965935775, 33.60416467317729, 16.48740484663924, 5.040320019427036, 6.917819810292486, 20.67409451291932, 5.9262819003356055, 6.440648175492485, 7.018051515111125, 5.779721611610097, 4.596640305655321, 15.317106104712078, 4.106799285489253, 6.1988851447184965, 8.861418961269536, 6.329264093546425, 7.257397760353697, 7.54727145906178, 4.9977720618195685, 7.773899091402463, 8.048672923842657, 7.031910121621609, 6.8498945982953705, 7.312547277412293, 5.103051254904868, 5.727031288250965, 5.495417644862869, 6.860323794899096, 6.300685539381282, 4.799981488764055, 5.580369411070357, 6.306975465141236, 5.070357780820191, 5.314552521590089, 7.52590399244792, 6.374319270153411, 8.488825066168028, 6.048069389450377, 7.964899508992109, 12.765877246637398, 4.342085106923692, 6.386198641998517, 5.851335481577497, 5.868841369010625, 6.393225940271619, 7.1554677813350365, 4.711811903744689, 6.168342299943242, 4.802043461540359, 4.925973320260932, 7.7588464603268, 5.97918403626026, 6.50545032856234, 6.550616957799576, 5.432761989489803, 7.442159913296844, 8.166599538265649, 5.77051803927483, 6.351370336183148, 17.688610946541385, 7.313678695388547, 7.408610392023436, 5.683732000127858, 5.838299667918339, 4.798486309770971, 7.481401597474912, 5.599150059968961, 5.778182426687393, 6.263167171073398, 7.7238762930216955, 5.066952696755973, 5.692679128275217, 4.538931788770879, 4.937629204925281, 4.5512244834873306, 4.707590392575256, 4.511255675867455, 6.311139814656299, 5.187668627631042, 7.336669679565349, 3.82012140702786, 5.217009683409349, 6.990486685512676, 5.527204324540577, 5.631161510049979, 5.3118561623231555, 4.309586434428101, 10.780502608039106, 5.487369452312763, 4.426581812160327, 6.949076497637695, 3.635886059882932] disp =[0.0, 1.0000000000000007, 1.0100000000000007, 2.12, 1.4350000000000007, 1.340000000000001, 2.321666666666666, 2.0316666666666676, 2.3683333333333323, 2.879166666666667, 3.3273333333333337, 5.083999999999999, 2.140333333333334, 1.2429999999999997, 1.4397619047619055, 1.7491666666666679, 2.538452380952381, 2.0658333333333334, 3.079214285714285, 2.8474285714285705, 1.9941666666666673, 4.450083333333333, 2.9205277777777745, 3.702979437229435, 2.658137085137084, 4.4726746031746005, 3.839746031746031, 3.3189678099678095, 2.9636269841269827, 5.377579365079363, 4.0060285825285815, 7.563063492063491, 6.33301154401154, 3.0978079143079134, 2.1000019841269846, 2.9141785714285713, 2.6998888888888892, 2.765611000111, 2.911739014253721, 4.560448763225076, 6.077493629908105, 3.1657896642830856, 6.34390017825312, 4.3405988455988425, 5.9032899877899885, 2.5092222222222222, 3.5923152578415736, 9.48864069264069, 3.723676926101075, 3.4131574259074227, 2.4298333333333333, 7.095606906981908, 3.318797312704346, 2.502650338791642, 5.239124216524215, 5.329671356421357, 2.4957206127206124, 3.901994633144634, 2.6237625635234334, 3.3191588689088682, 3.1193805418719207, 2.3415858669108673, 6.390380480630475, 19.819916666666668, 10.497490989402754, 7.974378787878786, 6.125751165501163, 5.37339701498691, 4.091125056724318, 21.338111111111104, 5.196860838507897, 4.012080182072829, 4.649537130705548, 4.144909038673744, 3.2136560789060775, 4.689596625596623, 3.4554180541680526, 3.761752390725216, 3.284190681867152, 3.2677080550168776, 2.8911378953004334, 2.7785666193112, 3.0365682737025605, 2.385907166005076, 4.005372493734337, 3.586768616204543, 2.4893388439128508, 3.114365979913804, 3.454159901476605, 3.071876349978523, 2.7089364598225907, 3.274852206733239, 3.5293426204604987, 4.553636157360012, 4.3378359704026055, 3.428910328852433, 10.707112637362638, 6.861177493802492, 8.977926003734824, 9.983915376290375, 8.485586633138105, 9.271412143412144, 4.057765794084062, 80.99969841269848, 2.940905045947728, 3.352953396217204, 4.569377649263704, 2.62182867515626, 4.076285077325775, 4.048624883286645, 2.467870608748917, 3.9066555788982242, 3.7706131368201796, 3.2171583800186734, 4.543045221118748, 3.6940825741442014, 2.7093083630688826, 3.801072982572982, 4.001140316801005, 2.7984827491680426, 6.416973532358593, 3.9279119654854933, 2.351920061476884, 3.7966856000989626, 3.6806493438594488, 3.5346784615640088, 4.346462938377898, 3.9628355895281433, 4.067373707573528, 3.807650377199289, 3.5915294812342786, 3.0644267993058305, 3.8449709608176574, 6.445341132615198, 9.117715569555429, 9.168892127543549, 5.601292842707085, 5.204427758016948, 4.849566972391554, 5.829847360854443, 6.616381426765248, 8.17082959604683, 5.487870759740769, 6.633301477517841, 12.200131799503113, 6.590492281977394, 6.033636128818065, 4.565165520573958, 7.615716499813639, 6.936568745882851, 4.693561068696723, 18.409496614671617, 6.286702590774688, 20.48398024221641, 8.515179967673069, 7.914320025706911, 4.980796006270561, 8.016138345969718, 8.249904537232315, 7.157535114038616, 5.92453456403986, 7.825909778050105, 6.057816589891257, 4.939155515490114, 6.659040927295695, 4.640145620893997, 9.51305630907159, 5.820224496627461, 4.695524791700048, 8.390174459204399, 6.166350877532012, 8.126117020607618, 8.832385731582502, 5.25281072797616, 5.433196415512034, 5.50478409123169, 7.387212175378047, 12.358660244507192, 4.865626469842916, 10.620090799085178, 6.499388724669466, 4.992530852229127, 9.624549280375433, 4.753426687027803, 5.849393758507873, 4.9189051358147635, 3.940366603241273, 6.654747258120298, 8.255036497404397, 10.557001044821266, 7.374377088067876, 13.146336057416924, 8.013378932429365, 10.171746561192103, 4.178323767825831, 12.213974484996577, 8.537859578330162, 4.050170992196061, 5.898043388460396, 4.2595716008566535, 4.022330576075131, 9.098268993647197, 10.625533394599739, 21.761220134784374, 16.051792429649552, 13.504932726156357, 18.952940031480303, 5.579513863169351, 2.5568192780913352, 3.470871406226239, 11.756179359710664, 10.582706162144241, 7.477628862583557, 10.485123999792474, 12.151402688241507, 7.9746148151959915, 13.662280405052465, 13.624257316571802, 3.26432983910447, 4.278895825289147, 7.556711574392341, 3.1446682692630636, 4.091989389210855, 6.820217194594627, 3.031116473683492, 2.989269384744144, 3.8190672401786943, 2.7824239033042724, 7.832412588722024, 3.8981390828894686, 3.057921903744181, 3.496352460608245, 3.784810208487976, 3.3969000993667593, 2.923712578321182, 3.6113856890737535, 119.18435073260068, 2.9224225227628575, 3.00636124175227, 3.181104694924858, 5.039719669030694, 3.278984100245013, 3.104015432874386, 3.5243414156962736, 3.1184358391984555, 3.3173942136286487, 2.6132135915050188, 3.045159984279027, 4.994257751065591, 20.82522359280424, 17.881683830067413, 4.3609208789948335, 2.6955310334818767, 3.1629537454910555, 5.546474951010437, 2.7217295700261945, 9.835830234782879, 9.203495903138386, 11.333334290134172, 12.30469632771173, 3.289994159451941, 4.188647434323345, 3.493871748870853, 3.7394547801504268, 5.699874917284373, 3.103165934930237, 8.842440803598501, 29.48229105873595, 30.75227841325503, 14.043731171930247, 14.829508222918088, 73.42750101528824, 15.28924310625149, 64.37372658822659, 73.91791001591002, 34.480747981246324, 48.235858153317544, 29.238639377674883, 15.505320481661604, 8.176852670601125, 16.789735300036284, 15.115631872589368, 30.389418516279573, 18.068763978156873, 8.348273478659806, 14.000375998393066, 9.648494291193707, 16.722473813291323, 21.418748795613396, 16.155778691530283, 224.22144230769246, 7.907681282146575, 38.679912398009705, 11.054111154007796, 8.732575951106925, 12.027991336192136, 9.356316547937437, 20.777812327485623, 8.525382916823638, 11.66546148222659, 20.567304294328245, 6.023899753654691, 10.01124212294589, 17.077189211331092, 12.238774189408087, 9.052240266694064, 17.21415613368684, 10.556501480103083, 9.676102703785235, 9.059978022569078, 13.937803499952258, 10.356029476480083, 4.548590096150444, 13.150422045266314, 12.885372091813492, 11.986898245661436, 47.11944300969206, 95.49076163092968, 103.98198030201243, 28.798982505389958, 12.286932468610374, 11.5252691008222, 9.825920742602811, 22.949949873646272, 11.650690309263956, 9.048402821358508, 10.174191476951213, 8.060653291185128, 10.583649309188267, 13.141566168669499, 15.495154512144527, 37.49713350684403, 8.99174921470266, 23.079601699901193, 25.979537891214697, 27.01484446153404, 17.601127394293055, 26.11275618825619, 9.965902378141868, 7.6334828302872415, 16.19020759387397, 19.49910203699577, 21.615329577475865, 34.36845177045176, 13.886356844964991, 18.535542886770997, 17.313655871281313, 14.580883865200773, 18.901203421260544, 10.59825480061842, 10.466832780146243, 10.916946588500409, 13.66849403520456, 16.28730167673457, 18.27446627713434, 23.183496687952562, 6.8940772698251775, 14.779958906764598, 16.977841547439088, 8.697503495589224, 12.041712662534847, 8.377980134020275, 20.714420714987153, 10.427549738301044, 14.476087169706172, 12.255199083210172, 10.465268391345722, 11.667094870948588, 6.549266289736414, 113.85838891663889, 8.951614540689823, 7.983875518785952, 14.94057514420187, 13.182309666597591, 6.591576996472799, 13.339618704870931, 15.208083168913577, 15.419261740497014, 10.618062789934168, 9.205429889408949, 9.560569631757128, 4.806027472588513, 7.073773320511576, 10.315338668821438, 5.153313604451102, 7.995099927849927, 16.065993309983728, 5.243860640434675, 8.36800292092108, 7.093546142088389, 8.564920574293918, 5.698189947341429, 3.4190394124096417, 5.55220999751905, 7.482928545482728, 7.717652876058804, 7.614513402526215, 5.432688511909487, 3.9489175609207456, 6.2887543119032685, 11.208513732863668, 7.468387018586056, 8.349956601703184, 6.393429026651977, 7.792728317681036, 5.410745626622264, 7.322594181970172, 7.294464373515521, 11.75176969133084, 9.647583321757564, 7.218893236912896, 16.11340515879059, 10.344745695407875, 17.323405108160507, 5.949041943217985, 6.556981112943162, 5.963870293333078, 18.609535925693717, 9.66986703289606, 9.11594541183732, 15.910876949755696, 7.567020461321217, 11.989306584387483, 6.786333113583848, 11.60810723506178, 7.9067112261395005, 11.98364393655603, 14.150471807670334, 6.474297259611242, 8.966874007763524, 11.550396425617851, 8.747061523822214, 7.479351035782078, 9.036093044233864, 9.562185319377235, 9.162058134434366, 10.090352503031475, 5.973097868873344, 5.378980424365781, 6.612545228110539, 8.028991556716253, 5.396686534300143, 174.60416666666683, 233.99833333333348, 211.06916666666686, 193.32907575757582, 161.34950000000003, 163.04399999999998, 127.08589787989784, 11.731863125193629, 9.278985072483527, 7.71525532477089, 8.510697395402095, 8.059310396234395, 7.6278882795651315, 7.214830226035958, 6.626663217880604, 4.69528932819548, 12.69116392688826, 7.983962287100063, 5.177940688687798, 5.390041365037046, 9.466299420901931, 6.1987300170362625, 7.838244667530535, 3.1138225150550194, 5.255175584978303, 9.49707987773806, 7.18340774761326, 7.962680175569181, 4.385991860958862, 4.283513477659387, 5.3639121131168706, 4.960532577626408, 7.264199760389467, 4.310614532449741, 11.768175361240068, 6.068427976530445, 3.334576897223187, 4.312950536283448, 3.036041048212959, 3.2189515498317354, 5.602416648213551, 3.5130813898343316, 3.2434658812420296, 4.159592388049567, 3.1400443091781556, 4.244874576505413, 6.345194468704714, 2.4802230296910723, 3.88714469555972, 7.74000744204858, 12.725290751363325, 7.9105525991895975, 5.717120265212897, 10.69337493715435, 5.942013310200381, 11.939233040911716, 10.254928532449245, 6.25723041158955, 6.873202575356712, 3.537656919361941, 106.66536796536792, 4.87976275448326, 5.519435174460163, 6.8897659724802205, 8.902118019258678, 8.27936679722023, 7.574631303441873, 6.48602722885929, 4.91815939433602, 3.6753903629045857, 4.556307595636024, 5.571888063420655, 4.790645772026531, 6.04982695376114, 2.795937135479801, 3.8357295436243364, 3.887659753727131, 2.8506886024037557, 2.8049814706817657, 3.5589308784457345, 2.9748695974554353, 3.5827764220986063, 4.909773086855466, 2.6673383377662008, 3.3417585802100302, 3.0585400874418998, 2.788051336483399, 3.7589124435710635, 4.007270972363271, 2.632801953644354, 3.4042253612400657, 10.751045152196443, 11.776324827948633, 6.056502260722329, 44.28372798474263, 6.317793250641538, 21.706107263191303, 31.59047779029027, 9.277544231813938, 37.83220377222659, 10.27503827756777, 21.574379385841166, 6.958970940511594, 20.478715830754865, 11.04133823573891, 16.29816010380373, 12.911721157890607, 16.035972946228235, 17.66144355966106, 36.843208577813265, 7.53762406274531, 5.948818360091065, 42.40473286088036, 7.70974207182962, 10.478497015141699, 16.734233732511147, 28.802092504241074, 7.209381362655812, 14.461281517170596, 6.423906846119424, 7.787250565788069, 22.981382999682033, 11.629693433904244, 9.417115562093406, 18.561957966574195, 10.05553436938225, 7.128400960184572, 6.594705804025538, 5.901843930067372, 8.291545604475266, 11.489924282206577, 11.815867867340716, 4.725248978286095, 8.08951810032382, 9.241853233993242, 7.045258832298833, 7.687330479781722, 23.956221016272274, 10.471478479487503, 18.098240352209846, 17.606449204410143, 10.105379482014845, 12.854775290108332, 9.23744172213421, 8.74557144325356, 9.177644114004902, 5.519705191011467, 7.418741752977381, 7.083466883663506, 12.507629688329828, 5.017471938902172, 4.873328187391246, 12.683889344330774, 6.8227906903032665, 10.731085781884595, 3.929468263871377, 7.192409029632221, 5.161941626540998, 9.724777033416622, 5.585253284297401, 6.01998224450474, 4.201729885535191, 4.856309691854194, 4.22971227822807, 4.738050940605287, 4.7996818226631035, 4.2465234180383975, 4.11535693572394, 6.459025929739846, 5.903123411411382, 3.9842252998151637, 10.184273660805879, 3.697998730697491, 6.083719533055416, 6.269044316902865, 15.435081059328327, 5.451978730589507, 2.9262692506272363, 2.844004516488011, 4.237481186788659, 6.719286979268829, 3.2650973328087365, 2.9830267445080723, 2.7522368626112295, 2.3694866555061482, 3.82050971974113, 5.224707199661411, 5.275222222161594, 6.297104071317178, 10.760669259035542, 9.127398914606266, 6.682219520334646, 5.320801239949274, 86.44477329215042, 2.728577537732659, 2.4399822864104603, 2.8619097125861344, 3.7178549135260246, 4.5301096189388765, 2.5011719092168136, 3.1844194389806413, 2.2602009097374096, 2.905813362768929, 6.307919222199576, 4.54401540479738, 3.1178216874369094, 2.580119368655104, 2.8272986845762254, 4.533803572336353, 6.092012797157732, 7.285000386309595, 2.855519278048042, 3.5933724051610616, 3.811131503289191, 2.643038415611756, 4.544020623603709, 6.0839966374317545, 2.8553501664818013, 5.013653535545096, 2.5350008281484704, 4.281968560768198, 5.89305111534756, 4.81498719737968, 4.8096861492089635, 17.787806327368862, 17.269353346373947, 14.339885364701644, 7.652279397533429, 10.613502256497075, 36.9823029254661, 15.80334006921537, 7.755692410933149, 6.526167175365253, 7.397099681996608, 5.6869296127776465, 6.757532378852131, 7.036142237929958, 9.78278478163688, 6.055405432521043, 17.177247129353926, 20.031476832142662, 5.284856086292684, 7.2721728587408325, 11.054992749383283, 85.86094444116216, 4.732734624638791, 8.600055861242845, 7.235651758517294, 21.589361592716095, 6.938368929631895, 5.963587975227928, 7.242225995847706, 6.650178557083184, 8.814987573654752, 45.45012269568681, 6.28941324827764, 4.906824701076254, 5.027108773521397, 7.605908873479863, 5.154766170174055, 207.24857142857167, 4.3832119627356265, 6.820098772105746, 8.593816318581613, 4.663941747014286, 5.3937566804969315, 4.962318758298156, 21.52985657691151, 19.00416079146971, 8.746350750777108, 6.728449084251894, 14.180746097736057, 17.805778045594362, 15.308148571005283, 5.117893226240918, 15.344771563964324, 5.009530729017968, 7.211479539109727, 5.826710120507227, 12.0084344700577, 5.075022251477723, 11.03078511513014, 4.535244667402616, 12.049199674269682, 13.360466596197849, 28.27823378240379, 13.22570160979011, 12.769833567957281, 6.320170583321049, 6.799616462132539, 7.343327054232161, 9.868130713223845, 5.316975981959326, 11.782964573422385, 10.609216348870692, 7.135440175172777, 5.660533966579967, 5.315280366304335, 5.027558666021856, 6.775364728144659, 6.911611167341429, 4.99473686640424, 8.927424747886265, 5.45059877388294, 7.458237893951594, 4.484594534438785, 5.201641075109224, 5.7388350273910165, 4.489316270664919, 7.6354090952906715, 5.3856067109503405, 12.317352942700124, 11.55519753914778, 4.806257733701911, 9.887769719944139, 11.722258802512117, 17.98275127730811, 8.973036732609316, 5.371710770546132, 9.631009473742672, 4.999715084000609, 4.392798549778114, 5.107856688869572, 4.8848528243444225, 5.9504239335226154, 4.745806018078514, 70.50863974152679, 6.314547171817081, 7.361286650136629, 6.505760048161702, 10.855209373688972, 14.858344317786912, 4.341375653927538, 5.353678017262332, 192.11583333333357, 12.191602289103285, 15.012329694173077, 4.483257065593122, 9.191527303896704, 10.135231559805389, 6.808395770873636, 4.7954129269161845, 15.901689499477227, 10.210545776994504, 10.967293183641893, 14.83202577474089, 8.955137518375993, 13.682544260489905, 5.024137321696226, 5.307730807717704, 6.255581084954538, 6.953287039172173, 6.536041012427412, 36.45846862383677, 22.14916212005339, 22.21496744135189, 17.299278028480284, 22.217594690809033, 8.635782847805729, 6.376740672160792, 12.410337319726926, 10.616256126650184, 8.381642422134433, 4.789633817292436, 9.609150468274366, 7.052109467740046, 8.54556732583827, 5.658435890650165, 11.3602102282793, 5.313768388856593, 4.410850997260456, 4.737559839173567, 4.939455158665866, 9.756721970029501, 15.92476161324036, 6.247549780231525, 6.315176410681648, 10.577133276397022, 6.001289266090632, 5.969019697545047, 8.841448309237522, 8.701971665077815, 6.887276954247722, 7.379809076986754, 3.8878635082460935, 7.407172866143153, 9.855034440087133, 7.641830141434693, 7.973394087941875, 9.752399642582477, 6.653192409323272, 7.983414485255315, 14.502774194537349, 7.713188694327764, 8.193441878537206, 5.616424758020552, 9.573251749231158, 5.31392062344488, 9.503195780914973, 10.09380876068376, 6.809963203691074, 7.895760936774893, 85.95865649701182, 27.861245697107176, 7.809730221482813, 6.21453075094728, 8.051327927530462, 6.564348771326711, 14.494951122664737, 11.268625717063102, 8.81744151273563, 3.829658819267387, 5.383144046667849, 4.486495586870536, 4.246756679541481, 4.099847516133981, 4.505532531418106, 5.0854158268202365, 5.477803857404459, 6.222142813670679, 5.532162191130481, 41.711740863729, 5.3955406221273865, 3.7868360311198797, 5.125758637514396, 4.74489830304576, 3.396863632513766, 6.146510185959777, 5.898421769500341, 3.7862011592261964, 2.6751046997762127, 4.7586517729817706, 78.13646374458875, 4.2260379743769905, 4.2423749736748295, 5.326989157655968, 4.900963978344367, 3.3607534168714657, 4.100530162890816, 4.8238037828629725, 2.7835957233174398, 5.481948472945847, 2.884258254179045, 5.82711815961816, 5.063818185130225, 6.376686700504812, 3.3657553835834007, 6.208762453008086, 4.758648465386951, 4.167962867522723, 4.3001273262636275, 5.807674823563494, 5.1544329453359055, 5.069954353605283, 5.1861000000825515, 3.3219024499107723, 4.133047997302835, 2.9758294585770524, 4.986101421110709, 2.9822641352960817, 5.068838548406195, 6.313806343421532, 31.06252845320563, 12.884454843599064, 18.837108815363585, 22.57707631843599, 6.498494003004896, 4.764243266805258, 19.87595616368327, 4.764830078879035, 4.785668510620933, 5.815338113677249, 5.601307084742271, 6.371128074404287, 6.469696297073851, 7.745283148076854, 5.928116924576861, 8.401547271073584, 4.882982157160762, 5.041060121810648, 5.329884837754451, 5.682900072430275, 8.484177956971221, 5.110940161898405, 4.695785130712322, 11.037107071389364, 10.808731344907866, 10.683380406754665, 11.698017462132302, 14.310485953206351, 8.312278572249067, 6.383036963504773, 6.092733629317994, 7.297224093173497, 4.116681949494658, 5.574779242800103, 4.327714775546863, 5.652705408847884, 4.401940919904315, 5.286934006313398, 5.534318443030572, 5.173131664319197, 3.792704050928543, 5.495916485747067, 7.015615236095931, 6.2035251350360605, 7.763961763122783, 7.9850910169448, 10.14656541696114, 13.731195522364397, 23.887347875833296, 11.546169565453278, 22.544538351294896, 20.459941957372845, 8.491328760642938, 7.959242192666889, 9.063442990519352, 4.6982235045350835, 9.007038552399539, 6.875822950857446, 13.746153638821776, 12.52472501188352, 10.869135269776615, 8.42284411895649, 7.421280179411891, 8.990523411743716, 11.196356266396629, 6.309910409475075, 10.280718120759534, 15.858711095921622, 9.408312169811461, 7.068336589446655, 82.35165035674359, 5.853219790036188, 7.844276393143162, 2.9030442590298393, 5.883211977910142, 7.406071678581094, 5.691690812739746, 5.1492087335058985, 6.024565100485499, 9.535732892924068, 2.768025148266114, 3.8721901349488754, 3.8757381293403013, 4.098562192469141, 6.492402486865218, 2.875082108544467, 3.2998795644293053, 3.352055773331482, 7.380465244179654, 6.643368475075974, 6.946712938503714, 6.976396891279791, 7.970754721174082, 7.51889213583527, 7.650683945200266, 4.434370016041782, 7.473575168280813, 8.078957687937194, 4.889029609001486, 3.6610775048363053, 4.15725363440641, 85.91843956904286, 2.9970653284686195, 3.803896703376146, 5.314097800891918, 3.033088450952837, 4.515946934474492, 7.244644981867926, 3.637630057652427, 4.455844608520595, 6.589046318105902, 2.601882800171455, 5.68385565699021, 5.198262391054714, 2.7452327967699124, 3.635046542468327, 5.09446792109648, 2.9448230377419278, 6.232880035196209, 9.517586067520668, 2.492025467153987, 7.204252634744612, 8.402733650243253, 6.3188117870913665, 7.450456643915745, 21.228212393698758, 27.65201934359858, 69.41046260653694, 17.460998460461905, 23.969705158857927, 20.612399594657415, 19.77806583894271, 28.951271449278252, 32.665310912935695, 31.633149320368137, 17.25230523663994, 12.937577429786968, 15.012049161108042, 16.522237031991473, 34.72715516090487, 34.32610310959488, 20.220653194270024, 16.813313900078416, 18.314466679026662, 40.481713631606375, 15.46658770850093, 21.78128917165306, 16.99448412032879, 22.659363157218642, 32.19862752990673, 27.451397801250078, 25.161200200878508, 40.7567494700226, 35.405446682975196, 29.004613583399376, 25.687752979265305, 18.388114513392708, 19.755145466400187, 29.796895314001983, 13.274972754731794, 10.748618527967341, 14.514907576286273, 23.920158991461324, 13.699378258955022, 14.02454508048001, 14.733661250721338, 12.742211558139154, 20.121078597330566, 27.11368053371162, 12.0982981521399, 14.57925437035633, 11.20260270100645, 12.529192405330171, 25.824285732469782, 18.531191473851116, 9.326912738512464, 13.805483407073748, 30.597128981373366, 9.959156514310957, 12.161014445072393, 18.269756833357416, 10.666920491175008, 24.161787592500705, 29.20846922860577, 11.846845416923657, 14.956254273049826, 14.590170573677891, 12.033126820719433, 15.44830886257407, 25.501834296273902, 38.710183425058425, 14.324325578988296, 11.931017964930666, 28.737387556720336, 12.521188119666567, 33.155434585489715, 22.824151589423654, 30.228221009483885, 28.929460587917845, 11.041686989379704, 12.864729729246083, 36.941001176096755, 18.319845709021468, 24.85046711129952, 9.351899095351518, 19.04663787717987, 8.171122725843276, 4.795499051018983, 6.480576561376909, 7.847812400631713, 19.726226029792937, 17.30615970517074, 14.892369417222403, 17.590230650233877, 13.225780955095852, 19.293138942635835, 30.631544434157934, 18.541155883964063, 15.886184787877756, 20.3636211892464, 23.830972784880586, 12.861282472850142, 7.988906769615277, 12.170256401271306, 14.27675711225324, 20.955242680778436, 15.73053066677182, 17.258652411031687, 56.32444993907061, 20.715458918283694, 18.62721072982863, 20.951555072383847, 14.245186824008785, 22.8175617357524, 11.159098565171076, 10.372252578092825, 15.400671564020282, 20.03552171492114, 13.522203250365127, 9.180334545958697, 9.719530877622345, 21.00766362513813, 12.928938090903358, 20.026445106276952, 8.786441664529805, 16.40285405855866, 12.89553989228425, 10.228254522762843, 7.117835597229963, 18.912704816100998, 14.198025483292968, 15.678418479006071, 19.850069787163292, 9.922674300789328, 14.72504693416725, 11.062148249725924, 15.392970869245131, 17.41671109030749, 8.507120709918734, 10.283072384079011, 22.445202525284998, 14.880285675122863, 15.688844035788279, 11.915692608874322, 9.150154688418596, 14.399120042627873, 7.622939091675897, 19.952218554073117, 15.731634620864813, 16.024575999652665, 7.120383808580711, 29.33335715326459, 9.732978421239942, 15.96000041489482, 6.889724528018969, 8.656036955604042, 6.381191758072826, 6.639740957669218, 11.220161247488791, 7.807937117457534, 3.7472305722850345, 5.46342538156194, 3.5980085626221547, 4.3371529191693705, 11.752805922857794, 3.997415195873556, 2.748948845587517, 4.416444744936113, 6.002532267055867, 4.792572436457036, 4.791677119440476, 5.830053398806986, 3.980317653227027, 5.694097386200492, 3.559399903897698, 6.221259685192509, 3.1326810183078946, 4.048747893431011, 3.6681029988425227, 2.9620219538358614, 3.197481843263406, 4.706580328860185, 5.330726342862648, 4.271637729449952, 3.38943131291187, 7.427043710052156, 5.010776562576419, 4.802265504718187, 3.265784408963647, 4.9026338968891485, 4.774739403563253, 6.278602387611153, 3.0889332694984755, 9.824036184467616, 6.700735580284102, 11.64322019919284, 3.946369003267132, 5.861940480563817, 7.790156658035372, 6.166092980625899, 7.430669057068111, 4.033311083563229, 6.02126816335602, 7.359535922110224, 7.397828597443568, 5.735947582556544, 4.963952914362524, 6.94970514089063, 8.533991295098927, 9.828385494786902, 5.3462432738554115, 5.22261517152438, 3.018738000777243, 5.251878561910211, 5.48543575603286, 6.281423520923521, 5.5589231787040365, 5.11056613705817, 10.949595256595256, 5.026461914300439, 9.2063054162323, 3.419267385114642, 5.076027764414702, 5.369906868373171, 4.242043997110972, 4.698956280762255, 4.5818937573986345, 4.138763970135195, 2.9329758304523863, 3.5303592176063137, 4.663909529313907, 5.0405758710843465, 5.086687655406171, 4.686602130396025, 5.743366015841629, 6.977049046364261, 5.81288074462457, 8.71574818237318, 5.871897045012378, 3.540181282014484, 3.5475045629814783, 55.49055260295262, 4.93796564217461, 3.3117285682416773, 4.267764901622784, 4.256829526686692, 4.1792518076518075, 3.6314352983872977, 6.025192810121987, 10.789301157066344, 4.895457000326201, 3.6144813476081734, 3.203895212961628, 8.749729086319523, 5.871975800265569, 3.601774453745742, 7.464726387991095, 3.4550000342708325, 2.9822691190973765, 5.472827946111192, 4.124372065340215, 4.133740410810374, 5.189419916057336, 3.8134206333662903, 3.9513817631359607, 3.6949298445978607, 3.6593282738953974, 3.696719908899104, 5.456829538393866, 3.2702263655781003, 5.436773165408229, 12.574665929482581, 36.08440675329343, 9.536504357323299, 16.139877670125664, 16.094948509065144, 13.150609432123193, 18.2529809083882, 11.062168687687468, 6.016373466230063, 21.530993511188253, 13.966824175282913, 9.667385863062103, 13.845275555581123, 231.12783333333346, 14.504016873605893, 14.895281923062331, 9.172010534455385, 6.004784195063942, 15.118308713329267, 8.667979448251245, 12.847817489066857, 12.61740546984497, 4.5607752796886345, 12.739318713093605, 9.671930720845014, 10.14904370644511, 18.246609552604184, 8.36286708521098, 9.590307264300538, 9.129937254868668, 8.276410816328635, 9.924821721645504, 7.809416581353825, 14.627884457927395, 18.20801588730113, 7.257817061997727, 8.884082428380447, 27.51105490207699, 12.72955896055782, 6.981646706521227, 7.981344360687739, 10.717441962369675, 11.537708344938435, 6.477079459351396, 29.610430005476786, 15.618854754881426, 6.855017764319527, 7.05708413714686, 5.697766542204221, 31.688980631268464, 7.8647773471004285, 11.558353650392478, 22.339895777443115, 6.905848759535345, 14.757163752494343, 22.966245480338515, 6.529142083327775, 6.182870196715846, 8.098645410019968, 25.371063922553784, 6.98884033671575, 17.373953994496155, 7.494330500979239, 6.276450897277936, 13.189680077436897, 4.912077061435557, 5.626722833684789, 13.374769021688532, 6.090116007404748, 15.192021932320909, 7.753112964574612, 4.949663343560488, 12.348034729649982, 13.59809992266094, 23.62080063135963, 3.837045673493719, 4.100139658100758, 3.8058474815447654, 3.8404018701143348, 8.037568140399749, 6.315388069906108, 4.4125980582360205, 3.570162123039489, 8.235877160910334, 7.676510851712697, 5.9717183057428525, 4.912456132871542, 4.035412136984671, 3.9536965447492824, 4.910009882356421, 3.9133553164678476, 4.184598714890173, 5.719956987536923, 4.155728810515334, 3.185406477739916, 3.7308010460355288, 4.053613660914155, 4.70024147853429, 4.2046617923919465, 11.407445368228263, 4.58897276452101, 5.508694803302415, 3.849864301508455, 6.600086052808551, 4.2669616888685065, 14.12130557325058, 5.362508095375828, 4.2192353854386395, 11.264666599310564, 9.376268226988055, 8.845185437547627, 7.591191345925117, 7.137532608149098, 12.463541585829626, 7.464319699107961, 11.419774591894171, 9.587923489187602, 9.224179366610402, 5.738459283276558, 5.656340842397265, 6.947397281593022, 39.76368239930346, 41.51379679660112, 20.57201282095437, 18.58326938150665, 4.99913738041403, 9.018615914681122, 13.719743824802647, 3.6092815685881154, 114.90377370230385, 6.03237000732592, 4.665051974819864, 4.670246654503685, 5.548203927996158, 4.088789925282117, 7.0703305383982284, 7.9969676414408495, 5.490301787257862, 3.692000753644594, 8.37148354042472, 3.6943196869279347, 4.378507955369709, 9.050797884004536, 9.577137234680379, 4.294311958389274, 7.142784384819958, 4.030901441983261, 5.833381228325439, 6.072461276835184, 4.009292942008807, 2.952122511393627, 55.931945061044935, 4.473455986117161, 6.8825357399629565, 5.7863517247694665, 6.420672938413026, 5.461207393572898, 6.902359416963325, 6.302230626943865, 6.768281039735241, 6.580665928006562, 3.7309593372674557, 4.294469159993695, 7.277149625958967, 3.8923525622623183, 5.737714000052233, 7.8157055978360495, 5.100137852165442, 5.812072418679392, 6.830082941593623, 5.16149112171929, 18.136785931904353, 18.96301875590581, 8.987551183131503, 9.984260892567214, 12.76509645251481, 8.304716518427368, 8.82006675539103, 10.381976041432406, 8.65789479312985, 11.420167868601093, 17.19502696226809, 18.887570281402603, 10.451594796839693, 10.63545804943572, 10.627188807873429, 8.50382098267099, 10.358275090735264, 8.802459600303951, 11.52095081628963, 9.811037095758651, 14.206838200173022, 8.947011603321595, 9.254647452041215, 11.765651369885495, 9.485352687909119, 13.089004379987301, 18.6512494683466, 7.194155567921229, 12.7336669939773, 16.980141523716153, 7.05764671923699, 9.08360583762742, 7.706354160462838, 7.631881118357648, 13.1250741838562, 9.441500982031416, 8.795220165687248, 8.060765935689897, 14.26663465971611, 16.826573409744846, 7.475134822412603, 13.327707734498226, 10.320115362146575, 6.678101389386362, 5.326350446260217, 5.816756016401963, 8.516737104503312, 7.014651286239747, 6.947332381527456, 9.55800130770412, 6.5519511466374585, 7.2522800681771376, 7.196655385536653, 9.297604692595904, 5.792099403061914, 12.360942782634604, 8.846700092234522, 15.261799054210746, 15.3758658449892, 7.051100364262488, 7.988615732924656, 13.711110791703467, 14.920999375133931, 8.847348539744562, 10.741849441300557, 14.744676818810618, 14.034518828688343, 15.63841513709291, 14.521371994370558, 12.97113890136707, 28.30490653420065, 8.370804653033407, 8.54883290812131, 20.384875993524034, 17.913807867371528, 9.457289031383572, 18.85393683873274, 14.95624653854325, 15.20873347528866, 17.041196621852286, 9.308662922575941, 14.304427467405407, 8.985212330635926, 12.412159206631635, 7.140991042952411, 11.867530841863971, 13.17082834948138, 12.795784145319512, 12.812971547179911, 10.324921894621701, 12.070881284597693, 15.372151820712698, 9.872049011167332, 13.094513596058672, 13.85873950022151, 12.55373208619726, 15.51902651487945, 13.242332136383702, 6.799482320376393, 6.302471564817802, 13.84807777799368, 6.467015698898051, 14.924051649250872, 59.56580565200642, 6.875880050781962, 13.335587450640489, 13.285300482550397, 15.135214549396824, 11.573528501001068, 14.010629512394779, 11.346212388637092, 6.216759147956003, 5.652742167801645, 9.648681813028585, 14.804507852921866, 14.135932550640849, 12.187588648203363, 13.12050709579324, 15.264102160770552, 11.594126197778829, 56.900130575862974, 5.4622901208054255, 6.103087241393949, 5.6268657398399835, 6.5170361044085965, 10.593368880853632, 16.02984158146144, 6.830032446020816, 7.455133315373135, 53.75897951350702, 20.488835967586787, 9.20297884433244, 245.51000000000016, 207.16000000000022, 166.39000000000004, 178.71966666666674, 134.7498333333333, 160.90614285714284, 6.521313808480789, 6.312448068354514, 24.1025880725797, 26.096945891625264, 50.62560880604179, 9.6165096116931, 14.318459110796615, 8.268780002732537, 4.809619837468791, 6.997332909958415, 21.909236977521175, 9.460880242678114, 7.193828733516039, 5.3119284569418665, 9.141300874386225, 11.606845761379358, 8.441803513044896, 7.28621482499728, 11.229954289809482, 9.12176246071826, 5.8398919156604885, 6.912744486248208, 10.194131012421945, 9.270814108284727, 9.376391450516998, 5.737971101191109, 11.723914635342384, 12.069620640958087, 8.88925368077068, 20.550673185676963, 12.818704502657678, 8.807176072664081, 8.76059498318382, 5.976921446111227, 9.915417495082194, 18.388303251893067, 8.697770218455227, 7.17464487222659, 8.552717523758458, 5.806735497115197, 7.7362665464090155, 14.243865450916182, 8.428986024603226, 10.01026178769947, 7.7105211152147675, 6.185703062029569, 9.020396790912528, 5.499479986311345, 8.778293218915335, 7.804232069166573, 4.916460984887366, 4.317597721513025, 7.002276610511558, 5.726492268489881, 5.260613408559491, 7.949019703166623, 23.789822539514812, 7.505686856420496, 5.483409523860529, 8.035940381137028, 6.980247247790862, 4.974418715429227, 13.93623298558178, 6.606955893806666, 5.902612491683687, 4.173343930546143, 199.1778809523809, 156.05745238095233, 140.76654761904766, 145.31109523809528, 96.15434523809527, 132.406253968254, 4.546945810803764, 7.604861243938357, 6.651521392569965, 5.313631963323299, 13.438369731905526, 8.278553765200382, 7.958163584693934, 8.801820409958761, 9.513287266706708, 4.6939803890176135, 10.368859479598921, 6.648681721955291, 5.942337412853516, 4.981073167589529, 12.184241512302185, 7.534463344132258, 5.5213691633544295, 8.670774831502456, 6.941609599415629, 8.117546396184995, 7.8167079870287886, 4.605726511128813, 5.56303981257848, 5.73295870174839, 5.62473462896743, 4.444125423075091, 6.115760575661585, 4.173958458190214, 7.202463069553899, 5.290415664103062, 7.521827662225995, 8.578610143384486, 3.765543415228271, 5.518594308659715, 4.970791981027588, 8.06387206005768, 5.606253347054144, 6.3724248627866675, 5.478209727012219, 3.903391817682364, 70.08182871203347, 5.647882187354204, 6.877918353876198, 4.499691780712422, 5.849765387778316, 5.000890115286671, 4.730481451781483, 5.449155689165661, 4.986688342440864, 4.103319018424327, 3.9651981018670033, 5.8154351761714365, 4.826255847680297, 3.922273591520893, 4.217906027204777, 4.661063576578933, 5.474574047868501, 3.8352874029155215, 4.329380945545786, 2.7401927894480087, 12.237700004363157, 17.17046200040527, 3.9315630845511325, 7.870804619121759, 5.608909077171252, 4.809914354909922, 5.939784547115151, 5.8170336790381345, 7.889106690105133, 14.138849442040028, 6.09147620362813, 6.200534525396306, 9.381807841502567, 10.858841908607117, 6.77957427925902, 8.433888152946587, 5.7096457403975664, 5.333771590229652, 3.8279477286371857, 5.43646430186814, 11.053555963123275, 5.567630762532168, 7.2898834147657645, 4.883466600702538, 17.314727294524534, 4.950876484917814, 6.685249409332021, 5.662886342939262, 5.035928712439429, 5.152241992851125, 5.037195509864916, 5.352519510713615, 5.1748873065239565, 5.340951737733052, 6.32568491964243, 4.434497452883136, 5.209817511706602, 11.729101685830967, 5.115043929561402, 6.982052606155355, 7.593882323921653, 5.458759620632386, 7.429724728923538, 16.42899448256588, 6.597589466142282, 9.494964171870969, 16.223272634405884, 3.734421148931529, 4.250993385373457, 5.582462331785197, 4.305742879189223, 14.876047660430286, 6.730987883854819, 4.0878454496902386, 6.877499642938601, 5.522175522799538, 5.179448763792479, 5.621620754648373, 4.285419741422317, 4.972321628129387, 14.27395438572907, 6.30018527234611, 6.8095293301941595, 4.4621126678360215, 7.822308781028251, 3.6355720335120387, 4.436254829413467, 5.480734642503719, 12.42702611244684, 15.152610075248498, 9.323401890094269, 10.454866505091212, 5.9543357750803985, 4.646613573792523, 4.468422589308365, 4.496112894837845, 4.907622424357729, 4.7631255359664255, 4.027905049350698, 4.573734118878306, 4.460551315196972, 6.161700369936195, 3.8030847084603985, 3.7209764461695194, 4.090768042849539, 3.9073277210510513, 3.6622975816054115, 4.828971516407746, 3.881866157650396, 3.729232303035124, 4.066635529453027, 4.078728936453487, 4.568464400232157, 4.321142359915337, 4.878490967293151, 5.302133460729409, 5.2485268424033045, 4.010106723381178, 3.5823557637973247, 4.411934975919118, 3.7882716305109003, 3.7396936256809865, 99.58583358429013, 4.194112201978076, 4.111086618233202, 6.259218360713184, 4.691521404956913, 4.547869024694673, 4.308561026987282, 4.091100356009347, 4.058983439544088, 4.005562863986277, 5.452036559101432, 3.426032579919276, 5.235562989184705, 3.212401615957983, 5.1385920221838735, 4.240708934717563, 5.192595738711976, 4.4958648299418495, 4.909505047177454, 4.943235754150679, 4.137147745366307, 3.843779634829676, 3.0285445154597133, 4.49399295242466, 5.167148795606665, 3.868184383151465, 5.3518339254401255, 3.9929256156577337, 3.5148811975715866, 2.7646392742033212, 7.943140663488485, 5.414074605434755, 10.20295968795539, 6.311577036338511, 21.90534693059927, 32.32314828964542, 16.27551753864166, 11.27428005786981, 11.193182653483674, 22.00549794291707, 10.783964801267276, 13.535675424758841, 4.622582418314804, 12.913025618118972, 15.164256839681707, 14.81375064615883, 4.36266976307684, 8.263413186298031, 5.717692059005406, 5.214847188415511, 5.695888213602553, 4.383993866999551, 3.4879347999169394, 9.620551603216816, 15.306613588706632, 12.833053104249723, 12.187935815091063, 8.715080620074295, 13.748724362540885, 3.9283717275294827, 82.17496521668299, 7.67937771546094, 4.634578615080698, 9.532548824580422, 4.016072266959366, 43.25448761188694, 67.14624699397609, 43.690538968205786, 30.254642332786617, 4.166389629721689, 7.749183647010689, 9.224166001714284, 6.542495732200674, 11.468249382901618, 5.772522641706445, 9.711540047361924, 4.2686922121051705, 5.9687343965648445, 5.332083621277382, 5.2623493596962865, 5.3559092818847605, 4.357799731276428, 4.363475302748524, 5.969172280205301, 7.694107569583953, 4.866839127762501, 3.3714160640068043, 4.502214310692157, 5.7086716377856, 8.434443905364104, 4.326433102053603, 5.390549170062666, 4.959264330574553, 3.3595013102135565, 4.111546075892299, 4.33374451566718, 4.834885456918688, 5.369300146758181, 4.896995330822123, 4.375738694035254, 4.120686481830668, 3.7115437733527523, 3.9802247199797165, 4.1173894839000225, 4.417024357264723, 4.706100862990225, 4.539211605421338, 3.898462697885364, 3.576221328813198, 3.402544351227215, 3.760333125404725, 4.810616118256099, 4.101266189733862, 3.7357517151541155, 4.299730344762453, 4.031065169844201, 3.880824425698938, 3.9007768290623885, 4.32486709052714, 5.280238230921209, 4.198186180602885, 5.155036373978218, 3.6547199487445923, 3.9296205878372117, 4.3456505759758395, 4.926965630714708, 3.9003173603562225, 5.553640114780322, 4.781536996509006, 4.69023738915575, 4.853222660056009, 5.9923724681423, 30.18829539058293, 7.22066071225333, 4.388576743569918, 4.720758259211756, 4.410999047608285, 3.729286483886712, 4.247512631454097, 4.327054579831874, 3.8018324750584274, 5.429258433103481, 4.239225548934292, 4.1755727396250535, 5.155843403928322, 4.406174553612317, 4.461203829697586, 5.189612121152049, 3.907498229971504, 4.2411102032139345, 5.183120552612007, 3.7826183630668972, 4.0986947960601485, 4.681636695389745, 4.722276001341373, 5.953607420663158, 4.496621479112582, 5.9631562680305645, 3.1873946061781937, 1.9757103309423514, 6.884527567740872, 8.183526479397836, 5.635899133050053, 21.374155777055147, 46.24341143424518, 45.81439951407757, 8.154910080186099, 26.768099920706515, 39.070941150968245, 18.687671958421095, 18.325699493435064, 10.884467806347049, 11.415003976084053, 24.715411454031788, 10.208186453557646, 64.91185379901877, 248.43566666666683, 197.67500000000024, 196.02000000000015, 142.64964285714288, 128.4738611111111, 190.47538238573014, 18.02332261704912, 6.428085995658248, 15.541077355577691, 17.521795185617773, 16.787156270528495, 8.424830738406362, 12.746700046231739, 61.58211745399431, 38.67255598622067, 10.993645588087483, 23.943296774315595, 14.098797325635356, 11.211587217958241, 9.423277499330096, 9.185132378023573, 24.998996021459078, 29.46663212418705, 10.880124778755304, 8.542206061661942, 14.805568195955393, 6.2537947126607785, 18.30789413430418, 13.392372074543477, 13.771419742976041, 10.692910546870651, 18.63603497334196, 8.816075318420532, 16.73142541199117, 16.75842131304348, 18.174897831205712, 26.359321893949694, 11.276367190069584, 20.206819460470587, 12.699148866311175, 10.602984056988625, 17.344423704369017, 9.105370948642664, 7.343146638779239, 5.809412326210951, 12.20965682477563, 3.7240635315516535, 9.899437425211346, 14.563485464828373, 11.556910623519428, 9.802462632390869, 4.566898609203232, 6.6498070960463265, 8.59804014132208, 4.087193073146369, 6.814301508831757, 7.860846903003112, 5.6267372665123325, 6.0734121686517195, 5.621452501925991, 3.3906391575691504, 4.584012896394144, 5.691916558222447, 7.551206360441224, 8.005389794420552, 3.5975958480194787, 7.035357686846851, 4.434313803056962, 5.710414909237177, 4.329927187739086, 7.8612439380995, 3.167532868677518, 6.92758955280633, 7.128442417476414, 4.806322945845004, 5.337132973360593, 4.914058160243415, 4.891433107640825, 6.2085238558381075, 6.878141487021484, 8.168877102881734, 4.687823367356229, 4.117864357901979, 4.83948642548758, 3.8520784508916295, 3.6971957755388503, 25.916397523325898, 5.387041205310776, 6.385583114116214, 5.181602353335486, 4.72275344535799, 3.0730667872580515, 6.2308304509345085, 4.034346503063437, 3.194474524301364, 5.859014911204655, 5.091877992293219, 4.55570327580203, 5.188797239365949, 8.098959250671781, 7.099464664312136, 4.446252200356445, 4.638221008820396, 4.0230269585203775, 4.655066949124952, 3.9170323183465383, 5.332815472651938, 4.404865511523616, 3.811534727993893, 4.277654633427459, 3.7502654695914113, 3.7581464382511593, 4.213795889233735, 4.445875559529852, 2.8083375033557303, 8.177857640772467, 6.470413173892479, 4.657547060157868, 8.714212730626372, 9.460559466280515, 9.390899252723464, 15.065038328620481, 7.364905309464587, 7.932773004004596, 17.939180488863467, 26.177341042508495, 14.173393046421186, 35.21428814312007, 18.474470299188358, 23.991379284652087, 7.023916729014699, 6.762867543872902, 19.814757655101534, 8.119360978485785, 7.086561909785052, 15.0002510365045, 169.3683333333333, 148.55501282051287, 124.76635714285722, 117.3008571428572, 120.82744444444448, 164.2431336580086, 8.204597680383388, 8.034960782070119, 13.768516281007011, 10.583777554471084, 13.633008078330167, 100.16994632283425, 115.73129898610162, 133.21207539682536, 91.16882431457434, 104.24747591297591, 108.5919473304473, 113.22915190365184, 10.377364576131894, 21.397583852085955, 14.104610666577292, 16.096456010473915, 10.516831450710297, 10.380651426983922, 3.4581740934389527, 5.523587161893247, 7.9590133027041965, 7.28723777391059, 5.60806315276187, 6.794135944129047, 8.262538655383386, 28.759201154219593, 14.788826960415399, 11.48541856636214, 8.42149894138159, 12.773951049051407, 9.087770201551466, 6.012809173594068, 4.90345219843988, 4.760928779137691, 1.8525637336134373, 2.159310138528267, 7.909250920793098, 5.476459467819761, 8.372588970515954, 7.637715019769619, 6.392048344868596, 6.063698943543206, 19.190697817138023, 7.753603334579302, 9.341209682772124, 4.0556547239332295, 5.861750417822382, 15.356020971449803, 7.1897323671225735, 9.005410084116983, 5.7948996949061575, 3.761541705744688, 3.601835885223653, 4.68483852380921, 2.7274719571924764, 4.148308808898211, 2.6434256750788983, 4.655600942140653, 4.45597770432807, 7.319851758313416, 10.437630856789207, 9.96176676939144, 7.7056589914497975, 7.645800940773918, 4.302152926855991, 9.016894945619814, 13.81916502286078, 6.652389821173878, 15.053469384522785, 5.113294924689463, 6.002793046391722, 4.098583232094816, 4.3601542073493835, 3.5075399917930015, 3.937539722674169, 6.915248348315801, 6.220723834538119, 6.973461569423749, 3.7807976960652887, 8.290254172238107, 7.8479541077564265, 10.723810855944388, 8.289853131846918, 6.680334460082997, 4.410784385863643, 7.49036963615788, 5.477879812919266, 8.074638560377915, 6.430516388795352, 7.201647102707202, 9.276707220190676, 4.184310003650056, 5.469353506133916, 7.301570497920154, 5.065912727125112, 7.344734524790326, 5.017063166994349, 8.105753640134678, 5.329120297308202, 4.9454815657004625, 5.008495217415015, 4.709411861566587, 4.026249160249587, 4.367452457526715, 3.280710476529963, 3.6554300752684235, 8.02096005877616, 10.384339161620604, 14.094061407547565, 10.72197030763917, 11.428768834985366, 15.03201263770617, 31.83969650998029, 37.55030122863717, 57.956204958341246, 45.73132833237056, 27.830892686992907, 29.867962919542272, 21.669734529642863, 19.247929578489565, 35.87299571766281, 27.905845479791065, 22.213340217447065, 13.931144773803261, 21.442441055053877, 32.06723171805841, 22.447553788567472, 16.840498590392183, 12.739671206348154, 13.649776274730566, 9.95962946761241, 44.43775796603415, 12.706968545380333, 15.21706994568804, 12.489166036036309, 10.297819059591824, 13.026284450459926, 12.406721824293378, 8.046419806758351, 13.604413107801015, 9.249747948244845, 14.629484325639387, 14.96197361189009, 14.999414053703806, 13.415416051733454, 16.094025266565684, 17.946741872883518, 8.023641855841012, 9.13004245013428, 8.878254290760475, 9.381957289400834, 9.402709227934967, 20.37079184076637, 7.724305717689861, 10.65465757676841, 9.160142534523368, 19.546892138066184, 21.540422763180494, 5.879483863074938, 11.465790480597656, 6.430205019754371, 8.39117442032443, 9.921001105407942, 8.246435112938386, 12.15786731189814, 8.370384251631375, 9.538952160627094, 9.296138364330313, 10.173354524856705, 8.360060996963233, 7.304840845288663, 7.813746832804977, 8.206904118873075, 7.493067544207349, 8.590720692892319, 5.532660157920176, 5.76384637965316, 9.87145542697954, 8.501846845469823, 10.812138868091418, 7.589039628495152, 8.041452680652188, 6.671554998211752, 10.399694416121179, 6.010057613366525, 5.411633739684361, 7.321491439317467, 7.160391982725175, 6.716905173379995, 7.845705951735621, 8.032414587641174, 6.696044678195599, 8.468847016482577, 7.294318629561757, 5.481828398853379, 5.953684469042262, 6.595452954061132, 6.952628115538943, 9.858883363754552, 5.654362527930104, 7.283883119276497, 5.3892032927971565, 6.207336368591147, 3.2023333392811946, 8.109688516053835, 6.4731969436644645, 7.593324597729064, 5.713546266431266, 31.233537223239313, 5.035546262758793, 5.371566727894184, 5.949818108341938, 7.564963512748365, 6.896998922355291, 5.66775923955611, 7.326995654183135, 6.759255806150986, 6.562791734570519, 5.779732212364291, 4.309325246228433, 5.1728627614747165, 4.5081563220188565, 4.914804327299553, 5.139354252179462, 5.246848901267857, 5.459409076282856, 8.837789571577261, 5.768099134583211, 4.168917183276448, 4.4090612208099245, 4.703047218728415, 5.251909953729756, 3.257468346220334, 7.474357826475114, 4.015037470040375, 8.490568151513163, 5.2356832405824525, 3.954716684954216, 2.755226279203541, 4.424305978039673, 5.7783232533945545, 6.711506441042078, 101.53226107226112, 4.505402412328188, 4.641202650068557, 5.3755376587169215, 5.378011831802958, 8.086865480702846, 4.509472197117966, 4.244326561475575, 4.549463818222691, 7.064043631846368, 7.624659355391141, 6.715453629338648, 4.285892043265806, 5.140921636117781, 5.722480038108939, 4.4316825785977825, 6.672457218760285, 5.221174064395486, 7.7289016079972885, 5.117519343389709, 5.085888681695087, 9.908871605867915, 6.492965751028469, 5.857626038640993, 4.393384519093164, 8.149756463839465, 4.508163703538417, 7.959069522007447, 4.609728057714577, 6.21232057658441, 6.641920923192055, 5.557134203402187, 7.226187763789337, 6.803030317777596, 5.8446426806611935, 7.5387835201352855, 4.632116512604557, 7.082377042789908, 6.1345409331119995, 4.95517756262347, 4.443417670497044, 4.40808625729068, 5.479645868058717, 6.476509143986676, 7.753245870473614, 4.958875905345539, 5.101704618231828, 4.387973110861878, 3.4338394545934197, 4.255888112168871, 3.5664308973541066, 5.64756921443589, 5.303330958181509, 5.104092334622829, 3.814852764478822, 6.304880375817015, 4.028467707785796, 3.8778303549151083, 221.94316666666677, 226.35750000000013, 181.02816666666678, 174.81519841269852, 160.8590555555556, 143.1420380730381, 3.5976602834860114, 4.887583402451307, 3.262649271666266, 3.456639073231192, 3.3397377463592783, 3.3560493356512935, 4.027482449216827, 3.5627898582889075, 3.6836495710485244, 3.1473042897035044, 3.3617779103929792, 2.9959943600074457, 3.240958497595118, 3.188753568873098, 2.419623082960103, 5.268171361282044, 3.68181178743375, 5.675517109894987, 9.450974863104538, 9.099053554181955, 6.067956394133581, 3.7809555089861613, 6.437189000577782, 3.9528630450434035, 6.552443060763108, 10.34697484063466, 6.593607783644395, 4.4000849588271524, 4.260654738936517, 4.053546721829861, 5.861545236776798, 4.822270026123517, 8.086581597434419, 12.568520348166505, 5.17746873106399, 7.033190476407709, 3.6468225155001286, 4.242386929208355, 4.083419123536025, 3.8746554180768134, 4.751771648931759, 5.712602443694162, 9.5372516043142, 3.588164889608072, 4.927782465900114, 5.0739270801204945, 6.5295982226827425, 4.4214541936355936, 6.217462457142907, 8.809570534102702, 5.694816729186258, 5.548174023273038, 7.455845386278406, 7.4185648143409, 6.040314550992807, 7.1739153874838495, 5.688261969163595, 4.893238293812932, 4.807988471885125, 3.758373879857993, 4.923393695259479, 4.720300033791359, 4.376867513617876, 5.601276191679953, 4.154056172178196, 7.136216709584937, 5.0772387699607195, 4.589627568916857, 5.541504276751689, 5.74202711335971, 5.162954488625847, 5.075874429536846, 3.640937150259763, 2.9921403080578606, 3.122080057961025, 3.865562800195128, 6.238331977796354, 3.7786217300339735, 3.4892119121261937, 4.195810190508626, 4.512708574635114, 3.2191225211460353, 3.057808213099567, 3.404069210548294, 2.947127581667707, 3.6051144899036056, 3.8143398345607102, 3.4380568084389425, 3.6729517021489406, 3.8718481353123777, 3.3384583022493497, 3.8245291779242314, 3.2978838674739075, 3.2348677034009534, 2.7707462209890807, 3.0726238043311658, 4.601016617174159, 5.365962252049741, 3.2642634003765485, 3.122615429279102, 7.716511653770846, 5.827742658500167, 4.5399991479979445, 3.0417547107572527, 4.3265519706278175, 4.382963910116796, 3.014227734587631, 4.141959883723813, 5.312283028967911, 5.581958448403267, 5.96473945662181, 3.2079745938818296, 3.384029075999236, 3.1018064504143377, 3.5897722787329633, 3.2563215743987244, 3.6007880694218257, 19.60445270452413, 2.999198201120002, 3.248467803040732, 2.867732152592248, 3.03075700988954, 5.321366312525098, 10.37530824997575, 6.320811367637184, 6.409307935653578, 5.69051913404231, 3.4037589789384617, 3.4995002007964575, 2.9745748659503533, 4.494500435730674, 2.2994951676566378, 7.162423574047884, 4.847708602024715, 5.619251287782694, 5.478394806360853, 5.002260669869951, 6.3578919884463385, 4.454090767416599, 2.492528913287987, 3.6450534127204812, 7.011689369075222, 5.505608102084136, 5.5609450360942665, 5.208829895156286, 5.984757279246182, 32.9432371384552, 36.36598558372894, 26.519188953733234, 47.223461445893044, 20.45614755317306, 40.51701247800303, 43.775863223405025, 30.457056651788438, 24.705218887552242, 25.02825161401271, 28.89859725093018, 27.532603214536053, 23.57753543327386, 136.03431277056276, 19.936884705947946, 12.623338800547916, 12.914601151935898, 18.873144233601952, 15.201360975230594, 12.807388539205819, 22.065438766867576, 16.737837517018423, 15.12938662474893, 19.413855781736075, 17.535640251645695, 16.156048050029653, 12.228974274665262, 8.169775520536595, 16.871438409781284, 13.99469529998882, 16.365320519212815, 15.835266764429944, 15.865360845379076, 13.293093309987501, 15.468496375697653, 11.64885347289618, 15.525930591878513, 11.247816230290141, 13.696238273179258, 11.052913342577435, 18.54925637323219, 9.92586977146489, 9.573547125101971, 18.913586002948524, 10.9616194384665, 7.583743958077912, 13.107355208309857, 9.700014329204345, 18.02640134449729, 15.323831167485446, 12.720181838811813, 4.6650984243469615, 5.80826003203835, 5.0187078479311955, 4.8032352511622385, 7.641506266619416, 8.244249359747878, 6.807488423056612, 4.735410718237729, 5.3093176539588685, 4.387236570310225, 4.670684858677268, 5.599506641200821, 4.6243131082482485, 5.4222647657714855, 5.572492772271009, 4.301614691093764, 4.235454287359457, 4.712564723018225, 7.67291047484507, 6.186749685611261, 4.696182351252307, 5.409922512886487, 8.680176516869553, 7.70359818975167, 4.8745516569181015, 5.969100771249529, 3.9282811242037066, 4.080629305918835, 4.342392640087377, 5.832576534181942, 8.627520747542453, 8.391242354821959, 6.67714682897467, 7.875283082974259, 8.09330706229779, 7.118059624046741, 6.443993201478765, 11.180882596199138, 7.463413825278657, 7.089018328028873, 4.432840963634259, 8.710797285436355, 9.23190720012279, 5.171260726196079, 6.220365921004284, 16.105032829368476, 7.900763011906418, 8.176824261842865, 4.862510208185426, 8.534180894114352, 5.385853141980466, 5.5737653965524006, 7.641952172405183, 3.983516866880059, 8.705419901317315, 2.9720609206946, 4.781971279449901, 6.092250187445486, 9.128095423671269, 5.761974528248407, 7.426135842542855, 4.833661511265938, 7.416538804196535, 7.488437144369765, 7.19272009654708, 5.602015771653689, 6.106062237617905, 6.769945934230228, 5.61923842672157, 4.9463288174208895, 4.735095659991153, 5.401678257493035, 4.7973375555484665, 5.936862003096092, 5.437768369493108, 5.875029680440486, 6.8138081134862, 5.880355942228313, 6.146553909960866, 7.528385170863073, 4.824795999661771, 4.699075744621269, 5.273136070425795, 6.047741060964877, 20.432511003720947, 5.162193778587399, 5.240935924924238, 5.582313602120557, 5.8420922998967635, 6.658120978875509, 6.484110896550633, 5.821419436753962, 7.0641928088076, 7.73807292313412, 5.246387296703885, 6.276157755154419, 6.737488424892651, 9.750721585803765, 5.37074748058095, 6.853384102281252, 7.133054820555293, 3.8048333382884705, 6.578483986398816, 5.550644660519988, 4.8148033351363235, 5.751321514159929, 6.5472865025091105, 5.609631131569292, 5.986626670411301, 5.982581591389333, 4.991010785587278, 9.193596152184947, 6.874580773383665, 9.607104459708305, 4.994208089439109, 6.293915193912415, 5.203900761900552, 6.627536644551854, 8.739905888136343, 5.666783821481768, 8.445364420757343, 5.789416089802685, 5.718683650814087, 4.254886146086638, 7.756727084666912, 6.335728273687423, 113.80340631707475, 228.8238744588747, 218.70545454545473, 179.8617857142858, 173.5766666666667, 154.64733333333334, 84.25355879496321, 7.030623394216796, 5.11897097727147, 6.06765581812945, 10.204211285195838, 5.885230377888406, 6.351067560143754, 6.007427363501885, 6.80631676316368, 5.970164014259195, 10.600050577597258, 8.070777890436224, 4.606459128071155, 9.944122285909827, 4.686105295758665, 6.482236293799896, 4.368393741387879, 5.283264425934961, 6.002400038801354, 4.180103557467164, 4.080218730556763, 6.441387343370433, 7.442189399127445, 7.319568507632937, 5.060384574961323, 6.589299577626785, 14.289241271672278, 5.8688678960297604, 5.367504804650483, 4.255733359521195, 5.675067188033582, 3.2051203186132353, 4.692528043292103, 5.554990610644686, 6.34066576802616, 5.501410680018846, 4.967691197219813, 6.930114771901689, 5.229721638853527, 5.564334176398098, 5.410569095350478, 4.529986956864591, 4.403300151711581, 4.759731180778725, 3.8647711922423826, 4.52486865057547, 4.735425311893816, 4.3766034558610825, 5.376900842334256, 4.598131294879514, 4.918490029782868, 6.8371626596129795, 4.872169305513437, 4.684251242900676, 3.900512214229233, 5.996606557125084, 8.125151359367539, 5.566181711213374, 6.706634458649089, 10.850682954591893, 6.714473010399906, 7.331497413578059, 11.67780166028143, 9.67575322696743, 6.061205995232639, 11.478172696462309, 2.8375823568536784, 7.2203224357780496, 5.827028671733267, 10.34326759433489, 4.613139081243259, 5.600291476154875, 128.48646356421358, 5.431000942003862, 5.252513633446825, 6.459847890055741, 7.054729151679627, 7.181252791962743, 7.020181744535614, 9.149252142468331, 7.202210062684409, 5.289929895431647, 4.978751045657459, 5.1388747450026955, 9.244788349370854, 5.821791588399578, 6.332825897812735, 8.065304498284418, 5.623134671978156, 5.606629774563818, 5.959237434979469, 11.578071332882597, 15.861222367167823, 6.35393810998111, 9.708331144289511, 6.086696291441945, 6.60053741394559, 54.515837398562795, 15.722434045737577, 10.008315374023312, 8.871021522689247, 21.624317628878106, 5.510329519067824, 32.98018634539461, 6.5999589321865955, 7.008401906117017, 4.1099600045486335, 14.444457634734126, 6.976358128572093, 6.592256761786417, 4.56624033723737, 5.016476183002307, 5.275973886626345, 5.35416504193835, 5.0154421733598085, 7.643538606180645, 6.426146969627452, 70.9972372994873, 4.944319241953642, 4.254748914038041, 4.017000491954552, 6.44844498867864, 7.206294774953469, 6.101646891772082, 7.653781086698148, 4.665751861402859, 6.58556643054661, 5.124590487527063, 6.566412057987424, 4.298708348059356, 3.9596742948064167, 3.6421459858208105, 7.20798796444913, 4.07718460824313, 6.46364410921741, 4.465138275249043, 5.879813150340306, 5.729058121734161, 4.879975242683147, 5.330568246724576, 4.727129096983263, 4.848036166386231, 5.181462852533911, 6.186087822947503, 4.85524473846445, 4.769768375894187, 3.8615481043443918, 3.0964197658115866, 5.617317189252712, 6.544208296224914, 4.72165616252538, 5.663674226215649, 5.151223525665638, 6.844958460518033, 4.6606074862637366, 4.836656592795673, 5.835568968476858, 41.70920706123569, 4.767507378784265, 7.818055897959608, 4.005250282176474, 3.763766359618647, 4.355001502474292, 4.8969936115093535, 5.332185065415433, 4.8338121738424675, 4.443237484385046, 4.178636084601197, 4.478867207700504, 5.230675826560404, 4.86893144603137, 5.014008311882265, 3.9752538379863585, 4.677860514738256, 4.433250031182235, 4.008829351110571, 4.792801804284789, 5.780030247779091, 4.086399741558739, 4.436430833005144, 3.871321992353297, 5.085489331037448, 4.005438109263738, 6.2592342729710335, 5.807582598757327, 4.713140096652398, 2.7267060487149677, 4.175702773840273, 2.9905042544548923, 6.167552621710821, 7.203140746969696, 5.013685769078192, 32.1875041825278, 6.940993693927512, 4.479328216611605, 6.402351834727751, 5.1451157789810695, 2.7965580965085053, 7.320230125431492, 5.033472190450266, 4.0344106435058835, 6.0311233765278764, 4.908887522951813, 4.122736115502366, 4.721776054478353, 5.110335422566141, 5.457618141563391, 5.75670224040943, 14.886885463878246, 10.221891437058687, 7.813015729211129, 8.2715536339262, 4.811977618422307, 4.869194728365406, 7.9011026794363595, 9.046350981968367, 4.404884700885976, 7.743818024916072, 4.134901942672659, 6.5317586107045855, 4.895086314701115, 6.247884759958221, 5.037790118606422, 5.0859762237638355, 4.664874368094808, 2.4733913530990366, 3.797824852441488, 7.2911169200458685, 3.1927109719170383, 4.329637119775794, 4.469469560493093, 151.80679166666664, 4.7499367714751255, 6.1767339798406935, 4.416326012580518, 5.2695722177955, 8.047562555431387, 4.431262565263395, 5.249558983157615, 4.577808670715448, 6.407353709939479, 4.972916468712027, 7.802963965783831, 3.8860603333858834, 3.928728780339955, 3.6769457069605833, 5.425274564468319, 3.9902681004521807, 8.594185420061525, 5.285789325433516, 4.827162128381098, 5.237624604302334, 4.215993039482868, 4.598739204843459, 5.402611484467485, 6.671780950016793, 5.030508424912956, 4.686833788599542, 4.162046282549573, 5.522113135966277, 3.629783194609431, 6.305956427880355, 5.409909120016655, 5.139258186361698, 5.827743123593672, 3.6918481176852085, 4.139091932815936, 5.388556533656358, 4.289286030062015, 3.4625849116503202, 3.3636027729364186, 3.437616390122559, 3.6943902811799836, 3.286999923280424, 3.907688532216298, 3.912678082613576, 3.7650547140830746, 3.7166117300415635, 4.241771708412309, 3.3134866392162055, 16.480731141101415, 3.7120814983911408, 3.502942580881363, 4.333483640989162, 4.348967293415747, 3.5224189300967175, 4.366389810529792, 4.005746168390999, 3.416781106488308, 3.1141564846127494, 2.925638543580092, 3.1571328648828407, 4.741723956800506, 3.311316758629223, 3.9040029512762966, 4.417526151247758, 3.9516035421129945, 2.9713646739563107, 4.2613893980050985, 3.0225042084584923, 3.852412736177483, 4.82234623475484, 4.6771850667963175, 7.2064289554480006, 8.451851693325798, 5.378651714349072, 10.378371153611406, 8.591846990337334, 8.628776768114083, 7.450583564783365, 7.951145130557014, 8.608923572731879, 16.38713260606374, 11.295415933138566, 10.131944488060856, 7.267458124548903, 9.966697921253065, 7.644225146452233, 6.824782137039566, 7.291170093238506, 7.345905891781853, 7.227252315568842, 6.341705869734229, 5.186770810346664, 8.177501166088557, 11.143009661358514, 7.045935039819131, 5.823058390619455, 8.230306748717004, 6.323413163783719, 13.992886626374753, 5.426350286828656, 5.89685412943534, 5.626669744701722, 6.455971261087143, 6.586258555782774, 7.073786775889847, 5.117954665304739, 7.197341362589045, 6.742441778672439, 7.218528026328704, 4.9720180457408345, 5.06067986044219, 12.372573547400428, 11.787884617450242, 9.471721328854983, 6.896140283671081, 9.837847335632839, 5.944317504981653, 6.771258342057394, 8.971725246958941, 7.955791815132692, 4.820432389754627, 11.967569401248786, 13.079975246263096, 6.5813124687873845, 6.726533531061057, 6.836431700029519, 6.920583377506266, 8.814982227333777, 8.897623800324572, 8.421348478544118, 13.567743988055893, 16.213814339915977, 7.5981070393279415, 20.559047937714894, 10.529720567433506, 7.89163459494797, 7.204729947803644, 8.353697321835694, 6.434465401552552, 6.539655086789874, 12.279861731272286, 5.1666505155780404, 5.295889304480655, 5.944718003322571, 4.145790071475841, 5.808263920013532, 3.719977460310492, 3.356935851491742, 4.641838317102404, 5.507657754439067, 3.408166930590262, 5.433240607016858, 6.072029820566021, 7.137200625428808, 7.475588840278538, 8.798189912805457, 7.263185565684637, 6.53674557682283, 7.838920815189002, 5.934159590354037, 7.962016591515269, 6.9974606552769485, 7.327765271677789, 9.565263116518993, 8.117502670179539, 6.550459363693736, 6.969116542775713, 6.330751978892521, 5.27681953546291, 6.878871714781645, 7.75957010760448, 5.212777184593145, 5.818471122868557, 29.17933267942936, 5.491198367001468, 6.145534714281291, 7.542096160444845, 9.475012348742567, 7.570856502946661, 7.728812344226875, 5.420917515548322, 6.5089045202296445, 7.942533341111784, 8.181560232395094, 8.309765634975992, 8.630290358394548, 7.327637146325995, 6.828941333544249, 5.879913322385453, 10.800569276473654, 9.378383133335527, 9.957710870677726, 6.921627806017991, 7.489791972628446, 5.8552076368492205, 6.8399297181239325, 6.3549898299788, 6.688408327153296, 12.059044615546984, 5.748941440951698, 6.884646229756494, 9.400261679936984, 6.052826108887397, 7.187975520358613, 4.940287376699257, 5.427202175834721, 4.661110017144526, 7.138958882096568, 5.730438432438063, 8.028055628960143, 20.909747695561542, 9.28433670777088, 8.641705775732527, 6.244071519947334, 20.568172934992482, 5.187876218499282, 6.348197552297058, 7.364689388288148, 10.912815053361573, 23.431347178464698, 7.826647777077516, 14.80460131114221, 6.060105235732271, 9.537434712428098, 5.474382703171666, 6.140056764849204, 4.179456189663782, 20.634122970460215, 12.774240214941466, 4.827698091198126, 6.93240828824991, 6.434585204167808, 5.939755052440748, 4.898306294793826, 6.162771302106341, 14.172903971460471, 168.87063393421892, 237.37000000000026, 199.07200000000014, 179.67333333333337, 184.6490000000001, 163.80233333333337, 130.4204372405373, 19.46801316117082, 15.192308756343374, 34.20477756957798, 7.372710324977523, 8.148285913326967, 6.15012854479911, 4.340034819359692, 4.689536482827476, 5.402717808388374, 5.872866609012086, 4.102834987651392, 8.541709311429534, 6.849109348320388, 5.090925582995589, 5.350790231382896, 4.9847414641041565, 6.353496366590833, 4.164712311981808, 4.993348809751632, 5.072246832953704, 5.227149205373926, 7.428399182988344, 4.995780169172565, 4.984792859662108, 4.680655846065624, 6.559046443108163, 6.024103546906881, 4.273367924699345, 4.944780843202242, 4.418063207027579, 4.758902528412509, 4.407852152144423, 4.307244378520254, 3.760777003213636, 5.143770190081977, 9.73445764297778, 6.9474394611917125, 7.4888280316313764, 8.233662165597716, 5.60401733406029, 12.550582378915623, 14.942956773566799, 23.174882832647224, 20.02162097824465, 23.66280503191029, 16.403792124542125, 17.15405504686043, 22.610207935394556, 17.010586910472426, 20.290111762970575, 20.03127490668623, 4.956097746282726, 4.918310550839017, 3.8824843663219792, 3.7425728822219786, 6.564283382486792, 3.9803420946978934, 4.5363764099171195, 7.514933982294955, 5.678323321412732, 4.735698087492399, 5.543298153827893, 4.302258542041373, 20.048797266903154, 3.6578781198583656, 4.562044214387566, 6.086009839396536, 6.949717664221121, 5.9569980821323405, 4.791959668225559, 5.683663481030626, 3.0383386401806747, 4.734706626750323, 5.3884728535232345, 4.267781092035992, 3.025192794714916, 3.0069229104806485, 3.4920541283128514, 2.803092424329961, 3.449125718833545, 4.047419820000714, 3.495211617900202, 3.137751951323503, 4.078090606199659, 4.077435505060176, 5.2160359937424, 4.8074115488243345, 4.604037685343379, 4.996908906650311, 4.539803828104704, 3.5338922775672184, 4.823305868933567, 4.228161377852135, 3.9129818364529103, 10.588495373877244, 5.272565738889914, 7.798209848286381, 5.436529674226188, 5.066943325612405, 7.787481774822503, 10.191956840917008, 35.07420451744297, 26.566789050023143, 20.074649774725525, 11.733322219449764, 6.772244452058734, 9.047012164329804, 7.598105724768269, 80.38359488212099, 5.790025754236513, 6.11193515748542, 7.911940128458676, 7.04417085404567, 5.415872510086622, 6.15011516603868, 5.907509201815567, 9.901025446954954, 7.014242574992935, 7.898658887767696, 19.625230630850997, 5.6190295890363515, 8.724152538964779, 13.79839626669689, 7.07189342182275, 14.908638453973465, 10.00707229609724, 8.628499334176121, 9.086245736995089, 13.02640797936521, 15.811316803455282, 14.36100254240862, 7.123728747433187, 6.8094696471805305, 6.80274296212756, 29.473624470345495, 15.56606551266405, 7.078460954121151, 6.286097749191182, 12.628836460727305, 10.972910341827081, 11.337576300187877, 7.422547695231272, 8.680527590503962, 6.889134126599722, 14.961641388964562, 5.150865483309711, 6.967325186233745, 9.387068315114968, 5.75737566739241, 6.781292729905152, 4.69866902216877, 7.959441085432782, 8.57698861669268, 7.41365315761497, 5.453339832300251, 6.829218190523225, 6.003049986883954, 5.787279372322578, 8.104651324118597, 7.035932273619949, 6.960746972199602, 6.190104177474828, 5.9656362159819185, 5.587974267291152, 5.3952485672350265, 5.197358799521997, 6.308841168814804, 5.770520133765092, 5.666563787417696, 5.093133769213094, 5.620794216200692, 9.48351513090556, 22.154731319580215, 8.720164931933521, 6.389975210089296, 6.489522864391742, 7.7234483024300875, 5.710480576425025, 6.896474243977068, 5.180801289778272, 7.52683689345378, 4.98790536383273, 8.279486809575708, 6.344842982575445, 6.346708427145821, 6.745636448046193, 4.367145081438637, 6.590269749096828, 4.597364100275982, 5.9114601906893425, 5.453606129566568, 6.310062388520356, 16.37593008385219, 6.8909111783528, 6.541159931285981, 7.579169159506998, 6.611496405315438, 5.696461729995997, 5.368917672172203, 6.402189145161245, 5.447100570432933, 6.681779511838211, 4.8794976690336656, 6.001353602118534, 6.335285287275466, 6.057808551901731, 6.145533480834151, 6.217694757019613, 7.650887840345928, 5.4401990060049075, 6.129073793095342, 5.1257031592254085, 6.292930805002428, 6.633253172305618, 5.363553301783041, 4.867259352477574, 4.433547601958522, 4.531206989778651, 6.425923090973049, 5.396312884886771, 4.468438094370893, 5.7340328755205165, 6.114518945165014, 6.47533299450849, 5.4559618597991975] d1 = pd.Series([s for s in disp]) sorted_d1 = d1.sort_values(ascending=False) N = 361 pred_rrcf = d1 > d1.quantile(0.90) print("Displacement: ", d1.tolist()) # print(metrics.classification_report(true_anomalies, pred_rrcf)) for k in [100, 200, 300, 400]:#, 300, 400]: top_k_real = anomaly_detection.get_top_k_anomalies(sh_vector, k) top_k_disp = anomaly_detection.get_top_k_displacement(sorted_d1, k) anomaly_detection.get_top_k_performance(top_k_real, top_k_disp, true_anomalies, pred_rrcf, N) # # for i in top_k_real: # print("Top K: ", i, " Score: ", d1[i], " Mean: ", median, pred_rrcf[i], true_anomalies[i]) # ''' real = [] for index, row in sh_vector.iterrows(): # real.append(int(row['anom_count'])*0.01) if row['anom_count'] > 5000: # real.append(300) real.append(int(row['anom_count']) * 0.004) # elif row['anom_count'] > 400 and row['anom_count'] < 10000: # # real.append(300) # real.append(int(row['anom_count']) * 0.002) else: real.append(int(row['anom_count'])*0.05) fig, (ax1, ax2, ax3) = plt.subplots(nrows=3, sharex=True, sharey=True, figsize=(10,6)) ax1.plot(real, color='blue', linewidth=0.7) ax1.plot(np.array(disp)*0.5, color='red', linewidth=1) ax1.set_title("SnapSketch", fontweight="bold", fontsize=8) ax1.tick_params(axis='both', labelsize=6) ax2.plot(real, color='blue', linewidth=0.7) ax2.plot(np.array(sl_darpa)*0.5, color='red', linewidth=1) ax2.set_title("SpotLight", fontweight="bold", fontsize=8) ax2.tick_params(axis='both', labelsize=6) ax3.plot(real, color='blue', linewidth=0.7) ax3.plot(np.array(ss_darpa)*0.5, color='red', linewidth=1) ax3.set_title("StreamSpot", fontweight="bold", fontsize=8) ax3.tick_params(axis='both', labelsize=6) plt.xlim([1200, 2600]) plt.ylim([0, 200]) plt.xlabel("Time", fontweight="bold", fontsize=6) plt.ylabel("Anomaly Score", fontweight="bold", fontsize=6) plt.tight_layout() plt.savefig("results/darpaplot.pdf") plt.show() # ''' def visualize_iot(): anomaly_detection = AnomalyDetection() sketch_file = "sketches/iot/dim_32_n_3_k_256p_0.2_l_50p10q5.csv" # sketch_file = "sketches/baseline/splt_IoT_oct1week.csv" # sketch_file = "sketches/baseline/streamspot_iot_1weekfull.csv" sh_vector = anomaly_detection.read_sketch(sketch_file) # sh_vector = sh_vector.sort_values(by='graphid', ascending=False).reset_index() print("Sketch File: ", sketch_file) sh_vector.loc[sh_vector['anom_count'] >= 50, 'anomaly'] = 1 true_anomalies = np.array(sh_vector['anomaly']) # true_anomalies = true_anomalies[256:] # pred_rrcf, disp = anomaly_detection.robust_random_cut(sh_vector) sl_total_hash = [0.0, 1.0000000000000007, 1.5200000000000011, 2.040000000000001, 1.910000000000001, 1.9350000000000012, 2.5449999999999995, 2.315, 2.9499999999999984, 2.7849999999999993, 3.89833333333333, 5.030833333333332, 5.389999999999997, 4.771666666666666, 4.824999999999997, 4.939499999999999, 7.968166666666666, 9.609333333333336, 8.426666666666668, 7.470833333333331, 10.100000000000001, 4.500166666666664, 7.260833333333329, 9.993166666666665, 6.825333333333333, 8.299261904761902, 7.549666666666667, 6.010499999999999, 8.34425, 2.3685277777777767, 7.453452380952375, 2.1427857142857127, 8.840499999999999, 5.5857261904761915, 9.547833333333328, 8.022940476190477, 8.995506854256854, 9.565772727272725, 14.310063852813851, 7.463338744588744, 9.922214285714288, 9.396590187590188, 12.81141666666667, 8.63265512265512, 4.9386277056277015, 2.4788333333333337, 12.741150793650796, 11.34468925518925, 13.031071428571423, 6.072166666666665, 6.815968253968248, 9.753902236652236, 7.688281912531911, 4.579552308802306, 15.257583333333342, 11.915132395382402, 7.997478715728716, 4.340111111111109, 7.981563492063491, 12.520726190476193, 10.64207538539891, 11.881075396825393, 12.839070346320339, 8.382726190476191, 14.908814489432139, 15.040856782106786, 6.970737267634322, 12.792952922077923, 11.989634698634697, 9.868615079365076, 15.096869047619045, 9.771920634920635, 8.824296218487394, 10.162924603174599, 12.123983405483404, 12.502298340548341, 8.35071611721611, 13.67055769230769, 15.885123015873008, 8.421123015873016, 8.837611844996434, 13.695330086580089, 10.84498153806977, 11.131603618603616, 17.294429197994987, 15.36783660783661, 16.86717081529581, 9.54105738705739, 11.565437857464167, 11.044768068887635, 12.045061237008607, 8.569439349539344, 3.9874482227345496, 9.6670439390331, 14.257423478482302, 16.960849927849928, 8.838148064495886, 9.73163816738816, 8.947979765403675, 7.660809736157563, 12.683369641796107, 11.364326479076478, 9.602993626743622, 6.912616766403531, 10.350631493506489, 11.90833531746031, 16.638106060606056, 20.079478687978686, 11.692355477855475, 6.446922327672323, 12.935004828504828, 11.15889274614274, 13.219127261627257, 15.531029390544095, 11.75360858585859, 10.88777564102564, 16.889138213981244, 11.368609231411863, 11.829447607947609, 9.649801976532236, 10.243709235209232, 6.926028215745601, 9.639434038476143, 10.043158730158728, 4.55204355366855, 12.576252261627255, 6.277979797979795, 11.390615911865911, 12.61961718836719, 13.82517892195524, 21.01147075147075, 12.09991388005838, 12.85642850334359, 10.692746312511018, 15.961849583423112, 6.026710127780715, 10.989923397985185, 15.115900706749397, 15.813263824840451, 15.098572798116916, 15.065998994469583, 21.615180293884237, 10.5956392659628, 11.07060025438584, 9.942979229104232, 9.967956655544894, 10.061437368187365, 2.9808877726659047, 20.069607149386563, 5.596657652324716, 9.873494553313902, 11.95747291434056, 7.327986707736705, 7.216033776795284, 12.465970668865017, 17.037541153291148, 12.04810969220837, 10.124884433205256, 9.650198848193426, 16.522870657085164, 14.591295267676342, 10.474009708297185, 20.797863678433632, 30.483203323723068, 12.2685559326388, 9.108504152737696, 12.571273576097102, 12.474292285414963, 7.580120945225744, 9.210636799252919, 13.868046260885658, 18.465385917187398, 14.847394358950147, 14.416545626089203, 8.451540777806645, 11.109228263568241, 10.414479371376816, 13.058494029273916, 15.33862789787761, 8.886395111768175, 15.42907009042729, 9.709224567486178, 14.875602319959093, 11.379371468005676, 12.997856485236223, 6.18236039786816, 18.252653055278053, 13.548163607963529, 15.150259799454071, 14.338007916508975, 13.687778925784366, 13.072724026202382, 14.619345782757547, 24.48042573222234, 15.28612068830722, 20.830274135684515, 14.035039516468776, 11.184922205171638, 11.132730121862796, 12.07848091648633, 15.847068398964295, 11.705474118726125, 9.302641447432853, 14.819597548693134, 16.48310627689304, 13.004734505649786, 3.810410668263627, 23.814508792508253, 10.848103676477027, 11.896245732767033, 14.864325926417623, 12.219535503149057, 7.7718429333640735, 12.516372978553232, 18.025979398285163, 16.111666271066156, 11.967626744714979, 25.13555079328996, 13.713982874684282, 9.244083281097986, 10.942876184321538, 12.662435486074806, 8.48561363360877, 12.85495403289521, 12.787459124836758, 10.043181544644371, 11.630393532327671, 7.222702346468929, 12.09825699382317, 10.765496016062885, 15.183752363370763, 10.550874248584607, 34.589417039329106, 10.991607511299366, 12.923168238950591, 17.649157104760278, 13.517545493511875, 9.989267495348466, 14.964039503640901, 11.654999042741816, 18.446485790321432, 10.993221283216265, 13.583325811275937, 11.386452531293605, 13.798483047410015, 10.382094492939462, 11.549051035502709, 17.545547313775227, 15.78166743683733, 10.98654968185409, 5.319946657022263, 14.434360536063137, 19.65145630071842, 14.517183818546412, 7.44150852477637, 9.104460242956371, 18.562987537935058, 9.292978950823638, 14.501876029835648, 14.282669255555295, 12.566730044003616, 12.830796881398907, 12.467705805932182, 13.643263208524544, 26.582495681551855, 46.24441250809099, 23.268883889760037, 10.962930943400261, 14.768651322439172, 18.154401468196397, 12.176217317098327, 17.47337651480892, 11.725951720103577, 11.7546494822007, 12.331764577983236, 14.653823628271427, 26.687428918322087, 10.853290715547818, 13.864074240936572, 12.753052483300122, 13.942820125109836, 9.516911775663946, 14.02211135597105, 11.473901457218489, 9.545227688103504, 14.260420303022233, 15.649636847286963, 13.457030988903359, 12.794822815399824, 19.778606077810217, 8.845460066209446, 11.045774811958825, 9.894838614739605, 12.376929251309246, 10.324285630720613, 10.280525895156629, 12.079127596912896, 10.52559631892971, 10.660508128586011, 14.962948377116444, 14.716836295370323, 12.49401685451108, 12.258759373431008, 9.96883766797468, 4.929313318614995, 11.629156279835687, 23.354051592500422, 13.165677301710415, 12.191832282068686, 32.56814473469892, 4.513373090882277, 7.6551439411122075, 28.36451590113103, 12.566251035882104, 12.742656796781539, 16.904395757149633, 12.05300624914015, 24.659889238410738, 12.509151785362588, 11.170633023230655, 12.286474831867473, 12.513379554816748, 9.721882093926814, 13.192858275932487, 20.60059683812919, 10.007686387314095, 13.604505433233554, 16.03765165586146, 12.05893128930242, 11.299410883073554, 10.084161427892028, 10.980642123343825, 8.797954981458206, 13.627328535742341, 15.82343459510619, 6.930158757196334, 13.151801215249376, 10.583603793066834, 10.070584266705081, 11.829309903968001, 9.264158145245466, 4.850432813262061, 6.599758156002351, 10.618567496191782, 9.059514010103639, 10.28849660767023, 5.4305259594250765, 11.272307874701797, 11.687286869881735, 11.306620140920911, 2.4928360131855576, 2.50863786341703, 11.168978062602905, 9.48007524748614, 9.660101514108227, 7.64617011634347, 11.397773579035583, 6.440589951178365, 7.586602878584321, 7.934611938545627, 9.212580135549302, 10.31261866146571, 5.7463901383711455, 9.586765946906718, 6.624105032220049, 11.44063267709711, 5.710452360167064, 6.137135992310425, 6.576521687554799, 21.063925943636182, 11.145622612535853, 10.61075568664775, 9.988019618584667, 9.42685399908465, 6.840372372598081, 10.811224792838475, 12.291490979431197, 11.74456146562922, 7.335267460989364, 9.465969223314522, 5.986744492695949, 9.216893216751066, 8.224732170062977, 11.510705016840632, 10.552612333694814, 11.416205394467935, 10.698495684874844, 2.39553546289595, 8.071759612447492, 8.07960221765112, 13.952443253742013, 10.621670520510131, 9.174322137892966, 6.958162959580833, 8.192727585950712, 8.173237865894706, 5.281692359027092, 10.538400147731574, 9.32924395982818, 11.701280692554233, 10.283743962911144, 15.313630421538337, 10.050639936907233, 9.009861977825317, 11.218979328218548, 14.766993329623595, 8.223208942938948, 14.15575037128048, 10.64365460700913, 7.456791416658677, 11.676617619147432, 15.613974729348055, 7.005190409547383, 9.463061484271524, 12.849208718651592, 10.40983462548057, 9.49457316157287, 11.094596681367786, 11.83407450485796, 10.318153582195407, 13.161307384747055, 11.44778238467615, 13.207599345587754, 9.602900725915612, 10.392233989292219, 10.854463262949013, 10.406278453219514, 11.833863626831292, 13.654324287518198, 5.463271860688648, 10.320881647705734, 12.267781294453492, 10.878071238338498, 7.878486890309873, 13.510832897393934, 8.841180189291883, 10.924972643508593, 18.161362993044108, 12.358050242222163, 6.520580025324834, 9.844635556077417, 10.986369602703896, 13.357134602026312, 13.857732674730185, 9.971122745095347, 14.077721590443105, 9.441817242681894, 9.756484692372057, 12.884420957074404, 8.71655585086868, 8.671763996942866, 10.710251197002425, 15.205465670004585, 4.65805932782175, 9.942207327675044, 9.388733620601965, 7.327148109451598, 8.828165653643445, 9.404216824841829, 6.349722880739916, 9.281637570742811, 13.908537657586654, 5.732908034736406, 11.084686592741555, 8.530687011984439, 7.745639297770371, 11.23530196492702, 22.03827021580931, 8.856085975308643, 9.420864704004842, 12.972863326860613, 10.286818810797318, 12.735987996901997, 6.001349506021301, 9.299868447705569, 10.613274101999789, 7.244426347751327, 9.01155893273753, 10.661937989499618, 7.3368609817775035, 13.568204570328296, 11.778216685949738, 9.762850117103655, 11.412395483120097, 16.459773995527442, 14.055422279830823, 8.61316888421957, 10.07474806106169, 5.259957217994107, 16.521317629800215, 8.390046417243948, 19.217554136164296, 17.11236587410929, 12.255366068097622, 13.4819510384782, 12.39565863379864, 12.528073915379235, 13.199982332183607, 15.00016062362778, 11.639750113846416, 17.657362551658377, 10.660504677550614, 17.854977596173445, 12.023951262858226, 10.826938663349026, 9.166500005786864, 9.34642000886033, 7.11394529206144, 7.997552932851012, 9.53297287353516, 11.590545356251756, 11.289757922074152, 12.628311121634828, 11.946383025442623, 16.4780662636958, 9.933129337410028, 11.464189720067207, 5.024517338115369, 8.830315718471752, 11.000010655880748, 9.325105062415242, 15.210630181514023, 20.0249073984683, 13.490197659862215, 33.23413081045201, 75.0253344677052, 31.01527379589795, 31.22920075651472, 44.02157306850319, 20.285046268879537, 54.298922561579026, 15.90723816919783, 11.64977639814105, 14.330469663887433, 7.916505545908438, 14.789737761489135, 11.044608676009265, 11.87709862870956, 14.249511854349597, 8.492633734864528, 9.510131403614123, 10.47878714644488, 13.529614726319531, 11.883770593576754, 11.609850577525238, 13.23566830428326, 15.44184372432791, 10.738355115547499, 9.332409941355364, 22.005092711890498, 11.607092137141723, 11.157643001468337, 16.985597461802197, 8.396475281723225, 12.48326264356571, 11.049412868422976, 3.8747468132819267, 11.389953215755991, 12.880123128072185, 11.841845824172452, 14.780033293274345, 16.962328579463275, 11.57015212875696, 13.22708098748122, 13.78568152721885, 8.531083573649537, 11.860251104470324, 6.928463157819973, 16.740129483517343, 8.914631113717462, 14.130156914980441, 14.317258569775596, 9.198145330855697, 9.054691845283509, 11.498156355681614, 16.96413971399202, 11.792199464289867, 13.09629073431669, 12.996533726548039, 12.77584437288146, 12.302802724088638, 12.450203061850635, 28.53686382223485, 12.041773141604484, 11.552456134999135, 10.068300008778209, 13.723871627132176, 8.077389958242035, 9.246826914469814, 9.540509983232166, 11.244606099536968, 20.81236293116173, 15.305942120114397, 15.718252989787219, 13.991067787510254, 12.284707000271938, 10.973563055722623, 10.46774068414044, 10.12037200360778, 16.87282328292622, 10.564619075448414, 10.227692539683037, 9.472327981730672, 12.751644891768985, 27.555046412138307, 85.43694072598372, 56.08802653127335, 23.66128547551483, 33.17584985478677, 67.28631244989101, 12.61227094463785, 14.726268586167194, 16.62931560481255, 14.911359213563834, 11.958171732479368, 13.71133988356006, 2.55964288748879, 9.858324417741642, 9.47145194266073, 10.480145894185153, 9.554108891465381, 15.2138744296639, 9.893545937803518, 11.440610203225516, 8.592703986782544, 8.436543701836646, 20.381453223216223, 12.42665063923577, 9.44086150063831, 9.01100650386427, 3.0216299624342637, 9.022816297089504, 11.266413968980688, 12.693713110209814, 11.998893112233928, 11.414920363600146, 11.411524474780858, 11.66297193943763, 10.624832217660124, 11.270443817199018, 8.633185310821471, 12.27232295989864, 8.629654441263881, 12.55155420358777, 7.674264325987024, 4.215214326381778, 8.519432384746139, 3.704289945681638, 9.692423464520962, 20.24128214232357, 9.495355738295645, 8.461117119375462, 8.222519601804896, 6.270856448576026, 12.59352119231331, 15.829601870111444, 10.997316851406064, 15.246424336514734, 8.743985116992656, 10.38077871808277, 12.024906005431983, 11.732132098650752, 16.23377850105429, 10.721177361666149, 11.713611435098143, 12.065810101238968, 7.987493397841775, 14.204145924938489, 17.37376384322795, 7.358973278767522, 8.486224692763733, 18.564958427964825, 5.3939599534836224, 11.81006931662247, 19.911618649311446, 18.92490889838332, 13.864733136772134, 7.756023664578203, 10.17245303827975, 6.191196639716306, 22.439839636357057, 9.547548205628994, 7.616376983168529, 10.545752049057567, 28.03242138246806, 27.615630546340377, 55.25072282299593, 26.653438808372428, 40.8030528115675, 26.99840375359826, 26.58551779925776, 19.072742320165997, 10.911188699926898, 18.983421058107115, 5.707294429928984, 11.719706413926634, 7.200155883029397, 9.753815121658969, 7.760802577815285, 10.225538803259003, 8.410190859542388, 12.597861001448992, 12.322261967213501, 9.412881610590155, 10.591368148203095, 9.307222284414934, 9.275058521310003, 10.877918248619341, 8.873287581691427, 11.622832776520559, 2.2972048310697364, 10.721397069063094, 10.712551742894904, 17.29946418770504, 9.77205309930633, 6.6032919191413395, 12.664291025367836, 8.179457867415085, 10.999388323673232, 8.748686108100264, 14.779691295928245, 23.767535031025776, 8.400612048183028, 11.688073181228612, 6.707778367577727, 8.065586056004456, 11.810596783767826, 9.839535401564802, 9.998592883013742, 10.887595954656922, 5.546388039877302, 4.7019514492062475, 7.157581608597647, 9.477400708958843, 79.07143742606131, 11.579561828379166, 23.068051725848683, 10.335433310668062, 11.943100068811074, 31.242094982066845, 16.476464393015306, 14.08573439207651, 15.626899921161957, 11.06965900588919, 12.546397174735468, 15.739943733465179, 12.186284888065892, 9.887617595661508, 13.33431800175266, 16.10416728446205, 9.451181263954346, 8.27149824593778, 21.198642001900733, 8.963143497145953, 7.625561564185009, 9.307458466500409, 12.832501150221425, 5.29953205877145, 8.569069883156045, 11.8731079512183, 9.485602635711821, 11.36374639703043, 9.75355041754817, 9.818793239425862, 42.242155993493576, 42.12550607194718, 19.85463445924191, 41.69992170397308, 49.65706037873376, 32.094373003024806, 50.5674389875765, 11.572140307317477, 35.94786938885848, 22.428263616092945, 14.21004148185271, 16.97743088771523, 10.63295651559533, 8.476380020972497, 14.298210604263792, 26.108815076992347, 8.800214306790354, 8.54343988155443, 15.656337390348074, 9.790029827738332, 17.55482890289641, 55.63208723517275, 25.304391616553378, 30.448544386992562, 44.67264921003588, 42.37079523599038, 57.59386644331612, 34.09543299823181, 46.49903933526256, 56.29644838330991, 18.342185931617966, 10.847707213155651, 6.912663043004626, 9.420350398623494, 12.251861685870152, 12.387283426622963, 11.480437068544836, 9.478147349656107, 5.747733158348272, 14.94810415684509, 9.105844378458787, 11.247377253541368, 14.833392695567772, 15.43024120115103, 16.41437726557928, 9.434299847655343, 7.473542376229151, 9.399880985575134, 8.189440673520098, 8.15620428885889, 7.250890301003027, 9.997589370802663, 10.460400534006189, 18.961104838021978, 21.887336242551164, 14.1837123486313, 22.46064138943313, 13.237509067908654, 16.9035396883924, 8.86644834742522, 6.748358922990607, 5.301369310338192, 12.134390691329628, 18.268738250805495, 12.161826494553592, 9.081780201089575, 9.788566428664312, 12.939148969152335, 11.966304679766235, 9.934487074386507, 11.497835499420463, 9.810646839552307, 5.179769682603407, 3.0862832558634112, 12.199223205142166, 12.43256467628772, 17.21826926556528, 14.190450409680782, 10.436320968417379, 15.097713691372325, 15.138523126650844, 35.10536454580578, 14.928237484973861, 44.936643010160566, 29.19132468704932, 21.353550002048554, 45.03816020121645, 25.72123265374209, 48.35668205839569, 28.71177935198793, 21.184069953876907, 7.608972210493171, 11.644207152355456, 8.836786736549143, 10.809013757851572, 6.406714987086453, 9.941446392014777, 9.923733410253865, 9.52855018761934, 21.32837142712593, 18.448693508585414, 49.0007779934849, 25.072782831315887, 40.33677734552179, 59.43382924767871, 18.76055065221966, 59.47768012266149, 36.801835615221755, 13.645110266914564, 40.15216121588422, 25.234705159076153, 14.575482485078231, 15.161602694037986, 11.768954745039634, 7.534615252899597, 4.476779593522007, 9.64264025793429, 4.531375882545016, 5.071432993248041, 10.008121520979254, 11.67578043917064, 10.198845145023963, 11.930055920704056, 2.0470801782817105, 18.58721672844744, 10.193976989091421, 16.01827389235737, 14.726572007706961, 9.224703167947723, 13.329154842921094, 10.101640801714659, 6.4159289950956016, 8.00278160321451, 10.961329531779604, 12.325953590193011, 7.324716916787293, 11.143090174287726, 3.7000768173349625, 11.628235996904799, 12.62837822706477, 12.257716675613239, 16.356627806412035, 14.520980640649956, 2.734867661234802, 19.44154748164008, 9.682755385052763, 9.340237032783447, 9.195892540823461, 9.657217961759734, 7.967744479032483, 13.779699775664923, 8.127489600351431, 9.691733154701886, 8.375412645099724, 15.848805173817684, 10.83653247208467, 9.48236426430346, 29.24069026613426, 10.430374302705449, 14.279070585079873, 12.71054879883862, 13.203152562107471, 13.055323369370123, 10.632632319851117, 9.999948153318295, 10.129180147885494, 9.686826088709504, 20.010112377167758, 10.188694255380932, 8.167352823141314, 4.226160502702051, 7.857052628852626, 12.518602922457685, 10.040388875082467, 9.0993779751738, 8.353467609411098, 11.37305977063169, 10.68874262918257, 8.474749852208916, 11.431343553288325, 12.642709968796089, 17.29565938041951, 37.86892133961341, 42.52991164923138, 31.721290495155227, 26.958500190766987, 57.756648848620145, 34.319776927849, 12.572286746279671, 48.8868583165974, 29.04856054096985, 12.495747295162667, 8.92605139550732, 13.612335407668573, 8.291271388984951, 12.880729885854887, 8.7385970385369, 9.136595906675227, 8.996457101577633, 11.599848364571912, 12.148210959621187, 10.593175094141037, 11.822205484864643, 10.260179804050715, 7.476428098221652, 9.243554626678694, 5.971188626326996, 8.438320749581504, 9.038204718667318, 7.592853308654381, 9.443205211793346, 9.415272884603267, 9.21015751493764, 14.715711938082647, 8.809243279421642, 11.443958097758104, 15.109433318025475, 10.615716429552366, 20.8425177660208, 10.738918231970315, 15.60779304178049, 13.033279961217449, 18.14630519199806, 9.991202307561691, 10.493783738691308, 13.75395940269465, 8.139240488514908, 5.391043584616507, 8.854581034455267, 15.076915462921418, 6.8337573020195155, 9.309649750696497, 11.59420908086295, 14.821698168183506, 8.53176853274072, 14.594605542475398, 17.764232354044612, 10.520843844409766, 8.29931952764432, 16.647819875740304, 21.753349252254516, 26.50779873905265, 27.639945065278635, 35.378484524978845, 10.439138396638176, 21.78549259645658, 32.91527816732556, 25.41589626587526, 18.33430106400755, 19.128757606150167, 11.259983285263356, 6.128511343929125, 17.190603568653565, 5.414187728387629, 6.234277420807604, 11.409646240254633, 8.929587218897337, 7.330260351460412, 10.057826323353154, 7.325317278400685, 8.296136780914036, 35.07532126679215, 47.75676739145651, 20.061011660067173, 29.07869056776557, 12.286912237709869, 17.79063144989261, 35.13700553742618, 32.395439504418405, 30.06375963179912, 24.966525240520944, 10.411438135024756, 17.80966109059937, 24.96868432082444, 17.850658805679966, 8.701362568665887, 17.17209062445795, 10.690301152035223, 8.505027215030692, 15.323745517980019, 9.524575926704188, 11.088877763232059, 4.654166511663805, 13.337684569968994, 9.387131221908934, 7.7840455006126605, 20.819099852319635, 10.047559014028241, 11.570669937806851, 8.951084471276046, 30.291428995592106, 11.147046275846543, 10.878518039470997, 8.865741356924545, 9.714071662449674, 16.350507591303394, 11.768504900136586, 12.023717351932655, 9.431985416281849, 10.297862272658035, 15.543534117198222, 8.388778471856385, 11.352650695748922, 11.530332589932456, 16.117139814975094, 11.469853071379061, 10.424449862197408, 12.550863285950417, 10.06578790743452, 12.982459125051625, 9.376998199305499, 7.017306783948583, 13.520107035150625, 10.956348155732309, 14.359301756463106, 19.24877070507856, 11.035010260975822, 10.869696463217215, 10.456703530650502, 9.355962602821574, 8.481865673787045, 58.730948297073304, 29.898766101983327, 62.702440598904396, 12.057536822779287, 46.132534321575, 12.597495393210698, 26.013877278673654, 34.77110769500179, 19.402699182036535, 11.815128355559825, 77.45911170012961, 9.173167155092218, 8.167313389077131, 10.273886948407267, 8.460925557091805, 4.622876837275131, 6.680302454188383, 11.495958675776489, 12.455248119912774, 11.252386817674644, 28.355392605266374, 23.252593083374958, 52.89941311600451, 21.733251752433176, 30.585607343059035, 33.48687539554536, 35.80813721375802, 38.97634247303917, 12.050842920556281, 15.444060862172185, 10.565201314404762, 9.37062996138208, 11.15532985493435, 16.494562248349688, 10.856467584618777, 9.738164225805917, 9.176111614297888, 10.371336064646432, 13.50480741932372, 9.75272560656801, 10.56695374371968, 8.743306901512627, 14.639318433340241, 9.390278306054537, 10.249168094382997, 12.810525093539244, 7.910855871809502, 14.939005494314108, 17.16216283797112, 11.71802379099082, 11.747328783229763, 15.18715257857237, 11.00672361854137, 11.260871554906695, 13.133125724008035, 8.693542293116018, 9.168801617495262, 9.546469403395259, 15.7942969648582, 12.65884689069296, 18.363029729939353, 10.8966401151524, 9.326177595300715, 11.508530346030367, 6.4279469601096455, 12.169892558778702, 6.010409897988566, 11.71946477956982, 10.516128590330625, 22.680305030323996, 10.255743119928555, 13.171439367933168, 11.085276465208159, 4.321280077588897, 15.051086327463958, 11.29047521628922, 11.7378658454936, 9.820539243232258, 12.133170463955748, 11.514819964785397, 10.33206480247603, 31.974324578531647, 30.5919353652933, 23.39356478157747, 29.1794579984261, 29.21069358306514, 9.811869336309883, 55.66661433532098, 22.39457967327587, 23.102091161946753, 10.802244666484734, 8.382024812511853, 12.99985505521696, 8.968866648956608, 10.9306541887969, 9.532852658984988, 8.982779702958295, 7.609211082769608, 10.521039630993855, 10.07583021753626, 14.86505069505394, 11.523975810310965, 11.508170207573317, 9.256630130345615, 9.98556947193008, 6.02017043286189, 7.8277186938844, 7.14337394742179, 8.48379748843902, 8.037054938948167, 6.959363880185227, 12.870451256494745, 10.55752960069663, 13.293462090743635, 9.539745289588659, 9.048791313797652, 11.01451698692028, 6.6451355729358035, 18.787335954192958, 8.013096355927656, 9.588474877660229, 12.063321624558506, 11.552637779903518, 9.948197856974472, 17.018380609169178, 8.494011717003623, 12.263158170128234, 9.822947263627777, 6.5579195310795315, 7.108607921433126, 10.282129495007476, 6.77236706401354, 9.051184481329079, 8.789860512340022, 21.322121494948906, 12.784574897170378, 24.358256699373577, 11.752366475345262, 11.747144347168163, 10.94460889203601, 12.892262361577002, 14.63811081354707, 11.154748692374485, 10.696428477243842, 11.455116213683414, 13.790773995866198, 12.68737884669687, 10.17106282799042, 12.839329048799485, 14.039101835484043, 16.714799392440916, 2.131068261160366, 3.0236823537770823, 15.05840480401653, 8.130742881556449, 14.66891393631022, 15.45057481320239, 14.965568287027082, 30.587517512274232, 31.236874103549574, 25.445553755595977, 32.933643047687916, 27.58071234448048, 39.45773792714854, 27.39539525919237, 29.54526658629182, 28.31793475386347, 12.711589058402348, 10.395254379413414, 15.301515224970984, 8.386104923969805, 10.806413761551186, 12.028996519280447, 14.427282382238896, 8.855563085615422, 15.68252991166292, 4.110011634807423, 8.342329943828638, 12.920254606006726, 11.363638894251997, 4.956470888173607, 14.43774248381545, 12.13621817341278, 11.05623359203722, 6.723182825268811, 5.227405859102266, 16.986689681392946, 16.247213580177558, 11.708180642469875, 8.278519271451994, 14.591590900286365, 8.946750424459253, 17.924662238905636, 11.221284794415057, 23.89634522601316, 9.520536538607557, 16.460487727142134, 8.74460028283715, 12.36617608616452, 12.432588971301845, 12.11455087682649, 9.851564986987963, 12.164427801753197, 8.295724704981161, 13.087044137786666, 17.39139028348501, 11.628934805745445, 2.0784882966168796, 15.847103529575223, 5.748192998842126, 9.068266170849267, 22.551771630708867, 11.466356160922535, 20.395952399994407, 40.49769792674647, 14.36264205611752, 56.335241763026254, 22.729785373175872, 32.17490132512014, 20.51805021834108, 39.21796733135271, 8.747157073257961, 12.000769827527257, 27.49363694950039, 33.79794520116263, 19.556605521021226, 34.504784970606586, 25.962086607014964, 28.01281194024017, 14.07947915406448, 19.69249891253542, 31.104491969104217, 21.560856318935546, 34.356916147508784, 22.204473732042587, 28.304490862644638, 19.224853252372547, 23.27108598857647, 27.21904146560072, 21.905280482271063, 9.004178356066697, 43.24464096191661, 14.731673105431312, 29.7242225643999, 15.044357956878693, 30.65998041139822, 38.312448481694275, 25.30289714850745, 38.12522484752918, 11.120000971507215, 26.409983453585202, 29.29106858676589, 27.508634624224815, 27.402984172055895, 14.838663333752965, 20.297904435211727, 28.316525901114122, 23.004938594057016, 25.650149678748317, 12.83778901964655, 14.272891914138137, 18.104729905718354, 9.115303477310453, 14.38631205509924, 16.208491173479505, 18.928759438897302, 44.02928481970498, 14.281412463268108, 19.445665000114264, 44.685905780155714, 26.69978344138963, 18.184444549621492, 29.23082782597718, 27.705371723262978, 19.822848812295057, 18.700939638793486, 20.73994889902241, 20.336950210905496, 26.474742151578315, 9.861156184934602, 33.05765775640657, 18.63234796243844, 40.12023280885642, 34.39175655961834, 5.688948942357587, 4.457905143065479, 12.587891203788185, 10.734157264399984, 13.730142969145295, 14.049118261552094, 14.477622845050412, 20.10239484969854, 17.697169247903815, 17.711417160272198, 15.119079302738005, 13.751248472639222, 21.82850580711112, 35.38979816992434, 12.342668225694156, 13.767693580753667, 12.156403590071339, 15.733391164310705, 33.61979118906531, 21.46285512659669, 3.611888661012185, 20.827376106048938, 34.807859736831794, 25.580685483768686, 18.055942373782123, 15.060374629779366, 17.3035106198942, 22.149476643426734, 17.46006141475476, 28.11190488691998, 16.4517261393256, 15.245119715890638, 19.83645591114844, 8.424627128324001, 24.064459517684927, 12.432908932252815, 10.012424799815003, 27.54224871060424, 19.69756200372914, 23.280456075981192, 14.358023875290513, 13.951084972813492, 28.719090675129113, 22.984969114933325, 21.540826126824392, 15.627917606282837, 24.54027244689969, 22.755953450517293, 9.912181513233662, 15.933038537592974, 20.81073707274445, 24.699130538077885, 15.041180789678547, 13.175045962460343, 25.55454148108085, 23.446105675448827, 7.2762079748260735, 17.77023588868506, 21.777542610854912, 17.815065249207287, 15.905863036367435, 23.43079027798322, 11.258152567629244, 17.869502984681553, 15.68782056394833, 15.640987616351206, 13.133802604282051, 13.438466008621813, 42.63823649219308, 24.102773636494227, 23.82332321316456, 23.10618576121906, 12.270131670783186, 2.6398378964658353, 20.79746849549002, 8.614558164800718, 12.008618518472828, 16.274743912238208, 16.393631029956634, 32.51261066594226, 11.522481555500299, 15.68997732315707, 25.491413589802303, 7.472240674799528, 32.44953952494007, 16.002659253279315, 17.09759309364078, 19.747133735969097, 11.656389539304008, 23.068119095865157, 14.157177885856454, 14.078689541440434, 22.443982119738084, 23.98435492530346, 16.741571741735104, 16.91032198540304, 17.076568673313044, 18.395953541484495, 5.611293848599909, 18.887040591459968, 13.215406829281827, 14.386575735084234, 27.95405921627692, 19.443505045669433, 17.378565447008288, 20.31922916175268, 34.03926976914611, 16.33956118434867, 11.226356717567212, 12.91995078478586, 21.516476053102302, 14.304351214332227, 16.891371105635574, 13.03747951253253, 13.783634536765545, 15.23617979107012, 15.684432301678623, 15.595132935525335, 8.591708379755087, 12.333680870383336, 14.815160329823255, 12.530535569812189, 14.056930321283113, 15.13854622417238, 17.139228337492895, 13.294581908414797, 11.027797088389192, 16.550892716130495, 12.09736723887593, 18.24949872876746, 23.54175378702961, 15.929646794545322, 12.638859344687402, 8.906914093316463, 9.153290837916947, 38.33237433867812, 14.020471280637521, 22.0081176486659, 16.646549385237627, 14.693140936436023, 15.147451226953152, 12.668452152591577, 9.057132780736323, 23.239216602174842, 19.132260462437642, 8.725465392959723, 40.095521979783186, 12.97150812576594, 19.500411391287034, 12.732442942054949, 15.438061105121076, 11.672841765028544, 17.182642605612564, 14.797025752741702, 15.32731066843614, 15.886830198532948, 13.82902142681388, 12.419531041301749, 15.143669767380896, 15.921881493190277, 8.688721788872801, 15.011771471443236, 12.085120307407257, 19.471682608097634, 7.911673065398199, 8.51341478341578, 12.808741597373386, 15.177649022645449, 10.091111116273515, 7.971410748664475, 8.784927987021133, 8.80817652498696, 21.336603176803944, 12.93294251165417, 11.550026803751816, 5.916687921703557, 18.088699026742425, 12.013373225331833, 5.724668918481855, 19.739956808444973, 14.061074935320528, 13.09714632777617, 20.222023023029603, 29.38693078918845, 11.8782911651297, 11.20145663279852, 22.04227523020779, 40.87131627029662, 30.92898677307098, 18.029176996234447, 40.9112924021438, 15.914264081726744, 10.827689117131474, 3.334769843058332, 40.242907918676934, 13.566783575153774, 12.451543921320889, 10.09881585071562, 13.78152952214668, 14.556726051957, 14.54552836886856, 9.757856995593107, 11.69855674972167, 16.95569414737945, 10.180474500825973, 24.305151491352255, 28.126525552191197, 15.291296151737532, 15.545948562258948, 11.748486430113282, 10.313118237325712, 8.247966259892499, 7.870489490135128, 10.712429943821437, 11.00719934808723, 13.379106450158494, 11.121869513361267, 12.861168019496388, 28.564724958571617, 12.274675611676379, 15.491099935840502, 11.691171615496776, 18.31392157332878, 15.809351003980314, 15.78234276570523, 10.712102768647819, 10.465571864092588, 28.05088217398966, 16.53262499876176, 9.994010759915566, 13.43987749468103, 12.434647197736897, 14.892311149068474, 16.016766717317104, 14.887760649667385, 22.61371863033244, 12.650944318773465, 11.5526547425439, 12.577750433694183, 10.246994947390759, 11.106412565124534, 11.313514736052898, 16.335196352175235, 10.90398110490484, 8.515060645803159, 14.810184951830271, 14.437426338517858, 16.082914689832627, 11.924975320920499, 17.814149893517822, 19.984414316520592, 18.90428311528152, 13.828857202338321, 35.79054147487789, 10.593561861849105, 13.741593959362628, 15.328802472302977, 17.904054171562297, 6.5275189627370915, 18.948047893957664, 8.861440016829087, 17.29634952533886, 24.454791973246767, 76.30174030965593, 53.848374471033885, 13.69543912819805, 23.494703552768677, 19.525273308027252, 24.08087135913409, 16.936203279133046, 30.69525657939699, 11.988650806686469, 16.672643173585197, 10.473199828659535, 10.171174106665791, 5.426095995250016, 7.655336838759045, 25.624764599838112, 9.50358820213281, 17.74328161067991, 19.17309815731002, 9.610854518068045, 9.732916145953224, 13.034003137714587, 12.293466961573085, 11.383642189589665, 10.246482752555522, 10.96656708928258, 10.313907458189668, 10.176279361581145, 7.838029977000718, 12.041018911225619, 12.287978302915807, 16.67320807825909, 14.054573933171069, 12.502717608193628, 11.263924686709618, 11.073301067244643, 14.377158307455517, 11.610949940593, 13.669331481002382, 7.994802110900792, 15.840713512625747, 12.050505140734765, 13.221781220973254, 11.361058300021282, 8.980356138804304, 13.6775991060544, 15.119722624924096, 11.460786625193608, 10.199070209048367, 13.009781231976868, 7.272834629966235, 9.382224276742622, 10.679865518461842, 13.214349490582302, 8.533925501768715, 12.899751625988264, 9.93269395728646, 10.832211712852944, 11.88333360702043, 13.143428963290424, 11.496781216283738, 13.305203490051406, 7.403771938556696, 19.36744184676692, 10.27489106806916, 9.349180679913355, 11.89990690039845, 10.630721812487113, 6.659793677468544, 12.410979123070632, 10.277635347437748, 14.140442152947813, 11.491044440235045, 12.518509654710272, 5.442680652978609, 13.260067191325453, 9.444600686642795, 15.605109151730774, 14.0086750700767, 13.192948792516145, 46.61097304706351, 22.860458095521693, 34.64934485854552, 17.002585668641704, 24.48145488361477, 30.138193451651, 35.56089970689064, 10.227779942269944, 21.92219553760889, 10.97136326385992, 5.485555051847162, 6.239611743169048, 10.708711458996001, 4.748111309848379, 10.221025633293436, 12.389890360458269, 12.203452008443422, 15.039951594435964, 10.808344234927478, 10.70722585775448, 9.896827136357956, 16.383087825063875, 11.897246486770763, 13.132031279190523, 25.84641458051286, 9.645803216005062, 12.131898135364048, 7.685667478772632, 12.888788762558006, 12.702962672509244, 12.44262727286237, 8.941043887783616, 9.838044314317797, 11.09539687502914, 7.6327475816065276, 13.21605631878748, 16.929684288304692, 9.359719000415929, 15.940134546693573, 7.368797772383956, 12.648371406302244, 13.396704512525226, 12.552363681948085, 11.992041358228866, 30.596264259043735, 10.559831179558957, 15.598033534985118, 12.626547228335156, 14.05019190231367, 9.625676936824894, 7.507926236072514, 12.192245823808829, 13.293891688543392, 33.228279722380776, 14.669658174065656, 10.695737352764194, 10.417126660228226, 12.346691017128162, 8.250848454573166, 8.129173096724003, 16.369589724696443, 11.86270136409363, 11.425465430893803, 12.680246759011865, 20.231221077602704, 11.052175991335657, 9.652755078361754, 2.411923716857877, 9.041327688182736, 7.465206832023201, 4.885477780073999, 9.670021869763922, 9.226328036896644, 8.885433352489846, 9.069637687307297, 8.74224111623746, 11.192614773149092, 9.025802398286293, 9.623792525607227, 13.468789717912143, 8.192267474731677, 21.72475385494996, 13.996957539254316, 32.552316972935984, 14.409654848612156, 30.481562700563394, 25.731189109191387, 24.418375792695688, 26.117555257874777, 6.612044343173722, 9.922504112041052, 8.973605204697831, 8.186747230787, 7.7400816953985, 7.72464015837543, 8.043623569109755, 9.42867894632968, 10.054105242035458, 8.61629187209048, 9.129444154302973, 10.813342368449346, 8.831447204546054, 11.609260399395687, 10.861260358012188, 9.12800888019766, 11.800977131271672, 7.382125163181528, 10.54553185432895, 9.57466160612039, 5.688819366969856, 5.051956038486857, 5.202119046102801, 10.209963469181268, 8.168756469815667, 6.584448453540882, 4.9237085232969715, 8.48940883438031, 8.963853469819936, 6.595184409091227, 8.521732388842283, 8.108584655048682, 8.433925502548272, 8.173901871357755, 5.278038288237348, 7.885118800956912, 10.006037488551296, 7.121483592934569, 7.783420834696129, 11.476537278850506, 6.38281562447459, 11.05563760451782, 8.36370187229975, 10.846231325784627, 7.338000748002723, 9.570009464169113, 8.924345451965287, 7.840015081047735, 8.263562099302838, 9.251241721712809, 9.252909986175863, 11.060422062924173, 12.303223867063288, 8.276288008593456, 6.881395927955187, 7.571566284632078, 9.387872977249684, 6.530352548637055, 10.44324431400997, 4.873334147146772, 7.8180801976703345, 9.21549192800055, 8.386782481222955, 7.430388109131234, 8.831187813553647, 5.2491048335463235, 7.447463768054053, 9.26119165474434, 7.963233674217028, 7.90592776818351, 7.645021110350155, 8.853045297927489, 9.81080031084144, 7.7026404806493805, 7.164852445861772, 8.733605342925056, 9.705798262164187, 5.907217075610888, 7.08645192009711, 6.802066174241372, 8.24131079340997, 10.115177764281157, 7.967336197400385, 8.562233252740738, 9.264234267465605, 5.933289589976724, 5.4527077334052185, 9.00444693739854, 9.427669954232153, 7.707466250959385, 8.346574318003036, 10.013971147915285, 10.504678111221384, 10.901545439139689, 7.757241608159526, 10.502369222557782, 11.701856800196717, 11.064878654339477, 6.922482488444411, 7.1598963814204595, 10.71094528400544, 7.119582523481844, 10.211902822394924, 6.989870007190353, 10.753367948240946, 6.433897158206205, 6.4082426555756475, 9.996843091028797, 3.5333302211128874, 12.685905841810614, 11.06860063090965, 39.2657681147533, 84.23849300144302, 107.93005722393393, 61.69833244676719, 88.05194256924464, 123.7255497949165, 50.406460528041585, 101.6749957033163, 96.04447565324222, 57.415477862952336, 16.60981189263212, 11.264433074327574, 12.343598627175853, 9.90508513208686, 7.976869378466974, 11.580631465425727, 9.863460086428267, 14.804216917308302, 7.2580530673114225, 7.039633221631754, 8.04683708661295, 8.353739502477723, 8.77649417698033, 9.824028417224202, 8.824287660288393, 8.461821940744187, 10.629795999037832, 18.833847289002822, 6.505207446064895, 67.67645154654838, 12.323797497818118, 16.086117056665135, 44.11266014700868, 9.284235285243302, 61.069232406482385, 12.05124433660022, 7.497446631698247, 10.52896528600212, 8.220357405502456, 13.171986296272825, 12.077694651661327, 8.387350255408107, 8.71011423479756, 5.308995913127957, 10.03039685806676, 9.618478060139173, 8.88235177262351, 14.145863500725365, 4.851746600810966, 8.268640514629752, 9.102947118763229, 3.25185669745913, 10.483501940026224, 15.251551270786063, 10.94703576219022, 12.208895969377203, 7.937763352861382, 5.423379686754238, 9.634820395157108, 9.169813668627313, 14.477374750531187, 8.427984440577374, 13.032473290745857, 10.58342308915982, 10.33668920916861, 9.66295733093746, 5.1074012121427455, 9.53483275657729, 18.191974866194176, 16.883335151496368, 8.293501941297613, 10.894038217211422, 9.574708865323114, 11.61696807799936, 4.822050554722713, 11.011001753197501, 11.530182579145498, 5.079138379009587, 11.04844658632862, 11.947737819293934, 9.584877640100343, 8.349335187322433, 11.839018969601966, 6.315286169629455, 9.006775001266387, 12.848339868805528, 10.09866121868975, 15.067611610532298, 19.226738030682107, 5.556946513146181, 4.656527914024876, 10.131734261347084, 12.756665413099872, 12.656537042430571, 12.145201067935634, 5.981103844179596, 10.028776413186296, 14.314559630045018, 21.65743219543227, 16.569432675518872, 13.051978186737793, 12.018764749662061, 8.826653331002158, 13.791175128189149, 11.064166650743198, 11.638651091100717, 13.30813360636433, 8.135484986522362, 10.082658267286854, 16.0102354830242, 12.936254462733428, 11.764106710201832, 13.421621340488198, 16.666516708814534, 5.377811871129676, 4.001776734558061, 12.135417421739307, 10.874736703287997, 13.87274669184165, 19.468210432597385, 15.245045428933672, 10.473468641457734, 7.051741814639702, 10.933138936752409, 25.087674395358718, 10.866595210013372, 12.787688598056642, 11.146425271647212, 10.307381180302045, 9.990885846885334, 15.657887325596791, 10.931907649384186, 11.665154316975086, 10.465806062013195, 7.865492299053902, 19.78119050873076, 11.651010289636483, 6.352855007532702, 14.542065191955738, 12.68910623830112, 10.139618397863627, 9.726375149474181, 17.00655723730833, 11.76677088666858, 13.686251074307119, 12.379297136795829, 13.093790023903, 8.076620352772075, 11.602259985372038, 20.281231103045958, 14.1728244813213, 13.559180077426715, 7.849074487125945, 12.602334355594358, 9.782780859548708, 12.063479983646493, 16.812262612953205, 6.464931838104926, 7.842101577105825, 15.124743315433626, 8.91848811903525, 12.334910742532545, 8.75590489240198, 11.584316637990204, 11.408093260445318, 16.22441569980873, 13.422711642765076, 20.54529999603728, 17.26465496268437, 13.846333657426081, 10.42024714753765, 10.02704484609046, 8.914615075399336, 8.238053902328112, 6.423111158086825, 13.794951208508685, 15.075402381616588, 9.4343931939783, 18.97137272669457, 9.804935280131408, 10.025847861923666, 10.767518798146531, 9.966968674076035, 11.840338841622078, 9.526907576910647, 8.890206068728839, 11.810936314299482, 7.386090451962292, 12.451048904911593, 13.56426679485632, 16.614837540792422, 2.558799693998234, 14.93924733154605, 4.482721284681296, 8.995397944908534, 19.018261157393905, 15.227437614435914, 5.617422105833999, 10.272257327447305, 16.51456242302261, 13.392190218440202, 9.633542459430684, 19.413839591179723, 12.321239819228312, 6.158351208833123, 12.877172595682039, 9.441664374441917, 9.379727003443792, 11.477398690264163, 9.621369399615084, 14.647087754145113, 10.33946673138038, 17.04598595629517, 14.965846220965917, 6.12771406806999, 13.228105046223007, 6.103728140602947, 6.890468662523236, 14.480783709358551, 6.765190257453027, 8.142900624023772, 8.011933221639076, 30.561436771313893, 11.740150215836744, 11.076761273777738, 13.551136491696449, 6.992247861700344, 16.36067334798633, 31.90889995734864, 9.205303921090739, 18.30064383145993, 10.746743857659194, 16.49354639466525, 15.816246090422995, 20.130309873518367, 8.73144756048646, 9.293008091642598, 20.940455527834096, 14.574115605607965, 5.628416373793913, 17.451253420162317, 9.989060268242648, 18.452364853269877, 10.421390271448264, 4.630839811778735, 6.6853438377964025, 30.454004156809315, 11.474246336612172, 8.007019764848879, 13.862334957844016, 11.193073229573097, 13.7233137676914, 18.975094070940575, 15.21782731269208, 10.33363363072331, 12.270229575479977, 10.327354541681899, 9.281528896768966, 10.199489706432079, 10.354000161889868, 12.24255611051907, 18.391519371568823, 4.8852523251069675, 19.401922014337234, 9.80856068509834, 8.264564828907883, 6.152051325472552, 5.234036886236453, 13.690161238628185, 11.788824114441049, 18.62779611021816, 9.349802557079355, 10.259358825842087, 13.863267383281068, 10.298395692349542, 11.621179883851187, 16.926271195245377, 10.025355624841161, 8.367566113739255, 17.26915469398529, 16.3475049637101, 11.55835258677601, 12.786633411877894, 12.033600648302327, 9.985643522562297, 11.58000725717058, 10.735269023966987, 10.757302660329733, 16.235754528609796, 4.159949879267073, 14.492231982291768, 35.11510646387157, 8.830033029051823, 8.982071358707023, 12.777638483878809, 16.466771062963975, 10.13228552674942, 11.569795044197292, 15.45030557397726, 9.1782268819258, 9.259435577552502, 20.801332631438193, 13.449280889205392, 5.353473544295826, 7.700959630181979, 11.453622874589666, 14.626158798992323, 19.659888016780872, 16.593023787357634, 14.90281837613554, 11.911940061591089, 7.305117427933315, 12.809889602634806, 12.031103282882036, 9.095934923398103, 8.341164414252589, 14.413672608376238, 10.136532741369098, 13.269594760392605, 12.26608624477675, 14.966405794354836, 9.855791730437842, 10.795957192403268, 16.616048723453872, 9.69765216178506, 13.676262828182852, 6.89464702929977, 18.665374334822054, 19.319272620254146, 8.409674852112651, 11.466555252395482, 8.391546759324552, 19.23832822997234, 15.757779616359342, 10.409355923212681, 11.458802162615104, 16.515934834200543, 13.290406427507873, 12.425956416836486, 13.223938079300348, 15.753432358702236, 14.966753331700087, 39.00238476502208, 14.756439223452972, 14.647574563658292, 21.197680106216534, 11.739265435562341, 11.242914442250214, 14.748229700388192, 8.166588878229948, 8.894029123737301, 31.227148171974882, 7.782982217200168, 12.749356211914487, 12.337533526272376, 9.54213340364523, 14.639865075761389, 13.797954822467204, 5.172727820865831, 11.637958037678148, 8.20323406515029, 10.309129055472129, 9.870861370757545, 11.10221135566756, 8.435083668823205, 75.57003334784474, 10.04602186165297, 13.786355391392519, 11.935717612480595, 13.278275328127167, 13.019178047346262, 7.845133774674607, 18.334067708948506, 39.02529052824131, 44.86354420892289, 36.24578955414103, 14.609607481398292, 13.659046008602674, 12.199380232187265, 5.11150178926074, 12.570088484118342, 12.271180740300128, 11.928904858045454, 16.824530450121514, 12.933894655859195, 12.470951986621062, 11.138326762367315, 10.471843764707643, 13.66435457257011, 33.06241263157209, 13.382257541866297, 11.565879383065328, 12.007255292902888, 6.616581718579279, 9.746949639199107, 8.922573862370209, 11.934769880751793, 10.620406399352339, 24.550864233159622, 11.017413731881739, 21.14198242048442, 9.336311955112292, 19.496238964905697, 15.703003687168565, 9.983967215243386, 9.484942637479051, 9.361608085838007, 6.811802689871213, 12.920717833680767, 12.095064392333505, 12.564680655267907, 10.626369395576155, 12.435601870926277, 10.238243610855168, 15.768210344905672, 12.390336310196899, 11.453664087621434, 21.246887488753355, 9.692683730728094, 12.003775199225638, 12.002491351708946, 12.176565262033746, 5.299681157365488, 12.820522222215867, 17.864066684905076, 8.313830170488481, 14.829844298565273, 20.568071960525874, 13.884458653925304, 10.772789745564385, 19.652087662496125, 18.847324880244425, 11.114406089313924, 12.228649681201542, 9.665308687851136, 14.769482842138567, 5.428473648514843, 31.248760163085066, 12.59373093656874, 7.227791933623213, 7.386968425147813, 12.117517186101166, 11.987148194135198, 10.924186481561284, 11.064022190175407, 7.3679075462662125, 12.83948594645995, 12.536625263051716, 11.492435728552117, 10.418842547344658, 13.989782767817857, 34.24225398389736, 14.560951504010147, 12.974627982683218, 12.071833772215241, 12.323496056968166, 10.647309190557449, 14.428914662495046, 19.556468359879673, 8.858052008819712, 9.056587441201335, 14.467730602812816, 9.390876086785273, 21.656575213794365, 8.25143946414076, 16.69501173938201, 14.975374856617258, 15.354626108189596, 10.186408305580192, 11.012992510688491, 13.201571952233293, 9.334834694535747, 13.04541768981506, 17.404214328069532, 13.647209279973024, 8.797865727399074, 18.69434226277121, 8.860020051682149, 15.674422526432476, 12.05269238283507, 16.95009780375799, 11.28006702941792, 21.35121622134316, 10.595145123860869, 10.007694135555981, 13.794883669080232, 7.4374516841828076, 19.987229050501625, 10.16208982678788, 11.636597434650135, 3.7249468197038986, 25.67301371171999, 10.920902969248237, 11.632304734669662, 11.860699144352804, 9.996506397262808, 9.146767899974279, 8.06733556723664, 11.260853823467825, 7.257512016108331, 5.779517279255277, 10.114258297046948, 12.888002263869737, 10.718067860872816, 10.472447597030849, 9.651217951927014, 11.552775954130464, 13.031892160505476, 14.13461752379333, 13.71558674688744, 8.355835429521814, 9.731170167881327, 13.446431557875078, 6.697172247925972, 8.291030670858134, 24.971856651462222, 12.198189975353415, 9.330804931750952, 8.74259982249178, 8.998720369454828, 12.449409809974739, 9.568416484248017, 12.12919970950876, 7.28144016464078, 12.906298121710476, 31.647262038304596, 5.203323273250885, 7.749541714301325, 10.909647697561626, 8.253681399280643, 17.462334051092903, 8.983508213995359, 10.718228872427677, 11.123328536960983, 7.459796633986427, 18.66031512768843, 25.068155948276797, 11.773400568512821, 9.139915221620328, 8.780969970900474, 10.061530031024049, 15.615199029329483, 10.671006930299999, 9.94715046781339, 10.968402729937512, 8.825301272852549, 13.932069173446905, 11.996231074185166, 10.953494822974363, 11.8966190462263, 17.63883277630496, 13.32450870487987, 10.68351679018436, 6.894487268993585, 30.19888066798295, 9.986629356893594, 13.826928093087414, 12.395561384436004, 16.81015326444803, 25.239971681693035, 22.028669259708778, 17.240655027972558, 24.30234164138309, 19.879001847739296, 15.150889826406651, 37.4131629989191, 10.704928826346174, 9.338857580496018, 4.009542145921135, 12.985798512279887, 13.345300199679382, 8.899192131755765, 19.07139530725466, 14.053376336501932, 7.59082034109842, 8.63475451681383, 7.029925966870816, 8.805034687313933, 15.871220051203712, 8.46808958270801, 7.643533385905228, 14.040653175304088, 5.453294872753591, 9.174791939337725, 19.930912360209295, 33.35920485452366, 9.589256259591291, 21.172937434580533, 9.80961562002339, 9.747259940907746, 15.165263734351978, 20.42847828214956, 11.420283529723273, 9.277932219116975, 13.637066373284618, 6.070949853392288, 13.713763501405142, 9.38887296698985, 13.261381879851053, 31.921822496529764, 18.2366632698467, 12.24204076153467, 22.334868845843978, 13.540154625125014, 12.258278935518206, 25.676036020924858, 15.932156101692273, 9.141406841100581, 10.299312991735361, 11.730449932139253, 10.0748985432547, 14.496897278433494, 16.155872817971506, 12.725224543779166, 7.808969514425876, 20.248776058549645, 14.040668213639387, 15.531635811513913, 28.032479305615446, 9.49380263021361, 16.916716875960294, 34.743220472652816, 11.852262556206107, 20.103958012991654, 11.664118399951173, 13.210091798810058, 10.740013842750031, 7.777532512918983, 10.989872779117208, 7.989367128166928, 13.72695296272336, 24.550363682892836, 9.594271270623569, 8.239961402418045, 12.949565499859615, 11.703133429761998, 25.691767423737463, 17.178611104362613, 25.39581656741948, 15.607128975962256, 11.630830021477138, 6.733944289953005, 2.9666226575307455, 28.383751580211225, 13.282147935941548, 12.848804345131967, 8.967416399707401, 16.50851570375164, 14.403418301527976, 15.54517772014099, 11.978036677439567, 5.103175121830267, 15.421492285250235, 7.1471716666383385, 20.761978385597892, 10.289768218571849, 23.3311512058837, 14.18447699110273, 13.541231848671849, 17.690765319089234, 11.180850794782769, 9.609372752015208, 14.116741288790779, 9.522752516604296, 15.064379027276816, 12.702632794238951, 36.16922565983523, 20.950570274078014, 6.8488068452863695, 13.353755310809758, 40.640256918192726, 27.458282551847436, 11.32397545730791, 13.616241846788258, 11.652349312334433, 18.409140109972356, 5.83926707167072, 7.70206255622079, 6.254412163634213, 12.453057894850996, 22.972037091369273, 11.331695751351932, 26.92293833915036, 8.002935931829596, 16.847093114258747, 22.507580109103962, 29.490880574169946, 15.90177696884884, 23.30940879397091, 18.419701184195915, 18.92261722057495, 9.165790903299765, 11.796717180324, 28.157345463419922, 16.587264709043808, 15.954336935706321, 9.193830291666377, 12.906964552368414, 15.836834033768953, 9.500242382721627, 5.86266331972815, 14.468927948270691, 13.38488986995861, 44.37924025867276, 19.387841097225866, 18.491311568066173, 12.582772878499295, 13.202863801025117, 18.619202744291737, 5.147490095217765, 12.50666129724839, 22.07608331623657, 13.789510064161849, 15.516291184774488, 19.35829040084574, 10.502814290533186, 3.4959633986933922, 13.25603394189043, 11.219327004963777, 12.98400859021153, 11.677697183209977, 12.251478772935648, 8.079608722086139, 10.362808002152683, 9.285577310198764, 15.288454440836377, 15.257891567840483, 30.092866683313378, 13.308401422900447, 21.70948542023623, 13.966495733126422, 25.46764429608582, 15.39565097324528, 10.058196702835426, 9.214380129491044, 15.322318303510325, 9.786019628334838, 11.405241908750272, 11.80903787842275, 17.61001136149786, 16.031045213926067, 8.131682560487024, 9.377729045562146, 14.69477404256104, 10.616576498306207, 13.587577331959272, 10.968681830320174, 11.042400371723966, 11.143797049736698, 15.855191826730689, 11.92678826212751, 10.869130578876105, 11.9106907633844, 13.643413975218724, 11.016551644701352, 11.68653536982942, 12.40520443356839, 8.04815756111234, 17.814790211900036, 19.904572459624518, 27.097498896125433, 13.518869330869627, 12.402841523485488, 9.677266271125175, 8.504107632468514, 14.830713641840429, 15.86415350419966, 3.9544792911236675, 11.143474369881243, 15.839267451366979, 10.208829564423379, 6.866909555200995, 10.496031516367138, 5.295434742190418, 14.564605304812506, 15.684823236406052, 14.050085357317094, 14.168616082962883, 8.738527790061545, 2.5578748503993065, 14.220072524132965, 17.86814547245877, 35.95565330283751, 9.13586331514021, 10.85389121214472, 11.315574815419149, 9.578312035683634, 15.623688125434764, 8.475628368118288, 7.56718110533585, 9.593991633692015, 12.436939660146496, 11.477822909864393, 12.996114569899559, 15.020584307120702, 10.639821267998856, 12.776806617130642, 8.374069238361374, 11.507649021766197, 27.521670491396307, 7.5146028785669134, 15.084868455187456, 12.998504004262886, 12.436312132141053, 12.460909103785735, 29.873279834308278, 6.857979267738146, 12.681235465007799, 31.48775962886461, 12.942535545396245, 6.7972676781625365, 11.15863459470918, 9.988469882622438, 11.898606710650894, 12.457101676172456, 12.051971209737687, 27.35749689520507, 14.209878537656014, 13.787406769829763, 15.238849840261219, 13.231712234499284, 14.088443407575062, 15.423769208569214, 7.902821742127979, 13.143563031240829, 24.514072379982306, 17.380857514695933, 20.81384058148815, 20.410721430903298, 6.1866316802892305, 71.78545311922053, 42.311756334360524, 48.86289461480211, 11.91105980927171, 44.23711785337672, 44.406544745946064, 38.013368156806514, 22.214758976596755, 21.169080893324683, 27.935096225587618, 30.343616069593523, 28.165112230671586, 29.181443747190563, 10.460348459429177, 9.673798154728466, 36.35881521558458, 32.6555809878062, 45.81386361116981, 15.769335544456013, 26.31665663751452, 52.46114750530866, 40.531033494982005, 24.665015653086378, 34.0615737074816, 37.59572417451828, 43.62429635097178, 34.37636457043559, 20.499283536302297, 19.113555847676068, 22.710206196882442, 40.883038706855814, 52.71425684476339, 31.224377299375096, 53.3173491431599, 29.67184747830645, 10.551753398604122, 32.354112224634676, 30.004978538369837, 39.01094550981913, 21.488599436951727, 33.734567802425026, 33.533041855512906, 39.99152592756605, 22.253287663285228, 6.710145225022441, 36.36134347164418, 44.1011267094737, 14.123761801546099, 36.318628483358744, 33.052757101830636, 39.988036607271454, 25.356834654085603, 17.849465803251526, 35.05764423463909, 21.41159168024412, 36.57863693560346, 26.139497947756727, 27.957458453704234, 21.3367330659823, 36.84842498088437, 39.49987889690495, 19.829834471041508, 23.451196739669438, 24.2908134241523, 38.259543911798545, 5.848313810471031, 14.347805709132286, 19.33151193470459, 17.1064539709118, 26.946339106661398, 27.356444437734613, 25.622616859502248, 21.28771680807439, 5.803426713882963, 26.603391337603533, 32.41016529220264, 26.151947076797143, 28.974116529226514, 30.243697930394926, 30.870261896671213, 36.95227140532832, 22.527407223108842, 6.984762479717341, 31.18670402245673, 13.865928318873056, 6.923252142576908, 17.31624129523468, 12.711252346293607, 45.53809283608547, 32.19282943885095, 29.171405494015787, 28.57271863014185, 24.74922778159614, 21.30741802796952, 17.096837287307384, 17.24460601682198, 16.188556341053634, 35.033093546829626, 20.224206010424744, 34.7317015073006, 52.34192348221093, 21.323605644186213, 19.650401696621934, 21.455093767231183, 12.195264722327972, 17.301894982942194, 19.753835668880473, 22.532395797064357, 13.929492610120418, 20.279803497892424, 14.349998341915732, 14.738866622709017, 5.881705146374628, 11.621455229711804, 27.505557759148324, 19.895185242039638, 5.519928650024046, 15.170854756354759, 21.127508988141482, 24.056719503381785, 22.243737003949036, 18.229466621882732, 16.364646606342692, 23.078957577283973, 32.643688150187415, 14.911090865965425, 22.39715802983566, 20.82591834520561, 23.385766731554387, 13.427906807615717, 57.396383624468825, 10.623205281315025, 26.928297758754656, 7.088155274275653, 7.959168685814198, 31.151237105945178, 30.89358401297991, 8.83986870609678, 20.18926409668525, 28.393795809444214, 26.081096618792277, 19.531290685677334, 20.023983837729787, 16.81866507279153, 8.369553040318568, 26.069327505900343, 19.93160774857414, 28.763979787770584, 13.834237599284611, 15.19164866902409, 21.476833326395834, 25.614426774042954, 10.21223135470865, 52.71581801977057, 18.57283715514411, 5.95541361620544, 22.481901028464062, 12.594357031981792, 13.599420466745155, 21.060034228900108, 18.33208156638048, 7.813856712939672, 32.54089636463631, 21.61812401487402, 10.81214401208048, 10.735500558834284, 21.069663408486928, 15.430890302801666, 20.921532077853566, 36.046155196669524, 20.04304177198094, 11.871600235968925, 16.018577861832043, 11.936336097709987, 15.97873015344088, 17.01033046192798, 32.44933455884314, 36.37709284629106, 24.477998734799577, 6.4347287875787895, 13.978096454859744, 9.442550418991669, 19.383809528157837, 22.756202982606773, 17.70815593182189, 14.787494283631466, 2.4154459051857304, 16.00337936092975, 15.823315078382748, 19.64958889851766, 20.668887202070824, 34.648753103208165, 7.717030284026607, 18.639230771282534, 17.988040180708534, 11.89435769215318, 29.387419540053934, 15.205392626256328, 25.803044080446565, 14.747790221468842, 20.36814828694697, 10.391594243999368, 19.13454374507787, 37.087002316855276, 14.378439984998924, 15.253871215669806, 19.084019525594126, 17.70579887672079, 18.714286516427368, 8.807860687136879, 14.318548809360944, 16.549431642341997, 12.483858140053956, 13.304356545821033, 15.889883812738686, 24.12570971814922, 13.680991059632234, 15.211050414340901, 11.474730926609794, 24.32929203745103, 15.106101065568199, 14.52378254785986, 11.48393543621958, 10.788832793979212, 18.76749342140525, 14.377910043205702, 12.52531509423196, 16.748527629165377, 17.811204122116653, 20.09980003058017, 11.959105563203739, 15.809682206699392, 10.853459080066822, 16.62692192839823, 10.543647488057642, 9.717008090181343, 8.588325109244838, 13.873481516028889, 12.737051844720192, 9.04045264501987, 17.11262728402203, 13.11300500141115, 15.193879458089832, 41.541645645451, 16.094533611685826, 10.93350874271026, 15.712393488288832, 13.886762431173521, 29.939388693676896, 15.819501238103715, 12.129205636312703, 15.517618782464856, 18.653797908600822, 12.968398062019345, 23.44778409442445, 36.323558436444195, 11.708870651074498, 14.230463865941411, 13.634445259803643, 14.59649244738943, 14.254149201217555, 12.421187862577122, 33.586103658519875, 14.538480386891086, 21.64268419607696, 14.509366188556275, 10.046788768965238, 11.06064819477609, 12.689514525662515, 10.71095050630982, 14.361127430936733, 17.091856532846244, 12.713494329069047, 18.592369349941755, 9.69859585980254, 17.207038194566163, 11.868141069950322, 9.07814798520567, 10.276141568613324, 12.68578078919274, 13.428350042832038, 13.974836120678896, 9.812386177169383, 9.944299222282925, 13.930691810207753, 10.534803604014959, 11.195202745539696, 13.344036239713404, 10.312148506027322, 15.868553133509957, 13.940437130864309, 14.277863847169684, 15.475754889395976, 6.943742432020297, 16.76366631442584, 13.63015102843964, 17.940709212871756, 19.013546805089447, 10.958795641127864, 4.6560159866546345, 12.352655466968383, 12.208543472039198, 26.43886519867004, 17.349917906732074, 5.316572870249804, 20.40713446975249, 11.106254317043081, 8.467863170512425, 15.667584207049083, 17.573175362480967, 10.707924443304298, 15.341495834750445, 12.2888914520735, 21.483949058132403, 15.116950608997241, 15.977982925139464, 14.61971720708477, 14.235337486014608, 12.862937172766314, 8.204040363532238, 12.905673266234677, 12.07306925422248, 10.005125837246853, 15.011252692650672, 9.979628255566697, 13.022774577004009, 12.285311200582766, 18.037353561670244, 10.930071524221981, 7.508386770197088, 14.822628424207373, 13.2702252703914, 12.622795171611614, 19.1162450326849, 9.054118786406827, 8.62065436341184, 10.41431903808996, 17.99389279319465, 46.66261952800754, 73.04046573940606, 62.98420701330196, 86.76929409508206, 115.8039579753923, 124.71260236452001, 46.467419761852085, 82.43753810390182, 74.90296371867727, 84.88891946751006, 50.35862608256291, 14.614054425150016, 35.738835267043044, 8.389643412148267, 11.675397302505306, 12.179876968371723, 11.58876741641389, 11.814516162443793, 10.184056900605382, 16.051728011426963, 20.86241664371369, 14.041269133341569, 29.5047464449019, 10.695218480942977, 12.362786165139246, 14.302378866197236, 16.247502023879388, 10.440537945289577, 12.037991857489583, 5.04943784117789, 17.180304112095403, 14.01805731500625, 14.261486385555862, 12.295109014559808, 16.151009027090133, 13.813093830352653, 9.6830681921749, 5.690736173913804, 13.459694626753913, 12.610294464542529, 13.42347448759939, 8.793900814637006, 6.301171541827167, 9.297803427036717, 15.25674524123673, 8.04557595449524, 7.595230861287345, 21.378640132330315, 11.878005280053932, 13.712988532240738, 8.117548947574173, 10.355641861716085, 12.735638374299949, 13.229040498102394, 6.562869956235577, 5.232910890747285, 11.285174195185938, 11.934539704774782, 14.332902741032436, 12.796888095489146, 15.211739251555766, 14.751849459106081, 14.842415907965435, 10.500766863092727, 20.568146976510498, 18.264401592520564, 16.293764904156937, 15.500194779469654, 12.47800659266536, 13.070721160618994, 13.262991469815912, 11.582877234629477, 10.659013646368317, 13.163826936823066, 2.9748360559721885, 11.082524118016412, 14.780042427123881, 11.841950601143012, 16.675621322492006, 14.886714341824714, 10.609244845385216, 9.860532237011574, 10.537563685003605, 11.551485033064179, 11.648763376945269, 103.5679577260324, 102.03185844724013, 147.24194357253558, 111.29311165856566, 70.28649732538503, 107.94900286163666, 137.51922828963157, 131.92233481765913, 96.51760955466101, 32.68177047627207, 27.55189982986192, 8.90604748234733, 22.38993192313748, 12.117448611693149, 6.751371372946085, 11.303588965521968, 17.08631358803249, 13.768857453892641, 11.603829312659512, 8.877561603208378, 11.640956929702376, 9.462357064788007, 8.459042642036302, 13.288992802698417, 14.435693815718732, 10.864317533262117, 10.200915259065537, 141.66697016967703, 183.92416558441565, 13.571351791912937, 177.8918988095238, 172.79920080999605, 203.74373989899, 196.49735103132156, 167.79107954545452, 176.2857912087913, 156.42650583669672, 39.95498869936232, 13.427999749199598, 12.40440473460148, 25.84522242300184, 7.959862969954009, 10.512462927034232, 10.559879913387261, 10.577856518850805, 10.27715684338703, 4.435817159758772, 15.848870887263049, 12.590158513746525, 6.748266546247321, 14.48264335352059, 2.753493091725281, 8.76004489100426, 10.286186300330513, 9.69656600552533, 8.104968482144933, 5.589601421787735, 6.979643661763706, 11.22334794474862, 13.398519575488663, 7.338898876630295, 12.986478890901246, 9.458037797193498, 9.620008867014343, 9.946161032704877, 7.51246548916473, 6.480483064584408, 11.724905555046222, 9.292654093068956, 9.267700729021826, 9.684411451473414, 2.7488784173264214, 7.873958918187082, 8.960040566794738, 9.03727273096405, 12.040502535132196, 8.37900041194777, 9.076224216124091, 10.199343075208123, 8.26377985152916, 8.613395145573433, 6.694768440636672, 10.435705461210318, 10.344313855727737, 7.1200616986783505, 12.89705756096198, 5.79161209684839, 9.43989443493251, 13.613158038242421, 10.57022828063525, 8.430796404980027, 11.130721979293119, 7.297850466069588, 7.83867956410264, 3.8509596787146485, 8.354095733600955, 8.774452547483214, 8.711341230804878, 10.243244107194402, 9.372177817630302, 14.302360887363834, 12.260292087707235, 7.813170084478186, 11.126274629104417, 16.13390072396882, 10.005380861867307, 9.389740606924528, 9.4020358140331, 8.44151116417853, 14.192183616746249, 10.80331835022376, 6.831051220550221, 13.17347489193674, 8.60766038984305, 10.182656975894286, 12.92807644787667, 10.31446875212343, 16.92081477523613, 9.958520487074653, 10.939309696223392, 6.1331491935746225, 12.945083279422683, 11.684886486130459, 7.8365275150219675, 8.910637980605603, 7.298535335039417, 4.459206423519921, 10.52980852742029, 10.74513832757183, 10.958782194611443, 3.8250888938652485, 6.928499698376319, 9.68323453473892, 6.988847860136864, 9.551965672242547, 6.456977511558137, 6.5393117749684215, 12.255240321039587, 11.564075451101186, 11.344578170743231, 10.683251176165824, 10.013645378261003, 11.907232511216383, 13.923509409375251, 9.335847290412678, 8.789962469599745, 10.412065766579785, 5.908278240227846, 13.692735507636144, 11.04946513084162, 11.864534536328689, 11.206079724271772, 9.149316444428303, 10.846677118744925, 8.586933512414078, 9.630170106120259, 11.284066966225021, 10.576080745066541, 9.050171903787886, 11.143140111279045, 13.146316941020583, 8.709547333944005, 10.142449432245602, 10.795480736541966, 9.439244869627855, 11.323567396128357, 1.9903229776165081, 10.697212665200956, 11.726798584224515, 9.262396261946733, 7.875683871498967, 10.78443709671732, 13.660023030412223, 14.466309123366003, 11.725669308057421, 11.182401090722397, 11.315260740867314, 10.992955797062413, 10.517817070016626, 12.879129905284566, 12.386708496024179, 8.175287343886026, 10.173414813509478, 10.319435232972605, 14.194803025348826, 15.24951250101089, 9.122103457452498, 9.88575150029533, 13.596934157672884, 7.997420152183469, 12.484879873795386, 9.23743005291023, 10.831711027477903, 4.795266811485652, 13.107851313883318, 10.471837984070264, 9.10226254350099, 18.623082128631108, 14.972375596186165, 2.8345688015639845, 12.285493596905779, 9.811484097891361, 9.352275757653077, 12.146841011784025, 14.814268527558133, 13.27517558956065, 7.719294805211489, 10.476147691715164, 12.285883372458198, 11.994653862768757, 11.324708346662545, 13.541619179066547, 10.933130258451303, 13.630623754022881, 14.55007392990964, 17.134112572682735, 10.690279714439159, 21.32260126561782, 5.4373732614416, 14.19721213164487, 7.668281524588952, 12.201655038314088, 14.02771677043, 8.790434346096411, 10.581067902929911, 12.741262945667684, 17.46816371481831, 12.821833754565755, 14.575026937753918, 7.974595469119005, 10.749495656705053, 15.147662511261569, 10.807485817860664, 13.937794886400146, 11.602523345824704, 16.96648450177946, 11.87338893682929, 11.350044785365995, 9.415400645515732, 25.122841525728507, 6.365935450184181, 11.014973533230053, 14.373524660180239, 10.728954380480271, 9.58011808095473, 9.341833729481662, 9.78828902202408, 14.752507442170705, 14.46802860202034, 14.673230160603275, 7.570316887520688, 5.666424113428024, 9.360474510631303, 23.172806874712833, 13.369447794716173, 9.15810506757744, 15.111960362671999, 9.104442952038507, 16.222106779821186, 9.087098587173251, 17.734372824226373, 12.459451865514335, 11.89760744438375, 21.079966699310262, 8.573105386665576, 11.510096753859294, 9.88285049168289, 11.432649776939057, 14.992183357599577, 15.760873454274767, 5.901225026668118, 14.180694283213015, 9.38362843869486, 12.58252135204295, 16.75798423230745, 8.565922239747294, 14.03369253759086, 11.599899289819893, 15.497880555118929, 13.74699722180349, 9.996114550640543, 3.6214948284065365, 15.448858967299135, 12.066055465313209, 7.642513122072363, 12.62763925185246, 9.766657428525495, 5.014680460635568, 11.518751400361596, 9.568533673829604, 8.820935852444142, 8.151935322462402, 15.72247248290925, 30.232708140666258, 10.313208896956205, 17.083021368588437, 16.600850613162397, 15.52402167815818, 15.500153418133303, 10.880183430104612, 15.159229484890387, 11.997114538947548, 25.329445247274062, 7.542643007610808, 3.578196543344607, 12.19640654091355, 16.17817772270439, 12.456139082464855, 14.004066302425231, 11.099527715074089, 10.499406553026233, 12.619824090532857, 9.216460201545242, 11.485755551826017, 11.204115623929223, 12.893994359022933, 10.634497763799605, 9.595612704122763, 7.950018281606162, 9.676203094237838, 12.299602765090023, 9.126367029999608, 11.343685891768477, 10.981650326956022, 15.925768339630016, 13.496434094556813, 12.368952400497308, 15.534904923894477, 17.161857680708252, 12.493144840180983, 13.666100266369629, 12.47753051299274, 19.116091925414857, 14.737064417799877, 11.69949299622581, 6.768884794544397, 10.314571353452546, 21.035441993808394, 14.287703567154942, 6.365135051991451, 10.21959824698043, 16.981413963894106, 4.848029732203941, 23.839888182928004, 12.460805107943045, 9.600680120388892, 15.074653988000765, 14.824023861978349, 11.479038121767081, 5.219406312326484, 25.705138991151525, 13.127043261305015, 8.305313196628521, 7.294163425869788, 37.891290232075825, 16.77057084977191, 11.814336464674971, 10.33679872007443, 13.003530507408005, 14.837016437631265, 17.61500524218607, 2.260823207057273, 17.44581899488357, 19.01854987762782, 11.333285524663633, 4.068742406456651, 10.927751183225743, 16.578598131868986, 13.637964694562523, 14.309388335581698, 9.0483835405203, 12.451158006853827, 9.853549373352115, 14.480490987456767, 11.4519639091529, 11.949438181745196, 8.430743979010478, 21.858259946868085, 13.026969745399086, 11.339893336707714, 17.356571616558533, 18.627163224436387, 13.160221815534335, 12.80933588981833, 11.85194531956956, 11.377633356525207, 12.96481506087173, 10.238267604004816, 9.051529198355338, 9.96561461926666, 13.370732861446175, 11.194012541989979, 34.96714697376926, 11.36700414178734, 16.38952671973072, 11.258042112139302, 4.128539670204854, 4.213645150144558, 9.353518416523269, 7.402825996956794, 18.081553005445414, 16.20687528584385, 15.477897118029443, 12.33228597888159, 8.4696185111905, 9.604793949107925, 14.33423386488028, 11.058485090054647, 8.048349048570438, 10.761294765536181, 12.404524340988587, 9.847904849059878, 17.152865759279535, 10.450639184838751, 16.316388326408113, 11.368796386950375, 16.34455864917666, 15.319264975654155, 18.051001803356268, 18.04976524060868, 7.397083268291869, 8.818371666004563, 13.891885295502155, 10.323439838800763, 20.045705387602787, 13.68618682119108, 11.135496101121513, 13.757426684635476, 9.421309211712416, 31.819342948631242, 19.813865654898255, 3.1183385367832357, 84.27531015655056, 11.753886823352955, 9.101834890775944, 11.50030790935201, 16.5560360454408, 15.845178898397846, 8.02447710215402, 10.950424402565433, 19.557021849753266, 15.332588845193339, 13.228452318318663, 16.86625254538802, 20.81218056322391, 13.566305486675164, 8.86753802435542, 11.527278978650624, 10.792205077983933, 15.972488388111138, 16.817090680998877, 11.87764989396167, 14.609509399369694, 13.257842758755958, 33.45242981445333, 15.157555372205158, 21.450790853310437, 11.894253709104051, 20.63449276767115, 23.29713559160378, 10.025263238792157, 22.055868080285727, 9.963769614939578, 13.50626519322555, 15.800686787791587, 11.066996926791818, 11.206790431232095, 10.545769418910147, 7.430310324098028, 11.859664278927399, 19.404839940395423, 12.023900005772415, 14.20011033945326, 25.881453318164088, 10.485058846719364, 12.063341785976593, 33.1325367722815, 8.794676778166965, 9.199504999173897, 12.907847750742775, 12.861582262422658, 10.105987039279963, 9.795873488804796, 9.822461785362805, 21.096125413106446, 17.814724548028995, 11.796359261121482, 12.615711936034412, 8.793938478054155, 12.921699243184895, 12.295149660002245, 14.411246153957842, 32.60501020724814, 17.322517281965723, 24.013509558638816, 16.8515149969999, 6.729106682388534, 11.903095291983153, 15.765036223438702, 16.676199902476814, 31.292781677709115, 6.679326638970222, 13.16301451917762, 21.75781883432075, 10.66898726368051, 13.543186974851615, 28.48862990787627, 7.590655864251313, 8.310564133454221, 12.606246665305054, 10.030466400006512, 13.873006217561452, 10.028062160258873, 9.629107513745282, 4.001097796435309, 4.338063624594435, 9.213816865465894, 14.824176079338624, 6.162263659800183, 12.574703016346401, 12.905568049985932, 7.5003308181214825, 11.886423946800264, 8.596984660718139, 16.626510511633192, 7.629599920797356, 11.26042231562327, 12.390610125259338, 12.201174066642565, 15.37240327899281, 14.062779127894386, 14.273689707373284, 12.76697954212667, 12.710873639974688, 9.82679685090044, 19.961251422395662, 11.178134224889536, 17.119226309981723, 12.075662169459264, 12.137766813836693, 8.799733165405419, 9.108310308912193, 25.111015145887823, 18.793588660127288, 4.998236204539835, 17.091573298376307, 16.84945410859351, 7.628519678649876, 10.662829843659953, 13.260399896579901, 14.189414345754008, 13.141038756918617, 11.237419142201304, 17.354824005922644, 16.273599525066434, 10.423894186808008, 16.840565320554266, 7.64736310346576, 10.360214730491995, 12.613052044468803, 17.605028930091237, 11.609184054046546, 10.948928259829264, 12.47128426969371, 4.004426404126711, 6.98405829114519, 13.333544117724374, 9.699675727044593, 11.53721993560093, 13.66204078462244, 17.936492870369225, 11.818266539995953, 12.42849284442384, 11.610986197208828, 17.291922312680438, 9.070057162378534, 13.547937883913676, 11.801820663012492, 18.63767697745612, 16.665120444256903, 11.399926624435121, 13.91896572102741, 14.137475286610663, 11.548570434829557, 10.792371523449257, 11.484746351415573, 16.024825438726868, 4.350903967377647, 14.118707883353316, 13.726142209703138, 5.647930692526568, 15.482029166127855, 13.203873822195025, 25.79214471337673, 9.569715150508982, 15.700957662921233, 3.477965045127906, 5.731614051034384, 14.159123505836382, 13.994947212618266, 10.743144922102722, 15.7422665922313, 13.530200551778991, 16.6698026235688, 12.034786245509013, 15.409759058939219, 11.221142776135498, 15.446817736836728, 13.203660479798174, 11.896053230646814, 8.230334237856054, 11.175246102580964, 14.389419813429326, 8.7198190962582, 9.77127036552829, 7.851775103332068, 15.944725074778926, 23.95449098513428, 10.68263994119943, 12.307983908281612, 9.344089023818876, 9.725696962884781, 11.971532464041772, 4.265984786230677, 19.902027405519693, 11.869520745108717, 21.53785993923663, 13.092220498825595, 9.915440757587989, 11.712944822433206, 5.892145140655044, 9.693032186468473, 14.691282917478944, 7.509126249311549, 31.533192260912905, 11.38924748576454, 9.86234841699319, 21.495178823698733, 12.678546568563018, 15.976013918778161, 11.647674628472034, 12.87856263762597, 16.317819947794245, 9.176611001855411, 14.171454268209148, 20.495040313288463, 13.905512185923032, 13.411807087852651, 15.933947652710492, 14.096767361944757, 16.075114138202313, 15.465190440755705, 18.59657642941854, 9.63529247249178, 10.443353674780504, 2.8753786304402427, 33.54103621226594, 10.85881740254712, 12.560889183893504, 20.0981123009734, 12.118057480466275, 11.045507678925436, 10.873985420989534, 5.241518936024806, 4.673539033400066, 9.958441081665946, 5.310896326852101, 5.874508140767038, 22.44878696612858, 7.402761287203461, 8.576025876481756, 11.133974417427533, 7.909512882189846, 11.44308232911824, 10.859647615890571, 11.649131412417645, 7.92821285702315, 17.44255147954673, 5.725933699084439, 11.048026878951426, 9.869075282620038, 19.91611207014557, 12.721362435859309, 7.481687968157467, 16.133685836514708, 9.090346990841828, 14.279123774096156, 11.50401275590966, 26.33512022623458, 7.560861273032324, 24.587478732814738, 5.344925793908533, 14.358465619295318, 15.398895958520535, 8.045042217849208, 12.148586374409899, 13.119881365166195, 9.887621996103219, 14.267812049774907, 7.7782639201430674, 13.7445391517991, 10.694433293916378, 5.877196453640348, 15.658603739115225, 12.45385749525896, 38.43042015027131, 7.331934473865248, 11.862999750541231, 15.096480260680416, 12.692150408159629, 9.591327439001494, 11.239703863384083, 9.312093460273879, 16.91528633272477, 11.566719127556643, 5.047347020838747, 9.05778879841561, 13.807091137315563, 11.635191305444467, 9.971149815758706, 14.238948993117758, 14.165042165846298, 13.6340471103171, 10.430329363418855, 19.256273899241943, 8.897683479836074, 10.289549456213413, 10.431607502028557, 12.473196722395254, 11.135323932225324, 12.023562005373368, 16.52217741784359, 14.75053424379473, 13.163424286870756, 12.549503924632521, 13.89655061792353, 27.31169277976926, 13.26860737348193, 11.257254085254926, 11.695290807048838, 25.097337031274655, 8.218407648015624, 9.827353835515758, 8.772551805222667, 10.625025606348306, 14.730583579648227, 14.264531286217998, 25.682729698640706, 20.195717626327923, 14.508385192329015, 10.53158432504766, 22.35238863594563, 7.120108891224668, 14.656325113010482, 10.633571223001207, 8.93829041398669, 17.353334322292916, 16.08707549369979, 17.776049556995044, 7.849825794184203, 8.702660641234912, 16.531403572676442, 15.067237155540246, 15.216054303171047, 12.172158434507883, 10.267470421198333, 10.121041984455282, 39.11469422682579, 15.831787085126487, 16.22475664537062, 8.201494844161276, 18.958951250739958, 16.98354100908463, 37.67991610857316, 18.66062867187413, 7.000772035540837, 14.149588237697873, 9.700784791254277, 27.220777702930402, 28.690098217340026, 9.65920123559779, 21.224267269068445, 13.462691765930122, 15.1590269870143, 15.787491200723572, 9.819926255797476, 11.04915248040107, 19.658937015767368, 16.329798543356503, 32.64069161495686, 11.101672359568067, 10.118719445501181, 13.523194144720623, 13.725606315006058, 10.6966034049284, 16.971803346273926, 12.572327987598216, 16.42943700748233, 13.023099786269128, 39.15860021063763, 17.542486290024904, 19.68104354780298, 8.737707658635056, 10.54759152748435, 11.793420625410398, 20.018039487859927, 16.324773297020766, 16.44967804268969, 18.331251340323366, 11.842743337838158, 13.811758055508387, 13.684075594347004, 13.561421036794362, 16.28731905295931, 25.79328665108691, 9.845585673027236, 31.02149877108541, 18.043084198249662, 11.229795682969549, 14.818255069880387, 17.365068827900796, 20.150663059423604, 3.784307481189949, 2.891666987774558, 10.071081896851313, 17.567571594839997, 17.950114804594836, 15.16008535725604, 12.800764616529023, 5.626096280581593, 12.548363788904409, 12.34973655539107, 15.910265920322017, 13.641603396778507, 14.223442660830743, 22.285662802756075, 22.297705724142293, 8.905098808052612, 23.972956061588334, 14.18683658297776, 16.515690885795212, 11.188327275344355, 19.901287221027488, 9.024758357736536, 14.42382572321508, 12.122522425715202, 14.48400236399905, 11.178875901701735, 21.408856729055262, 21.216027617112736, 10.579708406802785, 10.081084395827082, 18.457729001134517, 5.601306268981492, 21.067183532003323, 11.604357451003967, 30.4221632231457, 14.083244482707226, 15.577671375923696, 18.805111608057764, 14.597409232182812, 15.622841574275395, 18.822311247447082, 9.26452311542946, 12.503179080896778, 20.086584506066483, 19.6928767777301, 38.142756099596994, 18.281403420744805, 13.738376498601044, 17.293749897727892, 15.738384394974416, 13.259369469728078, 29.597591544834604, 16.446160918874146, 12.353895952029118, 16.94503188636649, 8.769832628527508, 28.115591921966924, 21.91787246944232, 13.706524253001852, 11.634438075534591, 13.833558716186229, 12.572913697689849, 25.932045805978316, 7.982541890995337, 25.576456369528493, 19.67811849277351, 11.106234935586713, 10.999174216557273, 10.73200406067016, 14.055246108957803, 13.882279769731877, 14.599059381572154, 14.52613063329, 16.503239202796262, 15.149648500879923, 5.478691026204386, 10.025886163471803, 13.021968687001795, 10.02511157472854, 10.126368109864158, 11.043982306100293, 14.360131919063166, 6.186074712417032, 9.117022765688043, 12.438351455521476, 16.41350169636417, 19.444355013102594, 15.157829273526795, 43.688655777529995, 12.89484966636068, 9.09905831207763, 17.182611156857128, 11.906514668666606, 24.620924971734336, 24.16097231605178, 17.031786128642786, 11.873174046186021, 15.684230417958041, 11.513608459974478, 11.87948919288985, 11.931585563246278, 7.208657202620291, 11.89823813301571, 16.398187232098678, 11.826316924114137, 15.172541861818955, 10.598829164095024, 14.147313280106005, 11.666478135997375, 8.709293036984636, 21.109484785939888, 15.13542862235804, 14.019769094412327, 11.435688656516241, 10.691298427341776, 5.314422318862218, 12.278589825423637, 29.21382541160372, 9.066573444654727, 12.505154077829859, 7.752405791824477, 19.495979223931432, 12.450487234599224, 15.163190230821806, 2.7361963951263166, 20.448507881756825, 12.954528215997332, 14.87081766505857, 9.924314274523498, 14.021795751592514, 10.536317356520982, 4.458862001249565, 16.241094423013344, 11.829296266933962, 30.664877379156774, 11.573200943458566, 9.483902099096184, 8.786603664739523, 37.29038353999301, 12.82661827448127, 9.308202109532829, 14.297834813664146, 13.010103391010638, 14.854967336098628, 7.813308425664156, 11.78708114928587, 11.946461146864351, 11.84470879906656, 14.034005736009753, 15.655244944357324, 13.137025260833413, 3.0483005837078867, 16.93840327200985, 6.957829949012535, 10.932558644080501, 9.1549286356615, 10.698631955544837, 18.482064926103284, 17.887927308971648, 15.632844554872772, 8.506064759560841, 13.949236869109189, 14.502328193378329, 25.449464727438023, 10.132265303633538, 3.3533059725665164, 25.733423001791806, 6.703670140705542, 9.89221651052415, 5.001302899195969, 12.53546427104402, 11.692237887505492, 8.221624637882325, 8.694231743573768, 5.297767521896471, 24.786869875015807, 23.487432211562822, 3.6858816434627535, 12.699480113568262, 6.860533921830591, 14.37493568518147, 13.391778698408235, 10.085827292068322, 26.537693564753997, 3.694885553204467, 13.945872587436513, 14.385308344521157, 13.644087368309046, 9.559484643109155, 14.535352291133757, 22.35443695761191, 9.039489297595662, 13.891467064709936, 15.302690878341132, 53.38908157722014, 58.146664527684436, 8.053417127772219, 44.97847250304253, 48.97046848190062, 51.66328899769818, 9.439191935655554, 36.82221724074564, 60.20552427262355, 9.091653739289342, 49.04326621336179, 44.39089703099452, 28.45502742866495, 35.89868526436583, 49.28169561288857, 11.558968215366344, 19.813433706467347, 32.81141290493133, 20.15374968030061, 34.325776709861536, 45.101471287007314, 36.02088314214165, 11.355588243505666, 50.86676298679031, 45.7475076828344, 71.65311502968247, 46.275751721275746, 47.89851656670853, 38.89979177535006, 27.327152519042492, 3.1645185807473117, 45.18382958435899, 44.87786021165403, 3.9861478735167024, 35.90200934655226, 31.59637994066515, 23.176396783872924, 31.685759602068032, 42.65925115013394, 18.601825090543713, 38.10772304590535, 25.74588047009702, 46.49010256380185, 21.780710768898384, 51.41296468499345, 49.73028541490088, 14.627830390053278, 26.37278446688856, 44.04094012271474, 29.11570734932406, 10.133746195331277, 30.165080038776804, 10.708678984670223, 28.050331985008455, 46.4068578643579, 22.127064964758535, 35.19124892423918, 13.710729826464927, 10.98119454742465, 17.266180441849162, 43.54908578126377, 32.368797226466334, 37.76995840384051, 30.364026694113797, 17.712017552605634, 30.442374646856006, 16.296834591878707, 43.593181420462926, 14.966068961056441, 9.7140139753661, 13.953936714047707, 39.25316478502577, 14.818045162787572, 9.288244561414743, 11.380762153130885, 39.29906572595131, 27.044916868249185, 25.00863734530902, 30.724888892291055, 17.123943737869013, 4.0875196789613675, 25.561566742666038, 9.891349512269205, 7.524875295812122, 26.78873621287553, 27.60193273838615, 19.282882407191753, 15.557093274794228, 19.384541886519063, 38.11000509785366, 31.537548824439856, 9.462141345812856, 16.129710506264026, 28.330899068803348, 22.822040617955434, 15.386383827386922, 10.564804167001334, 36.912573475561615, 16.136002989915134, 27.09539086616845, 32.478326642741514, 38.348262736000194, 21.76948015318015, 16.805751400805935, 2.5507123067939372, 20.394340714620327, 22.648749445124263, 27.80580535885683, 32.13920364635366, 30.164189634439634, 10.059573935878928, 23.616072739412843, 16.02265497586835, 17.55591506249407, 24.028839263119067, 26.942617118104348, 15.255275785985026, 8.85054043189012, 12.252712262932087, 21.612633328304188, 21.462337352545152, 23.81232058442015, 20.445603393790503, 16.752925760079005, 17.126200651051153, 37.07371225734191, 25.683033698297624, 13.946019264747326, 21.979092338600598, 48.4293179030326, 30.624323116861788, 14.046279335088858, 4.187785026046616, 24.594459555090967, 26.37061443213647, 21.14066617553039, 15.477194273872298, 21.11141650345474, 23.172851518599323, 21.94640426958662, 13.781035999551191, 26.139515966547844, 17.485906737068742, 20.435724530864224, 16.803028027738826, 28.07223297801386, 21.63686072244749, 16.9003661914169, 12.313448289535947, 24.316433757956943, 16.106901444926525, 23.03478275933733, 24.48479931869853, 21.335478076383424, 22.586159644423333, 8.756302385926952, 16.18975768577827, 8.332611540314076, 17.476449615743736, 26.105539200336572, 27.036775360905004, 10.446563983859589, 14.858404235087038, 16.26542078208842, 24.549917271270704, 28.58836601259345, 13.200062170691162, 19.33950172635272, 23.380980256018486, 38.8118127902126, 15.738338573701519, 19.33337553699497, 11.803030690321977, 41.19380454162251, 15.952908566781892, 16.514078519083398, 19.40969894468063, 9.25586218608524, 20.81101169251322, 8.381003677215956, 11.706470736414428, 18.08217302870857, 13.670522080021149, 17.735525498472903, 4.533972357011355, 18.148146748724088, 10.590506177459115, 27.46543266185139, 14.334292801396517, 13.494271411878834, 15.936359260779849, 16.811049543384026, 11.460016244980917, 19.4750517498155, 3.2465185641288743, 14.577968963702391, 19.275084533715408, 14.438494508456488, 18.005575158288714, 20.477424153310135, 20.178631927598268, 18.98683667721168, 27.02038413447974, 17.705940165140266, 11.359625776024181, 20.607399899345953, 13.896794206995153, 15.794043334374596, 17.569045999052044, 13.575060527484206, 18.872251946153263, 14.185413824638621, 10.676123228389512, 16.234476550927724, 23.505206397971094, 24.058532720889087, 16.69805984108771, 14.063735427270338, 17.440440485457295, 14.810811493525954, 13.317715477137961, 8.1401884450782, 31.35056953747931, 19.09572676385137, 14.783860130349904, 10.844759050117409, 25.522288176692587, 17.809841885221438, 31.604516699803487, 8.827132739209322, 9.467740046090958, 12.625624982602536, 17.332825272821218, 20.48067983800685, 13.454565916029889, 30.367100156764327, 16.7603868941516, 12.411564263167994, 10.224555365750852, 20.266008835970045, 8.719852940030952, 6.184035875837265, 15.523774447238916, 12.069227726017568, 21.474827672152283, 17.85928874267512, 6.145343125919037, 28.344953620579624, 11.019827484644528, 13.678557008202471, 18.629644400643677, 14.94903108731885, 6.7986529807021805, 16.33494917482758, 18.754488924474234, 15.291051369227604, 13.698467292128539, 22.3184152820527, 11.791227895324859, 10.210546092767899, 6.876214338293284, 14.867809694100945, 10.70315583549017, 14.29866610826693, 14.562856956548915, 16.491939329072423, 13.296628707060266, 16.722811054275788, 10.008422919374711, 13.430826738658833, 31.65384134248105, 41.82716014083032, 11.711655006014603, 11.860846967437448, 11.252430552084654, 22.39346933864209, 32.220526319908224, 21.06484328576315, 13.816822641291363, 14.23050724683315, 13.96362426286416, 16.95676184934589, 12.971597000102177, 10.528611281727647, 13.417635983922796, 15.833776782229744, 14.403030575231663, 16.614812055944007, 16.87631767587418, 16.875976197859963, 13.903762455692776, 14.256919068058219, 12.620491897738345, 29.70888477195319, 11.453595672308376, 10.06413200534341, 12.472196579718867, 28.259832872314554, 15.326647996819428, 8.80980379130027, 6.964031297240571, 17.24394799146315, 6.319368027968761, 11.920895281577256, 13.287846233410555, 13.444776548123212, 16.61609747124632, 13.337083018259388, 19.832423710276643, 35.95776564014243, 11.686834891760514, 13.99242544137251, 18.444604345101265, 27.063518524499248, 9.952735463405864, 10.716528424490047, 18.563094321614052, 32.084518231768236, 19.390866435155836, 12.741569812319794, 12.93740245553186, 17.033016894879168, 19.542275846405357, 19.393932396997805, 37.26699386316296, 23.34710712701794, 15.586144279142207, 27.247315991565905, 15.382974979604331, 19.66257543197367, 16.75004343748115, 11.400363088536954, 12.852573628685864, 10.153882702947685, 11.70813942283579, 15.113604835224864, 14.084282323971289, 20.273251706231374, 15.073732572973974, 15.02399580281645, 13.262368261538223, 17.745852601131247, 13.049043591901388, 23.805090211602973, 14.853332966532596, 14.320337225639861, 12.571665752877442, 7.363369509787028, 15.857951082396573, 13.382754902330582, 11.630623875566789, 11.967173509505436, 13.757192296035626, 12.391841545965969, 2.9458745866735105, 12.733431329033879, 10.224229794602621, 9.648921296414795, 11.51141198588993, 18.401807287183072, 14.0159737856557, 34.708176972817405, 12.550651299940649, 10.867764298595866, 15.50272336671719, 8.102130174907646, 10.208729586374128, 13.187231532855995, 6.712517320536482, 9.783805641394052, 9.904360371466172, 10.661168797953636, 15.852994775310101, 14.659788558705024, 13.799207147317844, 13.990543808999998, 9.77393812930276, 3.728275507525709, 20.801273655964188, 12.695048076608124, 16.723926610891166, 8.729123800123231, 26.365869178755016, 14.611178896494705, 7.663704222073548, 14.197696385668893, 8.94744910235402, 14.886971399486876, 13.886046664734916, 8.795021207472695, 9.77579548374294, 10.214653047056801, 12.378566260534742, 13.859979483420446, 12.7396449213534, 12.781295737810588, 18.88419458640358, 13.81277860439308, 8.995228732345767, 18.580403471614378, 14.266848817516996, 11.291467103174144, 17.003497831796082, 9.298394027533845, 13.594805362823417, 11.230374195141993, 13.521418089657766, 31.47521239923549, 11.446960022935633, 15.058343105363846, 15.13461401291235, 15.842077383288338, 13.47515234609183, 10.63040588942391, 16.776517888708558, 20.09369993116046, 25.66320420332436, 11.018702800364963, 11.025434356217243, 2.8383342393025934, 13.348014194786018, 22.01442319569461, 30.560248553771824, 12.992201194689992, 11.157248068784213, 20.2796543052997, 12.461682442321463, 20.271187825929616, 16.40051726349559, 11.005870091108513, 17.88048107221008, 17.832400583587308, 10.341963336131778, 15.205488768466468, 12.809772892656012, 7.251527406200459, 16.39602890673316, 12.889759427174134, 15.81613571915701, 22.502845793095787, 3.2416694408913957, 16.373988048523383, 1.9241485226513149, 15.362930807179096, 12.15246963832446, 14.043066962612542, 15.999251725356894, 11.532856348172524, 14.49144734153199, 7.876225971512477, 10.997698059549954, 20.530455973684827, 8.790099518137882, 13.143198976695693, 15.801404235169713, 20.327397413405308, 11.104282376399304, 15.235761485538129, 14.782767133193602, 11.609637471398486, 21.26899810045476, 12.996219548989476, 12.683523769025626, 11.287700912855636, 3.2314796987116448, 24.73830400745093, 12.227241198399653, 3.939722808034401, 7.423761332270073, 14.758222919237623, 21.696163703907633, 16.115269660356848, 13.60574260142794, 12.646443150328144, 15.54689581848613, 14.685032591968778, 13.76528200217855, 7.7909641347744785, 9.19242436714186, 12.50400636974658, 11.247530651643002, 11.77191533929664, 9.161359359295826, 9.155276681944907, 11.77493439070366, 12.316662987004392, 11.368328568370055, 12.697601457503003, 10.834160578198892, 10.403490511865698, 9.374750650703476, 10.394123994317157, 8.108167584410772, 10.750553945925077, 10.02567076467334, 11.989532267403343, 6.6107821324042, 11.769205017205017, 13.061492233365762, 10.601984621286862, 8.771175362384634, 8.706241635259447, 10.054137108563275, 9.210616390566026, 12.20695873223287, 11.026400102698057, 10.9485696961982, 12.380119157001669, 3.4355581602297036, 11.090320411868065, 10.970728773978, 12.08947603587503, 15.62301796569443, 9.703796165335634, 7.638613506863236, 11.728222524473786, 14.246757323913656, 6.1424445850403115, 13.398676393566054, 9.281740498188057, 7.159782811679483, 11.484602811223857, 11.72699223278628, 11.915917928144792, 13.63871971150624, 9.744983903398238, 11.380461773740006, 11.829640003657326, 12.685536251090758, 2.1054970651884513, 11.403956713807377, 8.726213080712629, 10.280309612343824, 8.523461420310154, 6.467028785175304, 9.617903996227756, 13.993365986915377, 14.136545945600298, 10.301976380223136, 11.704361080797998, 11.364585928620027, 11.15541195899903, 11.041141772488064, 5.85781599289254, 11.29148214547937, 9.3614648236871, 7.368520148519501, 12.137364327380036, 11.525783904764639, 8.613332750633374, 7.360838139041577, 7.243138869449357, 7.79104270418175, 13.072824128485891, 9.357719437783347, 13.819481859629777, 10.815362479615871, 16.866802597772022, 11.71759178184137, 10.752729529167834, 9.434341791209299, 11.243590475999728, 13.483299457197335, 8.234049355789537, 8.155818083802753, 12.677842429350395, 9.827160770269552, 8.281652936531273, 9.152358960143191, 12.864734702655099, 13.013874355804157, 8.173443588081433, 9.801333366670592, 14.907972358452549, 11.265179102887018, 8.548527674654206, 9.915707650237952, 12.31262723583083, 18.597370879513086, 12.339077719757466, 9.274079070805726, 13.654541702113175, 9.945561324573317, 6.27595406815193, 13.027159925502723, 11.9555423252545, 7.6006581964995155, 7.1410843370142105, 9.834893906213757, 8.435730582718504, 8.907569359176298, 16.812402201468213, 14.590101117369064, 5.716585842318019, 13.774894442560072, 12.145200881613214, 17.508157179534205, 12.880852187403917, 15.217675516142057, 14.59111789826364, 5.268568968889059, 15.715264969247388, 12.489868315872085, 11.310107809406786, 18.35636453005629, 2.8572234569829247, 12.258765628419965, 12.936116167499934, 10.460564732829381, 15.894561655045832, 6.1944903990186475, 17.515746693973792, 9.684892684411109, 12.2489876091924, 9.25141689318349, 7.653099788232099, 11.440674143752332, 12.343141824960473, 13.662574173066735, 15.442256271029414, 12.610738895518018, 10.340930263117837, 11.752672992373851, 13.176298255959848, 13.460105258630259, 12.790060489391097, 7.611789663396835, 11.445543598047765, 12.331736310619636, 12.92951907447856, 16.739800432883257, 11.850716127719481, 10.291552278867213, 11.43908371491238, 10.41453554844891, 10.282253802674735, 14.27527958161289, 5.34573576360202, 15.048936110089342, 14.081059344096325, 11.22554259603766, 10.550858467891969, 5.294734435262877, 10.006096284300165, 15.044173325442156, 12.02243778292385, 10.765012232048994, 10.024283479423103, 13.705379433822165, 5.1691798197843895, 11.376556947133034, 8.029440682113279, 14.778587408347542, 11.551719966277162, 20.827262696752257, 17.05123009829823, 10.484700289971352, 10.93967128268328, 11.718932993000987, 5.718384666443321, 10.926405467356856, 12.635574065553241, 7.852352450143215, 11.555620517167585, 17.40787611701263, 10.154387952638357, 12.052692516850348, 16.576836337856076, 13.326550067716934, 13.793368677100894, 13.839337866356084, 13.037009082331513, 9.930884718011148, 6.776635234045586, 36.190649158295884, 10.241769027197432, 12.605416448017067, 12.110666095714034, 12.765410210032572, 11.906792602263572, 10.79773185188278, 9.883162572767352, 14.000192513015802, 11.543534465253016, 13.376120763454962, 15.974450346817838, 12.296765676874555, 8.740297853899207, 11.29826817354727, 14.06360825497544, 13.033191819154146, 8.687647039338412, 11.417494771508531, 13.576811167222615, 13.34126482267589, 10.085681342990243, 14.36562174961691, 13.60934348633268, 15.146000093596117, 9.088667637179663, 9.281883147776943, 27.867300686679304, 18.45586905478721, 8.189248387326419, 12.058280619664135, 12.422614432405815, 10.953624186717997, 9.13487980097487, 13.044359184822781, 13.713533801460711, 13.3979783253913, 13.348399476488725, 11.627516838963437, 10.10092084134513, 7.909403970312954, 12.535289078230385, 2.792183029431867, 21.148014457081818, 10.593256435276588, 13.250562492322564, 21.953142532160083, 9.250695901373232, 13.685863010799856, 12.637696662147047, 30.09410613357517, 13.63666763129371, 13.511272338793821, 10.293519941065714, 23.800886113827406, 9.501128527085832, 15.122596665497305, 13.732003386392403, 33.71641103650095, 12.039929571524965, 32.372304791613615, 13.434926507244894, 16.57246371904466, 12.445244207195017, 14.676291700838743, 13.717634101166928, 13.037258151618103, 7.437861008532669, 16.242776860879008, 12.752795708094643, 10.550327850307138, 17.06008188654209, 9.123904494454566, 12.049923767273263, 3.7207996407450894, 10.275507912182537, 11.127696420475239, 7.987483197518536, 9.63413907965059, 21.21821017834113, 12.652960888708652, 14.490890517557782, 9.88405462679638, 15.628143056490321, 18.547767996866664, 15.744710747959259, 14.263566143522791, 12.668936290360579, 14.616122446544175, 11.890741845254283, 4.3135874148690005, 8.07960061861517, 11.182815424283156, 13.935483893295048, 14.340849786349148, 17.185556879914596, 24.019444434835737, 14.693522588691943, 12.379859576741977, 10.70443090616655, 14.869679435145013, 13.81053725548173, 12.259880050955504, 13.815297393995904, 42.602220375803924, 13.390344307170905, 26.87434115125071, 14.232275863341998, 15.798636500651433, 15.656641623792256, 22.440147382588176, 19.435273338162915, 13.406722132915247, 14.712210058874522, 16.667944056352145, 4.233297858987652, 11.473165071897316, 24.10043978311993, 14.17685787779304, 5.530671459013087, 16.11082810599435, 22.552670171331933, 10.908636135977106, 13.272002048129952, 16.306427010682402, 6.267983273097377, 19.56409760053447, 15.418999776247095, 17.74625441366451, 13.993530081009345, 15.690583174234655, 11.893323418615347, 20.912812345627227, 14.45963296194833, 16.34926239993498, 13.615893684052166, 9.85292695682324, 13.479026628019124, 17.514446511350314, 21.404290282021897, 19.277668547106163, 24.457299564642458, 10.664035389424079, 8.772413485989613, 10.275939497792793, 10.085110252669084, 14.796536859692589, 26.70704657773845, 10.363925041392015, 8.711044678955643, 16.254527906636998, 7.339675563900379, 10.649569168161399, 4.298801960844935, 6.342677391599254, 10.217571970879584, 9.30330459966247, 11.983044527862761, 11.3459354053755, 11.115418554269946, 7.409565279794625, 14.808041105579337, 11.353992509723778, 8.167288648057687, 13.562357933033242, 8.160577237052717, 12.245543750926588, 26.07004931749055, 15.20122018388506, 13.271118394775517, 11.972527080547593, 14.798416521474886, 10.771891616264185, 8.204802332953596, 9.78490386529535, 11.912998819059721, 14.981929410250675, 11.517175006408367, 15.479800185751936, 12.768695687645389, 16.83399120366999, 39.04211177757026, 17.404135046255416, 9.919634543059068, 12.828815973403879, 14.123095164394432, 35.71754201882236, 24.9028504081994, 13.742455203250486, 10.059421493788399, 20.859929996448354, 10.828779739723911, 5.760069872160916, 12.16169082263511, 12.277188892452344, 9.967169768053505, 13.995965527502811, 10.199567128708239, 12.48525805793513, 7.084752551471761, 11.548206585813338, 13.17801134185732, 10.745074911878412, 13.572144641194276, 10.571677895709813, 6.023314119808534, 7.40524418973688, 14.224178379768555, 12.520643328519219, 18.617147547769857, 19.988850496225258, 9.602708198797409, 17.19842677940638, 6.304193325653224, 14.671452605265541, 8.242015500769062, 11.662654545000272, 3.6484319874004125, 15.96768552328404, 9.41980338880545, 9.302238293236977, 2.7293671231292915, 8.813970467499457, 15.345617119599114, 11.300822817393263, 16.96607903207903, 5.563277282615257, 11.47388767967651, 13.698795626920987, 7.731127824439273, 17.369883480898185, 10.15686059629695, 15.632461359790309, 14.14999981969977, 15.17003517714761, 23.22577106653792, 10.554410425622791, 14.114773093312419, 6.555949189666959, 13.79704824156764, 13.38717391933547, 15.551235470956058, 12.563953810875404, 14.243909128341228, 11.86083793000015, 14.915675368880525, 14.181816663142282, 13.617163667265945, 5.645626478294389, 16.0452064349731, 10.778959594155413, 14.409460590828058, 12.76030596715129, 7.2667041648052875, 17.09496871989442, 16.332212311716486, 16.96814301333342, 13.272463845301472, 29.339633236825694, 40.734621414113306, 11.904395060138988, 12.792421921650176, 10.490202118079456, 6.866643585576056, 16.38746418880397, 16.64728695910263, 19.984484195736325, 21.2558248518767, 17.476808306628957, 23.530906876601914, 21.968646015422447, 15.649164215864207, 21.25572207272999, 10.157426932761455, 28.45468464376985, 13.92497564455436, 10.966505017368007, 14.343641344796222, 13.643879643640675, 28.58683000839887, 13.587853467239748, 20.96135780722545, 2.690186352177862, 16.654050998406706, 27.204523524525978, 15.933667675873862, 17.20184772521379, 17.234553835100137, 10.769008470417708, 13.560112240651595, 18.67924198573185, 41.514332349023505, 11.441571000497651, 18.272282632400277, 14.939286199911203, 12.662093819256196, 12.305956049337317, 5.929420277886118, 12.103022082453213, 9.939349063513992, 22.869333800394614, 15.234622728232619, 15.279166775493936, 17.25343476120505, 15.960476834244893, 14.810295804307042, 11.81686937235235, 14.698212276250315, 21.09611893118959, 23.56949816526274, 14.097492937126477, 13.246814580260885, 11.110908511527231, 3.7033031032327046, 10.835006488797857, 16.372219929036106, 13.052384403544577, 13.669209141554866, 27.75812773771695, 11.018049274255159, 9.847892597701547, 12.5965787323913, 13.312745213544842, 9.117813924998558, 35.24624836927778, 14.534603034710392, 12.156600646465149, 7.4094310914344055, 9.95580712902247, 19.580231890658375, 12.991681357112013, 11.824486596643801, 12.1023432614599, 11.181052253138326, 15.297240289047934, 24.73370498748718, 23.54498390474293, 11.124082273468828, 15.52714945721409, 13.224273781627103, 13.407765594769488, 10.057398482194133, 8.693593386072365, 11.149620871807691, 12.532169081576722, 23.003605250772893, 14.655355738481397, 10.127959766554971, 12.19411891407734, 10.828824318020072, 11.016697385605092, 14.116109893825081, 7.354591821614271, 11.130694220137213, 18.855786707975415, 10.679507859963, 13.334829309665226, 16.918527913785795, 14.443896336059879, 20.178898713495027, 13.497351018993049, 12.416131978109606, 13.916473425807304, 12.348841824521521, 17.296565180137094, 13.587888019496434, 13.569253478060753, 7.881115950925612, 19.588852024020717, 15.099125881383724, 4.289090437928488, 11.135350869383457, 11.508689005772572, 15.51611561159952, 11.858978386517567, 13.357926477758122, 40.47054638565195, 13.21545035399383, 8.351602202563198, 14.91614056490465, 8.145321770152453, 47.83774840979582, 13.700830555512647, 23.78906770761236, 9.152118140873439, 15.71342105280341, 13.172480709192214, 16.347677897782184, 26.694886087596625, 14.839842297491902, 15.979264765463288, 12.848571063248754, 13.12319735711103, 12.223739344973614, 12.269336894185965, 16.10657087568005, 15.235660477779666, 16.6089088264365, 12.941353944584826, 8.897358410138319, 12.595625226049268, 10.27064920177455, 14.096546775576888, 8.549678412003306, 11.111555560183426, 13.833628633492413, 16.337184986275457, 14.30607969857994, 15.16670403044668, 12.55267075574102, 13.174631095476393, 16.07745978601777, 15.260107106386906, 9.478331076349384, 14.433741350599863, 9.01129615879931, 25.592182723732787, 12.492082371862482, 11.356767111440563, 12.090929171014915, 24.723984925119275, 16.709257642374823, 13.50048876637638, 9.22305634882833, 32.060789489155205, 13.370508668218546, 14.205746055238317, 5.763166706464486, 18.73007352177176, 14.077817008635295, 18.677667295867472, 17.154598102800787, 46.11667943741041, 13.24474919044552, 21.51653590726533, 17.43980037747423, 13.115298689578374, 15.16321950629884, 15.190725388360171, 18.10199540898408, 13.635302223509465, 12.476908318057058, 11.743402653020176, 18.608322142990126, 13.055964940981777, 15.346615090067226, 9.034168139947907, 11.450221119657396, 22.7049337680727, 11.09060229999108, 12.203573848938323, 14.00758285297361, 21.65666327576247, 11.380799941942293, 10.202587756056865, 11.604598564162695, 12.905238470831996, 12.167005228026337, 7.618626918156033, 14.520975551591318, 20.03502960248008, 13.619083853959939, 11.543655544627809, 21.909925518925515, 13.899574638970742, 12.520015588820733, 12.94071903381443, 9.530382262843501, 11.278348692656996, 17.52532527001422, 10.159619098118583, 23.177216558904053, 10.965586154772096, 21.280207234904257, 3.1952467540972482, 12.33662136216896, 9.50588806306064, 10.224088809761646, 10.493837672357692, 8.078537209750587, 9.108044476750322, 8.937107201135007, 10.391673323707925, 6.031618945051104, 10.658099538351829, 7.810239132759797, 3.938234180019408, 19.385881787764742, 19.07384328134476, 13.466635586369978, 13.226984568797802, 3.1948688147814654, 22.716508344692713, 12.106929592249616, 14.38789144612697, 53.43750456681262, 13.989261254461905, 13.447321962737794, 9.633528213354886, 13.84744125174294, 13.360945423173593, 8.054174730426617, 10.128407894578013, 16.52411196241589, 11.755304793813542, 11.953251748702979, 15.697971128531597, 20.587330077086648, 21.772668830395617, 10.366783595725035, 8.861591273541274, 11.018612975300865, 9.471043840466153, 14.685248479636497, 15.101353727338848, 6.932049073129571, 6.954063725586972, 21.477803012290842, 5.614239022703902, 21.973202309905112, 11.914286178643584, 24.272311141134605, 15.115567551151404, 18.24254319667541, 25.873742317372866, 15.736136873718142, 16.612386133638193, 9.570878078116419, 13.932245918416791, 6.968853681825423, 10.96216061971949, 12.667163431168074, 15.173830638580862, 12.146516238940896, 8.526970507733974, 13.863277129271696, 17.24778135297042, 14.177609866105099, 12.247320989639773, 12.749193343969347, 10.401432298468247, 13.231809776484504, 10.62422125442758, 10.435539565842266, 10.625228021279135, 17.898117104302923, 8.368411962128897, 12.422132766458379, 11.160281026589725, 13.270759948191815, 12.842865480296307, 9.649855720359533, 8.865720289155252, 14.706960281058603, 15.32322375336016, 11.815009556081442, 9.526521459367697, 15.268651976309402, 16.828507845265797, 15.520169183991623, 10.4923016050119, 14.847526449943244, 21.467393343621158, 12.548427092248255, 14.825655903343737, 25.64017282161358, 29.307362410938346, 15.506060537934978, 10.100530131590288, 15.687719287602139, 13.515956252854219, 24.993722185945455, 12.907531012931036, 13.104969793687662, 12.634218325315725, 14.006729507106481, 8.765820822899473, 13.008746822213734, 11.99764763523711, 10.43477710285172, 13.13872577446073, 27.041563528030448, 8.553580448175788, 10.234927414192814, 8.342328798414497, 30.326536496682845, 14.396121734017337, 11.781154985819523, 12.223805161231361, 7.776265661542357, 11.06856657329598, 11.382357446625456, 21.564886907450127, 17.924616199140992, 9.847544882211503, 26.63784821682159, 19.233083329438596, 15.599476931993896, 14.236852916105724, 13.06770187250252, 12.508961020051176, 29.36758467719813, 11.613332970960771, 13.028502086743817, 12.112640285564819, 12.582811430441362, 21.063335108611188, 14.064994637313545, 13.133832313972832, 12.385122038006712, 6.603788015081032, 12.459306687928146, 20.69049152103486, 15.076928273210521, 4.6356217985740695, 14.275342633373441, 8.739993685609733, 9.652066356350288, 18.17557238859791, 7.57178189035858, 13.048862284725638, 12.506920514219129, 11.794796428416783, 14.734499080345952, 9.874201332832808, 3.7924178360084753, 8.351973565090665, 10.004445433835416, 15.305957357602535, 11.268337678094214, 17.188490693765807, 9.533008511737988, 13.775650089568085, 8.49992758386426, 15.613918373412902, 17.540785492262508, 6.772005090742387, 13.121623221733344, 11.435906575684086, 7.69104991708373, 16.400875413962552, 7.038394686504861, 4.719684788757565, 12.008337588495296, 15.598886622858569, 11.26298877492514, 12.930087661717232, 12.837936281012894, 12.667966527247149, 13.451286975839926, 13.831841095838092, 5.069503155989339, 11.498884051433668, 11.86615288543474, 20.70502834017809, 12.479227496775723, 10.536908976501083, 12.830005665754918, 13.880615916762983, 10.153288071793467, 26.6234872227478, 14.821477149661932, 11.442217703769515, 12.404086637679763, 23.703191070367545, 18.355852241310366, 14.589469187675062, 11.120469365548479, 15.7431759247819, 11.86742375724887, 13.988447667434087, 10.758014878879715, 11.246724864651172, 6.970818001177851, 8.723542808356742, 21.19506786588266, 3.097436366633961, 9.515162333796093, 6.016875848635948, 32.95145505876143, 10.771409619648944, 10.978697708772673, 10.360289387093003, 11.058598968751982, 11.470811889278764, 16.40855415018384, 11.23712005767115, 13.174941690858944, 16.588076859260077, 9.970583683301266, 20.43341470517787, 19.981634299995203, 11.024028141186154, 15.4489401278546, 12.039424293394378, 9.597898476121655, 11.491598926408985, 8.185617270294642, 10.419418774733044, 6.745143703130443, 9.149781895534044, 20.46264403643312, 13.040899225728364, 14.092751771596895, 37.46523849699976, 18.60493584267789, 15.69216745754246, 26.209791427468012, 29.24668468884916, 9.800524621553107, 9.195720509101362, 26.59278352490589, 13.191159525934248, 14.333790609516274, 16.297795213925166, 8.368260982418644, 8.742759636482752, 10.053773255333114, 13.185525229451796, 8.16872603778755, 7.706360926464651, 11.328241327390728, 18.104601212512964, 18.203392790602937, 11.934889192048336, 12.508886075284853, 29.22707508133514, 27.477294178101452, 12.530769460954547, 13.927798218998063, 11.896377464262017, 13.204512116640597, 32.21623021990929, 4.307884926638956, 16.74234706239346, 4.517055751343823, 19.089989230239812, 9.712144228525712, 11.87742716594471, 17.06552465565623, 22.03172587522706, 5.195886888553136, 7.353595706302345, 10.60797397564796, 13.91961484581118, 21.788930966591405, 7.952473598684158, 24.384814106372918, 14.600387007174401, 13.259064539113782, 8.412663669663663, 31.494959624852655, 24.340804514521054, 11.917604048284542, 30.014960450986933, 14.627654559113285, 16.926292128580428, 16.303814913864013, 13.327254820745472, 12.918887265873652, 8.909537311773388, 11.032771898600682, 35.68787138348458, 5.810279967445799, 29.14476492556347, 4.935192445911138, 39.547691047046605, 63.50817517689704, 47.21862436883723, 27.652638771572267, 27.57326574183483, 45.128106310356316, 69.93027433458357, 50.1033111075431, 38.84620221365286, 20.414217026331656, 33.97478892632627, 49.29441939065837, 33.265190492943326, 8.181679299833483, 8.485675805230814, 20.575539969691814, 33.56842181666388, 20.681462882844524, 5.677774136884194, 8.814626028161594, 39.10644344071756, 38.583925781920584, 45.68429118439182, 13.82448853813848, 53.173593606084324, 45.14945227883571, 26.354667803011328, 43.86321048647822, 41.96656865747131, 35.62634817842947, 47.59472137178944, 30.426589123595704, 26.68454156773831, 48.76539311781532, 26.46053837123949, 15.711632703590968, 32.22887423014573, 26.21825438280043, 57.84724586518421, 14.071697289649533, 49.83815518296635, 32.11914659667819, 27.92836138811894, 24.9907201222625, 25.474082014552963, 30.906184327246848, 38.806143103638796, 42.639346737071115, 23.665248463658635, 37.28024644340007, 48.59161620093586, 23.852176929745603, 26.58703053553321, 37.00962061944762, 15.331200909470647, 43.20714582873392, 27.0737881842263, 22.4717994785155, 21.045621531289495, 20.005691032823382, 28.13735941823914, 27.55953819058695, 41.93869041716797, 41.24567155067156, 48.879985826265234, 24.208578205695247, 28.695966100213372, 21.391126995341235, 39.07956093382717, 21.847810812815872, 36.23067423804267, 20.232407472086074, 18.067771288238824, 18.9326508679891, 24.30537759654874, 27.115663984355866, 21.00042444976515, 46.011168345543325, 25.588776716512925, 33.870252100960805, 20.03938417877272, 25.931366186777588, 3.8594076719900072, 32.52955347633359, 10.00083319252127, 40.21774556304549, 21.779110842881572, 27.43044422489276, 49.01586586016102, 17.258833279896866, 21.43903944338294, 37.700110536049785, 37.01833846708846, 20.86882397046483, 45.200800648572574, 43.03903662894838, 21.33419116458011, 35.84446751610104, 27.430107105169807, 8.401692685555986, 23.14199255132265, 26.58153584069296, 32.90627088155224, 48.61276729642908, 13.966853165881517, 21.9568613776202, 8.313796958194505, 23.004834483788443, 17.53037579488013, 17.549523224181875, 24.804212561453852, 21.622928434388015, 23.622595800790645, 15.64097341921065, 15.491806426184612, 12.707374874652345, 14.531461776295973, 9.759125447314917, 14.875173295176369, 16.42366362757281, 14.091056756754215, 9.889046321881453, 14.835334760685003, 11.426875029985643, 21.000305001690545, 9.877507587066944, 20.637510419547933, 14.623093793033371, 2.8061492826432404, 22.772931469915225, 17.91515214563482, 9.288757734805793, 9.31623350918975, 8.92952073801277, 15.036841468504049, 12.595306125705093, 14.603804157587051, 20.256548984327313, 19.114551856656327, 2.868538502460937, 21.430938953601373, 34.984265484515475, 29.529968970941336, 16.884663563086058, 12.301227904873516, 23.95347862581176, 15.196821980032851, 26.591362620549383, 22.656054908925483, 18.375200215264986, 26.946159890195812, 13.90475191464452, 26.541565794223345, 39.41609103155185, 16.64131780949915, 23.6772355147003, 17.791983722055043, 15.290726234678637, 9.007505525517123, 8.79439491732534, 8.89638590979597, 18.070829687828248, 29.882293376725624, 18.318378749926538, 13.815968018774887, 23.338175152307873, 17.173946924119914, 18.082599100185895, 30.788009786781828, 18.803026611090115, 11.3404349734982, 42.73271646282157, 34.95711122869506, 20.20819056481015, 16.717640956038846, 8.612414976361864, 9.630451745505823, 20.952014116138415, 20.069952389844417, 16.764022186044468, 20.51157908371874, 28.823180866459346, 12.87843183205683, 13.969268992191193, 16.553780393136652, 9.656131564631233, 17.560324605842673, 20.974059967065767, 9.241492745746898, 15.668532896491444, 24.664993186320416, 31.015396697171074, 19.80514834789196, 24.09293750984599, 14.866932600861096, 22.988945526695524, 17.427097340330533, 22.67001462181609, 6.433075445429888, 15.002220887108379, 14.849364040947007, 14.54081167747228, 43.424657895619376, 16.73141258859819, 17.105459453639078, 17.476951073479327, 21.936037775078958, 6.832386006446814, 19.58812179209274, 15.386999205341708, 18.60292552946571, 12.864268942897104, 34.94413696327857, 15.376801436476738, 25.14408108224478, 17.486437347157676, 17.671810496487407, 10.495121596716023, 14.984542532107819, 36.194288012096834, 13.098613878871634, 22.631144027648137, 13.922779746255447, 14.668010130789613, 24.195308301898304, 11.719850308775962, 14.934047340731167, 13.524765802844266, 13.866080668061214, 11.731334429678832, 8.001628358219675, 13.257277645072971, 11.145958011478646, 20.064934705158382, 17.10313037986265, 13.804937614349797, 9.915243046765298, 9.21699716304265, 13.779314896203443, 17.50357983192695, 20.68999905511314, 14.571326054598995, 7.7333682715054, 15.850760174272912, 11.484768467669625, 8.174451882249727, 14.433897313204508, 33.19796840643017, 26.05917305775007, 15.062450275959236, 6.2878944583691245, 10.77979058374043, 24.002863339318385, 14.113922393782687, 16.291289764962873, 13.930371964321653, 17.252399603965003, 12.957681076780862, 10.547079976772396, 31.209049598183036, 9.960621695618297, 4.752144395881987, 11.12553848566488, 49.448422642172645, 10.918785186025193, 13.678805544036484, 11.309421890419824, 11.72661618060302, 11.153980194500946, 16.522714019912552, 11.456574088747296, 7.962826730630908, 12.608988571651965, 16.942426079254638, 11.066403762517256, 12.213614456903626, 12.404276098601148, 12.755145048259331, 9.609927043665719, 13.327855689340195, 11.570528782347832, 9.525937502094854, 2.133776625570521, 8.678262786659856, 11.424967676048245, 13.23899161627265, 12.174504210827482, 7.062756575088192, 12.322944311849989, 17.510281348929738, 9.965888987840124, 12.882573293325246, 12.820929016827904, 13.920380544313792, 13.585644884579079, 13.380428806224222, 13.039505649507587, 16.790120660107686, 11.971243499733827, 15.217301991229156, 13.769528028508132, 11.503195889964745, 10.840856987597885, 13.646755952691636, 12.681422035426374, 5.3543115200305476, 16.537856794762195, 1.6585809256286788, 14.311031032970792, 16.129440179279097, 13.724109139645334, 16.31185732740144, 16.308456409490894, 14.935736191591163, 13.628405863864657, 12.018287681000913, 12.146427014811458, 11.76210365869284, 10.655097831739361, 16.125548690609957, 19.304232953321186, 21.130108403306927, 19.925318500943497, 12.499174557296847, 9.869571885570158, 12.877208790468023, 11.516584509215702, 13.55568099985958, 7.942257069727659, 27.491220937172564, 20.102400388440252, 12.580219663245703, 13.433075001689133, 13.637526247040705, 11.319301142656792, 19.25658671296782, 7.297002286665413, 12.949230094107765, 14.633073566182697, 12.045702865365037, 15.999825202983285, 13.27198266615714, 15.411711696617871, 14.246122509316397, 12.490476067330293, 16.665599958242783, 92.96312332928511, 10.865285208063671, 18.859438645159013, 12.524108103592313, 14.397427543734672, 14.607709461838942, 15.159901564094511, 15.684473642648321, 13.726744528001706, 10.563613658613614, 11.652388896316664, 14.118759369395155, 14.259928345935778, 12.452537595377349, 18.18751946217894, 12.613290092461876, 10.52928316047881, 15.21552385814034, 13.504336303619823, 13.813065205986637, 30.969997739671527, 16.324060497615484, 13.354226958139533, 16.898727035273872, 12.474416741466047, 16.158556091295022, 26.921278178553, 15.625517424044826, 14.712641384322648, 5.87432060975461, 5.4754722650434955, 19.16086669327403, 9.480316424721213, 13.700120421245428, 16.988498326126845, 14.444271667247676, 16.72847857898472, 17.76174886112041, 9.933974894131692, 18.537725206007444, 13.804227279415487, 17.265382530421263, 9.482322415122615, 13.61425356291604, 10.122108791556006, 4.238282752628005, 23.825453380740427, 10.861033765744667, 9.378434521308705, 27.937493224970094, 16.500130797613693, 15.135694141374561, 13.899330847996172, 12.51895884809908, 9.055511046168379, 10.15132946624553, 13.180460233918117, 13.130033793438244, 25.522565031223433, 12.694585217795915, 21.605735171776942, 27.29016872883817, 14.937175469075923, 15.210771699581983, 13.618589530936896, 10.913029564343727, 12.816793920574174, 10.399552262349749, 13.378285313457477, 14.084685686212003, 9.55544625250412, 5.852739694545083, 12.576720269979196, 16.28645379073023, 11.255406669708897, 5.868464283723592, 13.713385738756156, 13.383132025245436, 12.523634932847822, 3.240311410307096, 18.761602235771186, 16.49783855510821, 17.040075816292926, 11.26878126106016, 11.344893400191738, 15.186496919220817, 13.508785011316368, 9.114996748016898, 12.709993159355685, 14.956262389419246, 14.253339698286245, 10.157743053983896, 16.049909738809077, 15.130498283829338, 15.523091237292318, 10.356462344327326, 15.23809816812874, 11.330745023617004, 11.049648551507195, 22.103599404539306, 11.674647758155956, 13.484484355336338, 15.01130204333617, 32.997577611379455, 11.954520504595243, 13.17941021315302, 39.534159176488174, 8.59227339554151, 12.091840074479592, 12.056466665232202, 14.42181066760994, 15.943060745193225, 18.466387044693672, 11.069009945449917, 13.058195698353607, 13.472132490225198, 10.774630415142294, 12.366607719914692, 10.455104555354309, 12.23419756340435, 7.48414120470061, 16.091609247033162, 10.175516284558674, 14.69123576181834, 12.093351638792122, 15.112249793252522, 19.531017955162206, 15.319556966128426, 3.7249827911464393, 19.913198965778253, 16.870381302697858, 10.605341501707152, 11.536817813767792, 9.416859300467229, 12.590979250019034, 12.732377098813892, 10.030731463260837, 10.687816467867794, 8.296462689028072, 8.213410418390007, 9.674721551921031, 7.999280946592007, 17.604476313489176, 12.088815449900974, 6.08092883303823, 11.693839256916492, 6.6943748728911245, 13.091612570337466, 10.56843434882318, 12.513337112712831, 12.476242386672498, 9.523435486048054, 10.827698794613836, 8.291175062061992, 11.033332322552493, 10.206068279014833, 12.898284370834368, 12.631688037732271, 11.512358484353062, 10.765159703976382, 10.769749382069858, 13.311816588416367, 11.751095069417346, 9.173620058198752, 11.870984034842012, 5.6450942772440245, 7.9563563936584885, 9.502682374771773, 9.313948390429779, 11.354820414579672, 7.985298537016729, 6.816937514187922, 13.215964301079572, 14.191900186654545, 12.844299995630156, 12.207381781989072, 11.246197517540562, 11.37531089529841, 9.34700706788173, 23.024066738816742, 7.734738855048493, 10.290772387476828, 10.079769777810807, 12.090890180353414, 12.460566801307904, 12.043834370364575, 9.980461340332171, 6.756990660819619, 6.905363655557788, 11.59185381856706, 10.032920552970797, 11.611061389016982, 11.3983604256819, 12.565184282951314, 10.256859408876956, 12.873590429540332, 11.086723697802912, 10.809158531809636, 11.045148327427372, 7.369813608611552, 7.051053195926757, 8.135458395609461, 10.639572697152731, 13.485301919710238, 9.548760333394204, 10.30581099895505, 12.922190903081047, 10.803220309105408, 16.85325134803314, 17.13800220543741, 6.012083862102539, 11.100582918470415, 9.136571839037051, 5.232398127108653, 8.302805733393086, 10.04568020333757, 10.947381710244704, 15.45760339531719, 7.687492465739823, 10.6664307735113, 6.346023391641032, 10.041023513495002, 11.522415709711865, 12.534239642302143, 10.947272160320903, 11.840512852870805, 14.816817247976187, 12.855685437244135, 12.010674256171667, 10.479828699587692, 13.189420157455057, 7.059497745305648, 10.261807293453487, 6.79837272124248, 10.623479772054898, 12.973064115971036, 10.572799929545756, 9.856217574585434, 6.1979639427922635, 10.741507625552517, 10.333247079587052, 11.686326195264265, 10.1253952917052, 6.823108753071775, 14.637043805405984, 11.911954603865173, 12.813733133290508, 7.026462843656758, 9.715291958207896, 15.516006815419384, 14.112784070934223, 10.461674553553417, 13.802901228860806, 12.080074128575419, 11.47053235034099, 7.066532677406624, 9.398707832264115, 11.308510978377836, 11.530364981206533, 9.69804719295094, 16.825331274640515, 15.305038069353726, 15.650287478946924, 7.988060089495261, 17.374787480394524, 10.42898820511428, 13.074935233329317, 11.992856113800746, 10.84344588929303, 11.923303820318209, 7.744194294331837, 11.060553689129305, 14.450284342248743, 11.026740836496012, 9.855518345664581, 14.857404071677088, 14.36963457156878, 9.649668646369772, 12.392781624807936, 9.121242768864622, 11.417141121737023, 3.191550072721772, 4.594509017895472, 13.165371255650662, 11.690659353631105, 10.929487854578005, 5.080796200346435, 12.879974039763123, 9.845412636874386, 10.596911752944015, 11.122328482079007, 10.995365767439427, 13.430953671824055, 6.786670331768469, 12.842969372989312, 11.903206776574235, 14.17285853516967, 7.18719092916389, 11.944786094453248, 15.284082207152892, 8.829025870088286, 13.333694589414998, 10.30865218851072, 6.399639422404348, 5.9948365862482245, 10.050911182215529, 10.173958925106318, 7.388338216879066, 13.708583465490667, 10.47996296860632, 13.895579837313875, 13.162186899169312, 31.548279878310943, 7.5544482349657605, 26.77498301548559, 10.245620058562007, 12.203848835066607, 13.666590841889821, 10.334226688506329, 10.834220631785763, 12.664044541758557, 25.08564092973303, 12.168415324572818, 13.108928375276644, 11.40048018574155, 10.794274773534712, 14.286078159800297, 11.659669479152353, 11.795560622384146, 10.798079029363429, 14.553001476685264, 12.980082205649376, 9.088485914638222, 12.535800750528493, 16.667817877597987, 10.844642303488161, 70.73084434594062, 18.952318282364676, 12.10440786416424, 11.865624512865097, 9.344922656777921, 10.178018603424762, 11.794397202387191, 11.630184426200817, 11.467059800459523, 8.221321971862933, 13.886366478445005, 6.362123978618215, 11.936443744489402, 14.500556447218646, 8.65014748024405, 8.470931694724008, 10.38478679736131, 11.788953468876544, 10.865303866387615, 10.66321369246222, 10.420355412124263, 11.835125637284111, 13.93868288568838, 11.250095533249077, 11.801109939504872, 12.428219380209384, 13.033006449261089, 12.455561861126753, 8.056147770832064, 14.61488958741103, 27.045051150245808, 12.738472503168701, 13.212527636379926, 12.018266549407613, 17.706281042792607, 10.714721653501721, 11.853779922072958, 12.983654814244874, 12.197222610757347, 73.8352372360096, 14.804240552037577, 11.825657329086166, 10.417639927051878, 11.979983384832362, 9.184049659490837, 6.404604029931569, 14.009445005426103, 8.625448022835739, 11.088662127255464, 9.723035416269868, 22.484122785293817, 8.854303190031734, 11.859257982497377, 9.430492027016646, 23.12437874211222, 16.65281217155027, 12.592663849152554, 3.6187456353370764, 17.418270669043466, 20.75355927082177, 55.30639518951993, 26.17634367618966, 29.054183219232122, 23.739416472645576, 20.11894834208844, 40.37941032887599, 14.732086975674429, 36.60634989856953, 12.253278559418773, 13.54377453208193, 26.992600319061935, 10.905305437662877, 9.306944959459349, 16.066878700670422, 16.055908204717984, 14.150702535366149, 9.470315861647267, 7.684403808490807, 2.663274129415341, 15.264689630598987, 9.327892945432865, 9.362581219048487, 7.650320870893044, 6.360839127294972, 13.150677379555953, 6.5667373576989805, 9.4153847576422, 9.408878272129062, 9.625936292361743, 11.304733887491272, 12.138583327470343, 7.9310052097206745, 5.437947113730213, 13.360888649790319, 11.710617419156355, 11.184624694005983, 19.424456030248326, 7.494256200476629, 17.583083336522996, 17.626957120625246, 18.995884903337696, 17.69991406508985, 15.670782397063633, 17.551438753749615, 10.221941998418265, 34.174033880343046, 11.681718678864025, 13.377862188657732, 13.429066774724761, 13.596187370965987, 13.241662734843489, 14.186623948544394, 12.585398669722343, 9.763926491893734, 12.334201769435749, 18.523558479538533, 20.381022494716994, 13.258958935307037, 14.233812143858081, 8.216413333607345, 9.50051040976567, 12.278350051725928, 20.64361622389478, 12.109850100253835, 9.687013142187524, 16.745623235162526, 14.624784737106996, 32.023672486136505, 16.923047237143855, 17.866914428406297, 13.13526462106529, 12.769903425564054, 15.651018708798544, 14.746046309401468, 13.89700364814437, 28.08743290489485, 25.53248085826132, 7.69450674471469, 10.3923512417056, 35.35676083875868, 11.55245488105168, 8.396959469470684, 10.009999117092175, 29.62820188450181, 11.599403913302917, 10.734315218229622, 11.276963843064173, 11.079426036439195, 6.038604047370173, 20.025992086173204, 11.392869391057026, 18.32641549932807, 9.01917574958004, 13.05379453726952, 10.905150381043104, 14.053332706277581, 56.42267551878474, 77.58285799326126, 77.94890785951472, 84.21986494007082, 55.137075818221284, 32.756708719028566, 95.89455348770302, 51.89093009873326, 34.730144963555716, 64.67452630450683, 18.504087865429533, 6.838189154752645, 17.496999040834766, 10.737414590420757, 10.030727674919437, 14.605417246847313, 9.937144535742311, 5.907137728000145, 19.56152965282729, 14.629485883294926, 11.66485026842692, 7.962520794264213, 8.505290600308683, 12.353591502462013, 12.534847991193498, 10.907488307349812, 9.29598568186092, 10.630602251928554, 10.928552884447111, 12.086626941769927, 13.149629716257875, 14.510378540362563, 13.198462223095145, 4.3730413424170855, 18.620496570594867, 7.13126580775181, 10.076872326889475, 13.123295629266957, 12.225836561817285, 11.843382194529902, 13.364924660362794, 12.04680427074188, 19.76001949030031, 14.34789093035771, 7.560136510316256, 9.601532645531957, 12.91591377800308, 8.578554393065327, 14.420153808112513, 10.001430989923845, 14.930105153478484, 22.061475772249768, 16.6098620004007, 4.048764301248496, 11.50875228079512, 10.537543610002528, 7.5250487338531435, 10.260427633210586, 13.46540680632253, 11.337185998871858, 9.778873791116963, 30.684550456950774, 18.274019621017896, 28.047121302036746, 12.648746694429585, 11.880026014262956, 11.875722674424527, 10.643877533482758, 12.514435524654315, 28.942864591496757, 11.222348470157295, 11.166083706314852, 10.497465030880427, 14.511720383220156, 13.014152776056017, 8.584581898955879, 9.161516660072408, 13.36470136859185, 11.835757296102274, 8.866630621166626, 11.061888325886043, 16.836357101109595, 22.035823979535426, 8.615569892626045, 11.566203778218798, 9.657389524243964, 11.586367394829812, 33.11023986561629, 39.165851531002566, 60.43039480943892, 62.39250621600619, 40.286343542266906, 37.57292610779602, 79.57606680353817, 66.64486634986476, 58.31295789642516, 56.07663547794544, 6.558156071035319, 13.461903137041835, 21.843748778016014, 9.406962829504932, 12.844430184530117, 10.18410754780356, 18.049678450163192, 7.934383658775452, 8.108475223293402, 8.110973604151996, 10.492091812200108, 12.230279460552467, 7.65547547354888, 15.221995833541015, 8.836890437870066, 8.996178966292392, 13.857012244502096, 17.006897856935137, 14.734470965461025, 13.101233100799499, 17.20149347515657, 9.793071945991029, 8.30004057024527, 12.391291930834495, 7.45243312866137, 11.906725251823415, 11.41626389405801, 12.809834761166634, 10.212323704053533, 14.75486535337448, 22.781924158308804, 12.929331163384559, 10.353757511222897, 10.356836197706167, 9.847968095489373, 9.415269635422433, 10.563888649315707, 9.562345302037638, 9.410262245904523, 11.374622482598909, 17.07684106153565, 11.727710368225797, 10.246765313127142, 9.661962767581578, 9.18006426385904, 9.110688372822619, 15.364120720131908, 10.040495092914048, 9.683428700124837, 17.89060821824901, 9.750084343188925, 18.304078377997147, 17.564335234521028, 17.536769382733205, 10.592147794367126, 11.417389287828792, 13.822728784431918, 12.349548607859152, 19.105613286620645, 9.481338078167074, 10.209356277888443, 4.007882436344813, 6.19329126384511, 11.535843040129802, 11.976773184884655, 10.358022865292604, 8.646825112649417, 20.2327892078267, 18.766048411019685, 13.052230609636176, 11.558094905240548, 18.835189422322646, 10.260846441983652, 8.54355244852529, 27.066113487683353, 41.94060975898352, 58.141469497751466, 19.77779438391957, 36.25557117779881, 45.4410632322259, 29.619101864335452, 11.339899584969725, 56.51876981498034, 34.87787167858912, 6.385383157483795, 9.02379920350647, 12.234259938977432, 10.175925073159336, 14.679910620834885, 9.357518983404823, 8.583411678664627, 45.94609123783852, 10.624874723043835, 6.881215026526633, 10.294921837985017, 12.349795343596146, 17.104786552079077, 13.073479674226009, 11.990901609060806, 7.901794269126212, 12.772355142025713, 12.497689407377496, 21.90941716666487, 9.312829138581328, 14.719902577461799, 7.576096905461963, 12.71932846493062, 11.673291012650886, 14.285685230447227, 10.713006987654587, 20.39049336018465, 9.89004830058143, 6.696156637034799, 8.538875159030905, 9.656779557189237, 5.060901460189029, 2.7281547872486422, 8.841534213531, 11.417284214032811, 19.83015945285726, 7.6772460396321245, 25.726930575994725, 2.7870120177696607, 9.704362100583523, 14.580383365589746, 5.974754591246528, 7.677047184551606, 12.636566835850708, 26.508951919315905, 6.708065413384838, 10.631286592365033, 10.452019983198584, 14.058126054102877, 6.096115281036857, 12.323741643034111, 13.75801323680571, 15.95634492590089, 11.394992221142221, 14.376784261873317, 25.302544602338507, 11.767667828552755, 16.47342421252638, 5.186771579638392, 9.261137607420238, 11.559561700468059, 14.839164854063224, 12.997987028916597, 14.217381727093413, 14.563766284292646, 15.575092937770659, 10.42234507803771, 11.981550332501227, 8.3709041756722, 8.746854872414907, 13.362456593730377, 13.989799366370569, 8.62588712398712, 12.828050325918955, 11.120596449440189, 10.216331171968879, 28.302295379274007, 15.932284560517457, 14.654875250892902, 8.748864318497038, 10.23130182066046, 8.38367719005431, 9.270893507091412, 5.170307724057697, 9.289281463595179, 7.492036195427399, 14.800359525289796, 14.610178330722318, 10.268251723948715, 16.269597700164063, 13.244537923393187, 11.167592046465465, 13.71149737576866, 12.164976124122711, 13.130570678556722, 10.540043073971711, 17.261616840588136, 27.022343466957377, 13.85625880411933, 4.391487163162576, 10.884875152181873, 4.332980958726724, 15.058069440101523, 10.228308585485266, 12.602519073541098, 12.37821368334847, 12.720643509433405, 10.49225216912749, 9.58182907466859, 16.723216781002293, 12.793854175936062, 10.023177908743802, 14.64371915643027, 19.695757505145767, 14.096395086371437, 10.908168698846186, 10.141582321764904, 8.684606901774757, 12.213120268169904, 13.97183461830055, 8.29311596784853, 7.0543411484241565, 11.102991309450067, 11.663322590807883, 12.150163133409423, 9.39221784941638, 17.776777008973134, 8.473343758876561, 11.653176015968148, 12.625944859432575, 7.716357849527299, 9.115783790709795, 10.676382128703647, 13.659688443310507, 12.35546868940027, 30.23040630782339, 20.011199152370565, 14.457059829447699, 12.869910904063858, 18.257520927033106, 7.706620309118001, 14.83150279849854, 11.922015262580139, 8.912988512954986, 9.710157987998452, 13.558789239407362, 18.242769436601364, 10.088683040505886, 12.200969298325383, 11.514707361033285, 28.517917604703975, 8.76393523252519, 10.765051419405822, 7.756477578018852, 9.097419444880261, 13.779461029035527, 10.095549725084473, 16.628145928086795, 22.964635535539422, 6.51009548881917, 23.4163804311948, 5.806011697483598, 13.880306944800605, 8.099014924792305, 8.589741533277332, 18.88069917105412, 14.087772585241026, 14.26032658348239, 14.003329971873187, 10.574197350281494, 10.603569906988067, 17.5062653877352, 11.183448008732636, 14.561362049053049, 12.452608148492914, 11.651202452194047, 25.486989131339666, 12.588338408281057, 12.076198608867843, 11.437835941277505, 31.214189080364072, 10.905991521197961, 8.13523536273521, 11.70793493384916, 11.837279068609162, 2.8132985614827484, 16.798420251767883, 11.883685434670467, 11.190616339531477, 11.256103368498245, 12.26161590229989, 10.621091745236974, 28.771121783084485, 11.467329238955136, 14.111433721310954, 14.79570312668061, 11.617235314436167, 12.606904465338422, 27.782303533590394, 13.937532474725929, 13.385502374566952, 9.708864876531223, 9.751705736104054, 10.268802945615933, 17.414931967606176, 12.249433008708955, 10.176328109884606, 8.264235685081966, 9.089344274539553, 10.248528664675236, 10.58711953890015, 12.65768790734909, 13.247528077698247, 13.254672024930272, 16.250516703023667, 12.929606867329378, 12.304275303928705, 12.633060666108777, 7.91844959272185, 9.331625962583061, 12.865101902770332, 22.512579533525457, 12.822541298122392, 19.20010163977224, 11.85706013716997, 20.174113657648682, 28.01137635975135, 72.75228652635151, 45.032026893325494, 20.48643715772246, 64.16067227743876, 11.82380067366904, 32.96776648351649, 23.034599294212942, 35.257635830140316, 24.845409127987637, 51.178800345701305, 25.792007045627656, 28.178484910985635, 45.1305146227955, 36.254404864566624, 43.66012623211885, 28.249054911742775, 28.16542172806589, 16.765827694210685, 9.796997890947496, 40.00092456659836, 12.159014710091377, 30.543472488855667, 32.64834979640242, 38.527637065042235, 45.086219562042686, 40.83571324564991, 36.42297572601154, 28.104945672382758, 14.551032583779104, 22.897000415395116, 22.634500839692656, 27.79263327026806, 28.07707077640319, 3.7211879511124764, 39.979713507093734, 36.94327246381291, 64.98579357484621, 31.53065299515301, 35.27054492470197, 53.020953697144776, 12.691661466412485, 43.92341370634869, 76.34292419275809, 27.343418707555752, 10.506128621496089, 18.968294597087716, 32.2455216501335, 23.486701801146268, 36.31938706403974, 24.093029854609, 24.141293696783094, 21.371591406158952, 25.06843896924332, 38.30787417919771, 27.48496962267607, 31.083655000650953, 18.758278798282895, 33.752195295610896, 34.478184010996195, 49.45277874379842, 32.76498655687914, 16.694964409822916, 22.63342085565513, 23.1838541875661, 36.70683237761264, 25.89669695671172, 37.4078913235887, 23.373430100944802, 10.458033722256644, 29.219873231826316, 8.660619241992181, 17.969325769575775, 25.33296826218419, 40.86323389978613, 49.749365204107875, 33.25923161261111, 26.573365694065057, 10.40662638092901, 31.637350396235462, 6.838191283132069, 20.873014832787742, 28.40566997485914, 10.212593695730785, 25.512317012626475, 27.54363785524799, 17.622584276258703, 12.917768168209506, 12.453989373954485, 24.491040297731534, 21.805654691616873, 18.4762844843624, 29.050806839015827, 9.495643626694461, 16.86453829641452, 23.13840680174196, 34.59019729303867, 21.649897933682272, 48.139071123321116, 31.690662088655337, 23.362587156094826, 24.39715529129207, 11.62099675869275, 19.952551718990026, 20.285151363688055, 24.5427481237983, 22.926783379293393, 29.443942004623125, 25.764279424134372, 26.66372868055172, 7.900059782005432, 24.368597486933357, 13.73929746430516, 18.172639048043457, 29.078695815063835, 16.569503511600487, 18.64777683874269, 25.1387345959596, 4.756348924573864, 23.7981285330167, 23.118509366622366, 16.423573715757925, 20.457876778, 3.7215879277021093, 16.764947453718488, 20.513414366846142, 18.129644813839192, 38.182368918662995, 20.707694278416803, 22.860826658678445, 26.39980811206215, 20.791546896822986, 13.678786301501924, 47.214887232349696, 20.187555593013794, 18.186555546520346, 14.123836989271075, 14.635870736841708, 31.350497156161904, 13.62613614769274, 21.356313030130057, 14.700854297554507, 21.841796897546896, 18.063193764275344, 14.133651101650322, 12.226859160206464, 21.098122067073465, 11.016432369102422, 24.367140723486557, 25.991083099992533, 21.801809271954387, 17.393796801272348, 22.552603996321626, 17.909180960890012, 16.542584450207503, 23.828579784120937, 30.90698410572629, 39.23439441684049, 14.249330165199678, 21.635502952402923, 4.552205083294836, 12.757751104011035, 16.253790053244792, 21.100535282138544, 13.988215516958768, 58.04203260827195, 23.01650650961526, 39.76601484554029, 35.571760743684656, 33.26302306547031, 32.69488311787748, 47.542448996437, 27.68685997397319, 25.028880387242623, 15.588908350957173, 22.956750977651524, 18.052713764761968, 14.401311654643498, 15.42356137007987, 11.948701911461477, 47.43999436485612, 7.286817951213946, 15.96650499410365, 14.50836016420028, 19.22921654490154, 16.678737948178245, 11.873332204157952, 16.500361480003928, 17.368917610751815, 17.643089587098483, 11.271634634699538, 18.67309869929692, 12.691157063943189, 19.291752215045403, 11.701615226069798, 14.261164104510646, 25.04688701668466, 16.91044155191214, 11.403626263207242, 32.13190943635566, 24.26852290276015, 23.875309797017394, 17.03190284804167, 8.85756584125925, 22.67728267055865, 14.492771461992113, 19.655134306738855, 18.800849963402783, 11.294548644472055, 11.904251549445346, 25.609800296680454, 15.680753810953515, 7.197338261051189, 14.374415249430363, 15.454018962836843, 7.470879229789457, 13.022587952963256, 8.309133421448859, 14.232314504166277, 18.243114962456218, 20.172676327188896, 15.241852344384855, 11.471846661492993, 13.07229519826765, 13.21298539555471, 19.9503468214605, 14.474025753317317, 15.939636382045078, 11.363371235563243, 15.734884934953998, 15.822269628191775, 12.096276030879162, 12.29040400883086, 13.99933177596053, 12.617256459328276, 9.488051840340242, 14.66576265512512, 11.790758615343318, 12.342839414730436, 7.520249003204471, 9.594852307350441, 6.821249057187096, 15.835496880474802, 9.932317098593455, 5.96265381154417, 13.660439094829412, 11.394232886953661, 14.306792600273008, 11.03026843961888, 8.137799785949753, 10.67381441017702, 8.317522932046888, 14.88616286486968, 9.837916183797352, 13.571310261118306, 11.18995106720204, 10.545102052887627, 12.729194882937668, 10.120639332655939, 8.700561286309535, 8.176702363410492, 11.710816183275167, 8.782680557294364, 11.413339459910475, 10.332146360406336, 11.554832656878233, 6.505557029739948, 14.656186592046637, 11.461846008913989, 9.717407751903362, 11.324858899872813, 11.734768424968745, 11.227497767073736, 16.50052473432551, 2.545608407194744, 2.903808608877192, 10.552978432993097, 15.278508200404014, 15.819178668417457, 9.262003204126035, 12.173384855176385, 18.904675864048112, 16.20473209911726, 10.744579576643153, 12.922523670161555, 11.49294572402532, 15.069032229358534, 12.87638783044393, 13.846179583152598, 27.952259297638953, 24.36362136382692, 17.550548395277037, 10.637081785848933, 9.741136032067942, 9.556100466874591, 11.325300971987396, 13.42714050207929, 26.00440469149077, 13.901607647602216, 9.38358598547662, 10.53223244761764, 17.679742602985254, 11.58249275417444, 10.148389923616946, 9.553155675849757, 11.2632123296389, 10.333926934970767, 16.17000955965894, 9.893834554675344, 4.5478849606723974, 11.860125539780434, 17.389540525724353, 9.571240839386492, 12.269606839883924, 15.537976782115528, 13.440035780559304, 10.565921237032441, 7.105071413566564, 13.163841576357292, 9.693465688681703, 25.26505030316882, 9.734921976116562, 7.225919344101436, 12.014167076258545, 10.276661296714119, 11.704273090637221, 15.519608777585729, 17.95300631557984, 32.83043296803212, 35.72466470340313, 14.280739355834191, 14.068456515243223, 16.45466092063477, 22.281483298530187, 10.77886812915501, 12.787351967296447, 6.435987628473632, 12.796748867352306, 12.092645454887984, 15.132564253204352, 10.965199937377612, 9.740995386222748, 14.151903765141482, 21.526878533794253, 14.29791631208339, 10.782240511875338, 13.188632516364706, 14.51690685110667, 11.766027791072935, 30.01897120739672, 18.158184672942113, 27.48001910092443, 18.2409766643554, 13.239864083270191, 27.895589792574064, 24.839403777702074, 33.971833424955676, 27.300196076527136, 45.840581046834146, 29.006404771482256, 9.4681279587042, 13.611002742075527, 12.893543813460514, 12.674501506260581, 10.251271684834656, 20.292947808276907, 13.610952511200454, 9.096988636184008, 22.265631351009777, 20.78742455910489, 14.476657494585297, 9.3447131402837, 10.642864488233752, 7.794475253867879, 16.33673902615945, 11.152166445834128, 19.722756224546, 11.03327510206723, 18.273977693984968, 18.800154088241012, 8.90079855546027, 9.477957605044066, 14.290785413829758, 16.48283201382849, 14.721994475696867, 7.02978969974733, 6.2265142029508365, 14.451873772469112, 9.778261330880538, 17.69072851385837, 11.369866724816564, 36.42691622010065, 8.894075118826821, 16.89244721359427, 10.952533822026522, 6.402257339460115, 8.608997107035298, 11.981627959075196, 7.100422208381357, 17.79687097120255, 13.757463537148483, 16.307922106831935, 13.77593213708134, 8.644577855787698, 9.019724882043421, 16.22392282104338, 34.619996480806755, 13.562584220060671, 18.929562655780423, 11.045116415879276, 7.689673001634925, 20.33245434469498, 10.829464262662494, 10.106039855563761, 22.226196634151062, 13.284653488410054, 10.489466915609057, 10.748193607549574, 12.652480360060503, 11.042158353203268, 11.148791068326537, 12.616685951242845, 23.245110721016538, 19.069938653940227, 10.409700765804393, 8.711435291432096, 12.89244033177608, 31.747273030444674, 16.22088010845364, 15.112277838720999, 12.674488319550818, 6.8662006184034166, 22.98325019450063, 15.002797594667534, 11.887385043108823, 14.398561151052242, 16.10352627147958, 16.232380007403265, 13.262658829331166, 11.585669528755556, 3.255208202820832, 16.74322936670948, 13.202242743360895, 35.725606875451696, 9.725204964079397, 13.059310405450201, 21.39761336106347, 13.460557766809117, 8.545339622473087, 14.390719589129962, 21.84563359658059, 14.049529073552671, 7.758324815249341, 31.742438910142084, 19.185352879079016, 10.127979301741089, 14.656519397020421, 6.600699311404251, 18.46182740870242, 20.548142185650544, 13.80109706757445, 8.397051025106032, 17.29962912567022, 10.900772608032677, 13.494407089100003, 26.24838330037267, 17.19976698941014, 19.685424627264855, 16.165688878339466, 9.30437302166283, 10.616489363484932, 10.214685610982908, 13.191148678218806, 6.8747811032425625, 12.245877295032951, 15.392141481987972, 9.047328744943984, 13.295456045304508, 10.267286428319697, 10.715716365977247, 9.268524662297658, 11.719762572139844, 11.610430583182906, 6.502381446073707, 9.946126467944989, 12.439490855379347, 7.399907596157317, 8.262206150497166, 8.793800595179881, 8.45974939144744, 10.265181303599523, 11.95633553122779, 8.094079112300975, 10.020148057081936, 9.786976268932996, 13.676412330734847, 5.1238067360601045, 11.405860362344377, 8.65016438239409, 9.69085517063138, 9.31114351338737, 12.573732129945741, 11.898482549243765, 15.096058932889566, 11.078177451600745, 11.88560321965616, 10.513932605827712, 7.531399847265331, 15.385420824166504, 12.54651964709622, 12.204469365933043, 10.978638519403509, 11.891607009168482, 11.5507815723854, 11.438961178996147, 9.821551397906372, 18.20021135077214, 10.23266920280117, 8.660102168157351, 8.675847079894762, 9.927622355269431, 10.601133487625075, 10.254503249091771, 10.800147062944328, 11.011253731081549, 13.049467016508714, 9.336150505319916, 8.935451020607521, 11.258025983107018, 10.124257435966449, 7.339546927401461, 12.347715197845378, 13.587149155934394, 13.527166953052848, 17.63865212754659, 52.82147146072881, 21.499591662030745, 25.76800716906466, 12.607551029537337, 42.48569428759335, 39.03952314287021, 24.197087665000975, 56.210097955271294, 23.678648831854964, 11.370387387743529, 18.09192342462562, 8.43415849897703, 11.075779424331886, 7.073851132191571, 9.236024440650649, 8.11682929512134, 7.727091916173494, 4.560536035836654, 10.235038637584216, 10.626049644174099, 8.848214070215274, 9.549763271511356, 6.841463454087738, 10.365529773277434, 10.134866378206308, 10.807759442590658, 12.382414034291292, 8.442656728458719, 5.380530788891356, 9.765347305777125, 10.40539063812864, 9.574018053676607, 8.86031917796134, 10.395413370203924, 9.16106150741382, 6.706565377627459, 7.219846332323156, 9.182833264815631, 7.139687386629083, 8.421476306241248, 6.524110617572536, 12.258923471695145, 11.506012168434482, 7.418587631166522, 14.905914892810426, 10.136964597823653, 12.133782629401846, 11.156885002493174, 9.346940866494753, 7.753110805256067, 8.880225278074148, 10.352067090767028, 11.928716904163341, 11.294212180208095, 12.871625197987782, 11.60859002061693, 12.389288931132633, 11.806507051285916, 9.545016262633096, 11.956275866209827, 12.827488368468478, 9.041732506803482, 17.952084619137135, 10.823436307001813, 8.9237720083688, 12.61283758993334, 9.61586079828476, 8.27287748911005, 4.419138790925622, 9.431759040383687, 9.079111700152554, 11.722822042603624, 4.786580810972072, 9.515079517848264, 12.99630896301873, 8.742778208231512, 6.10325306120872, 3.800277912653749, 12.122895053765166, 12.06804842563097, 9.504238814732387, 14.021685388053486, 57.67359274344608, 52.61056548982081, 46.68964047248674, 33.77510578629374, 38.61379577542763, 13.91840075374587, 31.755275427829673, 24.62837056006286, 14.033183878783184, 34.911189137260834, 10.286980116062994, 11.516582232082634, 11.176926899799486, 9.213845728651638, 11.331463086127911, 15.708039374351975, 9.125478545095898, 12.379058656683158, 10.24073012221085, 10.583584989048925, 11.337818693342088, 12.248834095339474, 8.370486710136262, 9.793794506314624, 14.42750662368444, 8.753357109924677, 8.095709493980882, 14.893001472227317, 9.097387355240908, 15.861600778532225, 6.705936479950124, 17.63968965327276, 10.04822776029361, 10.830653832754328, 5.686623246923908, 9.741432046504327, 9.06531017850273, 10.548839340915215, 11.111153361333866, 15.431047837469098, 5.71479190335123, 10.969092635659548, 10.731256876035898, 10.3552826520183, 14.711001195461748, 16.214392226481625, 12.531088144472925, 7.696086905989856, 9.27865292838318, 17.82383098150883, 10.555710408335758, 6.3054853151835895, 9.465596995088557, 11.96821714771038, 12.795822830033742, 13.75443081996625, 8.458330909549353, 11.015302786810143, 9.107970967079513, 10.840365672529801, 6.370153358534181, 10.14857341046995, 12.92198490056572, 6.575126962640041, 15.21709874127384, 11.091338368976896, 9.532970967009106, 9.16637274986322, 7.351905684972694, 10.74370562572203, 7.4631079072080295, 11.95492709012391, 12.811099751987147, 7.935432328959951, 11.687278112752116, 9.898910670496656, 14.558744899346417, 12.04906257370581, 10.840158896050983, 10.110427990747835, 7.436916294366209, 12.813776685227896, 8.69949340864728, 8.94496751168184, 8.9786441764281, 20.114959838865285, 8.59325069365027, 10.574784052165626, 4.0397779113538235, 3.76482419902674, 7.536637025623102, 10.935384362575515, 13.393498780423766, 22.104991172286628, 4.840821399220493, 11.994330644008391, 11.08519924700852, 7.375674049736529, 10.876405191223713, 14.45148536146782, 8.984494582233374, 27.920362672699735, 13.258187487102335, 9.720866158178874, 12.356330008901306, 12.294149150650245, 12.81761497842866, 10.859929687043296, 5.31746179732396, 11.058074321507522, 5.507730210326564, 22.23560541659924, 15.647901463850673, 11.077562278254456, 11.708374143018911, 9.494887403810333, 12.243111344878585, 9.264721899927784, 9.081535778634851, 10.013902196054971, 18.358016728057525, 15.611166038759638, 15.933184334973914, 20.603694864586288, 15.73881620163669, 16.399513310487198, 19.129300948148856, 18.938310311152435, 24.010954514694983, 21.90880330892018, 10.965098404519527, 8.545643320099964, 9.253986724984449, 10.408684747022035, 7.976037401447404, 24.22951445937104, 16.226989927226768, 5.642493717531182, 12.783289198354959, 14.949294967833325, 11.621883985101947, 9.528443745185392, 15.061858610821353, 6.283449585791832, 10.187587026731125, 11.822928969731718, 6.662580287430922, 20.05760794613825, 53.753962047354804, 32.08074731433595, 36.741477597626776, 68.82694646406225, 42.61316420095678, 29.698833426489585, 56.14692627867303, 30.48708550701478, 51.9502402816948, 18.802511442900496, 12.303451033386406, 13.9300946968505, 2.6842365027742567, 11.876640835027043, 14.378549923244966, 8.982923344162167, 8.818197308966546, 9.428760764387487, 11.005744130662887, 11.399798068360376, 13.569115365413744, 8.148472104028553, 9.68519189205333, 11.484465472328274, 13.810847128917777, 12.999582614083748, 10.848800546794452, 13.225451275654846, 8.247094207940474, 14.986445591164944, 22.593072379715327, 12.330467220647382, 9.646983477726925, 15.138307313818617, 8.757077891377886, 14.129513274135562, 16.98646354662638, 15.234955627952065, 7.519420591326968, 11.471317778025208, 8.360455087913122, 15.419644891336498, 11.7796996541485, 8.505277600655514, 25.70110744962719, 16.959197379914837, 18.402714686032642, 28.63882071656414, 12.437399384353176, 12.756234130044884, 11.048216801617345, 6.950438374436748, 17.069961136483496, 14.878507488680324, 30.758311397599698, 7.2430927778426275, 12.891023236741058, 9.477434787814879, 17.349913175932443, 9.011204008217028, 13.38126469915948, 13.792561428626579, 17.172609538544236, 13.186652082057295, 10.28116262410954, 7.937115995835888, 13.736515435027503, 3.899177206467713, 12.688186558797236, 12.087173320971969, 10.169230436495644, 16.802565171090325, 13.595995073835915, 15.12530027919996, 15.416512285758005, 13.639098173030842, 15.550818303359236, 11.021214338067406, 13.915917315101785, 21.69825176180342, 15.195761991525847, 15.725610803871788, 13.527891398113512, 6.029305362061817, 10.111993517736149, 10.395940637870156, 10.504676731819787, 23.20779778893701, 13.29518399727208, 13.909280618074735, 6.52481183350644, 11.869921375525307, 15.897877469785724, 7.22345542857555, 13.89979992928505, 13.931606013716392, 38.107276635945766, 43.13717553011335, 27.934818620412013, 14.32461271546937, 38.64176773173793, 66.91734434519728, 19.132949135659658, 30.691496778802243, 62.327965177857145, 58.1338151335997, 13.22273255473087, 9.617659444456494, 11.992787035290133, 7.871400046812829, 10.750650377390386, 8.648806756130996, 11.31276301569398, 17.542966095110447, 12.420153366632372, 14.339080125949907, 23.94614829650788, 17.425612966554134, 13.374994808309019, 11.310852307482447, 12.035280385976082, 17.234684561592562, 10.673615414770849, 18.512718577156704, 11.064547913526473, 14.096299834690848, 12.017436895703787, 19.82526212283656, 11.023760443881756, 7.631549976746079, 13.585065776614696, 16.00118411194069, 17.070486422093346, 10.84975805149098, 11.377975233306215, 16.535515801692277, 12.296204615277675, 14.979789363243277, 14.89287955712495, 12.601928225278446, 21.031449350712922, 14.724155715980517, 11.92717857917013, 5.9456592946064415, 15.02651547876128, 12.314609678986304, 11.15232485940027, 10.823499311787108, 7.460328379873497, 10.548874775634681, 6.601153273614682, 18.50620535445306, 5.5033755049500535, 12.907334616463274, 13.178811034221424, 8.599537751968484, 6.0912488240162785, 18.712422726078742, 12.983504280480819, 9.185412847399023, 14.267522470800445, 13.667372344689186, 10.823948643272793, 12.762919602795284, 8.238656451636215, 6.32022871186125, 11.469099216730406, 14.24558420295616, 13.044823178825327, 13.783508540304934, 7.758367227044184, 11.415361345482856, 11.799188563993113, 11.7660436109764, 5.7612113979781405, 8.326835858293165, 16.334334666780425, 8.81701372350006, 17.599910422796203, 11.572547103395038, 9.118814194719125, 13.299131271784972, 10.391622667291001, 16.813836750148756, 8.961281606499904, 13.445950505375588, 12.909743129762672, 10.31381424702765, 8.241551897128165, 12.042377965789095, 8.233659949067286, 9.775429452623909, 11.155592708686408, 8.699175323694528, 10.552360262570248, 11.17835330918222, 9.029723551726194, 13.906174121133201, 13.283129620517075, 20.258018009303395, 6.581489337112876, 12.629705199707342, 11.256867552266334, 14.37252060140918, 22.100549065697642, 12.126498341356681, 10.170924763223896, 9.26175383706184, 9.810951200555703, 10.173771198183701, 11.906641404138426, 4.7664277604566445, 9.703229328233208, 14.113444114021515, 9.992024672919019, 12.624798970113416, 36.46518074382991, 13.898586790486856, 12.991306549142772, 11.006559991154315, 6.013849424826678, 17.831241531834767, 12.339280277592772, 13.086082594205426, 13.362705602956407, 3.395961968205812, 8.353412954020872, 10.90935296335981, 14.7710526033564, 10.983623620646016, 15.353140632551117, 10.354032278088079, 18.003192364988088, 28.79312128302699, 13.6960633178202, 14.696594466320603, 14.233525024848355, 12.249944723423715, 10.734050917643193, 11.327928968227937, 10.667503917053384, 12.549667009282793, 12.372315378813564, 27.440295033060043, 12.924223037805449, 13.444061668500066, 5.620829115982053, 11.288560882143996, 6.1864803959229855, 14.170578158536054, 13.345392173513298, 12.170284872262318, 26.963142310734632, 10.682225597371534, 9.411073694116336, 14.355439563381346, 13.749279541298392, 10.174399414789182, 9.810807736075624, 14.099190459215176, 17.3233282296928, 5.9124130985361045, 11.393592172533344, 7.669578650220351, 13.30501316424838, 13.305274568159163, 17.476857326637756, 30.15179283431069, 11.412623776729397, 31.988870782518774, 9.252483141705936, 10.641986470477526, 12.00469124297278, 13.843558532132295, 11.54070297466091, 13.748271576471394, 10.476507985956108, 28.290582082242445, 13.220695947731047, 13.059646914763013, 7.8789031007649095, 12.368236276969522, 7.673312651591155, 10.577664172921583, 13.665149251685888, 11.723103634135645, 11.715994961014191, 10.129627569316389, 11.529854479199397, 11.215958582146476, 9.19774284148458, 13.934050977855884, 16.74096447615851, 12.620461111570336, 12.851955780005795, 12.67001999536042, 15.515850416093848, 9.978192506015983, 5.921950252174611, 10.573348680353659, 6.953017850220453, 8.498288260342328, 10.763861427149694, 6.469920264054964, 4.505783414548222, 7.468066767446853, 13.554935457763335, 10.364762139271077, 12.160903633276991, 11.282884400102825, 41.34071986920479, 12.79258595821602, 8.574203470876416, 5.172847055099672, 9.30402769798896, 9.365201029793727, 8.554840209807532, 8.031894039245143, 8.116411846509816, 12.254385788873662, 10.013259185884031, 7.589799553867602, 7.627761156843046, 9.668336976658768, 9.805396923020592, 7.020664174424039, 12.870138509151671, 12.281264982970995, 19.463750559222383, 12.530683459428426, 8.466070968726179, 8.299918011968883, 12.517275602646812, 12.5331075286083, 16.23196960568671, 5.841430814283751, 7.97062143803321, 14.15909222971757, 10.729317216940238, 15.163861621642681, 15.961125440308594, 8.997717286035055, 14.056479078490844, 10.96199402950613, 11.622558747469983, 13.111928052379408, 7.088853337807996, 18.333124129203707, 12.97578721946119, 22.906089280385988, 14.442119886088994, 10.247296405083393, 12.582819036587773, 13.498036322607986, 10.319883522266569, 30.81955645041232, 11.40339501790877, 14.25009387326192, 17.263274034980554, 9.99221083335503, 23.10465822494498, 19.774416176375983, 11.123379508680774, 7.866785016634549, 6.705330207611499, 12.890067245255674, 12.11573403696407, 12.326839795448507, 12.59864288026561, 13.062599039087273, 10.092852412582133, 10.618490293576459, 7.29611735248893, 14.128148367921172, 14.268891553347357, 14.223507063014164, 7.8997875587862385, 9.406804950997849, 12.179762863630136, 18.96035466801431, 7.9250274929397415, 13.504342962330051, 13.114064438077737, 13.535455241736818, 3.7273089233800767, 12.124558786887347, 11.561825524397976, 14.988404930816344, 13.789277674372187, 16.884628484369664, 14.679445850188113, 10.53051678423307, 16.700493785706392, 15.395719249383873, 14.204380676521442, 19.58139651100038, 16.791778143684912, 15.62594009933893, 10.273260498991057, 30.287241410507278, 12.241953998250366, 14.597508050499618, 16.9354211409336, 14.629449513449515, 14.055638952908025, 14.556951324015406, 8.21966065030275, 10.521791665934922, 25.768031931518003, 13.25071846269672, 12.263757339856012, 14.586982718435346, 15.407554960838715, 11.944379198159519, 21.750738404362128, 13.558420634900319, 20.17159238682211, 14.449557227798607, 7.839266504509303, 12.883931887163667, 18.82465223462495, 8.28403927540317, 26.435516109868466, 36.27231183067021, 11.39687687471159, 13.310057176595338, 12.369746079347978, 15.573144057028058, 4.828938003644176, 19.350299391484754, 14.2012391370537, 13.97202657897658, 38.88900059907412, 15.14236117375466, 17.426984166255135, 14.458349168687219, 12.129949810591965, 15.072755369112368, 14.814796962353073, 15.514916310668116, 17.676816949026232, 13.47744943881368, 17.959100310637076, 13.276388294598544, 20.598075461977636, 11.87144955679099, 17.683786093635455, 8.48432129150129, 12.516389805990393, 11.327288358617942, 15.547580031208899, 11.835311159707103, 17.51568642207466, 10.889771361810322, 18.271534893886567, 20.770522965113877, 8.314743641822336, 14.952624920697962, 15.51153835685112, 15.445074619824616, 9.486502450577275, 14.428812691454205, 12.393509071647868, 13.952957880773784, 11.296824184540034, 7.832753490828189, 53.09692799300481, 9.84152321102608, 13.097377470059294, 15.489610480391695, 12.8538291618867, 13.56663622568094, 21.102101839577326, 6.764404069354066, 12.593230999041632, 30.32784872475195, 7.995309523051268, 37.66944501308383, 14.285353675093063, 17.242064924253754, 10.944025427695202, 7.0797659562396795, 11.619705297693491, 14.198332250676964, 15.490171065812126, 10.119427787022971, 9.222651562782488, 14.148852634895198, 35.805234485285965, 19.589719964391957, 13.582326252003636, 19.604287010375252, 18.85195503754502, 20.315990755331693, 16.57080311350493, 19.87503226103961, 11.972909592226472, 16.735855055143276, 8.227034572886733, 15.383936564919752, 15.545518459266393, 21.131727710273843, 9.365381200140256, 13.203296649023017, 11.002574617181848, 14.76117865236536, 15.321145893448746, 52.57403826259751, 34.46243919862464, 15.715954103853885, 17.472665305481943, 30.16563832490179, 20.65743540649312, 15.970251199780607, 6.269772384284832, 10.733561465563042, 17.405006681808157, 12.55861658148551, 17.64502456419681, 20.034634885338843, 16.37193069204225, 7.472633479517293, 10.06182297501584, 11.145928239614841, 20.240756798419078, 16.13646641718275, 15.633216211520883, 10.28814969327366, 6.590054578505168, 14.61890526673782, 14.009813253250377, 13.278080624821555, 13.973220585228322, 3.164642659095288, 12.332991995620473, 17.413621340729836, 12.451544063190614, 6.35572928078531, 14.818515328854733, 15.724172662279127, 15.64382649526847, 18.621131129911294, 8.089502206428735, 18.648686165615956, 16.938312559974715, 12.723322491741147, 15.753311302808283, 13.37186969393982, 8.804560382462933, 8.929574481465572, 16.059250812675945, 16.32413706854987, 12.332646945171554, 19.66538320829497, 11.296435069506131, 13.687951095450416, 13.7736435712878, 11.046879802902637, 15.487157323838446, 18.210406737492622, 16.087833954973096, 16.090034599174302, 8.602914659629723, 12.96229212055226, 12.778104553325678, 13.593498935573477, 10.931439316470698, 14.385324099511594, 15.615497569354934, 14.838673046423823, 13.797910289358049, 15.359138718399478, 15.162826788120924, 11.786099913097585, 7.908829420424774, 15.38571489144947, 10.960765009324412, 13.647410841819173, 8.94462060197557, 14.74810872359675, 17.052167354702252, 19.932956142181208, 17.352612361649367, 12.841953510268759, 10.636520522346938, 12.02912368211424, 13.40980692869112, 12.91143839206057, 15.606467558671689, 13.179053010258649, 14.641582223847697, 6.86292777260711, 37.76800330212444, 11.725475378334849, 7.735404506145374, 6.7870182241206685, 14.450486759776258, 11.126370967551914, 14.075947128697551, 9.256194508360862, 13.39337149142567, 10.749397295632608, 14.721099246848784, 17.10927273232483, 6.791518017618674, 11.721105983229783, 12.088038878863903, 8.381699870584493, 34.95109037486184, 11.067232463378307, 12.36930352647183, 7.886372850748184, 14.70538718153435, 13.043149480712279, 12.505659914360399, 12.157237466437932, 7.714233554955229, 12.92371641950241, 17.92609008915247, 15.349841819037724, 13.001177860727335, 14.059540805143401, 11.55773690147889, 11.509213966770881, 12.96914229154146, 12.193882215291099, 14.984542137098554, 17.109352649461265, 11.243194600774437, 7.319758142783748, 13.916304719037335, 14.148973041503067, 16.624927645743465, 10.193517264755748, 9.706988098659382, 14.994281455799472, 37.66355392031398, 32.97130744563601, 24.452111618283677, 18.028958572473282, 12.13361519724947, 12.106606897147751, 28.305212693653097, 14.411639265311155, 18.559997708446236, 4.718434759244331, 18.92180783477265, 10.111544824257821, 17.56952155624645, 14.709250037433062, 18.96664790506539, 10.016250305557655, 13.402034341915348, 7.737299451863275, 15.390820160157926, 12.603180733773698, 12.908968637996503, 12.0170540101237, 10.779905708897099, 12.682032467302365, 13.24600866766869, 13.853785344697926, 11.456619375137215, 33.00282899671598, 14.076450498776587, 10.496576843854339, 9.896436495801236, 12.221066056653024, 14.670473660638473, 11.231450759781039, 32.04191284237156, 27.77167312938006, 21.958423995808133, 9.175896696521756, 46.145238018814396, 52.155598641980376, 25.680995438743743, 60.86537988438405, 45.56376892671836, 49.97669550375326, 58.03845838596271, 40.19331006635262, 34.85046918354623, 58.84655422535916, 44.11917412121579, 10.9451536019583, 55.307516251197, 33.38739084227965, 30.475366277005325, 47.27820307764132, 57.256238085193125, 17.51501645434864, 33.82052225430771, 50.85835209527315, 43.614194556568734, 57.17279725303508, 30.841315038480218, 24.100931428562465, 35.22124116133413, 38.408402721997355, 41.824529174080645, 25.772643120846787, 7.592145580119229, 51.33807030028795, 25.294480488394186, 27.32186650851288, 34.63914094560699, 37.19912338421552, 22.75262094723862, 12.99083758249261, 31.758185794764945, 19.583015668239803, 30.27450605695613, 3.903739796268345, 8.72854878276182, 25.48134971418891, 12.869222511298771, 15.567759256919548, 26.849375687480446, 40.98454723952261, 16.568377006303766, 21.183529125707715, 12.112484192743688, 18.371460026728794, 14.689432506460205, 19.57223978932144, 26.045041278656573, 17.852107952040747, 13.817438150395116, 15.515057758757557, 14.070961745754547, 11.627334770994842, 18.459254088118854, 18.229356056882125, 18.882477813852816, 16.130416060048407, 15.597450076538003, 13.154921479212462, 7.757069632702572, 10.123845626054372, 9.657504494916324, 18.36447029376601, 41.7235624777699, 12.00052683046361, 22.555095204944617, 11.170624121987936, 17.064565698334345, 49.90356988466469, 20.533064484936624, 36.8486286536578, 25.652710198312345, 16.33402476702864, 21.213304719184638, 15.731007004566365, 3.7753659073030748, 8.85782012946169, 16.565824700478043, 54.47561102777658, 37.609980645085905, 15.563661959944078, 23.600240110427535, 25.910248814705138, 46.762224463445044, 28.294176859390664, 19.49318317598146, 21.213700145434206, 37.56360480226942, 25.84371600495663, 21.65352861208278, 16.209527223362926, 10.271664319087288, 16.86729944754248, 43.57008395624844, 31.29105250090466, 10.744123246429705, 11.49310693559838, 22.357731674623206, 11.04390655587066, 20.614538077736487, 53.12495663151778, 37.80770811100255, 12.198290185882836, 22.996515379185656, 30.309308723916836, 27.997878880054543, 14.3244398031281, 14.336253499571226, 30.04329615839097, 30.672465184130495, 20.34400936905254, 27.39865094303261, 21.28497975231683, 34.41912241102325, 24.59000130906339, 23.163893530489123, 13.730691845055008, 22.124643739743394, 11.602639630414831, 37.784088476710764, 16.820291601716146, 12.866859240765791, 36.47534815519879, 10.93089568670064, 27.1238374149052, 42.40615818091438, 27.74929002627227, 24.919009599277338, 32.637145536781766, 52.03350283246166, 16.647299002680924, 15.207331570186893, 23.77473828346014, 6.549094770679776, 32.10312085751366, 23.162832840648026, 14.000524435322918, 11.214584512174405, 20.30744069861434, 16.299435729742285, 26.2382731940512, 16.995770563066813, 17.707733409050686, 24.83148444890275, 24.127002690475447, 26.138847503786188, 26.475765016029722, 34.049380937196084, 17.353534593721232, 17.663186473662666, 25.532892382054836, 23.2512411969826, 7.060110705077082, 10.757896772735066, 20.614239423169018, 16.208513988916245, 14.126965608039322, 11.138523826673191, 7.496049915612992, 25.95204346140606, 27.560577290706036, 27.296983018428595, 23.779119493678362, 32.01626160791226, 29.25938036610792, 23.39841921178889, 27.481632887408423, 20.938268389230686, 14.299545860357393, 9.412457989626168, 15.497036021783515, 21.51663506136106, 23.75611557558085, 11.894894629237301, 36.50156234625143, 17.994058074235703, 48.4839928108757, 18.046914745385333, 32.361627983127974, 14.184388328563198, 21.681610105637, 19.95207113115251, 21.832665743570157, 29.385986400360984, 14.646047844020435, 21.792573364172902, 18.376210665017037, 3.1148346749750186, 16.968493281923646, 41.11179672597782, 19.658341271516584, 24.398472248623776, 27.88406227153479, 20.226896525122836, 10.468843656915162, 39.873579642579635, 19.91803930876434, 14.09844041463161, 12.562797266213606, 14.946583003389195, 11.293380133266037, 12.750961517798439, 18.01253341064476, 18.886650830695448, 82.88496611957873, 45.67976558060964, 15.88724369986776, 11.495384373444317, 14.573960658421633, 20.93091581298818, 21.822420120256428, 12.127922034401402, 9.666288032885005, 13.918996855538113, 12.54544241162234, 18.188169336159195, 10.399537996794178, 9.69566888848353, 16.814639526668305, 13.963631982322896, 12.962077918740638, 11.605707442347263, 14.574405726069122, 12.636524945292607, 2.437522677970977, 14.093001620525184, 7.893041385836309, 11.412372551533876, 4.997369432563697, 14.556309956435777, 11.430959015222246, 5.592408662225807, 10.402708089477015, 3.40908302683387, 10.469156356164445, 10.648352549822734, 13.59566619498063, 12.879249388785846, 14.892575158441861, 15.232059383737605, 12.679769889953104, 6.842834662000718, 10.514535272728331, 17.03775280691268, 13.451919377181726, 22.030777599034938, 11.777373380556721, 14.469351041620525, 22.433897397179127, 16.182143887833956, 19.369485343471162, 17.919721422652362, 13.66229620853825, 11.773969282784938, 33.60297016644347, 4.89776119901351, 12.542158702367338, 22.476632645132636, 14.839788836887145, 18.986355774892868, 16.619626730044804, 14.721747422459469, 23.246438960252906, 17.331218698037805, 3.089863955985088, 15.248138874488424, 8.8340781802754, 14.423271613770641, 6.252245693221939, 9.43322390630139, 15.853068333311501, 20.65977325693144, 22.268198286491632, 8.85787891623728, 18.853571905248025, 36.51402666076724, 10.411615564542148, 16.02944798700518, 20.46410840328292, 26.040748758047123, 3.996213760069003, 15.744425468819335, 15.763670229235311, 17.00152022339117, 12.978708190201607, 20.197304546751088, 41.79272656754635, 19.886553819543508, 25.686376664195883, 28.807517954267944, 16.090098845572513, 17.271795638577554, 17.31021927307859, 50.0115622440425, 15.098363929929713, 19.06552020253111, 24.152212379124133, 12.970134964069747, 21.365428752104442, 22.22556589591387, 34.8364894925336, 15.417173572703982, 11.967386776940595, 11.968606633038444, 13.34135391819298, 12.004405116682832, 11.555093464086445, 15.777976238303983, 12.999902814690932, 6.976969987965152, 3.559444259753254, 15.261027043218222, 15.014404727434817, 12.529951557653622, 12.973231414099352, 8.596694743633723, 11.906255353328085, 9.749551139712676, 6.34704162885965, 9.448951680672268, 14.355457507865433, 13.573954215893158, 10.03553721966028, 9.892635295174381, 5.983822405850798, 12.322174618374362, 15.844198154633483, 11.452482160855997, 10.394829597626389, 14.604971577557441, 15.92633179207694, 11.14732618690929, 15.390796165422799, 10.415387518613134, 9.104449311716358, 12.394511542489765, 24.04116501518963, 17.66798093404555, 19.966459926915814, 12.694349812519777, 21.327362020022207, 16.248114925943803, 16.197886837098412, 12.96114150443652, 18.772698261463873, 19.779136953795426, 18.829668588705037, 21.360863154965095, 11.009542337883767, 13.764693171157447, 18.98636473988995, 14.012513960920426, 9.03041356535871, 19.720929380317, 16.641646397883154, 11.743514681581553, 12.093695584898175, 16.193073226471597, 23.278008233105787, 15.754207624187115, 18.896944714305157, 14.779256634015985, 20.992052816731288, 8.88795074119245, 9.816227943055111, 13.704057462440655, 19.86638472080148, 14.58156322532913, 15.65067714000862, 18.813087360437972, 16.355610624221207, 12.832767810251696, 20.328406664013592, 6.867659948268304, 14.063458720643633, 12.814437485469943, 12.729497919346441, 27.79756760100064, 18.326671545799808, 14.895528337286919, 12.010842751081709, 14.563008997700525, 19.182627526168933, 17.551431523915102, 14.777372977200782, 15.739875855309117, 15.302228099101923, 6.626738281951297, 8.977820428373741, 15.137715023591584, 17.481463085049505, 3.222195750941409, 12.393864413035702, 22.70477331072576, 12.762492728948612, 12.225960141487494, 16.149978443079583, 11.318373705740427, 24.46707905250463, 15.34470499220973, 16.473376495554113, 13.405749161402555, 32.67819305127603, 16.873608664749252, 36.25679511811606, 17.114608781741133, 12.63159234124696, 14.199663720483313, 15.812291372682754, 32.69183186923156, 14.641108203413223, 15.271013955529579, 10.271992990895196, 17.096819935790332, 14.096371424074844, 13.43769878970404, 24.130222008982212, 16.654812362450592, 10.931332857579546, 14.980944504565143, 9.44761370637252, 21.603643552969796, 16.835440747170047, 27.172494478698873, 16.915099778043118, 29.918947203807253, 19.012406480628453, 18.203167575658128, 13.003194401193134, 16.474510778651098, 2.851138776795537, 20.017322427572424, 17.224703064350507, 31.421808026163436, 18.419663484037564, 14.498289017090636, 22.411634332171108, 12.723808280949086, 18.61345047784921, 7.978211441562801, 24.651178008361985, 12.161953557183756, 13.623036838176219, 15.345936773158648, 7.815932581126282, 42.291419887973284, 7.031709467538913, 32.64714463729014, 8.527060127508655, 14.653891617933745, 21.984623088095926, 14.9694125461312, 20.48293845619789, 9.546609334957653, 11.245737212486718, 22.52337865574583, 17.19446412910707, 14.319090071965071, 10.785521312310541, 15.825975054778723, 12.548679607016227, 24.698974425804142, 15.345850666419395, 17.299689477189464, 28.90749308421842, 17.573407700486637, 21.629710812974437, 14.045884378082672, 24.163526614554986, 11.64734854601994, 18.975523254211737, 10.686463613766987, 15.340773881862882, 12.470523648482377, 9.702987253167233, 9.292611363168138, 9.944809515720802, 14.190496827241239, 11.814259227820196, 12.632593873385035, 6.302200404262638, 11.354241149776254, 12.497185264954462, 12.79794725934022, 9.004303158176546, 10.083514767497574, 9.200147401313572, 11.741013560182354, 12.05695406006103, 9.568441413505653, 10.519862962664742, 3.1614233645397056, 10.76867738800962, 14.77246655365203, 8.181537428556974, 10.60667255865237, 16.25596349876497, 10.79068333429021, 10.519501595841378, 10.083068557639864, 9.33916779740311, 13.019828983054236, 10.019427582680244, 11.796927023467793, 5.0379751173292995, 9.84936784103555, 8.698492468241636, 11.939419914900824, 10.200764910080501, 11.17551070039065, 11.173585696669178, 8.424043770414146, 14.253815730609135, 11.973132973696057, 16.227688648769526, 13.81770856201959, 1.9226352065248258, 10.720008801287262, 11.86590261860154, 7.5823868521872, 6.486511974755073, 11.533559928886753, 8.226960288944865, 7.882349325310359, 8.16196123174211, 10.709674740844916, 10.270119896157002, 13.46254411558688, 11.852737805323326, 21.8890439883779, 13.590507533852582, 11.31426426704977, 13.573130701857478, 12.78676338240442, 14.502871957618712, 13.972197861262886, 8.866849152204828, 14.425037956128609, 10.67847062256207, 7.25792235783726, 13.128744974022387, 12.042819868747186, 13.471864786758358, 8.915468329341232, 11.579057449526436, 14.665814506849651, 29.331498323486684, 10.846585878633244, 11.658693715377801, 8.490047028453143, 11.423812221654726, 7.458107666064854, 11.311235196328322, 8.476447030180001, 11.583776679575752, 5.9143941182596915, 6.1258095452913786, 6.026359017758428, 6.6518966560484785, 9.219833623335632, 13.755149515881467, 10.222717143848941, 10.32617519191642, 12.830248027027046, 9.820083526250503, 13.670285002886239, 9.699574505560353, 13.519350329908965, 8.206529893763395, 13.946959210879305, 7.159756012421626, 12.932597155464272, 12.086198547671353, 6.379056433369944, 7.8520375843242265, 16.86960603285604, 11.036456316238654, 7.101723075580194, 9.507020887940817, 6.478582948283264, 12.37905427774358, 11.233803071888255, 14.571860012382484, 9.844750566802375, 10.294921971744195, 11.59164028460061, 10.881042562013146, 9.999239944369352, 13.566231666481668, 15.290052759068887, 12.308514540929552, 13.845615772711833, 11.020746376233472, 10.82912231559465, 10.50851219244543, 15.039012234088231, 11.372106509641917, 7.926593265459412, 12.068547987599835, 6.370838220460024, 12.18229991147074, 10.686516512194506, 15.400301265052901, 10.634692629832799, 12.495528506524598, 16.780755034309244, 17.204663897769475, 17.054835753535247, 12.06820572922564, 11.427032528370606, 12.871426423781882, 11.77471870396882, 8.12392481368088, 10.8930731850821, 12.392134991233274, 13.914936858830115, 9.614852981186342, 10.52846280846722, 12.175735386345682, 11.487903553561258, 9.91702356092521, 15.35492976432366, 7.474844485698066, 10.044275310026462, 10.341907943677173, 14.992620432879626, 8.191830142988302, 13.755585622292097, 12.556379436282448, 11.526093577110023, 4.8808464705234025, 11.342875725512876, 14.659420338461695, 5.360874772017046, 11.493735543541241, 13.350853382249067, 10.359239018549388, 12.055259114819794, 13.640079093655237, 15.755794543691598, 18.606219770425657, 16.201643468316632, 9.839737512106627, 12.111722830947745, 13.259554071664315, 19.25555064388211, 12.484088402538582, 12.03131089061759, 8.657303332615099, 12.6812484572428, 11.01664035488032, 9.814138785932654, 8.445181455230637, 20.373183143847044, 12.179122280918255, 13.293487720827743, 11.810578120494915, 11.958776038418073, 12.54258999266913, 7.211986728925894, 7.055879328103842, 6.809520690112659, 7.784688514612849, 8.354141557520292, 9.211609938419542, 11.10926674480846, 5.33085614247056, 14.173766082045582, 8.266133190218783, 11.487284741634731, 5.156917593965778, 10.537066833373903, 12.634249863569524, 8.918441279081465, 18.373889441224268, 10.538889987465625, 10.718452076945898, 9.253730046467123, 10.574967073350066, 26.761303470391013, 12.519240461275906, 20.313315244840005, 12.583674968861347, 5.836937672253819, 10.619671483272487, 48.24403424102299, 11.424188590965635, 10.21986051894442, 17.803111479860405, 11.352105995423644, 9.509591367926257, 9.95078738006966, 8.846168291697122, 12.438520409562758, 14.903530708541542, 14.927325608110726, 9.349428541857176, 16.123949161970636, 10.911934947830808, 13.637612004640939, 15.202601734904437, 9.248651278073412, 7.613885479016211, 5.147060533803016, 11.329624195923426, 15.334708392055143, 11.483867376277631, 5.5984903266285055, 14.90138560701767, 17.52946798302996, 11.077009067297265, 15.472965860289271, 21.683289370974737, 13.355163127008321, 11.494990085567316, 13.668379857197841, 10.179106689803291, 18.55201774409618, 13.632715074576309, 5.297655909661585, 14.11708973905352, 12.998290321233355, 13.999848481028813, 14.41387001493687, 9.47927404024315, 15.529030967016418, 19.956965894677882, 11.947200994283984, 15.86780844972506, 12.363976898179223, 13.060621536493825, 15.342551988594485, 11.031037865729035, 13.48982769186327, 11.580396328478786, 14.762343310729191, 14.963169537893192, 16.829807141069633, 7.629418244210871, 10.41766605180653, 10.792710428657024, 6.555908576456803, 20.835526390147525, 14.469228012343565, 18.53031181724104, 7.749419311320083, 9.854648311797574, 15.127527700901691, 13.7302069042069, 4.988316081521773, 3.6686213607385505, 4.510413968761646, 4.305764449711711, 4.56738572081477, 5.201044980865625, 2.8991328275376653, 4.800893940813475, 4.932097473346831, 2.487625250259361, 4.8584679354324205, 4.727247084261952, 3.60307502153219, 2.946360314509775, 5.7501790217324205, 5.169059950817412, 3.064084740473386, 3.9366159512261985, 4.566805292679877, 4.550125773649003, 3.7140610907534186, 2.963190649369639, 5.620619129160136, 3.4255085084854153, 3.570576535415248, 4.8547401703857656, 5.802859530557054, 5.013791518896805, 4.3850493383034825, 5.528102137318956, 3.4734590588862284, 3.617885053802789, 3.325081446739013, 4.346570279273392, 3.1530546528183168, 4.560168722321936, 5.360938849641494, 4.17344779696762, 3.8252969378322983, 5.263754815883403, 4.2765756262349255, 3.711820811215703, 4.807028726093132, 3.6299308381340447, 2.9850011975557305, 5.445258354788407, 4.097871494022597, 5.342290051280964, 9.622558655612986, 3.6178680473937836, 3.304396149910307, 4.903690040793149, 4.096378113641482, 3.9589699784896886, 4.966313120516627, 5.232473146709868, 4.509257002213557, 5.134847189673452, 5.338890502791264, 3.073624252272423, 4.419473900792433, 5.928103210923378, 3.8406730574154273, 6.412108308827921, 4.254029242517115, 3.7734746479416277, 4.372687138927228, 117.38433971897562, 5.228942598470997, 6.556638749069457, 5.206695952821016, 3.8667747732153823, 4.431241883145793, 6.662965755128103, 4.147848183944107, 5.595025577488376, 3.431445127587311, 5.3728346235311975, 6.135267927827371, 6.1635029759266, 4.463463533227668, 4.831490819529499, 4.143254401445267, 4.255750569069912, 4.577016128085618, 4.787852177301559, 4.072713654388219, 3.511532228033692, 3.248321628118115, 2.53397432205631, 3.1001098637874485, 2.9812424941966675, 3.7576929822852203, 4.724177726007499, 5.792361599953958, 8.314238861152187, 4.384173085897278, 4.546308375706011, 44.88896853391706, 4.646963218444901, 4.980928859349284, 3.4422700119499394, 3.8528230602107634, 5.439747909123257, 5.250251016715985, 7.7472279300307765, 7.259903505934814, 5.010677428864415, 3.694117925500459, 3.4098443450160496, 8.151230215505255, 5.575005095715482, 6.113326792752563, 5.317823937414194, 5.081357081132674, 3.9979055674150885, 4.973899251893307, 7.29372466544302, 3.508280600745581, 10.13325924313349, 3.9148411878805733, 5.1250811089123625, 5.0712200293591625, 7.817631550779481, 4.309990574764353, 6.987139254646583, 5.199966052078005, 4.7209464643760155, 5.7955966674898916, 5.733949156017338, 6.959474553210317, 5.775625856408179, 5.2500073757191155, 5.024088517128034, 6.4398755855105945, 4.153369850817026, 11.115412875200898, 5.080691719647162, 4.073124928159706, 8.020572505406902, 7.733971806229228, 8.382434294029045, 8.904676654909945, 3.7420470764843543, 5.6217212957176965, 4.502920081236176, 6.692859488681192, 8.11809695943888, 4.8466064531540445, 5.70037423593665, 4.922719148082682, 7.465983842190458, 7.776743211565525, 4.0270181160442675, 8.622587700085422, 5.980361647467013, 5.970650259616397, 8.625120502070303, 6.197526874127947, 7.6747932260959795, 4.881872621600813, 7.530028596015399, 4.472634735565088, 5.386453865930363, 4.6564094972005305, 5.794087364896438, 5.093451250740859, 4.916471922714199, 11.89596731320903, 6.63503991534208, 5.1400895775170286, 4.679953401402398, 3.4374231268017645, 4.953648182761043, 3.940874249398508, 8.383304167151374, 9.23821303071616, 18.47875285823599, 9.086173063286067, 7.067598336632301, 7.52364409865842, 4.849539203498, 5.279392820858942, 6.193938230036379, 5.417383370698933, 4.444084745242581, 4.438683537143802, 7.803743314099589, 7.6048609677946555, 14.36394045905075, 10.310871368102717, 9.204868273844973, 5.5481595412590465, 6.120421046900594, 7.403684428642322, 3.838794641482606, 2.945185736819078, 3.541941281763114, 5.134396951794814, 5.485888409458991, 14.057649432442267, 4.2452841752086465, 7.234642916215419, 7.127698857395855, 5.841061031559647, 7.142939158245884, 17.966838302014885, 4.2365778454849226, 5.175898862612683, 3.0406084363143315, 3.37647918247249, 5.424144057132878, 5.5050507428783515, 5.100811859644348, 6.689148449049179, 4.812872040756368, 8.216958394381459, 6.441108252941515, 6.751212790997008, 4.183151969832457, 14.409591790192055, 5.04020343782515, 7.255799174457257, 7.953156942156046, 3.3706523431552142, 3.3289098131973276, 8.663994271605368, 4.669227975035852, 9.654864800904202, 10.535358709120901, 4.716970751846918, 4.416136748928706, 10.770936495831455, 11.469803164925905, 4.729298078775439, 5.677325017829989, 13.499250082670516, 18.41675135839544, 10.845872643686379, 3.129066201877235, 5.612084836037285, 5.453498577856924, 9.141984066388163, 17.068510329418103, 3.5870158993711923, 3.688197474351089, 6.22093656283405, 7.107415740967738, 4.8192990472707535, 4.6542682738707155, 6.93036274010069, 8.252261804332756, 18.983237266152333, 8.19276988648701, 5.086977303250033, 5.105303854077736, 10.57819987947657, 8.60503953436394, 6.905224412440648, 8.460122451564581, 7.327895811169489, 5.827378142484305, 4.8444924534955565, 11.692285443503978, 8.001915324632078, 4.624208409244885, 4.480481804406861, 3.3857439901934177, 5.406270113067495, 4.706301129982758, 6.748755675166136, 14.069433362513937, 4.228424032005972, 7.9546575669997885, 6.578047671337517, 2.8703267425290937, 5.880014919841359, 8.710880101916034, 4.364114746690639, 9.302050386136242, 6.61573761369514, 4.802502398016973, 7.2826183726473825, 5.752922381104619, 3.6788819386161933, 15.490308699250969, 4.247340688993028, 6.587737413365126, 8.077174048366741, 11.22288434179706, 5.455835086225612, 3.8851917861847616, 4.801429846786272, 3.28735813829953, 7.010109795525655, 4.9252948754102865, 7.164754742715795, 7.41941414377044, 7.933425759134483, 7.5779705617047926, 12.570886151461398, 8.609414748199868, 7.570682656196171, 4.312553368405956, 3.143844544968477, 4.094885232167623, 8.767762661244493, 7.967352198889004, 25.850776671772813, 9.450856729520206, 6.266272853378279, 6.5068490157971555, 12.44185850031429, 6.210623456559954, 5.367494475720451, 3.960062402047502, 4.90538441133052, 3.4443474238269673, 4.35918258039331, 4.978931757393645, 4.902085662067304, 3.767857236983534, 3.391344514597036, 31.759754519072725, 7.247836076224431, 5.2026808292065, 5.107579388008958, 2.6252919740019194, 8.911936033998842, 5.602111787408098, 14.017099071327578, 8.747433693029441, 5.773618109805015, 8.991687415606156, 11.181321943110685, 7.145405356174139, 11.943771782694913, 7.209210618485773, 4.7117195100585025, 8.69399079329615, 6.00803290292474, 10.233314430632644, 6.611619085228738, 11.84147412400243, 5.927844029464672, 6.62995611286925, 7.58408271534887, 14.274074186298733, 4.3858338837224515, 8.367665152549426, 30.776567918263737, 5.969241100889818, 6.592485528603149, 12.882576423774113, 10.187037163290109, 6.718837195235777, 9.933326369338891, 22.590451060539795, 4.395889682449548, 24.764669434795696, 4.771917947671572, 18.341341207643836, 3.367240898394948, 6.085814220217552, 6.214329512202977, 9.18879352739895, 7.037663386592338, 10.613321488114218, 4.7769050648650415, 5.6803676131923595, 6.592173047219319, 5.255751750375322, 6.285057615380801, 7.731003731035948, 8.41193392921466, 6.295791186116727, 3.871603188697942, 16.615278304305072, 11.215174608587562, 5.241729493375436, 3.6648606756832787, 6.292698744172711, 20.222610603054623, 8.909029670377016, 4.205080256749511, 4.925683148706965, 4.8022360124906145, 14.16305762410373, 8.46341729965364, 5.907013435783847, 16.859785067523298, 9.048100649957643, 7.317648286681917, 5.924029442212317, 29.08962529575724, 5.475762406823743, 3.9979753097660327, 20.823626689635468, 5.083258373385378, 3.6217964798707247, 12.26365956947455, 6.0892439376670735, 7.465308409322164, 14.810478509426163, 6.542384822103367, 11.103666087442877, 8.762688295748395, 5.677101308336545, 9.378152592621284, 17.126526168373907, 6.561307536837527, 10.26324074908489, 22.430560496977563, 6.138665553363133, 5.644465494871602, 12.719853725502666, 5.776497902771423, 5.355152976995743, 6.720731653129263, 9.730990593281494, 6.656660423521065, 8.727521447391073, 6.237126448269441, 4.991081059373292, 12.019458412191264, 7.764551520380404, 7.965261868491253, 24.67941279930916, 5.474702168280826, 5.661806781529355, 15.657553157115908, 3.7728548044116925, 14.946231106187092, 4.40194177872447, 5.749699418269165, 9.656346746968847, 10.728992932295633, 4.555393822344129, 6.831590709157012, 9.642087450336348, 6.616731073919812, 8.728279016534646, 3.707341714349501, 9.301416156436863, 14.355719102202999, 8.338122919582077, 4.972027612298248, 16.03439844102452, 6.901085140181562, 4.985894453669161, 9.389424497648216, 6.35643834524587, 7.0407936540939495, 5.0382067189062925, 6.716417948636004, 14.132922262701943, 5.05894521434857, 5.359721423889961, 14.13410512791676, 8.057018915269447, 7.947898505566054, 4.805580895631321, 8.97617322204314, 9.618196861570343, 8.39757264096771, 4.4222410938842, 8.853406450906382, 10.987333935594664, 11.498743035391442, 7.292362412215326, 10.400788121928494, 5.316450399586172, 6.9089635994549345, 8.13162911253019, 7.410279658558352, 14.5061949805351, 7.635247510732244, 20.364129164806645, 16.700712114174255, 6.7146648582829425, 9.469673710317, 7.3186942333134635, 4.34206013703408, 8.61874294942062, 7.286617794027964, 16.813773685144714, 13.09312085429555, 5.700746420650672, 4.305816059933018, 10.864207193345441, 7.072067654661632, 11.14487382504309, 14.55552613252862, 8.250172770845174, 11.311566533074338, 7.639269972497022, 9.935363393342586, 5.820154408483671, 8.062725454231222, 10.266455952315651, 9.173580496911852, 3.657536084505253, 20.632070772041892, 13.76668786139895, 4.37856976455322, 4.974334139937468, 3.3080306609213315, 4.360766403341892, 7.459890940612662, 5.068883791442408, 20.621320169827175, 6.0418551574817085, 5.13929655208969, 3.2435917266430057, 6.647477247884672, 6.992845114905264, 4.025956114684033, 6.511025396652241, 12.134941163452574, 5.918102393417172, 17.95186979703656, 4.036826503611419, 16.719911963066064, 9.922245632528114, 16.095968254288387, 16.05421811950045, 7.734555693871651, 9.199264013847644, 5.267519033489391, 4.474454898980675, 10.805274750546966, 6.885869322585504, 4.66321191249474, 3.6552484772288096, 4.058423006592668, 4.701728727317414, 15.075503055289843, 17.703320725873898, 3.9392396536523693, 5.281047144440344, 6.850006499508329, 4.78852266706417, 18.252862383014612, 14.06386881799631, 7.800758212836882, 3.6160023734406135, 4.13778716803772, 4.49986324217944, 19.13220017897945, 12.755218755645144, 6.608954344395966, 8.109778533399034, 6.898126720112915, 4.937387643357925, 3.7478619672931286, 8.181705457182021, 4.589047519185638, 7.070748278808379, 7.5176286026028345, 5.066043693493403, 5.494120136357086, 4.8776289313145496, 23.261725688677377, 10.225636745614475, 7.137366367896747, 5.098210407658917, 6.951877578644951, 5.160953621288886, 14.478626821015572, 8.877127806933315, 10.938730638085136, 14.22872732335504, 9.478545484630818, 10.801406884581713, 7.949316200187759, 5.2320398795688305, 6.199906341017545, 5.4121255876953205, 6.52494289974015, 11.875221683865798, 5.2019141603568135, 9.860670287679715, 5.690384386268766, 7.947409772071723, 4.659884372369912, 7.005749427563629, 6.110595707400163, 4.57669016689432, 5.645561055812006, 8.938809204192737, 15.196229275475966, 8.853436863932606, 7.89300437870903, 5.927037850078655, 9.27596597886877, 4.64498237597609, 9.167059564467, 16.115956335096946, 5.644734046992012, 6.823406658416359, 6.990954488950574, 7.457479292053186, 4.848224376584823, 166.47541666666675, 7.6261911954567205, 4.599241597726019, 8.179371408191262, 5.500599979034888, 8.30167612532961, 13.436177173928842, 6.117076117354758, 7.806827584212803, 10.188496728119697, 7.844409787640625, 5.046102331135933, 11.314115697363873, 5.823836782633544, 6.092201209678554, 12.114451631645014, 4.6539629770640225, 5.06862949557781, 7.035444529399435, 3.5043914490254453] ss_total_hash = [0.0, 1.0000000000000007, 1.3500000000000008, 1.1400000000000008, 1.0600000000000005, 1.380000000000001, 1.068333333333334, 1.5800000000000003, 1.520000000000001, 2.276666666666665, 2.5650000000000013, 2.0375000000000014, 3.3074999999999997, 2.228666666666667, 2.5145, 5.108904761904758, 9.68666666666667, 5.103880952380953, 4.739047619047619, 3.2886309523809527, 3.0494722222222235, 2.2680158730158713, 2.6347301587301573, 2.569333333333335, 1.9569267676767663, 1.974300505050506, 1.8238095238095242, 1.8025000000000007, 2.2234433621933616, 2.1262759462759457, 2.234155677655677, 2.5328582251082246, 1.8249087301587303, 4.28922222222222, 2.3010443722943714, 4.488727272727269, 4.883132034632035, 4.835193861693861, 4.229695297349708, 2.898316041801336, 2.944388930513929, 2.847198412698412, 3.3173741536241526, 2.990893939393936, 2.956015341383761, 2.981594097423044, 5.522365079365082, 4.259163865546219, 2.0227109279609286, 2.741311516914459, 2.5181587301587287, 3.2018482350982342, 3.4778144355644343, 3.850927045177044, 2.41322587253934, 3.2781280794369017, 4.092189449439449, 2.509321380672093, 3.976297619047619, 2.8724137336093856, 4.858544772015049, 3.4067950937950937, 2.7373707674453107, 4.383735418768027, 4.031776286337986, 3.410242419266556, 3.0258437950937935, 3.7278829384009278, 3.6347941443264027, 3.315129733491145, 2.6173167706476517, 2.870930417827785, 4.6401742448727745, 4.134011639530614, 3.9339930592108, 2.606298554172007, 3.4107280219780214, 3.768343771811262, 2.782505981739853, 3.1381493668295315, 4.126191549499093, 2.6051036693784355, 2.7482490379990363, 7.702788221263826, 2.556195374744608, 2.5105410658019767, 3.219166887034533, 2.597745863214912, 4.628805165397904, 3.7194470993272124, 4.915139477489476, 4.885871031746028, 7.614527580262872, 3.0740182525592736, 3.215831446331446, 4.612165523241508, 3.0531669063507283, 2.942134655549129, 3.300932461082459, 3.103323726013492, 4.266287185673646, 3.2781156998230503, 3.6463326591486735, 3.626761416429097, 3.816181480390131, 6.797051220937874, 4.003772989179721, 2.4146258855629252, 3.323718380283042, 2.7095547387878427, 2.8544396740684124, 3.708733534413642, 3.1532188382141935, 2.909411002589203, 2.9275904320508386, 4.1698851554433345, 4.056087059947277, 5.293429973957019, 4.860194042324853, 3.5585838453998835, 4.129701721694046, 7.804706677309615, 3.6408082973699845, 6.56812829963045, 3.0690756889989044, 7.176900752186044, 4.994252919741409, 3.618340578936212, 4.975841909577909, 2.7486940433231664, 2.684215883436421, 4.166961217814754, 3.8380552911244825, 4.099575984754483, 3.605527621948839, 3.511787729655292, 3.4103961915806886, 4.471806125125021, 3.2201177756820623, 3.1059254671601026, 16.755278895041975, 8.190809793148029, 3.2492257264464914, 4.26576474342651, 3.801741677136025, 3.870474038107173, 4.249430921416989, 2.8287745957051094, 8.016677892583514, 3.2302389863138337, 4.813405935880276, 14.782019607843143, 5.330585481183707, 6.560581909057517, 3.5569051677777743, 12.938892857142864, 5.144251222894461, 7.085220678594704, 11.486971069322625, 6.3021576589394215, 3.1901920695699797, 6.091371785834971, 5.617076944903241, 4.3420813416754305, 3.453471177627698, 3.2845736483837884, 3.593575049497437, 4.010965270394988, 3.8388543591703588, 3.1045416226399793, 3.8179340193964797, 3.849772634272312, 4.098890650614775, 3.719188514108638, 4.699399577640306, 6.121319975407963, 5.107286423561091, 3.4987398647816, 5.766150467520073, 5.614886307396639, 3.115178988666992, 9.702205337910586, 4.622912858593372, 4.12165327187773, 5.866318433502242, 6.389597070155504, 2.8033502449503866, 3.548988025378957, 4.47090008333068, 2.9419595759306634, 13.760187278510688, 3.502551297277755, 2.9013317632325606, 3.787331075186104, 3.7450724015600296, 2.9501371678722426, 2.856518470592921, 2.789187555983974, 3.7078649589183295, 3.118050537200597, 3.0681621197739424, 4.267940883896618, 5.7833720483970525, 3.4465728392676005, 3.3473048499434386, 7.108582974277895, 5.4919269243444875, 5.386246122825336, 5.407170598942025, 14.22886249137336, 4.668948277522315, 5.966313808090884, 6.7102252894635965, 2.3757815213022746, 3.8683244449276906, 3.7778479208531177, 4.625790030740215, 3.1750841798759963, 4.827528243243348, 2.474277503562953, 9.163035561820166, 4.956319250547605, 4.717256190897462, 8.80720499041495, 6.336684378374483, 7.20406810085944, 3.9912309356395155, 5.163762910157242, 4.047084953260784, 4.607223098038002, 4.902407717068601, 5.513593092862951, 3.3027255171823686, 3.877844808461328, 3.6988577868082033, 5.174498064968243, 5.276947610491879, 3.465808415853251, 3.862272316340702, 4.771289190093558, 8.090619933747202, 15.922157607705026, 4.973901694243462, 5.341430289849321, 3.3296176929051686, 13.006445921530979, 3.626706767654621, 5.263804567401539, 3.0869612747933335, 3.524795279161144, 6.6822559553009375, 3.6775674887149297, 3.7778327788554464, 5.740946293983035, 3.1088915133943877, 8.811134376903299, 5.943495896697724, 6.936836405168678, 5.006528849277777, 4.70144570003112, 3.4115538728443333, 5.573569840379627, 6.857773046535781, 5.643557906784944, 6.0979069694868215, 3.7027443051995768, 9.191026021412217, 5.2691916565438355, 4.763613361098721, 4.177731437984968, 5.404412570745232, 11.204267604715275, 6.48597974792106, 4.519527384443176, 3.368595700722483, 6.86108932457095, 5.269367862262256, 4.3473380575438085, 9.578369033867066, 5.001788692257771, 3.2049520524410764, 6.521655818020075, 4.796237375519232, 5.6440677268192605, 3.8980165003466163, 4.6068834840148565, 4.111747908141366, 12.677577218567086, 4.93889492191946, 4.335228914163805, 4.192541834937327, 4.678391442155364, 5.991759882671503, 4.305724753769083, 3.9486125917139017, 2.4403518096282797, 8.620092709427169, 4.080127228069762, 6.732602443811601, 5.039900985504933, 2.5362416118754294, 14.111525254005937, 7.267769623048372, 3.448774999817216, 6.276417028227601, 22.68497619047617, 5.452316017787222, 4.897408025088945, 4.610448666066334, 3.530609433394316, 4.884175303854221, 5.693907407252014, 8.453448917019742, 4.672849999255839, 3.5458163064699812, 6.2609213234687875, 6.614846070538172, 4.267510045976318, 5.780001795817033, 3.9180895667336038, 5.9369284251438375, 9.436376851123311, 3.8708650088938867, 3.600557058275249, 3.4662358526862045, 5.387733600852354, 4.271259510638397, 4.782069525518592, 4.49356851309355, 6.566318404250693, 3.944883477125394, 5.330308850958495, 5.69110212870885, 3.2107947699448554, 11.275163991458351, 3.7965102350653397, 6.375311975471916, 5.212589672126976, 6.741234799070995, 7.053963527024748, 24.532803405962074, 27.429562043998867, 16.61313736252854, 14.647601223917077, 14.568718343201095, 36.3412002371277, 23.088265247471817, 10.51204316782787, 15.898747070606875, 16.660277413932583, 10.123929849254402, 8.417265415690627, 9.221102783788867, 8.569800555854192, 7.940809163843088, 11.526813396080605, 6.768729151715287, 9.914226168406444, 6.922959358483149, 6.845377567920281, 5.602871700290701, 9.891494246573641, 8.472839793397595, 5.688392096376062, 5.367891363889342, 5.022025427983762, 13.39237279438431, 4.958034754935533, 8.499042277380022, 6.905456981868053, 7.712606257077217, 6.194993962022988, 5.405066161996828, 10.920310035034717, 5.0003497208887095, 4.211136266265752, 5.838017319906559, 5.371148794568776, 4.680293787392933, 7.670000570365724, 12.926110723404621, 4.415650669396009, 6.650277736548935, 5.0337333383872185, 4.558645013529697, 3.8831409556579732, 3.8250754350714415, 3.979656715506605, 4.017608543690826, 4.959121311188793, 6.577760851381361, 5.6843416152761215, 12.705545321673487, 3.3093747102798314, 4.124672577952959, 6.943434870936144, 5.213040601637549, 7.601711067769759, 4.646203714992567, 3.9994267394612675, 3.5486014762103064, 4.854514276207958, 4.753307372888019, 4.425512929340159, 7.487988811698051, 3.604071901878749, 12.125024579906126, 2.708871509010505, 3.5269998283401462, 3.1728255428262995, 3.238310818506904, 13.02702949510971, 2.9671555250601984, 4.139936298133253, 6.208104207788222, 4.756033268352548, 3.645103988483602, 3.912444627450089, 3.9570636389150438, 6.022246157513449, 2.2731805347708622, 8.779640986783594, 4.78565850514774, 7.92062174412365, 4.266790863834335, 4.965972288662904, 3.306648475526529, 5.514918915433833, 3.2560933208816905, 3.0087233079764704, 5.360762445766304, 15.864144660894675, 4.64173900279712, 2.7973136208334672, 2.7595035466591686, 3.0397940851494054, 13.867725239165734, 5.415401947105905, 4.080442257200228, 2.8187750887748972, 3.1033228864463447, 3.660723735101289, 2.728275358879452, 3.5043919558970216, 3.2089727700010617, 13.628548498537498, 3.67389798023905, 13.54209485538616, 7.728823841252864, 4.141068750769191, 4.280947541470967, 4.31017302512394, 4.565863723462557, 4.058093942672621, 13.76171488929721, 6.89841458748093, 10.993969593898168, 2.9037703781747783, 4.800708048600034, 9.526314492463651, 2.269672461940797, 11.113015637658068, 4.730968713429897, 5.785868175508369, 3.770368587282757, 4.9306026907203995, 7.0742434926595035, 82.12858974136881, 6.28353304242878, 5.518602987628061, 3.6480669359728437, 2.5976845795014785, 5.880395065397352, 3.5524869553521894, 2.886983068783989, 3.7159959849703244, 5.661075657056092, 8.201372248741507, 3.185047998007355, 2.473629548197696, 4.409791382083143, 12.824981771165268, 3.953384345193823, 9.828826897206934, 4.791032360198844, 3.6379820103836917, 4.490405988416845, 6.431199893511256, 7.1249576866651765, 3.2103561917834114, 3.8851596602136875, 7.888387099109719, 3.988838288263812, 2.961309495256055, 2.4205154283848156, 10.132259490543854, 5.998447794092414, 4.750433019936419, 7.197668544213189, 3.6561813617082617, 4.506211111738406, 5.06367509739762, 5.24997577010148, 2.5041340296198267, 36.06100331973428, 9.655690120138019, 2.8586655273256705, 3.382390572586764, 3.5077071439077847, 5.363420740939012, 2.4878686548281546, 4.021854147326, 3.448261488806581, 3.1949885207724726, 7.810327786394091, 5.27425751811332, 5.268366395993963, 8.649366368500974, 10.082159722098018, 4.149813775714628, 3.7312915022713753, 4.146848701322211, 59.15813782051279, 62.74629634692793, 40.229250610500614, 31.504544457407903, 28.021943760262733, 22.75647600225323, 19.660399220519892, 17.481478462181464, 15.462323135947882, 16.4569688575652, 10.573433972866583, 6.847483879656632, 7.41526850437963, 4.206175434068854, 3.3537532591783066, 5.1824574990106935, 3.5318638369124296, 4.927039395453889, 4.099656093342053, 11.572417129167134, 4.055316432189381, 3.2049815119103626, 4.839107882486904, 2.346167761024793, 8.182681382686797, 4.104253158211228, 4.412006113716092, 4.119182956814236, 13.761807321773118, 12.01639817246922, 6.761093665573172, 5.964637281685947, 9.618355858234064, 5.3758341558581035, 9.270858670196095, 3.3706029974482354, 10.533855033762045, 6.503411009739864, 6.7175204552929, 5.860933005836826, 5.907169616362146, 4.822800579308357, 3.427419885450537, 2.5247922045693554, 11.455075081168834, 4.94410356519106, 7.731036383692425, 7.254660638872994, 3.2818528399592743, 3.4504541394414807, 4.035006609115717, 3.742491088215772, 6.228754060333288, 6.49623332177854, 6.828191384815465, 6.441810847230334, 6.632727194231031, 5.900062231293053, 5.94517938086972, 11.741000784527994, 12.31256618295658, 11.076343789559694, 6.000355205408418, 16.222391379552064, 10.984036537085325, 4.5739411321308205, 2.7457773152215, 9.861663499670936, 3.8974200663989897, 6.5831437026180915, 3.650510010182906, 2.902657849804693, 6.302681638456153, 3.451369877361455, 9.180850126926215, 3.019744159471172, 2.981129952524981, 3.9984432960748304, 4.14949655851572, 8.1393195070998, 10.952323812399309, 14.472572913704035, 14.241541432214195, 20.43589534515193, 22.468892635772537, 12.748873722275192, 15.518780333241386, 10.203449270416485, 10.016760497625684, 12.409644872439502, 15.962802274416406, 3.152116281065552, 5.005113642817753, 4.915694146996318, 3.0384570791749517, 5.651417856193832, 5.977010905761399, 3.006282526971293, 3.4411982750054646, 3.958289939044961, 3.4304364729245087, 3.9732889634277657, 3.2799574433263134, 12.971634746376509, 10.13799552379987, 3.296154459511155, 3.372863234822485, 13.346880603296809, 5.791510065929769, 6.301546040611452, 12.086224565834586, 6.7138660422401415, 5.712915239641946, 5.9981823162964885, 8.884023137846627, 3.808269261188545, 6.445846992837152, 5.866421606231418, 5.452379570336576, 4.105963553200121, 6.181804514368588, 4.241918648376729, 6.819734357465558, 4.944620329835787, 8.361057758232437, 4.480031388043844, 5.381520467390604, 13.581883732561414, 3.46550032529697, 4.727433056428888, 4.1970229547956315, 4.319846748189796, 9.037294401919961, 5.722832370002547, 10.401515734308882, 11.03707803565747, 11.328209061893226, 8.206887563132057, 6.435280028413962, 10.489310562650717, 9.672692679444726, 8.237355605257374, 7.695739052134825, 13.836594936399766, 8.672593574570374, 4.273149736790202, 5.048280159554862, 4.655128322897508, 7.240841720571772, 9.034990240447975, 6.163318808331802, 5.126627195620588, 6.351169908993977, 3.4440075168747595, 8.645601308821897, 10.238974887471088, 6.194132184108202, 7.517793668183135, 4.693807535876257, 3.4926385028983487, 3.7662385035260244, 12.666013435813307, 11.706394206349701, 7.8717812836413765, 11.029609957738908, 9.00834555599118, 7.55939274217422, 6.829476783985675, 9.047129324104944, 7.583092093538673, 6.920246986848527, 6.215831103861818, 3.326696204784837, 5.060418575891101, 5.995065026343711, 3.995876166496662, 7.092592952986122, 5.184441551626758, 9.761880994756076, 6.29120394003403, 4.288574914613079, 6.310810120514355, 6.981992062654405, 2.9917451012424308, 9.154540239991928, 3.1753086697149495, 6.957044529790697, 2.9792376627523542, 4.3556813117952915, 4.34099956690516, 5.320221479176621, 4.998026724005576, 4.148880622934283, 4.987450797379411, 9.637939278150832, 11.942194383892046, 4.059800023572901, 4.314305396269485, 11.023698603932303, 12.717169070006957, 9.339228312343824, 3.985290295006412, 5.381003814057406, 5.619385078630077, 3.828733858206622, 2.696937908606452, 4.214720354918081, 5.366182240283729, 5.054685470789675, 6.940916167623478, 3.320826269392741, 5.172713623383537, 92.87626987455626, 7.904465901322484, 4.913063216615327, 10.597501145245207, 6.904572481683861, 5.519683165439116, 6.427898738110803, 4.480649486352809, 13.284443998160354, 8.409727198961976, 7.450158050358205, 4.433693322306821, 5.276683115247122, 6.4076292884835, 9.888907783882786, 3.8890057887357115, 9.356393319796611, 4.8291205543003395, 3.4859481993048647, 8.369455865993908, 7.538194564769679, 3.3484792335232942, 3.20230390339003, 4.336047853428875, 4.839196684577768, 4.51265925002487, 4.963099916665457, 4.895059668983747, 8.304538332825532, 3.9818398389894205, 38.45632554299496, 29.62672453617337, 20.95346153779652, 30.020236246575184, 9.195953987415106, 6.641596129627085, 5.252789817912772, 4.787556991386711, 4.98910777785001, 4.485531092625858, 6.215108978514234, 4.372366854286088, 3.3745409804621973, 3.821914526752729, 5.699299709719449, 3.422572130865946, 4.208985715974846, 6.835301169770827, 4.988763184550301, 8.46112075397999, 11.370923221561888, 9.728514211682706, 7.710381501570035, 5.752183421953434, 7.556573888479422, 11.283068393731659, 6.2723219388521905, 11.213982142599237, 9.755960412065626, 8.324519210486033, 6.646941865029686, 4.54035989150876, 6.792335088682634, 3.5363619723356567, 4.241469220194855, 2.5317272064045153, 4.903937329110921, 4.744302121462663, 4.048628227550667, 4.632029893510451, 3.6508253482372646, 4.082737241452378, 3.487407478012035, 5.750710079962399, 5.502279916108358, 3.604355852960653, 4.270207871115015, 4.176985816515175, 4.01069568279729, 5.171819232962646, 3.4356999193624578, 3.57591179505499, 5.156812644830091, 4.369412704205786, 5.300342131726903, 6.628833446499124, 5.070711407987149, 5.332275956114154, 4.09825705758875, 4.200775370219134, 4.0651373675401725, 6.212039495216179, 7.630577946211958, 7.202526515994878, 4.451924434335081, 10.50234732621547, 2.9709540525904137, 2.3285177563517028, 4.951020791950608, 5.983891792161793, 5.07641515864262, 5.289883796882151, 8.931688901670594, 3.061355044065644, 8.952058930583568, 4.958984412960176, 4.294050544667842, 4.787268247619688, 7.578326753129865, 4.881204617190124, 9.181339279708586, 14.665402910719267, 13.367571910184228, 16.183608695079265, 6.3771502196589855, 4.162147431815383, 4.538974526858711, 4.428699547110842, 4.8090374440742805, 4.24780524201121, 10.075242707934851, 7.714654243999627, 4.7977320397439165, 5.992291340061553, 2.5717097782223868, 4.711397521151246, 3.5669185704420663, 3.895845716764255, 6.4761511411178985, 5.15496640925915, 6.139584619011091, 6.348513232477737, 6.065132723226435, 6.703672172911504, 5.086611174920924, 6.221612327964702, 5.007832616163406, 6.058230612917728, 9.440513177259351, 15.444967614771498, 12.62966015928516, 10.175752352183313, 5.906115010501485, 9.353211924490395, 6.579428543390671, 3.393853016963937, 5.467400613328374, 5.725499483746007, 3.6927585365695452, 5.071508496741735, 3.7562008147462955, 8.395150145247147, 4.580861508304534, 8.216717886280385, 2.9273858634234293, 4.452074498629161, 2.5092544617996, 4.115363827589545, 4.5475672972949175, 3.7760112725824984, 3.936407188426855, 4.648007158181684, 11.279736635096928, 4.071379395647781, 4.065301155242517, 3.6630143563424964, 4.566293915766063, 5.261829420579421, 11.994463508713512, 5.330809946795602, 5.980790619700331, 4.258864292352526, 4.801500121216292, 3.00960149055054, 7.6907210193474915, 2.754676176822986, 4.335020489166232, 6.858605436176276, 4.699623838485779, 3.5293568540171267, 5.759224612216459, 3.708745159340195, 6.297310068785291, 4.821353042872011, 5.0691330703709045, 4.298541673446944, 4.9732093862234175, 4.399946328127182, 4.307333581752505, 3.426273267084041, 4.492909722774913, 4.212433965757787, 3.990774381060235, 4.40564640217719, 4.549335740269059, 5.350386191175547, 3.6634902351706513, 6.782150335198434, 3.7382760161509836, 10.450833381098056, 4.024426026685004, 3.990459508952904, 3.7804613246092083, 5.463027942170334, 6.381478790263444, 5.0824638020993795, 4.5746267564124325, 3.1936405390471445, 4.602419563090058, 13.815880952380942, 5.374143811496364, 6.128235187958418, 47.17365339769207, 13.313507507209394, 5.049809692230399, 6.785342144602137, 8.143101360489318, 7.130112844163601, 5.086644325810318, 8.96396949925298, 6.5553067171020825, 2.7945681427688465, 8.438789395535157, 4.053653940691853, 4.578397935261929, 12.323323220131051, 3.0526324527984205, 4.305368976923324, 3.921794533756078, 12.561709096459102, 4.0213151768985185, 4.598954409305905, 5.029956628847113, 2.463346154262068, 11.02298561322811, 2.9541255495622374, 3.9533748070921684, 4.963202840986297, 4.338689449439447, 11.42225901875901, 5.046536283578052, 3.999674261202438, 4.509352751159856, 10.202219969214845, 5.704772676128826, 3.4147926499628056, 5.189141330132342, 4.380092889230031, 4.60166913128615, 12.888461903622726, 6.593106761116906, 7.426793526006529, 8.00751091352994, 7.850395055438234, 4.121987950627481, 4.078043615768998, 4.118412302058715, 3.161615849463911, 3.8605946243348646, 3.7034731864836243, 3.1566664069834576, 7.467673119410104, 4.722328224352135, 2.691169392207855, 5.723076096868767, 4.4329105908013915, 4.690940051564777, 4.374255277252829, 4.299505661160516, 10.783264931232756, 4.5868760848824035, 9.756702265997129, 8.92790486823277, 13.974131768533544, 5.252224992864614, 5.54859278984201, 3.6469362073718266, 3.8821137876758858, 4.434794113391438, 4.52350065140208, 8.602670673968271, 3.391272623496643, 5.135700925986873, 4.19954562334999, 3.5133049843597086, 4.363432837085832, 4.046778638211319, 7.462599795025153, 3.787371863320827, 11.590176948051944, 6.986542396666316, 4.1786514189704524, 9.381441581628534, 4.623534437162471, 5.462159365398492, 7.690413403746534, 5.075780392546156, 7.869662970333407, 6.133516595588839, 5.095634519865669, 9.329907585656516, 6.092153028487035, 5.8528186587044795, 9.971187525158582, 4.4855329770209, 12.57806020035248, 10.657153104299239, 7.103065874055425, 11.193706003993523, 2.891438120836268, 3.195808852868506, 8.21871986493039, 3.4318325953460582, 5.763223282321966, 8.885126763557023, 13.187833277425192, 9.48047196594255, 4.642683475738352, 5.206811031063927, 4.280759416964697, 5.452378116940269, 6.188034155110421, 5.584204747458422, 6.1512361983903165, 5.849352556318674, 4.427300981279502, 4.486908522584985, 6.88576877962474, 3.661973372765151, 8.271763350868463, 4.4191312755412, 3.388151461368394, 4.528361313592991, 6.113380381777723, 4.237375505736311, 3.333252946133847, 3.5024842854857545, 3.498939089158113, 3.776730892525543, 2.5801712386478197, 3.7564609164776677, 10.615997105345173, 3.8353919258839313, 2.822891656735214, 5.03202567720802, 6.630559148378536, 7.925685037419133, 9.746315042551117, 4.362766093174149, 4.011052022132963, 4.821111678098637, 9.558333646546544, 7.725883774162059, 7.387763777279845, 4.511822550943623, 4.808435850408114, 5.44235787430421, 5.806450890241946, 4.296616260427543, 4.30073477647429, 6.275892086339487, 47.16448060342431, 4.47295708957052, 4.878016151652825, 4.679821886569365, 3.068037012541132, 4.481794134958607, 4.660394643392602, 2.7514550061934657, 2.912206486834996, 6.822185342836882, 4.871848799722975, 4.18951967822488, 4.487105009954438, 4.15258867469316, 3.8760351412524123, 7.83000475593325, 3.95028312465055, 5.193372012933243, 4.990845014841307, 5.387174814375792, 6.474201479758537, 2.879411916099842, 3.694952627152362, 6.1019053270259125, 3.026991644009654, 3.9374623733224166, 4.739248105097927, 4.051561330324664, 3.9047355921711704, 5.119037075547794, 4.270866044143161, 2.9479935801948365, 3.4832304407974926, 4.153263248032577, 3.3383784293239773, 8.26026890756303, 4.399237006658059, 2.8593665235654124, 3.6481675463547925, 2.646517853236981, 5.950468721407806, 4.348995737915199, 3.6657411368098205, 5.026756410400498, 4.057307843291765, 7.8360814542943595, 6.779223345297592, 6.091476490398275, 4.77051027288168, 4.576871475164391, 4.2658880702058735, 4.085280235658409, 3.4439176094099504, 7.755169152587991, 2.8393565876583597, 3.582001746925928, 3.7982595837749202, 5.73750516228767, 6.942481254736795, 2.634796022652098, 4.204788692232608, 3.4545856600773472, 3.4466325961565785, 4.9559930482253725, 2.8378968713748116, 3.3233062889601035, 7.053096069227061, 4.405815476814904, 9.173803698891575, 4.587143315045077, 18.237654185990063, 5.449187393706524, 4.28595707525578, 5.137722398914637, 4.541727865106022, 3.9298932852315005, 4.36354466780138, 5.544832780433009, 7.9254628546577734, 4.956234768192968, 4.527673457630174, 3.941120045940528, 8.927924730667764, 3.691235918494853, 3.244873780874555, 3.137955331940648, 3.452638232445837, 4.1005643247665144, 7.536338090597274, 2.617074883695137, 3.217016494857051, 4.356331174183678, 3.785929632005819, 5.415833308558726, 3.851229781103626, 2.7094966407302654, 6.1091485985290355, 8.633799366483188, 5.921038264123681, 5.090567998513148, 3.593483423983423, 5.146789213042525, 5.401407754932403, 6.205340332297295, 8.26678338096372, 4.218013875798881, 9.013103573678379, 4.724069623884994, 7.1313907444482885, 6.495678768110978, 4.799881866916045, 4.916563107152579, 4.494456798021859, 3.540902032796829, 3.691821396794726, 6.464981401616027, 4.93683400225505, 3.5849008938761764, 8.866766211750184, 5.509130035479158, 5.922887187991016, 2.9218601913896007, 7.755638396662375, 4.478229815007252, 6.153115504778401, 5.514374244851448, 4.224851850884381, 5.037321392333415, 5.243873406093883, 4.281227771027254, 8.678446415846482, 6.137608531772677, 5.051619797933384, 3.948986069440695, 5.3995826409656, 4.9550826656671125, 3.291790608971737, 4.6010371541118165, 3.0471708103573305, 4.772714851708976, 5.714150620390184, 61.392911073165905, 2.8608101906858505, 4.281066851521839, 3.2255082297720814, 5.564430855805551, 6.564428368024321, 6.169080314778033, 15.910288423758338, 7.665099856102621, 4.204835075458174, 4.305234576381253, 5.616878519639687, 5.560611812997557, 3.580824975135535, 5.5399546863146485, 4.16711737158526, 5.364628780737388, 5.00375406277772, 2.9410960877541084, 4.2926118547550765, 4.3239981837517805, 4.377901418855117, 3.927304942210813, 2.9575887004816765, 7.072006525679674, 6.077124487905434, 4.68762163400921, 2.621299083924498, 3.8877321299155865, 4.082208960168076, 4.954129826401801, 4.874949275341516, 4.317213169961598, 4.864687449555948, 5.160771959917372, 5.9345583346475586, 5.139971270837424, 7.724857408351023, 5.45863800217826, 4.0168132310300555, 5.32655890623048, 4.596952661825753, 4.170839862168543, 4.705912408873966, 4.310092996652579, 4.726472953502828, 4.808714309032316, 7.927761514075162, 4.9446133020458625, 5.796133863363679, 11.522064170971708, 3.9966795098474055, 4.133834362755697, 3.4583774902872233, 3.5340774757424516, 4.263045986127559, 3.3595160015272882, 5.34877452381409, 5.895896058749917, 5.2094731891915735, 5.0962672522205565, 4.438170316821995, 10.943164813400722, 13.49856623370334, 11.444984269035658, 8.842370962262843, 15.048575678857643, 7.553245248251398, 6.054694564550642, 5.35339335506349, 10.963891700557829, 4.772860076438187, 6.764392550329453, 7.43278848478211, 5.347347410562774, 4.925321720473903, 6.446210106794875, 7.152109462539122, 4.811184728964717, 4.748021394626865, 5.286989413787329, 10.01944445583031, 11.042925089089511, 6.6427197375032625, 4.334654160423542, 4.860269758146874, 3.6650969039942094, 6.082731344743052, 13.243053639600399, 7.161376523631473, 30.660422054565714, 8.371201332191292, 14.364960747038031, 6.561772175444466, 8.659845276193082, 15.735339017928194, 10.285101884800826, 5.458670909437876, 6.678944389730395, 6.998485604387187, 3.8357800240633715, 5.36565712599235, 3.8507421882228625, 4.043560424462745, 7.199483940822671, 4.551294731656579, 4.893942011235676, 5.494305316299156, 6.680242794396996, 5.984594869151004, 8.2084663528465, 3.7126790397049834, 5.4049867953495925, 5.580000383160118, 8.085464680655855, 4.554161459441557, 4.884321254245336, 3.8120156057446515, 6.248746938079707, 3.6585499998529705, 3.960496575168312, 5.241387148005401, 9.76195208846493, 5.78771772294805, 5.559372705749598, 3.9869996122960414, 5.755052340142404, 4.223458792938082, 3.9749924014825053, 4.467761874423344, 4.633779565835064, 4.679880279566777, 3.115053663716669, 3.7575544496465496, 6.099102824175809, 11.410902078014747, 3.87502181520898, 3.868895159759393, 2.9704954109435135, 4.101489018849772, 4.456420518649223, 3.8226443397615184, 6.435526883910749, 6.202536706264317, 7.106278201993178, 3.5179110367574746, 3.6201481634378343, 4.765588085794581, 4.705198548292472, 6.899954843048547, 4.346190199914616, 5.582094718695001, 3.83588960239345, 3.9434428875621235, 5.36018666248755, 3.27028795287142, 4.533994750066633, 3.365236249728957, 3.153803299579262, 4.681125404950462, 3.99181938918311, 17.329996067558653, 2.7958071237309023, 4.518327475991758, 4.859462824882819, 18.523144975730826, 6.911894945466734, 4.1433965607832555, 4.048976129453216, 4.193128892610581, 8.11674298721633, 4.496931150463928, 4.026662623481497, 6.923357969467305, 4.416634632268186, 6.307757729002902, 4.0042133379713185, 2.947528038251436, 2.92592832635204, 6.288406201899234, 4.923928928103076, 3.8001632938932945, 6.663670062056711, 3.4996841069227838, 4.582855545874787, 7.375210088005765, 3.8607222587431504, 3.6714698392859977, 3.976753081012669, 6.026261648299129, 3.5611166596548363, 6.1224898424403795, 3.670761822645756, 8.388903357097346, 3.082952776273048, 6.927874974628843, 3.0549985184559274, 4.032708079096234, 2.863587326342726, 6.7145107164116205, 4.170704919353785, 3.278615514203643, 13.95531825556919, 5.23833826325874, 4.287005503609711, 9.255356350356506, 2.6147786614947996, 11.111075447816663, 14.523806517748355, 7.942424675613779, 7.809165545273994, 8.824458291743158, 12.051386990651404, 10.127194293778144, 9.913467930023097, 5.6271930893122315, 5.715216030837049, 6.443447559349272, 3.055347746409986, 3.570376394127343, 8.284817229938179, 4.506468153615207, 4.747615182964607, 3.435596761234914, 12.48161580564314, 2.4461515936578846, 3.1860775759928774, 4.62911203241189, 3.7802217653829078, 6.300357393880508, 4.950547145396648, 4.975585859578165, 4.528044917106007, 4.980409649600058, 14.805749772510518, 15.69723019380277, 13.29427347733736, 10.865157578148885, 9.480358779952908, 10.613889117229172, 8.998992160285027, 30.254149497453753, 9.889240738339428, 7.053781674305781, 4.4564425048697975, 6.857667929486858, 2.544500067497885, 3.792976282117044, 7.148135995255125, 4.45090418567774, 4.720652527315238, 3.560341236916643, 3.054724559342227, 4.086259367401476, 6.648008889206841, 13.805132243185378, 5.246129068753612, 4.743881334794699, 5.551203442967795, 7.982400221309771, 5.077602046736699, 5.516218133586946, 5.285303389256306, 7.128662339930325, 3.733382387099297, 3.1657881784398327, 7.237060291829236, 4.11519063879073, 3.0207039133156974, 3.4141633652774686, 7.892364405392747, 3.1079660184098796, 5.809193867860597, 3.463786410601305, 4.89259665398026, 4.648453760871136, 15.603893607530953, 6.937372205781933, 3.2089782755024583, 9.803054414623418, 3.2713861359361043, 4.189096146659279, 4.347320552940686, 4.736772723907503, 5.480514501651979, 4.567156648415716, 6.030166594558627, 8.48505400888183, 11.658688355117215, 20.110426691847003, 14.472763791976408, 11.617530347539441, 11.733422916473746, 12.542552019556322, 9.477698259121215, 8.059739412582937, 10.03479908057332, 4.671022976859503, 4.220928476804118, 3.8091573674070873, 5.010579787526116, 9.723367020236276, 5.1224435318313315, 4.844825119476725, 6.265571094024649, 3.4609348408214275, 3.7103579730547005, 5.069549982266115, 4.3154485820105695, 5.59023963855222, 4.001772128094384, 3.5211324737940752, 8.684160646916853, 2.8486425282719567, 13.951526740600741, 31.06755116850762, 49.78763799056883, 15.907420103420339, 36.88924796306262, 13.375036905404857, 20.38297200426992, 24.434424911822155, 12.024029783042709, 10.93818329785495, 30.35956791421897, 3.058870982051585, 4.702235335923268, 2.6702098528256006, 3.7956963689567886, 5.025810651254708, 4.631164305139302, 5.282722037829768, 2.4469494059960475, 4.083939886030555, 8.301186730986025, 10.964485123153766, 8.591120012306867, 4.260127680180762, 4.032995118453147, 3.6414867146909344, 8.499881162296292, 8.833641444940204, 6.413335543876765, 4.851899721983787, 3.336964609278539, 6.253231252710686, 3.90434548797228, 5.688619262217754, 5.396808343307026, 5.380013573455854, 12.60960739615911, 11.202802813731239, 8.944233786936433, 3.416074616586221, 5.811312376210202, 9.078520415718515, 8.575377973727745, 3.8533258224885643, 9.907462655444435, 8.961554139288388, 9.884490491065362, 3.168238880752243, 6.399789775206224, 6.156477586221852, 4.129177174661325, 7.997136787580748, 2.820413498978201, 10.474474994578312, 7.9764533775666475, 9.861079732856952, 15.642481188491871, 10.948839291304703, 9.291757966248252, 8.761223949200346, 7.5835870597989175, 6.794940598937696, 5.676031892520866, 6.809239578598108, 24.516615265414014, 9.587660295186662, 4.9955804782303055, 3.667119321073705, 12.204582968104248, 8.024439858454384, 7.120199683175602, 6.814954780142182, 6.968526831311998, 6.523068724083094, 7.78849145928059, 7.218882685124859, 5.7492525661997576, 23.608199300233263, 7.008482191617184, 5.030491722464094, 15.885794295937949, 11.81876205938237, 14.532213865841598, 8.704540133305018, 13.515266553866315, 9.608911873202096, 9.56872662977447, 8.199656101698363, 20.027706629769643, 7.8529338670923945, 3.9834434055780195, 3.5493380069813254, 4.192809671807001, 4.6451425931981625, 5.160916569996991, 6.9150151306318985, 10.111995884287374, 6.396819560077796, 5.327862792638013, 4.91785360818606, 6.300753363770484, 11.35080447333423, 4.123218178151678, 6.189055084172434, 6.835200804900475, 4.92800637175521, 4.620570931108448, 15.08369243699197, 12.155722931265508, 4.199219639515309, 7.418214441002054, 7.6597264050152365, 5.5259435738503315, 4.5830703567980455, 4.73492466549126, 4.177437712654019, 5.277123047540208, 9.058766000696826, 7.369728999374788, 3.233349794717725, 12.078767453045039, 2.5648932281764556, 5.122175335025087, 4.696083881788672, 10.700961438882292, 4.558059360810384, 8.123968280386615, 8.837807018032217, 4.928486665267626, 11.528584831963704, 4.909009983755616, 4.269697748230936, 12.10387342543043, 8.732514624264624, 5.378969046083792, 4.684337376798633, 6.2089681894685045, 6.821508712041759, 4.445351705644987, 4.2143700720199435, 3.605646772173216, 4.460771159566961, 11.977733900712385, 4.810245046769452, 3.8416964379180114, 5.01790374162423, 4.488723515709362, 27.068854434016817, 6.181848902438412, 5.787212176310003, 6.715517268611907, 5.924060694127105, 4.943661210871157, 8.007100488545364, 5.717543736916324, 5.5138881854224255, 5.910120090189493, 5.230392416869012, 3.609496702975819, 7.282538567426161, 8.899444240863762, 9.555865421675447, 7.78257871400935, 9.543831247137227, 6.119478704113536, 9.273534788364074, 6.612854078843763, 6.37616393717126, 6.330600864614493, 5.926034126336297, 5.5664649350956905, 3.2280297529755404, 11.718444251779676, 6.005272339666208, 2.7236913575222816, 5.644654452155494, 5.214076632220889, 6.219201434838097, 11.982744721916928, 4.363322226270769, 7.407868765570012, 6.53387532701849, 9.705339887905561, 5.274518127785034, 9.494515799818583, 3.9026605439504265, 5.810497521432108, 4.633119403565129, 5.060799113300617, 6.09123044941587, 4.142972020168921, 5.848277073181193, 4.154318189352439, 3.9354404892868367, 3.2223311437104125, 7.777244743751034, 3.217004223916037, 2.9815600666972766, 18.221014431165358, 3.161196255695895, 3.9459870729720072, 3.702883550022867, 8.622154569671784, 3.9735404506700673, 5.981209543122855, 5.415540515980911, 11.953055466701652, 5.555104211814155, 4.911786706641273, 4.218014788930934, 4.094117969980627, 6.773103152960067, 5.026737046616952, 5.6343329321963935, 3.721841404400157, 5.285148443325508, 6.332042979593371, 8.35280433736445, 3.873091198698748, 4.54383920191682, 4.352318425528485, 6.217914028025753, 6.9828588894147705, 3.977485030725203, 3.269247635330277, 7.541327094140114, 3.675807527228422, 28.89569519989815, 21.767919010410427, 16.270253044054268, 6.858796677465249, 10.512623709615697, 7.0020837784363295, 9.55982773482317, 7.034791282768658, 10.592464332622997, 5.44809036873157, 5.435415977472643, 6.668772707332151, 5.679314837377838, 8.281008697755365, 13.602684119836809, 13.039892528675598, 12.264354604405293, 8.440083637014588, 10.684908213827795, 7.522831288438449, 6.593655165085279, 6.12249834302978, 9.063331843466962, 15.343926390389377, 9.691113778332738, 12.798590132247076, 10.103516686058809, 8.834105840479436, 7.834645184562176, 11.627456185159335, 2.820946960123353, 5.879507392578222, 5.232707344803825, 3.352694739855826, 4.972703568602907, 24.557670262325246, 3.778302021516885, 2.8246519351565316, 3.3741332050420443, 5.030736613959355, 7.778470856391337, 6.521088748905457, 18.628103229300407, 6.008601989906596, 7.038927300033699, 17.346825443545473, 6.252587573959185, 5.973711502780887, 5.0916632161836946, 10.421315170556674, 6.039142981316158, 3.985253049650826, 4.018021053349285, 7.340584141320817, 4.00772852222166, 9.294982276448764, 5.101753865150633, 5.543623367316074, 5.572383222316699, 3.2984702702829507, 9.491829345018667, 7.931917511508711, 4.716382813444102, 4.66280723020653, 5.421004406515227, 5.513252393047018, 5.775886858749223, 7.117459608062584, 5.136192888689714, 3.8836229969200566, 4.290225657854084, 6.8120273209960605, 3.93789393324461, 3.828827343472695, 5.312836660904232, 6.082757713319937, 4.8469814707208725, 5.688595443147453, 4.308076493337966, 5.277442313141227, 8.142677416804883, 6.016939871887778, 4.4635566467801615, 3.4440057233941115, 5.321674721202871, 4.244842655357699, 5.102482568854466, 8.624032677275626, 4.4723353940829735, 3.9213349639303026, 5.661463672020558, 3.448504686689122, 5.247533042041752, 6.527886696917488, 6.233200934188198, 4.818282005219219, 14.495835255152551, 6.774064242915208, 4.773625565852785, 2.4261448872358975, 3.569836603733941, 4.622779898355264, 4.308929013469819, 5.158093327142446, 2.0617196551041093, 4.996768769442024, 4.345133225848073, 12.95823472252148, 33.90673474671813, 3.5193301601501332, 6.670417883186214, 13.106789405790153, 2.684890285267183, 4.103449136103414, 4.906714745094826, 5.344148452528377, 6.834278620917567, 4.322984883752882, 5.000109550933249, 4.0606776342919355, 4.463563046921218, 8.603872606514, 5.203627482428852, 8.784431153978415, 4.746587656139065, 4.820576781928048, 4.212244576335816, 2.4585717970161527, 3.225203920386317, 3.327820501450964, 3.62936245901693, 3.056686993496617, 4.206316977762337, 7.384026359057822, 15.288491002989751, 81.16175992063492, 80.12169575888959, 47.273144135022285, 34.18986848823989, 38.935085837684234, 72.65853988369648, 43.09664234121824, 36.704438854849265, 28.931909049327874, 9.814947580417046, 5.46798416978433, 4.935729835263968, 5.255075576713733, 3.2055060247517675, 4.22589081656859, 5.745023043499441, 3.961375518820133, 7.263947664779165, 3.42435509609532, 5.458982997903127, 5.150820868134538, 6.536838048085083, 3.0016886804301666, 4.4092317089759225, 4.449448274591334, 6.096326088957984, 9.08846659437965, 6.982649907019281, 19.76244958030424, 25.50965841856683, 6.284370244415211, 7.479886932197294, 6.2556478973197045, 19.41043436467326, 5.411699317069944, 8.789882901955922, 3.700289115649094, 5.4021925984751356, 19.48599636331411, 4.689923404939835, 5.192333817952306, 15.387370872377138, 5.53856023161713, 4.470014384415618, 6.244747888670009, 3.4930873796760173, 3.535265897761152, 2.7935852540704778, 4.476909803237523, 12.948246677817995, 6.912007177889932, 4.807534105412813, 3.6195411506411204, 7.502074934470511, 2.682910040399604, 4.6949197334790345, 3.6392763970758235, 4.688541994197018, 3.3448984225670584, 4.686737694941178, 5.128267481925459, 5.76005076077871, 6.777253661134734, 3.5104329221297483, 4.196817777239702, 3.1198577904370732, 12.24507371064379, 5.432164677928918, 2.3636105521382387, 4.886843628471507, 3.467821176978215, 4.073694695029432, 4.531867428523773, 4.19518399684301, 5.678559176132135, 4.359068952734908, 4.523239213543992, 4.969275308374778, 3.8788516490523905, 5.635026032226521, 3.385996765394145, 3.2997273411840866, 6.8088898451143525, 4.095125630644687, 5.405039592895358, 4.392854202598866, 4.33102635580839, 12.66280902104432, 4.5563107134216825, 5.6730163733314996, 5.006036355708364, 9.348740071687056, 4.730657256087983, 7.337569324141001, 6.79278183925815, 4.050839657061864, 6.315357175992989, 6.7608727516907345, 3.355879726686526, 11.258501535430069, 4.7661812216933335, 4.358481229989847, 6.484756740410089, 4.492025904498308, 6.299575023941294, 3.793177091467976, 5.458036266176444, 4.7512300651376, 5.219894171133435, 4.07141191006743, 3.666160391359029, 4.267649704993741, 4.780921628863763, 6.728743391137899, 5.962497769259192, 7.576535034062086, 7.366673940470515, 10.293612660184262, 5.799346969788693, 4.898234847560316, 5.674835560142099, 8.185785399784587, 8.642667434064379, 6.23374570805941, 3.8224963084568424, 6.080618205603612, 8.873756451302, 4.992578606900982, 4.004984060496595, 3.4163289928954623, 3.4690499801556114, 2.789029120221359, 7.7954904425317695, 4.186532456817228, 14.256853088476833, 4.4310110610409295, 9.373341743481834, 5.504372603176404, 7.232406614976781, 4.04455751041864, 3.9921776299213203, 7.3565108111866335, 9.001618082210072, 9.902769810088847, 5.897197900582757, 8.762488694143107, 13.290425771346538, 9.74683727208914, 8.674603617260697, 9.785809175703564, 6.682155373224314, 6.866782010527729, 5.466983431823753, 6.323923077062753, 3.3217707013432323, 4.751808817933135, 6.682952599199768, 6.910518810014953, 3.9569143415229213, 5.70898900484417, 3.6548787102975497, 4.991029265888037, 4.884085918326772, 3.9556783235840336, 3.9429567404263715, 3.636785914225929, 6.863723715016034, 2.8707602511186363, 10.494433107664522, 5.736098996900259, 10.14841498407873, 5.709030625317212, 6.148034066080445, 8.72214333838965, 8.077315084491497, 4.972751227138091, 6.4704874977049505, 5.756402323441126, 6.326208635910783, 4.255578171983516, 2.87613843585509, 3.48734537607901, 5.577273222856443, 11.630866224050592, 8.677010950018294, 7.080056906418076, 3.993465155982772, 3.1386187736101863, 6.156863858467335, 3.914021684461467, 4.91545204283545, 6.436193831216202, 6.4386305933731585, 6.596074452139052, 3.8702068139926498, 3.9315546646293176, 5.818801321262153, 5.703124086797422, 6.585278668287509, 9.436138524738823, 3.9838411176810635, 3.990371827822454, 11.563935569378755, 3.8148149857212634, 3.663436042514696, 5.469464678649792, 3.944839972551177, 3.765042048318647, 4.555369141988937, 3.537216238130283, 3.856186214318503, 5.3022383332754135, 6.108002057585455, 7.085126926990989, 3.4723848067668164, 4.856853530549198, 5.414687888235522, 3.5870262059454054, 3.5682114078557468, 9.528643134936319, 3.0737091407367094, 5.153100184819764, 3.4171118804312854, 8.607760159483462, 4.787052828396503, 6.599074541044044, 4.975759770867666, 5.000501722304945, 5.243508099354661, 5.900163829418601, 10.78440827310437, 11.405487165044745, 4.364530637475648, 9.43407761587355, 7.398489372512606, 5.782421130755299, 3.3495516822769194, 5.925859672684124, 4.2935453445783045, 5.095418683607535, 3.0912714695523063, 8.098248288092002, 3.538152604959822, 3.7790447132129836, 5.347444823978706, 40.379641929587635, 9.178682788669224, 3.293644850668885, 3.805442189750852, 4.542636308538936, 6.06450331732959, 6.876642364992273, 4.627474968482321, 6.6763715791339475, 10.75044445951998, 5.551983708938279, 6.2737660677255604, 4.8391375101676815, 5.306710252453627, 5.768953409401189, 5.3689826160061775, 4.76017088895565, 3.0055705116826115, 4.633253085619834, 3.2777876009807394, 4.535916103566866, 3.49510732715888, 5.318870792872231, 7.6178771493609245, 4.457360359067265, 6.205755094936417, 8.475331872559337, 7.322690818681334, 6.433672541102929, 3.867309363362047, 4.4748955669896375, 3.38955140954419, 3.270835496496255, 4.738474383813802, 4.969240348375826, 7.635410007819514, 6.390878464508162, 3.965492439033847, 4.70033046140499, 3.0096354333781825, 8.487165480746308, 4.447279953339558, 3.469140341673329, 10.134263268197632, 4.121641162835477, 53.24848032324821, 8.77004426827255, 3.5394579778408293, 4.2423040223345225, 12.211793234543244, 11.249725546816412, 5.30569998652622, 4.019660933064815, 4.798841506684069, 8.940913481586948, 2.507792975311383, 11.113024671637117, 5.34167530273325, 3.4950973270023282, 3.804141290188885, 4.810450586541832, 5.449802603529157, 7.05716057598439, 11.668004923811356, 10.338072432862429, 10.124874633761001, 7.490873835695796, 12.94362379402179, 11.324473897956716, 24.114145364919157, 11.563663390992117, 8.216616317163895, 8.393513700214498, 4.451515971758177, 5.164282465993031, 5.014038552430046, 3.579545920702781, 3.9261559946972837, 7.033116581860979, 10.590025538155503, 5.799619640727479, 4.172716790267285, 7.453857154916545, 8.554055912900699, 6.86629124594498, 3.6939329581682427, 3.962242997224546, 4.816933159101818, 3.954041905007235, 7.357894662753643, 23.351413976763997, 43.193566038767685, 32.4113849268263, 23.180901022064553, 21.226775595633327, 20.857564362933626, 33.460808003374694, 42.91766301154985, 23.7317925428602, 24.49243947943949, 8.759061102898633, 7.890357892344611, 13.430402844626698, 4.129168993618685, 5.697653692165744, 5.661383167339817, 5.209566823740624, 12.62630373340533, 8.076285030095296, 3.4056545614363123, 3.832625784121517, 4.244797207550776, 6.057294638353262, 5.628911866987401, 3.0502503310679066, 2.8393800811793186, 3.965206959306568, 2.5640393537500614, 4.032250848366885, 117.9972879019129, 4.243281327111881, 5.078346016199634, 4.224986588265364, 17.035891697187203, 13.056865149485967, 10.741271040501642, 14.15074039640911, 8.990575856709487, 12.227802569835145, 10.990208006650038, 7.848251919229921, 10.193737950708174, 10.326105175446353, 5.206391986412236, 4.786348533027321, 5.5445866361519585, 5.510728232154364, 3.7619128542123565, 4.618860929602794, 3.578178333074486, 5.507155255322067, 4.722045727024101, 4.687555848856346, 3.645377253768325, 10.849498555492794, 4.436705610698515, 4.3286571717105415, 3.5309007781801562, 10.826417483108953, 10.295566865810175, 4.76408851942502, 5.109723680637298, 4.7487412937354865, 3.9472359780146995, 6.489316993786085, 4.85532318968199, 4.87781840001853, 4.7249438181565475, 5.5084002176120554, 6.014901621471513, 18.62558732072848, 4.9670828186868015, 5.691953412701199, 9.119827668490732, 18.206369454989506, 6.114696402375234, 3.0344581912834485, 3.9945127796237894, 4.562722784769736, 3.7909086300316006, 6.840499570450592, 3.9609008102141043, 3.6346141688803977, 3.2353443906073514, 2.8710496748020464, 5.89449016464259, 5.76305354960043, 7.704058125515652, 4.157589778386268, 7.479020037257518, 9.794033662375211, 12.89261919129115, 5.031833923658833, 6.271855349994621, 6.444325763910109, 5.655486075975755, 5.58175704865538, 4.293227074265588, 3.488157132679666, 9.533614025519707, 3.7577759013367893, 6.5457700674073385, 3.1064702654014598, 3.290629481148784, 6.283258740027702, 3.7034155381264635, 3.4419168989340223, 3.8625561531673545, 4.9247487468095725, 7.148395451612727, 3.8986360210010127, 3.045801704693405, 4.221347261372241, 4.893658807555531, 6.546911415754245, 9.314695531733452, 8.499089142659042, 11.11378159428996, 9.059466202404913, 5.5464475458958065, 7.073805574829361, 8.610671271311093, 7.219161328325678, 11.037841353527616, 6.22911432125318, 10.67968939752829, 3.546755859800625, 7.725648351648349, 10.949817084409784, 5.849557963261266, 3.2979528186415323, 4.2192650724585095, 4.331111684455433, 4.107303062150245, 3.267856766179546, 13.375416032857315, 2.8118938950200763, 2.3024140367880483, 4.230234862553974, 9.617309030756504, 4.108743160791284, 9.32987974830578, 3.1645558505870475, 8.781075955081821, 3.283859006519032, 4.008178743555156, 7.883833854262172, 2.9627698580251933, 2.953828234372853, 6.491851928552499, 6.744433182293291, 6.081295924446468, 5.26263924312422, 12.388463604305604, 5.930827904818715, 6.286546730769856, 2.9405915111499343, 6.646759639563964, 4.193625695457381, 4.706291877923744, 4.140504444975885, 6.349678202635518, 6.528398600820012, 5.532138965360523, 3.3985663561824317, 12.066142611094877, 9.120605947858465, 9.058409338254807, 5.367912354387388, 4.548519004861493, 4.490789811115586, 3.0974069577768377, 3.864003529153828, 4.9231988563910996, 2.9677802433077765, 3.8795272353732786, 6.480374672279066, 3.224851027999989, 4.290666739042191, 5.168789530210684, 4.280578035272867, 4.2758699092275245, 4.071819738020535, 2.59126282472558, 3.3175844051659515, 2.900487135180327, 2.865366573763542, 4.769168467650356, 3.5461815075829675, 2.848636592511421, 3.8032641320524445, 6.242190508098665, 9.603697297358295, 5.61176679091397, 5.3576691542569055, 7.913776558973933, 6.818386884629887, 10.517077810965558, 5.962936117676499, 5.130061445777687, 6.435979472606654, 7.196375955653815, 5.045662763056894, 6.714178221002981, 6.791992276833122, 4.201121002240296, 5.535013566029674, 5.692774074571361, 10.051496122727055, 3.929626598006997, 3.549550148707501, 4.696095793610648, 4.155173290905821, 7.945115630262546, 2.7084924248694624, 10.603185910525529, 7.1816810687578965, 2.750816664981074, 4.6716859933119546, 3.4402355788565857, 4.673065545401684, 9.026776180251264, 7.290550087240345, 7.235684031840834, 21.52587067497048, 11.891582315263173, 6.982679472278428, 9.936364210489677, 6.900146536524591, 5.752684525776131, 8.670687317378064, 7.15379261629135, 4.026666852049, 8.00282109933467, 3.4771359793973318, 2.9286190551267053, 5.428936539779749, 2.3337748636817883, 4.729265434138316, 2.8772153701062746, 6.2754591830231, 11.268416583571971, 8.515743542555164, 5.861711221107073, 3.5019789807078934, 4.148805794143606, 6.058234556592136, 3.6811734225357218, 5.8800249368307345, 5.326963294194311, 3.4129789883209, 7.965300542419774, 5.838556091274547, 4.255796862822298, 2.31752295558565, 8.128303196924621, 3.178308973974311, 2.557812078203983, 5.914476125384827, 3.10801581412836, 5.761344178124272, 6.224580871671229, 5.0700426113755634, 4.356092873503932, 6.935121383512396, 8.809173803937927, 4.614619950228427, 4.4880114205373145, 10.531124498148078, 2.8513430181698816, 11.778897427940377, 4.540438552954968, 4.827046805297285, 5.414916345065912, 5.832229123274316, 4.8591712990491445, 5.516816886310844, 3.290798952143, 10.01553768669299, 3.610765944033879, 8.184194307816366, 3.7556813600898167, 9.841153019464704, 13.42095265656221, 3.89364029307202, 3.9218588078681074, 3.9521171755624205, 5.639935531498763, 6.1184302215176665, 4.861130986920713, 10.216849893971077, 6.400853812259368, 4.495401130598721, 4.7642075817492815, 3.786206969933047, 7.858325615159736, 4.893482841350007, 2.7971566773570578, 10.953768267881298, 3.777571591029447, 12.181958184053075, 7.137746395247882, 4.3018084807324755, 5.613681848513228, 3.0895642942540213, 3.3402074949020366, 3.891258463291453, 7.7126376626722655, 5.41404303417637, 5.793966992928525, 4.76680438312737, 4.144125447264596, 3.641465574589822, 10.793907991606774, 4.304475255127681, 6.303546500441544, 3.259905703774659, 4.685094948924671, 5.925236684692773, 6.769418195952673, 10.50849793203751, 3.769509795120433, 5.85608183195035, 3.495876836253492, 3.7352105999552574, 11.57313382915813, 5.202742526983153, 4.740266729451806, 3.6252494688894714, 9.054895426596799, 3.7399921338279998, 3.7259422858702957, 4.36692305125374, 4.591360432419732, 10.054671086039388, 10.399573443843238, 3.5201837198169423, 4.44670508318755, 3.6311907823613914, 4.526127475249194, 7.8614751876359055, 3.1802362207242694, 4.294564708803062, 12.816830705648815, 9.393620112767872, 3.8504600022183553, 4.328214925623659, 4.943542932904212, 3.6302539051426765, 5.020596276071606, 7.32988319969261, 5.676223734149954, 4.475835391860254, 3.284058554268177, 3.579666760037782, 4.064991069234115, 4.909187583732258, 5.254250496574618, 6.023055102093919, 3.4013525205287203, 14.573890070002593, 4.709086580226493, 2.4664609902777226, 4.687056593062006, 3.770339884182626, 4.925534077480186, 2.3268440145498883, 9.25897962236421, 4.8837188990589855, 3.821547298554849, 8.219327591349954, 10.219085996144534, 5.10976854575516, 5.409977893768204, 2.3893413997458115, 5.710543639582335, 4.289831842205411, 8.00759596365895, 5.56982628550088, 5.092878171850799, 6.163270664551135, 6.302862318742356, 4.104064256743524, 5.443664250910751, 11.52308454485805, 8.724519429282093, 5.409369251155525, 3.6199475350247776, 4.535607183169262, 5.378326675432671, 7.139849732217351, 5.5137719406844905, 5.434329621090836, 5.169842253534696, 6.957806259613613, 6.818446709548397, 6.093669556378579, 3.005414569698782, 6.477795260362503, 11.17578116562232, 3.4102094754006718, 5.330840870678097, 4.085351270869611, 5.614240487051735, 6.5790786885746595, 4.5150179703896045, 5.5861792678302, 5.42327826553598, 3.616633453912977, 2.217820311164547, 4.124328093002627, 4.1725540352402595, 3.7777263932874794, 3.7732112847027075, 4.467152407872649, 10.619752563011813, 7.964243692855647, 3.651257597358554, 2.9028344061448914, 3.8996892707610917, 5.109676499936585, 3.104043872496142, 6.36608345969648, 3.55963226275441, 4.0148866110075065, 13.71444308688387, 4.479158098873795, 6.66598672266097, 6.801296457172167, 5.792378310466791, 4.786910709923775, 9.573682946636941, 4.123090846463587, 5.431927548301732, 5.325698256257994, 5.302076835378403, 11.328441492628682, 1.976065737455398, 3.0292491606701257, 2.9296728449155784, 5.29438640961982, 3.595349955738164, 4.350246375310047, 3.798584244835201, 5.110233639785407, 3.4362971597456857, 6.796654953222586, 3.7281458506788727, 3.677049967973963, 2.131363278862105, 7.028717360682941, 6.468664812349718, 3.8984581652512214, 3.6236953337621136, 3.036624056219837, 2.995728662570237, 3.389383385115226, 5.130028594838306, 4.0325725425650205, 2.5043491335872705, 4.777185092027767, 12.512031825896514, 4.048784499474519, 4.860348300668364, 6.891805075687166, 3.7716469376165866, 7.108731981705309, 4.968963954013686, 3.2563431182717344, 5.60883522277536, 6.171317152809812, 5.701689345661878, 3.9755536137809604, 11.210088235280482, 4.003084564865417, 3.0174504477244803, 13.140030648696934, 3.9194957420873413, 6.709768432058864, 4.44554816568739, 7.299886951896999, 7.071494146556395, 4.318803686142156, 4.494134882626293, 6.8844492149084715, 4.433134787461185, 4.777960597944732, 3.4313862303764266, 6.853917454626229, 26.166835930186767, 12.789868945547854, 16.38564565531183, 25.289923906485676, 41.5264684972979, 87.37830211893366, 70.54163259441707, 39.85922481192641, 28.947082518735748, 22.371422571993225, 17.98977763902764, 75.03173598884776, 12.996863296425797, 11.630499481357004, 15.771127908989847, 36.595755448980384, 30.52750279841369, 22.32193623317575, 11.10819967879539, 10.2310045798354, 44.469404513679486, 10.91709848999087, 29.0340717098519, 18.825414253123633, 23.04512544999758, 8.958034237092107, 16.289220718908158, 7.376629382950526, 18.08214035732697, 6.789802476806285, 24.385368711283792, 6.241153717782802, 8.477055735723738, 13.058481070123433, 6.810086986053722, 16.356652046448907, 14.868662838809902, 10.919140633777323, 10.365131794844311, 8.774281431256306, 12.022381928586661, 10.357644475479695, 7.579247543181126, 8.611932881884309, 6.508047959621362, 9.851305689249518, 11.340148439495646, 9.451620857306095, 7.1647201907513525, 5.353432505548633, 11.581079594242883, 9.424977638852598, 8.276933756962672, 6.663214150245216, 8.769364024493106, 7.217956885708522, 7.912629603825477, 7.7784986147060176, 11.952807885813925, 6.682242434526344, 5.853331189556646, 8.109485333321311, 18.584025939180297, 7.548907613520337, 6.249883551361549, 4.220522451746397, 7.459937731605318, 5.653036336583644, 5.409096333587531, 5.847032467480844, 6.474976302409039, 7.7256268365995835, 6.119978430459888, 5.078887069370298, 5.917033699291365, 7.719750527368262, 5.567609719050111, 4.729250912336727, 6.2255612880286115, 4.838315285031771, 4.31181402158675, 6.537415725390276, 5.213000247869426, 9.630489698047123, 5.388761784791018, 5.874521450585448, 8.235463566610402, 8.152699249500488, 2.841333383754523, 4.239775006549442, 3.4640594402289357, 4.0265460261993775, 6.814655215415003, 5.123242945111291, 8.307931947526537, 2.850739649469588, 8.323774513852248, 6.5529799944916745, 5.503995844739082, 3.676450870661222, 6.899508282611602, 3.5569274238769215, 4.456401911573098, 4.082488091132474, 4.682286024279139, 5.712245856289866, 4.125635666490353, 6.317888324521272, 5.3713079115029165, 2.884874192605913, 3.8091244958858637, 5.421303644187788, 3.6073477734301527, 3.5611946292808603, 3.44568889690682, 4.818461460860144, 3.9127761292252465, 5.29583697215195, 5.008996340195107, 20.023618800206673, 5.250680768730511, 8.839628186516945, 8.74981058074158, 4.849449455111473, 2.5526498616939284, 3.86364983351761, 4.705465937790719, 5.582850133306921, 3.2984860625956802, 6.792984610447627, 6.2724503364906585, 2.9523346115432303, 3.8920362977747627, 3.8626882562151064, 3.663422549608348, 8.974094974823663, 4.019016592824754, 5.501143428193198, 6.855356007343372, 3.8730937443865403, 3.545111299705891, 134.64845820383326, 7.712435105295184, 16.24932152079017, 8.451107452838823, 4.449733019454339, 3.9605108387637036, 3.058429777355992, 6.089661045842674, 3.0274391815906383, 3.125962731380436, 3.2120487231785684, 5.12780921819353, 4.764919561948969, 3.3591972314226437, 7.125139167177767, 4.125076546347379, 8.411789277123056, 5.194426338934401, 4.626484940882074, 4.29954339869132, 4.950278142458863, 4.473713040233974, 3.6834713072666054, 9.734665178691099, 9.963335709609796, 4.5051955271645125, 10.15872438458103, 6.819130094417793, 4.59163978660191, 4.583800493605506, 4.951260031051229, 8.590658984548389, 4.377323223659808, 6.455817971537174, 3.901408024359843, 20.561482739588154, 5.002248572190412, 5.381691576925973, 7.737661732546538, 3.4426812642865183, 7.159238968114513, 6.070287976302511, 3.6654859313422623, 3.926034136205703, 5.379547191598722, 7.886022094746618, 3.018005164892526, 4.166272015642814, 5.738118061776269, 7.5638537087635935, 3.6693639979965122, 4.618599907286281, 9.071588255951822, 3.669656868237095, 5.7697602936916965, 3.659453335296191, 4.470590654983417, 5.35337226673223, 3.8372402250732836, 5.711843446351192, 3.995905945219093, 4.345431045682113, 7.397551700937382, 5.373324530273716, 3.3073254824735994, 4.174016522325809, 4.892113733704934, 10.33988279319937, 5.226517699119841, 6.025288632944167, 4.148343030425735, 3.5865340779636665, 2.673871624976435, 4.774033218372142, 4.884364157569424, 4.27013916999771, 6.535657122332209, 5.059659743770213, 7.582989095540433, 5.370373036596988, 2.9891701406526034, 4.0134279597457345, 4.989108730184214, 3.2561432424577332, 6.515593319642883, 4.591744154984043, 4.680505987275122, 7.955503910486974, 6.084729965972776, 6.499707248643494, 6.934942807284347, 4.783628381691988, 5.01507453864628, 6.786437663349743, 3.4281579651419887, 4.700001374550832, 6.900359110443065, 3.3743687622691283, 5.735043299094638, 5.178931763276849, 13.807049301751887, 8.064929858682305, 7.368461708855074, 3.2829469939534484, 3.7158813773393584, 22.593128915381026, 6.910103975194545, 4.421472641869775, 8.362335501629971, 60.91921996005749, 56.40289508610096, 30.82570421673381, 34.2564886182445, 40.80318549658453, 22.284396687694507, 18.334304396248353, 17.567894484175195, 17.978798020452324, 42.95080294705295, 71.78799872037722, 50.70724070783343, 39.34382941260057, 36.08807261684488, 24.546672368101696, 25.150658798649733, 22.355517988415794, 20.815245555177004, 23.49685671607576, 19.614444149925475, 5.804079735431504, 7.537034482240612, 5.8510567786757015, 6.563756940504193, 2.6476257999726434, 2.9860596454077784, 23.941223863962815, 9.963358532796821, 5.127865705388309, 4.270398404268937, 5.290771383833767, 3.660781530148819, 6.345895427500652, 5.1823107309803005, 9.347576267275734, 6.66700966589205, 4.205028657674549, 16.990480836264105, 15.004869310712607, 4.087235921478991, 2.787995941901956, 5.322075081871731, 13.55650805204494, 6.555403478286682, 5.073922715276305, 4.686888263860564, 4.91907595851833, 9.629718057471235, 5.713109211008805, 5.414635617634571, 5.798930724923294, 7.231347514032144, 5.614546909208802, 6.117299970225988, 5.118855964731297, 2.734019271262024, 5.452092508612243, 6.4782203421664715, 4.392881353064211, 7.4523414969193515, 3.5641511669068744, 5.256107916164085, 7.337983414952807, 4.579069139162994, 3.9369389113146225, 4.741788073184309, 3.6795883414456525, 9.636019813149364, 11.753321742096222, 19.48602241415702, 18.60750640459049, 16.078564985833907, 25.162418125641867, 10.507119892718467, 23.28279221622399, 14.5644696331196, 5.627316868761655, 12.325629017108588, 5.910463782636333, 13.801087805869855, 6.8601248698758654, 8.755413570792891, 9.990870336811664, 7.720954138298783, 5.678960587670253, 6.204948674812142, 8.839417950142261, 14.741326851076044, 10.794701889013506, 5.466192094723022, 7.133125063718758, 16.391838511385956, 17.275884085304554, 103.73550747231693, 122.94781642785328, 84.35651404450665, 55.954533964702286, 56.20245465560146, 76.34958889588222, 36.58403716615011, 27.884112141561094, 25.143791545855628, 24.341986532705715, 22.260009565901463, 16.81996577089522, 33.021938420182344, 10.205362450726245, 29.215027232137043, 21.89874548936616, 10.71290688658342, 21.818047575241252, 9.15507956391403, 6.069674024479929, 9.441383260552046, 5.002009992224985, 4.28566132549313, 9.37375860368194, 5.8784058811861195, 9.964669709650176, 4.484199850988398, 10.850134120647278, 4.534385906699623, 4.863505899245857, 4.056596000222565, 4.208581974542134, 4.571959969681478, 4.358099041287684, 4.473212970484041, 5.59366408888653, 4.2572069764876534, 5.528171957390991, 7.1169497736011955, 5.530218703756663, 9.448154799603602, 5.156109346568625, 10.721568485943942, 3.8475132386682533, 5.7555143190099365, 4.826045341694251, 13.173665322077872, 6.376008402958782, 7.30399669217203, 3.8551624167190206, 6.83281303156537, 3.558684733687417, 5.851348522047628, 3.8508525874710053, 4.826561029951618, 3.656394639215413, 9.621924910235244, 5.133919658505689, 11.951673857519857, 10.502368106766546, 12.13363085850655, 13.88439443305056, 10.156672466807622, 12.97146612796067, 9.234352795594683, 8.270046767240656, 10.374482180927439, 9.622801591942588, 14.19899682196028, 10.653298265982524, 4.594584871076659, 6.914665054011303, 4.848607324469139, 3.777260317394446, 3.3584567770395677, 9.664654951778752, 6.527503557149019, 4.104260298279489, 6.703619887747545, 4.726803405492405, 4.2231108102798185, 5.1611491221129375, 11.5462387406037, 4.283260926216781, 7.695187717450459, 23.643456816831097, 90.20395285678372, 64.52555790407847, 42.455696625141265, 36.84526589992975, 28.733843310056386, 24.21264997441867, 20.809870466363037, 19.087852737739365, 16.78239699819426, 23.830727390430983, 3.66875174245166, 3.998195030903088, 6.141682284490941, 5.572883004352377, 9.152251455770374, 6.344584026659698, 3.5172761816661455, 5.425138893671749, 2.9511930712555725, 5.701108573951223, 3.0792489609525946, 8.080155398905376, 4.007340270739565, 5.195055873356524, 7.285760356711226, 5.979789560706435, 97.63805953744115, 57.45626534866098, 48.4481809149371, 42.35655271455649, 29.272764646348776, 24.374885709643426, 26.27156356524509, 18.172974635350876, 17.766928597528903, 16.225192839055072, 13.016360119581053, 2.685153778528234, 12.863674030859253, 3.658489522566479, 5.858355398987935, 5.164890735736547, 5.803709768031508, 4.962393161553428, 4.023481770171878, 3.6375787315287065, 13.748481900175285, 2.7594859997023513, 3.636226019559065, 3.631070054995914, 4.016282876160832, 4.222586114890102, 12.303768843373781, 21.473858051606673, 24.144777531607247, 21.213788614222903, 14.033999267794252, 7.046202514526379, 16.09611259096375, 11.109960296608875, 5.965434674042744, 7.247701518731817, 20.723253182264568, 8.304079360698166, 10.54344498753247, 6.566215048672021, 6.5367406646487, 7.402049064725761, 10.032758383715215, 6.104230657738274, 5.372707671927344, 5.580425489437048, 5.033423140141535, 12.903718556316694, 5.38243052612795, 5.1772180596503325, 4.51056228349026, 13.074502663541363, 4.507481637493834, 4.403738432278971, 3.9935197611397046, 6.717999169266091, 4.49251914791084, 4.08354750096736, 4.507556498592021, 3.4848472192728885, 3.782399003430208, 4.130510435070249, 3.541258433033842, 4.137656086153356, 7.226564766347879, 4.760768761128046, 4.507917803073099, 2.9870760341024756, 3.8933157270105525, 4.356892923880492, 3.357801664089376, 4.831794270633344, 7.361233765418419, 5.711543568799842, 10.27893157528804, 4.017027404933514, 3.55924792646651, 6.034121719164569, 2.841723159460062, 6.292520647565008, 3.33563058505523, 11.410736490357808, 4.453517680914528, 4.362974587260496, 5.151723146363917, 2.745567322753497, 4.712310713229678, 3.0438456759336083, 3.370851192571995, 3.241966514485012, 6.162009993446525, 4.959017381113768, 4.864072005901277, 2.721660971558352, 3.809725220954798, 4.997480570181392, 3.3517823502877366, 3.406300086594069, 4.554122243961124, 7.205303132491385, 3.9342291175670705, 5.02868684411664, 4.946336462751702, 2.6454949121376887, 3.598636487379083, 5.189033413178517, 4.914554030027327, 5.0113895543271685, 4.617045990403468, 12.12838612322687, 3.7810020330196243, 2.9196785362758306, 11.700756198327323, 3.5086141059404072, 3.7597441262298688, 3.8629762907367815, 5.436658103918225, 3.9967276816509494, 1.9817702593488942, 6.4993885794030515, 3.9883567271761917, 3.708655139516657, 10.49137293991663, 8.163853583834754, 11.467664437804846, 10.72988321730214, 3.4096740730935178, 5.903051827775215, 6.164309829655499, 4.8112715645875825, 2.858558360533963, 3.500321047890671, 6.999243387209991, 10.839316271105506, 3.758326187415245, 4.212183026803564, 3.6453856082620164, 2.8952893392088135, 3.0601154532199084, 4.027003797776594, 2.247711467331882, 5.058558326469395, 3.10316374293466, 4.036031781338574, 4.204298027321363, 3.421228958209376, 4.959465002129027, 4.884964428038823, 3.9995634268268407, 3.7905569380055057, 5.822108011828079, 5.352059497270786, 4.086017034899904, 3.983850396665683, 4.443495080850001, 3.875834049771171, 3.1487656679455798, 2.280751939377414, 3.1515916315011654, 3.0523818425558855, 3.734606641256528, 5.068009030439406, 3.4400272247770736, 3.9559727777812137, 9.818450045668085, 3.4087921729676425, 4.2075004320773095, 4.443998339885526, 7.396897023488767, 4.764894707914048, 3.952591241701963, 21.54718563574368, 4.68492132414996, 8.620287921888877, 5.624511564601234, 3.8746615021592983, 10.219203453308952, 9.358315857562141, 4.728992069928221, 4.062853512068518, 12.144191998844121, 4.486262278345855, 8.448776926232533, 4.952625416559658, 4.040629705596405, 4.526348529332842, 34.59733872989157, 13.678761048394923, 6.304744503957566, 7.513175459494395, 3.627435968947217, 11.153159315814479, 6.983058883621503, 5.178891576778066, 4.489687249659641, 4.879873028297002, 4.85928875439082, 3.4095621279863924, 2.7570423755615963, 4.351978816750196, 4.43148259662012, 10.931937569610016, 4.352839672675595, 4.036365001417762, 4.546002830022453, 4.557429081964653, 4.769353027650145, 5.1595773867306285, 6.330254286172295, 7.453189130599969, 11.570445777811965, 8.775855759853194, 4.449524909946228, 5.429251928612296, 7.861648767513989, 7.5886309749723315, 3.4883875885770017, 4.1694239943687865, 6.976512048880862, 3.7171004471033764, 6.686089976938978, 11.184782257595709, 10.275166220563927, 11.552287828058331, 11.431471129708443, 4.737158822723336, 5.45050025063536, 5.206258280892728, 4.117605671678844, 9.687784752364575, 5.674122665119038, 3.564377592169427, 2.5985375149420853, 3.8422955636238267, 6.287944839541794, 4.658382282567362, 3.8471350742468187, 13.935016621796285, 5.041743883780639, 4.748937816272925, 3.8240251762573307, 5.922388487141866, 4.523301125922138, 4.213180603123191, 5.395077611769144, 6.228309257700744, 5.180306167007933, 5.5506188762126385, 8.272305365312361, 6.783790445278734, 4.086037839353107, 5.724783977200769, 4.283517569828083, 4.499832093477796, 8.049097117666918, 4.579854300779949, 4.588082933676631, 4.805154347394947, 11.51836323307661, 3.981685108168632, 3.7996191020512513, 3.264020161300961, 4.961229673278692, 8.283856397124234, 3.2596195762828954, 5.138044273072976, 11.115685712716584, 15.55856163492871, 4.031813330196136, 8.36268319396, 4.227111657016854, 13.514261843711854, 6.4372709099939565, 2.8766793674240407, 7.787979187747243, 2.4922863475812527, 4.152215811536769, 13.337307225542059, 3.546165754093303, 4.9633424812631555, 5.198271453282407, 11.25140001384289, 10.386202080313744, 10.487643425184434, 10.77367300361389, 4.369652607835403, 6.83331876310366, 8.764309829776822, 12.062990346682477, 4.122026558080413, 3.9055876048611724, 6.211212886389043, 8.518673778416499, 4.744347145393589, 4.045341325070626, 3.447424978666335, 5.621065412215136, 6.502255363969165, 6.767622661310709, 3.0755160940516997, 4.505868801354761, 5.077560563126378, 3.2762409382025655, 6.64604818513808, 6.469418000107161, 10.71889198234198, 18.060625193681712, 10.354823876988286, 8.129975815582604, 5.1718957091503945, 3.3736173398266627, 4.347906257533539, 6.060221027358634, 10.065723114773217, 2.9074993672892933, 6.560497311016931, 3.795429573496836, 6.617096833923526, 5.214345601555371, 4.428308975575085, 5.313979513171976, 4.541795391045769, 4.414358929558299, 3.6607439902217314, 10.07234160108393, 4.250065593195666, 14.092812714031002, 14.601148319285546, 6.478347868197931, 3.903220977838737, 4.124680137633925, 13.017626019920398, 8.522498362185026, 18.218804592741343, 13.2140792881511, 6.880854676369332, 4.296325365045072, 4.589579073565612, 3.308105692427766, 3.9169606629449047, 4.371371787275957, 3.9993651104598023, 9.533802979517212, 7.352671125424868, 6.138867356933772, 5.5475788833191295, 5.669439620578754, 7.346025261158286, 8.605802179944483, 6.066815330485111, 4.040044457824236, 6.65178082773411, 13.237439935484309, 11.478623265768409, 2.6718606114458168, 5.503125011549142, 3.5993814036517775, 6.6984793596364325, 6.408538899578531, 4.256177819086992, 4.401474595358061, 5.750187801813718, 5.177088679284162, 5.182444226473909, 4.712762504915592, 6.229395435462804, 7.817935379019364, 5.694113787707276, 4.122296331531153, 3.5753887941703564, 3.000737595508039, 3.25979568639373, 4.875378579586246, 6.709298451329055, 4.736952452695573, 12.059883572419972, 9.293415506062566, 10.483555029482577, 6.652712492164352, 3.341978522661994, 6.18103596066224, 4.641891589666635, 7.294746453346328, 4.115404313374866, 6.79762902920832, 12.47701108476297, 5.997141443995949, 5.766902770178938, 5.578124439030997, 7.5290264160188585, 4.592256032942592, 8.909517099492383, 6.097256213825782, 6.635357173625075, 4.387067673346573, 4.825114659611441, 5.193394742162467, 4.581348953379567, 3.971729486734063, 5.886511395861748, 5.073607864465512, 4.682842356290484, 7.022798573337506, 11.605582236245068, 2.7695946125188726, 127.70514285714283, 4.415831905366381, 8.971681728616042, 5.699204405866925, 6.735143170057273, 5.452739371687666, 3.4154503544334163, 4.012416363356908, 3.853823170864226, 4.929958295490603, 12.294527234583613, 4.887356106482249, 4.311182170859505, 5.880846244978949, 10.315807191334091, 3.2263069183697706, 5.36913691700464, 6.064094433044963, 5.51601120932303, 5.913663721074781, 6.256264057302029, 9.887335443813585, 9.127998182176992, 4.101962753430916, 4.496803307511772, 4.243871246179822, 12.23187844328196, 4.3687512219770035, 5.0214147129956785, 4.14372879220892, 5.0781298434456605, 5.932628907858088, 7.307616668314092, 6.17460440084009, 3.9938084076307545, 4.554789303461954, 4.99001816109523, 7.653952453328838, 4.98001855685965, 6.400754084539967, 4.810436746165655, 4.592106685848783, 2.9278696508554374, 8.126469458737414, 4.694179486941826, 3.7415637773368418, 5.61790352896365, 5.364654375702865, 6.316694850285746, 4.582397098915506, 3.6200107072772902, 4.547382645537728, 4.107520881846356, 5.203935396206925, 4.534689727775025, 4.7660728935489205, 5.131493578788, 10.796912133553217, 8.318117524626983, 10.83706011088134, 7.400265822679007, 5.155223133923368, 5.484057883982499, 6.190016890087863, 6.946990518984368, 4.8610621745672695, 4.110583800480437, 4.500214757158683, 37.05931105340642, 4.068150579901071, 6.147206965430883, 4.557984622350591, 2.991310709771509, 7.082202600465826, 4.158978013183757, 4.299616108544175, 8.652960531153138, 10.509581713171546, 10.968449770838378, 7.654035518681862, 3.955398121747926, 8.669140851264522, 7.075828403128268, 4.773041046594346, 3.9233108426095713, 13.857702972749571, 6.729005799582022, 18.07473057381976, 5.298169456158718, 3.8470158381881374, 6.045606918402677, 5.02031359984401, 6.886341424882115, 5.164325580194136, 4.966664697031528, 7.354738368469248, 4.927582846962245, 4.189604646474865, 6.11759382247767, 9.758815065986965, 6.562445630825921, 5.205020201457215, 5.663995673775046, 7.937460757406206, 5.213420074765846, 3.253717956316276, 4.936117275403186, 4.904792145479704, 7.264654822785946, 6.319564572947598, 4.749737091885849, 5.480307867954898, 4.6847044659671075, 4.457298427938921, 3.657808980069064, 6.760406010709349, 5.218999830259247, 10.721409499706908, 4.314392594540699, 4.152767995705854, 4.81284739957971, 5.299800340098702, 10.409182248589588, 6.566254669080391, 4.661203408407659, 4.008644971539549, 6.642241508524578, 4.849486409009709, 4.410845388999907, 6.903102451343121, 8.717543681808388, 4.401047426082365, 5.271391045782525, 6.309341196244283, 5.3094158654275185, 3.6822473422575537, 5.842444080546465, 3.6530760228426544, 4.554533556974809, 4.585588729575738, 4.6945690921262795, 37.30715138271522, 4.68510099665713, 4.270925488645555, 4.019185553556645, 3.3247013598277295, 10.677796077689774, 6.8111519734567105, 4.585907740806346, 4.730996416307416, 3.9032174307029432, 5.182031805691673, 8.945812691936753, 35.8496343139619, 5.300523128837613, 5.742474451171174, 27.045537244755398, 7.09389043946882, 5.473733778550882, 4.661176825485289, 5.083815626418446, 22.957603450358874, 4.436331023838476, 7.9215249080721, 4.68759293053904, 4.617615584856056, 5.437782764848268, 8.716034554173632, 5.401525710853648, 5.400752209857197, 4.365338211667468, 3.93097762303699, 6.568548176845871, 8.196670246243263, 5.989130476110207, 4.6095804016116215, 18.42671696549577, 6.785510065677755, 8.573615048492872, 17.250883088788196, 5.4158364393782135, 3.7953074448686293, 7.252141791307775, 6.820297732538278, 4.117991333688098, 17.59369345641635, 15.457886028557176, 6.180317583866329, 4.736313717844264, 4.590653962845408, 13.430869738767404, 3.777177809331479, 18.740808566086585, 79.83811879089177, 7.070632500254383, 4.01218437771908, 9.495402935828404, 12.328117229261963, 5.840049120569402, 3.2540730905108903, 12.118053030303031, 11.377032882256112, 9.462930863580858, 6.408361359634077, 4.807144084058452, 4.007808916734645, 6.924462958137499, 8.834140054466086, 8.57228828252939, 8.239656993838093, 3.061436043113447, 3.4366656721602657, 13.976049125883586, 8.385556369196502, 9.45641079925826, 2.5829643514125427, 3.789001989036314, 8.019318084752674, 7.155125099262481, 4.034108144049698, 8.715749626208783, 4.2241339484380145, 8.494699534294687, 6.336582999831187, 5.662550612944622, 6.447407237463286, 5.782163969923172, 5.398058666705703, 4.246240884966601, 4.169518055156692, 3.059091372866575, 5.445725617916011, 5.2875659438476275, 6.021423833915916, 3.4687071442714434, 3.4746965560704344, 3.5096804726495865, 10.870591409448632, 5.076368673446945, 8.145211247765651, 6.25926420099374, 8.638209607077975, 11.132214411083169, 13.345452702279474, 10.756425703864075, 5.400462030388833, 3.5832517583054515, 3.152222615552906, 4.964784897082855, 6.110859467578302, 3.182690083179853, 4.882843798880413, 8.164236499403208, 7.495423021885651, 7.867238545504675, 2.8067683481804577, 5.238970267594764, 5.274809401102599, 2.729082568013665, 4.39666761280685, 5.026438628808857, 4.103216049805075, 4.267363571009972, 4.529829465963718, 4.078550871348057, 13.298321579875589, 5.871758466500445, 5.839386000918414, 3.601628697791418, 6.452935028539557, 4.049526993418313, 6.095569995405306, 8.520239137283879, 6.454802043983154, 4.814120817515134, 6.009723949646852, 3.8448090654914684, 3.4471610474272065, 5.523540893576536, 6.910048679946052, 4.338810003596738, 4.8881547867823345, 6.043059059039229, 4.843744650218355, 5.888943155298078, 5.30632419566908, 12.2875714937484, 5.9122079447084275, 4.460995727784001, 6.109660443481101, 4.619860237683402, 3.810679814185858, 5.144332488196054, 3.251300205487277, 7.984643115494, 5.890595548337604, 3.073495546877225, 3.3439962482532692, 7.944251934229541, 4.037814113558244, 5.094999774140007, 8.09617540291507, 5.455858429468635, 10.365397594256645, 6.197693746358126, 5.019873180904573, 4.09778108908121, 4.919984830018823, 3.9614762776158496, 4.005244162896032, 4.794784043297087, 5.061968115312184, 3.9262738243813806, 5.15661534240011, 5.331097790529717, 3.925129386315767, 5.664104272044988, 10.139738477953648, 5.31716199579517, 9.78167331981031, 5.330642029421084, 6.008236585052887, 3.7109778476065034, 6.139948782052823, 6.292816748615896, 8.580571489600539, 4.592401476548643, 6.565318206271491, 8.200101487633546, 7.471369957316454, 4.808087514951606, 5.682195843712524, 3.8151005253832477, 5.720895291553481, 5.256608304497752, 3.268966608973709, 11.29106322414762, 4.926862462669211, 6.431138873481965, 9.75095628919649, 3.961121737505761, 6.938325473720796, 8.371729475234565, 4.32464366724819, 15.52923896601185, 7.333993733405443, 6.89170843263426, 9.790733782458242, 4.205380078979043, 4.19539356778767, 15.233476927715236, 6.885749159074817, 4.460932718952252, 5.439991421227789, 5.041621688822035, 3.534167748107842, 3.7128492537500355, 6.635544380044186, 3.5961207019476134, 5.351578457888941, 3.1125655583711116, 14.518978921698462, 4.548101582646618, 5.918787475337137, 7.964817364301721, 5.683186077705434, 4.603352285360278, 7.469388823612133, 3.301570065876422, 5.140647267655774, 6.365597018895001, 6.763468244611985, 10.653234329793152, 6.7692368004347925, 6.870815937296535, 3.768463898055309, 2.898574603612576, 4.08524703783579, 5.996352452698166, 3.9044781749102175, 4.755453441359648, 5.42874488574537, 3.5898556124109557, 4.603098647732493, 4.3792273059979046, 4.665024329673173, 3.5710528562373893, 3.562407710639317, 5.652774044794637, 4.235446450075868, 4.608651368086365, 2.4234796877599574, 5.929705863313443, 7.2219881033018805, 5.105138851695517, 3.2823024506937637, 12.020128880278644, 7.5253346734126625, 4.888189543712607, 8.711582705251478, 6.6848912528103694, 3.949001717754284, 8.846326355495403, 4.469895528902415, 5.95512635384042, 5.447668165181986, 9.306320517551354, 3.4435483473715167, 3.8522530978274943, 4.13373971563726, 2.7289291735838894, 5.454917059421066, 3.276197197599347, 7.844719722064198, 6.703783652241129, 3.0299445818726016, 2.897997094312212, 3.5201248160719794, 19.685364016219324, 4.929463526225231, 4.578470488220241, 6.097549223362967, 5.536453164395425, 9.2897377714946, 7.542267928446039, 7.043091834865545, 9.453522281153568, 7.750931157162313, 10.659385934284153, 9.615062178991623, 3.5308672043355336, 4.846755895308414, 4.815846327785058, 4.222290369684416, 5.447925666767714, 66.74385997335992, 3.6980272551924123, 9.187566222768421, 3.6813525536946945, 5.057133532702504, 3.3268608824178205, 4.819602250637507, 6.579962097589571, 4.892586329327567, 14.281855804793434, 5.844846322492795, 4.933137746518102, 6.190910195754022, 3.410470059330907, 6.6031485763843385, 3.1714525889067833, 6.86354509318079, 7.815352346036995, 5.376551531812274, 6.28612393517338, 3.612191036243578, 4.358996536517472, 4.1534764369403705, 3.204299195891381, 19.069548451238173, 3.138832015715969, 3.5242084726947738, 55.929368136249714, 5.126830178903069, 3.465902533935181, 9.683631450137636, 5.234759831749462, 3.440520574439127, 7.309622371589219, 7.123419375140524, 3.913581558696475, 4.091346775981172, 5.53910309054012, 5.862770091692748, 9.418004021310475, 6.309226852040219, 5.456237084739651, 15.647563625895827, 3.847478083181414, 4.741479150101254, 13.345608424554575, 3.361911677495221, 5.635997708017919, 4.4038817943316015, 6.126179836282755, 6.48792877682014, 19.707999489988214, 4.521088375202011, 4.014119945432539, 4.2195314042646945, 4.18265681047444, 6.708058744976546, 20.49037122818702, 4.626097854192802, 6.192240211946873, 51.089396343399265, 5.532372032029225, 9.17512893918087, 4.212125917186143, 3.9331359344513284, 4.203731286075095, 7.805756582472017, 6.952289597395141, 3.842281752662297, 3.624211509711248, 3.0734912822077964, 5.702274362563298, 4.560115039982396, 5.080452456202485, 5.938754917291392, 7.655357870778433, 4.344708987558029, 5.148640073296803, 4.967405716381572, 23.434288489201105, 21.020550186011317, 4.012498263237724, 5.5719557368661325, 4.386787621868813, 4.469318572294725, 5.503047877790556, 3.8677701236725603, 7.217825300139824, 5.045735710676913, 4.519007121767607, 6.838758027543351, 5.9875584105159945, 7.239443532120885, 4.847865054129364, 194.54636411627592, 6.552341312495284, 3.7573877564193805, 7.551030751081778, 3.3299069134526804, 11.013764003673119, 4.721959561972612, 4.684911531289991, 11.376508024068364, 3.4198161657822377, 6.794099793083625, 4.682794179254432, 3.619846127654144, 3.0027342488935997, 11.896642539521775, 3.3735896503113434, 12.194583658487664, 4.499342383288099, 7.082937335498199, 8.77048870073049, 7.635016902556077, 5.020083359751403, 6.0046519357184645, 7.552672141540354, 28.63884458938032, 7.7987975663882585, 5.11705483221099, 6.551391443117158, 3.356511099644927, 5.504759373906541, 8.741114512023922, 4.63171220211277, 5.950670506891302, 7.089003517254158, 3.6714373141316874, 5.594690716545553, 5.891611504466102, 11.277322587896615, 7.8542151514202665, 7.234394300031116, 5.628727250322352, 5.643242277404514, 9.996908656434728, 6.02096548887522, 5.443016877040802, 9.710948919632088, 5.140960719308897, 5.728519096068054, 3.4452059783685187, 6.865840198140117, 8.63302810590147, 39.78884538815866, 23.17769134599139, 76.42910299494554, 18.269543785893525, 98.65396296296299, 78.19813913043478, 52.02088562896421, 47.4575913165266, 37.70979374464435, 28.360540481570087, 25.948283244533247, 23.164356989425283, 36.815831609725464, 21.52149318078611, 25.261937730266606, 22.276882666585227, 18.000735487482, 16.92860771405237, 19.64293492952244, 14.611079211441812, 17.241894443494683, 23.348130059289144, 12.971343733982398, 21.253196840435553, 13.183162137616169, 14.753087129277935, 9.747112894328867, 12.412713249538166, 13.959648246019182, 28.459988005990283, 10.360717169986934, 11.288822042001428, 8.319169391974166, 22.611520815399, 7.848070940277974, 6.832027443969593, 46.9825474521627, 7.113788008601319, 9.398714661736381, 6.378847070820807, 9.615580543258814, 8.843671386370616, 7.663337051292013, 14.408421807549793, 7.6794012193047205, 6.0768401004921015, 6.994574407435962, 8.149068941501552, 6.653138525186848, 7.2091438287895375, 8.265729373326138, 12.131217148330215, 6.67812813564096, 10.514151511254806, 6.87138072154139, 11.18641254304209, 19.295320621055353, 5.078548500613465, 6.657756517655214, 6.2059798737542335, 10.795046083408431, 4.849269310301265, 5.690406695903422, 6.33848090805911, 4.649759421574422, 4.501285195323304, 6.01398675403614, 5.753566866421335, 5.436410718428781, 4.900023615200365, 4.06909400927974, 4.047090909254285, 7.121251804401358, 7.788900649145725, 6.367277245233264, 3.9400220777008976, 8.50975558723783, 5.065242463074951, 10.284654098452608, 3.4426986251126954, 4.2954694078945845, 4.501249566038058, 6.759768840296699, 7.543774353585624, 8.794996032440455, 9.312124446267978, 3.3800548112592925, 5.093550264441654, 4.574791600404103, 3.923251138557541, 4.724378001138602, 6.605142290733012, 8.88187336827482, 4.687424259165111, 3.9919993777606915, 5.348873337950337, 3.7904596318570656, 4.4708133126285725, 3.075957526639951, 3.8999410089908637, 2.9640352173250095, 3.240551977174114, 7.314926478476966, 5.24014320665656, 4.935883888986713, 5.140598401139809, 4.281968922028165, 4.718617506318527, 3.6405181495518777, 20.882397811481887, 6.813718935885376, 3.531953687506111, 9.42106975027583, 2.8306514166630428, 3.9759526538525, 6.173815448809789, 3.861205342847783, 3.2897312717737046, 4.517019038195516, 3.8899502752150683, 8.334417482290977, 6.608152403885019, 18.074520646267185, 5.1595346013824726, 2.728744879979514, 3.8040820069307464, 7.077249007885962, 5.901931299960366, 4.976158089152058, 15.920845842134689, 3.7448623428867607, 5.372939931081801, 7.346274077851557, 2.5891918636872675, 3.8940394498568924, 5.277156203876482, 3.694656300822643, 3.4662861489416392, 8.467501293134571, 8.665689677463856, 101.34615295815303, 141.12498285486447, 6.049736012655683, 14.31036729689766, 4.366026144651207, 5.296132040787672, 9.853097228929615, 3.8121247734229837, 3.0035617038414473, 5.149079893859931, 3.4604335293783306, 3.108116343246185, 6.654862082426094, 6.287708910523172, 4.111411369791209, 3.1958616786073346, 5.899659081238211, 6.292183617854634, 4.199026902960479, 8.891590196582877, 4.779807179179641, 3.555571817611655, 9.216188153822962, 2.7860160194645593, 8.494066681695012, 4.078269453642043, 5.652712330957996, 8.910191928280167, 3.938194886415462, 3.439745008977315, 5.273488409068223, 4.03076746634519, 5.3864300827778795, 4.00095414776589, 6.442760974051333, 4.604204618479919, 9.375237989398391, 7.349426675957358, 4.259705545488058, 5.709715617331913, 4.115310809753846, 3.187983304377108, 7.681503874839924, 3.4439005507279217, 5.092758036084431, 4.393182389108533, 4.526682983806372, 31.74866303269147, 7.6917941676562105, 5.277310396360276, 3.7349295823392015, 4.470797545501708, 3.462916590801898, 4.437393910677703, 4.369200427396315, 4.037223194356242, 9.671450052953473, 3.6283266277663735, 5.509229303210008, 4.716993474278585, 4.915787273159947, 4.274166012072166, 3.8029055296827625, 19.935254979669445, 2.9239566971342565, 5.990464776912009, 4.800636226884534, 6.416653854238941, 7.291835650629515, 4.522392747053795, 6.236061776923479, 4.305086961112699, 5.199150001715412, 8.423467861877262, 7.354651805215643, 4.406524392502986, 3.0317526726435564, 6.11291666197377, 68.81010731751515, 4.486656649783009, 4.932937153142398, 10.623191406078565, 5.022228091667005, 5.585551509910783, 5.354666838515114, 12.198756590381654, 15.218684111289091, 4.088727948552486, 6.012229685740836, 4.2014117269193525, 7.149723558644995, 5.9459402299922255, 5.144546138192385, 4.64338112427173, 2.952624677003192, 5.47808300113297, 6.720618299896101, 4.118247575810728, 5.750893055505827, 8.279320423351319, 4.11073340567488, 11.619454185644408, 8.334953543860452, 5.382440839398964, 5.156146707914, 9.56615550086115, 4.437118245474945, 8.910043788756, 5.510667082012987, 9.564513510161929, 5.414819696543176, 4.898235557253713, 3.1889142965949806, 6.393299678517549, 3.054473200961578, 3.562365412841322, 6.220103346627898, 8.585717766618313, 5.199031532660871, 5.573708339704952, 8.085685310045093, 3.4057883102219746, 5.4836172023666006, 3.7925939451556685, 7.873737960857357, 9.410778334415365, 8.842481794380829, 4.365786037540965, 6.005214348696748, 4.902932400048025, 4.997491830306254, 3.9987975922798915, 4.814813091670914, 4.307258999397601, 3.263688819090503, 117.90764616755798, 8.754325972785617, 3.6331094683885787, 9.981990128186466, 7.3224248224324135, 79.23558730158724, 4.03461249731391, 6.238506870698563, 4.2671626065005315, 12.375799222138447, 3.4205720000888347, 4.041049316001799, 11.591494965859317, 4.513575078922171, 4.531404998737207, 3.2566821637908685, 4.6494694070898674, 3.9950255736990625, 6.30521755677357, 4.46645329407391, 5.187555940890462, 5.532966154522326, 4.4747918581755135, 4.946997448275535, 16.624798952633984, 4.969950962311441, 86.89871467829558, 5.998057243082825, 5.109405002682703, 7.169749873758856, 8.45496405775947, 4.067958543262114, 4.072586352416629, 3.266772839539427, 7.38698398498576, 9.469892460864486, 7.5198453627442445, 8.782885927680638, 11.311306393097354, 4.847459801257408, 5.771355410903192, 7.145883314686055, 4.376072996510713, 3.1396230902655238, 6.183202333541176, 4.11468948814485, 3.1629265214747786, 21.00261174132436, 7.001466724953775, 6.055131712670305, 9.119851943813426, 4.437946920206227, 11.487640130694187, 12.137746388204551, 9.987110692771454, 4.62076176618857, 11.814075548896207, 11.031419096823159, 11.00992546763004, 3.0316551757592456, 8.422286528339482, 5.065771467983731, 4.29945143677943, 6.580925106622762, 7.358347454882323, 13.129807181554035, 8.01421102314073, 6.6326555761666635, 2.941311204301566, 28.22558288662923, 4.508748239844521, 9.126161545681862, 9.074507603316912, 9.471901804950445, 7.771525260909072, 3.04067525612744, 4.887753354988989, 6.445365848817534, 3.7206311793629427, 5.047645827883827, 6.236885600823017, 6.216711412623359, 7.938313303084833, 5.72440186651745, 12.009734984989489, 4.497228977355436, 45.836660241090264, 20.268235280439654, 3.7873958525410507, 18.418774292324184, 4.9471855504076006, 5.250217123866342, 7.480879743517967, 4.922243105990852, 6.113345627771171, 4.144777061545624, 6.053321350069733, 4.638725776387468, 16.210796706006864, 5.706507047263568, 19.750262255927275, 3.948429656605539, 7.200746648108969, 3.171336815958569, 10.22508503152483, 3.4800519116619575, 6.021911894507384, 5.521888067008549, 16.403074900851784, 7.2408918834568095, 6.621838815324503, 3.7190860579047733, 3.877184392254301, 4.241403339676461, 18.40761377982087, 4.4580805146239095, 3.002957267058065, 4.726483730959114, 5.834087839668242, 9.465498694387675, 3.431422493235044, 18.017486255080254, 3.1916084286361537, 13.403920988255733, 7.363583415861885, 66.3921405193303, 3.8260579545711964, 9.959674716476682, 7.590575635678817, 7.2634097115689285, 5.40509794227423, 6.541877256229318, 5.3380249405119145, 10.796536006538478, 3.399656342903597, 4.031467130931851, 3.5700867308226765, 5.682921307373815, 46.09219693205344, 3.723094787944983, 8.449030744818595, 6.685791940115475, 9.232440412056109, 7.6537032039514195, 11.145887322265025, 2.8123557601877787, 4.62404179558715, 18.429694814954207, 22.68563332819193, 7.2266553635736415, 3.0514482309518574, 6.081178160273486, 8.392483553323826, 8.497134064672938, 6.628649373986656, 3.034494726719809, 7.44713932103304, 8.851560064012968, 5.431757174294431, 11.79879240772199, 4.347055025434667, 13.742630995704468, 3.780619080875498, 3.9914673590039915, 6.9880126766899995, 7.016906310494307, 9.281863208877008, 10.437163052081205, 5.400792114928417, 5.135065644724746, 7.637586051652445, 12.075736492997791, 11.733450731517658, 26.77727418147293, 9.369473196475145, 3.604456772638398, 5.407011164876189, 4.151273934906471, 5.9097323920467275, 3.0676701565259794, 5.6907244386945735, 5.009767733748697, 9.775216429600862, 3.5536230350753577, 5.6731040101033265, 47.619207449757155, 10.61580049808869, 3.522671344681467, 5.480957190925553, 11.207561903594376, 5.060220430842913, 3.6290719443536332, 7.796448009996406, 5.479933122167153, 5.221668400328849, 7.063464072319069, 9.59834653908761, 6.14685265349147, 3.4473905838828283, 5.961918707622232, 8.92320713625661, 13.07525287591829, 3.494520761183736, 7.1796330961384465, 3.698161809067635, 13.118965654271381, 13.140285467470601, 40.64875245268297, 28.104868634002802, 21.6840301865156, 26.052869593539313, 16.012479332614788, 13.422718611358118, 13.636795304663755, 11.873978410308528, 14.837476362148314, 15.94016204363829, 12.12199412567023, 11.060161280378965, 9.96258675951577, 18.381163507288072, 11.567119255007565, 7.27691661214452, 7.001344891358053, 10.12836429878761, 7.348885465628609, 16.425164229531628, 12.208432099813507, 9.183365193053762, 6.33089215887863, 10.407883099583524, 8.114824154114952, 8.162914931254964, 5.3542371300482525, 6.3644469491768, 9.486182685312762, 6.74050177130128, 6.24997450257428, 5.6264579849248255, 9.547340654144671, 7.141489942541631, 4.856947039534095, 5.302338136021504, 10.206153303177976, 6.976378206908593, 7.314297275616525, 5.42706963725551, 5.421084144954468, 6.063686369706171, 6.122579103763441, 4.519307334693577, 4.907806700467149, 7.0990852426813325, 4.050086799309603, 4.056281314645742, 4.981001823665825, 4.772640148903736, 5.694198476547388, 3.6934229386383146, 4.673538032504259, 4.15784748320734, 4.513641448839349, 4.8329619135552315, 4.229698757733062, 4.322974551245265, 4.374565359587866, 6.425291387553448, 5.114720665208164, 4.486940746346355, 3.1984286860926754, 4.607320458772848, 3.8780839274629444, 4.931569686301449, 6.3427669117479475, 4.372273675214234, 3.8266717151020315, 6.571346898477542, 5.270446476909732, 3.487532812558693, 3.4471949777694095, 5.418864109028912, 4.873301092897887, 4.289489131176629, 3.2476371711871606, 4.602661663771795, 4.541441912251352, 4.9341943589752795, 5.126900118249263, 7.300111743498603, 6.5876078245562795, 3.0238580303051017, 4.625533944896373, 5.728371874693933, 5.319359093254487, 9.269275820388598, 5.506230007846682, 4.7528332391656365, 6.539616607230745, 5.549512671985736, 4.984188488603164, 3.4896051104820818, 4.570602201612819, 6.721109278357418, 5.25723953294153, 4.277532141804364, 4.548764394016746, 8.589882858503655, 4.164152509662289, 5.938057802311893, 5.3894882504581325, 4.596139182612475, 3.097625010490202, 5.797791889216424, 12.045343098482176, 4.179176256346949, 6.526910326698817, 6.405280892448512, 4.100495960119018, 5.131626461189443, 5.148489560726143, 5.290706506657107, 6.213844331267601, 3.7264775950862754, 4.200150007342997, 3.6020115005348425, 5.358052903652773, 4.818672932811533, 6.4359792474588176, 4.042639873333031, 7.412583744546872, 4.531659970500203, 4.41427078325254, 12.039848490430122, 6.489904588336754, 4.550551219653236, 6.76081701756208, 4.282546159450941, 4.771192572094637, 11.983121177489876, 4.522337580488253, 3.1119029120288726, 5.279984495490276, 4.7555835995608415, 7.137551750911353, 7.125299984090367, 11.047894110848627, 5.2176980076284964, 4.3442382407094975, 3.144775665583621, 6.333530479034577, 3.835281873141628, 6.354890097576804, 4.468782704102202, 3.5475127397150006, 3.9357194600729355, 5.520013290111996, 5.284620726684683, 4.0359460929187785, 3.848898799926584, 4.334695077776681, 5.362053932620155, 4.191292173889118, 11.906544838717577, 5.581626255896702, 4.089067692093307, 5.5682742618605205, 48.774479671457776, 5.874075130222324, 3.842766100727694, 3.853055665308751, 3.69329023690356, 3.1711816361309384, 3.6247412898569156, 5.528813446566382, 11.69048125021612, 17.62233976987924, 14.950747318041442, 3.733409644708319, 4.1950434678734, 9.491773977701136, 6.5178105587079065, 4.196139440052626, 5.2983634982930345, 3.37480900347819, 6.672215971332455, 4.848482413304321, 5.477680850750789, 10.137242171293861, 5.18968398125259, 10.467480757582797, 7.305963114693764, 6.098748302468246, 4.004721865320585, 5.741785465127353, 8.310364022342407, 3.504289823479267, 4.258610262631926, 5.807932680400068, 5.84381497650607, 4.497846908159907, 8.715036333455103, 3.6915093680451676, 4.179097759996802, 7.878837151951822, 4.2438443993673705, 5.635343861800109, 3.0457311123414508, 4.278891729079332, 5.926091635576615, 4.17010373406967, 3.648495059636465, 4.308044111160156, 7.427157323232323, 5.013837813550464, 3.7609647457815005, 8.288071758850915, 5.6968686769547965, 3.923879096106179, 6.914690036535813, 4.4773895605168805, 5.655565642506547, 3.985856137481401, 4.898425222931904, 5.377268749343882, 6.0616590234474845, 3.714142080773507, 7.303303808105301, 4.23429986952762, 6.403490782565528, 4.711499673047894, 11.035373479650424, 4.183826773449589, 3.79359757404551, 4.10608025231292, 5.1294925446714945, 3.9710759824021826, 6.971842184215113, 6.269705059078782, 6.072151709107813, 6.59189779137593, 4.510392175503666, 21.51444765826915, 3.5137500830762787, 3.791834980122386, 4.967982840674406, 4.9124481166370035, 9.313693622547262, 11.152878247076009, 5.388774568527348, 3.001335818601804, 4.260916928406437, 11.557405743474892, 3.664682980318907, 5.786646984203133, 5.277662013909985, 7.0108715232756555, 4.592389012855516, 2.4161267058174545, 6.215437405282751, 4.836079237818041, 5.48359357449188, 11.052049817828339, 5.74065220948755, 3.496827192064865, 6.953240138969628, 5.052118674477693, 6.441308263018946, 4.860891648671334, 9.273087783163076, 9.793880509153677, 8.87951815681139, 5.419036388207658, 7.662555892221715, 7.535466316663721, 5.169220545440828, 7.507967868948897, 9.201070292966154, 4.512523242806742, 20.99320251415251, 2.6303826912536334, 7.200138070865108, 7.7773505320760865, 5.535578144987582, 28.74088495719848, 21.67033801145092, 5.502277081983743, 4.283459861799783, 3.4751673674210766, 67.99217634532448, 4.8869428896780605, 5.739864215159682, 4.274091650939495, 6.331110048724786, 4.2220957938186805, 4.939634161630781, 5.2296740681420015, 5.908676461086492, 4.16983116134295, 4.198953689703024, 5.80167648163266, 8.122095221872243, 6.346636977269704, 3.3775923570149464, 4.933021662809194, 8.388830546667501, 2.667459927410034, 7.209214759763732, 10.32729198749372, 3.8479283739715875, 7.2132469682862315, 6.510944850182905, 9.705130000091328, 6.692323669308472, 3.1080874375031837, 13.718545074283773, 3.950356194821662, 10.086150519882532, 6.651274646838016, 12.377711145703632, 10.680078894700868, 6.013158228821044, 2.9699336558267944, 5.628655459475253, 5.5343842182995004, 4.626926423654167, 5.723737923831094, 3.1223401806821656, 6.775062254295743, 4.979028260317553, 5.348431801483546, 4.441525521787143, 5.894153638670974, 4.78528984825038, 7.104859002402539, 3.669548295650012, 5.14386676416353, 3.997881796793756, 5.315082701085242, 5.105795566908968, 4.421253517111596, 7.181874682919419, 9.326700992228227, 6.561781684193147, 5.261632925566567, 4.5479548933987015, 3.630905873329497, 5.403329047050584, 4.079374831653561, 5.849146584900685, 5.394530703694989, 4.692741299879881, 4.6050613559010305, 7.771065685475236, 3.883186399287694, 14.041092022023637, 9.207276011344968, 8.932723251805092, 7.686726532992079, 3.644609300824512, 3.8202269412096155, 6.1014839949406925, 3.4431648021083876, 7.0748964000046834, 5.426099010074332, 5.623912209614695, 3.1548275786188995, 8.863056110981859, 3.856699701609833, 9.165167487429768, 3.6956820005893234, 7.20985910182366, 6.7766319603730585, 6.216960128733629, 6.047823691586556, 7.20894527586307, 2.9737793164314015, 5.431286971383563, 8.398673430169435, 4.425116553648234, 3.3542995248035004, 5.784149234553454, 4.34646254400214, 5.271912141818064, 4.394058417455599, 164.35587454212458, 3.7616849935350354, 5.495272786562317, 8.649275846985427, 8.455605334055353, 27.543158258046308, 3.6711752074961126, 3.7650308006955218, 4.310792261749654, 4.264411926323589, 5.73685269750594, 4.649406708194221, 4.300158407579924, 6.151363548919194, 4.381434633802468, 6.9524734883692165, 4.719682338278651, 6.1116460693611545, 8.324814735547282, 5.476189879066308, 5.536595215879685, 3.648707961910695, 5.799035950593586, 4.285123735867128, 19.974331810229547, 17.353506761567076, 7.292981160887399, 3.463317906125889, 6.551691715835191, 5.32328506769948, 7.699049467382166, 3.504495160676313, 4.389740939091781, 6.251562547674845, 17.704407429518287, 4.185882406800201, 5.752309961685483, 3.3944908574418826, 10.994412039161212, 4.565403525684166, 3.8772565445769667, 3.847669991260907, 6.252486833530382, 4.851351201173387, 5.339683889566926, 3.8893956926362656, 4.240315494370848, 7.5037377261556255, 3.0086648805112537, 4.859232483376755, 4.997454326224077, 5.947315627802912, 3.616367965003213, 4.211747190167699, 9.566078894041235, 4.635811788214374, 6.063818782178511, 2.673919747407963, 6.662163279671014, 3.829353395195953, 3.8838632029277704, 3.832344583174974, 5.410176453258998, 4.102139700097934, 5.6165808755625655, 3.246074297378931, 5.641493041532741, 68.17872970820179, 64.9885552553984, 49.13981470092035, 6.466355543291668, 4.019186857145737, 8.506018441001212, 5.5513308694846915, 8.617185075594728, 17.950740909480572, 9.51366962443976, 3.5878499474633943, 6.754028299160566, 6.486030194902494, 10.241956622811951, 4.444200064298322, 5.529014258441079, 2.722850613801493, 5.369997574958349, 10.341507961173667, 4.552490246009857, 8.615206366492707, 5.0550804688632995, 4.898291217037045, 5.874059281644244, 5.353330445251044, 5.433323605008613, 4.362495289695307, 14.644377563438974, 4.423879493947151, 5.676949170715111, 3.4139329396946163, 5.409236057686595, 7.755988636205383, 6.218270969601019, 7.593941285553882, 3.2741777778095065, 17.051851449954707, 4.720478922451994, 11.294481353556199, 6.7977080567178, 4.6865766779129725, 12.568662093004388, 4.386658700725809, 3.9276561358581064, 5.964052204745545, 22.747786618826805, 8.968800686161229, 13.137686773034993, 3.7267241816830152, 5.443839599113833, 6.942292289961381, 6.7140640411449874, 8.704150073065613, 5.772166048474609, 5.185121235208054, 7.413449098382464, 5.3921491888334225, 12.655876780023027, 3.798028320274708, 7.017270281769812, 8.845493831909954, 8.329481150555083, 6.829371180779157, 3.2818334375509153, 4.887243498957046, 2.854093771359077, 5.815353702333755, 4.820718483373244, 4.566466259541406, 13.831272087746026, 6.898162036360332, 5.693021093948192, 9.29300181031254, 5.111375544172344, 7.879705996918218, 4.141955019386598, 5.444977855238715, 5.992172613139168, 6.444215049579729, 6.630629591372133, 4.97930613716418, 9.225229252784096, 5.528954597002314, 3.523882829077181, 6.982269773156117, 3.6044518357896975, 5.550617176678483, 5.390091800841649, 3.7311571247247763, 5.21332759542658, 3.6702790095292928, 5.277588167287371, 5.717762605815236, 3.212704292436935, 3.0577555128555116, 5.826431910071709, 12.488953142965833, 5.528687796530762, 5.628747124879885, 18.06392353488444, 3.721648289501741, 4.519419172464048, 5.565628844640371, 10.917410290447469, 4.820726612289357, 4.158677297270404, 6.226410207787201, 5.247831021467259, 4.335248554659704, 4.554358039981301, 6.2438309579786235, 6.107084773938975, 3.3949435991735375, 4.7729095022975, 3.1972475283387474, 5.947295276248833, 5.188384519250605, 6.112200737452331, 9.08108208703508, 5.869803587987346, 9.468505874554946, 4.984012019696312, 4.464422400087508, 15.875291461657373, 2.8404668950271095, 5.535999534044105, 6.643967346337322, 5.350695712459501, 3.679823677284779, 4.136775301762966, 4.439851977512177, 3.9958545906514993, 6.594287957240005, 4.209755915450376, 5.756844971625129, 3.5015664812874574, 3.6209572463869795, 11.979558582221614, 4.756306281894829, 5.566210175550978, 2.838845544638942, 4.01305067614701, 9.402171879162124, 4.671146192469645, 9.847966698630986, 4.246272138408044, 5.640369431045891, 7.096831919126621, 3.9504358958307453, 12.579594654730766, 3.564905514813035, 3.8158204935979896, 3.150156331327136, 3.623763097773884, 11.368751014106138, 7.606344466913798, 5.041521249015476, 8.474079869407387, 3.89651107680859, 4.937462724420104, 4.651318033890561, 5.04496778238654, 5.774486942299964, 3.9784888437341657, 3.2213582190600203, 4.299198419494861, 3.5792034903647734, 5.941530882287152, 8.029784916521548, 6.045657227980504, 4.517850982452857, 9.576545103202847, 4.5913617654447885, 4.709437343105248, 7.779579610562581, 3.3210527205155915, 6.199958274937316, 8.473204917864683, 6.328127049448539, 7.154534661807287, 15.96057510862341, 3.4871785548453516, 14.812703457419401, 4.25553852216204, 4.864725430883729, 5.905305806331722, 6.926743832753916, 7.309258325729176, 10.050665552940519, 4.814540830150602, 5.700999495823063, 6.078832851074693, 3.4223381533432167, 21.555948564470945, 5.676256317921672, 5.832770344281617, 3.9724745534939556, 5.4083574021880585, 5.529775886351364, 4.385489559676555, 3.4729052609824103, 5.19357911100942, 4.5637381293315, 3.7926142879213054, 5.9291511467434095, 3.4980117873858365, 2.9201028049611035, 7.069682582405357, 6.259323424681902, 12.886582251355541, 7.020367321120589, 5.60893658409033, 8.456294409074198, 6.502172296093083, 5.735423424018037, 7.676413057003122, 3.230068644831408, 9.497907042536706, 6.49961762447039, 7.825373317596968, 4.897208837056173, 4.216962669743141, 7.043524978580415, 5.349511457783801, 4.8933724962267915, 2.9337030007182605, 7.211688649847903, 6.88836693763131, 4.3031183210339385, 3.850861768035116, 5.355529227388116, 10.60632260321808, 7.458162943581844, 7.40642507719093, 41.85813888888891, 7.941876337506745, 6.529665202127585, 9.435058822785674, 5.080514514944861, 8.039816233514125, 5.8576067397423595, 4.278653282502283, 4.7227444722646945, 44.49528156543233, 6.13403899402423, 3.554923672765741, 6.648242723496996, 5.605798405225502, 3.135805308872429, 3.5331438225402754, 5.9575966061308625, 5.11024399654198, 10.152163488639129, 7.022660390102111, 3.6778012783104526, 2.9458205980183174, 6.6066838193100175, 3.242453215110324, 6.9999429308346794, 6.483811630546895, 3.321584904408526, 3.421382739359819, 3.153716337946439, 4.476706697007107, 4.82286315819435, 3.579717902401354, 5.466526005253509, 6.6630986706118875, 6.809925605219662, 4.132339079722194, 4.049345535728995, 3.8561301179905754, 3.661168940898887, 7.7988489744491085, 7.117890358560842, 3.3233387087434463, 36.311484516109516, 2.9028667573272995, 4.688893847148219, 3.3524158598841303, 10.229327186706746, 13.269073001608984, 3.8679069463017126, 4.669663791575684, 2.7297941705588475, 3.403478950307588, 5.885650334427995, 4.469758299814183, 3.74619029156494, 5.8389858080401, 3.816618406404984, 5.390044481534591, 5.52002028326626, 3.7946655120443857, 5.02489863594541, 2.972987564541026, 5.755210522036601, 8.93240068938716, 4.064771374434082, 2.880751504079018, 4.850892410671369, 4.273278563622312, 9.218538075640401, 67.73782235336917, 3.6747107652666373, 4.838029357961965, 6.0069663096988695, 4.745481222930142, 3.8833684187252846, 5.327017040931181, 5.446873742789583, 5.075303906263755, 4.0785601782384395, 4.654200255967191, 3.323877978567229, 4.06489968349103, 8.595164377171562, 3.1551263213070206, 6.2586995456452446, 4.443802642016716, 6.459054458130962, 5.853338437015994, 4.417518948297704, 5.911672487404383, 9.547116102847067, 3.733409571388794, 5.681260103109184, 8.151691031001523, 3.701657531864662, 4.006923698519624, 8.532124919274265, 4.346703693515012, 2.283863434946195, 5.849213247642942, 8.450968993183135, 5.387757491069835, 5.914764585478487, 185.39916666666676, 104.00811143741318, 67.89919421101776, 4.024186141761826, 4.599178846740918, 3.5593676130076664, 4.364528122484719, 5.802155085265784, 2.9256426303425207, 4.4077081479453915, 4.779812349645408, 4.29401204730976, 3.8058084362512403, 7.7726952164649346, 8.746775711541074, 4.0737197076403655, 5.053193096618496, 2.7993885947633546, 2.783354989719556, 6.8721658852741, 9.075963091756048, 5.798623681570469, 5.3625595589441915, 4.634506687551203, 5.804465461515796, 5.335948590515182, 3.9768933161885363, 44.82206847988649, 6.088861045963066, 9.859018255283626, 9.66961313990576, 8.22302489597366, 6.849831467404508, 4.3647726896011045, 4.793089771126429, 3.652995425119179, 3.2915895505849986, 7.7300795529230895, 6.738771799530601, 9.540333866336224, 9.223135597802328, 3.139287828782991, 3.061750428119577, 4.188622979855098, 7.425701781320373, 4.643528494060847, 4.746389967889813, 4.4860169316484315, 3.8984846458022755, 3.793882814091603, 17.324253522621163, 9.969478094044268, 3.2562315816103107, 4.332246385304714, 8.110954658235498, 6.455858485571466, 5.831663424302521, 11.126684435745537, 2.7063095011271163, 3.6866654691369254, 8.510365868404817, 4.109218756549685, 3.712062532079247, 7.4055386055847245, 8.487956485073111, 5.2674582680312465, 4.791433319262193, 3.566597494772389, 6.051695424911683, 6.209901081188851, 6.848263124293831, 3.364553752865408, 5.2246965305666, 3.745204364977852, 6.994616481478259, 4.543668865459981, 6.564991812795736, 17.724027654597165, 3.6532760883176256, 6.72481456626639, 12.08991178157165, 6.915502916118042, 4.562734236238429, 6.016383055509445, 5.717922664711629, 6.0976261694035845, 5.236638260176233, 11.992134241301617, 6.959950071308121, 8.787098933193336, 4.4780846525201925, 8.164914044997268, 6.375987369064636, 11.694299105469229, 5.462451088283308, 2.933654314394159, 5.517312154634897, 5.3532701799166125, 5.660159887488106, 5.234249694217688, 3.9510899719822143, 6.743640062732431, 3.925271197008398, 2.354003059621705, 8.35850736134113, 4.876166342273876, 4.2335598971832615, 7.53825665717799, 4.026822554535881, 3.8581251366971943, 3.296172949482419, 6.203339097654435, 5.240444486541952, 3.219802341873701, 2.792140932797793, 5.87498846882706, 6.866757913870789, 9.702733839390115, 4.22852228681094, 92.50849969474964, 10.261258185189543, 4.383490656350287, 11.267576377151313, 8.122471201047036, 5.322875116768046, 12.693539201295783, 3.558932826440562, 6.207510769104359, 8.12233817937074, 8.580991069227313, 7.1374591393829485, 7.5667799878459725, 5.225981745994912, 5.3182939235286595, 3.4537052487737836, 21.820752460384934, 5.172691157494399, 4.3699490025101735, 8.999653973657042, 7.560824516672665, 5.344474333947022, 4.872421559403895, 4.310327706427607, 15.32742416163534, 3.5306564144561148, 5.08139964886525, 8.993001088683197, 4.277898700285074, 35.05152175384786, 12.235218924381966, 16.48448779800762, 5.508312094553501, 9.679685802306091, 3.567448847967101, 12.568673403429672, 3.7530532270216623, 4.905273313020819, 5.976138512418862, 10.42303455814604, 8.64352003264194, 6.017049177661934, 3.5825675138032462, 10.30843902114195, 2.630049494480312, 6.57922705397704, 14.719314850137804, 5.454647335998712, 5.120355782996516, 3.900885774924112, 5.147107968425189, 8.19398465282642, 7.672415927400498, 4.53262139965669, 4.448247618204351, 4.918271186563192, 3.2239912934784027, 15.281549562491836, 35.807132367632356, 32.427390648841296, 33.54735650254831, 30.529999278499293, 54.89027952529927, 20.54567625848099, 35.45636674436673, 33.72343609329267, 26.849013631741688, 19.11978001954473, 29.450987827892785, 23.68701640826174, 31.22875539830305, 12.92249086598273, 24.27869466944719, 18.941139321928215, 16.16537113146314, 27.357974518909614, 15.915075731379126, 13.17523744669338, 10.580939174612427, 14.384726820594127, 16.26981208275753, 17.57515780272063, 11.392019402065875, 10.341101971904331, 13.375305823115365, 8.070594782517743, 11.26783246154476, 9.260310224073034, 6.997659518961371, 31.25769772625159, 8.688853184845993, 12.075168675846239, 6.122484173960429, 6.952365429377276, 9.407694894235538, 7.775285715336349, 8.90019785462806, 9.698316899252628, 10.701818044979666, 7.5711861410345, 8.072069104717446, 15.395301404718435, 6.197730359728998, 12.082548539370942, 8.85743736519277, 7.000323540258399, 7.939761261748164, 7.26445339350874, 8.005208504484164, 6.703371906660711, 5.8528812132593595, 6.2675914039667315, 6.544787380829409, 5.881960785123907, 6.124409035526838, 4.981808266163183, 5.356619505645961, 5.622206850304188, 4.981911334216663, 7.341252482046949, 6.494094082018698, 8.042038922611669, 6.257607651257587, 5.237546690166904, 4.857271740626025, 5.800892403348475, 13.179005542511945, 3.979140487642961, 4.617404258582471, 5.034420873426583, 5.084431601527587, 5.329086938005649, 14.547179511350736, 3.7944249276869173, 3.3735152204995846, 5.3594752238691745, 4.336948373803037, 3.468992935097858, 5.851083965988762, 11.084093936986118, 5.2342913056226985, 5.8043346612416205, 7.451927310705214, 4.350709111959906, 4.2972685627061225, 6.051294795709164, 5.154071622485319, 10.218453534851848, 3.8732192286719225, 6.4377064704196485, 28.089706266923553, 4.01967517324904, 3.6282655015965584, 4.1782825903100935, 4.2071995223632, 4.603194845615902, 3.6495370580512, 4.781212063475884, 4.675159034458173, 3.912162329339205, 5.152307985871816, 4.545108163572955, 5.198040145167724, 2.826047120450677, 5.536632085328097, 4.869967237316895, 4.356721106160981, 4.469585477702028, 9.150447477187535, 8.785262909140126, 10.671181172993672, 6.849115217696926, 8.704930719702844, 4.227831793989665, 2.9325574656814206, 7.642889256342361, 8.499967507965025, 9.457424603020833, 5.4928229149038135, 14.430419742538161, 6.608031002103624, 7.717873193875368, 8.777826341070924, 8.53781884411884, 7.793272820103473, 5.7976795777843355, 4.707169000809878, 4.983935001382292, 4.961556989462463, 7.360250717306301, 5.532991048914239, 7.02574616386065, 5.211689894871005, 5.284439566826718, 5.669456245952658, 6.322869820963574, 3.7927835565248733, 3.6957350316936832, 4.487876043066981, 4.549006912535074, 6.109860196833558, 5.517597581911885, 5.089992543006623, 6.065150101197285, 4.823149641933963, 3.3497218396801913, 4.773001131287656, 3.995778532347915, 5.996696432000955, 5.199755707083801, 30.88531394300146, 5.718714352522835, 7.3552717450314296, 5.994021472628686, 3.5185625651318144, 25.805376407064184, 4.325226569415753, 4.867453937497937, 3.7891512206913456, 4.5137913750890934, 10.994819542137888, 4.196498813830193, 3.8465309685350997, 15.500906096823758, 6.574019471000774, 5.846421875747466, 5.441575113953128, 5.191880350011633, 4.074599636211806, 4.43020965304777, 9.306013478996592, 4.224347368632384, 6.308509971893873, 3.5192425946596826, 7.231097863152157, 5.371867590753515, 4.722683288936361, 6.8520793802773134, 10.70813298725357, 5.091775621673223, 5.617860568018206, 5.746911707280398, 4.347263326755199, 3.2613940729560187, 3.5024318380795787, 9.336655273889164, 3.3550293738537684, 4.501897615576334, 8.788882915626122, 5.407994948233673, 6.9219015128808214, 4.944170733349373, 4.578158124251186, 7.074957250146736, 4.403283970164457, 5.174131845942698, 3.432058097604195, 3.3701248135659934, 5.974859683342355, 4.99352900326015, 7.631828860803889, 4.240450944070325, 10.648757313772718, 21.55604074766631, 10.890085645367476, 15.851575645729717, 4.784514210764476, 6.312157718604828, 7.932809276669916, 5.98999820863512, 6.382974488462868, 29.074596258961087, 6.989422159802018, 4.67251566619975, 8.025452045934477, 7.517780076063448, 4.790948163337178, 3.1167373245965, 4.268622409667809, 18.20892921231929, 3.7151902683982345, 12.840051912504345, 6.474620218379281, 177.45042207792216, 45.769493273066786, 4.714250792173306, 5.598216413662538, 5.384688752946128, 4.782155895500585, 9.738495210103006, 3.1918038858213666, 5.987303028573042, 5.468295281299892, 4.549732901128779, 12.633659621717854, 4.4171606262472345, 4.827676438204805, 6.344402325324928, 3.696533033127392, 5.839370011395062, 6.49815962571203, 4.046404890866473, 3.862237315967139, 4.714797473001894, 8.385310403205578, 4.072443716575873, 7.503523143964224, 3.4458341857385593, 3.468546964531221, 10.843826662760447, 4.697038334551999, 4.328051468053077, 5.104786391603213, 3.9070488875511393, 5.744791629469507, 7.326589339809805, 3.760010097300674, 5.536191993024479, 6.374787173225788, 6.823518050447204, 12.91683421954631, 4.674159023287155, 9.526077279220356, 8.440979985676817, 8.570113424725424, 169.9178030303032, 85.58287514854428, 6.945442668702426, 9.362379768409408, 6.50556822290496, 6.037001514454326, 7.312489809356471, 4.636336545698959, 8.110302444271209, 5.09707778412401, 5.784843934566293, 6.492814572621193, 5.458670034175142, 3.681401340915148, 7.898978226990941, 6.2129572452790836, 5.18140898089303, 4.92801592318422, 7.945626367588133, 5.18120993412886, 4.873100289082257, 4.822529860634065, 4.772900757458815, 4.652139225464134, 5.822166281967194, 4.821010525421669, 6.372664949243674, 4.357389696317781, 4.4998888651872635, 5.086392063171552, 4.13103255078795, 3.5501063672085613, 3.9872424795173136, 4.797286567219689, 6.010067308484647, 7.097571087075928, 3.9546335109148805, 3.578113113005484, 4.717289610931528, 5.999129568558906, 6.256524702718151, 5.350088861729767, 4.450668067635627, 3.1116222582847, 6.690290491836692, 5.755687409753761, 6.592388995553034, 4.360428519546395, 8.643278536477775, 4.051323418232072, 5.017579969106885, 4.817520031602775, 3.358539300339715, 3.04804086660051, 5.506118562017342, 5.588922670328551, 5.419910624018003, 9.49059181151273, 5.324146509309007, 6.507375092462798, 5.740373736581677, 5.385831367970113, 2.6059751116532737, 5.246255196994765, 4.335544522636745, 4.660002135864838, 4.3896892470897235, 4.350472810314237, 3.3092042144893203, 4.53192606284287, 5.752355166940478, 8.29811216409629, 4.115947167108843, 3.524570512690205, 3.2719536682750094, 3.936607265118071, 5.463272182291614, 4.002363168350977, 5.943788933901234, 8.315388676311807, 3.9170260100627368, 10.269327035423268, 5.134638090973093, 128.19650000000007, 5.120343694142718, 3.848707974399017, 6.142818018972338, 3.672261887978963, 3.8074226608112562, 4.123510439891344, 4.332741917528529, 5.838471635502315, 2.8689511206309852, 3.9718806851110258, 10.336667012154514, 8.080625468683833, 7.059539931336173, 4.555821063581348, 4.796603924635054, 6.077397588816626, 4.701941113363808, 2.616030975411518, 3.982417231319687, 5.227442285128863, 4.9935855797790145, 4.245450650244504, 6.9501232480987305, 3.5423566370096387, 6.610910280802815, 9.293147884221737, 4.655746052476921, 5.549392997348998, 4.618524059959254, 12.44923825802919, 4.585816147025433, 5.152490439947783, 8.5317700702206, 8.783243243214315, 4.105365960653905, 9.024697271306, 5.7521458280505, 9.757788933196776, 7.420389290139851, 3.5638312954275526, 5.71177076869964, 5.380085436246769, 5.15414027885632, 7.857020458906035, 2.319886695356164, 5.926345502365685, 5.875970953827163, 4.317026680553005, 5.9032910778503975, 4.063734048093921, 3.959807886272842, 3.8790998106937975, 6.426874494947786, 8.234864874543568, 4.049913985911445, 3.8553099134978663, 6.456228649535557, 4.348791789783943, 4.787180550112324, 5.090608282532956, 4.425795411443848, 4.332049944657217, 3.3196406731661767, 3.76778886165023, 3.265256758749397, 4.251832598134226, 6.354589371440829, 6.173211883552368, 3.5021248267614866, 4.814835871885202, 3.1061411638452325, 6.00472579015912, 4.138990946486425, 3.8431410387402005, 6.586802628277495, 6.1487972243996065, 3.721208791952056, 4.632689658964347, 12.61149539041421, 3.9592433926007287, 3.8239072673317005, 5.532058715010936, 7.358273890951394, 3.057554295562554, 4.527203168460552, 4.140781995519115, 8.191333662357744, 5.061669389264356, 4.206848277361545, 3.654361557328809, 4.8459037475504205, 7.45853674157403, 4.044042261563487, 5.3291342384213065, 3.6971787483193954, 3.5619558228087302, 4.4416306548258015, 3.5378861939326516, 5.755618664527165, 4.572317147252094, 4.039345993008122, 4.488100606292734, 6.930858521312922, 3.2646903707373958, 57.54294195013242, 4.50206071882493, 6.428155057148746, 3.8028231997725936, 3.176991731763628, 4.9047901715575355, 4.406789280949975, 7.63184059234346, 3.525383643811278, 11.985302998767077, 3.2294022371321978, 5.7801625475347596, 4.222963715703504, 2.6927488203002303, 5.780444279714413, 7.579946401790041, 4.263061744936986, 4.418912253100327, 4.173875678638136, 4.069847405943103, 15.438282558867575, 7.707795812816103, 4.063756988907386, 4.912941927371486, 4.748809426500525, 3.0675379698062306, 17.969798997538827, 27.861803062721258, 30.71137934014032, 15.111022983425508, 20.85262096517892, 23.093666051674536, 7.8428153915116035, 15.59893955835786, 18.139220330868614, 16.659205709271866, 12.159998434831529, 12.016096803118591, 10.0565922834439, 14.822546868845045, 10.269793600643023, 9.39619422998854, 9.009695489471312, 8.37365759887264, 11.567658698159144, 6.0225158104181675, 7.1993283810067, 12.83826971625105, 9.01918442181458, 9.162934890270627, 7.127314500676541, 5.688640428977532, 6.884404544093198, 6.568316162944518, 6.460219989855926, 7.656204821215676, 9.905949541928758, 7.0844349172003, 5.8913934249528515, 5.79716606407917, 6.639029333846902, 4.300690316980386, 8.008392894917675, 7.111250360414232, 4.380327620300371, 6.804911837023997, 4.0216575758753, 5.3057805244057805, 5.330557143212298, 4.689595503095095, 4.042318038199238, 6.097978724190775, 4.63399019982489, 4.702377849110209, 5.654354516165216, 4.732893803705823, 5.102697430453485, 4.086721660363769, 3.967278629598668, 5.654151891662061, 6.073883848583918, 3.811395213780899, 6.224415945379345, 5.0484632509322, 4.99007906680757, 4.348817115056179, 5.5214282671627535, 19.036153810461787, 14.368468353939676, 9.422164098356612, 5.383664745609594, 5.145635741606354, 4.681593358326272, 3.8579923354451924, 4.86179929967873, 7.071986205012251, 6.335978448479377, 4.355705739663493, 3.395752871885964, 7.836185817614261, 3.9441871195518394, 5.096784056926413, 3.7594738785090995, 3.9972833072507323, 7.883009969904365, 8.929742576813078, 6.326628472382734, 5.052264866244299, 10.1036301414715, 6.3028778593597465, 7.883202573093603, 4.495377884157619, 3.6999507052943006, 4.104744961420953, 4.07049741512662, 5.677031835860009, 2.5348617093166963, 3.467249313683227, 7.019851561843108, 6.130133519306146, 5.240376161066011, 4.960062312695444, 4.908151329934703, 2.9919875725807086, 6.480307498783424, 3.3832049525778602, 4.116907953186311, 4.960680707072724, 4.753811397469288, 3.0766525618108282, 4.287261982446171, 4.274920582354901, 3.677148436271938, 14.33532088087103, 3.5349389344759525, 3.150214797226884, 4.047702645265966, 3.255991726000719, 7.5177052403630595, 3.599125927501758, 4.591502464564347, 4.713127436589067, 2.6105296202900456, 2.821720001737033, 3.2810537209038952, 4.389610882177119, 5.669455363342341, 11.01024952262976, 2.750111048385891, 5.087217798001674, 4.122947866871818, 5.617704831873226, 3.4212210123250135, 3.437007282819817, 5.661793043983116, 3.85238837580249, 3.2626281843914446, 4.182513245412945, 3.611143018122097, 3.5170452958017195, 10.129494421368108, 6.799933742590413, 3.9011235306620984, 10.108989755154742, 8.10286885593006, 8.58036077493198, 8.922602623577442, 5.6589685327259325, 6.224024177454594, 5.881512477147164, 3.1899979727141505, 11.386475835848872, 4.812833512841262, 2.957229893066509, 4.753495759791878, 3.885296928834376, 9.146592210955726, 3.9540916962942325, 4.457174263353711, 5.890911932037099, 4.0674093930028326, 3.8340767217544625, 4.909135304365692, 3.4736787401060125, 6.880021532959055, 4.550498710406974, 3.420645163787358, 6.232000293358978, 4.749197867881647, 4.150437600437618, 6.121565298538759, 4.5572459641204555, 6.865990314881758, 3.1347013159741737, 5.3312077240162665, 7.8254310459185445, 7.606962824041948, 2.6526535912807137, 3.1061488437611886, 66.06702756505233, 4.7243791701366336, 40.6445276390818, 3.264297387449857, 30.2813493405477, 4.64514693321898, 10.477556292339813, 3.9100410163344357, 82.12657924836601, 4.9578515609335945, 4.994166119543339, 23.830888909584456, 20.704325551202118, 17.388120146779066, 7.436759935630006, 15.462665065885767, 8.455926389076776, 4.06229527380886, 16.241808247482876, 5.091017072015764, 3.5097607599080662, 8.156425305401957, 2.7220925333838863, 12.739251355100585, 5.835769793162896, 4.035952745009868, 5.064046227465344, 3.913535489840157, 4.2918344001007025, 3.5445384916618763, 4.961489799568838, 3.603883139828443, 176.2123140367259, 13.13497184226369, 7.281607453426044, 4.316817817175921, 3.0653963731543707, 9.077192628797743, 11.920555407157229, 10.292829706583333, 4.169103237523153, 3.792256750952865, 6.734220590628609, 5.610750016204305, 9.239316657178149, 5.7200427265789795, 4.384502547111238, 7.647349813492346, 2.8550671216765906, 9.468847060823345, 2.8251555725585455, 6.941323689112453, 7.264920243660171, 5.470144804674262, 4.333676945949166, 4.019345888338249, 3.450592810927432, 4.627846848882217, 3.3946515367997403, 10.61902304525639, 3.8509925810005092, 6.489948377113015, 3.4745368106051897, 3.0070619418913576, 10.077418126316562, 10.692045392710247, 18.953809514276994, 12.09351385960639, 9.133675164369622, 11.582891216705077, 8.723351600650458, 105.43897774885934, 7.685543814497506, 18.694591026455452, 6.23766366623074, 3.836913065804172, 3.957925147325811, 13.538086281640394, 8.925927372676153, 2.905134947020156, 3.209000521458017, 13.650324712528183, 9.86690094367193, 3.08883774636871, 5.890993831261823, 8.660312930847923, 4.938391162618477, 6.415583599348569, 5.636913171349102, 2.509405960847327, 8.55688352483981, 65.59629859254859, 45.1712755606966, 26.7594092719263, 29.99359388242476, 21.478960143433035, 31.29311496054032, 26.47861176583009, 25.25220222033775, 14.162310017880671, 23.562387405184335, 34.168388888888884, 16.414475579975576, 8.313718501917553, 6.550845149514249, 4.509761515019143, 4.674680247391563, 6.598116862253529, 3.9399563703340457, 5.3907106182208695, 3.9974142930785472, 4.1032337008270074, 6.126613109844841, 5.8235350232229095, 7.181755498369342, 2.975146625667237, 2.858163293082283, 3.376312012040909, 4.11582602398831, 5.007200144005678, 4.028148999639287, 7.69831816471823, 4.463750593856435, 8.93140740306333, 9.693918422336676, 5.786384842403431, 7.209354377973697, 5.8887744737627745, 5.55897534166029, 7.692414486558977, 6.035630205049436, 5.881257053159297, 6.654982699530582, 5.988869460595428, 4.745576207288034, 7.139570048065143, 3.8806478612166067, 8.905763070598063, 6.613441026907413, 3.9671198305548248, 3.4886645833529766, 5.894211877513023, 5.385544389600286, 7.6341427044931365, 3.770792839854611, 5.456038405414879, 2.896654852623421, 7.558485110171543, 3.1847842919548763, 5.506039572234628, 7.03408896121926, 7.53548129626534, 7.840482209362435, 3.0246466521748294, 2.9286503210298855, 4.765061979675288, 5.195819284633508, 5.726880631816228, 5.782465530357463, 5.485451076122314, 5.856753802233605, 11.719742748559806, 20.565723079194566, 13.019706604102286, 12.89763097609846, 18.73223539764828, 9.592588672359991, 13.317776231504192, 9.228849191243395, 12.792765859379543, 7.354383220980392, 13.724661468010776, 7.688726883117986, 6.445972113019971, 5.528494347976686, 5.15159221819517, 4.714324892257247, 5.537632355150303, 6.3627423046646445, 5.283630883143509, 4.693764981682129, 3.767047504169634, 9.815961177790962, 4.4349043854652175, 5.2923036326440736, 6.206994875695077, 6.138729711120452, 9.463097068150923, 63.147407658117345, 51.75194551824196, 31.305020417962652, 25.889171608776728, 20.387565232247244, 18.396637581460414, 18.06294330294395, 17.639294670578405, 15.030914529210786, 12.839487235040522, 5.122520174053598, 9.120066469619646, 7.756637366878388, 2.920058413017387, 4.0204099919474965, 3.5168616273067808, 6.301430315342678, 4.345328158842359, 5.5606627148774015, 3.6179910886810696, 6.490681111609653, 3.223808383807294, 4.408343066141795, 6.289771258721659, 3.4997841945274297, 5.833899189331698, 3.9587463715446387, 6.348264006548061, 8.01876009014398, 6.566249723390663, 6.648257767050109, 5.7346470003274375, 13.402895443372069, 6.475017800797758, 5.709719420296352, 9.172667675432642, 6.006982746176722, 5.2617576989168695, 6.372870309435416, 3.857820236351577, 8.626940252845849, 3.615439767506673, 11.326974290246724, 6.6517275802542795, 5.585692922100986, 5.112723630420647, 3.9727104498310117, 3.312843363605491, 3.914000131163669, 8.49665353471136, 6.205731801878007, 5.7639196843597, 4.922918730209383, 3.982571381846088, 2.652402327464705, 4.291530874713375, 3.9430150876192145, 3.63441564903785, 6.460519228990931, 6.022353291942935, 7.1280741952144755, 6.642235054064045, 13.876405169862354, 10.010568312413849, 6.399622483565059, 7.852948062932407, 6.722046142226183, 5.811130444632723, 7.520565820810632, 7.522686613188769, 5.361784053199052, 3.780594608931028, 3.1199739883089985, 4.136873120006339, 3.7214795382927854, 6.42142261211906, 4.44185927056367, 2.475446271619862, 5.20505980585794, 6.108330310661445, 2.856313276254537, 4.116400618892939, 3.124830225267732, 3.7433273774514375, 3.922887704507467, 2.7189668275475234, 6.32574632529927, 13.279915562487139, 12.689222256613176, 12.189794301811233, 10.573993030327685, 9.651933207441948, 9.239088990266492, 11.437580729370602, 10.421528078176857, 8.988715046502058, 9.473706355432466, 6.922654121989622, 2.8179740517789558, 6.747695595428339, 6.8773102115344065, 6.350084953614567, 5.5750279958268765, 4.624249245571157, 8.13193136694382, 12.262069403856968, 7.312874244406904, 4.642676939402344, 4.17990798123063, 6.191703287423638, 6.0375027789194045, 5.13206858624253, 6.042151626819218, 6.528752776295732, 3.431089795568427, 6.522593695577462, 7.436660912213211, 11.087070132160331, 3.3923765770991867, 5.206933957493609, 5.77744769017293, 8.59819436239463, 20.065769800832257, 5.114565759236207, 5.652602799817252, 4.8685355563997925, 8.997350877942093, 10.227374043704884, 3.5048802695190577, 4.002187417290921, 7.214090647785635, 6.007761394076181, 3.8689383758046105, 6.342278025233294, 3.677677824489923, 4.422300043191624, 4.686969911764447, 7.426254938558071, 6.1268859312864885, 2.5893869653648194, 8.543663855360956, 4.696042927202349, 5.645863843224525, 4.106063219803384, 6.345706857517239, 9.405164527215888, 17.35317821392478, 5.884000888033711, 8.358732357864064, 8.119352231330177, 5.891528803152055, 5.2228185373323015, 5.515461051395692, 6.05603906706119, 4.447837279915181, 7.8367134150597595, 10.179510995031329, 4.164732606836684, 3.866424663674745, 9.380893560428603, 4.77087762872395, 13.577861144024556, 10.987222607774248, 11.506802648894695, 6.03636592566042, 5.436830135019976, 4.326259684693315, 4.0360333044886385, 4.038670477453931, 4.3449914358627675, 6.71954356052535, 9.986923748239201, 9.31302486273194, 9.087893862389112, 8.739704216735612, 7.931790202083269, 7.702600237553508, 7.212908604239968, 6.8253622891617445, 6.7703189900551175, 19.336024758020283, 9.185927397276933, 5.126580593236609, 6.950406949910937, 6.838592411035416, 4.457853708245047, 8.135745960464261, 3.2131823401520494, 3.742057596442163, 23.133534161349214, 4.242171992213019, 5.010516970491223, 5.4638627655871845, 7.156425338384343, 3.051152284877625, 3.6728527448681296, 5.140216044769097, 4.514434118543747, 4.245851915719255, 4.468980917466853, 3.8255706807345136, 6.869059825571241, 4.742900900741417, 3.784563012508429, 5.1020803734608515, 10.175801019335898, 19.28042844773348, 5.085840058151821, 9.653682060468165, 4.118259029398167, 4.127109797144312, 4.6193368150873235, 3.8076513238107315, 5.678948733495328, 3.2720415070552513, 6.13970048545985, 17.566637505615052, 3.842120861675922, 3.708769140838446, 4.601735995527565, 4.417712024279313, 6.116829060720162, 3.6474954124094143, 6.403852607427473, 5.014152573959918, 2.881078551478744, 4.772362279567923, 4.707727276777644, 14.594557832231114, 4.911038084825771, 3.42781181209089, 10.612794656908594, 6.5958129269864, 4.793348697507884, 4.482394131233041, 4.482164239671581, 4.157519488032948, 4.445051872887943, 3.308671410106697, 4.4834830493642395, 6.685499258993907, 5.855239620081325, 3.1983556783974683, 5.214456600040292, 7.281206433003557, 7.256338533750003, 7.034336800011758, 5.400234199022171, 6.749067060656619, 5.548087784166506, 7.375458056224524, 6.7984684321277395, 14.201960082236019, 8.291791969006626, 5.0537070210216575, 4.047447612564025, 4.213508512404937, 5.814550599362836, 4.953878359512652, 6.095298333853698, 7.749557553994902, 6.262526992360585, 3.6112023154376893, 5.451172661983944, 7.871113201431831, 2.9738413420420393, 4.202281705791089, 4.56063340947782, 4.6272987843354905, 5.392154388076517, 4.002212397041936, 6.182777950717586, 3.574940640041793, 4.170440755710284, 3.601676812853155, 4.679979173207172, 5.307561801406243, 4.740745708354524, 4.789741138386715, 7.647278412111451, 7.035805657654447, 6.5657065764962095, 15.17516389547936, 10.158107234920726, 12.873461042581216, 3.113457484046509, 4.832425064282578, 3.1284703461245438, 5.018541633853422, 5.071679970746225, 2.8157493427994886, 4.518160306613784, 4.938464446806456, 5.78288329670791, 2.7885089129551703, 3.273081933714461, 6.473460500040957, 6.2200771391539265, 4.549140351766772, 5.038343528195537, 4.620635521963625, 4.809877295138848, 5.602144808338264, 7.426540172528962, 5.453197714083935, 4.683444404873241, 6.972530429332636, 6.834983824076431, 7.770332331731454, 4.861213306528447, 3.9470869183245587, 5.3654545924468975, 4.981783979205712, 5.301049434323663, 5.197888942614711, 8.712366686418155, 4.783125616976536, 7.151453397195928, 4.34063856960155, 3.8208746547169126, 5.221177248176877, 2.4252227576233745, 3.9430320407861963, 9.67533592908899, 5.511339688788073, 4.940847699265456, 4.806857990478548, 5.7133013652128986, 4.795717130859595, 6.4076991103488306, 6.85502757994844, 5.243668446541054, 4.689910208127075, 3.7581302221239707, 7.225048895317539, 6.609980632796536, 5.169833782831944, 4.444695535271056, 2.8430703267386086, 3.96607835690546, 5.324061356436578, 3.6606465800555688, 4.71199017310331, 10.52823861998365, 4.433875564885519, 8.55416461532721, 4.583000783854516, 4.863345228828277, 6.418252821994697, 4.868570210192568, 5.377412549469293, 5.6955980646253375, 5.333161848991092, 5.189138470902054, 5.140467622555452, 6.0871221720867235, 4.027836101019109, 4.737273898468768, 3.3452292433654454, 7.204482285316325, 4.985824185853765, 4.57512180500306, 4.607917157771553, 6.763673295820308, 7.027619124675167, 2.7659954142943457, 8.719961977039556, 8.85144452722873, 7.4360574916085, 4.6784263150705625, 4.575680402140837, 4.255246558652674, 16.426367178235903, 6.214680770532467, 5.367732492842924, 4.3565044881812645, 5.846190959858653, 6.809559734324904, 4.170828537172137, 2.745043438882354, 5.184009903581024, 5.517870393692985, 4.763041445912888, 2.9804060648355613, 4.6097207155129185, 5.051470402072585, 5.902104566057211, 7.617624007884502, 8.063845484665283, 5.300915858076559, 2.6426349325717573, 4.147722912193222, 6.407123439041438, 4.377476986067855, 5.697423028691395, 6.283261667671192, 4.975890755072324, 3.9414561764629688, 5.948246307538131, 4.98149426610137, 6.37759939996034, 7.619390847163579, 20.168163744056457, 11.43255782891236, 15.208159772433687, 13.081067055925894, 19.63740090703556, 31.564984146529795, 30.216584065934065, 24.17820919080919, 18.383404631693953, 18.03495307123055, 16.260733367071527, 21.937578683698778, 21.140074261180377, 11.928637036877861, 16.569997929519435, 14.247427336496326, 12.773576885513418, 16.20421181399908, 9.69982398540339, 10.600582590318652, 22.6489338582336, 8.338914826652692, 12.531860954035878, 9.535330904505194, 8.933053524311552, 8.640478228420864, 9.661996971064477, 12.034830246638535, 18.55989615116582, 6.768265493339383, 7.76037183782281, 9.331373096980409, 12.602107528640135, 6.9006672920305885, 13.828561853734975, 8.640317282478797, 10.161934463189404, 10.594830320382142, 5.915545313739563, 8.831794209345588, 8.123424334299642, 8.187439386989112, 6.984680310512314, 7.137672062673281, 16.655962751000946, 5.727217791116435, 7.219590819430096, 7.546229323256451, 6.377862530988708, 9.187991206991164, 6.3557135330932475, 4.246910789027429, 5.94230067429196, 5.484866487177031, 7.319691952219823, 5.108692004941527, 4.786472658568681, 4.6705955247178625, 7.963223701219284, 4.54973439989593, 5.918878750156671, 6.5755073344345885, 11.682670831303039, 4.133874061570352, 15.11573496832621, 6.388913627030861, 5.541459267518554, 8.820504247077789, 7.962719300134537, 3.3597795223050624, 4.805832690132095, 4.263006417491951, 5.1393644950538215, 6.72916899021267, 7.025590356840285, 5.710848478176744, 5.577838234504767, 5.918249956796762, 3.5538609964155095, 8.455150921114436, 5.82841274738491, 5.32453445806312, 4.445576914750846, 6.6588139180082315, 8.607670590815077, 3.7725416286910094, 4.22253088698998, 9.231089465961091, 4.645221792119655, 8.602743005097722, 3.0374772109413235, 4.769393664658861, 4.616415050856189, 7.137028087902237, 17.119824222699414, 3.0484072671386455, 4.278361463986136, 6.1569962040914055, 10.34502189451462, 4.3224405319942045, 6.299348121938767, 7.607050652978955, 4.900734591233854, 3.490408049697689, 3.7464253282731543, 5.10713872218751, 5.579778220054945, 3.6147395224600105, 5.927439128004296, 3.2333291481589845, 4.007316327499, 6.095259741830085, 15.527567892399322, 15.408314269943252, 7.690693258462402, 4.518835455930005, 7.673726726247624, 6.376432221390294, 5.361208991302337, 16.90386479587366, 4.319417294915404, 7.7063668928668925, 3.1732610809843003, 5.310310076667225, 15.397405383718555, 3.0010833897626443, 3.3352491861233577, 7.106797915792497, 4.9022138427050255, 5.352843321484433, 2.309818818224623, 5.913190032712463, 4.781475373566092, 5.364257726201822, 6.013709136691177, 31.861224887804575, 5.719920290948048, 4.96635687793804, 146.55483991228076, 2.9104254708367647, 9.232656437909338, 6.509248896547563, 24.396937226929612, 91.02777564102566, 49.60389148629147, 41.30398412698413, 29.56774708946885, 37.19321568137746, 29.151186507936504, 25.32500372153164, 20.359498001997995, 18.459551185894203, 7.831447113793582, 3.9772539023256464, 6.683498342013542, 4.629299686771629, 3.208798675335499, 4.486631214916645, 6.1172691433152435, 6.451908978386355, 10.211020399166921, 3.087012013982221, 12.039088095211143, 5.580503218759831, 5.31191905772902, 6.148341229955841, 2.6442564012782883, 7.702892445951704, 15.274055791594025, 94.96424381821883, 55.33454538680271, 47.1099571783299, 34.22502445728409, 27.857165612375056, 32.05690666216295, 21.700030628229708, 22.88138249232821, 21.200990328199897, 22.16898936777075, 5.336487004967807, 3.5080881087738285, 7.516488535009505, 4.141763034923584, 4.7411215013645425, 4.816723355174588, 12.766711377166276, 5.009927043853343, 5.5896231199201365, 4.308123825113384, 3.2727823817521013, 5.5840900900065895, 3.73638269079631, 6.579826681509673, 4.57750874805434, 4.600161982072774, 6.3250277331165, 3.9259812138427774, 2.421717341631255, 6.058155151488854, 5.547273600832654, 8.452676151636409, 8.229592572010873, 4.21057352887842, 4.9205896104314855, 7.235611282332392, 9.534199173017074, 5.77507644764563, 7.902325882877993, 5.031650620087396, 10.116817359851959, 5.13865289605244, 4.482589178783216, 6.74862767820366, 6.868326628565488, 4.217480174554903, 8.65177482582001, 4.399340915966706, 4.007728390027964, 4.293457439301264, 9.670760164241392, 4.447656121474765, 7.251140207603364, 3.7417440258693784, 6.8489751674057535, 5.810653235097118, 6.13491801368715, 5.68070655609575, 5.389818013126485, 4.309057957583634, 4.1822816898545145, 4.775953244116566, 4.7855454736331815, 4.824003832931833, 4.131708137352557, 4.738736104906965, 3.5886208795380448, 3.552554229496297, 4.751040163496134, 4.367130535035612, 6.493306266899105, 3.987927564635199, 9.176635519204336, 11.744045832804236, 4.040457292265818, 4.462962390586379, 5.072672542720392, 3.2320282245425576, 5.871175692500054, 6.195089385030226, 5.637263515439778, 12.721285758900231, 3.826990868024686, 5.284033354067356, 14.415846971025765, 19.87760407378666, 14.323254171910639, 4.418369929774269, 16.58681235542998, 21.946309733984187, 9.952073945048323, 7.023847816159797, 19.010746612038233, 12.006340175848385, 8.73214559765703, 20.773118732993893, 20.20366587538976, 5.319522634712802, 6.745288271502832, 13.091783957381367, 16.303579296994382, 12.373355390007474, 6.844234387915448, 10.369212480068589, 10.722977017297248, 6.346598174947965, 19.477711975889598, 5.619040900867256, 8.45279507412201, 4.916549687045762, 10.691131580040203, 11.293355382297095, 4.926554493925674, 6.612235786362791, 8.046008127575812, 16.001405476351064, 8.206979156139417, 7.069627518772315, 9.142829896330673, 6.117620545511053, 4.798688017712018, 6.004928427337367, 3.6856873290467185, 2.623942638768121, 5.5508196509399435, 4.291470493197671, 5.513297580365848, 10.665102546711802, 5.257747928515539, 8.160766716635331, 6.614117531254278, 6.029447538252433, 6.440243906883823, 5.583092210770482, 8.876422955380233, 13.655925161009554, 5.344461901811269, 5.641354700114865, 5.195796810479364, 3.7865441156433284, 16.15842695469533, 5.736658547436555, 5.243724547306737, 4.965818268183269, 14.226573965070017, 7.917791787898499, 4.273475976066246, 5.133936135835561, 8.56771343737367, 3.6932425746124036, 6.120541660540888, 4.848454584391094, 5.027263112835895, 6.927198633178082, 6.932394640052279, 13.945727562759153, 3.8699846320368683, 7.445268720195478, 6.154884993775442, 3.0527844366840666, 4.450797544798408, 10.459153640988362, 16.00715549503947, 12.85192233111833, 12.799605876965161, 21.77527043768159, 11.026631173497895, 11.988868306501287, 10.436043138182418, 9.225031891283596, 10.725233731262167, 8.403702321815452, 3.677170772646247, 3.1160331874190152, 5.587723113285615, 4.455776834517997, 5.584014667453222, 2.7137627913224374, 5.167441596868191, 3.7323580245051593, 4.938402702446046, 4.764517586989443, 6.769518335241176, 4.254285649460282, 8.001322428125683, 5.475327765140489, 5.075152955117564, 3.0824386960707875, 6.116401778809647, 15.871206099975302, 14.89317639874538, 13.912276706910873, 12.12309437374283, 13.183229223268095, 13.068763885784694, 14.10163947132634, 10.583719963944866, 10.684951047648129, 8.94962289937884, 3.719158334330767, 4.732890981451403, 5.040149174087855, 8.462874952003814, 4.50788138218951, 6.043432398124201, 5.976727363531484, 4.326476274863419, 6.009294284104345, 6.058756023273973, 3.687024617503836, 3.2218866038913894, 10.682980927862873, 4.406492845482829, 8.37398249921848, 6.6413217379223966, 9.981106116464996, 4.740805447863915, 5.006617802775013, 10.862354543028372, 5.868454377805651, 5.139174385879389, 3.2010337813484595, 5.037772931409193, 5.422025418261907, 4.608487154898964, 5.398030000071301, 4.243030210484529, 9.92678830976884, 6.694717722660909, 7.540041767033165, 10.564511237516387, 4.163638952798645, 5.471905914136006, 4.602791582386671, 22.541900633534123, 5.822177448954018, 5.661667117360094, 7.071945339747782, 6.255243510129109, 6.1202506525043185, 13.201479705624394, 3.7460436523038134, 5.213241672748952, 3.931574897782833, 9.911802384275775, 7.4749656778354545, 4.710848569346462, 5.126673200124792, 6.074908847986015, 6.871747726769444, 5.911372228638751, 4.248931661402385, 4.434461198619443, 4.629064241065276, 4.24993677540111, 4.739304412011249, 3.7320466452763204, 3.5130964469519466, 6.574894642036742, 5.181172761172434, 7.085952402571161, 4.023853751702331, 4.114860930056751, 8.250003643977776, 3.5320536344673665, 4.834246875927291, 3.7433057467420956, 4.091882167664185, 5.175898108970088, 4.0483250240533675, 4.851104737200579, 4.930103650549059, 3.6613303987006574, 3.9304708425907147, 4.527029627341168, 8.578225254961108, 3.7463854967280303, 3.95204065249476, 12.689694044947636, 7.824828497433527, 7.026183951770743, 4.114765453940923, 3.9236524059134377, 4.600463098359775, 6.638858786689894, 22.08937408235218, 5.330067192757221, 3.173499286718809, 6.125570767558455, 3.162013335074364, 4.337675774139437, 5.437168510243414, 3.912624127453287, 3.8487994410243385, 5.374277188774073, 3.1098273475102296, 3.3705573836834906, 5.308550861063871, 3.8000914463134836, 9.08501023990629, 5.970101474268824, 4.9569185974148775, 4.193256969797352, 4.540333742872724, 11.067705332361784, 2.958408280890851, 7.041446155143304, 5.115739865826249, 3.423616806927082, 15.603722566068143, 7.567372429844765, 13.352596820418144, 6.837890001233408, 10.576957073764978, 29.522097260941504, 4.627316725971161, 15.350058529952214, 9.69859413543856, 11.791180863254386, 13.92620007624339, 7.025923295177609, 7.411671524396986, 9.56274545576825, 7.456719208957914, 5.658688081233949, 7.584562504560932, 7.584591866423481, 23.21913049670807, 5.236599609054725, 16.20989492313212, 6.140098772672819, 12.318897751481678, 17.010509647333674, 6.232669141198142, 8.58895372629958, 12.313705483989397, 10.890542055767309, 10.125725699172317, 10.456496706724579, 5.416017385590193, 6.0434744686145745, 5.73373248583163, 6.983799764064223, 8.06596203421258, 19.35505777779958, 7.4257140595732185, 3.4873573079607247, 5.453388170828636, 4.633877470301144, 7.636528201054372, 4.90889959510778, 4.1235751072034255, 4.550986896090254, 4.057196103829819, 5.902530165464055, 5.248563237090733, 4.643497195582149, 7.592435625194776, 4.720944097027425, 6.1419389210018736, 4.220838213018245, 13.522167797677152, 5.220281964674694, 7.251076909162306, 11.958064332077166, 6.611808576443242, 6.676130235072342, 4.658118028216461, 3.9569944131887373, 4.761592168548636, 11.073446461267965, 21.548979444847085, 16.88196482342135, 16.975521177336848, 15.584980504567788, 12.440772449968199, 12.743668177448468, 11.735282221198755, 10.778273788529427, 13.833544946532033, 6.946902456255778, 6.70790872588446, 6.2392553400032345, 3.8164779581484223, 12.221828943850749, 3.3687744212011475, 6.001196932393433, 3.515790679039342, 3.913573166010381, 5.045538878755954, 5.7657640588899755, 4.854092185310092, 3.2881012033768866, 5.411440658603745, 7.2877769177354255, 4.30116733995217, 3.523288332347073, 4.924005496040026, 4.951470855243788, 4.605405799816427, 3.3766139274894273, 5.530597014716992, 2.865253571796202, 4.349583312266551, 4.485526331887968, 11.231272944701585, 4.894484867472377, 4.104827855712263, 4.79137492102186, 4.245953184656003, 4.951746027977676, 4.677117832490003, 5.263541270267534, 4.6685900289521856, 4.61153197632587, 9.704506364793268, 6.872931111340483, 16.26833730679325, 4.062065657306753, 11.298429510312598, 4.31536198153941, 8.648665050853614, 4.0794116280000665, 2.347442346318332, 8.3142667037218, 4.564832600078593, 3.3632819461273793, 7.138854602162559, 3.3395135684098287, 8.31323181836343, 5.186671165298115, 5.124833632051047, 4.885133020659059, 3.650684025397651, 3.2117462251526043, 5.013969307619762, 4.99734183265108, 4.670053574920417, 3.7099493557716654, 3.3510835958450964, 4.172743889208055, 3.4615172140745054, 5.407407246194802, 2.875133111508482, 4.45855840173276, 3.8610102071521313, 3.954886309791079, 7.10788241614179, 3.3512240104657782, 3.8017936080111707, 4.12642187880362, 6.085830792894219, 3.983350071112383, 17.731340569654225, 16.712606668192763, 17.836088680154067, 14.426940981351553, 12.903176372450718, 11.65399624162719, 10.576920725650973, 10.646003024621605, 11.402686363145765, 9.290108236619472, 4.4842582801102155, 4.595513614650399, 5.894899602464803, 5.928845356864326, 2.848549792217959, 5.397069774258763, 3.932822684530047, 4.699838244626391, 4.961690809287102, 5.490080972474923, 3.772012865185792, 3.20101672739122, 3.7294706965671907, 3.6122125393148132, 3.7077058045685467, 4.032505897296468, 3.2862570409428673, 3.6843836720215575, 3.8070714547177493, 6.011985072266559, 2.828112589684883, 5.4173490466949055, 4.1617661351484685, 5.038327718487502, 4.013574668549155, 8.432615588111608, 7.2558140329455165, 12.487783287466808, 3.756279704524362, 3.333703059274491, 3.926845009520749, 5.197508935313614, 5.053503795628775, 3.2841469206949045, 5.460443757851017, 3.4407278377547414, 4.715404185952636, 11.131576753679271, 2.676846951742252, 8.918337661833649, 3.8818402565733394, 5.06628401528002, 6.960042773127267, 4.020413929774526, 4.207045357682639, 4.448552793424699, 2.994338921908493, 3.0485801714684158, 11.263787045992224, 4.87289611609138, 4.796963032652308, 3.348701731322003, 7.781388431977231, 3.9323538363991424, 8.882226347604234, 4.346673071626512, 3.598927031085841, 10.056853855506247, 8.222680324331698, 4.013808331532398, 3.9631899320074635, 3.1775098698438082, 3.5609668498081066, 10.687673894284256, 6.45764599065791, 5.1274485512937975, 5.90038902938917, 11.78937792535148, 5.9268326205062545, 7.447662395664225, 7.9102958741577645, 5.518926067599598, 6.541498581265923, 4.553964818300764, 6.6754274699556, 9.003616309134161, 6.7178408530567095, 9.837538062822135, 4.090982030885929, 6.136462819809283, 4.04722908778265, 9.184775869999003, 12.128271923632585, 5.517767528866489, 8.602332029033231, 4.309927802828802, 2.7669096670618267, 6.113013586535868, 10.682544394304266, 5.476269353098022, 4.292390928346008, 4.80154073369176, 8.809356989842783, 8.375953989072492, 5.71510455509906, 8.783284523423122, 6.286133206541386, 9.301571359772227, 9.820668256237008, 12.908055285310343, 6.195728982086001, 4.057383997316021, 8.181087240575241, 10.52806168099759, 5.590587187947251, 8.118344348299505, 5.829746640177202, 5.587793044187959, 12.341618773943518, 4.963659146250606, 5.226017577386982, 7.067091683797403, 10.23538630474534, 7.815804697854296, 10.388348999212283, 9.322181813638917, 7.494591595733548, 5.5348879035984995, 6.480854976766361, 6.270189846761088, 5.124710125946366, 5.075988942637873, 4.4614747418077725, 9.626182172521592, 2.807229655868284, 3.4471325084431856, 4.312942979912615, 4.098032489752092, 4.007850283003421, 2.5757054616336434, 7.1101325368907125, 3.8266079323341664, 3.6581610887006155, 3.9653452821761372, 6.472250851957749, 5.956174244685849, 2.6692875494110915, 21.09444599436496, 9.921104225410849, 16.108722138140507, 9.50428220765853, 10.276943124988117, 22.769185910256486, 8.887566053818295, 7.206551779675692, 7.190932476412392, 7.230671497589701, 22.333146776010448, 4.099891160732316, 4.7462021562331165, 4.635602073194205, 5.825122453595383, 4.100663501472116, 10.820663134360736, 11.736001545174735, 3.4189365900448205, 3.509291334067783, 4.694323564538365, 4.015833894146136, 3.989250142222992, 5.2283183358291545, 3.7719341730017026, 4.672827351770443, 5.593851326239573, 4.444223170406584, 3.8842293301909243, 6.673278499347454, 7.913868659452715, 3.3442312919456803, 4.890365957598562, 3.7678930138215403, 3.619994761178696, 6.052255795167339, 3.269961177226805, 4.623323028383875, 8.142514621883127, 21.731769749333168, 4.80077354677642, 6.580527864738228, 4.262290315309012, 5.577833778996793, 9.004247355128902, 6.56350854350297, 7.046180114638806, 10.126938059386216, 7.2856871612831995, 3.573853794004729, 4.674145178241749, 6.451073516453403, 5.682976696287693, 4.040143317662511, 3.9361798347377843, 5.361468406876896, 4.831492135177023, 7.643264886069756, 6.246157688074398, 3.331890306652224, 7.106157513527549, 6.331875292835417, 5.209997076088932, 4.443400897227835, 13.366032321640265, 3.3858202140150127, 5.870431833169372, 5.718708433413832, 2.874043810103459, 4.003051115449028, 7.8348220361843195, 8.978133049412195, 10.203229174933325, 10.123049437992629, 6.284540851531956, 6.863785501708004, 7.9082339363368686, 5.474455666322577, 6.253731727903682, 7.739526183700254, 12.780782284624975, 4.778030067184727, 4.86067189791058, 3.2402907560821452, 3.981773707459536, 5.165474121350659, 2.8342288664470354, 3.152780454123743, 20.40037197088954, 5.281747016988943, 6.589912741251522, 7.546099930367288, 5.213064933366107, 4.534533003497214, 6.109988902636805, 6.149287851248538, 4.338673217232784, 17.102662845584533, 9.052950140932403, 19.01002179543948, 8.771921007196985, 11.52942448441011, 9.826402681967712, 14.648313039266588, 7.575916294953363, 7.827650014309091, 7.000804008268017, 8.661713349646408, 4.2325112949092984, 5.4819703311156225, 7.773186943875151, 6.628930604676233, 3.50172290181508, 3.4272395336800114, 2.702458749744782, 4.023765458069583, 2.8316136928592552, 3.352952921714224, 4.051498796499127, 4.68688522519979, 7.24746344966927, 3.60292380098483, 5.287458548280604, 9.81876028820829, 7.708571513012477, 3.9961497564229918, 4.9818166602566, 4.0462287027727, 2.9385542864306315, 6.391902268156559, 6.109019794322099, 3.9558019366963757, 8.921091872505839, 7.363435049732751, 4.040484032599768, 14.304334713776791, 9.669750353177538, 3.778980967069963, 3.226344064832275, 5.050885996375801, 4.4134033059831435, 5.083277056902859, 3.6362704018764007, 5.36098431711142, 4.546504384441457, 4.869523740949126, 7.962578119331306, 2.5744811624724875, 4.350641889997813, 4.0757629942487545, 5.397319771982204, 5.114903019558934, 7.064689498807153, 4.353400483934482, 5.280203155133984, 6.56059521069841, 3.69513926220116, 9.65083013703337, 3.565471960909514, 3.3008978286602297, 3.357044572970152, 4.359749461457035, 7.7744056002064434, 4.01203148093061, 4.405515476117301, 3.601189281428917, 4.057604010234479, 5.142290273504133, 8.59845770892335, 3.1679925726251104, 4.32448400286811, 3.5297422062873047, 3.992135145010265, 3.8644145556183425, 5.7995036542993965, 20.37572284605021, 4.425913359525032, 2.384424072838074, 4.028813881601182, 4.892361343246459, 8.541731435020536, 4.1492979117207875, 5.156127776847885, 3.4896915479674826, 3.520506786285593, 5.980289897150819, 4.153067195475636, 4.968502373125841, 4.768990476959189, 2.644332411004585, 5.877697784690322, 3.6251140121560037, 4.806435587452959, 5.013660371008031, 3.5717947159320054, 7.134751689723671, 3.587044051045628, 3.869002845075023, 4.670614821948942, 4.459059057464788, 2.750238654639675, 7.875537447314384, 4.087673712378427, 4.305791478436394, 3.411851661128887, 24.625275351208977, 8.786894325255208, 3.7653124443973067, 7.19666735270319, 5.191519193339748, 3.9875084051508654, 4.438383474569945, 5.501833945397028, 7.0764904220649445, 2.822391610758884, 6.8923006150271195, 7.574647929126608, 10.441314569500799, 2.5177284309572543, 21.74431280040793, 8.795500567203034, 6.618090181790036, 5.606793586731364, 6.091402867782813, 4.345983431966464, 3.7706871806367452, 6.980369445184155, 3.869239289174264, 10.275501681718984, 5.330619919357645, 16.80718736264187, 16.746655841651684, 5.029643045844561, 5.318637812417745, 2.643046064543513, 5.35459594400107, 7.852285316252416, 5.0527123453798115, 8.92627419147951, 4.007571046206722, 4.179491545246707, 3.2708469071665482, 3.7804891987434894, 5.398854031694837, 4.933085903582911, 6.293038962507073, 10.158056414320914, 4.614311507542295, 5.972431251918587, 5.435471605836937, 3.1485378118854683, 3.311816321433669, 18.163590907156625, 10.994420299752697, 4.294033938435281, 18.711505859579095, 22.447096448294545, 7.212616445977151, 7.122474176721901, 12.338161045851686, 12.93015554270464, 3.5787349259832304, 3.0543451140160895, 6.14614607709531, 16.07650774629747, 3.9067588012388637, 7.566150643880425, 8.870129982315753, 4.394105919168084, 5.224770652420143, 11.52077750886984, 3.191361136509951, 3.649744965456559, 12.194185552189778, 3.2090557689897192, 12.324233005644691, 8.281114122695447, 3.747541713334515, 3.8705990187448305, 7.740664718617739, 4.217793285389954, 4.912416919959865, 5.875349264269433, 6.780646444751703, 7.454538578037667, 4.378372302549647, 5.261915319763992, 12.167328042055983, 5.559959375965804, 3.6923683207683733, 7.328703556118778, 4.920404449018786, 4.463436985870618, 4.842641584464821, 2.686004235089077, 11.58497225897152, 5.190289835247763, 9.64980977837769, 5.0113493540727045, 10.67657908923699, 3.826801484738366, 7.1600213756885545, 4.111051377099103, 5.486935901865073, 21.490289221997045, 3.4754728714950525, 4.784595070393816, 4.370447407022614, 3.2724423400098837, 7.085131309832237, 13.008669122058093, 3.8252971124821102, 5.3766985593164405, 3.589944459209124, 6.405155962953442, 3.800967392449986, 7.0445139796486425, 4.3132477408158065, 4.0309810102279675, 5.591203907653842, 3.408470817264228, 3.115564332893876, 4.821265449786647, 6.689649062178031, 2.5840983483861484, 8.847829546583482, 4.088798335707672, 5.1876068812044815, 4.521163708819568, 8.544335255948896, 3.606824392087075, 5.059398925811546, 6.141274424506601, 5.974262969504761, 8.32992939359385, 5.090360602216307, 6.762143018390245, 8.861126419690164, 6.953693235741272, 5.463278559079072, 6.845057597550894, 6.586495261029365, 4.591413340782024, 3.919567079119882, 4.225279575384912, 4.179781086547756, 4.743080293910165, 5.010251223929384, 3.8940056831722223, 6.252980426909254, 4.753482051128411, 2.7944352989756855, 3.816998715968787, 9.477022452060782, 6.056300827712757, 4.536518896490324, 7.981578866777504, 10.476736261399498, 7.848442922731945, 4.519526571281615, 3.2247094444155455, 7.284574714417116, 5.1433238285410345, 5.373977415284375, 4.538148425982288, 6.611250484891668, 9.007524959857431, 15.622671920671921, 14.646111509830346, 7.643614586164337, 7.758672022922881, 4.733104487669711, 4.748804455021578, 5.231860914190055, 5.8741228069968425, 7.118839712056925, 4.069745364291165, 5.536292210460878, 9.94486339041452, 3.812932099987262, 14.248861048606301, 6.270198634398307, 3.7307638831155727, 4.1173401564607675, 4.405256635018837, 3.7338226057141917, 4.805193280113106, 6.385604736296115, 7.683631911180864, 4.681453947468968, 5.369400245366145, 4.411213807553868, 2.5013999509951645, 4.527480379794574, 7.406028494206587, 5.931795867461378, 4.157109084012133, 5.216344220364696, 7.69799963645802, 6.2114138498886415, 7.272926023472512, 3.9941905548526186, 5.7307249690270625, 4.264526749656802, 11.267952922019854, 4.497230527316761, 7.300905630365926, 7.82254261978912, 8.803026367820104, 6.855419330260412, 6.0196996248690855, 5.804647265838481, 2.5574103662087135, 4.959670525881059, 2.994454803430579, 3.5464055270210575, 4.928815943751715, 4.121801581116372, 8.026309005098634, 5.247702623260371, 2.7467656668977365, 5.786328850763656, 5.076844469655679, 5.60029613230467, 6.862062985379579, 7.324355954680498, 6.848521022081459, 6.79954233753212, 4.081889359759071, 4.3117327800411305, 6.137335283712846, 6.405844302935758, 4.202525147115527, 6.166786652568869, 4.146184597555263, 4.618795205178939, 5.92476603565639, 2.891310946121879, 8.650490239713006, 4.4730992112724355, 3.1258589751371684, 6.065393787169515, 3.981435179834243, 4.807437147944368, 4.427245658771087, 4.161020485118998, 4.21318428642252, 2.9850707424826255, 6.142935918788386, 4.4576159892184535, 8.83310105416919, 4.234785286720113, 5.151003667713847, 3.66539674070353, 4.771755345777772, 5.491483808664606, 3.7681584597671374, 3.703113941349894, 2.83636930709599, 4.341630252385727, 6.284105510650566, 3.4745144482487933, 3.3879555290980408, 3.0648135842882707, 3.245382758979372, 5.61295422362846, 4.270568733093532, 3.351758552209911, 5.472043581658037, 3.7244165038620407, 3.390573638980381, 6.544081853121376, 3.8402313115655566, 3.5547388186958235, 6.100747127872127, 5.866780289386627, 8.138763208958, 6.076762529972635, 7.2049096532636865, 4.308669767472324, 3.3946810121189026, 10.469992110014172, 6.9837253173954945, 4.645868118393884, 3.1187215637464405, 5.198487204846449, 11.14213712360654, 4.009404945475443, 5.674773920662597, 2.4822144794066743, 8.82718902482118, 3.282896505398628, 4.007708024146202, 7.9733193551944614, 6.460288549432972, 3.2523935916144007, 7.911955260474551, 4.227578658031086, 4.1164941410156946, 4.111581422571524, 3.8037258804511427, 5.304177858806988, 6.026154733747925, 4.171622983040312, 11.205376498499259, 4.008597382122888, 3.872679406557616, 5.394417909282918, 5.595122040187351, 5.431667418467231, 8.801384104345846, 2.7335476628527813, 5.2198435346569445, 2.970234873542162, 6.4617789644677, 6.700453197882436, 11.016786023723906, 3.6271006474201664, 5.756425719304202, 5.003612362262757, 4.216441558824696, 3.802964274389882, 3.7195149741263718, 3.481027483440326, 4.039501655040489, 3.28008947933217, 5.2956480588817545, 3.844286128548527, 4.9649923167160726, 4.499250543490512, 2.770758449005204, 4.217348268845353, 4.602375120726939, 5.486570086895347, 3.3562650532064606, 6.088514297099174, 2.956358171475586, 4.180425432821159, 4.60881261811456, 3.4815921264950997, 3.181530709431052, 4.7896481828527, 2.8948976110351747, 3.31260160364969, 4.36139398081627, 4.333090462028286, 3.697140072445518, 6.200890723701539, 3.8911484508129117, 2.6639707566170774, 3.7009931589583323, 6.875502894469514, 3.505202971803464, 4.856380086338238, 7.637682803988268, 4.08486461688427, 3.538172926119913, 3.974445590177409, 2.6637639425991217, 4.573391977751682, 7.593572720127368, 2.92162082056442, 2.7167906400832305, 4.910899230090448, 3.7994493574937596, 2.740410887385721, 3.5327925617062577, 2.9096559667113726, 3.1026385845278766, 4.134102771903004, 6.3206917243500165, 5.487914807697035, 8.137884393673675, 3.5315729544029724, 3.6748616418945823, 5.082525163871543, 4.0726284185645545, 2.7112546985557047, 5.205079922108951, 12.654031344891994, 7.8770917952821335, 2.5552050346652084, 3.2658231228743606, 3.2206595999720165, 3.7466919384743536, 4.545634517507811, 5.135923324969202, 3.029885479822321, 4.156320043555282, 2.7256068712084596, 7.632327561602478, 5.524444778811902, 3.3003324209608356, 3.6492404407742676, 6.629277798980862, 12.144929286902007, 7.123746113046962, 6.775532593091474, 6.132311439490024, 5.9325215576943835, 4.7464582718404165, 3.077597629502513, 6.146673215568036, 2.9108389395821552, 4.2805121167201, 11.266074876860449, 2.4948090431318195, 4.131914011671249, 10.531224347447175, 9.533565123151208, 4.437418848809609, 4.6674254073073245, 3.032079526022466, 5.479346650600891, 7.648467524537353, 4.7233137124874265, 6.831916085267647, 4.4702911076654726, 6.960571513810367, 3.712575802233751, 4.891003534430778, 5.0526028842674915, 3.8714408745280853, 5.357052561209916, 4.485825916936287, 9.454046699017285, 8.656556259820691, 2.847811410229246, 4.7686283033934895, 9.048782328473045, 21.96431867257785, 4.653509798257835, 6.036290958777085, 3.5666401371486076, 2.6375387397505192, 9.73102916503574, 6.681376369038257, 4.121170024678062, 6.0089562321417995, 5.041579224387918, 8.588209904789123, 94.76829870129869, 4.685200112852383, 7.866262955661999, 16.55671912693265, 11.338650268247399, 12.431006137399237, 5.039059837085973, 3.8838783152909033, 5.716166443785992, 4.041996143919808, 8.037934757270621, 7.024480395228028, 6.056598081658089, 5.571075838502746, 15.454640259745368, 4.176168509088619, 9.509626494678345, 5.613114563028903, 3.526302039583177, 3.4270822834322385, 4.493415051699832, 8.391864522609987, 5.078957542878558, 5.43774930355706, 4.159684451060332, 3.655314558472071, 4.83864385881008, 6.037772161467409, 8.639154543492419, 6.1150137509020555, 44.20601252622824, 30.171565582810494, 39.38983160920384, 39.10261453905573, 72.60878571428573, 59.81536228099386, 40.65822095010252, 38.62287951814271, 30.103705114330122, 24.058418494903794, 22.866493555002823, 20.179109868437706, 19.39148344392891, 39.07224186427606, 22.690729529486113, 14.796108171073367, 15.649483016740326, 17.365160536746053, 13.15297899497392, 12.782053183961223, 14.659948424563051, 13.376005441809193, 11.001088338434396, 9.34993621455559, 14.142686497691074, 9.170348404298934, 15.035650252006546, 8.570749612554206, 14.758725221845564, 9.843548038383561, 11.610944112537174, 8.738474912691858, 9.537052876849302, 7.8608445373032545, 8.879896656543654, 6.812484295496908, 8.971225838869376, 6.954656009738415, 8.773782217358395, 7.426102619734873, 10.766707301944086, 7.121745844997753, 5.299798583971406, 11.799191797878313, 10.463152500040616, 8.650381592465893, 9.605564037256068, 8.008211003767435, 9.594023337046194, 10.325267205496987, 13.165665423735266, 8.361048279161277, 8.713389983409156, 7.1526651219403155, 2.468887809574799, 8.287210551754919, 7.060888078798421, 9.16604778192848, 3.3251467299164092, 12.943639309187185, 5.219307733880996, 6.3726424912289, 3.8511744901404317, 6.042981176571082, 11.206620731188744, 6.080776025033656, 9.359988190102577, 5.725096989251338, 6.223509299742282, 4.683780748116623, 5.400369198383509, 6.580046049266981, 6.440179265665403, 4.253445080086358, 8.361741863175375, 10.668557725523032, 6.58867978098927, 29.203241241679958, 6.596171040002346, 13.168082935757138, 6.343238109954218, 5.486813373305359, 6.44823115311572, 10.798835616424366, 8.459320603471303, 5.656334615089923, 4.526117164459638, 6.163072129921332, 5.713987731033939, 5.677546515219553, 5.401431552601688, 4.422068273682845, 6.73932815637569, 6.139611616808912, 4.804983831780422, 10.288955959244754, 7.261904435494899, 3.5658557893827503, 10.10472284545959, 5.635895674098167, 7.269804638760167, 5.614953507372918, 5.378822643027163, 5.87922000359906, 5.662236996116468, 6.96630815243412, 9.372536865296377, 5.456055097720541, 5.306873084318993, 5.444552514881686, 6.085165173674724, 4.483476375997588, 5.070161273400807, 3.982576116837548, 5.789891676352513, 4.405204992162402, 3.999375569439563, 6.10104429399185, 9.45541692154307, 3.983146114923972, 5.128810252415604, 9.077339773774856, 6.172972059896755, 7.300914954119133, 3.3249258430960653, 7.095439596847065, 4.594899623718022, 4.649485131919744, 4.325499711128692, 3.9982507656041166, 6.623889594552862, 5.756201914668538, 5.058526565005389, 4.924248425965991, 4.695961868610263, 4.049849776894671, 7.292917553932985, 129.51498599439782, 4.519047937478157, 3.434663942443439, 4.841293058562232, 4.11693748023297, 4.137480321655468, 5.824645599560246, 7.0108436776832574, 6.322214090836037, 3.0896760341205733, 3.4784248041097316, 6.144646866914819, 3.1757706697197903, 7.340563276237152, 7.310907246303368, 3.9236412636639013, 4.276855074597494, 5.6333880930881906, 5.026651704556797, 3.9567035407227418, 4.620034148810427, 3.2433523230538603, 7.332178261028282, 10.405922060074127, 5.858040034452761, 5.640180395323522, 5.1301342008541235, 4.205687036802062, 6.315779439733623, 5.439686775396836, 10.604537232406845, 3.285157370365463, 6.389147376593601, 4.386927780693748, 4.394652037304491, 4.3566122898602435, 9.135663190878091, 5.232190659581933, 11.652524719586802, 5.484278491837244, 3.6980621158891127, 7.838446654919538, 6.636328497481468, 4.540058798284094, 9.073874701420786, 6.063395181532116, 8.741445390853327, 7.819638560470175, 5.690595761054216, 4.226496747415231, 4.643641469341386, 6.368142142902817, 5.24577684186377, 5.324804571010703, 3.0600975368534704, 10.331555963636228, 4.00963065558649, 6.583477969752567, 4.9425252813726726, 6.375623172312577, 6.233908851380532, 7.124290605911116, 4.50186102326282, 3.3996605651193494, 7.085558581994309, 7.792159012137649, 5.338861255059457, 5.040192218220889, 3.1696239481340758, 11.992139041826848, 5.922926039716544, 8.680312458644078, 6.744647280046148, 6.158211027052593, 4.609878940783684, 5.406724534963077, 147.18111111111122, 82.03507894736842, 5.360917268869188, 5.430696122374889, 8.699327990656895, 5.319807650674913, 3.863873422375692, 4.825566653266516, 9.417247430691578, 6.5761242085666, 5.320063842309854, 5.341664704358449, 3.193234443817718, 5.361417521618971, 10.76342008424458, 5.133418938668703, 5.361846724473586, 4.0048026397104275, 7.890902200312426, 7.287193211730818, 3.6453674143302264, 6.060204797379544, 4.73036260692523, 4.937747635254292, 4.937154014302193, 3.3051628270349602, 5.631574025355275, 4.138221765345868, 6.776208096597393, 7.963399967862702, 4.043329913979629, 7.784323534647905, 9.073318981437788, 5.239598309085664, 10.273742181234988, 4.967668859339338, 3.4081867590911026, 4.7892184178554285, 5.0429550696232495, 5.879211518672719, 3.4307585642756115, 4.25578513625569, 9.72350021443984, 5.6873581733805825, 9.457754124742111, 3.376177690630181, 6.423470364546526, 5.83990613851831, 6.871234795573648, 3.5279935527482427, 6.874842373302724, 4.753397271053217, 6.049237650894781, 4.193717971924145, 4.799383765190311, 6.799007920694345, 6.298301110466996, 6.341228844032677, 9.661165357677188, 2.627516470761575, 5.790976849808857, 4.186421642353896, 6.03346636853149, 3.6635948409528503, 5.0189643906027746, 8.367381613128073, 5.775298765574026, 5.265391885436336, 3.863782458628351, 4.3737736529133535, 4.071783787803321, 5.1277110619705955, 4.402651200708879, 4.186398109549284, 4.196792415576707, 5.668426260909546, 7.568096795265548, 9.292307217107394, 5.051044550409435, 4.132093381398567, 4.2217273560470865, 97.29488888888885, 66.26816666666663, 6.237670190385758, 5.622957172926471, 4.302570637492721, 4.880827596906889, 3.8086406079248483, 9.375374416616342, 6.715897211558038, 6.079825232805795, 9.494391296084421, 4.889260620670184, 4.233239047524358, 7.523751322264191, 6.8063345559646065, 20.380239456461776, 3.7025868115283656, 7.438878788054096, 6.129113371717546, 4.9179619461435085, 4.251955830470874, 3.7071634769783373, 6.090744604352569, 5.2594491502980905, 5.852262779568503, 5.025793757499098, 3.9966788724650515, 4.364940152550607, 13.663837028454974, 4.700869883113112, 4.099321651037315, 10.250209803169671, 5.046102260422729, 6.206661677733161, 5.406361677397119, 4.288136678154523, 4.596322473102389, 4.723720502837088, 4.897710150603821, 4.034829478003066, 8.214111910936111, 7.828131156539749, 6.201048539687028, 15.492316391765634, 6.043200115569382, 7.052200377011563, 4.261586012036277, 8.411917576467514, 7.981390098877698, 3.574133833083381, 3.454786438381386, 4.540778079950542, 4.392844903307048, 29.00879243590427, 4.377830068791293, 5.555610480435336, 4.577673731622643, 4.555576546815445, 4.37122697153336, 2.894203492144206, 4.674202193640017, 6.30015136349084, 5.038453438218378, 4.208697201320879, 4.244991035405356, 4.4011916639756645, 7.251681111810195, 10.803354373201266, 5.596074714446724, 4.994923260865365, 8.790247460492743, 7.8495721546985715, 5.301593441459031, 4.279324176967204, 3.1840788057731393, 4.165322166000811, 5.706739267561335, 6.849489940692547, 4.401370573574197, 2.7687915790809527, 8.824254133453627, 9.71369273532552, 4.386018301583167, 4.8985542184821, 3.917305398551384, 4.606528181525343, 6.219583681565519, 3.6765751497238663, 5.47128722767311, 5.733056347194424, 3.6452468428186044, 4.26370695178542, 9.584822285956298, 5.354323728040059, 7.782012681793131, 7.429094736866489, 3.7363703149844034, 4.620673533983204, 4.459604490403156, 5.25198040552244, 3.23281678105037, 3.7694221672056303, 7.196843510240111, 5.396712055491674, 4.253575661403775, 4.731580239689265, 5.71743187513416, 3.8799468501845045, 5.858795674693981, 6.801908523009723, 4.625969630045596, 3.7734474142587597, 4.559784554487784, 4.834759482314112, 4.187197516305539, 4.625686429612667, 4.311487926031674, 6.4140532478383525, 3.9615320240796823, 3.4620001447097324, 4.111782213605684, 5.620714205033215, 4.027112824067371, 4.292445034563269, 3.8631511220121815, 6.488626951598416, 6.507513390200724, 4.352248420185873, 5.1307540124963396, 3.7096049332733125, 4.892804794514216, 4.708386849305684, 4.755258265970722, 4.508343539508159, 4.868828414071053, 3.9762761143016805, 3.768940362123716, 5.101427977425816, 4.37547686529949, 3.6212313968067793, 4.729903580455659, 4.221568486307198, 3.85037508363603, 5.337330258795018, 3.7289290005329514, 5.569706475962594, 4.276915540268076, 6.839750017951274, 4.9981458814422615, 5.227341340002415, 3.6782613295616304, 4.622861596864769, 4.804177142217066, 4.390384662973872, 4.852087540167619, 13.377855356593564, 3.8749388374327207, 3.910970300790168, 4.941049228927528, 3.369390875365896, 6.709672423856375, 4.719618052422424, 4.4655783559412106, 4.166180613112291, 4.629749537245985, 5.538155823040079, 3.8168426335446286, 5.943207449482545, 3.323975692318149, 4.269967690208776, 4.1011734543357585, 5.313641778391295, 4.027115629822574, 4.795494333533069, 4.263576988400444, 3.788091285854472, 6.249189284656604, 4.968514052466778, 2.754510243557821, 4.32067734796899, 4.928203050503743, 3.744176835751671, 3.3073925782118767, 3.851255127485667, 5.055746679145809, 3.3697859689726313, 3.8837326470370295, 5.701886006017811, 5.042610376266576, 17.56438467771775, 12.415832910374075, 15.435616288950117, 9.974399472886521, 7.616332458018695, 7.874399675123488, 8.90683583961688, 7.78351091046122, 7.5097637505179655, 10.821982577753866, 8.628293751057198, 7.100131558901686, 7.6031819477931775, 8.461106354857872, 6.275946546551497, 9.871585621900982, 7.049661671515037, 6.28331467998645, 8.463195512514154, 9.853548981211745, 6.445338080798086, 9.393758198237654, 6.992465721901105, 6.134199616674131, 6.653558632954318, 5.5020182763276955, 5.146123549871103, 4.8385954841054915, 6.17716294903536, 4.850676235103922, 7.807537510140119, 5.883543960258013, 5.531737034400415, 4.30421377602095, 6.036973719332232, 5.3932589152366335, 5.042528166539527, 8.669341567409829, 4.360286947206637, 5.936607414507268, 5.619218848673004, 4.942741951665849, 4.2543797789327495, 8.37477326030453, 5.432770487439379, 3.683451420373219, 4.721103387437868, 6.048275311645468, 4.121960817332709, 4.921510726075136, 4.260776083646142, 6.590043540603585, 5.5833378236240305, 8.891012072692153, 6.270728910029087, 6.574751775648028, 4.734916089543115, 7.48662457709139, 3.9562149573169085, 5.207139562368511, 4.1893011086776015, 3.6774755947122015, 3.986464517291323, 3.635053402871312, 3.5996219281974673, 4.035532730954525, 5.5988682028449865, 5.299057672027236, 8.03135757829362, 8.123261217054262, 9.636145338113828, 9.09122704858066, 4.956508301041939, 8.075078371631804, 4.1999036136314425, 4.926197228160329, 3.462262909586298, 4.1068584157652595, 7.424591515342076, 5.323294323889298, 5.985425929854952, 5.123073175759697, 3.7241624868368315, 2.7909294373517803, 4.796921959292838, 6.49085206750516, 3.479076892767038, 8.914049241225712, 6.07482707546228, 4.287772125773406, 6.912995428721241, 4.594299384515856, 2.7197482007901277, 6.161117396667964, 2.621868712176081, 2.969828647409121, 4.156528432544286, 2.9745133916543516, 5.317865422378269, 4.168118782252585, 4.49675707551514, 4.1481046650122355, 6.480750486000364, 5.008378929163997, 3.281905172638956, 22.26398415797723, 7.433757258649371, 6.680911417287367, 3.340158616171093, 3.8659296942062467, 4.502350970071804, 3.546519995102158, 4.115984435469698, 4.642764436589908, 3.817309976559611, 5.9674709849499985, 3.552250081905424, 4.254813913184482, 7.785970048372776, 3.4901518404029166, 5.242722553453374, 6.4653779945078265, 5.862436020432917, 3.1764429704756916, 3.8908551936579934, 4.795881414068517, 3.7361982031063268, 5.7462736021332255, 4.995553652667109, 3.719597098516353, 3.6356989784252547, 4.390083979862387, 3.203711651456272, 4.608049968520982, 4.4200549263312565, 5.635102418456098, 3.499735526814227, 3.8847093619016793, 3.9966119264328355, 4.692496109864695, 4.763799671560273, 6.060714013180659, 4.482904741045148, 3.9471012006586106, 5.584923368564398, 4.312284716091817, 8.336114250328118, 4.3055625681057075, 6.467632266718286, 4.024312702777532, 5.060542900165584, 7.376155380427277, 3.17983578077853, 3.8154668561548286, 3.6909347850622125, 3.16346314215092, 10.254615533014809, 3.9946125135933235, 3.5778936395363248, 2.50877958013063, 3.581381010216032, 7.492986960910026, 5.569180635064503, 2.7751704490258104, 5.656100650816214, 4.004173439029981, 6.2289180725975966, 5.959783262662868, 4.0577685602963145, 2.8882180919160634, 4.5585454906054, 7.671798358016593, 2.786621060663832, 4.818402700815653, 4.563783388848692, 3.0802643672029104, 12.802473311280076, 4.771956152449098, 3.569983936642849, 6.590405346873049, 3.895471147106052, 4.738712743864805, 5.743312410455915, 5.16594928627395, 4.594780716527437, 5.321319024691505, 2.71693396504661, 5.2321811021891715, 7.354171534388504, 3.2296330763893066, 10.915393926477048, 6.6036195795354775, 4.595375459882591, 2.9568124916921024, 5.397550330603928, 5.28847136935368, 4.089544844340577, 14.91348863380498, 10.691738558147238, 13.067398034123476, 2.9280725225458633, 4.0637588029775715, 7.169141655142938, 4.068484070970738, 4.818742236838488, 6.164470572905355, 3.798473703819308, 4.598051191971775, 3.613560653961746, 3.844932829337806, 5.839975901000949, 10.939614116138683, 16.18311001479345, 12.457866327646126, 11.879766389661597, 10.218267378327043, 2.878682554041179, 4.794886832043442, 8.71077746995247, 5.759691387700622, 5.2295383080174425, 10.645030544609082, 10.374851078150565, 9.291700689230542, 3.9635272021232053, 3.9125905123833267, 6.618848158138618, 6.157369010211389, 4.551973201854935, 6.196088327404718, 4.809854152218261, 7.108764588773082, 2.9049831464021403, 6.732521949641853, 5.263211479153496, 4.559253016862864, 3.385261707615797, 2.8033451484861165, 6.224454243343598, 5.82950057592, 2.8646639156191007, 6.0654265164253225, 5.603071683336548, 5.398510967137673, 3.559804146447972, 3.1452625191955494, 6.63457951758863, 2.9684968698711476, 7.633920450820151, 4.108789372803592, 4.820228808136871, 6.094734097766838, 3.5452838380344067, 2.4246650606931075, 5.087184093301136, 7.568657230518704, 5.900422116950988, 8.73860760794031, 7.022315142762158, 2.8141503343036707, 4.190122441770588, 6.79581946102902, 4.688814862676711, 4.95978967323674, 6.894916942132898, 8.888679711852166, 30.021676887702746, 4.375541295835945, 5.197069266226742, 7.73583018621173, 7.475369294772927, 4.434290058479407, 3.459411870859517, 5.678422418459163, 5.919275798579065, 36.09585263816441, 47.013043363499214, 31.805333333333344, 24.82273997495133, 14.05866529969605, 16.662068650871717, 23.876833900226753, 29.11510395976573, 12.531015796202647, 22.701459218559226, 12.000979306606183, 18.74380715045189, 16.634060904781492, 15.385970178514295, 9.260564207358597, 8.83873667216085, 12.094851412175716, 11.620828888204372, 13.9386936086092, 9.191690703740703, 6.71734712960073, 6.4641530704734, 9.447359820131563, 8.221914669579414, 7.8010276027107635, 5.512222259908836, 9.706079297895084, 8.317825054331633, 4.858205182094497, 5.365389294159355, 12.011357381420272, 17.780887473637478, 9.970905410980485, 6.2853446701829565, 4.171786268167379, 6.4209452823162545, 5.858239938321812, 4.732060566257683, 5.147404014296237, 3.4752408727892314, 5.0548569337184315, 5.787531372231645, 7.899339641052103, 5.031305476138288, 5.612210372076339, 7.7027596273490655, 6.145649244773728, 4.977394138251331, 3.6580482611658813, 7.362186490154625, 6.291876644870453, 3.708889673805709, 8.425802844857683, 6.409159211572461, 6.275504418311909, 4.639645295373496, 4.438280710481817, 4.379893873740917, 4.184077244854065, 11.052954628893097, 4.742062983402157, 4.240114096990724, 4.656708005629149, 6.106864603179406, 3.3882226346422897, 4.580074599926089, 6.350122936560536, 171.3551944444445, 3.6809986597562223, 5.663002464177119, 5.212323674130593, 4.329111465441836, 5.481546389370895, 4.001378153980949, 6.071487269141651, 3.49284894646915, 3.664085145472891, 5.52721979381987, 5.385515468018064, 4.368782981638265, 3.995633379027675, 3.0098839841839116, 3.930262957110139, 4.660834980342281, 3.9770533736093445, 5.874416389028312, 10.038998313090415, 6.3092832160166195, 12.584961805889845, 8.897339309421769, 9.201673035495036, 9.790438228111759, 5.4814693502131835, 6.863725064677404, 3.2975973607104336, 4.883797320195832, 5.237211832275947, 6.416258446465171, 84.35333631947762, 3.8706222433330817, 3.0539995826357966, 3.1954037717614434, 3.855474519998994, 7.616031438627657, 5.717858172321162, 4.189164025271178, 2.4082566228450886, 4.348513322694327, 3.0658074170272522, 4.67867341908273, 34.85361424022837, 3.913377512461532, 4.4403305601364655, 3.650670663981253, 5.71231748590018, 4.640814736077653, 3.6017524811389703, 3.3974687480985692, 3.130830391222797, 5.136112049189844, 5.555079492464973, 5.911633998948163, 8.249333802316718, 5.07896146815743, 3.3370779115434757, 4.122689271300441, 4.745712016291385, 19.95596156978734, 3.2172268871820653, 4.219145001894795, 2.566616203941772, 4.524247883631892, 2.758134312797727, 9.519126436838267, 3.644841717265539, 4.23662561578985, 4.225699283811591, 4.318894785588958, 4.861465799427952, 4.337075170631879, 5.3299971388106835, 5.388136007414813, 4.728238755766002, 3.091998576655405, 9.94778159828729, 3.242361861720719, 4.553319203193981, 5.9715900322901705, 4.717511653058966, 3.2365669022098493, 6.641013961688011, 6.057544785167984, 6.793319915233578, 10.188112695668353, 3.130915762697828, 5.418436031797026, 5.491960453875852, 8.595584104874957, 5.782292399320839, 5.189018148973255, 4.049114584106804, 5.278032670925427, 6.6425807762430615, 4.160044776865722, 4.87139027708143, 6.145392234646788, 4.2278617614475715, 8.592693703143532, 3.302485293391376, 3.5578131552897436, 2.682190381988288, 7.749242263885161, 4.897604171820617, 13.328101865732725, 3.9769132321029423, 3.7586297697800712, 5.237222452958348, 5.205980863729169, 10.199612739161683, 11.144788015160454, 2.595145993749385, 4.727373408784217, 6.2337799244837795, 6.031431502972324, 4.671141766240999, 4.702527212912818, 4.822182101486367, 3.7542683780630406, 6.866635806656835, 5.778020935017027, 15.927388728795778, 4.21116524228977, 4.3215061681118065, 7.466437267263072, 7.367292671052615, 14.001184924357219, 7.588815524398045, 10.357116353055057, 9.803459000929733, 4.882416468338954, 4.347947194716688, 4.235915800754806, 6.951176591790806, 8.196045416509063, 4.713695627885859, 5.414163389316366, 8.931937987835395, 4.075593732954946, 9.700790984584021, 14.456942838775314, 10.46608992038485, 5.39258434408386, 9.14804011562608, 4.249881066764769, 6.000823299408433, 21.387856580193848, 11.673581180513473, 8.109304691434389, 7.594167026283082, 3.9061051205341073, 3.480239787823373, 6.045916037325523, 7.818074431796403, 14.434694618453438, 8.419493346519117, 3.3824204117035075, 4.830493792545132, 3.416494761633251, 6.856595661646325, 6.85933900452484, 4.240623312041031, 12.4967263795728, 4.537333702154109, 8.272809912902574, 5.540292488012593, 7.64125254793132, 5.962199960063832, 6.837468013217818, 3.5588594625709207, 6.041745927443149, 3.184453221932502, 3.642667211240343, 5.357378438337434, 5.201065819803439, 2.8165093855286054, 5.004372307516017, 5.448401913823673, 3.343997025234736, 6.765115067213115, 5.0416828180139035, 3.907433009613606, 4.995945696854848, 2.9219343413326127, 4.00366026286015, 4.9126793118345145, 4.670383053153426, 4.084356754830334, 6.999188451824051, 5.994891125371338, 3.9531049923165353, 5.673476105476902, 4.76509842570754, 8.881610791985795, 10.856515131338496, 5.668970643210199, 3.407197514729739, 8.951304552172973, 6.996884092166727, 5.528538453077156, 4.3413545536724, 5.104033575546935, 3.344050402903096, 7.200593786676861, 5.802166656557587, 4.386697989603317, 9.736001115133925, 5.9277483608277075, 6.539260887850833, 6.045652665269564, 11.13517131048817, 4.59110464181527, 7.496301785379372, 9.65352609874673, 6.637551894031936, 3.6626722489036494, 3.529052045553696, 6.3308703877344, 3.6004620967826106, 4.174016329943572, 4.626570446781659, 7.325814184410303, 18.13778845397809, 17.644753627003617, 13.921883139771454, 10.063800749395615, 5.588763648494696, 4.22716215136708, 13.486815800101468, 7.687843948252877, 5.927322205357423, 11.352498274436112, 4.5507419931643085, 17.13273714520774, 11.525963579248412, 18.5371715657614, 7.153695897980269, 3.427881301456036, 5.585286505403297, 68.80204865424432, 7.283265467675976, 7.293020480689311, 11.454446834222315, 6.865040067500917, 9.062470896547989, 6.172541200582425, 7.373954686729602, 5.444756957462495, 11.25628283071938, 8.476524145262164, 10.317876907732792, 10.818521977496976, 6.690793559940631, 9.474490297009027, 20.197391022904828, 3.6791762225386764, 3.247611376094277, 5.11364630538961, 8.134073202293136, 6.288232053684313, 7.248177279087481, 5.116594394478233, 3.994551752792111, 12.357967188673264, 5.142380639494601, 15.710112314542108, 4.510471623549014, 3.8967515164527624, 3.635391378343738, 4.479287478781789, 9.717800520829025, 5.744151221798436, 5.33270176244462, 2.9188810301343584, 5.091875298452071, 10.08890585295979, 3.3256427432244333, 9.28158635528149, 9.934719623603605, 5.225385005233989, 4.451284395988883, 5.2208688112574055, 8.852431545259154, 6.2556345801002795, 5.442935374772535, 6.316624111811027, 6.276270492169061, 4.020980992306652, 6.852536432877719, 3.6302802207695946, 4.167321623999084, 3.9607436257472686, 5.685345638466058, 7.0641100128390955, 9.170466812873643, 3.1774524554019306, 2.666669990198215, 5.321205088550855, 6.648448529716237, 9.113741564110724, 7.5747615502063335, 2.4645027717280374, 8.696366596726936, 6.654945963839472, 4.730997597351856, 10.472800976800979, 5.778440203083629, 4.2924295547752065, 5.518210811799133, 4.380852879953574, 4.965384507661982, 4.749630904435754, 3.55549947590729, 9.03166923366279, 9.385903991409053, 7.469716899517325, 4.427734896708884, 3.9627835531406608, 4.9698923618463855, 2.9161405779836453, 4.7280098192977436, 2.660993112844426, 5.186764644423421, 5.130685799497565, 3.3245911677214353, 3.5307488707881007, 4.46002577059619, 4.969815371054484, 14.894330073022038, 4.283012156028213, 3.2406010765394124, 3.9661464047341624, 4.711542648779084, 4.82737285336148, 6.698870026552593, 5.6164073700223645, 7.2093421141299325, 4.775736174721655, 6.966953275767553, 3.694314424161774, 4.2653658716839296, 4.189986435856242, 17.96376627259476, 14.000326146076143, 3.6781121978647535, 5.046349526138026, 10.777969517776414, 5.180338688544456, 4.1280425603695425, 4.018599551818349, 5.827998906890111, 4.0240761279308686, 7.902151840591937, 3.3233875319649337, 4.62629702701398, 6.207585496689943, 4.3013610032776715, 6.748573669452607, 10.682522290552416, 12.081255066656764, 3.392478740745957, 4.031340069031387, 9.030623137811526, 3.6828285276330286, 10.154344964745857, 7.453825406283936, 4.018586760433915, 3.4713407623682992, 7.827599359191623, 3.3433596180049565, 4.268783086995586, 5.066206826133491, 21.44923642549578, 2.933726128705546, 4.6456700425912505, 9.954412667135315, 2.933776237505234, 11.115579078694235, 14.478563589188589, 3.0417281408815424, 5.244627841502659, 5.050299040934874, 4.015221470532629, 4.838712861143894, 8.856245222084835, 9.862257630841876, 5.32352360660343, 3.2521542637843632, 3.137682942305549, 6.352278311181141, 4.003931752332579, 2.9057085218995105, 11.404920823357596, 2.2653444283981496, 4.789716857381254, 5.293082297090942, 7.98509186923614, 8.61186955579063, 8.405209578424039, 16.802620155716518, 6.940497184683924, 5.338711276577953, 11.57172286504893, 2.9170025741370282, 4.28836272048898, 18.22980344885318, 3.7815875446305376, 5.421372006087968, 2.9595829975213968, 3.5531354530612527, 4.49719693134406, 3.263435940041142, 4.897797214600438, 5.910413449237335, 5.034090894438685, 3.878193024134645, 3.664423208484557, 3.3475601469533016, 7.518822177874765, 6.062243452413959, 24.22123029318823, 3.2025605057866207, 3.0298666759074564, 5.479254632841512, 3.440811879186946, 11.827590780161776, 4.091311244414428, 4.788123472207093, 3.662094546525827, 11.03429737459188, 5.315400788172144, 5.335123740800169, 7.255206542792198, 3.8338191320345074, 9.515879122635688, 6.623115345684009, 3.3084405132457313, 19.085097347889835, 16.910965129315123, 6.270130168179134, 8.880157128577247, 4.974414437084038, 7.709411674400974, 13.228929749800411, 13.773290742753986, 7.016385904652037, 3.785483180867867, 4.330283726531605, 2.9194335041831603, 4.432441387342, 11.649188877388818, 5.5897363593151335, 7.23445710782593, 9.165384296796395, 10.996778057874133, 4.378819548196696, 3.949336646663866, 5.68306141824793, 6.697715027499794, 3.2138444498496854, 5.1472578368424955, 3.6364370719561956, 7.687558738880166, 8.880656442397054, 6.225110879881845, 6.415356026372289, 3.9624946816089044, 5.967978323146318, 6.817471379437553, 3.3713711765168024, 3.8621841921838307, 4.42954518669753, 4.488174571793223, 5.9430993823575395, 4.039940770678097, 5.810542033153413, 10.348401206732921, 12.148357068852052, 4.825293246859806, 7.924789852001572, 28.40010743965333, 5.809349533453918, 2.998257218250778, 11.281774733294032, 3.681546102793222, 4.6603278404552375, 3.956903675807132, 8.14689462636025, 3.811438993183003, 4.928428807626223, 3.699058199393287, 6.626026232368618, 5.754449373125666, 3.354357621176302, 7.9013060877906955, 5.9156023517522, 6.947962484377532, 3.7589596108225924, 5.086625726345817, 3.936480749096185, 6.596974005906108, 5.781251609798051, 15.691574634408065, 5.556881451769493, 7.096306966075754, 3.0878199448245125, 5.179522164220165, 7.507899496127552, 3.695079832794788, 5.931413576640144, 8.103358279115957, 7.030463190058864, 4.06334399835554, 5.056021012883968, 5.041284038638247, 5.009608687960161, 5.547332814959075, 5.304067914322143, 5.032802942209445, 5.628319664616717, 20.15796815738074, 3.924936266406374, 6.301318547083522, 3.512465698206529, 6.285458116120849, 4.765872777968036, 6.1859529343710165, 7.746364435458199, 8.088091022222372, 5.24198235108679, 3.960078239108171, 14.345682952220367, 4.99519855831391, 14.194116045112102, 243.76000000000013, 5.138163208259684, 12.960939199999656, 5.048218555117643, 3.7940301083776946, 6.142121843521472, 17.5935798882096, 5.482344519186993, 2.982325207831194, 8.255255522223052, 4.9792755458701805, 5.169753047435741, 5.19473380972364, 9.197025057226242, 5.416963159880485, 10.936104314677893, 3.754567302370649, 4.593584291398962, 4.070150735229729, 24.137464408585846] hash_iot = [0.0, 1.0000000000000007, 1.2400000000000009, 1.340000000000001, 1.344999999999999, 1.3350000000000009, 1.3350000000000009, 2.3133333333333326, 1.5616666666666663, 1.9183333333333346, 2.3824999999999994, 2.343333333333332, 2.6008333333333304, 2.304666666666667, 3.5000714285714274, 6.295999999999999, 6.213666666666668, 6.9682499999999985, 5.34975, 3.638619047619046, 7.359166666666664, 8.558000000000003, 6.495960317460318, 4.100190476190472, 7.186035714285716, 6.251722222222222, 2.922777056277056, 1.690562049062049, 1.8741226551226553, 3.461854867354867, 2.4259630647130646, 2.197174603174603, 3.2272539682539665, 3.212884615384617, 1.883344187675071, 3.061654761904762, 6.417389027639023, 2.7823817163228926, 2.8350476190476184, 5.6996071428571415, 4.468387085137083, 3.335368566074447, 3.5468506909756896, 3.1430435511770645, 4.070275499354447, 5.275549311799313, 4.348577267503737, 3.8471958041958034, 4.00211544011544, 1.7258531746031753, 2.7155298573975037, 5.357351261519098, 4.551278429903432, 6.682389517345397, 4.586332764457762, 4.938274022760864, 8.3375111000111, 6.376989700623333, 3.5321557757459936, 2.538084738361053, 5.286734793586183, 6.586697472634006, 2.965383033633032, 3.3093974145064955, 4.876700440082793, 6.353001702770969, 8.71879305008716, 3.432531054993501, 2.604368891415652, 6.30948580395577, 7.890378968253966, 6.203003472550836, 6.107053422176952, 4.843865507755433, 2.772715367965368, 4.256667138417137, 4.634162987597197, 2.895761419403316, 5.16255899608647, 3.548728175129985, 3.9762256308506307, 5.361434319836796, 5.428485250659785, 4.919606208328985, 3.3493792415823216, 4.174270449407831, 4.379872529431352, 3.0200302949502866, 4.1040433849775955, 4.81912430284149, 8.268310061682651, 4.78421611385753, 3.3731095425230655, 4.262109333476978, 2.2490929348429356, 3.4127482258891404, 3.3114775281123205, 7.214437415942518, 6.6670620013074045, 3.0152729786994814, 4.663930520176775, 4.640397582661425, 7.036931834165507, 3.545402374523854, 3.6081707473812727, 7.522615759971023, 6.212399437727022, 2.988507319434951, 10.749830979234613, 8.451753484841683, 7.66056692554889, 8.344062033932698, 4.007729263655733, 6.6194238739321, 9.384520396972514, 11.356688431382855, 8.65591246511611, 11.014038400926559, 6.267395127016322, 2.3775508690038003, 5.970104384177913, 2.423163051885043, 6.6328991027208355, 2.8256129129802714, 4.073024471766697, 3.723303531238358, 3.9245251877854574, 7.493255501909366, 6.707313507156043, 6.582756952188836, 3.289055224893562, 5.923144917463939, 2.6385877563925377, 8.954137814792636, 4.384985980570799, 8.272673998842379, 3.4312090648721387, 6.984950724815704, 9.782464492866925, 6.201930995736899, 6.532503794956943, 8.201576035875656, 7.547545778967524, 3.095734475655064, 2.900958608314107, 2.8492669463150446, 7.47016878733206, 8.013341596069825, 8.909321590143714, 11.432485802151156, 6.826305333174754, 12.428044852851855, 9.088764745228282, 3.1880192586048746, 4.203635855999819, 6.0778627643287715, 3.127282390002782, 11.890221451447795, 7.286801723106977, 5.571174735981904, 3.329093157809452, 3.236128669887194, 5.321691062091757, 3.821218412121726, 9.56725546462107, 6.7278091166789995, 4.853585337987771, 6.365904791607714, 6.342299842881939, 7.178106038552826, 4.534639703954028, 4.4471763412652825, 3.072827586372112, 4.485775871127318, 3.9541118353367235, 10.0540747955786, 8.686832028170544, 3.1792442730533312, 6.595746273397799, 8.853064868763719, 7.310770450666192, 4.253755424401001, 9.902755373613807, 7.197130438926902, 8.133596811717403, 5.066711996480747, 5.1255686990262745, 11.6698048991692, 3.506544259832767, 7.24994054416406, 12.094821540678556, 5.041641305540678, 9.770801425697202, 4.5586967938069485, 4.965033623652601, 14.978075344385386, 7.67029339809509, 2.8114240548862965, 6.28627953622697, 10.196740512942753, 11.138470425093598, 3.5170467487152046, 11.270771576385961, 3.568363405955283, 3.8424393026093786, 3.722597077585566, 5.379180619954404, 3.436529432115466, 5.153622166157859, 2.7623603534042562, 5.447242547995968, 5.463626328982406, 4.793681084583805, 6.150084276306579, 6.91523070835223, 6.633675985063067, 10.294234320142397, 7.3500253598505365, 7.7360547314699, 4.116329785468257, 3.2541670690114772, 3.0505246450668206, 2.9060761308996352, 7.459316313678652, 5.83800779845691, 9.13404937619111, 11.26378900660862, 8.44644981561896, 2.4653725497460113, 7.365774800660854, 9.12098726825734, 7.227865461170756, 4.478714458861164, 10.398800033096704, 4.342427803669182, 9.508729862140664, 10.253175487348297, 4.098649904202758, 4.272863048838843, 6.322822031251696, 6.098329480939197, 3.123612742830949, 9.830730809404225, 3.5555037035423163, 3.675791865362861, 4.944154154676101, 3.9739088275118783, 6.242552024902968, 6.8315395370867, 4.02067422932193, 7.948243266645263, 10.321650570564177, 7.032533775465638, 6.709349473860092, 8.457463089345598, 5.444558033697652, 6.001811393115918, 3.9384421206596474, 3.1646178377377665, 10.934820917105812, 3.1289427500895943, 3.528764136152102, 6.264453533966777, 9.78390666643032, 4.017015583902551, 7.222088340242646, 6.282119633145865, 7.6197779779104335, 10.482408626481604, 4.333429755416599, 10.599389623318434, 2.6892405522065923, 2.828431674615575, 6.3659135882599545, 7.525542239273125, 5.553152418077149, 5.360713900642415, 4.8243268464088445, 4.83856324128435, 5.818181398747473, 3.508618391785355, 5.882459502419716, 12.254216181542207, 6.384208776710969, 11.350298550666333, 5.779757227651663, 8.851337527685452, 7.521646663290655, 9.117402949116064, 4.001398962566209, 10.825930654325115, 8.550111705740672, 4.590255903727684, 5.231958007475398, 3.4186923505580316, 8.15567424299363, 5.554969869863465, 9.666083839410941, 6.17702178354606, 5.292446367620873, 3.587385986902902, 5.094006471417566, 6.722785914397973, 9.620846888246524, 7.02816193050647, 2.6244679228563914, 9.1159781955716, 6.1395183739568395, 4.348049224113971, 12.283241584331217, 4.796855694443276, 3.6015029065571382, 6.693667845719407, 3.9795922750058286, 3.7947275596866796, 5.8687775915655465, 3.9479696782717877, 4.058219546067907, 7.38207396699663, 3.534559383975276, 12.235351637466703, 7.152789313115458, 14.087564233363382, 4.942958507295725, 13.478047258151154, 3.6385329137280538, 4.243801282587682, 5.804451926587802, 10.491985442127419, 4.959489145150097, 8.041248479945375, 9.871678560960708, 8.765834777484464, 4.20311897953166, 3.09410677751876, 9.237897191439615, 4.953015786685418, 7.945886724678767, 5.544870069222768, 3.064600932811326, 4.736268907623317, 3.4978222627439624, 3.058039046854627, 3.0510268986220193, 4.550938754356966, 3.9216378051373932, 3.8715288638239005, 3.8902174976490658, 4.001615344959142, 4.960441339560946, 3.170859532709945, 2.874847289448398, 3.837891660814572, 2.2986154781623287, 5.05836887435674, 4.4631662289727565, 3.529935085847457, 2.185097147224014, 3.30832922469809, 4.191100168803095, 4.193607045324531, 2.3589594748744753, 3.1888709110762794, 5.273459185531186, 4.567530814186128, 3.2393986456505757, 3.7279252585478955, 3.498366247932638, 4.469063655542689, 6.362175692229644, 3.694141397312646, 6.264271690815019, 2.9748624553586884, 3.501958761595269, 4.688987102461635, 4.492733524708754, 3.9832031785752022, 4.789401381957554, 4.476559490558134, 4.234799491171077, 4.802765066066705, 3.8419143186500704, 3.992951094011132, 3.6144646283676662, 4.473382054101055, 3.401945778991226, 2.707533838841748, 3.9991415476902445, 3.2951818643688013, 4.308497567357236, 3.9405855051323284, 3.8742154970727776, 4.93867881486024, 3.003917442308602, 3.5273592306103443, 4.027106130268924, 2.799880610688156, 5.886200217213134, 6.25327727943535, 3.4593189743286095, 3.4835673042239934, 2.6013454984884334, 2.8280853508500545, 3.06902394393113, 3.790294414827107, 3.410975779490071, 3.043910904646292, 8.613398672197057, 5.923087386881358, 4.670493422438883, 4.130904796730692, 2.601363649947727, 3.9251875531368636, 4.209019396326432, 2.944589121961087, 2.814287226299245, 2.616115615138487, 5.125137291082776, 6.161624366339985, 2.524693616012006, 5.703765783234969, 3.4132010499878787, 3.3025923700365194, 5.087996292895498, 2.630161622939043, 5.524729100511803, 2.65298071889725, 5.648095927651687, 3.851262985478674, 2.828474396531518, 5.096895271356622, 2.7706909224086074, 3.5387375028596906, 5.209093025755294, 5.727190327681057, 3.586053252814751, 5.580060463254205, 2.4835875942466292, 4.420022391287891, 4.700785689884067, 3.0297292677297607, 2.855419570310786, 6.437264012448126, 3.475953144937994, 6.18412833894508, 4.509134651613091, 6.18096221233545, 3.8298205352351657, 5.5142890694333255, 3.068941282463789, 3.77104795296927, 4.895389389104176, 5.023475308708158, 3.7190632204728256, 5.964467201313101, 3.998002060850448, 4.769570689271374, 3.6764128793645194, 3.7948399893988527, 3.2292322151912076, 3.2680864696784444, 3.1661524045996523, 4.973841346375908, 8.011468309493852, 5.116925887209583, 2.6136167497973704, 8.423845471683487, 19.337816157271895, 7.355112989850582, 4.548314930115923, 4.213858990682082, 5.0497312350271235, 5.085380294932137, 2.968274884795125, 2.73508078163854, 3.7054053790419554, 2.9702339950228227, 6.9969283644873155, 3.599191092451104, 2.470901825441746, 3.6967802226598807, 5.981455287084891, 2.442613816449754, 5.34051630737104, 6.629165493582261, 5.6415091004746305, 2.917112169061345, 3.584256827784329, 6.175137247577345, 3.067353960152336, 5.113741577507178, 8.256615281599746, 5.739898184964249, 7.406766499508592, 6.559867090922452, 4.852751515458196, 19.86037313521683, 8.529295986592247, 6.485884714015638, 19.140730280779476, 16.883753160760584, 12.438706885684741, 20.62028775936648, 19.100002172555403, 6.880165049357838, 7.958397063662706, 3.696629087947402, 2.7975539570631347, 6.49827695883863, 2.394517701599447, 5.544167319052418, 6.995472515068155, 7.32338607999062, 5.730888400131323, 10.980992277597267, 4.254196284978857, 8.071873823231288, 4.729207590552746, 5.39808566179773, 2.960196565189848, 3.989772588602888, 3.5314701890759905, 20.03602572249731, 52.952694546551946, 86.57450986575255, 60.993164579701364, 72.27847826584912, 62.11068219624514, 37.496110250286016, 62.729005837761925, 12.51325284088538, 37.34565850508068, 7.04193881896575, 6.031191598155185, 2.902649723435112, 5.054621678296406, 4.909125907381262, 3.9284368867191315, 3.0888711428864233, 6.451237687731252, 5.617216553867651, 2.7076656565543065, 3.339267439288864, 4.094043299653049, 3.4060999747793264, 7.981425786432124, 3.493535454510016, 5.480001934724632, 3.247392127487388, 5.815788823456812, 4.085591627945998, 3.3450248744921574, 4.081728015260896, 8.412311020423411, 3.0626112436109145, 4.352554522700656, 7.575768230327004, 4.434731381097703, 3.5751956993465943, 7.402277330318561, 2.9662984408205366, 3.826264368128745, 4.401629639009273, 2.9131067910597106, 3.234844735687387, 3.6242884852670314, 7.301152947780209, 3.9228485779978466, 4.058033321424104, 2.762287229231924, 2.8172547545396696, 4.87346668947926, 4.66267720359991, 3.6169111547499626, 3.401528618322204, 11.281547665090756, 4.508066574196679, 9.917260710365543, 12.028246897287024, 8.37357256878016, 6.51845387582161, 9.893824663748232, 14.478875524322762, 9.768029559485559, 4.713363973295529, 15.683370289473693, 11.816621958810122, 3.185376585725596, 2.8605579998301525, 2.948225525883604, 3.0337238223501797, 2.155364907440155, 10.039927063585633, 2.5608862699276416, 3.2236243875109305, 4.851083015804508, 7.006111661770816, 5.679959209981224, 4.173852676040742, 4.847049239821215, 4.035585074558172, 4.367452415842902, 8.288051451253274, 16.50646403551848, 11.541996224915529, 41.54354459014755, 32.819858501363775, 15.53856817701086, 21.949156889560584, 23.006477737010123, 33.435553585543495, 16.338968623252992, 11.515439229640114, 5.728492746551315, 4.732273492394679, 2.723541429298613, 3.2509491217116215, 15.156725605162077, 4.060073197792625, 5.079403428048276, 5.853739161450485, 5.2956419838791575, 3.189741584141711, 3.434212466886845, 2.9138770115800248, 3.435671354166466, 6.290824161608015, 7.202541880227638, 5.214195389336967, 8.151684955116817, 5.7624293072363635, 5.371190692508675, 4.5744624833953935, 9.630987874852794, 4.551771772594112, 7.47356264165251, 3.631599860213424, 8.306672131138235, 9.680857402851684, 6.396167517390512, 3.2761620327413916, 4.526436515685091, 4.688928233518425, 6.367014290189777, 4.566735577033671, 5.716356816680438, 3.538323553024375, 5.595427885670923, 5.63600960568435, 3.946681392471302, 7.728698977932326, 3.1912220996308482, 4.799882451683525, 2.492391209023448, 6.546619454453905, 6.643054053786869, 5.640279219950902, 8.353109329683608, 9.538191043742279, 13.27399283065624, 10.745831978250449, 18.818336030335633, 5.201224837312506, 10.364987579735311, 11.158021875661426, 14.957203325532658, 6.508251626308062, 12.829082312362365, 3.0936546128556173, 5.748083508481645, 3.3987237780805164, 6.281433260452031, 4.828385662884121, 5.943309847217292, 5.781392741198976, 6.507650697635008, 2.3139668305865677, 3.0024553344436926, 2.146865891974307, 7.794989409342106, 2.823070370997524, 7.155719670463319, 5.7332802408035, 20.0800852080452, 20.91613914128844, 52.72811048665717, 16.605929984706744, 14.596409171283028, 14.050345600202506, 19.15382864051937, 29.51896429085192, 23.436195827606756, 33.324069528803655, 10.79610753416116, 8.8728299306132, 3.980404444972414, 4.3640440432332195, 8.911596085170302, 2.645438863674478, 7.690879756621944, 5.330073126680547, 2.8335604411272155, 8.70350072069439, 3.120785182990123, 3.307721608172043, 7.901367067867493, 7.2207609809117175, 6.915554985347174, 6.016302867952235, 3.6022834834871715, 4.595363332847403, 6.000703400034075, 6.726537053578202, 7.5954098615361465, 2.655243624388372, 6.0100079339740144, 8.116916731356804, 7.464749692021134, 4.083936791083267, 3.6886315067518356, 8.419685951784617, 18.060060605090158, 3.413106877419356, 3.3745674739207825, 4.674255824391086, 3.1658408951614603, 8.149734573467498, 3.5992424649691395, 5.806231999594544, 3.035318583872536, 6.389827361646786, 7.007865579534734, 7.373424129459319, 2.7357419482111887, 34.62400061427831, 3.7990502711569256, 6.477379430856836, 5.144290577205988, 11.718643721019623, 7.3143372638389526, 10.448475677309297, 4.972416286201922, 8.53823779906907, 4.716858360583632, 4.935010365129859, 4.047476512532908, 3.5101851022515262, 6.218767539679149, 4.579131673404132, 8.24931462159908, 3.788606628536848, 7.772691850972698, 3.2226194311146594, 2.4889890686937868, 5.806744284052223, 5.509804234505577, 4.3682468056945, 7.286186920823269, 13.319964828746535, 22.86796334338672, 12.918078448333322, 7.501299648101446, 10.603571491038641, 16.098111833319965, 21.876045427930432, 7.97393575532647, 33.3925713880522, 35.73589507182429, 21.330684815674804, 19.281584194275688, 14.583319726537933, 32.477309393095055, 12.297650919608719, 19.22549196380054, 3.0069431525946295, 4.469969914819337, 2.7329810047993415, 5.193912965504772, 7.404472178195685, 3.2848996520102616, 4.469994180909202, 4.892110133389397, 3.9932074038212173, 3.9106477656659284, 2.8819521938327304, 76.63258402817891, 12.58219038986674, 42.65940569839322, 44.40598313660346, 28.19082518550583, 14.04364940351137, 24.796589533730653, 82.34150378382719, 42.39593259126415, 35.177287495243675, 4.757558034113577, 6.2206743847328605, 6.119464394233648, 6.717389478175927, 3.6264632386622435, 4.501107411702116, 3.570035822998629, 2.8880928609121264, 3.065355271863205, 5.4329169610500605, 4.574116425534922, 10.353236089159475, 4.081369428624282, 6.439638823005458, 10.391121417538093, 6.121121226300382, 8.44138004160227, 6.493674596091943, 3.9676172568313577, 4.513733920784844, 5.248637554917851, 3.089388476455401, 3.995576550120385, 8.305210040604775, 9.043237422055643, 6.535717503971999, 4.969777954553464, 7.137600258570765, 9.364618947220206, 13.450665558912224, 8.632967332060305, 11.134795205605727, 5.856793617270375, 2.5643679085069953, 3.0553026165199184, 3.0472905090534397, 5.099393978453454, 3.3563675183512136, 3.6275551712134164, 2.8855836624651263, 5.198698797626296, 4.964989434065943, 6.551681448044658, 7.0857950601811375, 7.595332452608063, 8.446908507853347, 5.383637085801952, 9.5174508265753, 9.163089913790161, 7.002741743401999, 15.941621305059888, 15.221001634328172, 17.014782101692447, 7.851167909675023, 14.220283209220653, 35.823982083479166, 17.16391227093817, 23.906764451226522, 11.831993810290447, 9.593724543534195, 3.5518874197546424, 5.4401395794687195, 4.099607961152194, 6.583287602035645, 6.139616673696814, 3.877929265808286, 6.38861672743503, 3.404749821698446, 5.837755569595054, 6.545496603727314, 25.45371843340056, 23.318054382703355, 6.708293773073531, 24.88480894881828, 26.11341566120214, 23.567459651414378, 18.722459519280026, 13.234509573288513, 13.10860729495523, 6.520458055692848, 7.629108721779208, 5.670025647494327, 2.517963932340736, 3.7701807799667764, 3.5252928211006402, 4.009036596911257, 6.242001587805655, 3.1621111599030223, 4.9580258270790125, 2.9745075600257485, 8.148304599777916, 5.120481546025142, 6.175040811957552, 3.6936407775930187, 4.316658310483921, 3.332761878287842, 6.710673761375561, 3.7394591265687422, 2.9573760767883717, 5.384386873934752, 3.1459586077309267, 3.783614982505173, 2.779751217872771, 2.5262389063261037, 5.560191321088815, 6.5394693979066165, 2.9392947857536713, 5.466666668438875, 3.821111583790836, 4.56790648298637, 7.000275487308456, 4.492488879813413, 6.237772379287259, 5.7834336768969115, 2.574819819515059, 3.9920097970802764, 2.724119799371785, 5.396568730038304, 2.9655047785773294, 2.7260417681874327, 4.580043540917787, 5.332641193561158, 2.7412232130666223, 3.3445861001655253, 6.2581445925749914, 7.298952698673835, 6.955288257945391, 13.521675863320215, 7.495620229497189, 7.739406240282028, 8.157301277110772, 10.422784506399056, 11.813982517437061, 3.0964574128295714, 7.092868572837783, 3.3805351739790233, 7.7046081685904495, 3.884945419103315, 4.263479885757297, 6.473930272351335, 3.7354653685016084, 3.85232871479421, 2.710996268153017, 5.652347261339292, 3.697280450320948, 4.760498333129332, 3.7231248421957353, 2.500561334964779, 3.607140018860883, 5.854889815622193, 32.076296834739146, 42.50338417287421, 33.969551053284455, 32.68683937642301, 26.235649761567934, 7.614465586228026, 22.965702911545335, 31.098332115407533, 23.308690300274044, 11.5046591506814, 3.0116029218836458, 3.1380220547419113, 4.922595506206172, 3.4472843441979566, 3.674381863258244, 6.537285503461502, 6.333113232226259, 3.1811740748566293, 4.643681094600633, 3.25080240970587, 3.137954739973258, 5.379845144762039, 3.783174159326378, 5.527697115875741, 5.40431262861764, 4.685049096574779, 7.185904449109588, 2.5822809332876613, 2.957680737776432, 3.915403514425419, 4.093097452754124, 4.579281016833472, 3.6680147947175548, 9.687357882742658, 8.601367457716295, 8.246951197620314, 12.468458731609191, 10.019089881885323, 3.238452749004999, 12.841138745456018, 5.995744883339635, 4.268875297916952, 5.844381305032305, 7.2429804228791035, 4.429857068857487, 3.0213113080667706, 3.018197076932572, 5.745089910862937, 6.764428841978734, 3.0442002001134707, 3.862650403506034, 2.9891496887186118, 5.367598411869761, 8.542542477274763, 5.480736882521046, 5.153782754530545, 3.5205310897023825, 9.803360838810711, 7.64682793313054, 13.342258649651706, 39.16602824849565, 37.279294242701035, 36.679086993001135, 12.40123090836013, 21.28268341232093, 28.172942586464707, 11.5034328642206, 23.1050249795375, 24.293445812655843, 4.663381051634802, 4.341437436789427, 6.123923852733471, 5.431759752209445, 3.167854356225282, 2.3891262607848343, 7.50071019713513, 6.051057550500193, 4.758770305307621, 4.955401139824594, 3.274312831459364, 8.81971178259383, 20.015709443865585, 7.159710584148699, 8.896073275434375, 12.03229168084513, 19.714670173517185, 6.378347924190007, 24.779995040778072, 6.450580132965072, 17.793776233358034, 7.288823697269777, 4.6912332858587735, 3.568549601381977, 4.531497039273159, 4.487750997027109, 6.071294759167782, 6.566226674651886, 3.3392404912842966, 3.5386769841815444, 6.191476099760984, 6.544654199213823, 2.600599217975443, 8.855533557069098, 9.078383143964926, 4.178198144827277, 3.6989061968523047, 6.094218583091412, 5.730318206274638, 2.6735990255999456, 5.112489453253088, 3.6712238593965614, 8.263787485576406, 3.8448326233473913, 7.144434282682488, 8.379219008468993, 7.505162789372213, 4.712499770674844, 5.353093492838499, 7.266619648072216, 7.2011332702773885, 4.590365992550055, 6.7961903783359485, 7.973816337664861, 4.93390874802068, 3.2906997774359343, 3.209112373412052, 6.626260608685527, 2.9929899718168578, 9.419706990458854, 4.576238624587113, 3.106615176881492, 5.531572937180708, 3.7042346891260634, 7.5058507090383, 5.794074586991048, 5.236314072037718, 8.077802898675296, 5.1010281181890464, 11.817103939645785, 4.063503762390465, 23.051831448202762, 20.581414602702782, 26.505418290515955, 9.039446734889511, 18.480851840179298, 9.060981228959347, 17.1270291955646, 18.74318747080399, 12.009108674483711, 10.161891846517749, 21.407416431310835, 2.5861239314559477, 3.492743831514188, 4.061321856798172, 3.670067181465447, 6.16939719404816, 4.778296553551914, 3.9579294773758487, 2.8108969483833137, 11.205890111964539, 8.63136448851694, 20.332246614712425, 22.239121958513593, 21.360444453765783, 21.585950427069807, 10.90814490902417, 9.763702931163541, 8.850279831609466, 16.624759944632938, 29.781431308653925, 3.2608998968079836, 2.287462490601741, 3.107928992295603, 4.6252707430012014, 4.195453829042166, 4.297563984989526, 4.056436720359585, 4.0788585910049795, 3.5752746767632684, 3.6911298341473278, 3.1971310312337637, 5.058617520991526, 4.002925068900064, 2.3888487644684533, 5.572748024646359, 2.5373534641246365, 6.884566547804613, 3.9376341312996455, 2.985956104338499, 3.3375961195618156, 4.9387410479971114, 2.5669113949638915, 4.069975620337335, 2.7138667102693965, 8.256287120520476, 3.8284924832299287, 7.288002882125739, 5.264495921680871, 5.544987180085951, 10.524022398659126, 8.154683889179099, 11.631078654739653, 12.19584117161956, 3.500277026946177, 5.016427894440327, 4.278422184460183, 4.182268498966923, 2.9951927363775446, 2.7031965310240786, 3.582602903412927, 2.7948641522454665, 3.402852484849224, 5.940925920898702, 3.801923411229293, 2.1034633026171727, 4.7519960427014345, 3.6450088996843233, 2.8917456070315093, 4.853056682508289, 5.0419313583495535, 12.172250644658076, 21.15509311741991, 18.84013270540655, 6.163855014620652, 16.040940042539326, 21.881485054944072, 22.72036433890723, 9.47558499525688, 15.439155322143616, 16.929750319989857, 11.036115109101901, 3.138847298438976, 4.124214798593069, 3.3933496520798436, 3.522790077446812, 6.079793257598881, 3.3856800727961582, 3.9629721927421038, 3.309512288230127, 3.210930696955926, 3.1176639605252103, 5.22462071375628, 4.903850894860758, 9.03102298019572, 5.025372568357777, 3.241861440016121, 4.558406220991583, 5.815709075412695, 2.664115418169422, 3.274396536060096, 4.139266064512589, 2.96736414628598, 3.5859611288867987, 4.538060094941841, 6.115900989690328, 3.4649800385023233, 9.364344482104592, 5.633823954543776, 2.75776655124637, 2.86194422729071, 3.4724843341410065, 5.800107882314098, 4.810300402464175, 4.775731287985067, 2.709523106475791, 6.6068297245119005, 6.426240587656005, 2.7946274595545044, 6.235472573392101, 4.929755354498033, 6.495325984347366, 3.1997857005761023, 3.0880466269074027, 3.1017412844242847, 6.483176904019727, 5.797377115701385, 11.238638053661457, 8.567047198294713, 5.185030800335634, 7.843861889844466, 6.542625830853641, 5.744029749080359, 6.588517321287674, 9.46346605358226, 3.3768563285221544, 6.3793965248730045, 2.953325920632667, 4.104619045786302, 4.703496738541721, 4.403133075643025, 5.286299102516402, 70.07315329115329, 5.11205099088446, 9.863784973447448, 3.2193513165875873, 8.902144659699843, 2.6441994284275725, 6.019232211888685, 9.698980406517192, 16.22310052654966, 13.091156173918186, 11.703193341620228, 6.4792958426441185, 8.349395161972206, 18.98990013435536, 14.948275721348438, 7.248278527448933, 10.690159013319969, 6.964342640470721, 2.9518917199263957, 3.9903362660990416, 2.1679360609172047, 6.071343861071269, 3.2502357767662775, 3.393566748794818, 6.0698078636960044, 6.857121986004453, 6.993584567759357, 4.487411220596423, 6.588784928987196, 3.8434624194350975, 2.518644962785985, 4.0018852097254864, 4.819934448543077, 3.0431008183181767, 2.72313837470974, 7.120654539828848, 7.391216448586894, 8.0736150031018, 6.017044591614271, 3.0567765342512154, 5.261658528020729, 3.2110591173927996, 3.5587622784643846, 7.358279228728234, 3.1167672349383095, 3.141207568192616, 4.8720041245219, 5.302246667961381, 2.6078704955119583, 3.4367431071948134, 9.17782294932008, 3.7595895737074776, 7.219280131319879, 4.822137061738725, 6.236645666602487, 3.4179139877504574, 6.767767782096392, 3.426990212889061, 3.812733644420423, 7.052604990018652, 8.040304761304908, 9.45334906893153, 3.920235543547016, 24.140274910468708, 16.726607208415373, 18.39396409990483, 15.945057315426567, 14.275309546793608, 18.919723583905572, 21.281743468982, 15.160395982931965, 7.079424029882872, 3.7525467362249407, 9.658355991840908, 14.535632907466235, 13.952036835571231, 4.378507018765073, 10.966444307810228, 5.292022433620729, 5.597450433857566, 14.008386565215638, 6.19047682475005, 7.262623740307481, 8.153147896305404, 10.957672550137266, 5.154901970970102, 4.122310861225713, 17.162521801724623, 21.167693474121165, 16.890395629598917, 9.996246437245007, 13.341016511716399, 22.27730077661001, 29.72364811655569, 22.23532624604615, 11.430823027362807, 15.578028123238925, 20.70703269503203, 11.584029746189852, 10.172120718730339, 5.036305959553789, 15.090401221382661, 8.853611958496977, 2.735843605291692, 5.510120172244545, 13.030455005570902, 16.935886490699605, 11.300445519191037, 12.845560503533951, 6.14234195668414, 3.8138499749582175, 4.888274297042865, 26.585811522032024, 5.194686361200219, 8.48564207086925, 10.068238032734108, 25.9765411019112, 18.800928659381103, 5.127556993769006, 10.811584958781491, 4.52316324809774, 8.804753652509516, 10.495744981828011, 11.389387852108726, 6.141154023554028, 5.117304291556906, 14.154232343242521, 3.937493560749994, 9.347796863872706, 16.425230076751035, 16.853543900594644, 22.059106134775586, 5.125125318977247, 11.20372204310112, 17.490571898724884, 10.708945773177248, 13.421376784547396, 14.274196208161817, 4.016155263980667, 11.566666225759912, 17.040638273721285, 4.808280530162632, 3.4780871193847, 20.008833832217924, 8.080858517893295, 14.483295654648533, 11.720068266857133, 5.532869460128043, 4.608381246878645, 10.52128354517991, 12.885676586885948, 13.876591445790426, 3.3797336449253153, 5.26835662820248, 4.569113090209291, 17.68121153498964, 9.172391231295906, 4.394093295065547, 4.837763126445579, 14.266832274694737, 5.021564583862353, 14.66239145873043, 3.8362504200361838, 3.762149808375539, 14.821494723773984, 7.288953826272036, 17.81618928146806, 10.275968537127616, 11.48509164485372, 6.026892950500826, 14.126033667585592, 5.1609674987548955, 11.197842665937396, 3.9824221626623975, 13.411577567077165, 7.251668289126805, 4.22783291522232, 7.455375297764388, 7.519005010891975, 3.6360087467218944, 9.861037003108583, 5.553645718507204, 2.8135614728107265, 16.947468189737574, 8.777986972097182, 9.103362659771888, 8.746511638404783, 11.413380402179948, 4.228386725412032, 6.926004425646948, 15.252245687367871, 12.43191363469764, 9.57251502938809, 11.258159905852462, 7.367851024936711, 4.225235896048393, 4.092021318550058, 9.646326350869096, 2.8372503425240856, 14.54999110789449, 3.5253902044940726, 15.643034742054017, 59.24215187538014, 7.977298061407684, 6.739110908871665, 13.004443101511796, 11.859732761195144, 12.382360004308662, 7.934796266370814, 13.24541733930039, 5.773022453032543, 5.609736463033397, 12.732923660501987, 12.032303017391968, 5.831263303331625, 5.658796325278847, 5.601727049752569, 7.755801828328254, 7.407464375505707, 10.281498732905847, 7.46306107215211, 7.625247030700318, 10.217811765549783, 3.293180870232421, 10.918314276040423, 4.560024069076222, 10.032159488924897, 2.8053608688123877, 7.136780239098588, 3.4517323331989704, 4.493349338554687, 3.502276596795915, 4.920393309385979, 8.93756780770564, 15.97274711773493, 20.510653614266953, 10.957077339810413, 42.479273248171936, 11.717620418533265, 15.36736908460528, 14.202841580296308, 11.682714403477284, 21.447296788669007, 17.277241697897473, 6.780946365170147, 2.869656390402709, 3.9032219361834, 7.894976593602725, 3.523380144993407, 4.527929511620875, 11.641788207646625, 6.949916071900364, 3.710555943973125, 3.58879798248702, 3.20884319469832, 9.84209189368317, 3.371783242969484, 4.987907961700459, 3.718109741605437, 5.590799318221182, 3.9277585849332044, 9.86319322576861, 2.8312314064861193, 3.352342841544187, 3.3935871897290917, 5.454867483720171, 7.762316194925872, 8.077753361916509, 3.7504300806539335, 14.253317408483307, 10.069101382621831, 5.484734574593849, 10.888972580594888, 3.1889575093294047, 3.645241502576995, 4.607641727655479, 12.45389099144125, 2.7131988957586666, 2.7155996825713924, 12.484577463019159, 5.052586303377851, 7.587243888484428, 3.7493340653047307, 8.74727225096324, 3.0670931992618793, 2.7138728286420033, 3.3181484032309916, 3.8799367209633067, 4.518851772111289, 5.1315193961390255, 7.80731095838294, 4.664166257510239, 4.053094645060024, 10.481795443351182, 16.90114482981695, 5.020740645009772, 9.068174812319402, 4.037045354867673, 8.112196812608055, 3.065699619109473, 4.69692793394486, 4.3237336883454605, 9.59382616548621, 8.987815187704456, 4.487222954834788, 5.27049732487799, 8.542210708402799, 6.82151282267552, 3.165827782465366, 3.6483629763171113, 5.32401178594072, 10.522615494315012, 8.768230266943785, 7.716090287341801, 7.660909196943245, 19.61405890820911, 27.40167521556625, 10.652535715922541, 46.96552032001368, 8.622556611203676, 18.553271008777685, 30.96398794608433, 20.849706182479554, 12.644646903121485, 12.228283844761261, 3.2226146083532656, 6.365065616062494, 4.143338422310123, 3.4798204504712635, 9.992428963398682, 2.937322526216514, 7.283758198468368, 3.008422022733467, 4.207292082306272, 4.134282345218025, 3.484996512190913, 7.877661406656472, 4.396732664397171, 7.637666550031153, 9.557679573849946, 6.9649179769704395, 8.15274115326374, 3.7873944197108407, 4.535692475259665, 3.0453664722516196, 8.366668919044837, 10.483212127615102, 15.345277024227792, 3.660088548839865, 3.022639945700637, 3.805470583007338, 10.893922372744228, 3.712393491898829, 7.798755616214913, 7.759666051329997, 13.963984299221211, 3.7606696831941018, 3.7137431913955967, 11.176020466762834, 5.719579462831584, 3.2579315495327537, 10.232766762264463, 8.344991690931097, 5.188431577784888, 8.244531202853732, 3.64802028741265, 3.367282620575064, 6.341449237815112, 9.927007359790428, 4.979974463942783, 6.906657231196722, 8.416288913652602, 9.469159100896656, 19.89784741884555, 14.095433823209117, 11.799045703971109, 8.189555675207245, 8.121671402626948, 7.862663015473439, 4.5765407422661335, 7.74018725338823, 4.3935996237085355, 3.568334049045269, 9.635638158005733, 4.169479068592448, 16.648861062958897, 4.289332387808704, 5.629208794555762, 12.155687406107678, 9.387047990726911, 7.737560674365102, 12.283353888892181, 7.437557479988481, 3.4603942846862794, 20.23293551403756, 46.54268163420294, 8.173127736625052, 35.755642726083494, 16.628220056129933, 32.56197215986155, 18.71270416402033, 20.639713711751238, 27.273703802676938, 16.900217926958724, 8.299900248120322, 6.817369800093209, 8.508805827052573, 5.838825996004275, 2.8311629154651, 3.4684512855758447, 11.300850819829346, 8.826317880714424, 9.632584254282678, 8.695068638059666, 11.49018974101276, 21.842529895577677, 10.846417859151568, 8.164523264271308, 10.675759131812976, 10.810754677413348, 4.211198532773591, 3.7313533918903112, 2.269452492149787, 6.424854847533752, 3.111790950094388, 3.865164911057402, 3.358395369876235, 3.310109842959582, 3.617910752951364, 2.74406761106117, 12.687455071631076, 3.036363195848304, 5.159968080180939, 2.6623857583749464, 3.7136089396710084, 3.705329613611548, 6.887514179358085, 8.94697871962016, 4.864752516167815, 8.066203379602655, 5.951951463183984, 5.599057235558463, 3.058599483038205, 3.3279008060358484, 7.534791429500982, 6.296877326768833, 4.770531321505954, 2.368016339736143, 5.206649655706146, 2.9689838271413316, 7.665325607302241, 12.366985140858956, 8.20633022657538, 3.785095129424615, 8.594904193683226, 4.89536930020818, 6.463412303290406, 4.504745210600457, 7.115442622310662, 2.60638858328504, 5.057270101409401, 2.586651264586798, 6.570054198993553, 5.333344159004647, 10.770975858597899, 5.608322980489671, 7.038880416149962, 3.637262765987791, 3.329399114980602, 8.012490343780527, 3.633129130287918, 4.6254289869675675, 4.036084535368058, 3.357956960917213, 14.893468642614224, 13.386684243446899, 11.860219027841449, 11.20395413922192, 17.389928638632675, 13.183626343658117, 7.820512791408323, 4.689684620541609, 23.034580669427875, 11.565169055497204, 5.505467587074295, 7.415210342870524, 4.368040972493068, 5.037578310068089, 5.654588080202841, 3.9292577898070156, 3.5756965045827425, 8.737621784795033, 12.290196031168595, 7.063217042491342, 9.459229819723069, 8.103206993435363, 18.077731176314654, 6.4415215392516405, 6.8988542416866405, 12.409449003813654, 9.559051599079597, 4.0833955143849066, 5.614577275735931, 4.493844982528387, 4.50470740288563, 5.753090331167483, 6.233969108917396, 2.9656434838301, 2.5671371236826452, 3.277038363755231, 3.376341662770828, 6.512903080806546, 2.8675292363168348, 3.27076660879281, 2.560284032558511, 4.158934251068675, 2.973045012088548, 5.501022553491417, 2.5367141091775136, 6.057660217402429, 6.017195744532922, 7.90943751852253, 4.696886272329031, 6.770222366827443, 7.284272029067325, 3.3024033577574294, 2.7523721365405476, 5.417383948682464, 8.83682734329944, 5.436063319565541, 4.036253499830207, 4.288999314907721, 8.777819858489828, 7.997470617820766, 5.534292770718881, 4.956981914977649, 6.781310079791937, 5.029523478234474, 6.103834948165019, 3.622707558183582, 3.5473257541134564, 3.5790164882310425, 3.478937097141681, 3.0659082511406797, 2.258898445327799, 3.507067273474326, 3.2322450131992264, 3.3656915404951224, 5.449940578545181, 3.05930683815454, 2.7032544976897532, 2.360104817539978, 2.705808642217565, 3.5381154994579553, 4.566902755130427, 4.359937653378471, 12.858401633342776, 3.3939122419098715, 21.290917747776394, 20.2761275228594, 15.944804169106554, 7.617373164570897, 3.965934134011157, 14.443736867134708, 2.6223124529075372, 3.134503657862256, 2.7361551835186724, 2.270264295531612, 2.916382747262638, 2.5768030479747024, 2.268277568312747, 7.390698248914471, 5.993684030424378, 7.931112890283244, 7.163810605577094, 5.929503714501362, 4.294111200867232, 7.084365226926482, 5.013880855989286, 4.6490477465708215, 7.860656648692573, 4.1772130033593005, 2.812883123714382, 2.7889591545819044, 3.0816540333180282, 3.3923030327806707, 4.940071651410667, 2.9119395295897794, 2.2309464299660378, 2.739973506277833, 2.6472666980933233, 3.316862471469453, 2.959841840927193, 2.2475490537647467, 4.3114956328375085, 2.5944364043620274, 4.686403171074727, 2.5990126331383165, 2.3765125204048902, 3.0792044041351936, 2.9506695658846027, 2.741376280436682, 2.460110455154268, 3.6491044050755512, 2.508775135848317, 2.420180385687664, 3.160318750910789, 2.2365034800955743, 4.169423918450627, 3.512325550391684, 3.262269695401675, 3.531544472954328, 2.9594315573491374, 3.396802236208445, 2.1252681280468066, 2.796986576156452, 4.43392073172576, 2.6870703438367594, 3.7965722856043134, 2.752989482718234, 2.1355460012310035, 3.001362273675583, 2.9401141605317953, 3.433752911313424, 2.5571576533317555, 2.2358456130562683, 3.151850562661432, 3.0376278769316483, 3.7582178910951516, 3.0747433972993474, 3.5001722166219027, 3.2750568373966793, 2.8566703542257668, 3.780369586423483, 2.34943618108787, 3.8773140140108158, 3.7402409108265418, 4.307227101595946, 4.347369448235522, 4.915290202197936, 2.8060638247095318, 4.526656934095484, 3.0608330703265767, 3.3611490631202194, 5.007145271628859, 3.6561395594829307, 5.495939920797788, 2.9021687059570818, 4.786616274740612, 5.174502102446473, 10.142773792213314, 7.677906702948434, 8.028559432863503, 5.3915191557602355, 5.993627263558019, 9.298773464556355, 8.275414916803909, 8.020647912788824, 5.97943530422236, 3.6932169569898257, 3.452162033371866, 3.2956071970028518, 4.373432273950126, 5.096460004360178, 2.4800624851220894, 3.347410628108694, 2.7244837881358683, 4.349988444860549, 3.917101419816923, 3.70791273184553, 3.0943380218613483, 4.022304044265548, 4.225854662800932, 3.706021367489652, 2.4404496832209106, 103.02003889890116, 70.40771255571916, 180.6244839743591, 106.22368905217593, 110.87827705719971, 86.8767836564889, 100.93608323253547, 80.19309249875894, 66.57364158502315, 64.89750736702915, 34.002826708336485, 5.168372559114647, 6.645501519706832, 7.728356866698716, 5.551895268412036, 7.201452437337248, 5.513527516207154, 3.8194861557639737, 4.144568596858828, 3.1452537780733247, 3.6652273670440705, 4.6864499884014235, 3.2426718750699113, 4.388439446347201, 5.362850532126129, 3.08205754711917, 7.946577193148589, 40.360344778012546, 6.772657295326393, 53.00105932424203, 4.289001018015423, 12.39472625504509, 31.295457303333908, 3.8180044106921573, 45.684845323809036, 5.053499776237123, 7.530680598111018, 4.300144214475564, 3.809288974151031, 4.6091287329146375, 5.523169718140998, 3.165742893413625, 4.082970127009586, 4.92886092362174, 4.314185073326914, 3.5576515767468675, 3.4385759220082144, 3.452237412634648, 4.195171863070958, 2.6752994083366524, 3.70240451098404, 4.3115350084376125, 3.795568235172236, 5.703487568298817, 7.476569097172632, 2.871619616472362, 3.494394966803423, 3.0037813197909853, 2.930672376632257, 4.819625156186446, 4.39856821489666, 2.1593345060576774, 3.4815771676338567, 4.5255471607301745, 2.3607704405360987, 4.117837512887315, 2.5441361048719386, 3.5571373641290682, 4.259943929254141, 5.961281401644279, 6.639738614331113, 4.117662061469291, 2.447264454331968, 4.950557321888224, 3.455236924488182, 3.5316883659929124, 2.8096721811291094, 2.4943600742281893, 2.336627864822367, 3.2949858791944315, 10.132253940073886, 7.333925753879853, 2.794826802728041, 3.4892963826512915, 5.548226530871039, 8.538430756379421, 6.9550045237121125, 4.899488158233342, 5.578868932887036, 5.749647705853837, 6.40417650911605, 2.259669113401129, 4.892768526537242, 2.4238813867667246, 4.580124716999003, 6.006025278135545, 5.067199891347418, 4.975921980835404, 15.67934330580299, 3.4165293630926574, 3.4623645914631758, 3.2527042363948744, 5.222861110795416, 6.92610517114132, 7.4536659034791715, 4.079179337368171, 3.9548514415560234, 5.397500989512707, 7.095310759653726, 3.311937191546731, 6.034353645708594, 2.844105212752255, 5.765453260774987, 7.047000417261657, 6.072164118678977, 4.2641315866559975, 6.3237184383407135, 5.539726086185245, 5.985508826383043, 3.517005984794344, 8.52662292040507, 5.986040190315875, 4.662217770957539, 6.870252380191421, 8.099144388662541, 3.0569350766300265, 2.844792938967704, 10.495001433143173, 3.257222219927121, 3.1221070602630903, 3.5061467338592225, 4.05445066076739, 3.2912425276452675, 5.777515014162055, 3.1254353406620945, 3.2932386027795717, 8.089268451770726, 7.643946864182857, 3.0629984928646325, 5.986780465691433, 5.155658223380775, 2.9001141606691427, 15.783029743925661, 13.854904722980494, 8.459851398849983, 17.927829401181864, 8.279202461523791, 7.949118671269329, 8.776059892207893, 10.845941384623446, 12.922195903812893, 7.129866801945511, 4.2773919327581735, 14.060671420514758, 3.806070597468839, 2.6824123189785167, 5.276042714776686, 5.7418663486165356, 4.317086215885608, 11.394888434795925, 5.222584976056337, 7.244761157525283, 6.759644967259903, 5.7624700117897145, 7.984955891307418, 5.183606892879907, 4.17963224418948, 8.298884837179802, 5.900945776466822, 3.431056887352082, 4.83133860898341, 11.569049061381875, 8.24903053892364, 8.600560000322082, 16.10193271692533, 18.02423657328949, 7.65031426296694, 8.185906855177839, 18.471253816806875, 7.005974594028252, 7.760203179543396, 3.9532189499428445, 5.923421910562973, 3.5908370591102328, 5.637797105561912, 5.201599433280265, 6.8170713290370895, 10.393524117269713, 4.7758653089831045, 9.396073867101725, 2.714946255562941, 3.5828680588836748, 4.310145496869162, 6.413586975246427, 4.903696265751731, 4.689869381555078, 5.031969552145111, 6.26752426213372, 2.971212260074257, 3.236763551977485, 2.3633899937777283, 8.30638342997146, 2.0859909216062613, 4.746502547494249, 9.90814492770871, 9.595919408426395, 4.121644790649564, 2.737064488092508, 2.5622363132631416, 6.068373541465563, 2.6590789983036336, 4.273171999357153, 3.9785190201369867, 2.49583975516715, 5.11863199414596, 3.571185951465736, 11.53325615330259, 3.9466105659833395, 4.201776007005962, 2.719906632254561, 4.222029163904216, 7.095424029824869, 4.446316182692719, 2.9270080053597964, 7.640671430453893, 4.773142977701305, 8.697817821267964, 3.8352035880508017, 6.320756077680003, 10.271060358885114, 4.9938951268716725, 7.1652613140524055, 7.854073494293902, 5.552649113324983, 4.533400900176378, 6.122769287346334, 3.269985398335661, 2.4952657989982177, 3.706291022569077, 4.125035794397414, 3.797435722794625, 4.969539888985517, 4.2041535662052745, 3.659330876096824, 2.7332480550753986, 3.309877976139648, 33.370315082144316, 6.9911811827670105, 5.365437739164386, 6.331900997491527, 2.982344736276564, 8.702715273685858, 12.459969149943925, 13.041992242754342, 11.552798315967168, 8.239452947872437, 36.75099355063425, 14.131077714590356, 13.351680904851628, 12.010877908167279, 13.959555983770437, 7.720245906535382, 4.905038843563577, 5.425944574441751, 2.7665844590494717, 3.4866808268371674, 9.911987751392811, 3.0445583440098782, 3.532443917584546, 4.877678236101232, 3.601892977183959, 5.501425516662163, 2.8896790502656, 7.243938600948006, 7.807835040620713, 2.7229141458116977, 5.190297187226156, 3.7249204597736343, 5.8297959867945846, 9.678508172876798, 10.69634258948747, 3.8227457493780577, 3.2297153187280556, 8.978772834575281, 5.506612728380773, 5.7058145633040525, 4.4672092308072004, 3.6022830917751, 7.748161136718273, 2.628923236842614, 5.656955049301413, 24.459097920258184, 5.97037569155976, 5.928202754913303, 9.317322176617516, 4.970114927876474, 3.4862431565504584, 2.8278481281879673, 3.323750937525128, 3.169952048072448, 4.600226272744185, 3.950482860328107, 5.538061634541076, 5.673130457681242, 7.7169111390007625, 4.875083979005232, 3.014093288429582, 4.5531008533647235, 7.800031515863035, 6.634378540354421, 5.626363257594054, 6.2290547959236955, 8.367763044684908, 8.255733590543116, 10.054293939249751, 12.011540173322704, 6.131448771715805, 10.709195606142092, 10.102418586361718, 6.391647785729172, 3.9330585556610362, 8.326518933797056, 3.1748198128854614, 5.818445777610672, 4.557652623095314, 5.759436456395255, 4.7329520135901895, 4.93046751456584, 7.140138889742822, 8.825399099509223, 3.4131855593752634, 5.036362991514621, 2.9543137128106576, 2.921686568471504, 6.325068065884269, 3.050715645478427, 17.706271502865306, 38.374075760998494, 17.069411731830918, 17.547229188675207, 18.806742002222272, 16.45076776799318, 20.404696207035208, 23.370365005156167, 17.158555106030924, 31.434577380653348, 5.854996525278141, 9.730732163566751, 6.6825768276295685, 4.061858626535552, 4.041261750924303, 5.448587249655748, 2.595000527346722, 4.884667394193217, 6.042703375294487, 3.8316486496354876, 4.274648933292585, 2.476451963603585, 3.409698455666196, 3.1652969640596824, 7.917295331830167, 2.9098436884585506, 7.488543419339277, 4.502061465807829, 6.218234867264257, 32.78562130270683, 2.8129403667634545, 5.349402965666192, 4.264049548151717, 3.922361628756294, 17.765649862973508, 12.013342945935445, 12.064024654077235, 7.255085120510392, 6.868594893634655, 12.662305056219514, 7.70439897206031, 17.644979733345547, 8.940236930847739, 5.8739188528302275, 8.697895540925247, 4.132209540751541, 3.4711405470370402, 3.739721518211714, 5.621872631969175, 4.209307636893434, 4.654412256817546, 9.121363094085396, 3.2647484168975542, 5.973648387234284, 5.617401149428839, 6.15537255227385, 5.354299449562076, 5.46102555886536, 3.1617826309572306, 5.7557007118241215, 7.6457741406484105, 3.3362267933178305, 3.0525588703995385, 2.775635743465162, 3.0412281851208225, 2.81843899997926, 3.2993598834310403, 3.250095198383283, 5.614546379899227, 4.751236691087626, 9.976366700737644, 6.803135623025459, 8.049371250718544, 2.802905592783449, 5.060505656495743, 3.5950990414261397, 7.229155271835554, 6.150469183621696, 4.699062993331795, 3.2329326685013813, 7.430015565703948, 2.490029604953869, 2.714889214793747, 9.014540315230798, 2.653697325898705, 8.057812770008475, 5.244401301748407, 7.7447204835133485, 7.211574860138066, 7.968753882312335, 9.151623116956568, 6.90578592866277, 4.487062862185948, 4.39966210480259, 9.832357529545586, 4.841861165794376, 11.063498929860497, 2.8416731980510432, 8.054306787570956, 3.484858810463458, 5.112470358910272, 7.216791291138096, 4.437801439014696, 8.740077637740882, 2.325834612852726, 9.524994649061693, 5.877095211755484, 5.5307223278787525, 6.264548524249454, 3.2529916436414847, 2.653601735203634, 5.238292807686522, 4.990060943555328, 3.0954489060132544, 13.03199238184501, 17.58760823705973, 8.495414905816297, 18.948414386291454, 16.471476449616354, 13.489806554178845, 9.03080052835052, 15.271186391683676, 15.114290444845937, 10.320260317964246, 4.625320509408049, 7.823896876187891, 7.1311043224114625, 2.677478178412229, 4.67884416239633, 3.641010459588523, 6.779943676194318, 6.186700397522294, 7.133739422877434, 6.518808123027156, 6.688740876357269, 2.893249760996005, 4.028736930175087, 2.497063373060643, 3.5069728858421985, 4.006057822526708, 3.810954895657643, 6.984082389603492, 6.398329862254185, 7.527349386757845, 3.087011730993767, 5.796158256369011, 2.7047649416761685, 4.425779117828655, 5.04921393603735, 4.2674770963793405, 4.39983671655441, 3.1077933041571235, 6.030892297087978, 3.2500635987249753, 2.9743076855604396, 3.3719717909679803, 5.466292281881506, 6.98008677146489, 5.9289277914966645, 4.711522295961104, 5.162412066025217, 4.839241953182652, 5.4011038343808915, 3.229668082340384, 3.855879279862835, 3.4522535773246537, 13.162788507583127, 2.440339958785702, 3.0414510543348756, 5.919859210029704, 6.206465761044553, 7.0223490605553796, 5.262879746517702, 8.103943115687443, 7.7885652968704475, 3.010319015908654, 4.077959063921685, 5.274319028943069, 3.1484788065251212, 3.0647050162760663, 3.20428060655076, 2.994627728505977, 3.8129884187499177, 3.423463859016988, 7.301833344284249, 2.617808601640788, 4.0943540074474125, 3.0252608855629117, 4.7718995718674275, 2.6489281786992582, 6.4980758907862075, 2.9576623070743886, 3.5786997535958465, 6.489599708248586, 7.523133709959249, 7.5446630233048655, 6.453812665789381, 10.485785173542444, 12.65927861148177, 5.96002146160436, 9.890029328008241, 9.507077927839317, 7.24957293728593, 15.2477463876882, 13.90558198597666, 5.436405100582933, 9.212184987202628, 4.925763571970065, 6.5507591033672865, 4.275617831607011, 9.754286520264676, 4.927800927127125, 7.50077803899694, 5.9408252920801505, 3.8625548775886624, 11.803326610393668, 9.205911716909313, 2.7414542943772933, 4.318803846944581, 3.0300849594918864, 3.3285467202206114, 14.50644911972236, 34.39424811553083, 48.99945244736792, 28.035882186583237, 54.63777789078253, 24.45383103539534, 40.48119640718159, 38.08602336833397, 43.6457974828582, 31.577215930014642, 6.790487254317565, 6.614580495234386, 3.0648037900952243, 5.180242526495527, 3.8931289893879613, 5.57005462038368, 5.575234401876747, 3.0200110868971004, 6.5222995009738245, 7.239044610608168, 3.624553072844144, 5.261960520255466, 4.072978852602629, 3.4007003440899095, 2.758911668377369, 12.0094442773684, 6.52404376499338, 4.1435983008112505, 4.102011169951315, 3.799068801139292, 9.44655903098224, 2.9887373972072155, 3.1625365970142982, 5.5954974999060205, 2.6395728781352834, 4.962668121942218, 9.382854530861822, 6.05704807712451, 2.634946638145308, 6.40539204122914, 2.748839223333725, 9.589187163347582, 10.257111481066504, 11.75039563173441, 2.6495029014489777, 3.957041794340962, 2.555327319947246, 4.798990933079088, 5.694245395499197, 5.241672359917894, 4.738691156827919, 3.2687979274797083, 3.7826525818278376, 3.286526777227643, 6.249788027271565, 6.379843833824836, 2.492474651621771, 14.016310821369066, 8.325541215731487, 2.7003896552113105, 2.99053749542958, 4.060557926675135, 5.819351417515419, 5.104042599115926, 3.362197374831105, 7.377875237221308, 4.203124588504332, 4.423964388614304, 3.7285160830999047, 6.123582259733729, 3.0104764287509487, 4.280633954031796, 4.062312290949731, 11.163621511995856, 4.00627308892518, 9.179407142152844, 6.455924629481684, 11.234313314156381, 2.858666732213055, 9.10037470137159, 8.102844106340818, 2.888765323613952, 9.26308181068016, 4.083400014142999, 4.123424838944773, 3.296802143646017, 15.49897229726233, 7.71553925815442, 3.4465325674933167, 4.336185196597064, 10.78738561782857, 3.3784479591223224, 6.658725112083446, 9.516831915149933, 8.121185189535879, 8.071873900707446, 9.013154047729241, 2.694177743544208, 3.029220718224051, 9.829350436254494, 3.5409276189276166, 2.682777038809556, 2.593771418584911, 6.028598534693677, 12.159306707816656, 7.133246577239325, 4.127783984520293, 5.7180044695693475, 2.712764317646821, 7.114438230386027, 4.502870448700853, 4.476244257532711, 3.381137288245874, 10.87733546637831, 6.0908575215981235, 7.02914343328227, 7.771746426189061, 10.63093198812842, 7.454604947561871, 6.603093890515776, 6.482158950360995, 2.47441428982584, 5.169842447587334, 3.6049881795681262, 7.478573770395284, 7.633849434622604, 7.697493141790402, 7.231446442684691, 9.32461053658714, 6.364267333981056, 5.158867951070134, 9.109196183943318, 3.54323936240141, 7.3152924737586424, 9.414527857995427, 3.3146650154628925, 4.870627062164225, 6.007553212317974, 4.1288290459010435, 5.483964756456672, 7.449261633198478, 9.687496680154345, 8.238639622667755, 9.877549893297372, 4.712634821532545, 6.849624857648048, 9.995417237394111, 3.462764622861181, 7.012524990999436, 3.6298942742091254, 3.9733893644681357, 7.119647591272701, 3.0315822339835905, 5.792510731881585, 6.56805244983266, 7.034768512388214, 4.35071275992634, 5.465100020193843, 3.83054974776277, 9.780194495746864, 2.7980730647556364, 9.840638530987986, 5.335626230252562, 3.7679761282848303, 9.117621552008545, 5.220432560675393, 5.99299712474362, 3.3875760210003873, 9.19599038090359, 8.86736715696457, 8.470101811182074, 3.623383390294599, 5.28000315706547, 8.67208527828728, 6.433759795866079, 6.521896728357908, 12.621715424444831, 4.469176424068329, 10.035333571319907, 3.4244042456250092, 3.191349524038447, 5.2734099253136115, 5.918884576093391, 7.017604844134411, 5.310797769575329, 8.604858668183041, 8.957725127270002, 8.660203258462094, 3.6661185500431412, 4.694590731851757, 9.626361961310344, 5.987437187406836, 3.7161498132197717, 5.162831443547606, 6.120218499397834, 5.126143576560046, 4.969199559440727, 7.510339466671459, 5.996260400704754, 10.689042952872539, 4.585257767295362, 5.948149664872591, 4.503337311050491, 2.8056552768111365, 11.6596842715022, 6.9688987515927705, 8.441683108661202, 6.020003617715756, 8.789475100033695, 3.1518534848663724, 3.7852547189030563, 5.534540449061766, 6.496867686558373, 6.532342432995721, 3.2944963536820833, 3.7887165200598005, 3.065663470068808, 2.6035902297116604, 5.091913515582489, 3.951618847938339, 3.619582936230644, 4.06093733123108, 7.920808967074201, 8.983706026512502, 11.599721577216716, 3.6233070111562977, 2.6706109077661933, 2.73609938657314, 8.631378750460858, 9.76225831242544, 5.378838876834081, 4.081239711822675, 4.5010301272225846, 3.0030775917405688, 8.430457162779737, 5.912435586276472, 3.470138651402609, 4.3910068428458295, 8.02369740775271, 6.701405445826675, 7.1548106866559555, 8.249668071983661, 8.015722541891874, 11.571012646978152, 2.97817100963793, 11.057879568606605, 11.71543355368072, 4.826973193324642, 2.6159084462150974, 5.882012612228434, 3.0728416782227392, 14.73726710276824, 5.418777458132183, 8.99718319916911, 5.1790310600119795, 7.120420702857877, 6.386195572704271, 3.8208247851811388, 7.895418273324715, 3.5745446197125155, 12.43960106907263, 6.4668817469188635, 7.572335014353137, 3.192432209397305, 6.957405700896787, 3.98793025351143, 3.7653987328062484, 9.265211090987215, 15.20264412553098, 11.84260678088661, 4.6226667658432605, 5.406383406499994, 4.599429086339869, 18.60761632149822, 33.03247514208147, 26.11318753095651, 4.316191724652569, 28.835265633182726, 38.36441690545177, 4.459179842869363, 22.467840918098833, 5.5361351740628955, 6.762171605882886, 6.732333933047687, 23.184692093404166, 12.415639530289349, 5.548423201804777, 12.158090281412717, 42.17835459621407, 10.63442069657175, 12.11193768549774, 11.663381243889107, 24.513228460498446, 32.75456957028759, 4.597053397912539, 38.86004597230255, 4.504791930986434, 23.256606376134783, 37.996564148264476, 6.30746889931372, 13.490745957036548, 5.573978222043056, 6.544054973657446, 5.091619961389968, 35.49402499029866, 23.70494933895443, 29.832071800928514, 5.215670098076765, 18.06645595693064, 6.25194780750674, 17.56526481145768, 8.620956784226646, 28.912906490229496, 5.685437112766233, 26.944340882866776, 25.994322662004226, 8.218756837338422, 11.662704001020261, 15.797887088355004, 19.695712066164873, 20.251361025273397, 26.369102535746777, 6.002121556943812, 13.824167787062695, 4.206867272599866, 15.867995658828637, 22.866349995971234, 27.913886961523335, 26.75074118679953, 4.718049267088629, 12.12818350309399, 3.248443576828045, 16.243473190807542, 5.81636636450254, 18.42767325194149, 23.565571974583765, 25.095081948632412, 10.771531537731192, 5.29654238729732, 5.558169972785147, 4.399062465166658, 4.80070823695219, 5.418791176120214, 21.044421024550708, 5.327747569715868, 13.518426197593742, 4.160584678021028, 19.961548568612347, 5.705251814469526, 12.6785617441062, 13.251678469121037, 11.222617121241559, 3.800990010777522, 14.19361194197014, 11.069232636543578, 4.327291101366174, 20.264720005742774, 4.376990379786579, 21.011414185426194, 12.837558441456542, 9.027904184957842, 22.812800288777836, 20.916281943646, 5.821086574177914, 4.048841937696893, 13.956614501094707, 3.722862163850442, 11.264653443696607, 18.590952018519634, 3.517434849350527, 14.5621123387613, 17.366868451193092, 19.033836688848684, 5.7412755258731565, 12.39903675045373, 9.680719098753945, 13.464588237655597, 21.24342146549714, 20.16696125568254, 7.214729546701717, 18.658712458977735, 10.853450143737758, 17.296918867833288, 4.090629124945512, 15.141959103908581, 7.41500836705563, 16.35862163071782, 16.133625752723503, 11.800433297142941, 4.514950899162305, 10.876643936419859, 5.961260015304717, 10.545444593958962, 4.07868232609331, 22.2115414316145, 14.12059230175346, 6.291060712044432, 25.468265515601267, 12.433886486155453, 3.1866973335915274, 12.02064688916139, 3.5620952512898687, 13.84334019566392, 17.451323257524137, 13.526518582078966, 4.230500704061419, 20.76715140868544, 7.565922348651547, 4.337338833529124, 43.416361596176536, 3.530822565556903, 16.343860197557312, 15.226870135153947, 6.394422590412261, 5.452078344707595, 4.679784447306479, 12.548988054618201, 4.841561722275304, 19.228180960825167, 4.135800392313648, 9.69550585584241, 7.1423927727272565, 10.687717096287784, 17.06548430579383, 5.0022440509957375, 8.978607995879866, 14.346592901727934, 11.931785873575574, 5.468030212188936, 4.063172672014839, 6.447499570291681, 3.578706655588882, 10.400019610232647, 11.66469172743359, 8.646865502514611, 6.777843662137956, 6.949063313539031, 11.469677767512291, 12.774625105114065, 3.651674943486829, 4.495156836721025, 4.101651069528145, 4.235227555139838, 3.667990517056854, 4.593444516302684, 12.665579549203482, 13.081080083765576, 11.822779192877828, 12.096547308658366, 8.759064861237896, 9.339590520579177, 3.5769960617225434, 10.90864352326886, 11.84963377310537, 3.765326379229348, 3.98413672664496, 10.424128203976016, 8.439149475109872, 4.734923326036782, 19.31346773732936, 3.781681486397402, 14.634020026570202, 14.056161023618882, 4.439630938471684, 2.940209767429307, 5.749061637929041, 9.128734789713837, 3.223552205977086, 4.717075318800704, 5.722361170388145, 2.973873264188549, 10.057916170077657, 3.6994082468392246, 3.661654165271881, 5.227483984680446, 12.03182341957444, 3.858552599000147, 4.18798620881323, 11.034573560153214, 3.3057904038101356, 3.2467962087378948, 14.69692286891402, 3.1484789842009935, 8.661870408871527, 4.22692621050883, 4.045128603842658, 10.525384495231467, 4.056802408319849, 11.626730667945875, 4.5620662682731075, 10.446990707782312, 10.296482495894546, 3.686586850100845, 8.325000720134685, 5.383982667634935, 4.767918223352743, 16.186098747479967, 4.446669791145568, 8.838164598964074, 2.9596734874682116, 5.554009960659008, 3.5528964736048803, 4.427223337307448, 10.748556411902934, 3.050306981931847, 11.20914981930233, 3.983095426623552, 2.830357597240472, 11.17190664571075, 5.679267282882302, 2.8225601800783484, 7.347557001465007, 3.6824751725554554, 9.524526642310688, 7.763883285478781, 5.469558081691723, 6.453071658322648, 17.66246562008396, 17.980639088894957, 22.56205328744703, 7.396196329219233, 11.779704225040073, 22.9272861836162, 16.778520965888514, 5.052162080830259, 17.042604736100756, 16.632992934589588, 20.003395515924716, 25.942596112466166, 42.50662858369954, 19.18623148215876, 27.484124200058705, 25.993230809379643, 18.750532748212027, 22.341704169774488, 30.808527476270793, 28.862501064145828, 20.924035935115224, 4.309190334737217, 6.185742022208711, 5.102443632747493, 3.4684043007030296, 6.550520055462148, 7.985354066550762, 2.8375165091812002, 6.14112904662584, 11.272742237530055, 8.424141326935771, 3.473384143339438, 2.620182238726482, 2.730369944866309, 3.386489169047065, 2.842029278336231, 2.7891970339239207, 4.920896874714933, 2.247468101367381, 7.830761791799828, 9.599799795353148, 6.697285484546289, 2.4741624193612006, 4.205388314158815, 4.955324534766471, 4.62071568406931, 2.79379749435223, 9.934252209282556, 9.558972987679766, 10.770824852288678, 2.5574802565981267, 11.595687283072428, 6.344410812633401, 6.447067232476028, 10.364949041484747, 8.070636019110045, 7.139069917162849, 4.198443698653705, 6.4168340124493355, 16.898403714449667, 8.756090732531534, 7.517434232109983, 3.201369558760965, 2.631158960396196, 7.5029105412182355, 3.985223194642186, 3.9901569809763946, 4.920971213007663, 4.686499113827814, 12.064978206848636, 4.782596367760372, 5.5133119847111365, 2.570194092983736, 2.3211491170511858, 7.4035747122909905, 2.655377476345507, 2.4288500961961637, 2.745210208250367, 4.595664818874259, 2.7771666588489365, 3.2106000704521955, 3.333949581988168, 7.946237194012389, 7.743781592669176, 25.550514946774026, 6.862100428274392, 12.7030904740986, 13.009221530691333, 14.86948381200924, 10.86327215667861, 12.809996157476938, 8.826922226415542, 9.943102923576934, 31.342952582381095, 107.51791874773016, 124.21957108961448, 113.52072673160175, 74.54606104808451, 84.19976180591856, 99.13238348491076, 66.64818870273841, 62.526633899216236, 59.823388525749394, 48.18698458720986, 43.193150233100226, 7.335442961566241, 27.107651017539187, 9.45021483453059, 29.375166207604128, 21.00621257439534, 9.392406503934074, 23.853801101132564, 8.08981779717946, 8.844771278501165, 5.936797848433455, 4.984075681002415, 5.8050835339151705, 2.0589509634269274, 4.116793935681019, 4.59318383761648, 2.8160660738428835, 3.6558816469579356, 3.155424312919561, 7.634154452835306, 9.937866636697954, 8.112311493276183, 3.09457614014851, 2.799593036846957, 5.442547156197017, 3.9345749566281887, 3.0236505506774036, 7.883699780512482, 6.703264811523185, 6.188896615759474, 6.662960239628122, 3.0543267712537836, 2.4267063028057283, 5.241560519718843, 4.75052647361678, 5.829706747106425, 3.8655200596398154, 8.607259292817737, 6.186869088671553, 6.798212526514859, 7.629168927957155, 2.9087125454241156, 4.565041086589514, 4.919073035486731, 8.726905863039475, 3.539064941283163, 6.787185892149555, 4.112158549591671, 8.103350088045616, 26.962991539004147, 17.842002205703196, 16.19782015734258, 22.765770929287715, 16.133710835775254, 17.00469377670666, 16.684533068105118, 16.286077732086913, 16.429953684368655, 14.204540835410953, 4.306540270643781, 3.9794891638989442, 3.62690463161325, 2.689964644732244, 4.619475470183013, 3.0991321821516866, 6.08467600464114, 6.047732686265035, 3.880889420558996, 3.647153618406205, 8.29363588617274, 6.02318931484458, 5.215552448936197, 3.4480179788830276, 5.065328684009574, 5.165887748751946, 68.5526064476454, 80.21462704370792, 86.84292844618984, 82.53363084560368, 69.25516045912293, 58.11331807897984, 53.93400281439727, 50.72193343855186, 43.454519907927605, 42.51097617262503, 29.862252229231398, 6.85369179600557, 3.4374900859331587, 11.558676156792359, 3.3490161716619733, 4.007011697376318, 2.739637521209239, 7.559325786295918, 5.362829228241062, 3.9763451315618923, 7.031134922165569, 6.3168668624539155, 4.618230397796988, 8.71693142957982, 2.9832307419219664, 8.916155881931031, 4.305555734448363, 106.95683317121478, 68.72237375124877, 89.28090690484221, 88.8600109552284, 64.57058684447148, 58.836528907203906, 65.44614192274089, 49.1223461594185, 54.81472736080692, 45.887471791662065, 26.095011421607836, 7.734125879445281, 4.784802680067867, 3.6761632489513945, 3.1236370750427565, 7.5611301706382354, 2.974971107181734, 6.670111561345791, 5.5253411014289915, 4.458713142547236, 4.255959630439764, 2.752264389871381, 3.4276409677515445, 3.4311962153549382, 7.0016311713061725, 4.502416482999484, 5.018262192565006, 3.502052797085878, 4.1094055854141, 2.522470280422342, 3.4545715116029916, 2.2267150795096256, 2.1303212710511557, 3.277183064186941, 3.2426564061747216, 1.9224679910172244, 3.3570144403628843, 2.877699105284255, 2.452229130142851, 2.8888724190469253, 2.4386289474001064, 3.351393756484716, 2.7593102082894063, 3.6222469859528905, 2.984463352646809, 3.016463296246468, 4.2650666432601225, 2.721471998475372, 3.270082233710374, 3.96061196217941, 2.5493312272385524, 4.319377448270949, 3.2328722506957805, 3.8916608883681336, 2.788501037350442, 4.302581375846947, 4.22887215910252, 2.2849772839893716, 4.201920357681088, 3.888988011986977, 4.752363348943373, 2.966467134506757, 3.7513187466526468, 3.9094251437063314, 2.675408881097237, 3.71416725992076, 3.2894855188121324, 3.881994174160829, 3.147828260907773, 3.952211195326782, 3.593551507801654, 4.08531590343438, 3.9785069185820197, 2.500512939459791, 3.1260030113495842, 3.3490911502230944, 3.4461267213130875, 2.1943148121919656, 3.1625988112406445, 3.7176067442005594, 2.252347840306262, 5.820186120817378, 3.4059910901586132, 3.2470411263504158, 2.876177267650788, 2.6570867141921437, 5.899242988754538, 2.322300993933451, 2.9440143773208156, 3.73042255978315, 2.920784041437859, 2.242576033262458, 5.169035346246281, 2.517247924948073, 3.622565529693471, 2.7941242520317084, 2.402663028067593, 2.978377180919094, 3.904697252196373, 3.7235616547107666, 4.629108727057257, 2.4495480512647556, 7.2008141652946325, 3.974493524871618, 2.949902381863745, 3.566794002799843, 3.3168489980576954, 3.3181168105406407, 4.300886474269274, 3.3944658719453895, 3.005905545434957, 3.134981803432657, 3.271708398364478, 5.483385231520634, 3.9705926724785687, 2.590477384816541, 2.9017194526600005, 3.212741234136862, 8.164976871299949, 4.229456552686933, 2.4671330298616514, 4.5821250007710885, 4.990286023899423, 3.815519714668241, 4.351205582730525, 3.263994091975598, 5.629713676259086, 4.768517762930956, 3.418611668712614, 2.742473939146242, 2.2954297668032035, 9.576492913806321, 5.23957010372297, 3.0216409087140703, 3.5681524560846354, 3.3045861134995076, 3.629705118802669, 3.841466426988847, 4.9018264584078794, 2.208608572924301, 4.550907993888094, 3.2977543304855725, 3.8920954917477233, 4.688105112516748, 5.490027101298474, 5.233390881700264, 3.3032160772837202, 2.865721784512712, 3.186925239994047, 4.004571641732329, 3.2577940560732754, 6.383974327035956, 5.344925290855721, 3.9473982665051413, 5.601216350433401, 4.214482958501963, 3.6847959858175443, 2.781792084548018, 3.0101774719801524, 2.493493797848027, 4.367355581091404, 2.9043288455141103, 2.7137921424254645, 2.891110352182883, 3.022047471504317, 10.638838233679044, 2.71348306323348, 6.02418412453116, 7.1148680307176155, 6.097405512774264, 9.422202555330687, 8.25424593293796, 3.4902152621816502, 3.2235797915185587, 8.847254813978049, 6.786058726205678, 4.953317158161035, 3.347855752547448, 7.955695662228186, 4.629305150049306, 2.748573738882991, 3.1885885118055373, 8.083145975706945, 4.838298146843252, 8.458436404732154, 3.1687555918718107, 20.80289330499212, 6.005666619804106, 3.7604781450161044, 3.7263633477570086, 5.916268601513957, 2.8299535252837225, 5.149337107749195, 5.186502591518587, 7.689738091480538, 12.825131918028953, 4.739866091080442, 7.508014783808134, 5.485594668286053, 2.611036393787776, 6.864885183404397, 3.4757093430515855, 7.332577830468929, 2.739344421301801, 2.6765741181718177, 11.622343640525138, 8.995618312011219, 10.562826398820038, 5.498400376389171, 5.9035399136967905, 3.0196445852071974, 4.638429303042313, 3.4541500720099925, 3.441044527636459, 4.736220306537507, 3.245766239486012, 5.042848304155034, 4.340076808293659, 6.113101152415268, 5.025598379384471, 3.117677701115376, 3.7199997583369395, 8.953737060872456, 2.5292380047247, 10.711103555934434, 9.051281957737428, 4.595103563989071, 3.485633097023152, 6.739648234338648, 4.989917269527312, 2.9663848402129847, 6.966870793178031, 3.7244639256156784, 4.127692295899647, 5.852418082068181, 4.7937182717732565, 7.201115924991852, 11.831501244186159, 2.7779191591712333, 8.19577467993697, 5.0374999333863135, 6.220082910688286, 7.870739611926701, 6.157458594848711, 10.288151174209878, 7.224895540699669, 2.8254232116869797, 3.5747197704108777, 3.4289676616898843, 4.641470852310593, 8.340102091931685, 10.883038722227385, 3.4859212270078195, 4.103826838571459, 3.217959059659829, 7.7949585527004155, 7.596660254556355, 7.828651511580289, 3.06960074156417, 9.412903684791264, 4.052738552128316, 7.700279464605342, 3.53511215888851, 6.338905053942749, 4.093605555671396, 4.109353759364835, 2.405085305504333, 2.4703974622008755, 4.339221746516977, 3.4541400461188907, 9.290063281467143, 4.095581442437475, 5.79757283119215, 4.009697764976339, 9.430814630441136, 4.295627350480178, 13.970901461094805, 5.357603789940505, 2.249545428256719, 11.611071035683693, 8.037255092511016, 4.824216149159523, 8.639864294172645, 3.7852859416833247, 14.888935685698891, 6.326469467909176, 3.294224436821447, 8.397023330020525, 6.316057147789708, 6.32919351166199, 4.104764605502281, 7.764454775871793, 11.065655316679374, 5.861802498548549, 8.428501306010386, 2.8128156720125035, 9.866772788865951, 8.596352820704702, 6.38459539353626, 9.630395042393614, 18.86011314361914, 6.5842849380469, 8.132947400338871, 8.485663731406378, 2.811223432775999, 10.613844966414167, 3.175057459902549, 2.453687309342368, 8.975221541024405, 4.504252109044837, 4.6566132233647, 5.992868274748189, 12.582848638340048, 5.372827611515768, 5.522276441496758, 15.405607336298749, 3.5581559235536178, 3.9505805480418514, 7.0096289318599, 7.264035915369571, 2.475302249653538, 7.62015221892418, 10.7430855552281, 4.5393173676405185, 6.223957705402661, 8.067086657112535, 3.247600717509458, 15.052854053613958, 3.7188686764256245, 7.384746368524639, 2.945830218797888, 2.9440914521133013, 2.7561163021296973, 5.148254753109461, 6.854938548090571, 6.728377281416721, 14.768264829449535, 4.256656456221305, 10.41480809272551, 12.425096223819303, 3.159334154260626, 3.384836480471438, 4.544206292205045, 11.710952332481687, 2.699549642372633, 4.313361449262194, 6.468810998895439, 4.3083839452960415, 11.282047439275152, 3.970642786308747, 9.18037935774927, 5.095414572273767, 4.14817190912188, 9.784086824350302, 9.351908805403243, 8.818877866795512, 13.127340975617287, 10.328739607609542, 9.58519084356269, 4.543117081483739, 8.144030240409304, 8.245029713005499, 5.105559560436222, 2.60399987108011, 3.4819394220794098, 6.839655291315125, 3.146516492012769, 8.213266902604182, 10.579917585608573, 6.852625183443063, 2.8608529353885648, 4.280229861938994, 8.199039746726685, 5.155168636032756, 7.644877302731386, 3.38613405339459, 6.443450468568222, 3.950319456598658, 8.79216643002766, 5.495058793872147, 3.226034608228526, 6.441339848165155, 3.2204872243285485, 3.0935052491453723, 3.0392315824839575, 9.84559556643928, 2.6902587553441406, 8.598464904395678, 4.688195231857894, 3.7870283299897465, 8.210469653639773, 14.167771993014801, 3.4076700115158784, 2.7982619852146446, 6.52579695074507, 7.696628229054958, 2.9041427590124327, 5.316732592746073, 16.191674307804057, 3.494315098936342, 8.886698976287855, 3.3682644827986077, 3.603495549235197, 9.130234546856949, 9.015679338811761, 127.7247494866246, 5.768832900137865, 4.741902171079083, 3.1334238720153422, 8.03701487481385, 7.041620477934559, 7.136407172561904, 7.2171774735596745, 6.126921038075533, 4.651788336432312, 8.930783487440797, 5.5683846638217815, 14.267766352875807, 9.002499816472623, 6.938035829947499, 7.577245987968936, 2.575703779848149, 6.953079208697249, 11.389121038106968, 6.667107148838256, 12.348193175102793, 7.04059316782453, 6.354103355455657, 10.91430136290015, 3.215613280019551, 6.349834828705959, 6.791707060241743, 3.1773663530148926, 2.830940667703536, 17.834052012473574, 7.108758305826499, 2.876183235993017, 3.496298221299548, 4.121320229201627, 3.3649511966690415, 3.9648034375246892, 3.845705860558579, 11.57537606650322, 8.793409896720854, 7.671030895395152, 5.9509216919413115, 7.982178733938553, 2.9852004948433613, 4.185216046958202, 9.567438677248735, 11.073814199979568, 4.569126166901678, 7.409860540866494, 5.908132904684162, 9.698936769086451, 8.273076213595028, 4.887120987691224, 12.077225178715349, 10.570725378173949, 3.178320215360297, 8.35390139162637, 3.239921175105375, 3.0185229110303773, 3.785786541529388, 10.815402475578365, 8.59649778040145, 5.691796547907473, 10.124535788034686, 8.139152960897086, 3.6043683973988463, 4.24804223174762, 11.371646846024655, 12.433466503456604, 11.732427774126808, 6.945881773968442, 3.7696453597276403, 6.263765048906839, 3.3033959397830825, 5.314701684810067, 5.471849840238279, 10.546650962874192, 3.038841446765786, 6.748754556917334, 4.927331121372604, 5.131394516951419, 10.959732326720324, 3.5266266849397536, 5.190455142704173, 8.487488724031024, 10.43022561864445, 3.1179579966847153, 10.974777092504565, 12.226779688017407, 4.776191094406732, 9.269258405014519, 7.233599385562898, 12.207953518340776, 12.631573996582404, 3.8404460844395993, 7.9408542426442725, 10.07522425028875, 4.8347070793804034, 3.8792785493105817, 14.499837055523349, 4.456719076529271, 4.089530993538506, 3.2149788938054664, 5.268412286826904, 5.671345481565603, 5.022978240461148, 5.041256436023582, 2.804311085597666, 9.134548478946405, 7.5085353403538155, 6.018365357028278, 3.3868376059176803, 7.4676273350248294, 5.500679085138013, 6.827728785494941, 7.2776326367184065, 5.235616666308093, 2.9864947821097934, 9.5362026626791, 9.203961363910034, 3.285292299087267, 14.962005681233794, 19.42795800124956, 9.752159783197087, 5.119629890397285, 2.723397213694545, 5.588143808278446, 5.056844811173566, 2.265451444100655, 7.366225966326423, 4.191574431187447, 3.0323496245735084, 3.3927660991518325, 5.85943793777718, 3.2306344551947235, 9.799953681548871, 6.061499229176028, 6.559175696973937, 3.2479152511987635, 13.704281894565904, 2.9353886581945967, 8.22421033666883, 16.76883536960327, 6.249572713433329, 6.134673450488634, 8.357470079579496, 10.750148593901423, 5.434565529343043, 3.412203422793881, 8.551373865338181, 2.587471372718647, 2.8686044418296452, 2.861483658506099, 3.7356353921761816, 6.429796658993656, 5.410699323601643, 5.93441648600501, 5.372612633456963, 3.555622266032588, 5.74504523148297, 6.902110451915528, 6.988918408893389, 2.8164768768054724, 11.666767744996903, 4.328637561329391, 5.777357394276593, 4.916141913216509, 5.137369040890288, 5.896846282639422, 3.0114249399137365, 4.023807497863708, 8.375653887465893, 8.060429046677038, 6.333123264673268, 4.191880252820876, 3.7206246393642837, 4.6697070660482245, 8.346405794158084, 7.095730366526672, 3.224109187977151, 9.649531871408797, 2.7222019563617255, 5.431120543012153, 9.120407187095944, 7.641567905825297, 6.203081208052243, 8.0868113487044, 7.368552216245388, 3.2082663931919733, 4.76908987790565, 4.441037252437858, 5.458014004718534, 3.515559193759658, 5.025806565601868, 9.811921277684636, 7.606463966514809, 5.746773249292364, 9.728412380134628, 4.630301823846997, 3.513453024075167, 2.8735835832785304, 12.079008332287914, 5.677321354023815, 3.115662511436475, 5.87090925108768, 3.56811763429729, 2.5778493784934624, 7.927677239516537, 13.755891444782296, 3.4221573059263077, 2.884288930395055, 3.4879491832042384, 4.05247731009167, 7.379002529525395, 10.164860870300373, 7.287935393542235, 6.250403809859221, 8.876289727778659, 5.4586952610546, 8.863929060438059, 7.831752331288767, 8.437845442364218, 2.7392308451569303, 6.627252039337445, 3.3562500732347584, 3.986237197275719, 15.390341755665931, 2.769166048542603, 3.8664684946544408, 6.217889213413547, 6.606556233868529, 5.556597830162623, 3.3561738777192383, 4.018752836738608, 16.158594217201237, 3.3735560968637217, 3.135948851545968, 2.6722806895222173, 3.8659383089245307, 10.182161342243623, 4.92990790182635, 3.7699988852920385, 2.586120709978571, 6.586332350951037, 6.659438899842064, 7.572476113716045, 10.675687933209419, 11.71766613752198, 7.847863410595921, 2.7408974973300295, 3.6090780198046524, 3.1571550559748838, 2.763764001835288, 4.803483945475473, 9.473873386484058, 3.381143389955411, 2.504566088775425, 15.179024064791529, 4.507086528165313, 3.587711917176651, 6.469114180901936, 7.827643393612763, 6.297363804199972, 12.326638170316984, 6.9585532387239075, 5.014712382508514, 8.179274082806202, 3.9107577653014776, 7.569444211125028, 4.699178486494775, 3.739387724717756, 3.3191976662384666, 8.882493560929877, 4.51931116050054, 2.7176013346402383, 12.13927170816418, 3.778535521403106, 7.445938436946143, 6.818904043128986, 10.289388995564876, 3.3375839489729704, 8.966882782046868, 6.194329200216558, 4.102854316402453, 6.159082347941142, 4.055337633391903, 6.572469817706674, 25.63698103253498, 8.526173826616617, 3.7176695635518415, 11.80347066173855, 7.397025194111655, 2.5474486511959364, 3.635058909674017, 3.1967650383795965, 6.225062750054678, 8.510217637059275, 3.475819881375476, 7.931230854194867, 11.65378598114021, 4.452027007078481, 5.850744540076587, 5.007551984131879, 11.26697498151853, 9.605147313222792, 3.935473624244505, 2.748485270624791, 6.456791789689578, 5.8019516122966115, 11.5152930665961, 8.440175434022096, 4.588205471150587, 8.012789718877729, 2.955631913094575, 3.326031847463514, 4.205363856594592, 7.996408081448852, 9.643556602336485, 10.412925628703485, 7.1547172429341925, 13.364411223051938, 3.5628533561411753, 3.917676806810251, 5.346153381533818, 3.619970267562925, 7.361920867131996, 9.46824955175773, 2.9794844877420226, 3.5918511318607735, 5.3351120901875255, 6.134943023294695, 11.907736012027168, 3.7654743758262867, 2.679339378183393, 16.48539850662881, 4.186552126369266, 5.931374224981173, 3.610985872447057, 3.6953845227066937, 2.997506447384937, 8.467228304553394, 5.179040496862988, 7.023246761702728, 2.5554718152196556, 2.7870577637378258, 7.285931847652633, 6.542855088198561, 5.113407293353653, 6.520417858656563, 10.139676919162708, 3.0875850602409654, 3.540940947311639, 3.4762245249444557, 9.895769919837702, 9.478412983492937, 10.400663449331613, 3.5044398794833582, 6.073909087462772, 11.699796602693295, 2.9759831042113896, 4.711026757319193, 6.571173316209351, 7.4586569955669395, 9.324951322497627, 4.822378420209829, 15.532173553146782, 4.013405115621023, 7.602827842238666, 17.726605634496593, 8.380778607249738, 12.03995629967579, 9.944835911791234, 5.942808748438271, 3.570658809935781, 9.247399209092029, 8.550776726731518, 3.2413479464557557, 9.269003833570926, 4.232721578883064, 4.380886091851967, 3.592819355142108, 14.881917553986321, 10.048801603861374, 5.457873024149355, 10.649666703446115, 12.82854722234055, 3.92328124708446, 8.455609749167369, 5.956286359992755, 4.806972633895611, 16.00801015618417, 6.5910139698729, 10.825677302893675, 8.960025867700354, 2.4312830748478595, 5.949995343722449, 4.051402436777164, 2.904730882286751, 15.905217409748095, 7.702767916720655, 14.49963266279189, 6.795675931469885, 3.7518945469432614, 3.5799068757712478, 6.836110848995817, 3.8417805426321867, 7.236123466621301, 12.791471498795728, 6.243338887180979, 6.057860146986171, 3.304008826016977, 20.31719140159816, 7.315826995462362, 6.230881509411563, 8.175704197383288, 4.879751590113335, 6.026781314267263, 9.700037702974713, 2.889961330868497, 8.173277552049361, 3.9348248116120006, 4.263405299765877, 8.84534800364754, 12.050698568380609, 5.6537389571776115, 11.44886510067177, 4.067290746907538, 4.039778599268743, 3.6531129730884, 11.520311394751367, 2.5978740477285993, 3.3553214761160928, 13.793388136253277, 8.416928883075672, 9.116284050133604, 7.471607952878847, 3.2226243284988274, 3.6436517494740355, 13.807985221560154, 6.728107961551208, 4.820210381740549, 5.939710164210818, 2.3507268269449875, 5.462818554347754, 6.272081304841315, 10.39331916170195, 12.028056537129961, 3.227962261416347, 3.0054446677950644, 4.669550140549914, 8.015185150641127, 13.53529435775717, 3.151010692417865, 9.500498008299399, 8.37215332953638, 8.570289774083168, 5.348844317771018, 10.740018839172906, 13.428147212170261, 3.7464404669140996, 12.57800634161781, 3.5257360511050297, 14.35567847075436, 22.327109845483736, 4.498300357467349, 2.416339259630721, 7.944339098763288, 2.2377445905150606, 4.7127659816472205, 3.243126087786712, 10.059997778093951, 13.33778088274102, 7.353085819851772, 4.414000911116186, 9.57146067556459, 6.373947473944643, 5.1784238216538485, 6.858866766641004, 8.571060313237037, 3.2917114088019646, 2.979212558053627, 14.411683118668364, 14.621912761137006, 8.7048627093595, 7.454379252410851, 4.627826304982929, 7.130452447677955, 10.979037119641594, 3.4159804729227843, 7.663494849855078, 3.2443143400290944, 6.469617601040695, 3.7842367355029993, 5.911532956551721, 2.4090290925800666, 3.3131508611806195, 3.6297900750413192, 3.6995418172368453, 7.08438123490922, 5.8229891081038545, 3.8092132154813045, 5.812579860017754, 10.590204124480742, 4.475726510427494, 14.40943914426395, 8.459262331179238, 9.473535774032886, 3.8076108307623846, 8.21387095627358, 5.6554782089118305, 7.2262114514166615, 6.014468902509981, 10.661711672652267, 8.036399926310335, 6.652239675349147, 11.951606885903375, 12.081681895324628, 2.8344568608456098, 6.75441004425956, 5.200413078871063, 5.903259129811917, 4.931003583824951, 8.980618585056774, 4.850325014383528, 2.818470078634158, 7.223023667423568, 8.061280638858184, 5.039411546606106, 5.816122632839907, 3.8105161760026713, 35.56104489402728, 10.45680272549538, 3.2816809657473254, 5.908428012833845, 11.261376337524045, 7.845862327851184, 11.49216597125718, 5.774005835417194, 12.724872380963848, 3.4511872812828224, 3.662225557436508, 6.5893865028529, 6.564542117717482, 5.712556569513227, 10.761616552755934, 8.21729108890812, 10.478554040781246, 12.852727152836755, 3.4899501050512707, 8.929597120527006, 4.912355679266188, 3.0368481765370117, 3.265858231538154, 3.2333171303312356, 3.349904682417895, 13.696226788134206, 12.277857289887297, 10.047819569359465, 3.328128674052158, 10.092294544848233, 10.616265807901259, 6.817517871383561, 3.1160766343264434, 8.857504123589637, 9.087158115485773, 14.027017372982131, 4.555944963837041, 6.652700526810616, 6.100493023914055, 6.7581971722948815, 3.3041332119837157, 7.916776572642488, 3.1852618016332825, 4.3242852779567365, 3.2220131402776904, 7.616550740189477, 5.878461734579647, 11.976860449017458, 3.411931311819445, 8.368814116723836, 2.9663715554301717, 12.966419001268797, 14.017900849788997, 3.953750463287197, 14.573865849311423, 12.249154693991803, 36.643050810764024, 31.87459416360215, 5.117195738544168, 31.530412806842325, 30.298926370166953, 7.237186597114612, 31.247761267208865, 39.940939548755345, 36.58672073861168, 6.095402804315151, 9.323471255605448, 21.953965147502622, 40.218398128303384, 13.971515704117467, 26.88820231459362, 24.61735023982453, 12.175347394802653, 4.183474535433708, 29.686864136173234, 29.296373033652674, 28.60519683958064, 24.779797796643898, 27.298234426148863, 18.057377139996323, 23.231709457833084, 3.3669842429659473, 28.02843732185338, 19.825258152967784, 6.135376845513947, 21.475206520885106, 7.531382700093945, 5.960878418347869, 27.256089922980635, 13.678741699849427, 16.27338529835753, 8.312547908026533, 4.894280603351804, 4.456655682643492, 6.186442777276613, 10.747045770854038, 3.776335402730141, 6.311225348626282, 20.704025480979748, 35.22064488251727, 36.69777527614395, 5.119632972143994, 3.3193032121369916, 4.093710356865397, 13.304604330349411, 11.742560596273707, 4.477508356671667, 32.34177095201273, 6.880663352313595, 8.632980159755713, 26.426222701702688, 13.869136700161024, 6.12852209853312, 8.471831115541045, 14.766685486924354, 38.843692236960266, 24.475013141832907, 22.967863949929278, 23.567822312700365, 16.271916280032652, 22.178477186645434, 3.8646107122013014, 20.887608061219833, 24.399274284703115, 9.074690617930536, 9.460715223805053, 9.854598970906846, 17.69263627942004, 24.52933530748455, 6.113553566969778, 5.512580693652314, 15.90733259113884, 5.550445981958094, 7.0534214937590765, 19.95601040261842, 5.0361028866322854, 3.713189869471746, 15.913835057986544, 4.862647242444774, 10.369313681397669, 6.073091300564874, 20.038986954647235, 17.64565340573417, 25.81901139668886, 24.861938754938553, 5.156925899042502, 5.306215296148686, 4.674776080843303, 5.3727596621507265, 4.29425429200127, 15.43862683573293, 12.361284165897272, 20.361466472826116, 15.447549365283834, 12.662721277565511, 17.4431498618701, 2.7621475398139115, 14.758105326001882, 4.91366175314544, 4.9214132075026695, 4.558300129708953, 9.045642932629196, 4.101040975618714, 17.419601006260958, 10.06401212442902, 4.685317118249695, 3.583280656197712, 11.666897978721694, 14.207105317145494, 6.199457107392653, 5.554554369492593, 4.037383430438074, 2.874119151699331, 13.163412693651683, 3.0162278699731826, 6.0391171392904495, 13.814435930851351, 4.137537940868752, 12.226153225002173, 8.973893630966076, 15.737121282838924, 14.445429032415634, 19.133138667077592, 4.241946319478441, 3.413587614998494, 4.651103455347, 12.691267046229486, 3.167656843065153, 12.66317103238968, 4.562643329692473, 4.739164768806161, 53.250300916854506, 26.57017812354175, 10.622040314992732, 13.965906848693654, 14.617828313294167, 5.198614390805028, 9.078353188307497, 16.90201939614466, 13.012036364288008, 6.28421917287742, 12.022997452274447, 4.150172691227553, 21.050236106114085, 17.836527526986124, 3.1545413129503648, 10.026959418490735, 23.59463172607077, 16.72409877493076, 11.018035038225033, 18.8813890051717, 3.082287581738539, 8.685366204564698, 9.710256627172463, 7.132984817644629, 6.424783340153026, 3.389172614105931, 3.913114096652916, 4.352124529705422, 3.5856106326485384, 10.155792431255476, 3.927795178398138, 5.8051491337151955, 4.013451699252536, 4.458247688690887, 2.521315197332936, 9.055755751787117, 11.657596922152297, 11.312795003868574, 3.1997753839620517, 5.477796881406889, 4.670737536424271, 10.060274398053858, 10.217480250065984, 4.886238568808006, 3.737722619723989, 16.165790099260253, 5.308570958609277, 3.748726487467503, 3.74085040684749, 8.69800794472715, 4.477726808889796, 8.324145620401573, 13.07504934414968, 4.9997825611459215, 14.777487587277031, 10.887107033101254, 4.671440321385944, 12.652955660470244, 10.324232609252396, 8.140481689711988, 3.674384287317552, 14.294621941540594, 19.7420722698839, 16.499642309668133, 9.382608238296267, 4.113209825036248, 10.418506750627575, 6.381653309452665, 9.350277067136979, 14.258717743393378, 5.0007169162742535, 3.9175630330601985, 11.415091888965527, 3.9519028741484123, 4.721481639438277, 8.737398761475, 5.474321986674324, 4.417064187977463, 9.439096293827928, 10.022512256355938, 3.7931064232408724, 7.529263074753477, 10.661053060344795, 3.4105062768479573, 10.72795565426598, 4.619110769313968, 16.085723345648283, 3.294619494376145, 4.080867615822125, 3.3890711172929104, 4.4214121338507315, 3.764990526733612, 13.711748087482553, 3.4870614818170567, 5.892662553574192, 8.01310376234429, 9.838562282539609, 3.4514717706447273, 6.12638337627895, 9.980485346593074, 11.760800832674798, 8.658906009514283, 11.306914419289106, 12.767455530087055, 9.353716341673593, 4.984655649625954, 3.254990172047474, 3.627128258930374, 5.762233894143215, 10.709820145756224, 3.3561608181211215, 5.522633885568033, 9.557550249633472, 3.0214714013578963, 10.814144584374237, 6.610978718025988, 8.878001177651239, 3.1117585772828518, 5.074591827079878, 3.432458053765813, 6.013664412793285, 9.629796782952505, 8.550048776305463, 10.521531182751758, 4.4415777795360585, 3.5345139719226752, 3.594978459183952, 3.3185648629578712, 4.519075642732631, 8.768694932854068, 11.748233420890845, 3.0220269054146627, 12.314575905620686, 7.7412369660780165, 2.7212337907596202, 32.323021255157826, 8.77977075759361, 4.199441672306571, 3.8694962249845566, 4.908385849540951, 26.627471231949585, 4.2779820306351155, 3.2111521622475743, 2.93941610223386, 5.834067813258773, 3.02840570761429, 3.337008425371714, 6.089532726051029, 5.267391728592215, 3.3147449257747397, 11.312665728170472, 3.7814570701607275, 3.14481391032662, 10.251703141264198, 6.981838207498235, 2.5282317717572456, 8.541775769864119, 12.947803211925299, 6.143349884066362, 6.537964088778187, 6.948005371483575, 16.63626082980025, 3.435951785339317, 2.8712484689546924, 6.239240797721478, 16.919292660129674, 3.7487880216132634, 11.47997354864655, 3.841181684227836, 4.1667809810295715, 6.10816242161825, 3.1418258463852258, 11.847609398925234, 17.113434519169374, 11.316246570887936, 3.4675891009267685, 11.79775105935348, 3.454214115207459, 3.3495854270479493, 3.1736059264182446, 10.662049643380787, 8.153771469436354, 10.97242648071195, 6.470640538526658, 10.938985303865183, 6.5134863057872, 18.329788930714695, 14.423011246732491, 15.110663529544803, 13.08282729674499, 6.249516961585935, 6.954885647360961, 8.833565532601668, 5.9129121335970325, 4.853733978318508, 4.4080604492642745, 3.2046726748796277, 12.90289887904601, 9.28261209723613, 3.78090045048421, 3.1169538218687496, 9.105657279785227, 3.189584759992523, 8.317189598703441, 3.1634327082930085, 5.4535757489364975, 9.487190009291478, 12.098761812802575, 6.746458974671802, 9.63370982235434, 2.68090991543549, 3.103630053221105, 7.616825058043971, 3.81591544940132, 2.8580698680509555, 3.847798414512371, 12.329452003027681, 4.176800932522957, 3.2239507667294687, 8.83405412659126, 3.4619701683015576, 3.3240456094728685, 2.6906721932482935, 3.0956890486735653, 3.565180873132627, 9.645360267753663, 8.582749277021893, 2.9411936398276923, 15.365532794784889, 11.422789280453781, 3.8589905360636583, 4.31069634984565, 6.173335666478685, 3.6317746417205976, 6.210930669706695, 3.97058185298592, 3.989062629574282, 6.125354388270028, 6.67840603840011, 6.740244238931369, 6.532484481335799, 4.596461412671968, 3.4002378977345815, 4.74297211447098, 4.146028510094519, 8.173434082198213, 8.243348969012814, 10.392053585195313, 7.505163936773868, 3.24320458198547, 2.8366565654315306, 3.249364964037114, 8.094009658523907, 4.692907613995269, 3.5185863636482857, 4.782293185636442, 3.806414821377866, 6.368961987821404, 6.870128216260293, 3.475565465537118, 2.6293732486104155, 7.259139548409313, 5.838232886466205, 8.83403421344822, 6.180139614891342, 2.7461204394578145, 7.940767399007096, 9.439041575606144, 3.0813200912191387, 4.340731721238134, 3.16613282304892, 4.635028920460425, 5.339179550994468, 2.8686300323230736, 2.310757985280599, 5.765749172074822, 6.625156560824448, 2.971371039515282, 13.768595101234078, 3.8314552877995522, 7.110224805116724, 3.316571194570368, 4.064796045418759, 5.248816267523681, 2.8257142410479665, 8.739077388200167, 3.3010544996829316, 5.026780458548616, 11.469706272805082, 2.934752651973694, 3.4925293046905894, 9.741855234634889, 9.89977614817935, 6.882497019573544, 2.710482646844229, 3.234143884585062, 2.9697220356657383, 15.616970440787561, 4.286387804732634, 12.332377628291152, 5.372334509862359, 3.5309060752150057, 8.566595863453857, 2.9670456992690344, 7.48383481825686, 10.731662603709488, 6.562432978837528, 4.930748278927825, 4.481392844594389, 2.8948690668175927, 7.514972335675699, 6.939903081255578, 2.9235842813692354, 4.37495676868328, 3.3476528899105045, 7.729564445370869, 5.4092233124388684, 2.656964806945369, 2.753495120426346, 2.854114015807356, 6.393186849954006, 9.508374749786928, 2.5781638583053748, 3.27913060812768, 3.306747642492932, 4.024715841492218, 10.141970280317125, 2.7245505581283074, 7.073759059993084, 11.032904402531186, 9.991313690043672, 6.4788290059686595, 2.774545202122762, 7.302775492792943, 11.203196116520866, 21.788653855281098, 6.821340531881564, 3.604705693334836, 3.8425908108644413, 3.5539238467316228, 9.743202609686081, 2.9125478452053093, 5.359517461451314, 2.8974260877630633, 5.483007128865724, 2.6498707411985984, 3.5634061613517085, 3.9426916543608934, 3.7556961489997067, 2.9542661374184136, 4.973992373144846, 3.402986601642142, 3.2374659324135826, 3.745668700867379, 3.4039479210565884, 4.549005747431144, 2.5779586557725884, 4.026860195636601, 2.5458763804587914, 2.4022013897172063, 4.7364913529935455, 2.4319501368514524, 3.1038380524003992, 3.2761307861892464, 4.569311685654947, 4.588557849519722, 4.430246920713556, 3.950205602940488, 4.219289891170871, 2.9663136332204285, 3.193803267825604, 3.171712215835531, 2.8753928023199395, 3.0946866684803167, 4.385903483574309, 5.474716769736863, 2.5275983111736844, 3.204133809549469, 3.318539576390068, 3.3025238391307434, 3.4366396674835875, 3.5147665102224774, 2.7245857733067678, 3.2064534440607755, 4.821999608507502, 2.5458402487003315, 3.805499571104497, 5.306227860206673, 2.9586495035582474, 3.491026989364559, 3.930358601689889, 4.980964195705094, 4.590332677240302, 2.5695528866449817, 4.071711385775342, 4.4886475158875765, 5.077700171043926, 4.272875785963069, 2.76337534002557, 3.296426008375256, 2.7970761939274014, 3.9584543864793758, 4.085783921327782, 5.231144817895711, 2.7418207344959855, 3.4370970650845725, 3.8154360667756952, 2.510778249641176, 4.364514278591729, 3.1503914732035754, 4.497653306528688, 2.9479127780784986, 3.629570917050479, 5.477285203461198, 3.524186472000716, 3.695638093617692, 3.5555093407381664, 2.713900697795487, 4.0693389357929215, 4.630053185695836, 2.2219712729464645, 2.357823044860596, 6.733996796397447, 4.6276076472684275, 6.608462640996836, 4.915931533077411, 5.918029830837385, 3.5087812199327466, 5.271936129402038, 4.942066300160518, 4.725552403582594, 3.3512898878789796, 3.1871061111723558, 6.0373188922880425, 2.896475254394395, 4.348559288054274, 3.458707802847591, 9.150032170504558, 6.001004664184934, 7.112223424171946, 7.012822004056657, 2.491174061500504, 2.7778463827341047, 2.2718878641383466, 5.933510298607318, 3.154244371802385, 6.209925323984385, 3.0443526197830377, 4.038680196952859, 3.6752110124258857, 6.392568105834134, 6.233446668030269, 6.284765743628046, 5.843723757846508, 5.13642095506886, 6.353049227918837, 5.327912694427844, 4.131607877695616, 7.068679552404195, 2.981369282500801, 8.83058108408646, 7.852041207808591, 3.00132003154218, 4.917168882697923, 4.655191772405727, 4.498655333308491, 5.120108049308959, 10.12323854597177, 2.3147012967722285, 7.054952289382355, 6.533182477844971, 4.651339752955774, 2.833520233714299, 2.543180510291933, 2.611330963432612, 6.597230979314109, 3.4791771605401665, 4.780276138639942, 6.628583065918901, 3.016739533239286, 4.1293664921645545, 3.7439692841326218, 4.3778649582965805, 3.4215024987273357, 5.134752510107687, 2.8417479806581687, 5.281138567397937, 5.580820736026303, 3.444944135879771, 4.822737491928847, 4.508933155522002, 5.976388045599443, 3.3229777503967326, 3.471385854371431, 5.864003445640509, 2.7028589762576076, 3.4150209301118903, 6.236766974689207, 4.029056396470635, 8.302408725339392, 5.226774263762397, 2.6535792466609167, 3.843210520579256, 3.454472843064587, 8.136934172987123, 5.196783326176446, 6.844727665752878, 5.099163567911075, 4.5971315421608265, 3.949303810093251, 6.221611003985619, 4.311730721666757, 4.474623649290966, 4.393752800806453, 4.9103095656686655, 3.040467684668115, 4.509505207279561, 11.86660807940033, 6.8850595025101, 3.7337107178362587, 4.714672461041917, 6.142379489744473, 3.725339272215684, 3.9113000981149475, 6.718013961903953, 5.7240757546622465, 3.1771841919336596, 5.052956157658125, 2.753571743973874, 3.2948400467353602, 3.3624902588592986, 2.963893773225552, 3.992047490503091, 3.9572826895906283, 4.5906341947465785, 3.3599669653011217, 7.852283358497859, 8.369233596224385, 3.5419782369264277, 3.529137104835186, 4.436806848104107, 9.195359810767101, 5.6250838612361385, 5.840831313142985, 3.9177434997372704, 4.865710199706222, 3.7696179735568327, 7.9451795595550605, 4.225910548411743, 7.145059523324655, 3.7060232464455956, 3.4077079608805216, 2.8895547557781938, 9.000483536540223, 3.146034517760889, 6.761569665866704, 4.29745072352747, 8.011816257216369, 9.780936788153447, 4.3427036419225065, 4.798716909596118, 8.197943535594243, 2.75003004416377, 8.584675987608549, 7.993848769609294, 3.2419189733092644, 15.480618971402489, 10.864625065131467, 3.7106162563450207, 2.780042310047095, 5.3455067368763, 4.776331157494311, 14.576766967702065, 2.2975625093793037, 6.398423924201774, 9.992624798321707, 3.518281020355727, 2.7630392179495065, 2.7069622080347058, 4.279853448534321, 3.119354692315771, 6.028151775309522, 8.918007625670402, 4.8005513993624005, 5.342523953107943, 8.771729089198782, 8.274633674192046, 10.58320663272648, 7.906115100268729, 15.913348280083978, 3.326599706549285, 8.431417644236987, 2.8530985458527107, 5.260753456502823, 12.233969334703763, 5.38917905876043, 2.8373710157956573, 5.148789657071421, 3.914300104980317, 8.54505668521302, 5.787340909796755, 6.3952307536735535, 3.5949056950182285, 7.345214670871336, 8.186275964223443, 7.871978893739808, 15.753200622160454, 4.453218369081413, 6.21218847044207, 8.158341239488122, 3.0202008647524097, 10.798401845139196, 4.548276804078653, 19.777755218434653, 3.5552184892956986, 3.51472714374183, 10.008565811929287, 6.980498201724265, 7.040189431037105, 8.07894097888214, 3.1503154851606796, 3.456034065035301, 7.060844004817075, 8.479438523629002, 8.258529363509146, 6.6595347232727296, 5.041993055339783, 5.234447597895502, 7.610534141512141, 10.599251503169137, 3.947518948924496, 3.765652160405734, 4.051651434032456, 3.9759575558462545, 3.741073604808266, 4.01126711095678, 9.72426028681695, 3.8369073164846874, 3.3451986125120654, 6.513055509551605, 9.225976462026289, 11.851561712853684, 6.845461642674336, 9.09610670954151, 11.296355834519472, 4.117196258137658, 3.540871829384796, 2.5351185082288286, 6.5879989849802145, 15.234149571865435, 16.762700419810358, 6.659269654719194, 8.484629187350476, 7.060457529269347, 3.9837996853901134, 3.760363842986534, 3.215953145756947, 6.2292554413125965, 7.872326897846188, 5.568947645364061, 3.7843425119088514, 11.055563227567157, 14.395628434321189, 4.088354303905632, 11.397871308251476, 3.8248465253809343, 2.6785594334412606, 5.049917690379801, 17.045243695375728, 10.330629381758088, 14.133139366496216, 5.1013696511535045, 4.483279817159895, 8.48629281491424, 4.972343706007779, 9.586594093734396, 6.719865684085359, 10.459158544744387, 3.791317079622661, 7.408866146171703, 7.64208294960564, 2.486122566393942, 3.3892187692970195, 4.436966273859748, 10.404335072225761, 8.045111647249186, 3.7780933135686867, 2.9748920465705915, 4.1343863033428745, 3.3255298633389443, 2.8903003214322087, 7.918804144801008, 9.434980969483162, 7.031075550817116, 6.471771895426674, 9.61762812734874, 7.557908985610414, 3.552913393785256, 11.139384871905241, 4.615393258750789, 8.036444468669309, 3.539159414251598, 4.223902662617979, 5.2109492417195655, 2.6652797247622844, 14.482932203072876, 3.6344847758551806, 10.652044920284427, 4.915663291414804, 7.346788761817392, 2.7772202013441802, 12.765151257046577, 9.913670016040326, 4.000663873719735, 18.045618038685454, 9.433748382500326, 12.550639804785902, 7.202600658778104, 12.125544175228757, 69.40621988651097, 7.945595551301894, 4.33662577617013, 8.374356534020723, 9.431437293245958, 19.17262614274489, 7.683303469994548, 5.705071625206319, 6.422963062021328, 5.422169216862193, 9.293033274411675, 4.378057580282043, 2.782322972956837, 10.761367858017952, 5.834402963960392, 6.591798639655348, 6.9187220198537815, 8.489287801376545, 4.045815785987955, 11.093949270974738, 8.986450011859311, 10.482522438791532, 10.071069850871362, 2.896497380825058, 2.7748680144792566, 12.868637903243606, 6.687844559145245, 9.854020257811149, 13.680904996185319, 3.493246222396169, 3.4603359051750897, 4.868925276273035, 8.308428918673153, 6.940917162656831, 10.990258486943763, 8.958790935218916, 3.636007213139032, 9.92513469304043, 4.101105423610124, 8.842641306533515, 6.22919612983293, 4.1717542058163035, 3.2043357999847597, 9.844706295679416, 4.96981499683285, 3.454933742607128, 5.561045407640096, 2.4153250254389618, 10.087195439421935, 3.6213570312278667, 6.956506186925066, 12.06823399408778, 10.208802180993493, 2.452465461557321, 4.326743960323372, 6.69402269093276, 5.304195931422371, 6.354439315110408, 8.914902544566747, 7.618153084761189, 4.503241211401265, 3.956223590340833, 6.7558210627053095, 3.7728005027047797, 2.5007944553687023, 9.522371082990885, 5.7466170851357505, 10.913341370274031, 24.145518915090875, 8.092342177342617, 4.605660642007018, 8.515292086854492, 2.9462610577195565, 4.862786348220753, 9.343670233411725, 7.614500418996341, 10.082717768169653, 7.401185214186286, 7.138843576387882, 5.503573075704798, 4.049485396589796, 6.344210800123616, 9.183389643960592, 3.4780953662692955, 4.762585659332422, 12.701573436682475, 5.232177695567803, 8.391008995104707, 8.30639311663039, 6.504438248421349, 11.3737966488065, 9.868554356407259, 10.60266780421949, 11.20234619833793, 7.846548799263554, 6.177492059240337, 16.82623480750831, 8.655539302200902, 3.1918643678413643, 6.763217182281936, 5.68589894918841, 10.471619026500106, 7.332602183260109, 3.3763024928821306, 11.265656845127642, 23.677169868419103, 3.1982330857776904, 6.981634413568953, 9.423558572453302, 9.209100531330977, 6.379925064768182, 5.428747523717074, 17.31555851104267, 3.3992639395317283, 3.6277674918591845, 3.606837307887106, 7.418824348625899, 13.811302717311746, 7.963431925989242, 12.980440791979463, 4.3157307647105485, 5.754948324684089, 7.448153765568166, 9.945148313529758, 14.498095123753844, 4.523151790861303, 2.7383275550592914, 5.870949215499171, 13.333984114202655, 5.595860640054436, 9.47804711411935, 9.006366238946207, 2.6328309755915256, 5.807423145184898, 10.214434302568343, 7.259123915877021, 6.8013431659009855, 3.894632717862479, 6.640199286125081, 5.594605143006481, 9.716848380292843, 3.192100654578742, 6.576648014729192, 3.356282521512613, 5.308077017910255, 10.280441454548503, 4.05539190798856, 11.194535195617949, 10.704805094124142, 3.2815740349609124, 7.304175930336814, 6.683263152647184, 5.376591269460988, 2.9261657003748542, 4.917664612433133, 8.467955094069493, 2.911215964418374, 19.306658538642886, 5.267493158606124, 9.77546115648566, 6.855998004960082, 6.478046175594243, 5.981059364484054, 3.1905893785730606, 5.1251517603681345, 3.1263747621875204, 7.560823314027093, 9.779460859716025, 6.223244004264856, 3.3464900687554966, 5.138126746169451, 6.726775932313343, 11.127729016200819, 7.0457333792825665, 3.392952260700182, 4.015436305762317, 8.6981440330687, 7.7070817613517075, 8.234765195126572, 7.94888628417559, 3.8359266279925337, 3.6431664619839323, 4.100109922890538, 5.735271974454976, 3.133486133669373, 8.361418812148575, 8.2273194977295, 6.741340271838544, 4.451830772608524, 4.742362754382715, 3.250934027764885, 2.8624736062031118, 2.612646861762202, 6.270764282633625, 6.376107174712151, 6.868616598005021, 8.463131024067598, 3.436693912898385, 5.839249374206836, 5.097523191772154, 3.6020147954008266, 10.62385900837205, 3.0233783072932785, 3.4526477999668437, 5.4144630459805, 3.0420556461559762, 2.687961809001836, 5.465262815547357, 8.838600369220615, 5.108600312493304, 10.316509777210536, 3.8575094609160963, 7.607226845910035, 5.834144801869596, 9.711721212254, 13.34615432247575, 10.259568133508791, 3.260881581364904, 5.126955889325999, 6.9784360949568764, 9.025038110921043, 8.598579743549285, 4.78329492826795, 9.571349136910575, 6.9723568972481225, 3.9248597827045026, 8.580725005677632, 9.393146892136427, 4.634023953442841, 5.8194088663364045, 4.419379971011358, 2.978965131752837, 3.5528024513621967, 3.1178252085437266, 4.263046048243909, 6.296653856927598, 4.129116957976185, 3.8502731408741373, 12.760170081512612, 2.732703429308401, 10.061198789538496, 2.405282773992663, 2.7256390018499195, 3.37091452671283, 5.761063769693531, 3.474877181341543, 3.0341669459697522, 11.61648959195294, 2.930911463233315, 4.769848619863011, 3.198088133961724, 5.289868380411791, 8.426872089095026, 3.365975064996236, 6.132164729775739, 5.729108636653296, 9.81381753516471, 12.083234344015453, 17.855259875872267, 5.395370329660705, 4.379569102905852, 6.871600188500432, 5.634298327239914, 6.307123284687228, 4.332951860739591, 9.556150570033132, 5.642166274005952, 2.67035741059052, 5.001399649208594, 3.794044018678026, 4.19543026546402, 5.367885001138204, 3.064028142400654, 2.8591366729155383, 7.2721728605019305, 3.338101757171174, 7.478828990375882, 10.094073719997112, 10.834676347496181, 4.243414341915717, 3.6915311930052654, 5.248827793341667, 4.462572705621293, 3.3702426015205487, 8.0715380294763, 7.811404347257492, 4.291854906870521, 3.7968143622629507, 3.1414243406423186, 3.6270767712358323, 2.758688904423007, 4.1382499524295016, 3.4948927238547824, 6.256497700976598, 11.116055954407326, 7.565042306353551, 4.747166755243036, 2.6723127102588187, 5.034442217869085, 2.587513278144093, 3.3276813654716926, 8.107318817223168, 12.543431244252435, 4.408597678412867, 7.238925152292362, 8.384660150133959, 9.053450488463097, 2.732512530181657, 9.837291263948776, 8.229442697560854, 8.304534098099438, 3.2854237453090698, 6.546968340021502, 2.8884288291683484, 3.3109944899748696, 2.4464592732642054, 3.569503163694193, 4.250679302324561, 19.101575771181654, 10.218398849599623, 5.051364643941507, 3.4242779508822117, 11.665260848767858, 2.9899673770496262, 9.098179346979023, 8.91883431348333, 2.608063615211925, 2.7682129023347772, 4.4372620436746715, 9.14786856405227, 3.754445865197127, 6.556567526543189, 3.057877249521567, 3.6216802950905844, 4.609718741249372, 2.2609878065170976, 4.539609505379771, 7.561076707349678, 3.1829792345826653, 4.241474976959678, 3.9806061767795864, 2.6761859736313935, 21.272720327769953, 15.26359038809462, 9.736576661540047, 5.8815727053170015, 7.959086202352558, 7.358304205872768, 3.6159983234537667, 2.730592881241953, 8.787074899957078, 3.0853953900184874, 2.909184003433104, 5.463749012951497, 2.6033884115307546, 4.882423765400689, 6.2027964284917365, 12.612105734094108, 8.846564485833431, 8.922672964059407, 3.1465308330377373, 9.495729993971445, 2.71497645518945, 9.645634824017362, 4.410968777298628, 2.697273196935654, 8.035806693732772, 6.34887394138775, 5.459707097555756, 3.3749835739575995, 7.471522984734227, 4.042816649107801, 3.399346055308048, 6.882610281579413, 6.436453947958659, 7.356952493870505, 2.9070969284591293, 12.941245990319132, 6.403683102791085, 11.464815508542772, 9.464116874664294, 2.939860318670972, 8.369528250415122, 8.965604728702754, 9.591620668235716, 7.6888887987621, 7.913104001969909, 6.017083855371941, 12.296231315379398, 9.548505160218886, 6.442744238532019, 3.5183413368654, 7.554042835842973, 2.6762441231772858, 2.8446091288363644, 3.097793859631168, 5.282160582273106, 2.870271691420533, 3.8344948894906437, 7.592456699174579, 9.093866631162351, 7.760592147732108, 10.449269886953209, 4.351190247469586, 62.42473698418923, 20.26837075830583, 24.893098732190307, 4.087966175707642, 11.24764684113481, 7.544003443369242, 9.877716627208509, 6.244230053737912, 5.711082345951361, 9.290210573514303, 7.496588084478022, 3.068071455987902, 3.6504139033020655, 3.9250041479468543, 6.2446758584810755, 5.963411024891126, 8.24201674335486, 3.621209873171199, 4.905758440522071, 3.753302398051762, 6.216589521548714, 5.433939510684843, 6.641767559390175, 8.155340875265557, 10.555533790441016, 14.281616209049039, 3.270833011893416, 10.725132457683598, 12.770644766075069, 4.467413247590116, 8.046278385861594, 5.2596229360089675, 4.1036032415313395, 6.427012128460044, 4.529381124377534, 4.906947543377637, 4.989941339523857, 4.039703675288276, 6.491185021946983, 7.8992354343541145, 3.470049238729166, 8.139193387890328, 7.557312829785853, 6.081181334216501, 3.054399962032044, 6.405357667489257, 17.10194967882872, 11.828661971760427, 13.922605175948608, 7.925303863859081, 5.4889987102814475, 16.35507469501691, 9.794847141319526, 5.168115404446339, 8.99407305610196, 5.836050079656802, 10.566781999665015, 7.965998606031703, 3.6358187016726395, 3.9404736753024157, 13.128353149793728, 2.8978576811611263, 5.907513823088584, 7.472867913713091, 7.517261199037275, 3.2973248445968903, 10.230885173885156, 14.83554512923529, 4.524425685022157, 5.569274198920983, 2.907983238784184, 2.772886012594146, 9.720507262382945, 10.371753709267537, 7.766784866261043, 9.403847866686753, 3.948706603277769, 6.909276968590676, 4.816441286243502, 4.127241032274742, 12.622531636976294, 8.219704612077388, 7.813855995475295, 10.195668920039077, 6.415933917517526, 10.254404519625991, 4.905730777503581, 11.99905483161574, 12.211297514976993, 14.201960382855694, 8.648300590438216, 6.315807198496669, 7.645563515587746, 11.424991413616873, 2.5153456748652094, 3.6837884732170023, 7.778137631075169, 3.5035973731186583, 8.227838622831275, 5.732620364084407, 5.725958684055178, 5.1269693037275195, 4.233524805917716, 2.940988707944999, 8.80417958118527, 3.8832284089469753, 3.9643366960116793, 6.364302358391394, 4.530186180361371, 12.660185901629372, 3.142547164280716, 4.912436098694866, 7.3558519823586135, 6.3782568906707695, 10.299812446339825, 10.415806863483718, 8.28140097738861, 14.316315629010068, 7.711892407240071, 12.60073915202982, 3.354395543234725, 6.1169766736857945, 4.723274602039476, 3.4628087600911313, 4.194679951259055, 9.547762145614012, 7.707347274383712, 4.609055296233584, 9.492414503277123, 3.485140221224046, 6.4236747797606295, 3.319769248276306, 11.014351985038072, 3.8131595636906077, 2.670034385678234, 5.610134833487342, 5.890147063188126, 8.063360482191454, 7.5080921638705, 6.852224559206349, 10.517137124260147, 7.429515747016211, 3.821653593934285, 16.55636368435002, 6.2850950123072264, 4.609487229807522, 3.1607418613950746, 4.9424619678043635, 5.023862876298015, 13.79297277084731, 4.3328229558029525, 12.457529051905624, 4.567924965811212, 5.713019127403408, 12.445394961855337, 4.0543967065786015, 7.014529491913476, 2.8519754239801736, 11.142315144810176, 4.348445574082739, 7.086319981847269, 6.503480059781713, 12.558687028656731, 6.885204626294971, 8.079249137995177, 10.32163498319444, 9.401861306283477, 3.133473005213718, 3.365602798150325, 10.115976375949801, 4.179401956275537, 3.419623183701203, 4.154738508472091, 4.737299930914469, 4.750850345144184, 6.4836665446725785, 4.214243393956397, 23.603670162485262, 25.06577421545046, 5.092810153535034, 3.211293780530762, 5.108777795285954, 23.30597542359882, 20.93748851602932, 9.114481601134326, 31.45453345600863, 15.80512147335522, 7.7878372445865764, 27.26961932552034, 30.231739104947167, 5.925220266098691, 18.238932954705597, 27.757671670204306, 4.792031448379486, 8.668627397824624, 11.681060673536313, 25.60403939430675, 7.853519069809089, 35.49863915934936, 26.48716468135795, 8.500279824264899, 6.040265560332117, 40.780527029805704, 29.566856241268717, 15.344444871450225, 7.113832411563521, 23.362889333856767, 16.971355508709077, 22.09049085071717, 18.210454416304703, 22.491342166386982, 12.683778238641603, 19.506470218940517, 4.928784316574412, 4.866335335592846, 35.639573756406186, 35.48203983783229, 23.70797720403428, 25.313153321072935, 25.475627457917867, 3.4992497627730734, 26.015218682294908, 6.927630306836228, 13.889063936494907, 25.56597821161504, 4.536332439147457, 18.966223536778237, 4.270757813849561, 3.374100504905042, 16.044435552678397, 10.41969218351244, 25.43673426202235, 19.504487099950573, 8.033499523032615, 19.382118367700084, 12.035223828454832, 8.288977628856797, 15.041582403451104, 11.167206049299702, 32.70270411282869, 14.639112740041625, 11.491847665714769, 20.468559010362004, 5.0106375776971275, 6.334039525757115, 13.028264327613437, 12.492600263135266, 5.553311893612749, 23.616350906368996, 16.935415904127456, 5.666771036392052, 14.503526224363315, 3.2346545431125318, 4.956685022626517, 13.717172788491299, 24.32545294949389, 3.677780025374699, 16.07843196155679, 9.477164338065732, 7.242083076064344, 19.01504066546954, 5.036116347117814, 20.361897482537255, 18.44454319493998, 18.328550445756168, 7.144091806041291, 16.15701557434713, 13.739111640277727, 5.302989555105154, 22.497076128228983, 19.286850700168554, 5.7602130333561785, 33.16847807468558, 5.462340360465199, 3.421816124563045, 10.759700438867357, 16.916605268655424, 8.823423932633395, 6.14716854787721, 19.859290541347054, 5.378195063976498, 4.067469205841431, 5.055340698576991, 24.112888118121695, 12.610417278296477, 15.918413721169365, 17.357651810119417, 4.904009064251259, 9.92802257706025, 9.753916588985367, 7.670033033163966, 3.5394657521418917, 4.72504973856521, 2.5200245832277255, 10.570810920930093, 9.181746204702597, 6.648724714625449, 5.149952727582681, 3.011498904431073, 8.10034338523783, 6.809766419919266, 12.41957216399514, 6.691863592455497, 4.790488826617804, 9.429836668910278, 6.266917685861969, 2.8761744776975906, 4.221351658316407, 3.859495134171904, 4.908223447442345, 5.8014594064580765, 17.104972062048063, 7.523406620591621, 4.572987408560388, 9.937769281210699, 11.61080343926858, 2.7431710045344775, 2.8315861483268483, 17.74641863221839, 6.776476223224308, 8.839965310496927, 5.619837739832977, 5.931702385504278, 16.42507915712642, 15.784669907764474, 16.807102144789262, 14.073468752509108, 3.2685770170371473, 6.586194763413018, 4.661607237517934, 12.074458102149984, 3.8366338061438605, 24.003189259604053, 19.676793867296524, 11.78987125477215, 10.688969324672152, 16.56252185109432, 14.683104130593897, 23.36591195197453, 20.63370191484711, 10.957175687400806, 3.8934217491619747, 25.110813362484233, 15.566929909756906, 13.371483573765406, 7.459887438175867, 4.962585380795973, 12.854403234492704, 4.134849559936914, 17.628449242218682, 6.061320007052886, 17.938216951295747, 3.5393548154831524, 10.059449040194817, 10.782313701989148, 17.265354339774383, 7.661851990281822, 10.160159562674469, 12.712283019647156, 17.184556911873006, 15.424481874717703, 7.036886642346759, 4.730937332534583, 17.786156435608834, 18.173552799475335, 27.319258529915412, 8.846180243610782, 2.93469371860529, 5.570008222870367, 7.007473292039789, 12.445698302535705, 4.004067278002464, 15.552827242164003, 11.088004950526193, 4.573463647590492, 3.5561691980022183, 5.3900290154395405, 14.95706631383666, 13.945235002669094, 3.419318933718152, 20.581705446844083, 4.520242178290521, 7.755729931266848, 4.144279090598843, 8.479958651001517, 5.963722509615106, 3.6869173878691504, 16.137477817385687, 4.2380232214987945, 8.303129153805145, 15.573068211919056, 4.65879198201313, 7.216176411903633, 11.68433666153252, 5.218950607968452, 11.67611306245701, 10.362056187514533, 3.4847640977044327, 14.590691848113991, 20.659876516282967, 16.051958538225776, 7.906152596204103, 26.507449978606715, 8.755085933512014, 7.733942820169339, 19.270034982059634, 13.517041235510574, 2.7099903278350848, 8.327167469587858, 6.06188537618116, 2.998847990699676, 7.752769713114262, 9.766503082662297, 8.864035901435656, 12.261915076799095, 5.840477990237241, 4.8562911397385475, 4.693858302504964, 5.689683011111911, 8.552141127466617, 3.554604176515287, 9.068577838060904, 10.22888270065337, 5.701813014973421, 12.294999840479862, 9.402261073332973, 6.66320488258684, 3.501850790486774, 14.00848326710189, 4.18576769238792, 10.113650258790003, 3.140826557628686, 5.249793777518894, 7.498993440496085, 14.293992173879854, 12.27588955476222, 12.98465696512233, 8.867336025251339, 3.325065702062469, 3.2015488853498595, 9.237806341601239, 3.6749148358983503, 7.755477849367162, 3.2019958340978976, 78.31466853514422, 4.725537776358904, 2.984701073131662, 7.335955975370707, 5.137031834490448, 7.541416429966384, 6.280937931242514, 2.518242092043728, 2.808815832947556, 2.952776013173919, 2.6629687351254057, 3.789295510604862, 2.387739439666624, 3.8442785311848944, 5.804197995508188, 7.506097802365157, 7.790910343423852, 2.745315763474263, 3.593721591710844, 6.2041924184751895, 3.7243838302967363, 6.35681556582193, 4.376077895858556, 6.072908590985342, 4.493910707236595, 4.156791034313386, 3.114989053155817, 3.9295553171249873, 3.842757722823905, 6.545311055571213, 4.4992287698093305, 11.357949004106507, 5.280399953865332, 15.682695356416318, 9.349673123126454, 8.096920936908603, 11.060520478750172, 3.2441294063854706, 13.671670330041897, 7.772205741332084, 3.5563421392020036, 4.694892258291029, 5.725610153180432, 10.281267377669145, 5.495086453285134, 10.14548066704718, 5.6895981748158455, 7.8208895186311205, 3.488490204091315, 6.723646007776275, 3.044939299347959, 7.359218992991523, 5.284525813505364, 6.988161776392334, 8.796562039521794, 3.4954582325154027, 9.025046995993776, 11.62960151798794, 3.7630718795536953, 8.283115000316581, 3.034735094189545, 3.3449925859290253, 16.892535294782522, 6.2754765024640395, 4.897687208507159, 3.1597092092501655, 3.3222533800737732, 4.404669102639694, 18.696780440818113, 8.261358719430392, 8.895480145654732, 8.830249824011393, 2.9980773894926487, 12.506220313530783, 9.326893163067686, 5.828152542692463, 3.127370056463749, 3.150098842874453, 13.667283472656298, 4.240221393231623, 6.884050942881361, 3.395433946588108, 7.2297294919762205, 72.45527761127761, 6.352635773415774, 9.523572709033218, 4.3183873488232285, 3.222951074973684, 6.821592530131555, 10.883714595616881, 2.4946444942226673, 5.847267490498121, 4.881892934728466, 3.7111489740794013, 3.011378624642537, 7.710547871399483, 3.325105761656844, 8.005683435601897, 3.279964056955173, 7.19067424016186, 2.779170440114459, 3.99509116444505, 3.075480392807824, 8.796348144126279, 3.0280129421628836, 4.752575700765846, 4.0885056052145945, 8.17835715560111, 2.7589354064822746, 3.752118914709753, 8.684306811854082, 10.14354045905031, 3.4477220922572593, 3.50388959525972, 8.420876353018059, 4.866230315539222, 2.769754108134926, 3.341485378519159, 14.179048218430303, 7.090802171054747, 3.042929752682792, 3.0718011240219036, 15.066214624611177, 3.121677473495626, 5.841156385469081, 6.747730353014408, 13.980688790373494, 2.617043869138945, 8.20081014559246, 6.95721665683652, 6.610057868336746, 8.798734435631737, 2.5856663689884862, 8.484798194924299, 5.940039420734551, 9.283867557004108, 7.342554989188685, 2.828335944319321, 3.225049522565966, 6.0605999954588725, 2.7113558819299026, 3.8582176664753858, 2.9948416662089676, 3.789640801218099, 7.271154498535708, 8.282344865750389, 3.1089310676724944, 5.2158325877680705, 7.117247593918364, 4.393044846101411, 3.436265440009971, 4.056273521866954, 2.803246738252281, 3.937245549518258, 3.5101221356122356, 5.327968722869963, 4.281896314830853, 5.474485239190822, 9.008508905310048, 2.5044033982872986, 7.1603881278398775, 2.9008088896113287, 3.317359919089824, 15.198309749042098, 10.096013663263449, 4.762715150756756, 9.006409668035143, 10.691292589907881, 5.569028240665563, 2.642276123339309, 3.0069284860035133, 10.762740347958253, 6.814380096402115, 8.351027907946, 6.705801381542128, 6.179900763287593, 4.876710930707644, 3.7650134003868345, 3.4505679818972324, 3.2155558664573203, 3.3727822178171865, 8.099526664984273, 4.082082524789694, 11.6607467783333, 2.660151376719733, 6.796049304832361, 9.548899722752966, 8.580256093795011, 3.0342769487240053, 7.980916102806449, 3.002957209201671, 12.740531542697815, 2.8330282805776035, 13.32502383214231, 7.839629292486219, 6.20037888695634, 3.5731572853117797, 2.165350165828214, 8.09594014765192, 5.474192616187835, 3.2663315855392803, 5.299500793730082, 11.253409989861126, 6.057091490494059, 5.708898301921334, 10.80334754313427, 6.1736356486096, 6.259070248058076, 7.244124620158739, 8.126062254684888, 3.1175779679825775, 5.199611950814286, 3.5834086895113595, 3.975499038618381, 2.431022845842531, 2.832347892910111, 2.5904295842601917, 6.304628396887701, 4.453632799615918, 3.0321644275648083, 3.360133870557426, 3.9145910451658157, 3.9123022547499047, 3.90425182879196, 4.475177481352737, 3.254767961523986, 4.549607044596316, 3.119131387651847, 5.164516179694727, 2.7380557045222007, 4.745593113902145, 3.5981849691901675, 2.540794693992294, 3.8931494100845088, 3.2002641944678207, 2.114881126132094, 2.986128798299466, 4.185252884877404, 3.1990925684992924, 3.3227902413460004, 3.950335298392781, 4.738799617965852, 3.6623099610511143, 4.983141498229379, 2.4016464809906957, 3.6719380764732086, 3.76971617551063, 3.9956053274366905, 4.503939846814886, 5.317887190017741, 5.138340685609925, 2.4088073116109836, 3.087433731074019, 3.1967293496595772, 5.620169244230272, 2.8100609800448675, 4.2319643657184285, 4.031592511160726, 4.837622475466087, 4.461750686014145, 3.9522499093606003, 3.141501327194486, 4.205153609043823, 3.735474016360876, 3.8140651296132377, 4.510440338491015, 4.729736920026572, 3.0801894984370874, 4.962974938220056, 4.417065756450517, 4.802253279649531, 5.493866854753569, 3.021067668629836, 3.1910177109348585, 3.750622401064183, 3.3538173836417293, 3.8461907586859745, 3.682263971366994, 2.619918859414901, 3.1188190892369207, 3.3480036262834116, 3.5787026377097946, 3.334802041468408, 3.0874453680704668, 4.8880338197270925, 5.523356262014126, 4.477752922434904, 3.160894961087213, 2.961684187364248, 3.9814771245859446, 3.370044366075515, 4.5916326823642954, 4.57413601271131, 3.6213783422049106, 4.057694360785521, 3.7683415490308403, 4.818307951395422, 5.313952965925091, 4.98841452342254, 4.897510370775692, 2.913219062293421, 3.9705808672344722, 5.400887331496428, 3.627572093657984, 5.33251952007603, 3.4157497896748987, 6.621518166072423, 2.5486699232328904, 4.0826959676277195, 5.804139280733203, 4.848757132655042, 3.000402636658858, 6.521875146469529, 3.350912244194105, 4.815242752333571, 3.361449241112279, 5.978474167120574, 3.579972517684353, 7.065004574913586, 2.305354550233301, 2.901488385533886, 5.956679954205273, 3.049310186454003, 6.008103411661481, 4.8974787025835935, 3.266222900197226, 5.012542404003901, 2.94622989063427, 6.112876313664472, 3.2800601651604695, 3.536170060074323, 5.620940747361812, 5.107534147620061, 3.3965069079490773, 5.111124779294664, 2.935547169748344, 3.4858377063621977, 7.129949973229582, 2.9124715333847595, 4.66816997158475, 4.446160814727338, 5.434336972694468, 2.52071627675286, 6.116504887104728, 3.46370778898375, 5.4333378537831845, 4.071730110175219, 3.3341107563276107, 8.331774126858162, 6.172664496225333, 2.7990781196877483, 5.185296099906026, 5.100009806513886, 6.2048534283538785, 4.7932894057029385, 2.6225851902750064, 2.862706368982609, 3.2095895013110654, 4.184119328323392, 5.6056755942236185, 5.826372440852299, 5.144865695581286, 7.215823985583835, 4.983948523630836, 4.682783264129746, 2.4291738657669746, 2.8831256727163357, 6.357803527828494, 2.869515306463309, 5.198718245262075, 3.7485983283821054, 5.353824442796343, 3.636823575774076, 6.018408057582215, 3.4362127098995776, 2.7842965659690724, 4.762111642329841, 6.327063631357018, 3.393532494721483, 5.2221203535191405, 3.463179332015636, 4.4732824233003505, 12.230647340718562, 5.416704716845567, 3.525387001142119, 3.7654293977671176, 7.230378699843347, 14.9769484135779, 4.41528621529365, 2.9540828917805575, 7.800143630803774, 4.155536164713296, 3.477529080015375, 3.1953795465327044, 13.159236446586013, 72.42136905960146, 7.294303297713899, 2.338229595872998, 5.856287599095775, 3.5002827670426737, 3.693286996010444, 9.11994790712805, 4.430895575210079, 8.451201390319945, 7.895471576444828, 3.404531249920161, 3.958762206886917, 6.878043560042313, 4.36936048034647, 4.9791307312917015, 5.056927725516309, 5.518527554509946, 7.992895700072447, 5.685274637879909, 5.214908169221887, 5.335044022588432, 6.974751091404433, 6.513947422293189, 4.149364184510574, 59.913477811272585, 3.1192211176143556, 3.5033017870782057, 4.303855222235558, 2.4722860917782095, 4.386617310960477, 3.448678311472612, 3.6874960903601597, 7.38621175398325, 2.8599024927695122, 6.4025293791516, 8.540866752263222, 3.1378565192570727, 2.584239721728216, 8.24720591477786, 7.0261334072173005, 5.69704117338125, 7.0714739371659965, 5.5836950232911535, 3.1022187026205565, 2.395620189646704, 6.840684358242129, 3.4954069929838427, 2.8062089291140806, 2.8992009200880187, 10.135091332249758, 6.785604290186372, 6.394991345148905, 8.235076021619795, 3.9128154481530877, 5.736817522181362, 2.981824845053735, 8.565563548025667, 19.23030100752064, 8.07316912476307, 11.783357142538872, 14.98427827521142, 8.369260165983716, 8.478820397789384, 91.41955970345445, 10.873259308126276, 11.421495347917219, 6.07032685102861, 6.391779198033769, 2.976381615160123, 9.844254716418522, 14.090284314278131, 7.328779177424368, 5.6317921041882855, 7.030507184390696, 13.038182353625357, 2.9835319639896793, 3.431163497543103, 6.657753725352227, 8.711548964895623, 8.261001409252112, 7.941555356350464, 6.055559582380187, 9.610861499235698, 37.128884708704824, 41.94303425797556, 36.83337220713409, 34.11432087806141, 19.934755314141857, 38.753893516805974, 22.37403508807192, 35.224064739029984, 37.10565286817419, 8.291939508324539, 9.081498587261322, 5.462994353838671, 7.026895207964657, 9.232625766974516, 8.628870673949624, 3.0287412646546064, 5.145871613226072, 5.974244289883629, 5.45033802175683, 12.610697631333172, 4.985509889544228, 3.589316739467397, 5.3342308581190485, 6.431665404485365, 8.907880240210238, 5.726347308023, 6.669741915743065, 3.354885482606106, 5.011515197466003, 11.232669074600693, 4.237330014266034, 2.3647620018137583, 3.787896221879851, 8.920340108040051, 3.080054680218667, 5.1217360478380956, 3.658941341134826, 6.157622279457984, 6.611042934986789, 9.445862227548345, 6.845269515012106, 3.145863112681814, 3.980565553692057, 4.071562061585721, 3.8497771510787135, 7.565667705085805, 4.074470008743615, 3.7120254662665473, 3.2490712363726235, 8.87161642011483, 3.1253105799269387, 9.397222977059906, 12.59697629920163, 2.8875808277443165, 3.258078102560032, 4.089914797702956, 3.3650250904478565, 10.613807635793728, 5.86450989012706, 8.975653873601383, 14.744751482710067, 10.07840930759299, 2.715617565424604, 4.303113347692894, 8.197779830439561, 9.65716830464314, 4.690600327676785, 7.831653489858048, 4.656992890442606, 12.746305481232115, 10.231115773458072, 12.785772834388553, 10.456340135599095, 5.964239189434251, 9.849148733167286, 6.447326127654019, 4.155047990202036, 19.395117317053607, 11.934923930319671, 12.660418397002143, 7.57160999174707, 6.120073149513895, 3.0158714184380715, 4.858681371356695, 6.710564774087786, 3.8843203091185483, 7.845952025014437, 9.570050836200831, 4.658659828818362, 3.674504757886083, 5.911730362675402, 6.125591853097851, 4.7668896912331284, 6.567842558713736, 3.0380614846171783, 2.5518632849813114, 9.743247163013782, 9.217257991560983, 39.991964386103746, 11.009519519256456, 55.26938492368934, 17.195479251043558, 40.0715964044551, 24.143213203172348, 42.94175134418376, 44.827457141837506, 25.049468142074087, 4.3218511842729725, 2.66785512026205, 5.96959475725831, 2.932568709541815, 4.905729467084195, 3.408124330395754, 5.551535528879795, 6.494242366681205, 5.902997734600218, 6.098966453211773, 2.8440058864437807, 5.634703457341754, 5.25593828909399, 7.075902176691636, 3.648473074782409, 4.593512276879957, 7.6589218427218135, 6.23104709088418, 2.9050776373929983, 4.578823567834173, 9.818393654112636, 2.9808574003345063, 3.403395285048415, 6.753945456397474, 4.933214302837192, 3.103688982470223, 3.4974673682240676, 2.733916175643122, 5.504346884914076, 7.3198113950255905, 2.9847139427597784, 5.240437920764255, 11.269384628632867, 2.9900334759955784, 4.049885159104743, 5.298162099867721, 3.0421828449545187, 5.747445756272418, 3.2288880936338864, 4.47631650500651, 8.294640875775313, 4.761281861731172, 3.2181813264673558, 5.6260587442131165, 9.593471829720444, 6.097658075381995, 2.988147186816784, 2.8356557564188423, 7.358019209655077, 10.84147379522019, 17.116104498663972, 15.960726294929163, 15.051634869171592, 9.267102697931124, 6.797141844025001, 14.1747163282954, 6.930813976906139, 4.177278694276846, 12.492983093654587, 15.936472480119988, 3.76760623788759, 5.307150307340468, 7.050264179335674, 3.1405203938749437, 8.888048213324055, 10.009272785682112, 5.769138078079162, 5.745849032108332, 7.707734161579329, 8.9578097258116, 2.7353703896711563, 3.728023112447594, 5.089617330403959, 2.9084902539684485, 2.7011685259324874, 10.154358526706098, 8.7252366625503, 31.21207498454315, 44.885581348523694, 29.531867792841062, 37.835215794161776, 50.840427840052186, 37.65577949636044, 12.980728212994952, 21.10985049045769, 26.815746127800704, 30.265132239146112, 4.928258867142653, 5.8269553305162525, 8.639046266138413, 3.3346222077934895, 9.872945726692906, 7.470764206290751, 6.0401219828086035, 6.015982823004436, 2.6701437768871474, 5.449028197895645, 4.444342156633613, 2.829987684164684, 5.9740366752273975, 3.2586626145337543, 3.974681956399245, 9.44689681714761, 4.174249800984347, 3.828201027889094, 5.412459284632833, 6.493270707803935, 7.633597057385573, 7.1892223956545775, 6.659658827503533, 6.7612779360870015, 3.586432788640832, 3.58812827135784, 3.648206577341999, 2.891482074175374, 4.13212650559949, 6.677885625458829, 4.974830558881555, 3.7719907915670117, 3.0766277597820655, 3.6295464691894677, 3.2340394447811542, 4.066655243125419, 3.5177278151389597, 3.001626774928801, 2.8201852545728734, 11.081851778099564, 4.194964437777043, 6.5645225509557825, 4.630269849137764, 3.690731881518846, 6.156590980760444, 4.023986150896678, 7.795667689882007, 7.919351734915148, 6.492163802666232, 14.844596516884732, 11.28875945944893, 6.391792132558646, 11.150838167434488, 12.044679025497604, 7.871087575444676, 6.9333804653649755, 5.348418360101582, 4.415009965743415, 3.546633019451675, 9.158656859419061, 2.8693234822181757, 3.3576081921021133, 2.866443198849004, 6.556753634562339, 6.431524190366973, 6.851684936801939, 4.643330353426498, 4.82719487188953, 4.3514312486428475, 8.014270660908524, 10.120402750935899, 3.1897375271830795, 6.308578684570957, 11.679159416907895, 28.40095944855791, 34.99140992208457, 33.88882547503636, 23.293946464185694, 22.947246602253202, 23.280595624327713, 8.954048575672303, 12.891285604552362, 35.48850493003917, 11.576198378551418, 7.468911770511211, 3.321954314062198, 4.9685655996151254, 2.760535274838681, 4.439772449436828, 4.274735276772285, 4.975330320460386, 4.579166430682481, 8.124173059739855, 5.658396596152522, 3.080711026666766, 6.856017469267782, 3.139191544795432, 5.439971571826227, 4.6835212143423215, 4.8927975001536685, 5.782648065162441, 5.731996506546987, 5.906013781782445, 3.333597135656417, 2.980672486774808, 6.090815849958695, 8.780628849939747, 2.6192319295339366, 5.884637546136481, 8.644483512524705, 5.495199113251823, 4.23613837728931, 8.293705298340562, 5.9228847866022605, 8.264516581169286, 3.6736854514363886, 8.050362898106156, 6.084889294059622, 2.694516852938779, 4.364539786540644, 5.015240154950076, 5.908420178175895, 7.484806692551312, 6.662782127068893, 4.014286529767626, 5.021390822144596, 3.619235916399202, 3.6993297545132244, 4.918519266395937, 5.7039537861898495, 3.024824600027789, 4.344870793870148, 5.203257900214276, 10.263626047350446, 4.755106904171667, 3.9909981154513376, 6.460947451936467, 3.7513102457929155, 2.7984971661464684, 6.397194636148026, 3.7879399955803614, 5.341450633518507, 2.927938878201528, 6.78643370414793, 4.8772216060707105, 13.188716283811539, 4.186013837753752, 4.0685247318991795, 5.964339157514519, 3.782980973682026, 5.9337355835490575, 2.8008012698746296, 4.7089831946958585, 2.3841868082290105, 6.472073568086011, 8.29776821353427, 3.4048354587707035, 5.293710349744948, 2.9019032581307953, 6.248082666662921, 6.365004272676428, 4.0148981140996725, 7.166260680610912, 4.388943983544639, 5.387877993498237, 2.5177046922161233, 9.125167910068571, 3.6956328876929705, 4.78450455648966, 5.368198999058486, 4.934993155553585, 6.968192160803983, 5.499852897455148, 8.882350915675238, 3.3915113920272018, 2.6971289139942196, 4.85483270656337, 2.749117157045689, 3.262357479700015, 9.466325679620379, 8.814967870911945, 4.549175411889206, 2.777797470153159, 4.815706190779658, 3.5335865189634874, 6.735712273051265, 3.2201249396553315, 7.907901244424253, 3.3292370243848364, 5.785450249773111, 2.9812922564746813, 5.696289994191929, 4.02259714282262, 7.428058796370218, 7.209269692408342, 7.595631605036531, 5.12595066077482, 3.4559882237085398, 2.9944713378053947, 8.447837812233637, 5.72527727300267, 7.166487964184465, 3.308475892501262, 5.139951749041272, 4.278189728437982, 4.041666704734464, 4.327293983740233, 5.008631941617307, 2.726536066310492, 7.000608886070359, 5.799251431638528, 3.592707211039909, 5.133044974307849, 5.800981474136676, 3.9441559962563475, 6.63224647476663, 3.4858412202696547, 2.8094124540150758, 7.181876925398042, 4.124334782381566, 7.240118369632456, 2.8216087669803542, 7.5583256219412585, 8.201650593698252, 5.161651866317119, 3.5494196817975676, 2.809224133362579, 3.599914922976776, 3.0010698712465924, 4.224793949022019, 7.773448921719311, 3.252391835596836, 4.815971206990074, 3.040632580075426, 10.492931951044556, 6.777295205704674, 4.146369654169918, 3.275056218580332, 5.567746106663186, 4.441091683220551, 5.313829846363674, 5.168078973161799, 7.395291059126768, 5.410777812991453, 6.3537172802940445, 3.746111919863563, 4.547123135557156, 3.3326685507128566, 5.237641089368241, 7.208434249550665, 4.1792443459841575, 2.9036392358008056, 9.230740345214347, 4.927188223505374, 2.898634108817788, 7.115953402517446, 7.544589011103823, 5.12294446822597, 3.2900797802227526, 4.276690111793817, 3.2051233621945965, 7.536369914179445, 5.786833199636202, 6.159436866255466, 3.201686573201883, 9.459586247521276, 5.99490607291421, 5.543319896399693, 4.4805526178068, 5.873686805210926, 4.770843680629913, 3.698610974757623, 5.481380472892087, 3.3839989310465723, 4.4685940903302015, 4.258614233645417, 6.5368283661093765, 8.233920512835322, 3.443695638219972, 4.729045160486879, 8.178825382682259, 2.989992048454235, 5.265043341798066, 6.9283703891192046, 5.1722935961794585, 3.2720989179866993, 4.173259524909556, 5.108325641466989, 5.958399389323984, 7.249820654804537, 6.924982860040261, 4.796500602774172, 6.114793035836898, 3.7795942354402494, 7.822453904599114, 3.4363094221343244, 8.374921086666479, 6.733789532146304, 3.4361723774877673, 4.958823271897056, 4.4286352947881165, 2.501497748150251, 2.157392290192661, 11.171910803522392, 3.680222634835747, 16.334996779900624, 7.80633285871577, 5.396071942847059, 16.648060063033427, 5.622407791188573, 18.04107721430052, 7.722478410823025, 23.52170270283415, 19.697084299625732, 7.937385366059021, 16.195232996020618, 17.199983758687697, 3.8899655854344664, 12.882688537444782, 4.397064999454078, 35.44543147261821, 3.8059729504177082, 7.178412678057525, 18.0513780056259, 19.55421697710451, 16.16679583261899, 4.705382380859264, 8.164795988911253, 10.116307619847085, 23.210789454506955, 43.74718950789309, 32.557513252313534, 13.097254004923997, 20.366906247383447, 5.191124263365863, 28.895361749257248, 23.737155341689387, 6.113434009351137, 27.37030652621764, 36.17564520867364, 22.90819971375876, 6.749566728457261, 16.2260195453554, 5.670132824938514, 18.435456015139184, 17.559685931185413, 10.03154808228195, 4.351726962741623, 4.481581270449118, 13.56923122560667, 21.98989087592481, 19.82846290796193, 26.271917774997455, 9.49508360682217, 7.883803022039252, 6.079634016005795, 10.497451034881687, 16.23275188102773, 12.45700863057218, 9.519272232658947, 10.911105216655871, 6.552600159005227, 6.265411086204155, 13.49019612182528, 21.143385850976266, 3.760769102454099, 17.388959601059124, 24.02989660293809, 6.817224273455932, 19.252203712052548, 25.636018780790664, 19.433709463129734, 18.421217303902377, 5.941514906050034, 5.353005254634922, 6.226563231040256, 15.184556126464807, 4.193956968019113, 10.819973249401102, 24.800132561011804, 23.037356441898645, 24.923775924439994, 14.11051922986307, 5.897794240569086, 15.738074607715243, 5.2377828141945635, 6.117465897546229, 4.848031372263382, 7.515966155677436, 14.861531672957243, 14.894946950206366, 18.29888158369377, 13.234091953395886, 5.965194328858788, 11.347409876214734, 5.099238238904, 4.39876752423544, 18.358518066186132, 6.549579836303567, 4.458609821314614, 7.650548971449074, 3.2477177884215305, 7.055869764984765, 17.728201682460647, 8.831526069983815, 26.00823417849659, 4.911656206074663, 18.161758771057833, 10.981129584170725, 4.436199002604839, 14.171477689010915, 7.2220101568600406, 13.806430342282836, 4.254735330328236, 8.495917102187924, 11.565647692111309, 10.998087474058087, 15.178974590656084, 13.556257366692185, 12.354439220966972, 3.817820739668936, 26.76941236766277, 7.016187077761886, 3.5517351341999643, 15.28553978603406, 11.135892578309562, 4.30582343968923, 4.0191759342519955, 3.930498193290652, 9.814696181128012, 24.136332475246963, 12.2067423009031, 4.569485417056133, 7.341957004094373, 11.34087506997233, 5.652208097129634, 10.665538972625729, 15.342783788386997, 4.0932810608149515, 3.050424999134487, 20.275456928671385, 17.780019108875724, 10.595974784984548, 45.79437148036911, 11.91265133381164, 7.366141932424251, 10.516258396650528, 38.04680398925114, 44.860049667984185, 29.34187448480447, 29.296098606972848, 3.692359111302206, 5.663383971539455, 6.639189567160966, 12.413488948394274, 24.212043527254565, 18.011388368379304, 9.443281351765833, 20.172346942946977, 6.832004283324199, 5.668441291363832, 10.686382747418925, 9.098287500772665, 10.936553399937736, 10.157031301906999, 17.16462185426078, 8.826940884933192, 5.185505205504877, 8.968791170467881, 3.7213528899667305, 8.250176485113933, 8.06411029536279, 2.7797973671334604, 13.596137128277748, 12.9002050583479, 15.46772518314279, 17.62300223872737, 50.12962956955559, 28.206480207893424, 47.01839346751816, 6.896168516156648, 20.090265805545005, 28.731120015357877, 18.60210697262133, 3.1976858184223, 7.275068257790257, 7.90062599878026, 7.236151742888642, 14.7174966961537, 4.497980698251525, 12.091001981687066, 8.799208347028374, 6.258898796903356, 3.345814486209769, 15.270785462747485, 3.861322947657002, 6.340792357862956, 11.321717691368491, 4.459732784400859, 5.14599748995019, 3.335254222335119, 14.899366085763601, 13.908544184984596, 9.211408244734825, 9.261010518980902, 10.789138732630786, 12.388162956422102, 3.80397712172353, 3.7342021916586257, 6.38316023696426, 4.1855908312248005, 3.0660080104448775, 4.836809418098778, 4.420917583018515, 6.806322981378681, 4.1557958522041005, 3.910604078436807, 7.941608620091319, 6.114780851982991, 6.502217807368365, 5.351477763554971, 7.26296564436196, 5.258635069713655, 11.783023633146154, 8.466404554507132, 2.8730175863795573, 5.410291121360252, 3.4991399440235176, 12.599369770596917, 3.314281867595741, 3.1119162062447163, 3.027299896695229, 5.32048287517386, 11.520840665247137, 8.106239701945572, 7.399033817168926, 8.281623933363493, 4.720470605899092, 3.377839618004121, 4.717983055742117, 9.905643055643925, 3.0813169017399527, 7.971584103678801, 7.271320488511194, 6.427362625104089, 6.146714929253331, 5.094043470350057, 4.466370418310522, 9.115723629457337, 5.5113759973548575, 9.799673706667402, 4.45500738581079, 3.874093662217571, 7.5484844903236334, 16.513325350864427, 4.883325152017041, 3.584146055885841, 4.241334428739586, 2.7818816660754866, 2.8499020871457916, 3.2044630856062306, 5.220139008738785, 5.215609732381977, 4.832920738789231, 6.9954948175082, 10.600901755298045, 3.7457815313028813, 4.920480179538535, 5.412599906277899, 3.161957787064757, 2.415344612868408, 5.232164642153753, 8.976165621911225, 2.7185230109217104, 5.424509749924741, 5.636571664719517, 2.9842453300253644, 2.2191245828087496, 2.957783280858908, 2.5093860524719087, 5.056797613406541, 2.9469619719492606, 4.24955488739001, 3.8747089360801366, 3.9770401411853045, 4.097810921933752, 6.828076992657515, 9.051495366154413, 2.628737563366795, 4.196992965928023, 3.881383252730155, 2.712545780546317, 3.5361097027991484, 7.860922362510028, 5.072211101966905, 5.680031079351835, 3.4640527216692325, 4.333769289246009, 3.4070696307602666, 7.499167118213738, 8.591277938073604, 8.849960431019158, 3.094591031101159, 4.6287464855030445, 2.3998591809470127, 5.090276639198388, 4.819827576060178, 2.8791650526503303, 2.860748454519842, 5.521694575871482, 4.177472495675231, 3.206507398797636, 5.67486520653156, 3.2629428445934483, 6.2451067740089625, 5.15771219163873, 7.697492035190939, 9.45435606326878, 3.507851215467021, 3.0716219941020295, 4.213076325403498, 8.777507814921277, 4.014815221535009, 7.019487326087645, 2.7128750449678036, 5.07717072184726, 8.150440540367658, 12.855657635910616, 2.5062010121478178, 3.9143553249496597, 2.8461249494510215, 5.743429674419148, 2.8954671041331634, 5.178066689712053, 4.709746213146028, 6.573653144484559, 7.663270205511852, 9.173807638981199, 25.079317895417002, 7.787751131787531, 9.169584392686408, 5.307472639882481, 13.187248435381282, 5.353930528498123, 10.429866788167791, 8.189950157458844, 8.494935414376107, 13.395668659172772, 2.6839085374750704, 6.059091238100466, 4.437562849922472, 10.62719047731787, 7.563956650154441, 3.292600382526463, 3.2028313829677666, 2.9044303324688605, 2.7700541841161685, 11.291700111268154, 4.991587890656644, 10.63284272272838, 10.617242716458179, 6.634119525095249, 2.958082893462232, 41.59233112665932, 26.50119490215136, 11.394776284962584, 14.799028347184494, 20.437531992692225, 23.423364680446443, 36.221023530554426, 38.15625995754351, 24.745064665980358, 23.505735410081996, 7.482969488867159, 3.1083126318878387, 3.0320645838085136, 3.8065298662469815, 2.9327961707725274, 3.6851738432534025, 8.072516305182269, 3.040389140039804, 2.8541452738173483, 3.0462817070377297, 9.782365897378213, 3.614618457410399, 3.0346475529611205, 3.480298789367444, 3.241640017850123, 6.767946704619839, 7.16043743785758, 5.924297571283075, 2.657364574071112, 9.695363044443075, 11.053290444512903, 4.868196114546147, 6.55292908965069, 2.85984253702434, 6.354928559689431, 3.694729721510092, 3.104741856812996, 3.767687280838382, 8.461761245416328, 6.269857052868623, 5.951245652904742, 3.0849268626759394, 7.270459097101635, 7.519732155452355, 7.170827843911382, 3.7503239314239014, 6.547986449005954, 3.4686039548814662, 5.1971357815684405, 4.127024918859487, 4.920726704521732, 2.642216876539322, 7.461343224978061, 3.0786055383337008, 6.068407103756376, 3.707638748336413, 4.494295597850368, 9.290374624845885, 6.913670999692852, 6.448452966127664, 3.8168314165366435, 8.822938333858373, 2.888082714889426, 2.1769634268656133, 5.885883108141561, 6.136780367074579, 2.7433089769686574, 4.668317345851619, 5.957675573275779, 3.8495677876608743, 6.2654942991785125, 2.756807905720775, 2.9593829978768555, 5.120084926532027, 3.9465031389501632, 8.317263633547023, 9.913821268404455, 3.503102213338166, 8.386812940213105, 9.423811647633675, 8.966992251301837, 3.0902885213347524, 4.545040325695874, 9.470877335574418, 8.342747082571798, 7.047168693592473, 3.46773662264178, 4.06787249817395, 12.497268233022858, 2.785302542517556, 7.100708148054337, 2.845162826228402, 2.5367617249693035, 14.686052289775851, 5.015406695807419, 4.913914681485458, 4.88573151683527, 3.950250138078035, 6.941968336857898, 5.18601055234225, 3.3403620910109435, 4.604427148676781, 2.8936775587518713, 3.047852243999217, 6.368881269349315, 4.049937255249614, 6.673185565289028, 6.102471511393934, 5.322448220030913, 4.90162477113284, 5.664565300211634, 3.9719061051061195, 2.784830236827609, 9.103723036753541, 4.349255026041167, 2.8662311931383497, 4.379442614029758, 2.3853863674826696, 9.714171649266984, 2.9844119126198914, 6.0309272984656275, 2.460988958138028, 11.605910936956391, 5.276667544957002, 4.3324512029310345, 2.8821842442018486, 4.4373721892075535, 5.040670580105301, 4.300234080387842, 4.380597096872693, 3.9030131553485696, 2.4883801803530834, 2.662778693365279, 4.208658653179626, 2.698147492067633, 5.090141455086369, 2.658163156715785, 2.717990647682599, 2.3636713707054695, 5.259928532209745, 2.842227290152289, 3.8183609007944144, 2.5426200707838227, 4.737449449413266, 3.4905150133361555, 3.1968638895058374, 2.9858837454219547, 4.276700044097683, 4.365059818776351, 4.069081267610679, 5.957784378412948, 3.8255622438819867, 2.4329968911847324, 2.8618838223219827, 3.2421756941082864, 9.271488617627826, 3.128074150860252, 8.305123079033889, 8.57930445349246, 6.757522893815077, 3.371955009070694, 3.3304758232716116, 3.7269651653743363, 3.827221853874106, 2.6930626890297105, 4.050917101911849, 4.065156897828169, 2.949408390594758, 5.593922179573607, 3.627086172544695, 3.318157790680541, 4.062831156918544, 6.040661679692259, 3.161047573356189, 4.4893817255180295, 3.65795679011635, 2.5956494242122985, 4.453191361999065, 4.483936223858133, 5.046724429053458, 2.4402211041095407, 13.29932804423587, 37.34465809878423, 27.64683728463548, 32.603004012907235, 28.174041643069174, 8.981051438004867, 6.534041921154826, 21.008924345313552, 12.59399906229464, 6.789927329944657, 4.444360488753082, 4.213421624031016, 2.699462811591279, 4.157897648518732, 2.6588543896704806, 4.865620650971042, 3.8610083269262345, 5.201737061683349, 3.8950475673986658, 2.7458272778456485, 3.2841390416345044, 3.6065915758424727, 5.295518995440672, 3.375747671606223, 6.295262839099406, 8.334127538326134, 3.815430190532373, 3.583995081142031, 5.487577806591884, 2.535207963165646, 3.9475263806093546, 3.9428821203642417, 2.3944249285370427, 4.310667188435277, 4.9180294687347255, 2.999361812813114, 2.889236688533456, 2.6185419607495004, 4.059208899745121, 2.9614486594686595, 4.102540985400887, 4.715430097607793, 4.430601338262962, 3.5503813014409302, 2.1697317917719574, 3.8673008605054218, 4.112110968764455, 3.836033696068674, 5.549040271799132, 4.056130671182009, 6.696307473533138, 2.5666918921144877, 3.2634083839694186, 2.906278418453312, 2.409765207308194, 2.9711240396538035, 4.853168611039198, 7.033848159200166, 11.26420103069044, 16.666675932435307, 8.398600540411595, 9.569102344069021, 15.919571225696679, 6.770012723880018, 11.290238617585665, 6.401243535626609, 5.679063574000828, 2.945277783270857, 2.675918008364857, 4.14333695284444, 2.8600725859999208, 5.256388154108944, 2.854932808236735, 9.608319841764816, 3.9701491764635635, 4.887082678491401, 6.497383760210483, 8.100051292188594, 7.030709690726867, 4.1355358602127, 2.37923366518058, 3.476201908983881, 8.456601480129905, 63.87488008453328, 48.75599997806784, 19.71921581751924, 77.97476827921713, 18.054576005896145, 16.951470109041022, 14.781836816059524, 61.72313464985924, 58.23645613645614, 53.70457950843655, 2.4889408629187852, 4.142405404545309, 3.0987977069669754, 3.1888532227885644, 2.949012854230907, 5.257170652629633, 3.876844698889524, 12.899923834833071, 2.1678948814415886, 3.3843853543202687, 3.1024243404048097, 5.133177641696259, 5.747602756133614, 6.671820069618222, 3.3130925980493102, 6.605902974446002, 7.360508119957885, 5.802027903445363, 2.5588637288190843, 3.5116097014179015, 4.888768182824835, 3.418763690153212, 3.709933033504296, 5.786101993679744, 4.3056470167975025, 4.528894191784035, 3.5509099569523284, 5.616815057567791, 4.334565093809392, 3.970246434315084, 4.598152307755948, 3.4239666471027914, 3.0700770622456117, 5.916114190978405, 2.6885917372648054, 3.4816230700742135, 5.604404830613924, 6.013511924878114, 2.2891155841832123, 9.067029293903904, 3.233969109558481, 2.476605525741872, 2.4567358086721853, 3.258643774364527, 3.277539568014481, 3.372942377440272, 4.15734259769067, 5.308462114671033, 2.1976460932988306, 9.539056853677925, 4.44120630297613, 3.300726416401836, 9.567997853467189, 3.194322056443367, 6.594334477413836, 3.4123313422953796, 4.973469245525733, 4.90935416651097, 5.911619883305793, 4.085826193171404, 3.7399559856214193, 4.611146944015213, 4.144787449988404, 5.4876277029237, 3.0167992760011395, 3.4691641195703795, 5.092142430303837, 3.6001234035948135, 3.1095066309186077, 6.069687540009715, 3.9808375169339034, 6.774945872101097, 5.327749185643013, 3.9376821570540748, 5.078211389568086, 5.439877529369433, 4.437651137547948, 9.44235938492323, 3.5375621754777558, 2.0794319751894714, 4.215749720477624, 3.498557271263407, 3.4291805852064137, 5.265156937057119, 2.4248012911453998, 4.761566533219707, 6.886535714910485, 4.241105624378688, 3.715872976076887, 4.567262251777967, 5.177963146690905, 6.126603366238409, 5.410092808539078, 3.7169534018616095, 4.778945671869483, 7.23174824076874, 4.4022868906320936, 3.8199982475651026, 3.4348680252891293, 4.8402176643761, 3.8139333282774768, 2.901840163417512, 6.173111406179758, 3.548310052437605, 6.9279648767355395, 2.7416341687881496, 4.484996212518753, 3.2631006649433254, 7.470514991015937, 4.524746306904417, 4.537395539690431, 6.717168091593624, 7.164512974784347, 3.52247353772517, 3.747295596765178, 6.736796656053033, 8.458615931668016, 4.464732468963061, 8.992448502375238, 10.408802581142893, 3.6513532348644797, 4.613605448345374, 5.402593439765984, 3.2274682125902268, 8.293299138286446, 9.895368852351712, 11.532391929849675, 13.528148182041361, 2.7525438676063945, 2.390588866214815, 5.093851182765457, 3.92164903239105, 5.834447034885047, 3.444047367198486, 3.7605903435402066, 2.3180042638351748, 3.7362646682849006, 13.017315298044458, 16.72351279206847, 39.15191127447514, 17.88032530704574, 30.537404982617367, 56.967324310112545, 28.233809821012766, 27.55768218581899, 17.208821282647754, 26.869024815361517, 15.493701889371419, 5.851063722646831, 2.5399499710691584, 4.271241109766647, 6.138974723831527, 5.339432501519007, 8.304017372988962, 5.259290752028562, 5.166196308580925, 5.705618659399, 3.7400278902551207, 3.5859960417295964, 5.7453005723676736, 7.973036199852526, 2.794556285466611, 6.839378852926041, 4.679949501473042, 6.5689673400990864, 3.6295839171176305, 6.566364339454488, 4.6960151528181715, 8.203082930451032, 8.637504608927351, 3.7672776152665737, 2.877774457755699, 3.0909695180264873, 3.015667540081465, 3.816632584069327, 4.117855205080889, 4.7127599303134895, 14.143474374093424, 12.955732318873727, 3.522602435988217, 6.13528514721885, 7.446678291835774, 3.298631872631514, 10.37420257335587, 14.628274988314311, 3.437365542494333, 2.8700128425703393, 4.060493349888016, 5.871112598718659, 3.6372644472380484, 6.8683784745095675, 7.6140219631349035, 7.418746391638471, 6.383973152147881, 3.444601922837585, 3.1757386941394388, 7.142588277298745, 5.170338047767852, 4.602523455435361, 8.452383644562806, 3.133923480546739, 2.6344497158552156, 4.755096029556115, 3.319604100464866, 3.7872838787292284, 7.940272309789241, 8.587156125528553, 4.976510445486622, 10.716835824220327, 15.37385496061064, 13.430988096234982, 6.1604983547040195, 15.719589044866664, 16.394247011962605, 13.520115065779457, 15.528440918205954, 18.27225039365284, 4.722021876816871, 7.228620885345473, 3.0635924355867648, 3.49452909615676, 5.53344095293638, 8.309151011462234, 3.91179103624421, 4.1974385510998005, 39.47926469584159, 3.7136351210327, 6.116704084908092, 5.979420131473642, 3.174413999146392, 3.6443016514273094, 3.1866595809570284, 7.0204873276665145, 4.13535154008957, 24.33712895358495, 70.17993022573648, 42.326762414775715, 24.436723438261026, 50.24303353259187, 19.944704613003886, 27.64815514413865, 15.761388236475671, 12.299483645293206, 54.41964633461954, 22.991321310592856, 4.585285428156334, 3.99714975710241, 2.694168440635946, 10.066932074498498, 4.710336849476866, 4.294152459844717, 4.940485563684814, 7.276778970719025, 10.555559603246175, 5.777791157271204, 2.85199615655822, 3.176989077694886, 5.502808047096259, 8.89009196971461, 4.035585960744358, 3.857774359071225, 10.081535719708208, 10.411184585867014, 8.501606414413311, 3.8021543010787497, 3.9754196242216224, 2.899674390026802, 4.074545984753418, 8.885759055338305, 11.994358198703033, 2.997699924738359, 6.34988329740601, 5.380731035167708, 11.860633759311863, 2.8711443568969472, 5.495123713994561, 12.339841280630804, 7.4378377629669945, 8.324686085576316, 12.58537149911884, 3.277230710430793, 7.150760000785917, 3.937807897040407, 8.17724088340811, 8.691292268523565, 3.43838787136537, 3.680379120528333, 6.128691246050855, 7.638169175027553, 9.574890941901852, 7.154160924297002, 6.370934919855259, 9.164213740409915, 7.341596202516094, 8.076304965307655, 4.115762553689939, 8.046136449966385, 4.433108207043586, 7.630613064570262, 7.9544392383783675, 6.128173877229342, 9.888287643221181, 3.8679509948896555, 4.70842131775256, 6.416087440333007, 4.598439958114676, 3.0397534693176365, 3.770413051225467, 4.339199664774192, 4.981727539871889, 6.7517394614713755, 3.2167830531251034, 11.683589820914612, 3.878659213665751, 5.445495269058434, 7.825271307639148, 6.787395170796158, 3.617592875799451, 3.2560245931003147, 2.7525389318020994, 9.510184164317184, 3.510008480208017, 5.460393778993783, 2.486864729246996, 7.439184668326172, 3.331626136414645, 5.165156418004987, 2.902042249099742, 6.612759070294905, 4.092139251333416, 3.1710578003611496, 6.719229974496008, 4.295851635435085, 7.004282924799979, 9.404506342178879, 4.1021316475458605, 8.708232978438012, 3.7925654247123006, 3.4301956127521476, 2.943565983697562, 5.308043810295118, 4.756524575453493, 9.562773229424318, 13.253709657883954, 3.7168568234259474, 9.462122435722808, 12.901938659680749, 5.2685397636147515, 7.686222953904833, 2.572840501979668, 8.135657741994011, 4.696997122489686, 5.277335579033973, 4.689135829612708, 3.0829003349070363, 3.395576004091011, 7.305029936366286, 3.7566688746958414, 7.236274455839128, 6.784973849763848, 9.261193953379992, 4.263824092082922, 10.675627336402233, 5.490864292955705, 4.25413885803438, 3.3638007588795658, 6.066108256773258, 3.7919698748156327, 8.17188108255711, 3.6776693435402725, 8.860813260087422, 6.492924452130993, 3.0728770638561422, 2.586674096386952, 3.017643929939304, 6.0121988722725686, 9.041429554156833, 3.9253624864561347, 6.992154467624095, 3.595909838191088, 3.389962665284676, 7.086627698607579, 8.54441473499749, 3.2396372696043287, 13.480878172086753, 9.755154653477101, 8.228237984689565, 4.765226714658557, 5.8713109535373444, 4.842528985693426, 6.846213902114844, 7.994081350279718, 4.684321684404069, 6.557432014199678, 6.92383433012076, 6.21455854632294, 5.87280370180296, 5.729336510494817, 6.067315613825997, 9.761342068202502, 4.775670237577854, 10.709925513515746, 6.481099579038816, 4.188707608036026, 2.888424167092322, 5.46020910466811, 2.8070139343960956, 5.564097847719191, 6.2767361182562444, 4.297911836252055, 5.099858306221283, 4.513011649586568, 5.943024907023007, 6.807793605940961, 3.4763911900041675, 8.84885041254213, 5.958524723553822, 3.9185457855892314, 3.3792857883026857, 5.835183505037137, 4.294209448256296, 3.510020295288956, 2.4012270238499704, 6.470646644085511, 2.6906316444682408, 6.561939565372818, 4.854137238601107, 2.631634507053355, 4.748984254944185, 9.275242059372976, 7.63928450976011, 9.103127350434342, 4.298253218288266, 6.29539548025194, 3.413698812014894, 5.691865687341773, 2.748973429414671, 8.471320978101124, 3.713625019626191, 10.00039677375324, 6.804743387768813, 7.437590494054536, 7.176059023153307, 4.632618891402548, 4.06024221670686, 10.061099164217703, 8.36644310073063, 7.367114798037523, 3.313870855296004, 11.499519185956574, 4.8102173104106205, 5.3525460952070185, 6.807381276958211, 4.5048538086037935, 5.376926548991964, 4.27643858635205, 2.759521123034401, 4.044812910399368, 3.6133208496175273, 2.7017448513757523, 6.131027296748424, 3.017147547024786, 7.8483816297824, 3.39180189995763, 3.3864550586146795, 3.0822346834641987, 3.8326130813769934, 6.6980532066369465, 4.205669906108417, 2.623868557897379, 3.7422735447606943, 5.3039894015007185, 7.029801848311604, 9.561907069810454, 9.762884239418552, 5.143134170382837, 6.0628780700212594, 3.2211367852840005, 7.063591910664993, 2.679636873933776, 8.607458992164366, 10.94819599584331, 7.585320368737556, 5.460521183416201, 4.928957055798849, 5.395525623995153, 2.6171461677237096, 8.493520865860129, 3.0374881790975605, 3.2914225861250097, 3.4669223373325173, 4.864678344030025, 6.42719944763316, 6.499757508111121, 4.079993172139978, 4.171428980897542, 6.811847715927343, 4.58480139562228, 11.539212330118211, 3.988578107492886, 6.62617522578663, 5.958310152604601, 3.7006786008387933, 5.766660697095033, 3.744324309971073, 8.386212006211405, 7.504923075475642, 3.52967362799353, 2.507726120031857, 4.148894390534455, 12.825917024357501, 3.5008801482377065, 7.465995489098657, 2.626707585194708, 4.037250378117438, 3.434674164631888, 9.63308497464796, 6.671572316905903, 8.09923047506144, 3.7021223049402727, 13.44559004963195, 2.7670355034623197, 8.023361263564226, 3.63563532969802, 4.165951014424319, 2.939015264418648, 3.2956077798159304, 5.404148637379485, 3.7067794606461155, 3.583054645431554, 4.335200821163282, 8.869716570562137, 5.9818255138817165, 13.510958411517642, 3.3214320843570837, 3.1917536959881034, 7.548008893390401, 4.3571122537239, 12.344523546775505, 2.876765833200564, 5.036283375517526, 3.0232805985478093, 8.973506069033151, 13.671531537049038, 7.8810607835449, 4.717887441550692, 6.874196944304436, 7.787574013507859, 2.92292162976024, 5.956415645198924, 5.8721418758978645, 7.497215888929964, 7.228438994722271, 9.22411480761807, 3.4138111211464537, 8.309639241028849, 9.702620304184755, 5.785649821299991, 5.649388555079299, 3.006887301273084, 7.224810015715462, 9.79982325871372, 14.60123412760159, 4.831593794108789, 10.233941831935889, 7.61123561166884, 8.798353369038681, 3.644939838525533, 7.000430694136691, 4.391191417409997, 3.1343393703560865, 2.7720536872445156, 4.159493204175042, 9.448076871150176, 7.058700143730416, 3.0068290175720245, 6.72662964320313, 9.658486280527608, 8.41497220246419, 3.2464453387847785, 3.3873891650737975, 4.992496912607339, 5.071477479419729, 8.365047598489864, 8.049557193191774, 3.255594331065661, 10.169677177471492, 3.9383960853738547, 14.179661999098816, 2.975901674511686, 4.2446250228752564, 3.2437020064234336, 4.032203711054131, 2.6933475499822475, 5.633266306692393, 6.223423448013057, 9.90719214466464, 13.624581390454628, 4.615548640543631, 9.949527696691133, 8.435081195807982, 4.880115311300203, 7.417064612185395, 6.234257620769599, 12.518780098844037, 3.8278482422448667, 5.325629973242827, 10.601817828990557, 13.706475775461, 13.479935937582345, 3.861763154330168, 4.914316107890903, 10.935041018903501, 3.7567033190541883, 8.650201553619105, 5.33915559233668, 4.4444393279406285, 6.704421327130398, 7.191628195723204, 9.64071339036405, 4.371786395710307, 8.730458772222699, 4.299420830651938, 14.518590792846235, 12.022417952029247, 6.358671925327406, 10.928249785265566, 5.1475782487941, 14.234848220494605, 5.843083411565897, 6.086201161898005, 7.301558212089155, 18.60225538828541, 10.00312615260786, 4.908250068956941, 6.629373052028512, 10.107929569867094, 3.7976266729754085, 4.001503211967791, 9.439253475537292, 12.475022848197023, 9.375039138278696, 3.1029628884270446, 7.915367385444096, 14.617045132603637, 10.912227921409851, 9.619355547893992, 7.233993325239354, 10.123978321017457, 3.190706017534427, 12.52398566962512, 7.725290169124727, 5.103656776681417, 3.739400941348626, 8.232184032728115, 8.485910005543753, 4.879889072109381, 6.878799934688217, 7.681689017880899, 6.402529938242835, 2.8611788888228378, 4.4491303199298295, 3.573993842034278, 9.806932289410451, 6.305346235240652, 7.252923676975741, 17.449800857372583, 2.2127741998207937, 9.683346380542641, 7.0074642601057295, 3.6544987269437508, 10.28984488736829, 8.096789747550424, 8.758195738253917, 6.698807071144672, 4.846517227237776, 6.463061127040442, 5.795717716048098, 6.000079439102163, 8.584863006494018, 2.8651384868137484, 3.533423149125374, 5.7031172604414495, 10.239839682228176, 3.1282371406853398, 7.58136013085077, 7.0464941268175885, 3.009913513370861, 7.361030838096751, 2.6345788640559253, 10.9364719796619, 19.838973650927947, 5.9723415159312445, 6.738292567289952, 2.535487815541627, 14.5663773129035, 2.4479106223678264, 7.5297536278339425, 4.308659621454708, 3.491772372384196, 6.807232976560645, 7.992122069107788, 11.45276010969335, 8.838700050520167, 11.09173387223587, 4.625574089967695, 5.040534815088896, 2.7881456667994478, 5.042552531611675, 8.078338823562536, 3.3688783450420727, 13.721647647144334, 11.417588122574092, 6.617145355479972, 4.225866405563114, 3.9098668921810216, 8.495310236795792, 4.059379370275384, 9.356161413349282, 2.742837551339543, 9.165850558928847, 3.0643482898431937, 2.571855847670346, 3.6931786405094127, 12.29486534427348, 7.798794078321253, 7.022521186758775, 6.033248890542843, 11.001906801019391, 6.257854718660285, 6.5935024031281175, 6.53377426547866, 3.1847103839474995, 3.5911761348238453, 4.281376585521999, 8.358037935834673, 3.0994962367168233, 5.307003402665644, 3.7972898105948247, 3.208597058551648, 2.748999976690995, 3.872467071044856, 4.222313164154216, 2.803406603800088, 3.6611828183458517, 15.554431891508976, 4.251565271951998, 2.7570991071411215, 13.299931395318904, 4.649925550002788, 5.33952255890659, 10.8238286462378, 5.496523306433255, 7.109968186416155, 11.48665309301428, 11.86299453274108, 3.715330254796501, 2.9561317264708715, 7.040576956303553, 11.04268365531808, 13.047882769435292, 4.718721666486776, 4.523451191177117, 6.758327297552147, 3.5987885317107016, 6.481878654754695, 11.68530107666876, 20.050696342863784, 6.011666090299486, 3.862833539828914, 6.856706093344461, 5.022656450437554, 4.350049520296562, 16.450171401126777, 3.193732282465056, 7.959740579211088, 3.962223934337184, 8.176926283556307, 6.046950845469827, 7.302258962724152, 5.606859960508049, 8.028272061089744, 4.019221074037741, 2.887230745534951, 9.361772990350904, 5.521647826841663, 5.112212219679122, 3.6030751005180597, 7.012537597029874, 5.150484795795407, 4.692590496366855, 6.205374802853205, 8.555511219467745, 5.798530354413308, 7.844505220790256, 8.369619340349036, 6.404549392391064, 10.342274666387326, 8.458187640084605, 7.531213616712376, 9.456487015017004, 2.576966741801996, 6.785941180635246, 7.7964172426482525, 14.520829176003888, 5.913970325938125, 12.939148515939168, 3.9794989232675637, 8.524667516278793, 6.963782108773976, 5.058395182362501, 19.32070501353637, 10.782014487989093, 37.39173496044185, 18.954521007107285, 21.70055163501595, 41.61118312682277, 4.176721946253334, 57.004408911906, 27.810164680741433, 7.069027907529077, 30.996939933823363, 6.623022916032682, 38.49269193375815, 15.467681757930746, 3.816706583528362, 25.40440312882041, 13.422851896894548, 20.686682337619366, 25.22744245001822, 4.031770661989313, 24.739614017718914, 26.103297767454062, 30.61943440629715, 9.72552377174975, 49.69117853645554, 27.459315791871287, 5.972441639116501, 6.3917638287123015, 10.488657179725328, 17.55734534629066, 22.329976007540797, 5.513060876813221, 20.40566153495469, 9.213425228025521, 8.276927273119249, 21.67673158691802, 24.84977082217395, 5.819829327731902, 17.021519821645686, 5.8395925617577245, 7.407017315708912, 6.312040485285249, 3.493751279347547, 13.218879857117289, 3.563573293790164, 10.4384610862662, 4.972963936456483, 9.418079466537087, 14.113603291307351, 3.8369515601262716, 14.234294521789124, 3.324628137234342, 3.6179567487437136, 7.475090853917677, 14.687958933402147, 5.935667643654105, 8.272284204663436, 5.30701039308291, 4.772549550438095, 5.33160830042001, 3.2882646238363527, 4.994550444041321, 5.140307921075547, 6.986977550764331, 12.84961008679499, 12.860309731258798, 4.606048076408732, 6.142642018651879, 3.5691463978462554, 2.6029876481563625, 4.319591266036898, 11.164326468482527, 5.50009759610245, 20.439758182665788, 19.81580554026208, 20.830879517508784, 17.597894335364337, 23.635830888376947, 14.963910380974982, 13.764649493228001, 14.103044871082465, 25.384531809999746, 22.702600395992025, 15.1244280847026, 11.509321588804717, 7.095838910829242, 6.070567887859475, 21.213184170823617, 7.196475964902377, 11.734061183497559, 31.001598264523484, 7.35491820147088, 18.679695831362636, 8.020782800943117, 5.0172556292550095, 5.890569328153666, 6.990279908721193, 27.04687900324904, 3.901833541733863, 10.652416178841753, 7.7509657631061195, 13.059334700316974, 4.5978232641501515, 13.461198169509409, 18.96231587762318, 19.29626713218744, 6.814156232169481, 20.675104334976886, 31.153498974060984, 10.044028905656496, 6.39124852787015, 24.788684158690696, 23.903364231868967, 4.032124267922493, 6.292061903775382, 14.64873896518733, 6.301652591849486, 18.759818589228626, 2.9939204669575905, 16.129811024457506, 14.889512198864368, 30.25550280059388, 5.616971500048872, 20.714255507170765, 4.221818194583041, 5.776577644938003, 17.188639084646727, 13.06633785464389, 4.001054993046454, 5.568739091966023, 11.503885368324333, 12.630065651809806, 4.228644003238663, 6.844866179902467, 73.59584347870091, 10.139976778921715, 10.119024592429339, 6.230476861566647, 6.211797600136261, 10.802512471996927, 12.792792156346538, 7.5932036372636595, 13.20951030275071, 8.81431823664116, 5.434841806119742, 5.109837071032971, 23.615339422901766, 4.677906949568996, 27.082077316113192, 16.289672528853565, 10.706996586036103, 26.145163224588046, 10.298352189233283, 5.022053580929558, 8.190340210244122, 12.97713682933142, 7.814012306783551, 20.221531483786222, 10.172454984171605, 12.155845809241969, 6.127980737369955, 10.65613371126597, 10.976816076094183, 4.556120999379441, 4.255930627754653, 15.249775696053861, 4.206018046306232, 8.14991104483023, 8.255622285053644, 5.087382442888386, 9.928365337377913, 10.082339083198155, 11.684871173190777, 11.188987905980454, 17.892929178773603, 4.607161873068519, 18.071201064998863, 12.440765474786652, 12.614697510451732, 4.110764163943617, 4.099595101619883, 4.560591947919579, 4.8771593429117965, 7.360812332460226, 9.54612001832786, 11.436068444286432, 9.830426142985761, 14.199902903681412, 5.031698454848095, 6.733725126908172, 16.19408757153223, 12.906857460759516, 4.431055055724267, 5.140582287939175, 7.293942282994511, 3.85422070332508, 9.173629187690475, 9.232133590831214, 10.81613225550061, 7.386658017724312, 22.405806275611443, 5.2267475632001394, 4.803235208940021, 7.978351818555999, 4.560240069050599, 8.64816481731848, 5.36181378881733, 2.80839442605523, 6.791632827227037, 6.935305169404362, 49.2164399203089, 25.75447960929539, 3.048705186132802, 3.094305821550214, 3.1642417696361456, 6.5670978685603405, 4.160034354560455, 4.812404700750982, 6.707162520870553, 3.0627346127053725, 4.731279864233028, 3.225987742024573, 2.5446006306540228, 6.9116390678248685, 8.043882142958516, 4.133891663589696, 4.440532348601292, 5.062586623430949, 8.107123806275427, 3.484610606868059, 3.8080164735318833, 2.6564177930945374, 4.613949172604488, 2.966455820086784, 2.7395440045050328, 4.684395892692017, 4.320126407285925, 5.0422148524390895, 6.524676598674857, 6.155381278482469, 3.82956242245189, 2.5683686095822416, 5.8641175219082555, 5.593635199065661, 2.741843601600643, 5.344592095568776, 4.311130245982153, 6.144132557220451, 6.515511440700447, 5.0203313380904255, 5.328744419364172, 6.065308642070985, 5.163666239433011, 8.23200155475766, 5.130509716751592, 7.200164032415042, 7.169726012744822, 4.014533087557549, 3.8425484259089013, 5.674572969087065, 4.150414428332696, 3.2204473065606334, 8.358580672669833, 7.472449230475491, 5.125377985367855, 7.731548895440733, 6.3761463214309835, 11.745294306413504, 7.48940735878306, 13.022480416298428, 4.702688387952312, 3.6274664741477944, 16.262510930092258, 5.49507894725715, 7.27445232449155, 8.037678291294766, 4.085532846321302, 9.715079898734855, 2.8733491699617493, 6.055840212106441, 10.54628428022878, 8.41387955542496, 8.43531815242625, 4.692700841724441, 6.531502549786963, 3.201554077838796, 4.059524591188559, 8.71909025571247, 13.312453140281477, 4.739417106009113, 11.729624786851781, 45.343855465587055, 43.994860227894726, 3.8815869587369494, 11.22402379102238, 5.910259377602043, 7.043291702819769, 4.119694869331715, 12.985918637273949, 15.285008170104366, 9.16016590561373, 2.8681854200448145, 6.846775609545578, 7.471394445123875, 9.385319319192398, 5.301006377271233, 4.960779632873689, 13.333248088780456, 5.014165069010421, 2.7210787123995215, 4.213371258575413, 3.8189286663973405, 7.855259885773182, 2.5821508430770006, 9.15347725762662, 5.03897356526893, 2.275896132196167, 6.4325991452168045, 4.378659582479173, 3.843159220273751, 9.689166076917667, 5.316702715783656, 7.472322507770236, 3.4245370453460784, 3.1988221103136296, 4.66379018360747, 3.7537089579034904, 4.56766394184803, 3.432104558613251, 4.025110299485624, 4.788345101925101, 8.880376023754215, 4.927716181451391, 6.507222817360416, 2.139714197302733, 7.813219371216441, 2.5668378348091814, 4.656262156760142, 2.6724774590178564, 7.885066630495284, 8.224728931238445, 11.739875266670404, 10.138340598367575, 6.292229092312594, 21.95266640085776, 4.022104403942416, 5.013193937506167, 3.4624205414025195, 8.645116846428397, 3.7449012672647357, 4.110815319031213, 5.278910952822677, 3.2767411514547695, 3.40959238934158, 5.255016830586873, 3.0481204694665296, 8.15269066417048, 2.6985920594672996, 3.458177186207806, 5.402221174653362, 4.626008783272666, 6.953558230957264, 3.5368870727619646, 6.53868164452711, 3.62815147869424, 3.3706279097651577, 6.179725940274092, 6.181284714289703, 13.233038180846114, 8.463116113487175, 9.39418786773812, 3.5871669290562513, 4.010164887540538, 4.8645747973869184, 4.655278554790716, 7.522572559649573, 8.85854393076447, 8.005718863993586, 4.38218974130139, 3.1780837219180267, 11.801210632731678, 14.81738009755571, 3.1251579316473923, 4.520398803580419, 12.218323161270607, 3.7660243195467014, 2.8490457270566445, 3.951357435605475, 9.911752169411654, 3.804248758759222, 3.3602199528134675, 8.349958771224252, 3.5991500024726544, 10.360325349428557, 4.868160338925767, 7.316784328548145, 2.601828852700717, 2.8090907987228917, 8.878209778810294, 15.941817581883324, 15.541886926010381, 5.462584152143873, 5.414714418385758, 6.7942859665826285, 9.406309846303229, 5.295357375223564, 16.709059912627318, 7.495635445021069, 5.541457102838204, 10.13563764917502, 7.5250424951152945, 7.782161574101973, 14.204583793141078, 4.205377762268934, 9.574019318287602, 7.240873464601098, 6.671483105927555, 5.044729557603468, 7.105353183254372, 10.401968516974403, 5.753620383231261, 9.000976136560974, 3.8064370217771657, 12.927124365164383, 2.8871912124904853, 10.829333073582598, 6.833336047816312, 4.851995617089144, 5.645024191825412, 5.307081670405943, 11.091322979791407, 6.043119055607465, 3.1134582636826913, 7.056234643812602, 3.5677705719543464, 6.55249122036515, 10.200118291099644, 14.217270231721717, 3.6563151090012984, 8.608509210460511, 7.654773118593198, 3.4521726863383706, 3.0279810355670893, 5.8140319377059795, 4.356271275447044, 4.437781614332195, 4.991454845932433, 3.017279124547675, 3.6851219342930035, 3.3229487689717527, 10.972515844322889, 8.694542203824838, 9.891873403943585, 12.438817363043404, 4.586177180167158, 6.167017746456721, 12.535135796374487, 10.153219114960462, 11.382934639601737, 3.4455282575573922, 8.088267956017559, 7.2126576723427975, 3.816575777974463, 6.44015096527565, 6.651480770378765, 8.297299797609973, 7.878873927439109, 5.447490061986303, 3.8762163857201806, 7.450009078789165, 3.4579446248708523, 6.172615384057401, 3.4823033125097993, 4.388090657704433, 10.26317835744575, 8.716790905904015, 3.5278599810913396, 3.2804745453586586, 2.4573828468435828, 4.921109977475982, 3.881011671851484, 5.166117294965617, 5.776565433971983, 4.485683069758255, 3.0355244402365855, 3.7669322526582834, 3.8099025175357832, 4.108095556945839, 4.895361416014725, 3.5981311115456234, 3.549610833901154, 2.82924152073319, 4.372621282188723, 4.205598347121025, 4.876076462544546, 3.056182686999871, 2.273464058456111, 4.300356866687318, 4.925715604735087, 4.876652280845885, 5.218784437405032, 2.695419408565391, 6.736172511786205, 4.225314720229301, 4.578347962095716, 3.8394011970056097, 3.5798935272619565, 4.415507250907487, 2.843842118668357, 2.649317941375609, 4.888830991012092, 3.201158901225666, 2.622195552130491, 4.695827752193074, 4.0766636496226525, 4.592492645510376, 4.061319276677023, 3.7256580479442425, 3.7812814633382588, 4.124168754423316, 4.664511539852812, 2.108531218270246, 4.191908453918378, 7.2011157064318345, 2.4474813619628497, 3.568059232323302, 2.407473058689394, 4.821986871439927, 4.191527883538498, 2.838836160542253, 2.3776224303785862, 3.883235113889012, 2.6899321850772218, 2.4775028524686453, 3.1096577350532244, 5.9637178907262625, 3.181786301000497, 2.824398823331979, 4.5640067990508815, 5.101746904193135, 3.240257435984601, 3.4399573488628046, 4.626784303771126, 6.224515676146603, 4.67598999248127, 3.70068016763016, 3.208645015172991, 3.3797308407415825, 3.2959548955750297, 2.401926537628992, 3.2097134460348427, 3.5958710872943587, 3.1568587524623863, 3.820298318895454, 3.5262296422607293, 5.762081629397361, 3.769250192494148, 4.176108766610594, 6.047363688301249, 5.612363166089976, 2.5553521465862756, 2.440077269277601, 7.477228923199928, 3.5875966590899067, 3.1325976360992223, 3.815192594355505, 4.130098014407306, 5.324887413488901, 4.0293697715526, 3.7855880595004616, 5.4857933031842006, 4.712364288484466, 3.5414430307706013, 4.005206501092406, 3.428061338428398, 2.5862896216947666, 5.428375045770668, 3.0565021717030088, 6.88332813135926, 3.5157296886725664, 5.383787867278493, 5.309828771067739, 2.868973988358683, 5.73441065500491, 2.9363462048469797, 5.262414126269302, 2.4842481312463285, 3.9468575024224317, 7.160672722741019, 5.6842631929918275, 5.3846594642083785, 3.217167148889696, 2.8795150123290947, 4.822593188502276, 4.959738879073421, 3.4847221872971104, 4.3894956706704615, 2.677970426252095, 4.304678793502986, 5.453850101121076, 3.436388541251816, 3.445691281852309, 3.0677708839767366, 4.1354685347455105, 2.6098233908478425, 4.478518272824466, 5.896530724064514, 6.485295295729226, 6.022785832261278, 3.3208617154470166, 6.784526551091251, 4.23719563461937, 6.341096299638958, 3.5371119395963673, 2.4751359182347747, 5.330365900224888, 5.436526188808061, 6.55377071299232, 9.874166038884729, 5.555539106886324, 4.875730892562853, 2.342316608327096, 2.62848807717353, 2.746140860756325, 3.1044399809357537, 6.158894685547486, 6.529412605420135, 4.780725257246225, 2.5934658112255673, 4.885532290945236, 2.6139477589599256, 6.416918289367848, 7.508012201481509, 5.828330821416622, 3.7553464227918076, 5.888721896418373, 5.338820200285632, 2.8780305976441056, 3.7769764951222737, 4.32084552260917, 4.574202165629892, 5.277495974265437, 6.939153873383257, 7.998003868032879, 7.2934325765989, 2.8722992510710657, 4.387713496506572, 4.078563422614271, 3.8468216102766064, 4.185684931684357, 3.306227752778978, 5.007154982842824, 6.3754373275551925, 3.8536784742622094, 2.258439444921227, 6.48986271552212, 5.819531970238624, 4.517575115662506, 5.675275161862746, 3.592896095795015, 3.3838796989300053, 4.70110840986152, 4.859423981129573, 3.42651252679344, 4.553532996222317, 6.870553154573253, 6.797996246103568, 3.1029934950457325, 7.707762809033348, 5.34391327985726, 8.213335673073114, 6.2849466518796, 6.109663514126424, 6.180524278269597, 7.271654465221008, 5.0925327877284055, 4.312189225546272, 7.906285593948521, 3.589109460108639, 6.906773112382649, 3.1852459115896607, 3.252044531335879, 4.6647876369071755, 5.433537003061712, 6.291867202473046, 5.58587793895984, 3.438983734419626, 2.989587406329575, 2.979516970658356, 7.2567223087189205, 5.093847141813405, 5.350514329107566, 5.306739323417922, 8.520309570682764, 3.6726533156153507, 2.7147778852551974, 5.87651361162542, 3.2744054238673606, 5.5165517193371505, 5.944535999572096, 5.076348121442564, 7.6516008430371745, 10.237818281880806, 3.5537973174470903, 4.763304517792262, 8.051235037257044, 7.416743533299166, 2.8792841894008476, 7.124265231536284, 6.3015050443396605, 5.985669011654227, 5.071879752602709, 8.280429582755948, 5.602640293495084, 9.119667895992892, 7.361375760998429, 7.324848267504498, 10.980182837106987, 2.930344284223121, 9.872345326452807, 3.540351632834546, 9.584491078466401, 6.060920491959633, 5.516674162386754, 6.167920794161975, 5.9822377470544845, 6.793237525814827, 2.6416355855903317, 3.254949933940223, 3.0219395756692533, 12.331996935385154, 7.487642037487513, 11.309851115404319, 7.286018330013579, 4.019693137671359, 3.0598838459988547, 4.946270717347273, 4.0457562642467675, 5.868357399016651, 6.920776049272143, 3.490926315537537, 6.865819560043252, 6.511525272659416, 3.1847397571157496, 7.675608607823192, 3.3720506295007775, 8.256572619260702, 4.83107408728261, 11.165457723575598, 3.0982443967219075, 3.168301288713038, 3.0939191150679, 6.615737602250894, 2.7537683581721897, 3.4187608316953026, 2.666858837076645, 2.266827103814008, 2.0947638495007332, 2.17944616770195, 2.659162259636854, 2.2156046586707796, 2.60586774415319, 3.1714198799500006, 2.7438015337341857, 2.013495299002913, 2.7217175733697574, 2.8198578186230105, 2.5545075470912026, 4.0801178014451995, 3.2744424475225093, 2.7912121017759524, 2.9259402437812123, 2.7521480659599518, 4.347914510416266, 3.451798977150686, 2.354401551680283, 5.618551934984759, 2.193482996740131, 2.208056644948886, 2.492867748897141, 2.4710474352228573, 2.971141130701564, 2.301743874720598, 2.0936613503523076, 3.878145893490144, 3.055443647699325, 2.85783239515972, 3.6052117973893987, 4.998268768924948, 2.4077930178616103, 4.196643241591237, 3.894661626344177, 3.0258204682304, 2.7419352062133893, 2.8640673672465105, 3.1834690524856915, 4.389762811374038, 2.5815241534185, 2.673474770292786, 3.5991390832294643, 3.0860972063416887, 2.307465893321933, 2.678070973597986, 2.2793103635410725, 3.999763276304212, 3.2537697959615457, 3.8463176397533814, 3.5469250357214555, 2.5175578342480684, 2.4706082072559483, 4.362880494887253, 3.564866267442155, 3.77742109831946, 2.830570793120928, 4.876455534651667, 3.6108804055587416, 3.0356393735990355, 3.589611841024335, 3.1883026754530914, 2.9467070821751262, 3.3350450183157014, 3.8629712613747786, 91.57271031088794, 3.6813644758454553, 3.1728465048858956, 3.618322218636689, 2.5716970055826494, 3.643314944311795, 3.025809527167376, 3.614198431574549, 4.946629160941255, 2.969584244385842, 3.5229829823864645, 3.5452883613791433, 4.044783107544041, 3.6564880061522222, 3.397265548043926, 2.8819341345759275, 2.706058061113446, 3.2119145803189872, 3.2532082933294575, 3.2504013829050193, 2.6014615288927923, 2.829021074553617, 3.7784134273113206, 6.352880654409728, 3.024809541596215, 4.179745476077816, 3.4913135196954586, 4.94536047231928, 3.6910711851042133, 3.816857550483803, 3.538012694753943, 66.8326012788017, 3.1641909766359366, 4.0221451348193735, 5.106141799879855, 3.8706411129146483, 3.433867024896049, 3.960220097463302, 3.7070151791302735, 3.4003388296394492, 5.017397707382227, 3.4381016942069538, 4.027255017098147, 4.738046374644824, 2.731076788883799, 3.6558387341001164, 2.8372485355519848, 4.468082887298003, 3.8210304168513987, 4.681046142719956, 4.8972248772528575, 3.103946325659504, 5.051769664563316, 2.6970636893931186, 4.611031710185289, 3.6935915619328505, 5.02081321273067, 2.7587115359267242, 4.182216276415231, 4.3228623146672795, 5.514156444596005, 3.1974201885273255, 4.856676664802623, 3.601672046990712, 4.024780651442594, 3.0902998026480297, 4.1087528270220375, 4.289562526438588, 4.643364901265132, 4.265819300523597, 2.7842287502740546, 5.432025910999075, 4.369088484838574, 3.9766669689682783, 4.905547617073449, 4.929480819822422, 4.212358978945036, 4.395140274926752, 5.6610931546025185, 4.616733137070813, 4.449113511919491, 4.094760761873677, 4.131434931144262, 4.645167401436923, 6.103674562825525, 3.273782014356874, 4.2188267760566935, 3.892894899601086, 3.0524471984062087, 4.721039220191031, 4.325348247923329, 5.657456820480561, 3.9032993841442902, 4.028720851032231, 3.3909942730696225, 4.04864496358901, 3.729554157071643, 5.937048450290638, 3.783694012053614, 6.480918428227767, 5.691380219865798, 5.085733478083838, 5.929019615735686, 4.788209316276908, 4.624350280907178, 5.160270887130513, 4.2502992165936275, 3.984762830867011, 5.208770394607292, 4.817653013154668, 6.891459297362692, 4.587789939688247, 4.0102863146674395, 6.689871210679345, 6.0893627030132365, 3.6696850982282574, 5.260170653616448, 3.7503143894469217, 6.531246236311823, 5.2452582631814435, 3.6968751717447264, 3.3814597813645544, 4.162020832251603, 3.3835093113345236, 5.455368331978836, 4.044859992139678, 3.9842830397851845, 4.809276745044106, 4.029341510589877, 5.92622141049532, 5.350674888771843, 3.7075702233866514, 4.685122689397689, 5.8900827194489445, 3.7731546781215615, 3.5668277483393007, 6.053951687665202, 5.0813269162585035, 5.859255204271522, 8.133942571880246, 3.9568335893514472, 3.73618948900399, 5.911673617860075, 4.464972268092369, 5.556295371089113, 4.416309828385478, 5.891875715609339, 4.6917835290699115, 3.931233333905804, 3.6727973366691753, 4.392488502839559, 4.220744508842373, 3.1536078471743343, 5.226812686786021, 3.760695424336947, 5.239661568029946, 6.565186591335937, 5.0171466403743725, 5.975016202887991, 5.016365747747235, 4.536435827133136, 5.323348296410992, 5.810985363288084, 3.5599755400457824, 4.728255913364705, 3.8841760692474008, 5.1783029520067725, 3.543671105513529, 5.1877294342622875, 3.546222050875989, 10.347320302073099, 4.76668183807907, 5.189019369227344, 7.238626640641681, 4.707683257915951, 3.9326195652962066, 8.075293048863951, 3.4859346829174465, 3.5603918365274603, 3.498442275401647, 5.504125343176911, 6.248822610751388, 6.1791385444565154, 4.93427452007578, 5.084014726671218, 4.089159447557775, 5.144025038759577, 3.7496642685911783, 6.9653661035057475, 3.2800372217441627, 5.864021266160139, 4.173150247526068, 3.3912902284331055, 6.522514255946558, 4.506129352710574, 3.785969518100486, 6.5580137991737235, 4.135595721333201, 7.9709375254688, 5.219994362868715, 3.969199746160271, 4.226416365585985, 5.9028796112747, 3.9472565373918944, 8.209847841045546, 5.555233714153534, 6.287188795817716, 5.41280273288215, 5.9177074389376925, 4.525923346489139, 5.791191793112085, 5.184116708119972, 5.631392925807962, 5.673229146173613, 6.187064799458805, 5.690588941374298, 4.400313305117368, 5.21614414254065, 5.00183306094884, 4.778971446538463, 6.484802989541971, 4.906886844260922, 3.815969607724091, 3.9264442547987697, 4.665983183675791, 4.1814439072985765, 4.1834551178074015, 4.831303081224841, 6.687328730529086, 5.1465432618850055, 7.000377236647454, 7.669140371827743, 4.503662587345473, 5.414653395760954, 4.6360168127229775, 3.241249163728489, 5.080079407538785, 9.457863626316756, 4.446201482327788, 4.715387045652026, 4.6404336229001375, 114.02916666666667, 11.158934740111135, 3.6179372595988086, 5.002406960922434, 4.558376940416139, 4.511700501759067, 3.3624464538459575, 5.315464114360807, 3.5021117624091023, 4.575735709830039, 2.931167808588573, 4.807231945295333, 5.426659043302755, 9.801917397591227, 3.606664501239785, 20.000134687043616, 6.055099280377348, 3.5678678076438706, 7.8040039337343154, 3.6490092710444446, 3.240174887129827, 4.500183640682787, 5.448395637838076, 4.045854720323608, 3.8961196442437553, 6.836282537322123, 5.011870102085729, 4.315908925306105, 5.418986002334764, 4.679576580580485, 4.45438609638087, 5.586790831191458, 7.84547566102708, 5.885675211455833, 7.01649637341442, 3.694461608356389, 4.634581902510023, 3.6437450473184274, 5.047927237682657, 6.293101720989712, 6.557146208913808, 4.828446961420891, 11.013992064437781, 3.6829293010554975, 5.194868209867976, 6.270873540518401, 5.247203636505837, 4.8972279414137825, 3.9126458622783984, 6.537271230644535, 5.882622658615142, 6.753197814342202, 3.7930020765752137, 7.376822735936295, 7.237223889089434, 5.380025485659588, 7.643469548980505, 5.976578493720602, 3.98425822140471, 4.531865509268334, 4.008622353714991, 6.487385634064572, 3.120205005153734, 4.937216622996019, 10.166526030270436, 5.33915761844896, 8.759060791189931, 3.1712918365304494, 4.652062988233563, 7.196814460893425, 4.284467687112782, 5.0520456712438255, 4.945205181435234, 4.44438579257481, 7.2066521308337155, 6.761718658924465, 3.963772498165152, 3.7692938750806957, 3.7748700201947747, 4.888456395873874, 6.084115454206829, 7.347942394826268, 9.552670421255813, 4.563708506456302, 4.6945606412814, 3.287730115701165, 6.627206238310917, 4.231002375363244, 4.47334423502774, 112.17164281663736, 4.405458880380222, 4.171069326729994, 8.870677165734453, 4.074771194451311, 3.7434416310805037, 5.698674809975017, 4.501616093146417, 3.9159627210236305, 5.8730473556205975, 3.9903570993159367, 6.37423019007103, 5.172724756813935, 4.58515949857763, 7.9850717604634, 5.414395800499509, 5.915227069420454, 4.67997499348663, 15.651274203112605, 3.8319491698687753, 4.075266016201829, 5.919704658486967, 3.5188534123870943, 4.782542605087985, 6.328257747846602, 6.227897023906547, 4.48309764668923, 4.9671455336978765, 7.390168962902779, 4.98568965791647, 7.266773332876196, 8.412956231908932, 5.48375069406418, 7.304278638879564, 4.323423020170953, 11.157372426960256, 3.6996826438829453, 4.074172944502642, 4.83158867964644, 4.457618289219833, 4.651540069858034, 4.588892332484567, 5.3627602298130235, 3.5446623600241476, 6.897544922462426, 73.54592488230713, 3.581056998077067, 5.9238092721629725, 4.276748760979162, 4.287828005409622, 15.776662968687486, 4.8219372726266645, 5.936965874078089, 8.383031773804413, 3.5528720165977674, 5.9581041742565555, 4.188658110611031, 3.920504226828131, 8.053123157367732, 4.668529739940333, 8.41590145173515, 3.6492106761835887, 4.656950310851449, 4.727182218523711, 9.738121408156632, 7.56547656631185, 4.5156682521285365, 6.426305932713351, 5.621130480623295, 7.5421604636783375, 4.657412403729312, 8.892899210206338, 5.163551873783113, 5.046241309743411, 9.219722334499348, 5.689805198476793, 4.752440741088711, 5.160585278510019, 4.618670921083705, 7.786209704206549, 6.309770264920504, 5.004721189405228, 6.908694263956865, 8.874429048978833, 4.942388223511625, 5.60091646689914, 5.267473455480562, 5.020882099279326, 6.764731325820961, 7.48902313208815, 5.093917779359989, 9.502668225621576, 3.7841151372351503, 4.587291422879952, 4.704452371210945, 4.704888813517309, 3.1647171365994886, 5.912495265677926, 10.828133522556133, 4.6289694592511275, 4.585820551791321, 10.603682775546957, 3.6611302972007147, 5.6969333402294025, 7.892222233520258, 4.8707119863738235, 12.768949521760167, 3.7454050236670673, 3.891410721341946, 7.104276184984107, 8.680172107820319, 4.080642353768982, 5.784738568169765, 6.900408796762545, 4.438949572159638, 3.773086171473992, 4.029547922319234, 5.438490529955845, 5.302302711385762, 4.461075322221949, 4.712363634866054, 5.546813928151976, 3.98453183666606, 6.714540149799347, 5.319514512822134, 11.36237559157177, 4.552022149152446, 7.156785147494494, 5.288562889581543, 5.904109387012734, 6.5831100538100475, 4.86876425880585, 4.870498362165367, 4.703307292426606, 3.5642690689331094, 3.025718932343065, 4.4620065984622235, 4.746831735399072, 5.917194043295348, 3.3374201095146203, 12.283095440867807, 4.659496073108648, 3.8781479310750444, 6.531958504341498, 4.421132817996439, 5.5750296718900225, 4.097888417384225, 5.057477409936974, 4.249051696490203, 5.8392091443212415, 3.922920121125648, 5.160174876720053, 16.183900660932007, 7.270916113093188, 4.053010491311951, 4.9803996535127695, 6.770116050891237, 6.7818346442614175, 6.967568633118546, 5.914101563211945, 4.380256770536154, 5.1814173838251705, 6.253818092578327, 4.422314575221432, 7.708296155915895, 5.192401403145199, 7.955853781011071, 5.638174256690393, 5.728373215176868, 6.342684739966915, 6.989658691082775, 4.887781929457405, 5.696999413189341, 6.055909608527767, 6.367848761419463, 5.81634857287425, 5.583309272912332, 6.218537593342466, 11.323709281711277, 6.092126853163, 5.394679136793757, 4.478248676510953, 5.652953468653985, 7.856802888720715, 3.6250683124934913, 5.000035892121128, 5.920869530871397, 4.3998786101028005, 6.32505776774248, 4.38175735462799, 3.718287043085531, 11.248670089341333, 6.178975484652476, 4.433129639845597, 5.998182418224579, 5.199652794316691, 5.704427737588539, 16.6353311652237, 6.284513692598696, 5.551214921670748, 7.125492703885347, 4.989500890302429, 6.57986820470262, 10.218872967101005, 4.351644420396437, 5.490953740155567, 212.3285714285715, 4.839548289998201, 5.299953999645585, 5.440232836061417, 5.596103284688051, 10.829980535626834, 7.824135060349622, 6.829418782013274, 5.778855577392975, 10.68623218122373, 5.723417350065048, 3.8043043683572235, 6.697167139579886, 6.200785955307497, 3.7657465681360383, 6.051100727274255, 4.617849110377838, 4.102702360029696, 9.08664754227254] disp = hash_iot d1 = pd.Series([s for s in disp]) sorted_d1 = d1.sort_values(ascending=False) N = 1007 #404 pred_rrcf = d1 > d1.quantile(0.90) print("Displacement: ", d1.tolist()) print(metrics.classification_report(true_anomalies, pred_rrcf)) for k in [100, 200, 300, 400]: top_k_real = anomaly_detection.get_top_k_anomalies(sh_vector, k) top_k_disp = anomaly_detection.get_top_k_displacement(sorted_d1, k) anomaly_detection.get_top_k_performance(top_k_real, top_k_disp, true_anomalies, pred_rrcf, N) real = [] for index, row in sh_vector.iterrows(): real.append(int(row['anom_count'])*0.05) plt.style.use('seaborn-darkgrid') fig, (ax1, ax2, ax3) = plt.subplots(nrows=3, sharex=True, sharey=True,figsize=(8,5)) ax1.plot(real, color='blue', linewidth=0.5) ax1.plot(hash_iot, color='red', linewidth=1) ax1.set_title("SnapSketch",fontweight="bold", fontsize=8) ax1.tick_params(axis='both', labelsize=6) ax2.plot(real, color='blue', linewidth=0.5) ax2.plot(sl_total_hash, color='red', linewidth=1) ax2.set_title("SpotLight",fontweight="bold", fontsize=8) ax2.tick_params(axis='both', labelsize=6) ax3.plot(real, color='blue', linewidth=0.5) ax3.plot(ss_total_hash, color='red', linewidth=1) ax3.set_title("StreamSpot",fontweight="bold", fontsize=8) ax3.tick_params(axis='both', labelsize=6) plt.xlim([200, 2500]) plt.ylim([0, 120]) plt.xlabel("Time",fontweight="bold", fontsize=6) plt.ylabel("Anomaly Score",fontweight="bold", fontsize=6) plt.tight_layout() plt.savefig("results/iotplot.pdf") plt.show() if __name__=="__main__": args = parse_args() # main(args) sketch_file = graph_sketching(args) # ad = AnomalyDetection() # ad.sub2vec_run(args) # ad.spotlight_run(args) # sh_vector = ad.read_sketch(sketch_file) # ad.anomaly_detection(sh_vector, args) # visualize_vast() # visualize_iot() # visualize_darpa() # visualize_taxi()
[ 1, 2, 6, 9, 10 ]
204
e5d7cc65041d65f915d4882b4fdad5bebf79a067
<mask token> class TokenizerPair(SourceTargetMixin): def __init__(self, tokenizer_class=Tokenizer): self.source = tokenizer_class() self.target = tokenizer_class() @property def is_tokenized(self) ->bool: return hasattr(self.source, 'word_index') and hasattr(self.target, 'word_index') @cached_property def target_index_word(self): return {v: k for k, v in self.target.word_index.items()} class TextDataset(BaseDataset): def __init__(self, source_sentences: Union[Iterable, Sized], target_sentences: Union[Iterable, Sized], shuffle: bool=True, word_frequency_threshold: int=2): super().__init__(source_sentences, target_sentences, shuffle) self.word_frequency_threshold = word_frequency_threshold self.tokenizer_pair = TokenizerPair() @cached_property def translation_references(self): references = defaultdict(list) for idx, sentence in enumerate(self.source): split_sentence = text_to_word_sequence(self.target[idx]) references[sentence].append(split_sentence) return references @property def source_max_sentence_length(self) ->int: return self.max_sentence_length('source') @property def target_max_sentence_length(self) ->int: return self.max_sentence_length('target') @property def source_vocab_size(self) ->int: return self.tokenizer_pair.source.num_words @property def target_vocab_size(self) ->int: return self.tokenizer_pair.target.num_words def get_vocab_size(self, level: str) ->int: if not self.tokenizer_pair.is_tokenized: raise ValueError('Dataset has not been tokenized yet') return len(self.tokenizer_pair[level].word_index) + 1 def max_sentence_length(self, level: str) ->int: return max(len(line.split()) for line in self[level]) def tokenize(self) ->None: if not self.tokenizer_pair.is_tokenized: self.tokenizer_pair['source'].fit_on_texts(self.source) self.tokenizer_pair['target'].fit_on_texts(self.target) self.tokenizer_pair['source'].num_words = len([word for word, count in self.tokenizer_pair['source'].word_counts.items() if count > self.word_frequency_threshold - 1]) self.tokenizer_pair['target'].num_words = len([word for word, count in self.tokenizer_pair['target'].word_counts.items() if count > self.word_frequency_threshold - 1]) def get_sequences(self, level: str) ->np.ndarray: if not self.tokenizer_pair.is_tokenized: self.tokenize() sentences = self.tokenizer_pair[level].texts_to_sequences(self[level]) return pad_sequences(sentences, maxlen=self.max_sentence_length( level), padding='post') def encode_output(self, sequences: np.array) ->np.array: return to_categorical(sequences, self.target_vocab_size) def sequence_to_sentence(self, sequence: Iterable) ->str: target_sentence = [self.tokenizer_pair.target_index_word.get( word_index, '') for word_index in sequence] return ' '.join(target_sentence) def sentence_to_sequence(self, sentence: str) ->np.ndarray: return pad_sequences(self.tokenizer_pair['source']. texts_to_sequences([sentence]), self.max_sentence_length( 'source'), padding='post')
<mask token> class BaseDataset(SourceTargetMixin): <mask token> <mask token> <mask token> class TokenizerPair(SourceTargetMixin): def __init__(self, tokenizer_class=Tokenizer): self.source = tokenizer_class() self.target = tokenizer_class() @property def is_tokenized(self) ->bool: return hasattr(self.source, 'word_index') and hasattr(self.target, 'word_index') @cached_property def target_index_word(self): return {v: k for k, v in self.target.word_index.items()} class TextDataset(BaseDataset): def __init__(self, source_sentences: Union[Iterable, Sized], target_sentences: Union[Iterable, Sized], shuffle: bool=True, word_frequency_threshold: int=2): super().__init__(source_sentences, target_sentences, shuffle) self.word_frequency_threshold = word_frequency_threshold self.tokenizer_pair = TokenizerPair() @cached_property def translation_references(self): references = defaultdict(list) for idx, sentence in enumerate(self.source): split_sentence = text_to_word_sequence(self.target[idx]) references[sentence].append(split_sentence) return references @property def source_max_sentence_length(self) ->int: return self.max_sentence_length('source') @property def target_max_sentence_length(self) ->int: return self.max_sentence_length('target') @property def source_vocab_size(self) ->int: return self.tokenizer_pair.source.num_words @property def target_vocab_size(self) ->int: return self.tokenizer_pair.target.num_words def get_vocab_size(self, level: str) ->int: if not self.tokenizer_pair.is_tokenized: raise ValueError('Dataset has not been tokenized yet') return len(self.tokenizer_pair[level].word_index) + 1 def max_sentence_length(self, level: str) ->int: return max(len(line.split()) for line in self[level]) def tokenize(self) ->None: if not self.tokenizer_pair.is_tokenized: self.tokenizer_pair['source'].fit_on_texts(self.source) self.tokenizer_pair['target'].fit_on_texts(self.target) self.tokenizer_pair['source'].num_words = len([word for word, count in self.tokenizer_pair['source'].word_counts.items() if count > self.word_frequency_threshold - 1]) self.tokenizer_pair['target'].num_words = len([word for word, count in self.tokenizer_pair['target'].word_counts.items() if count > self.word_frequency_threshold - 1]) def get_sequences(self, level: str) ->np.ndarray: if not self.tokenizer_pair.is_tokenized: self.tokenize() sentences = self.tokenizer_pair[level].texts_to_sequences(self[level]) return pad_sequences(sentences, maxlen=self.max_sentence_length( level), padding='post') def encode_output(self, sequences: np.array) ->np.array: return to_categorical(sequences, self.target_vocab_size) def sequence_to_sentence(self, sequence: Iterable) ->str: target_sentence = [self.tokenizer_pair.target_index_word.get( word_index, '') for word_index in sequence] return ' '.join(target_sentence) def sentence_to_sequence(self, sentence: str) ->np.ndarray: return pad_sequences(self.tokenizer_pair['source']. texts_to_sequences([sentence]), self.max_sentence_length( 'source'), padding='post')
<mask token> class SourceTargetMixin: <mask token> def __getitem__(self, item): if item in ['source', 'target']: return getattr(self, item) raise TypeError( 'Subscription is available only with "source" and "target" keywords' ) class BaseDataset(SourceTargetMixin): def __init__(self, source: Union[Iterable, Sized], target: Union[ Iterable, Sized], shuffle: bool=True, seed: int=42): self.source = source self.target = target self._validate() if shuffle: self.shuffle(seed) def _validate(self) ->None: src_len = len(self.source) target_len = len(self.target) if src_len != target_len: raise TypeError( 'Number of source rows ({}) does not match the number of target rows ({})' .format(src_len, target_len)) def shuffle(self, seed: int=42) ->None: np.random.seed(seed) shuffled_indexes = np.random.permutation(len(self.source)) self.source = self.source[shuffled_indexes] self.target = self.target[shuffled_indexes] class TokenizerPair(SourceTargetMixin): def __init__(self, tokenizer_class=Tokenizer): self.source = tokenizer_class() self.target = tokenizer_class() @property def is_tokenized(self) ->bool: return hasattr(self.source, 'word_index') and hasattr(self.target, 'word_index') @cached_property def target_index_word(self): return {v: k for k, v in self.target.word_index.items()} class TextDataset(BaseDataset): def __init__(self, source_sentences: Union[Iterable, Sized], target_sentences: Union[Iterable, Sized], shuffle: bool=True, word_frequency_threshold: int=2): super().__init__(source_sentences, target_sentences, shuffle) self.word_frequency_threshold = word_frequency_threshold self.tokenizer_pair = TokenizerPair() @cached_property def translation_references(self): references = defaultdict(list) for idx, sentence in enumerate(self.source): split_sentence = text_to_word_sequence(self.target[idx]) references[sentence].append(split_sentence) return references @property def source_max_sentence_length(self) ->int: return self.max_sentence_length('source') @property def target_max_sentence_length(self) ->int: return self.max_sentence_length('target') @property def source_vocab_size(self) ->int: return self.tokenizer_pair.source.num_words @property def target_vocab_size(self) ->int: return self.tokenizer_pair.target.num_words def get_vocab_size(self, level: str) ->int: if not self.tokenizer_pair.is_tokenized: raise ValueError('Dataset has not been tokenized yet') return len(self.tokenizer_pair[level].word_index) + 1 def max_sentence_length(self, level: str) ->int: return max(len(line.split()) for line in self[level]) def tokenize(self) ->None: if not self.tokenizer_pair.is_tokenized: self.tokenizer_pair['source'].fit_on_texts(self.source) self.tokenizer_pair['target'].fit_on_texts(self.target) self.tokenizer_pair['source'].num_words = len([word for word, count in self.tokenizer_pair['source'].word_counts.items() if count > self.word_frequency_threshold - 1]) self.tokenizer_pair['target'].num_words = len([word for word, count in self.tokenizer_pair['target'].word_counts.items() if count > self.word_frequency_threshold - 1]) def get_sequences(self, level: str) ->np.ndarray: if not self.tokenizer_pair.is_tokenized: self.tokenize() sentences = self.tokenizer_pair[level].texts_to_sequences(self[level]) return pad_sequences(sentences, maxlen=self.max_sentence_length( level), padding='post') def encode_output(self, sequences: np.array) ->np.array: return to_categorical(sequences, self.target_vocab_size) def sequence_to_sentence(self, sequence: Iterable) ->str: target_sentence = [self.tokenizer_pair.target_index_word.get( word_index, '') for word_index in sequence] return ' '.join(target_sentence) def sentence_to_sequence(self, sentence: str) ->np.ndarray: return pad_sequences(self.tokenizer_pair['source']. texts_to_sequences([sentence]), self.max_sentence_length( 'source'), padding='post')
from collections import defaultdict from typing import Union, Iterable, Sized import numpy as np from cached_property import cached_property from keras.utils import to_categorical from keras.preprocessing.sequence import pad_sequences from keras.preprocessing.text import Tokenizer, text_to_word_sequence class SourceTargetMixin: """ Allows subscription with 'source' and 'target' keywords """ def __getitem__(self, item): if item in ['source', 'target']: return getattr(self, item) raise TypeError( 'Subscription is available only with "source" and "target" keywords' ) class BaseDataset(SourceTargetMixin): def __init__(self, source: Union[Iterable, Sized], target: Union[ Iterable, Sized], shuffle: bool=True, seed: int=42): self.source = source self.target = target self._validate() if shuffle: self.shuffle(seed) def _validate(self) ->None: src_len = len(self.source) target_len = len(self.target) if src_len != target_len: raise TypeError( 'Number of source rows ({}) does not match the number of target rows ({})' .format(src_len, target_len)) def shuffle(self, seed: int=42) ->None: np.random.seed(seed) shuffled_indexes = np.random.permutation(len(self.source)) self.source = self.source[shuffled_indexes] self.target = self.target[shuffled_indexes] class TokenizerPair(SourceTargetMixin): def __init__(self, tokenizer_class=Tokenizer): self.source = tokenizer_class() self.target = tokenizer_class() @property def is_tokenized(self) ->bool: return hasattr(self.source, 'word_index') and hasattr(self.target, 'word_index') @cached_property def target_index_word(self): return {v: k for k, v in self.target.word_index.items()} class TextDataset(BaseDataset): def __init__(self, source_sentences: Union[Iterable, Sized], target_sentences: Union[Iterable, Sized], shuffle: bool=True, word_frequency_threshold: int=2): super().__init__(source_sentences, target_sentences, shuffle) self.word_frequency_threshold = word_frequency_threshold self.tokenizer_pair = TokenizerPair() @cached_property def translation_references(self): references = defaultdict(list) for idx, sentence in enumerate(self.source): split_sentence = text_to_word_sequence(self.target[idx]) references[sentence].append(split_sentence) return references @property def source_max_sentence_length(self) ->int: return self.max_sentence_length('source') @property def target_max_sentence_length(self) ->int: return self.max_sentence_length('target') @property def source_vocab_size(self) ->int: return self.tokenizer_pair.source.num_words @property def target_vocab_size(self) ->int: return self.tokenizer_pair.target.num_words def get_vocab_size(self, level: str) ->int: if not self.tokenizer_pair.is_tokenized: raise ValueError('Dataset has not been tokenized yet') return len(self.tokenizer_pair[level].word_index) + 1 def max_sentence_length(self, level: str) ->int: return max(len(line.split()) for line in self[level]) def tokenize(self) ->None: if not self.tokenizer_pair.is_tokenized: self.tokenizer_pair['source'].fit_on_texts(self.source) self.tokenizer_pair['target'].fit_on_texts(self.target) self.tokenizer_pair['source'].num_words = len([word for word, count in self.tokenizer_pair['source'].word_counts.items() if count > self.word_frequency_threshold - 1]) self.tokenizer_pair['target'].num_words = len([word for word, count in self.tokenizer_pair['target'].word_counts.items() if count > self.word_frequency_threshold - 1]) def get_sequences(self, level: str) ->np.ndarray: if not self.tokenizer_pair.is_tokenized: self.tokenize() sentences = self.tokenizer_pair[level].texts_to_sequences(self[level]) return pad_sequences(sentences, maxlen=self.max_sentence_length( level), padding='post') def encode_output(self, sequences: np.array) ->np.array: return to_categorical(sequences, self.target_vocab_size) def sequence_to_sentence(self, sequence: Iterable) ->str: target_sentence = [self.tokenizer_pair.target_index_word.get( word_index, '') for word_index in sequence] return ' '.join(target_sentence) def sentence_to_sequence(self, sentence: str) ->np.ndarray: return pad_sequences(self.tokenizer_pair['source']. texts_to_sequences([sentence]), self.max_sentence_length( 'source'), padding='post')
from collections import defaultdict from typing import Union, Iterable, Sized import numpy as np from cached_property import cached_property from keras.utils import to_categorical from keras.preprocessing.sequence import pad_sequences from keras.preprocessing.text import Tokenizer, text_to_word_sequence class SourceTargetMixin: """ Allows subscription with 'source' and 'target' keywords """ def __getitem__(self, item): if item in ['source', 'target']: return getattr(self, item) raise TypeError('Subscription is available ' 'only with "source" and "target" keywords') class BaseDataset(SourceTargetMixin): def __init__(self, source: Union[Iterable, Sized], target: Union[Iterable, Sized], shuffle: bool=True, seed: int=42): self.source = source self.target = target self._validate() if shuffle: self.shuffle(seed) def _validate(self) -> None: src_len = len(self.source) target_len = len(self.target) if src_len != target_len: raise TypeError('Number of source rows ({}) does not match ' 'the number of target rows ({})'.format(src_len, target_len)) def shuffle(self, seed: int=42) -> None: np.random.seed(seed) shuffled_indexes = np.random.permutation(len(self.source)) self.source = self.source[shuffled_indexes] self.target = self.target[shuffled_indexes] class TokenizerPair(SourceTargetMixin): def __init__(self, tokenizer_class=Tokenizer): self.source = tokenizer_class() self.target = tokenizer_class() @property def is_tokenized(self) -> bool: return hasattr(self.source, 'word_index') \ and hasattr(self.target, 'word_index') @cached_property def target_index_word(self): return {v: k for k, v in self.target.word_index.items()} class TextDataset(BaseDataset): def __init__(self, source_sentences: Union[Iterable, Sized], target_sentences: Union[Iterable, Sized], shuffle: bool=True, word_frequency_threshold: int=2): super().__init__(source_sentences, target_sentences, shuffle) self.word_frequency_threshold = word_frequency_threshold self.tokenizer_pair = TokenizerPair() @cached_property def translation_references(self): references = defaultdict(list) for idx, sentence in enumerate(self.source): split_sentence = text_to_word_sequence(self.target[idx]) references[sentence].append(split_sentence) return references @property def source_max_sentence_length(self) -> int: return self.max_sentence_length('source') @property def target_max_sentence_length(self) -> int: return self.max_sentence_length('target') @property def source_vocab_size(self) -> int: return self.tokenizer_pair.source.num_words @property def target_vocab_size(self) -> int: return self.tokenizer_pair.target.num_words def get_vocab_size(self, level: str) -> int: if not self.tokenizer_pair.is_tokenized: raise ValueError('Dataset has not been tokenized yet') return len(self.tokenizer_pair[level].word_index) + 1 def max_sentence_length(self, level: str) -> int: return max(len(line.split()) for line in self[level]) def tokenize(self) -> None: if not self.tokenizer_pair.is_tokenized: self.tokenizer_pair['source'].fit_on_texts(self.source) self.tokenizer_pair['target'].fit_on_texts(self.target) # limit number of words returned from tokenizer # according to frequency threshold self.tokenizer_pair['source'].num_words = len( [word for word, count in self.tokenizer_pair['source'].word_counts.items() if count > self.word_frequency_threshold - 1] ) self.tokenizer_pair['target'].num_words = len( [word for word, count in self.tokenizer_pair['target'].word_counts.items() if count > self.word_frequency_threshold - 1] ) def get_sequences(self, level: str) -> np.ndarray: if not self.tokenizer_pair.is_tokenized: self.tokenize() sentences = self.tokenizer_pair[level].texts_to_sequences(self[level]) return pad_sequences( sentences, maxlen=self.max_sentence_length(level), padding='post' ) def encode_output(self, sequences: np.array) -> np.array: return to_categorical(sequences, self.target_vocab_size) def sequence_to_sentence(self, sequence: Iterable) -> str: target_sentence = [ self.tokenizer_pair.target_index_word.get(word_index, '') for word_index in sequence ] return ' '.join(target_sentence) def sentence_to_sequence(self, sentence: str) -> np.ndarray: return pad_sequences( self.tokenizer_pair['source'].texts_to_sequences([sentence]), self.max_sentence_length('source'), padding='post' )
[ 18, 19, 24, 26, 27 ]
205
e221553f866de8b3e175197a40982506bf8c1ef9
<mask token> class Net(torch.nn.Module): def __init__(self, n_feature, n_hidden, n_output): super(Net, self).__init__() self.hidden = torch.nn.Linear(n_feature, n_hidden) self.predict = torch.nn.Linear(n_hidden, n_output) def forward(self, x): h1 = F.relu(self.hidden(x)) y = self.predict(h1) return y <mask token>
<mask token> class Net(torch.nn.Module): def __init__(self, n_feature, n_hidden, n_output): super(Net, self).__init__() self.hidden = torch.nn.Linear(n_feature, n_hidden) self.predict = torch.nn.Linear(n_hidden, n_output) def forward(self, x): h1 = F.relu(self.hidden(x)) y = self.predict(h1) return y <mask token> net.load_state_dict(torch.load('net_data_multi.pkl')) <mask token> file_out.write('caseid,midprice\n') <mask token> while case < 143: line = file_test.readline().split(',') if len(line) < 9: case += 1 while case <= 153: x = torch.FloatTensor(40).zero_() y = torch.FloatTensor(20).zero_() for ct in range(10): line = file_test.readline() if line == '': break line = line.split(',') x[ct * 4] = float(line[6]) x[ct * 4 + 1] = float(line[7]) / 10000 x[ct * 4 + 2] = float(line[8]) x[ct * 4 + 3] = float(line[9]) / 10000 prediction = net(x) average = 0 for k in range(10): average += prediction.data.numpy()[k] average = 1.0 * average / 10 file_out.write(str(case) + ',' + str(average) + '\n') line = file_test.readline() case += 1 file_test.close() file_out.close() print('test complete')
<mask token> class Net(torch.nn.Module): def __init__(self, n_feature, n_hidden, n_output): super(Net, self).__init__() self.hidden = torch.nn.Linear(n_feature, n_hidden) self.predict = torch.nn.Linear(n_hidden, n_output) def forward(self, x): h1 = F.relu(self.hidden(x)) y = self.predict(h1) return y net = Net(n_feature=40, n_hidden=10, n_output=20) net.load_state_dict(torch.load('net_data_multi.pkl')) file_test = open('dataset/test_data.csv', 'r') line = file_test.readline() file_out = open('result_multi.csv', 'w') file_out.write('caseid,midprice\n') case = 1 while case < 143: line = file_test.readline().split(',') if len(line) < 9: case += 1 while case <= 153: x = torch.FloatTensor(40).zero_() y = torch.FloatTensor(20).zero_() for ct in range(10): line = file_test.readline() if line == '': break line = line.split(',') x[ct * 4] = float(line[6]) x[ct * 4 + 1] = float(line[7]) / 10000 x[ct * 4 + 2] = float(line[8]) x[ct * 4 + 3] = float(line[9]) / 10000 prediction = net(x) average = 0 for k in range(10): average += prediction.data.numpy()[k] average = 1.0 * average / 10 file_out.write(str(case) + ',' + str(average) + '\n') line = file_test.readline() case += 1 file_test.close() file_out.close() print('test complete')
import torch import torch.nn.functional as F import csv class Net(torch.nn.Module): def __init__(self, n_feature, n_hidden, n_output): super(Net, self).__init__() self.hidden = torch.nn.Linear(n_feature, n_hidden) self.predict = torch.nn.Linear(n_hidden, n_output) def forward(self, x): h1 = F.relu(self.hidden(x)) y = self.predict(h1) return y net = Net(n_feature=40, n_hidden=10, n_output=20) net.load_state_dict(torch.load('net_data_multi.pkl')) file_test = open('dataset/test_data.csv', 'r') line = file_test.readline() file_out = open('result_multi.csv', 'w') file_out.write('caseid,midprice\n') case = 1 while case < 143: line = file_test.readline().split(',') if len(line) < 9: case += 1 while case <= 153: x = torch.FloatTensor(40).zero_() y = torch.FloatTensor(20).zero_() for ct in range(10): line = file_test.readline() if line == '': break line = line.split(',') x[ct * 4] = float(line[6]) x[ct * 4 + 1] = float(line[7]) / 10000 x[ct * 4 + 2] = float(line[8]) x[ct * 4 + 3] = float(line[9]) / 10000 prediction = net(x) average = 0 for k in range(10): average += prediction.data.numpy()[k] average = 1.0 * average / 10 file_out.write(str(case) + ',' + str(average) + '\n') line = file_test.readline() case += 1 file_test.close() file_out.close() print('test complete')
import torch import torch.nn.functional as F import csv class Net(torch.nn.Module): def __init__(self, n_feature, n_hidden, n_output): super(Net, self).__init__() self.hidden = torch.nn.Linear(n_feature, n_hidden) self.predict = torch.nn.Linear(n_hidden, n_output) def forward(self, x): h1 = F.relu(self.hidden(x)) y = self.predict(h1) return y net = Net(n_feature=40, n_hidden=10, n_output=20) net.load_state_dict(torch.load('net_data_multi.pkl')) file_test = open('dataset/test_data.csv','r') line = file_test.readline() file_out = open('result_multi.csv','w') file_out.write('caseid,midprice\n') case = 1 while case < 143: line = file_test.readline().split(',') if len(line) < 9: case += 1 while case <= 153: x = torch.FloatTensor(40).zero_() y = torch.FloatTensor(20).zero_() for ct in range(10): line = file_test.readline() if line == '': break line = line.split(',') x[ct*4] = float(line[6]) x[ct*4+1] = float(line[7])/10000 x[ct*4+2] = float(line[8]) x[ct*4+3] = float(line[9])/10000 prediction = net(x) average = 0 for k in range(10): average += prediction.data.numpy()[k] average = 1.0*average/10 file_out.write(str(case)+','+str(average)+'\n') #print(str(case)+','+str(average)+'\n') line = file_test.readline() case += 1 file_test.close() file_out.close() print('test complete')
[ 3, 4, 5, 6, 7 ]
206
39dda191ab2137b5f5538660f17e39b0a1358bf4
<mask token>
<mask token> for i in range(nodes): r, g, b = colorsys.hsv_to_rgb(float(i) / nodes, 1.0, 1.0) R, G, B = int(255 * r), int(255 * g), int(255 * b) color = [R, G, B] print(color) img[markers == i + 2] = list(color) <mask token> cv2.putText(img, text, (160, 20), font, 0.5, (0, 0, 0), 1, cv2.LINE_AA) plt.subplot(321), plt.imshow(rgb_img) plt.title('Input image'), plt.xticks([]), plt.yticks([]) plt.subplot(322), plt.imshow(thresh, 'gray') plt.title('Binary threshold'), plt.xticks([]), plt.yticks([]) plt.subplot(323), plt.imshow(sure_bg, 'gray') plt.title('Sure background'), plt.xticks([]), plt.yticks([]) plt.subplot(324), plt.imshow(sure_fg, 'gray') plt.title('Sure foreground'), plt.xticks([]), plt.yticks([]) plt.subplot(325), plt.imshow(dist_transform, 'gray') plt.title('Distance transform'), plt.xticks([]), plt.yticks([]) plt.subplot(326), plt.imshow(img, 'gray') plt.title('Result from watershed'), plt.xticks([]), plt.yticks([]) plt.tight_layout() plt.show()
<mask token> img = cv2.imread('coins.jpg') b, g, r = cv2.split(img) rgb_img = cv2.merge([r, g, b]) gray = cv2.cvtColor(img, cv2.COLOR_RGB2GRAY) grayBlur = cv2.medianBlur(gray, 3) ret, thresh = cv2.threshold(grayBlur, 200, 255, cv2.THRESH_BINARY_INV) kernel = cv2.getStructuringElement(cv2.MORPH_ELLIPSE, (5, 5)) opening = cv2.morphologyEx(thresh, cv2.MORPH_OPEN, kernel, iterations=2) sure_bg = cv2.dilate(opening, kernel, iterations=1) dist_transform = cv2.distanceTransform(opening, cv2.DIST_L2, 5) ret, sure_fg = cv2.threshold(dist_transform, 0.6 * dist_transform.max(), 255, 0 ) sure_fg = np.uint8(sure_fg) unknown = cv2.subtract(sure_bg, sure_fg) ret, markers = cv2.connectedComponents(sure_fg) markers = markers + 1 markers[unknown == 255] = 0 markers = cv2.watershed(img, markers) img[markers == -1] = [0, 0, 0] img[markers == 1] = [255, 255, 255] nodes = np.amax(markers) for i in range(nodes): r, g, b = colorsys.hsv_to_rgb(float(i) / nodes, 1.0, 1.0) R, G, B = int(255 * r), int(255 * g), int(255 * b) color = [R, G, B] print(color) img[markers == i + 2] = list(color) text = 'Coins: ' + str(np.amax(markers - 1)) font = cv2.FONT_HERSHEY_SIMPLEX cv2.putText(img, text, (160, 20), font, 0.5, (0, 0, 0), 1, cv2.LINE_AA) plt.subplot(321), plt.imshow(rgb_img) plt.title('Input image'), plt.xticks([]), plt.yticks([]) plt.subplot(322), plt.imshow(thresh, 'gray') plt.title('Binary threshold'), plt.xticks([]), plt.yticks([]) plt.subplot(323), plt.imshow(sure_bg, 'gray') plt.title('Sure background'), plt.xticks([]), plt.yticks([]) plt.subplot(324), plt.imshow(sure_fg, 'gray') plt.title('Sure foreground'), plt.xticks([]), plt.yticks([]) plt.subplot(325), plt.imshow(dist_transform, 'gray') plt.title('Distance transform'), plt.xticks([]), plt.yticks([]) plt.subplot(326), plt.imshow(img, 'gray') plt.title('Result from watershed'), plt.xticks([]), plt.yticks([]) plt.tight_layout() plt.show()
import numpy as np import cv2 import colorsys from matplotlib import pyplot as plt img = cv2.imread('coins.jpg') b, g, r = cv2.split(img) rgb_img = cv2.merge([r, g, b]) gray = cv2.cvtColor(img, cv2.COLOR_RGB2GRAY) grayBlur = cv2.medianBlur(gray, 3) ret, thresh = cv2.threshold(grayBlur, 200, 255, cv2.THRESH_BINARY_INV) kernel = cv2.getStructuringElement(cv2.MORPH_ELLIPSE, (5, 5)) opening = cv2.morphologyEx(thresh, cv2.MORPH_OPEN, kernel, iterations=2) sure_bg = cv2.dilate(opening, kernel, iterations=1) dist_transform = cv2.distanceTransform(opening, cv2.DIST_L2, 5) ret, sure_fg = cv2.threshold(dist_transform, 0.6 * dist_transform.max(), 255, 0 ) sure_fg = np.uint8(sure_fg) unknown = cv2.subtract(sure_bg, sure_fg) ret, markers = cv2.connectedComponents(sure_fg) markers = markers + 1 markers[unknown == 255] = 0 markers = cv2.watershed(img, markers) img[markers == -1] = [0, 0, 0] img[markers == 1] = [255, 255, 255] nodes = np.amax(markers) for i in range(nodes): r, g, b = colorsys.hsv_to_rgb(float(i) / nodes, 1.0, 1.0) R, G, B = int(255 * r), int(255 * g), int(255 * b) color = [R, G, B] print(color) img[markers == i + 2] = list(color) text = 'Coins: ' + str(np.amax(markers - 1)) font = cv2.FONT_HERSHEY_SIMPLEX cv2.putText(img, text, (160, 20), font, 0.5, (0, 0, 0), 1, cv2.LINE_AA) plt.subplot(321), plt.imshow(rgb_img) plt.title('Input image'), plt.xticks([]), plt.yticks([]) plt.subplot(322), plt.imshow(thresh, 'gray') plt.title('Binary threshold'), plt.xticks([]), plt.yticks([]) plt.subplot(323), plt.imshow(sure_bg, 'gray') plt.title('Sure background'), plt.xticks([]), plt.yticks([]) plt.subplot(324), plt.imshow(sure_fg, 'gray') plt.title('Sure foreground'), plt.xticks([]), plt.yticks([]) plt.subplot(325), plt.imshow(dist_transform, 'gray') plt.title('Distance transform'), plt.xticks([]), plt.yticks([]) plt.subplot(326), plt.imshow(img, 'gray') plt.title('Result from watershed'), plt.xticks([]), plt.yticks([]) plt.tight_layout() plt.show()
import numpy as np import cv2 import colorsys from matplotlib import pyplot as plt img = cv2.imread('coins.jpg') b,g,r = cv2.split(img) rgb_img = cv2.merge([r,g,b]) gray = cv2.cvtColor(img, cv2.COLOR_RGB2GRAY) # Blurring image grayBlur = cv2.medianBlur(gray, 3) # Binary threshold ret, thresh = cv2.threshold(grayBlur, 200,255, cv2.THRESH_BINARY_INV) # Noise removal kernel = cv2.getStructuringElement(cv2.MORPH_ELLIPSE,(5,5)) opening = cv2.morphologyEx(thresh,cv2.MORPH_OPEN,kernel,iterations=2) # Sure background area sure_bg = cv2.dilate(opening, kernel, iterations=1) # Finding sure foreground area dist_transform = cv2.distanceTransform(opening, cv2.DIST_L2,5) ret, sure_fg = cv2.threshold(dist_transform,0.6*dist_transform.max(),255,0) # Finding unknown region sure_fg = np.uint8(sure_fg) unknown = cv2.subtract(sure_bg,sure_fg) # Marker labelling ret, markers = cv2.connectedComponents(sure_fg) # Add one to all labels so that sure background is not 0, but 1 markers = markers+1 # Now, mark the region of unknown with zero markers[unknown==255] = 0 markers = cv2.watershed(img,markers) # Coloring borders black img[markers == -1] = [0,0,0] #Color background white img[markers == 1] = [255, 255, 255] # Color nodes nodes = np.amax(markers) for i in range(nodes): (r, g, b) = colorsys.hsv_to_rgb(float(i) / nodes, 1.0, 1.0) R, G, B = int(255 * r), int(255 * g), int(255 * b) color = [R,G,B] print(color) img[markers == i+2] = list(color) # Add text with coin count text = 'Coins: ' + (str)(np.amax(markers-1)) font = cv2.FONT_HERSHEY_SIMPLEX cv2.putText(img,text,(160,20), font, 0.5,(0,0,0),1,cv2.LINE_AA) # Plotting plt.subplot(321), plt.imshow(rgb_img ) plt.title('Input image'), plt.xticks([]), plt.yticks([]) plt.subplot(322),plt.imshow(thresh, 'gray') plt.title("Binary threshold"), plt.xticks([]), plt.yticks([]) plt.subplot(323),plt.imshow(sure_bg, 'gray') plt.title("Sure background"), plt.xticks([]), plt.yticks([]) plt.subplot(324),plt.imshow(sure_fg, 'gray') plt.title("Sure foreground"), plt.xticks([]), plt.yticks([]) plt.subplot(325),plt.imshow(dist_transform, 'gray') plt.title("Distance transform"), plt.xticks([]), plt.yticks([]) plt.subplot(326),plt.imshow(img, 'gray') plt.title("Result from watershed"), plt.xticks([]), plt.yticks([]) plt.tight_layout() plt.show()
[ 0, 1, 2, 3, 4 ]
207
0e6e84a31b626639e2aa149fd1ef89f3ef251cd7
<mask token> class Context(Base): def __init__(self, dataset='', capsys=None): super(Context, self).__init__(capsys=capsys) self.dataset = '' self.dataset = dataset <mask token> def set_dataset(self, dataset): self.dataset = dataset <mask token>
<mask token> class Context(Base): def __init__(self, dataset='', capsys=None): super(Context, self).__init__(capsys=capsys) self.dataset = '' self.dataset = dataset def get_dataset(self): return self.dataset def set_dataset(self, dataset): self.dataset = dataset <mask token>
<mask token> class Context(Base): def __init__(self, dataset='', capsys=None): super(Context, self).__init__(capsys=capsys) self.dataset = '' self.dataset = dataset def get_dataset(self): return self.dataset def set_dataset(self, dataset): self.dataset = dataset def validation_after_subcommand_execution(self): captured = self.get_capsys().readouterr() assert DATASET_EXAMPLE['version'] in captured.out
from synda.tests.context.models import Context as Base from synda.tests.tests.constants import DATASET_EXAMPLE class Context(Base): def __init__(self, dataset='', capsys=None): super(Context, self).__init__(capsys=capsys) self.dataset = '' self.dataset = dataset def get_dataset(self): return self.dataset def set_dataset(self, dataset): self.dataset = dataset def validation_after_subcommand_execution(self): captured = self.get_capsys().readouterr() assert DATASET_EXAMPLE['version'] in captured.out
# -*- coding: utf-8 -*- ################################## # @program synda # @description climate models data transfer program # @copyright Copyright "(c)2009 Centre National de la Recherche Scientifique CNRS. # All Rights Reserved" # @license CeCILL (https://raw.githubusercontent.com/Prodiguer/synda/master/sdt/doc/LICENSE) ################################## from synda.tests.context.models import Context as Base from synda.tests.tests.constants import DATASET_EXAMPLE class Context(Base): def __init__(self, dataset="", capsys=None): super(Context, self).__init__(capsys=capsys) # init self.dataset = "" # settings self.dataset = dataset def get_dataset(self): return self.dataset def set_dataset(self, dataset): self.dataset = dataset def validation_after_subcommand_execution(self): captured = self.get_capsys().readouterr() assert DATASET_EXAMPLE["version"] in captured.out
[ 3, 4, 5, 6, 7 ]
208
c0d71d970b2632dbf182a5ee8bad27d3e41578f6
<mask token> def sumInput(text): f = open(text, 'r') sum = 0 count = 1 for line in f: count += 1 line = line.strip() if line[0] == '+': sum += int(line[1:]) else: sum -= int(line[1:]) f.close() return sum <mask token>
<mask token> def sumInput(text): f = open(text, 'r') sum = 0 count = 1 for line in f: count += 1 line = line.strip() if line[0] == '+': sum += int(line[1:]) else: sum -= int(line[1:]) f.close() return sum def main(): print(sumInput('input.txt')) <mask token>
<mask token> def sumInput(text): f = open(text, 'r') sum = 0 count = 1 for line in f: count += 1 line = line.strip() if line[0] == '+': sum += int(line[1:]) else: sum -= int(line[1:]) f.close() return sum def main(): print(sumInput('input.txt')) if __name__ == '__main__': main()
import sys def sumInput(text): f = open(text, 'r') sum = 0 count = 1 for line in f: count += 1 line = line.strip() if line[0] == '+': sum += int(line[1:]) else: sum -= int(line[1:]) f.close() return sum def main(): print(sumInput('input.txt')) if __name__ == '__main__': main()
#!/Library/Frameworks/Python.framework/Versions/3.7/bin/python3 import sys def sumInput(text): f = open(text, 'r') sum = 0 count = 1 for line in f: count += 1 line = line.strip() if (line[0] == '+'): sum += int(line[1:]) else: sum -= int(line[1:]) f.close() return sum def main(): print(sumInput('input.txt')) if __name__ == "__main__": main()
[ 1, 2, 3, 4, 5 ]
209
f14d46bedd5f6e0081a982251ad45e95860ef310
class HashTable: <mask token> <mask token> <mask token> <mask token>
class HashTable: <mask token> def hash(self, chave): return int(chave) <mask token> <mask token>
class HashTable: <mask token> def hash(self, chave): return int(chave) def __put(self, int, chave, valor): self.dados.append({chave: valor}) <mask token>
class HashTable: def __init__(self): self.dados = [] def hash(self, chave): return int(chave) def __put(self, int, chave, valor): self.dados.append({chave: valor}) <mask token>
class HashTable: def __init__(self): self.dados = [] def hash(self, chave): return int(chave) def __put(self, int, chave, valor): self.dados.append({chave: valor}) """ backup = dados dados = novo_array(t * 2) for elemento in backup: hash = hash(elemento.chave) __put(h % (t * 2), elemento.chave, elemento.valor) """
[ 1, 2, 3, 4, 5 ]
210
21a41356fcedb36223498db0fe783e4a9e8e1ba6
<mask token>
with open('Book1.txt', 'r') as file1: with open('20k.txt', 'r') as file2: same = set(file1).intersection(file2) same.discard('\n') with open('notin20kforBook1.txt', 'w') as file_out: for line in same: file_out.write(line) with open('Book2.txt', 'r') as file3: with open('20k.txt', 'r') as file2: same = set(file3).intersection(file2) same.discard('\n') with open('notin20kforBook2.txt', 'w') as file_out: for line in same: file_out.write(line) with open('Book3.txt', 'r') as file4: with open('20k.txt', 'r') as file2: same = set(file4).intersection(file2) same.discard('\n') with open('notin20kforBook3.txt', 'w') as file_out: for line in same: file_out.write(line)
# help from https://stackoverflow.com/questions/19007383/compare-two-different-files-line-by-line-in-python with open('Book1.txt', 'r') as file1: with open('20k.txt', 'r') as file2: same = set(file1).intersection(file2) same.discard('\n') with open('notin20kforBook1.txt', 'w') as file_out: for line in same: file_out.write(line) with open('Book2.txt', 'r') as file3: with open('20k.txt', 'r') as file2: same = set(file3).intersection(file2) same.discard('\n') with open('notin20kforBook2.txt', 'w') as file_out: for line in same: file_out.write(line) with open('Book3.txt', 'r') as file4: with open('20k.txt', 'r') as file2: same = set(file4).intersection(file2) same.discard('\n') with open('notin20kforBook3.txt', 'w') as file_out: for line in same: file_out.write(line)
null
null
[ 0, 1, 2 ]
211
de7b5e44c5c213e4ab70b0f8c0c402edaf4926e0
<mask token>
<mask token> app_name = 'user' urlpatterns = [url('^$', views.index, name='index'), url('login/', views. login, name='login'), url('regist/', views.regist, name='regist'), url( '^getuser\\w*/(?P<id>\\d*)', views.getUserById, name='getuser'), url( '^sendmessage\\w*/(?P<user_telephone>\\d*)', views.sendMessage, name= 'sendmessage'), url('gettoken', views.getUserbyToken, name= 'getUserbyToken')]
from django.conf.urls import url from . import views app_name = 'user' urlpatterns = [url('^$', views.index, name='index'), url('login/', views. login, name='login'), url('regist/', views.regist, name='regist'), url( '^getuser\\w*/(?P<id>\\d*)', views.getUserById, name='getuser'), url( '^sendmessage\\w*/(?P<user_telephone>\\d*)', views.sendMessage, name= 'sendmessage'), url('gettoken', views.getUserbyToken, name= 'getUserbyToken')]
from django.conf.urls import url from .import views app_name='user' # user子路由 urlpatterns = [ # user首页 url(r'^$',views.index,name='index'), # 用户登录 url('login/', views.login, name='login'), # 用户注册 url('regist/', views.regist, name='regist'), # 根据id判断用户是否存在 url(r'^getuser\w*/(?P<id>\d*)', views.getUserById, name='getuser'), # 获取短信验证接口 url(r'^sendmessage\w*/(?P<user_telephone>\d*)',views.sendMessage,name='sendmessage'), # 根据token查询一定的用户信息 postRight url(r'gettoken', views.getUserbyToken, name='getUserbyToken'), ]
null
[ 0, 1, 2, 3 ]
212
cc7f1f38efcd4d757c1d11e2bd53695fca44e15a
<mask token>
<mask token> with onto: class Pizza(Thing): pass class MeatPizza(Pizza): pass class Topping(Thing): pass class has_Topping((Pizza >> Topping)): pass print(Pizza) <mask token> print(Pizza.subclasses()) <mask token> print(MeatPizza.is_a) <mask token> print(MeatPizza.ancestors()) <mask token> print(Pizza.iri)
<mask token> onto = get_ontology('http://test1.org/onto.owl') with onto: class Pizza(Thing): pass class MeatPizza(Pizza): pass class Topping(Thing): pass class has_Topping((Pizza >> Topping)): pass print(Pizza) <mask token> print(Pizza.subclasses()) <mask token> print(MeatPizza.is_a) <mask token> print(MeatPizza.ancestors()) <mask token> print(Pizza.iri)
<mask token> from owlready2 import * onto = get_ontology('http://test1.org/onto.owl') with onto: class Pizza(Thing): pass class MeatPizza(Pizza): pass class Topping(Thing): pass class has_Topping((Pizza >> Topping)): pass print(Pizza) <mask token> print(Pizza.subclasses()) <mask token> print(MeatPizza.is_a) <mask token> print(MeatPizza.ancestors()) <mask token> print(Pizza.iri)
'For learning OWL and owlready2' 'From "https://qiita.com/sci-koke/items/a650c09bf77331f5537f"' 'From "https://owlready2.readthedocs.io/en/latest/class.html"' '* Owlready2 * Warning: optimized Cython parser module "owlready2_optimized" is not available, defaulting to slower Python implementation' '↑ This wartning mean is You can either install Cython (and a C compiler) and re-install Owlready to benefit from the optimized module, or continue using the non-optimized version' 'pip install Owlready2' from owlready2 import * onto = get_ontology("http://test1.org/onto.owl") with onto: #エンティティクラス class Pizza(Thing): pass class MeatPizza(Pizza): pass class Topping(Thing): pass # プロパティクラス class has_Topping(Pizza >> Topping): pass print(Pizza) 'The .subclasses() method returns the list of direct subclasses of a class.' print(Pizza.subclasses()) 'Owlready2 provides the .is_a attribute for getting the list of superclasses' print(MeatPizza.is_a) 'The .descendants() and .ancestors() Class methods return a set of the descendant and ancestor Classes.' print(MeatPizza.ancestors()) 'The .iri attribute of the Class can be used to obtain the full IRI of the class.' print(Pizza.iri)
[ 0, 1, 2, 3, 4 ]
213
a2e2528f560f6117d4ceeb9cd20d3f6f6b2a30a7
<mask token>
def testeum(): a = 10 print(id(a)) <mask token>
def testeum(): a = 10 print(id(a)) def testedois(): a = 10 print(id(a))
# -*- coding: utf-8 -*- def testeum(): a = 10 print(id(a)) def testedois(): a = 10 print(id(a))
null
[ 0, 1, 2, 3 ]
214
e09af436f2fb37d16427aa0b1416d6f2d59ad6c4
<mask token> def append_log(log, message): f = open(log, 'a+') today = datetime.now() f.write('%s %s \n' % (today.strftime('%Y-%m-%d %H:%M:%S'), message)) f.close() def get_root_pass(): with open('/root/.my.cnf') as fp: lines = fp.read().splitlines() for line in lines: grep = re.findall('password', line) if grep: pwrd = line.split('"')[1] return pwrd <mask token> def check_ssh_conn(argv, remote_user, remote_host, remote_port, remote_pass): cmd = ('sshpass -p "' + remote_pass + '" ssh -o StrictHostKeyChecking=no -p ' + remote_port + ' -q ' + remote_user + '@' + remote_host + ' exit;echo $?') res = execute(cmd) log = '/home/kusanagi/' + argv + '/log/backup.log' if int(res) == 0: pass else: append_log(log, 'Remote connection failed. Can not issue remote backup' ) update_backup_record(argv, 1, 0) sys.exit(1) def remote_backup(argv, remote_user, remote_host, remote_port, remote_pass, remote_dest): log = '/home/kusanagi/' + argv + '/log/backup.log' append_log(log, '--- Remote backup') check_ssh_conn(argv, remote_user, remote_host, remote_port, remote_pass) backup_db(argv) tarname = compress_provision_dir(argv, '/home/kusanagi/') conf_ssh = '/etc/ssh/ssh_config' with open(conf_ssh) as fp: lines = fp.read().splitlines() for line in lines: grep = re.findall(remote_host, line) if grep: break if not grep: f = open(conf_ssh, 'a+') f.write('Host %s\n\tStrictHostKeyChecking no\n' % remote_host) f.close() cmd = ('sshpass -p "' + remote_pass + '" rsync --remove-source-files -azhe \'ssh -p' + remote_port + "' " + tarname + '.tar.gz ' + remote_user + '@' + remote_host + ':' + remote_dest + ' 2>> ' + log + ' ; echo $?') res = execute(cmd) if int(res) == 0: update_backup_record(argv, 1, 1) else: update_backup_record(argv, 1, 0) def drive_backup(argv, drive_dir): log = '/home/kusanagi/' + argv + '/log/backup.log' append_log(log, '--- Backup to Google Drive') backup_db(argv) tarname = compress_provision_dir(argv, '/home/kusanagi/') cmd = ('rclone copy ' + tarname + '.tar.gz GGD1:' + drive_dir + ' 2>> ' + log + ' ; echo $?') res = execute(cmd) if int(res) == 0: update_backup_record(argv, 2, 1) else: update_backup_record(argv, 2, 0) os.remove(tarname + '.tar.gz') def get_options(argv): parser = argparse.ArgumentParser() parser.add_argument('mode', type=str, choices=['local', 'remote', 'drive']) parser.add_argument('options', nargs=argparse.REMAINDER) return parser.parse_args(argv) <mask token>
<mask token> def append_log(log, message): f = open(log, 'a+') today = datetime.now() f.write('%s %s \n' % (today.strftime('%Y-%m-%d %H:%M:%S'), message)) f.close() def get_root_pass(): with open('/root/.my.cnf') as fp: lines = fp.read().splitlines() for line in lines: grep = re.findall('password', line) if grep: pwrd = line.split('"')[1] return pwrd <mask token> def compress_provision_dir(argv, chdir=''): date = datetime.now() today = date.strftime('%Y-%m-%d') if chdir: tarname = chdir + argv + '.' + today else: tarname = '/home/kusanagi/backup/' + argv + '.' + today source_dir = '/home/kusanagi/' + argv shutil.make_archive(tarname, 'gztar', source_dir) return tarname def local_backup(argv): append_log('/home/kusanagi/' + argv + '/log/backup.log', '--- Local backup' ) backup_db(argv) tarname = compress_provision_dir(argv) tar_file = pathlib.Path(tarname + '.tar.gz') if tar_file.exists(): update_backup_record(argv, 0, 1) else: update_backup_record(argv, 0, 0) def check_ssh_conn(argv, remote_user, remote_host, remote_port, remote_pass): cmd = ('sshpass -p "' + remote_pass + '" ssh -o StrictHostKeyChecking=no -p ' + remote_port + ' -q ' + remote_user + '@' + remote_host + ' exit;echo $?') res = execute(cmd) log = '/home/kusanagi/' + argv + '/log/backup.log' if int(res) == 0: pass else: append_log(log, 'Remote connection failed. Can not issue remote backup' ) update_backup_record(argv, 1, 0) sys.exit(1) def remote_backup(argv, remote_user, remote_host, remote_port, remote_pass, remote_dest): log = '/home/kusanagi/' + argv + '/log/backup.log' append_log(log, '--- Remote backup') check_ssh_conn(argv, remote_user, remote_host, remote_port, remote_pass) backup_db(argv) tarname = compress_provision_dir(argv, '/home/kusanagi/') conf_ssh = '/etc/ssh/ssh_config' with open(conf_ssh) as fp: lines = fp.read().splitlines() for line in lines: grep = re.findall(remote_host, line) if grep: break if not grep: f = open(conf_ssh, 'a+') f.write('Host %s\n\tStrictHostKeyChecking no\n' % remote_host) f.close() cmd = ('sshpass -p "' + remote_pass + '" rsync --remove-source-files -azhe \'ssh -p' + remote_port + "' " + tarname + '.tar.gz ' + remote_user + '@' + remote_host + ':' + remote_dest + ' 2>> ' + log + ' ; echo $?') res = execute(cmd) if int(res) == 0: update_backup_record(argv, 1, 1) else: update_backup_record(argv, 1, 0) def drive_backup(argv, drive_dir): log = '/home/kusanagi/' + argv + '/log/backup.log' append_log(log, '--- Backup to Google Drive') backup_db(argv) tarname = compress_provision_dir(argv, '/home/kusanagi/') cmd = ('rclone copy ' + tarname + '.tar.gz GGD1:' + drive_dir + ' 2>> ' + log + ' ; echo $?') res = execute(cmd) if int(res) == 0: update_backup_record(argv, 2, 1) else: update_backup_record(argv, 2, 0) os.remove(tarname + '.tar.gz') def get_options(argv): parser = argparse.ArgumentParser() parser.add_argument('mode', type=str, choices=['local', 'remote', 'drive']) parser.add_argument('options', nargs=argparse.REMAINDER) return parser.parse_args(argv) def main(): args = get_options(sys.argv[1:]) options = ' '.join(map(str, args.options)) if args.mode == 'local': local_backup(*args.options) elif args.mode == 'remote': remote_backup(*args.options) else: drive_backup(*args.options) <mask token>
<mask token> def append_log(log, message): f = open(log, 'a+') today = datetime.now() f.write('%s %s \n' % (today.strftime('%Y-%m-%d %H:%M:%S'), message)) f.close() def get_root_pass(): with open('/root/.my.cnf') as fp: lines = fp.read().splitlines() for line in lines: grep = re.findall('password', line) if grep: pwrd = line.split('"')[1] return pwrd def get_db_name(argv): try: pwrd = get_root_pass() db = pymysql.connect('localhost', 'root', pwrd, 'secure_vps') cursor = db.cursor() cursor.execute( "select id,db_name from provision where provision_name='%s'" % argv ) data = cursor.fetchone() db.close() return data except pymysql.err.OperationalError as err: print(' An error has occurred \n', err) except pymysql.err.InternalError as err: print(' An error has occurred \n', err) def backup_db(argv): data = get_db_name(argv) db_name = data[1] try: sqldir = '/home/kusanagi/' + argv + '/sql_backup/' p = pathlib.Path(sqldir) if not p.exists(): p.mkdir(mode=493, parents=True, exist_ok=True) shutil.chown(sqldir, 'kusanagi', 'kusanagi') except BaseException as error: print(error) pwrd = get_root_pass() log = '/home/kusanagi/' + argv + '/log/backup.log' mess = 'Backed up database ' + db_name append_log(log, mess) cmd = ('mysqldump --single-transaction -p' + pwrd + ' --databases ' + db_name + ' | gzip > ' + sqldir + db_name + '.sql.gz') execute_outputfile(cmd, log) def update_backup_record(argv, backup_type, result): pwrd = get_root_pass() data = get_db_name(argv) provi_id = data[0] log = '/home/kusanagi/' + argv + '/log/backup.log' db = pymysql.connect('localhost', 'root', pwrd, 'secure_vps') cursor = db.cursor() cursor.execute( 'select id from logs where provision_id=%d and status=0 and backup_type=%d' % (provi_id, backup_type)) res = cursor.fetchone() record_id = res[0] if result: cursor.execute( "update logs set status=1,message='Done' where provision_id=%d and id=%d" % (provi_id, record_id)) else: cursor.execute( "update logs set status=-1,message='Failed. See %s' where provision_id=%d and id=%d" % (log, provi_id, record_id)) db.commit() db.close() def compress_provision_dir(argv, chdir=''): date = datetime.now() today = date.strftime('%Y-%m-%d') if chdir: tarname = chdir + argv + '.' + today else: tarname = '/home/kusanagi/backup/' + argv + '.' + today source_dir = '/home/kusanagi/' + argv shutil.make_archive(tarname, 'gztar', source_dir) return tarname def local_backup(argv): append_log('/home/kusanagi/' + argv + '/log/backup.log', '--- Local backup' ) backup_db(argv) tarname = compress_provision_dir(argv) tar_file = pathlib.Path(tarname + '.tar.gz') if tar_file.exists(): update_backup_record(argv, 0, 1) else: update_backup_record(argv, 0, 0) def check_ssh_conn(argv, remote_user, remote_host, remote_port, remote_pass): cmd = ('sshpass -p "' + remote_pass + '" ssh -o StrictHostKeyChecking=no -p ' + remote_port + ' -q ' + remote_user + '@' + remote_host + ' exit;echo $?') res = execute(cmd) log = '/home/kusanagi/' + argv + '/log/backup.log' if int(res) == 0: pass else: append_log(log, 'Remote connection failed. Can not issue remote backup' ) update_backup_record(argv, 1, 0) sys.exit(1) def remote_backup(argv, remote_user, remote_host, remote_port, remote_pass, remote_dest): log = '/home/kusanagi/' + argv + '/log/backup.log' append_log(log, '--- Remote backup') check_ssh_conn(argv, remote_user, remote_host, remote_port, remote_pass) backup_db(argv) tarname = compress_provision_dir(argv, '/home/kusanagi/') conf_ssh = '/etc/ssh/ssh_config' with open(conf_ssh) as fp: lines = fp.read().splitlines() for line in lines: grep = re.findall(remote_host, line) if grep: break if not grep: f = open(conf_ssh, 'a+') f.write('Host %s\n\tStrictHostKeyChecking no\n' % remote_host) f.close() cmd = ('sshpass -p "' + remote_pass + '" rsync --remove-source-files -azhe \'ssh -p' + remote_port + "' " + tarname + '.tar.gz ' + remote_user + '@' + remote_host + ':' + remote_dest + ' 2>> ' + log + ' ; echo $?') res = execute(cmd) if int(res) == 0: update_backup_record(argv, 1, 1) else: update_backup_record(argv, 1, 0) def drive_backup(argv, drive_dir): log = '/home/kusanagi/' + argv + '/log/backup.log' append_log(log, '--- Backup to Google Drive') backup_db(argv) tarname = compress_provision_dir(argv, '/home/kusanagi/') cmd = ('rclone copy ' + tarname + '.tar.gz GGD1:' + drive_dir + ' 2>> ' + log + ' ; echo $?') res = execute(cmd) if int(res) == 0: update_backup_record(argv, 2, 1) else: update_backup_record(argv, 2, 0) os.remove(tarname + '.tar.gz') def get_options(argv): parser = argparse.ArgumentParser() parser.add_argument('mode', type=str, choices=['local', 'remote', 'drive']) parser.add_argument('options', nargs=argparse.REMAINDER) return parser.parse_args(argv) def main(): args = get_options(sys.argv[1:]) options = ' '.join(map(str, args.options)) if args.mode == 'local': local_backup(*args.options) elif args.mode == 'remote': remote_backup(*args.options) else: drive_backup(*args.options) <mask token>
<mask token> def append_log(log, message): f = open(log, 'a+') today = datetime.now() f.write('%s %s \n' % (today.strftime('%Y-%m-%d %H:%M:%S'), message)) f.close() def get_root_pass(): with open('/root/.my.cnf') as fp: lines = fp.read().splitlines() for line in lines: grep = re.findall('password', line) if grep: pwrd = line.split('"')[1] return pwrd def get_db_name(argv): try: pwrd = get_root_pass() db = pymysql.connect('localhost', 'root', pwrd, 'secure_vps') cursor = db.cursor() cursor.execute( "select id,db_name from provision where provision_name='%s'" % argv ) data = cursor.fetchone() db.close() return data except pymysql.err.OperationalError as err: print(' An error has occurred \n', err) except pymysql.err.InternalError as err: print(' An error has occurred \n', err) def backup_db(argv): data = get_db_name(argv) db_name = data[1] try: sqldir = '/home/kusanagi/' + argv + '/sql_backup/' p = pathlib.Path(sqldir) if not p.exists(): p.mkdir(mode=493, parents=True, exist_ok=True) shutil.chown(sqldir, 'kusanagi', 'kusanagi') except BaseException as error: print(error) pwrd = get_root_pass() log = '/home/kusanagi/' + argv + '/log/backup.log' mess = 'Backed up database ' + db_name append_log(log, mess) cmd = ('mysqldump --single-transaction -p' + pwrd + ' --databases ' + db_name + ' | gzip > ' + sqldir + db_name + '.sql.gz') execute_outputfile(cmd, log) def update_backup_record(argv, backup_type, result): pwrd = get_root_pass() data = get_db_name(argv) provi_id = data[0] log = '/home/kusanagi/' + argv + '/log/backup.log' db = pymysql.connect('localhost', 'root', pwrd, 'secure_vps') cursor = db.cursor() cursor.execute( 'select id from logs where provision_id=%d and status=0 and backup_type=%d' % (provi_id, backup_type)) res = cursor.fetchone() record_id = res[0] if result: cursor.execute( "update logs set status=1,message='Done' where provision_id=%d and id=%d" % (provi_id, record_id)) else: cursor.execute( "update logs set status=-1,message='Failed. See %s' where provision_id=%d and id=%d" % (log, provi_id, record_id)) db.commit() db.close() def compress_provision_dir(argv, chdir=''): date = datetime.now() today = date.strftime('%Y-%m-%d') if chdir: tarname = chdir + argv + '.' + today else: tarname = '/home/kusanagi/backup/' + argv + '.' + today source_dir = '/home/kusanagi/' + argv shutil.make_archive(tarname, 'gztar', source_dir) return tarname def local_backup(argv): append_log('/home/kusanagi/' + argv + '/log/backup.log', '--- Local backup' ) backup_db(argv) tarname = compress_provision_dir(argv) tar_file = pathlib.Path(tarname + '.tar.gz') if tar_file.exists(): update_backup_record(argv, 0, 1) else: update_backup_record(argv, 0, 0) def check_ssh_conn(argv, remote_user, remote_host, remote_port, remote_pass): cmd = ('sshpass -p "' + remote_pass + '" ssh -o StrictHostKeyChecking=no -p ' + remote_port + ' -q ' + remote_user + '@' + remote_host + ' exit;echo $?') res = execute(cmd) log = '/home/kusanagi/' + argv + '/log/backup.log' if int(res) == 0: pass else: append_log(log, 'Remote connection failed. Can not issue remote backup' ) update_backup_record(argv, 1, 0) sys.exit(1) def remote_backup(argv, remote_user, remote_host, remote_port, remote_pass, remote_dest): log = '/home/kusanagi/' + argv + '/log/backup.log' append_log(log, '--- Remote backup') check_ssh_conn(argv, remote_user, remote_host, remote_port, remote_pass) backup_db(argv) tarname = compress_provision_dir(argv, '/home/kusanagi/') conf_ssh = '/etc/ssh/ssh_config' with open(conf_ssh) as fp: lines = fp.read().splitlines() for line in lines: grep = re.findall(remote_host, line) if grep: break if not grep: f = open(conf_ssh, 'a+') f.write('Host %s\n\tStrictHostKeyChecking no\n' % remote_host) f.close() cmd = ('sshpass -p "' + remote_pass + '" rsync --remove-source-files -azhe \'ssh -p' + remote_port + "' " + tarname + '.tar.gz ' + remote_user + '@' + remote_host + ':' + remote_dest + ' 2>> ' + log + ' ; echo $?') res = execute(cmd) if int(res) == 0: update_backup_record(argv, 1, 1) else: update_backup_record(argv, 1, 0) def drive_backup(argv, drive_dir): log = '/home/kusanagi/' + argv + '/log/backup.log' append_log(log, '--- Backup to Google Drive') backup_db(argv) tarname = compress_provision_dir(argv, '/home/kusanagi/') cmd = ('rclone copy ' + tarname + '.tar.gz GGD1:' + drive_dir + ' 2>> ' + log + ' ; echo $?') res = execute(cmd) if int(res) == 0: update_backup_record(argv, 2, 1) else: update_backup_record(argv, 2, 0) os.remove(tarname + '.tar.gz') def get_options(argv): parser = argparse.ArgumentParser() parser.add_argument('mode', type=str, choices=['local', 'remote', 'drive']) parser.add_argument('options', nargs=argparse.REMAINDER) return parser.parse_args(argv) def main(): args = get_options(sys.argv[1:]) options = ' '.join(map(str, args.options)) if args.mode == 'local': local_backup(*args.options) elif args.mode == 'remote': remote_backup(*args.options) else: drive_backup(*args.options) if __name__ == '__main__': main()
#!/usr/bin/env python3 import argparse import os import sys,shutil from shutil import make_archive import pathlib from phpManager import execute,execute_outputfile from datetime import date,datetime import re import pymysql import tarfile def append_log(log,message): f = open(log, "a+") today = datetime.now() f.write("%s %s \n" % (today.strftime("%Y-%m-%d %H:%M:%S"), message)) f.close() def get_root_pass(): with open("/root/.my.cnf") as fp: lines = fp.read().splitlines() for line in lines: grep = re.findall(r'password', line) if grep: pwrd = line.split('"')[1] return pwrd def get_db_name(argv): try: pwrd = get_root_pass() db = pymysql.connect("localhost","root",pwrd,"secure_vps") cursor = db.cursor() cursor.execute("select id,db_name from provision where provision_name='%s'" % argv) data = cursor.fetchone() db.close() return data except pymysql.err.OperationalError as err: print (' An error has occurred \n', err) except pymysql.err.InternalError as err: print (' An error has occurred \n', err) def backup_db(argv): data = get_db_name(argv) db_name = data[1] try: sqldir = '/home/kusanagi/'+argv+'/sql_backup/' p = pathlib.Path(sqldir) if not p.exists(): p.mkdir(mode=0o755, parents=True, exist_ok=True) shutil.chown(sqldir,'kusanagi','kusanagi') except BaseException as error: print(error) pwrd = get_root_pass() log = '/home/kusanagi/'+argv+'/log/backup.log' mess = 'Backed up database '+db_name append_log(log,mess) cmd = 'mysqldump --single-transaction -p'+pwrd+' --databases '+db_name+' | gzip > '+sqldir+db_name+'.sql.gz' execute_outputfile(cmd,log) def update_backup_record(argv,backup_type,result): pwrd = get_root_pass() data = get_db_name(argv) provi_id = data[0] log = '/home/kusanagi/'+argv+'/log/backup.log' db = pymysql.connect("localhost","root",pwrd,"secure_vps") cursor = db.cursor() cursor.execute("select id from logs where provision_id=%d and status=0 and backup_type=%d" % (provi_id,backup_type)) res = cursor.fetchone() record_id = res[0] if result: cursor.execute("update logs set status=1,message='Done' where provision_id=%d and id=%d" % (provi_id,record_id)) else: cursor.execute("update logs set status=-1,message='Failed. See %s' where provision_id=%d and id=%d" % (log,provi_id,record_id)) db.commit() db.close() def compress_provision_dir(argv,chdir=''): date = datetime.now() today = date.strftime("%Y-%m-%d") if chdir: tarname = chdir+argv+'.'+today else: tarname = '/home/kusanagi/backup/'+argv+'.'+today source_dir = '/home/kusanagi/'+argv shutil.make_archive(tarname,"gztar",source_dir) return tarname def local_backup(argv): append_log('/home/kusanagi/'+argv+'/log/backup.log', '--- Local backup') backup_db(argv) tarname = compress_provision_dir(argv) tar_file=pathlib.Path(tarname+'.tar.gz') if tar_file.exists(): update_backup_record(argv,0,1) else: update_backup_record(argv,0,0) def check_ssh_conn(argv,remote_user,remote_host,remote_port,remote_pass): cmd = 'sshpass -p "'+remote_pass+'" ssh -o StrictHostKeyChecking=no -p '+remote_port+' -q '+remote_user+'@'+remote_host+' exit;echo $?' res = execute(cmd) log = '/home/kusanagi/'+argv+'/log/backup.log' if int(res) == 0: #print('Connect OK \n') pass else: append_log(log, 'Remote connection failed. Can not issue remote backup') update_backup_record(argv,1,0) sys.exit(1) def remote_backup(argv, remote_user, remote_host, remote_port, remote_pass, remote_dest): log = '/home/kusanagi/'+argv+'/log/backup.log' append_log(log, '--- Remote backup') check_ssh_conn(argv, remote_user, remote_host, remote_port, remote_pass) backup_db(argv) tarname = compress_provision_dir(argv,'/home/kusanagi/') conf_ssh = '/etc/ssh/ssh_config' with open(conf_ssh) as fp: lines = fp.read().splitlines() for line in lines: grep = re.findall(remote_host, line) if grep: break if not grep: #configure stricthostkey ssh f = open(conf_ssh,"a+") f.write('Host %s\n\tStrictHostKeyChecking no\n' % remote_host) f.close() cmd = 'sshpass -p "'+remote_pass+'" rsync --remove-source-files -azhe \'ssh -p'+remote_port+'\' '+tarname+'.tar.gz '+remote_user+'@'+remote_host+':'+remote_dest+' 2>> '+log+' ; echo $?' res = execute(cmd) if int(res) == 0: update_backup_record(argv,1,1) else: update_backup_record(argv,1,0) def drive_backup(argv,drive_dir): log = '/home/kusanagi/'+argv+'/log/backup.log' append_log(log,'--- Backup to Google Drive') backup_db(argv) tarname = compress_provision_dir(argv,'/home/kusanagi/') cmd = 'rclone copy '+tarname+'.tar.gz GGD1:'+drive_dir+ ' 2>> '+log+' ; echo $?' res = execute(cmd) if int(res) == 0: update_backup_record(argv,2,1) else: update_backup_record(argv,2,0) os.remove(tarname+'.tar.gz') def get_options(argv): parser = argparse.ArgumentParser() parser.add_argument('mode', type=str, choices=['local', 'remote', 'drive']) parser.add_argument('options', nargs=argparse.REMAINDER) return parser.parse_args(argv) def main(): args=get_options(sys.argv[1:]) #pwrd = get_root_pass() options = ' '.join(map(str, args.options)) if args.mode == 'local': local_backup(*args.options) elif args.mode == 'remote': remote_backup(*args.options) else: drive_backup(*args.options) if __name__ == '__main__': main()
[ 6, 9, 12, 13, 15 ]
215
46adb1834f6013ca0f13a64f280182a805d76278
<mask token>
<mask token> def parse_command_line(argv): """Parse command line argument. See -h option :param argv: arguments on the command line must include caller file name. """ formatter_class = argparse.RawDescriptionHelpFormatter parser = argparse.ArgumentParser(description=module, formatter_class= formatter_class) parser.add_argument('-n', '--name', dest='name', metavar='hostname', nargs='?', type=str, required=True, help='Define a virtual hostname') parser.add_argument('-o', '--os', dest='os', metavar='os', nargs='?', required=True, type=str, choices=['debian', 'mint', 'centos', 'mac', 'w7'], help='Define a operating system') parser.add_argument('--dry-run', help= 'Only print throughput, do not execute command.', action='store_true') parser.add_argument('--legacy', help= 'Use legacy install (from official repository).', action='store_true') parser.add_argument('--version', action='version', version= '%(prog)s {}'.format(__version__)) parser.add_argument('-v', '--verbose', dest='verbose_count', action= 'count', default=0, help='increases log verbosity for each occurence.') arguments = parser.parse_args(argv[1:]) log.setLevel(max(3 - arguments.verbose_count, 0) * 10) return arguments def main(): """Main program. Sets up logging and do some work.""" logging.basicConfig(stream=sys.stderr, level=logging.DEBUG, format= '%(name)s (%(levelname)s): %(message)s') kvm = pathlib.Path('/disks/d/VMWare/KVM') os = {'win7': '/disks/d/OS/Windows/Windows_7/Windows_7_LITE_X64.iso', 'win7_full': '/disks/d/OS/Windows/Windows_7/fr_windows_7_ultimate_x64_dvd_x15-65928.iso' , 'mint': '/disks/d/OS/Unix/Mint/linuxmint-18.3-cinnamon-64bit.iso', 'solaris': '/disks/d/OS/Unix/Solaris/11/sol-11_3-text-x86.iso'} try: arguments = parse_command_line(sys.argv) server = arguments.name os = arguments.os legacy = arguments.legacy dry = arguments.dry_run if kvm.path.exists(): kvm_disk = kvm_path + server command = ( 'virt-install --ram 2048 --disk path=${DIR_HOST}/${HOST}.qcow2,size=8 --vcpus 2 --os-type linux --os-variant ubuntuquantal --network bridge=virbr0' ) if dry: print(command) print(kvm_disk) except KeyboardInterrupt: log.error('Program interrupted!') finally: logging.shutdown() <mask token>
<mask token> module = sys.modules['__main__'].__file__ __author__ = 'FFX' __version__ = '1.0' log = logging.getLogger(module) def parse_command_line(argv): """Parse command line argument. See -h option :param argv: arguments on the command line must include caller file name. """ formatter_class = argparse.RawDescriptionHelpFormatter parser = argparse.ArgumentParser(description=module, formatter_class= formatter_class) parser.add_argument('-n', '--name', dest='name', metavar='hostname', nargs='?', type=str, required=True, help='Define a virtual hostname') parser.add_argument('-o', '--os', dest='os', metavar='os', nargs='?', required=True, type=str, choices=['debian', 'mint', 'centos', 'mac', 'w7'], help='Define a operating system') parser.add_argument('--dry-run', help= 'Only print throughput, do not execute command.', action='store_true') parser.add_argument('--legacy', help= 'Use legacy install (from official repository).', action='store_true') parser.add_argument('--version', action='version', version= '%(prog)s {}'.format(__version__)) parser.add_argument('-v', '--verbose', dest='verbose_count', action= 'count', default=0, help='increases log verbosity for each occurence.') arguments = parser.parse_args(argv[1:]) log.setLevel(max(3 - arguments.verbose_count, 0) * 10) return arguments def main(): """Main program. Sets up logging and do some work.""" logging.basicConfig(stream=sys.stderr, level=logging.DEBUG, format= '%(name)s (%(levelname)s): %(message)s') kvm = pathlib.Path('/disks/d/VMWare/KVM') os = {'win7': '/disks/d/OS/Windows/Windows_7/Windows_7_LITE_X64.iso', 'win7_full': '/disks/d/OS/Windows/Windows_7/fr_windows_7_ultimate_x64_dvd_x15-65928.iso' , 'mint': '/disks/d/OS/Unix/Mint/linuxmint-18.3-cinnamon-64bit.iso', 'solaris': '/disks/d/OS/Unix/Solaris/11/sol-11_3-text-x86.iso'} try: arguments = parse_command_line(sys.argv) server = arguments.name os = arguments.os legacy = arguments.legacy dry = arguments.dry_run if kvm.path.exists(): kvm_disk = kvm_path + server command = ( 'virt-install --ram 2048 --disk path=${DIR_HOST}/${HOST}.qcow2,size=8 --vcpus 2 --os-type linux --os-variant ubuntuquantal --network bridge=virbr0' ) if dry: print(command) print(kvm_disk) except KeyboardInterrupt: log.error('Program interrupted!') finally: logging.shutdown() if __name__ == '__main__': sys.exit(main())
import sys import argparse import logging from pathlib import Path module = sys.modules['__main__'].__file__ __author__ = 'FFX' __version__ = '1.0' log = logging.getLogger(module) def parse_command_line(argv): """Parse command line argument. See -h option :param argv: arguments on the command line must include caller file name. """ formatter_class = argparse.RawDescriptionHelpFormatter parser = argparse.ArgumentParser(description=module, formatter_class= formatter_class) parser.add_argument('-n', '--name', dest='name', metavar='hostname', nargs='?', type=str, required=True, help='Define a virtual hostname') parser.add_argument('-o', '--os', dest='os', metavar='os', nargs='?', required=True, type=str, choices=['debian', 'mint', 'centos', 'mac', 'w7'], help='Define a operating system') parser.add_argument('--dry-run', help= 'Only print throughput, do not execute command.', action='store_true') parser.add_argument('--legacy', help= 'Use legacy install (from official repository).', action='store_true') parser.add_argument('--version', action='version', version= '%(prog)s {}'.format(__version__)) parser.add_argument('-v', '--verbose', dest='verbose_count', action= 'count', default=0, help='increases log verbosity for each occurence.') arguments = parser.parse_args(argv[1:]) log.setLevel(max(3 - arguments.verbose_count, 0) * 10) return arguments def main(): """Main program. Sets up logging and do some work.""" logging.basicConfig(stream=sys.stderr, level=logging.DEBUG, format= '%(name)s (%(levelname)s): %(message)s') kvm = pathlib.Path('/disks/d/VMWare/KVM') os = {'win7': '/disks/d/OS/Windows/Windows_7/Windows_7_LITE_X64.iso', 'win7_full': '/disks/d/OS/Windows/Windows_7/fr_windows_7_ultimate_x64_dvd_x15-65928.iso' , 'mint': '/disks/d/OS/Unix/Mint/linuxmint-18.3-cinnamon-64bit.iso', 'solaris': '/disks/d/OS/Unix/Solaris/11/sol-11_3-text-x86.iso'} try: arguments = parse_command_line(sys.argv) server = arguments.name os = arguments.os legacy = arguments.legacy dry = arguments.dry_run if kvm.path.exists(): kvm_disk = kvm_path + server command = ( 'virt-install --ram 2048 --disk path=${DIR_HOST}/${HOST}.qcow2,size=8 --vcpus 2 --os-type linux --os-variant ubuntuquantal --network bridge=virbr0' ) if dry: print(command) print(kvm_disk) except KeyboardInterrupt: log.error('Program interrupted!') finally: logging.shutdown() if __name__ == '__main__': sys.exit(main())
#!/usr/bin/python3 # encoding: utf-8 import sys import argparse import logging from pathlib import Path module = sys.modules['__main__'].__file__ __author__ = 'FFX' __version__ = '1.0' log = logging.getLogger(module) def parse_command_line(argv): """Parse command line argument. See -h option :param argv: arguments on the command line must include caller file name. """ formatter_class = argparse.RawDescriptionHelpFormatter parser = argparse.ArgumentParser(description=module,formatter_class=formatter_class) parser.add_argument('-n', '--name', dest="name", metavar="hostname", nargs='?', type=str, required=True, help="Define a virtual hostname") parser.add_argument('-o', '--os', dest="os", metavar="os", nargs='?', required=True, type=str, choices=['debian','mint','centos','mac','w7'], help="Define a operating system") parser.add_argument("--dry-run", help="Only print throughput, do not execute command.", action="store_true") parser.add_argument("--legacy", help="Use legacy install (from official repository).", action="store_true") parser.add_argument("--version", action="version", version="%(prog)s {}".format(__version__)) parser.add_argument("-v", "--verbose", dest="verbose_count", action="count", default=0, help="increases log verbosity for each occurence.") arguments = parser.parse_args(argv[1:]) # Sets log level to WARN going more verbose for each new -v. log.setLevel(max(3 - arguments.verbose_count, 0) * 10) return arguments def main(): """Main program. Sets up logging and do some work.""" logging.basicConfig(stream=sys.stderr, level=logging.DEBUG, format='%(name)s (%(levelname)s): %(message)s') kvm = pathlib.Path("/disks/d/VMWare/KVM") os = { 'win7':'/disks/d/OS/Windows/Windows_7/Windows_7_LITE_X64.iso', 'win7_full':'/disks/d/OS/Windows/Windows_7/fr_windows_7_ultimate_x64_dvd_x15-65928.iso', 'mint':'/disks/d/OS/Unix/Mint/linuxmint-18.3-cinnamon-64bit.iso', 'solaris':'/disks/d/OS/Unix/Solaris/11/sol-11_3-text-x86.iso' } try: arguments = parse_command_line(sys.argv) # Assign args to variables server = arguments.name os = arguments.os legacy = arguments.legacy dry = arguments.dry_run if kvm.path.exists(): kvm_disk = kvm_path + server command = "virt-install --ram 2048 --disk path=${DIR_HOST}/${HOST}.qcow2,size=8 --vcpus 2 --os-type linux --os-variant ubuntuquantal --network bridge=virbr0" if dry: print(command) print(kvm_disk) except KeyboardInterrupt: log.error('Program interrupted!') finally: logging.shutdown() if __name__ == "__main__": sys.exit(main())
[ 0, 2, 4, 5, 6 ]
216
c63e5a2178e82ec6e0e1e91a81145afb735bf7bf
<mask token> class MyTestCase(unittest.TestCase): def test_1(self): a = t(2) b = t(1) a.left = b self.assertEqual(sr.searchRange(a, 0, 4), [1, 2]) def test_2(self): a = t(20) b = t(1) a.left = b c = t(40) a.right = c d = t(35) c.left = d self.assertEqual(sr.searchRange(a, 17, 37), [20, 35]) <mask token>
<mask token> class MyTestCase(unittest.TestCase): def test_1(self): a = t(2) b = t(1) a.left = b self.assertEqual(sr.searchRange(a, 0, 4), [1, 2]) def test_2(self): a = t(20) b = t(1) a.left = b c = t(40) a.right = c d = t(35) c.left = d self.assertEqual(sr.searchRange(a, 17, 37), [20, 35]) if __name__ == '__main__': unittest.main()
__author__ = 'lei' <mask token> class MyTestCase(unittest.TestCase): def test_1(self): a = t(2) b = t(1) a.left = b self.assertEqual(sr.searchRange(a, 0, 4), [1, 2]) def test_2(self): a = t(20) b = t(1) a.left = b c = t(40) a.right = c d = t(35) c.left = d self.assertEqual(sr.searchRange(a, 17, 37), [20, 35]) if __name__ == '__main__': unittest.main()
__author__ = 'lei' import unittest from ch3.node import TreeNode as t import ch3.searchRange as sr class MyTestCase(unittest.TestCase): def test_1(self): a = t(2) b = t(1) a.left = b self.assertEqual(sr.searchRange(a, 0, 4), [1, 2]) def test_2(self): a = t(20) b = t(1) a.left = b c = t(40) a.right = c d = t(35) c.left = d self.assertEqual(sr.searchRange(a, 17, 37), [20, 35]) if __name__ == '__main__': unittest.main()
__author__ = 'lei' import unittest from ch3.node import TreeNode as t import ch3.searchRange as sr class MyTestCase(unittest.TestCase): def test_1(self): a = t(2) b=t(1) a.left = b self.assertEqual(sr.searchRange(a,0,4), [1,2]) def test_2(self): a = t(20) b = t(1) a.left = b c = t(40) a.right = c d = t(35) c.left = d self.assertEqual(sr.searchRange(a,17,37),[20,35]) if __name__ == '__main__': unittest.main()
[ 3, 4, 5, 6, 7 ]
217
b77da75b01e96ff89f873f4c5764a62cf68cd576
<mask token> class SeriesListSerializer(serializers.ModelSerializer): class Meta: model = Serie fields = 'name', class CatalogCoinListSerializer(serializers.ModelSerializer): class Meta: model = CatalogCoin fields = ('id', 'face_value', 'currency', 'country', 'year', 'theme', 'mint', 'serie', 'collection', 'exchange', 'wishlist') serie = serializers.SlugRelatedField(slug_field='name', read_only=True) collection = serializers.IntegerField(read_only=True) exchange = serializers.IntegerField(read_only=True) wishlist = serializers.IntegerField(read_only=True) class CatalogCoinSerializer(serializers.ModelSerializer): class Meta: model = CatalogCoin fields = '__all__' class CoinListSerializer(serializers.ModelSerializer): class Meta: model = Coin fields = 'id', 'catalog_coin', 'owner', 'status' catalog_coin = CatalogCoinListSerializer() class CoinSerializer(serializers.ModelSerializer): class Meta: model = Coin fields = '__all__'
<mask token> class CountriesListSerializer(serializers.ModelSerializer): class Meta: model = Country fields = 'name', 'flag' class SeriesListSerializer(serializers.ModelSerializer): class Meta: model = Serie fields = 'name', class CatalogCoinListSerializer(serializers.ModelSerializer): class Meta: model = CatalogCoin fields = ('id', 'face_value', 'currency', 'country', 'year', 'theme', 'mint', 'serie', 'collection', 'exchange', 'wishlist') serie = serializers.SlugRelatedField(slug_field='name', read_only=True) collection = serializers.IntegerField(read_only=True) exchange = serializers.IntegerField(read_only=True) wishlist = serializers.IntegerField(read_only=True) class CatalogCoinSerializer(serializers.ModelSerializer): class Meta: model = CatalogCoin fields = '__all__' class CoinListSerializer(serializers.ModelSerializer): class Meta: model = Coin fields = 'id', 'catalog_coin', 'owner', 'status' catalog_coin = CatalogCoinListSerializer() class CoinSerializer(serializers.ModelSerializer): class Meta: model = Coin fields = '__all__'
<mask token> __all__ = ('CatalogCoinListSerializer', 'CatalogCoinSerializer', 'SeriesListSerializer', 'CoinListSerializer', 'CoinSerializer', 'CountriesListSerializer') class CountriesListSerializer(serializers.ModelSerializer): class Meta: model = Country fields = 'name', 'flag' class SeriesListSerializer(serializers.ModelSerializer): class Meta: model = Serie fields = 'name', class CatalogCoinListSerializer(serializers.ModelSerializer): class Meta: model = CatalogCoin fields = ('id', 'face_value', 'currency', 'country', 'year', 'theme', 'mint', 'serie', 'collection', 'exchange', 'wishlist') serie = serializers.SlugRelatedField(slug_field='name', read_only=True) collection = serializers.IntegerField(read_only=True) exchange = serializers.IntegerField(read_only=True) wishlist = serializers.IntegerField(read_only=True) class CatalogCoinSerializer(serializers.ModelSerializer): class Meta: model = CatalogCoin fields = '__all__' class CoinListSerializer(serializers.ModelSerializer): class Meta: model = Coin fields = 'id', 'catalog_coin', 'owner', 'status' catalog_coin = CatalogCoinListSerializer() class CoinSerializer(serializers.ModelSerializer): class Meta: model = Coin fields = '__all__'
from rest_framework import serializers from .models import * __all__ = ('CatalogCoinListSerializer', 'CatalogCoinSerializer', 'SeriesListSerializer', 'CoinListSerializer', 'CoinSerializer', 'CountriesListSerializer') class CountriesListSerializer(serializers.ModelSerializer): class Meta: model = Country fields = 'name', 'flag' class SeriesListSerializer(serializers.ModelSerializer): class Meta: model = Serie fields = 'name', class CatalogCoinListSerializer(serializers.ModelSerializer): class Meta: model = CatalogCoin fields = ('id', 'face_value', 'currency', 'country', 'year', 'theme', 'mint', 'serie', 'collection', 'exchange', 'wishlist') serie = serializers.SlugRelatedField(slug_field='name', read_only=True) collection = serializers.IntegerField(read_only=True) exchange = serializers.IntegerField(read_only=True) wishlist = serializers.IntegerField(read_only=True) class CatalogCoinSerializer(serializers.ModelSerializer): class Meta: model = CatalogCoin fields = '__all__' class CoinListSerializer(serializers.ModelSerializer): class Meta: model = Coin fields = 'id', 'catalog_coin', 'owner', 'status' catalog_coin = CatalogCoinListSerializer() class CoinSerializer(serializers.ModelSerializer): class Meta: model = Coin fields = '__all__'
from rest_framework import serializers from .models import * __all__ = ( 'CatalogCoinListSerializer', 'CatalogCoinSerializer', 'SeriesListSerializer', 'CoinListSerializer', 'CoinSerializer', 'CountriesListSerializer', ) class CountriesListSerializer(serializers.ModelSerializer): class Meta: model = Country fields = ('name', 'flag',) class SeriesListSerializer(serializers.ModelSerializer): class Meta: model = Serie fields = ('name',) class CatalogCoinListSerializer(serializers.ModelSerializer): class Meta: model = CatalogCoin fields = ( 'id', 'face_value', 'currency', 'country', 'year', 'theme', 'mint', 'serie', 'collection', 'exchange', 'wishlist', ) serie = serializers.SlugRelatedField(slug_field='name', read_only=True) collection = serializers.IntegerField(read_only=True) exchange = serializers.IntegerField(read_only=True) wishlist = serializers.IntegerField(read_only=True) class CatalogCoinSerializer(serializers.ModelSerializer): class Meta: model = CatalogCoin fields = '__all__' class CoinListSerializer(serializers.ModelSerializer): class Meta: model = Coin fields = ('id', 'catalog_coin', 'owner', 'status',) catalog_coin = CatalogCoinListSerializer() class CoinSerializer(serializers.ModelSerializer): class Meta: model = Coin fields = '__all__'
[ 7, 8, 9, 10, 11 ]
218
1f0695f0e9745912d8ee3a87e6c9b1272e9ebbae
<mask token>
<mask token> with open(filename, 'a') as handle: handle.write(str(current_time)) handle.write('\n')
<mask token> filename = 'record_time.txt' current_time = time.strftime('%a %H:%M:%S') with open(filename, 'a') as handle: handle.write(str(current_time)) handle.write('\n')
<mask token> import time filename = 'record_time.txt' current_time = time.strftime('%a %H:%M:%S') with open(filename, 'a') as handle: handle.write(str(current_time)) handle.write('\n')
""" Writes day of the week and time to a file. Script written for crontab tutorial. Author: Jessica Yung 2016 """ import time filename = "record_time.txt" # Records time in format Sun 10:00:00 current_time = time.strftime('%a %H:%M:%S') # Append output to file. 'a' is append mode. with open(filename, 'a') as handle: # Write (Append) output to a line handle.write(str(current_time)) # Newline to separate different lines of output handle.write('\n')
[ 0, 1, 2, 3, 4 ]
219
142a2ba3ec2f6b35f4339ed9fffe7357c1a85fa0
<mask token> def search(url): browser = webdriver.Chrome(executable_path= 'C:\\Users\\inaee\\Downloads\\chromedriver_win32\\chromedriver.exe') browser.get(url) time.sleep(1) element = browser.find_element_by_tag_name('body') for i in range(30): element.send_keys(Keys.PAGE_DOWN) time.sleep(0.2) browser.find_element_by_id('smb').click() for i in range(50): element.send_keys(Keys.PAGE_DOWN) time.sleep(0.2) time.sleep(1) source = browser.page_source browser.close() return source <mask token>
<mask token> def search(url): browser = webdriver.Chrome(executable_path= 'C:\\Users\\inaee\\Downloads\\chromedriver_win32\\chromedriver.exe') browser.get(url) time.sleep(1) element = browser.find_element_by_tag_name('body') for i in range(30): element.send_keys(Keys.PAGE_DOWN) time.sleep(0.2) browser.find_element_by_id('smb').click() for i in range(50): element.send_keys(Keys.PAGE_DOWN) time.sleep(0.2) time.sleep(1) source = browser.page_source browser.close() return source def download_image(link): headers = {'User-Agent': ua.random} try: r = requests.get('https://www.google.com' + link.get('href'), headers=headers) except: print('Cannot get link.') title = str(fromstring(r.content).findtext('.//title')) link = title.split(' ')[-1] print('At : ' + os.getcwd() + ', Downloading from ' + link) try: if link.split('.')[-1] == ('jpg' or 'png' or 'jpeg'): urllib.request.urlretrieve(link, link.split('/')[-1]) except: pass <mask token>
<mask token> def search(url): browser = webdriver.Chrome(executable_path= 'C:\\Users\\inaee\\Downloads\\chromedriver_win32\\chromedriver.exe') browser.get(url) time.sleep(1) element = browser.find_element_by_tag_name('body') for i in range(30): element.send_keys(Keys.PAGE_DOWN) time.sleep(0.2) browser.find_element_by_id('smb').click() for i in range(50): element.send_keys(Keys.PAGE_DOWN) time.sleep(0.2) time.sleep(1) source = browser.page_source browser.close() return source def download_image(link): headers = {'User-Agent': ua.random} try: r = requests.get('https://www.google.com' + link.get('href'), headers=headers) except: print('Cannot get link.') title = str(fromstring(r.content).findtext('.//title')) link = title.split(' ')[-1] print('At : ' + os.getcwd() + ', Downloading from ' + link) try: if link.split('.')[-1] == ('jpg' or 'png' or 'jpeg'): urllib.request.urlretrieve(link, link.split('/')[-1]) except: pass if __name__ == '__main__': parser = argparse.ArgumentParser() parser.add_argument('keyword', help='the keyword to search') args = parser.parse_args() sys.setrecursionlimit(100000000) query = args.keyword url = ('https://www.google.com/search?as_st=y&tbm=isch&as_q=' + query + '&as_epq=&as_oq=&as_eq=&cr=&as_sitesearch=&safe=images&tbs=isz:lt,islt:svga,itp:photo,ift:jpg' ) source = search(url) soup = BeautifulSoup(str(source), 'html.parser') ua = UserAgent() if not os.path.isdir(args.keyword): os.makedirs(args.keyword) os.chdir(str(os.getcwd()) + '/' + str(args.keyword)) links = soup.find_all('a', class_='rg_l') with Pool() as pool: pool.map(download_image, links)
import requests import time import urllib import argparse from bs4 import BeautifulSoup from selenium import webdriver from selenium.webdriver.common.keys import Keys from fake_useragent import UserAgent from multiprocessing import Pool from lxml.html import fromstring import os, sys def search(url): browser = webdriver.Chrome(executable_path= 'C:\\Users\\inaee\\Downloads\\chromedriver_win32\\chromedriver.exe') browser.get(url) time.sleep(1) element = browser.find_element_by_tag_name('body') for i in range(30): element.send_keys(Keys.PAGE_DOWN) time.sleep(0.2) browser.find_element_by_id('smb').click() for i in range(50): element.send_keys(Keys.PAGE_DOWN) time.sleep(0.2) time.sleep(1) source = browser.page_source browser.close() return source def download_image(link): headers = {'User-Agent': ua.random} try: r = requests.get('https://www.google.com' + link.get('href'), headers=headers) except: print('Cannot get link.') title = str(fromstring(r.content).findtext('.//title')) link = title.split(' ')[-1] print('At : ' + os.getcwd() + ', Downloading from ' + link) try: if link.split('.')[-1] == ('jpg' or 'png' or 'jpeg'): urllib.request.urlretrieve(link, link.split('/')[-1]) except: pass if __name__ == '__main__': parser = argparse.ArgumentParser() parser.add_argument('keyword', help='the keyword to search') args = parser.parse_args() sys.setrecursionlimit(100000000) query = args.keyword url = ('https://www.google.com/search?as_st=y&tbm=isch&as_q=' + query + '&as_epq=&as_oq=&as_eq=&cr=&as_sitesearch=&safe=images&tbs=isz:lt,islt:svga,itp:photo,ift:jpg' ) source = search(url) soup = BeautifulSoup(str(source), 'html.parser') ua = UserAgent() if not os.path.isdir(args.keyword): os.makedirs(args.keyword) os.chdir(str(os.getcwd()) + '/' + str(args.keyword)) links = soup.find_all('a', class_='rg_l') with Pool() as pool: pool.map(download_image, links)
import requests import time import urllib import argparse from bs4 import BeautifulSoup from selenium import webdriver from selenium.webdriver.common.keys import Keys from fake_useragent import UserAgent from multiprocessing import Pool from lxml.html import fromstring import os, sys #text = 'chowchowbaby' #url='https://www.google.co.kr/search?q=' + text + '&source=lnms&tbm=isch&sa=X&ved=0ahUKEwiF2fPLn7zdAhUBEbwKHSLWBowQ_AUICigB&biw=809&bih=868&dpr=1.13' def search(url): #Create a browser browser=webdriver.Chrome(executable_path='C:\\Users\\inaee\\Downloads\\chromedriver_win32\\chromedriver.exe') #Open the link browser.get(url) time.sleep(1) element=browser.find_element_by_tag_name("body") #Scroll down for i in range(30): element.send_keys(Keys.PAGE_DOWN) time.sleep(0.2) browser.find_element_by_id("smb").click() for i in range(50): element.send_keys(Keys.PAGE_DOWN) time.sleep(0.2) time.sleep(1) #Get page source and close the browser source=browser.page_source browser.close() return source def download_image(link): # Use a random user agent header headers = {"User-Agent": ua.random} # Get the image link try: r = requests.get("https://www.google.com" + link.get("href"), headers=headers) except: print("Cannot get link.") title = str(fromstring(r.content).findtext(".//title")) link = title.split(" ")[-1] # Download the image print("At : " + os.getcwd() + ", Downloading from " + link) try: if link.split(".")[-1] == ('jpg' or 'png' or 'jpeg'): urllib.request.urlretrieve(link, link.split("/")[-1]) except: pass if __name__ == "__main__": # parse command line options parser = argparse.ArgumentParser() parser.add_argument("keyword", help="the keyword to search") args = parser.parse_args() # set stack limit sys.setrecursionlimit(100000000) # get user input and search on google query = args.keyword #query = input("Enter the name you want to search") url = "https://www.google.com/search?as_st=y&tbm=isch&as_q=" + query + \ "&as_epq=&as_oq=&as_eq=&cr=&as_sitesearch=&safe=images&tbs=isz:lt,islt:svga,itp:photo,ift:jpg" source = search(url) # Parse the page source and download pics soup = BeautifulSoup(str(source), "html.parser") ua = UserAgent() # check directory and create if necessary if not os.path.isdir(args.keyword): os.makedirs(args.keyword) os.chdir(str(os.getcwd()) + "/" + str(args.keyword)) # get the links links = soup.find_all("a", class_="rg_l") # open some processes to download with Pool() as pool: pool.map(download_image, links) # 검색어 #search = 'chowchowbaby' #url='https://www.google.co.kr/search?q=' + search + '&source=lnms&tbm=isch&sa=X&ved=0ahUKEwiF2fPLn7zdAhUBEbwKHSLWBowQ_AUICigB&biw=809&bih=868&dpr=1.13' # url #driver = webdriver.Chrome(executable_path="C:\\Users\\inaee\\Downloads\\chromedriver_win32\\chromedriver.exe") #driver.get(url) #driver.implicitly_wait(2) #num_of_pagedowns = 50 #elem = driver.find_element_by_xpath('/html/body') #i = 0 #count = 1 #img = driver.find_elements_by_tag_name("img") #while i < num_of_pagedowns: #for item in img: # if(count>0 and count<502): # elem.send_keys(Keys.DOWN) # time.sleep(1) # full_name = "C:\\Program Files\\Python35\\강아지크롤러\\chowchowbaby\\" + str(count) + "_chowchowbaby.jpg" # try: # urllib.request.urlretrieve(item.get_attribute('src'), full_name) # tfp=open(full_name,url) # print(item.get_attribute('src')[:30] + " : ") # except: # urllib.request.urlretrieve(item.get_attribute('data-src'), full_name) # tfp=open(full_name,url) # print(item.get_attribute('data-src')[:30] + " : ") # count = count+1 # i =i+1 #driver.Quit() #print("Done.")
[ 1, 2, 3, 4, 5 ]
220
2a19c2d6e51e9c123236c58f82de1a39e5db40f4
import numpy as np # Copyright 2011 University of Bonn # Author: Hannes Schulz def cnan(x): """ check for not-a-number in parameter x """ if np.isnan(x).sum()>0: import pdb pdb.set_trace() def get_curve_3D(eig, alpha=0.25,g23=0.5,g12=0.5): # renumerated according to sato et al: l3 is smallest """ return the vesselness measure based on eigenvalues of normalized hessians in eig """ #return sato(eig,alpha,g23, g12) return frangi(eig) def frangi_memory_hungry(eig): print "Finding 3D curvilinear structures using Frangi et al..." l1 = eig["lambda1"] # in fangi et al, we have |l1| <= |l2| <= |l3| l2 = eig["lambda2"] l3 = eig["lambda3"] alpha = 0.5 beta = 0.5 RB = np.abs(l1) / np.sqrt(np.abs(l2 * l3)) RA = np.abs(l2) / np.abs(l3) S = np.sqrt(l1**2+l2**2+l3**2) c = np.max(S)/3. # half of maximum frobenius norm of hessian says fangi et al. V = (1-np.exp(RA**2)/(-2. * alpha**2)) * np.exp(RB**2/(-2. * beta**2)) * (1-np.exp(S**2/(-2. * c**2))) P = (l2 >= 0.) + (l3 >= 0.) V[P] = 0 V[V<0] = 0 print "done." return V def frangi(eig): print "Finding 3D curvilinear structures using Frangi et al..." l1 = eig["lambda1"] # in fangi et al, we have |l1| <= |l2| <= |l3| l2 = eig["lambda2"] l3 = eig["lambda3"] alpha = 0.5 beta = 0.5 RB = np.abs(l1) RB /= np.sqrt(np.abs(l2*l3)) RA = np.abs(l2) RA /= np.abs(l3) S = l1.copy() S **= 2 S += l2**2 S += l3**2 np.sqrt(S,S) c = np.max(S)/3. # half of maximum frobenius norm of hessian says fangi et al. V = 1-np.exp(RA**2) V /= -2. * alpha**2 V *= np.exp(RB**2/(-2. * beta**2)) V *= 1-np.exp(S**2/(-2. * c**2)) #V = (1-np.exp(RA**2)/(-2. * alpha**2)) * np.exp(RB**2/(-2. * beta**2)) * (1-np.exp(S**2/(-2. * c**2))) P = (l2 >= 0.) + (l3 >= 0.) V[P] = 0 V[V<0] = 0 print "done." return V def sato(eig, alpha=0.25,g23=0.5,g12=0.5): # renumerated according to sato et al: l3 is smallest print "Finding 3D curvilinear structures..." l3 = eig["lambda1"] # in sato et al, l3 < l2 < l1; but lapack gives them in ascending order(!) l2 = eig["lambda2"] l1 = eig["lambda3"] #gc.collect() #alpha = 0.25 # 0.0: cannot deal well with curved lines. Sato: 0.25 #g23 = 0.5 # Sato: robust btw. 0.5,1.0. sharpness of # # selectivity for cross-section isotropy #g12 = 0.5 # Sato: robust btw. 0.5,1.0. gives w12 # # asymmetrical characteristic in neg/pos regions of l1 # # l1<0 and |l1| large: blob, not line! l2a = np.abs(l2) factA = np.abs(l3) * (l2/l3)**g23 factB = (1+l1/l2a)**g12 factC = (1-alpha*l1/l2a)**g12 A = (l3<l2) * (l2<l1) * (l1 <= 0) B = (l3<l2) * (l2<0) * (0<l1) * (l1<l2a/alpha) l123 = np.zeros(A.shape, dtype = "float32") l123[A] = (factA*factB)[A] l123[B] = (factA*factC)[B] cnan(l123) print "Done." return l123
null
null
null
null
[ 0 ]
221
550f5ad4fef77d5795db0393ae0701f679143e72
<mask token>
<mask token> if os.environ.get('MOCKPROGRAM_INOUT_FILE_OVERRIDE'): mockProgramInOutFilePath = os.environ.get('MOCKPROGRAM_INOUT_FILE_OVERRIDE' ) else: mockProgramInOutFilePath = '.mockprogram_inout.txt' if not os.path.exists(mockProgramInOutFilePath): print('Error: ' + mockProgramInOutFilePath + ' is missing!') sys.exit(1) <mask token> if len(mockprogramInoutArray) and mockprogramInoutArray[-1] == '': mockprogramInoutArray = mockprogramInoutArray[:-1] if len(mockprogramInoutArray) < 3: print('Error: ' + mockProgramInOutFilePath + ' has less than three lines:\n-------------\n' + mockprogramInout + '-------------') sys.exit(2) <mask token> if expectedInputLine.find('MOCK_PROGRAM_INPUT:') != 0: print("Error, first line = '" + expectedInputLine + "', does not match ^MOCK_PROGRAM_INPUT:") sys.exit(3) <mask token> if inputArgs != expectedInput: print("Error, input args='" + inputArgs + "' does not match expected='" + expectedInput + "'") sys.exit(4) <mask token> if returnCodeLine.find('MOCK_PROGRAM_RETURN:') != 0: print("Error, second line = '" + returnCodeLine + "', does not match ^MOCK_PROGRAM_RETURN:") sys.exit(5) <mask token> if outputLine.find('MOCK_PROGRAM_OUTPUT:') != 0: print("Error, third line = '" + outputLine + "', does not match ^MOCK_PROGRAM_OUTPUT:") sys.exit(6) <mask token> if len(mockprogramInoutArray) > 3: for line in mockprogramInoutArray[3:]: if line.find('MOCK_PROGRAM_INPUT:') == 0: break outputStr = outputStr + '\n' + line numLinesOuput = numLinesOuput + 1 print(outputStr) <mask token> if len(mockprogramInoutArray) > lineLineIndex: open(mockProgramInOutFilePath, 'w').write('\n'.join( mockprogramInoutArray[lineLineIndex:]) + '\n') else: open(mockProgramInOutFilePath, 'w').write('') sys.exit(int(returnCode))
<mask token> inputArgs = ' '.join(sys.argv[1:]) if os.environ.get('MOCKPROGRAM_INOUT_FILE_OVERRIDE'): mockProgramInOutFilePath = os.environ.get('MOCKPROGRAM_INOUT_FILE_OVERRIDE' ) else: mockProgramInOutFilePath = '.mockprogram_inout.txt' if not os.path.exists(mockProgramInOutFilePath): print('Error: ' + mockProgramInOutFilePath + ' is missing!') sys.exit(1) mockprogramInout = open(mockProgramInOutFilePath, 'r').read() mockprogramInoutArray = mockprogramInout.splitlines() if len(mockprogramInoutArray) and mockprogramInoutArray[-1] == '': mockprogramInoutArray = mockprogramInoutArray[:-1] if len(mockprogramInoutArray) < 3: print('Error: ' + mockProgramInOutFilePath + ' has less than three lines:\n-------------\n' + mockprogramInout + '-------------') sys.exit(2) expectedInputLine = mockprogramInoutArray[0] if expectedInputLine.find('MOCK_PROGRAM_INPUT:') != 0: print("Error, first line = '" + expectedInputLine + "', does not match ^MOCK_PROGRAM_INPUT:") sys.exit(3) expectedInput = expectedInputLine.replace('MOCK_PROGRAM_INPUT:', '').strip() if inputArgs != expectedInput: print("Error, input args='" + inputArgs + "' does not match expected='" + expectedInput + "'") sys.exit(4) returnCodeLine = mockprogramInoutArray[1] if returnCodeLine.find('MOCK_PROGRAM_RETURN:') != 0: print("Error, second line = '" + returnCodeLine + "', does not match ^MOCK_PROGRAM_RETURN:") sys.exit(5) returnCode = returnCodeLine.replace('MOCK_PROGRAM_RETURN:', '').strip() outputLine = mockprogramInoutArray[2] if outputLine.find('MOCK_PROGRAM_OUTPUT:') != 0: print("Error, third line = '" + outputLine + "', does not match ^MOCK_PROGRAM_OUTPUT:") sys.exit(6) outputStr = outputLine.replace('MOCK_PROGRAM_OUTPUT: ', '') numLinesOuput = 1 if len(mockprogramInoutArray) > 3: for line in mockprogramInoutArray[3:]: if line.find('MOCK_PROGRAM_INPUT:') == 0: break outputStr = outputStr + '\n' + line numLinesOuput = numLinesOuput + 1 print(outputStr) lineLineIndex = 2 + numLinesOuput if len(mockprogramInoutArray) > lineLineIndex: open(mockProgramInOutFilePath, 'w').write('\n'.join( mockprogramInoutArray[lineLineIndex:]) + '\n') else: open(mockProgramInOutFilePath, 'w').write('') sys.exit(int(returnCode))
import sys import os inputArgs = ' '.join(sys.argv[1:]) if os.environ.get('MOCKPROGRAM_INOUT_FILE_OVERRIDE'): mockProgramInOutFilePath = os.environ.get('MOCKPROGRAM_INOUT_FILE_OVERRIDE' ) else: mockProgramInOutFilePath = '.mockprogram_inout.txt' if not os.path.exists(mockProgramInOutFilePath): print('Error: ' + mockProgramInOutFilePath + ' is missing!') sys.exit(1) mockprogramInout = open(mockProgramInOutFilePath, 'r').read() mockprogramInoutArray = mockprogramInout.splitlines() if len(mockprogramInoutArray) and mockprogramInoutArray[-1] == '': mockprogramInoutArray = mockprogramInoutArray[:-1] if len(mockprogramInoutArray) < 3: print('Error: ' + mockProgramInOutFilePath + ' has less than three lines:\n-------------\n' + mockprogramInout + '-------------') sys.exit(2) expectedInputLine = mockprogramInoutArray[0] if expectedInputLine.find('MOCK_PROGRAM_INPUT:') != 0: print("Error, first line = '" + expectedInputLine + "', does not match ^MOCK_PROGRAM_INPUT:") sys.exit(3) expectedInput = expectedInputLine.replace('MOCK_PROGRAM_INPUT:', '').strip() if inputArgs != expectedInput: print("Error, input args='" + inputArgs + "' does not match expected='" + expectedInput + "'") sys.exit(4) returnCodeLine = mockprogramInoutArray[1] if returnCodeLine.find('MOCK_PROGRAM_RETURN:') != 0: print("Error, second line = '" + returnCodeLine + "', does not match ^MOCK_PROGRAM_RETURN:") sys.exit(5) returnCode = returnCodeLine.replace('MOCK_PROGRAM_RETURN:', '').strip() outputLine = mockprogramInoutArray[2] if outputLine.find('MOCK_PROGRAM_OUTPUT:') != 0: print("Error, third line = '" + outputLine + "', does not match ^MOCK_PROGRAM_OUTPUT:") sys.exit(6) outputStr = outputLine.replace('MOCK_PROGRAM_OUTPUT: ', '') numLinesOuput = 1 if len(mockprogramInoutArray) > 3: for line in mockprogramInoutArray[3:]: if line.find('MOCK_PROGRAM_INPUT:') == 0: break outputStr = outputStr + '\n' + line numLinesOuput = numLinesOuput + 1 print(outputStr) lineLineIndex = 2 + numLinesOuput if len(mockprogramInoutArray) > lineLineIndex: open(mockProgramInOutFilePath, 'w').write('\n'.join( mockprogramInoutArray[lineLineIndex:]) + '\n') else: open(mockProgramInOutFilePath, 'w').write('') sys.exit(int(returnCode))
#!/usr/bin/env python # @HEADER # ************************************************************************ # # TriBITS: Tribal Build, Integrate, and Test System # Copyright 2013 Sandia Corporation # # Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation, # the U.S. Government retains certain rights in this software. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are # met: # # 1. Redistributions of source code must retain the above copyright # notice, this list of conditions and the following disclaimer. # # 2. Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. # # 3. Neither the name of the Corporation nor the names of the # contributors may be used to endorse or promote products derived from # this software without specific prior written permission. # # THIS SOFTWARE IS PROVIDED BY SANDIA CORPORATION "AS IS" AND ANY # EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR # PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SANDIA CORPORATION OR THE # CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, # EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, # PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR # PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF # LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING # NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. # # ************************************************************************ # @HEADER # # Usage: mockprogram.py [any arguments] # # Mock program that takes input arguments and produces stdout by reading from # a file .mockprogram_inout.txt in the current directory or the file specified # by the env var MOCKPROGRAM_INOUT_FILE_OVERRIDE (which can be in any # directory). This script is used to take the place of real commands during a # test that involves calling commands on the commandline. # # The file .mockprogram_inout.txt (or pointed to by # MOCKPROGRAM_INOUT_FILE_OVERRIDE) is of the form: # # MOCK_PROGRAM_INPUT: <args_1> # MOCK_PROGRAM_RETURN: <rtn> # MOCK_PROGRAM_OUTPUT: <outline_1_line_1> # <outline_1_line_2> # ... # MOCK_PROGRAM_INPUT: <args_2> # # The program reads in the blocks starting at the time and removes the block # from the file after it runs. After all of the blocks are read in, if run # again it will error out with error code 2. # # This program can be used, for example, to simulate git command. For # example, a couple of git commits might be simulated like: # # MOCK_PROGRAM_INPUT: log -1 # MOCK_PROGRAM_RETURN: 0 # MOCK_PROGRAM_OUTPUT: This is the summary line # # The is the body of the commit msg # MOCK_PROGRAM_INPUT: diff --name-only HEAD --not @{u} # MOCK_PROGRAM_RETURN: 0 # MOCK_PROGRAM_OUTPUT: file_name_1.txt # file_name_2.txt # file_name_3.txt # import sys import os inputArgs = ' '.join(sys.argv[1:]) #print("inputArgs = '" + inputArgs + "'" if os.environ.get("MOCKPROGRAM_INOUT_FILE_OVERRIDE"): mockProgramInOutFilePath=os.environ.get("MOCKPROGRAM_INOUT_FILE_OVERRIDE") else: mockProgramInOutFilePath='.mockprogram_inout.txt' if not os.path.exists(mockProgramInOutFilePath): print("Error: "+mockProgramInOutFilePath+" is missing!") sys.exit(1) mockprogramInout = open(mockProgramInOutFilePath, 'r').read() mockprogramInoutArray = mockprogramInout.splitlines() if len(mockprogramInoutArray) and mockprogramInoutArray[-1] == "": mockprogramInoutArray = mockprogramInoutArray[:-1] if len(mockprogramInoutArray) < 3: print("Error: "+mockProgramInOutFilePath+" has less than three lines:\n" "-------------\n" + mockprogramInout + "-------------") sys.exit(2) # Assert input expectedInputLine = mockprogramInoutArray[0] if expectedInputLine.find("MOCK_PROGRAM_INPUT:") != 0: print("Error, first line = '" + expectedInputLine + "', does not match " "^MOCK_PROGRAM_INPUT:") sys.exit(3) expectedInput = expectedInputLine.replace("MOCK_PROGRAM_INPUT:", "").strip() if inputArgs != expectedInput: print("Error, input args='" + inputArgs + "' does not match expected='" + expectedInput + "'") sys.exit(4) # Get return code returnCodeLine = mockprogramInoutArray[1] if returnCodeLine.find("MOCK_PROGRAM_RETURN:") != 0: print("Error, second line = '" + returnCodeLine + "', does not match " "^MOCK_PROGRAM_RETURN:") sys.exit(5) returnCode = returnCodeLine.replace("MOCK_PROGRAM_RETURN:", "").strip() # Get output (can be multi-line) outputLine = mockprogramInoutArray[2] if outputLine.find("MOCK_PROGRAM_OUTPUT:") != 0: print("Error, third line = '" + outputLine + "', does not match " "^MOCK_PROGRAM_OUTPUT:") sys.exit(6) outputStr = outputLine.replace("MOCK_PROGRAM_OUTPUT: ", "") numLinesOuput = 1 if len(mockprogramInoutArray) > 3: for line in mockprogramInoutArray[3:]: if line.find("MOCK_PROGRAM_INPUT:") == 0: break outputStr = outputStr+"\n"+line numLinesOuput = numLinesOuput + 1 print(outputStr) # Write the remaining lines back into the file lineLineIndex = 2 + numLinesOuput if len(mockprogramInoutArray) > lineLineIndex: open(mockProgramInOutFilePath, 'w').write( ('\n'.join(mockprogramInoutArray[lineLineIndex:]))+"\n" ) else: open(mockProgramInOutFilePath, 'w').write("") # Return exit code sys.exit(int(returnCode))
[ 0, 1, 2, 3, 4 ]
222
4fa9d16f979acf3edce05a209e1c6636e50fc315
<mask token> class Menu: <mask token> <mask token> <mask token> <mask token>
<mask token> class Menu: <mask token> def get_menu(self, type, openid): try: if type == 'mine': self.sql = ( "SELECT * FROM get_menu WHERE openid='%s' order by watch DESC " % openid) self.resql = self.mysqlClass.select_data(self.sql) if self.resql['state'] != 'E': return {'code': 1007, 'menu_list': self.resql['alldata']} else: return {'code': -1} elif type == 'main': self.sql = 'SELECT * FROM get_menu order by watch DESC' self.resql = self.mysqlClass.select_data(self.sql) if self.resql['state'] != 'E': return {'code': 1007, 'top_list': self.resql['alldata'] [0:3], 'menu_list': self.resql['alldata'][3:-1]} else: return {'code': -1} except Exception as e: print(str(e)) return {'code': -1} <mask token> def add_menu(self, data, openid): try: self.create_time = self.timeClass.get_time() self.sql = ( """ INSERT INTO menu (openid,title,photo,material,accessories,ingredient,create_date) VALUES ('%s','%s','%s','%s','%s','%s','%s') """ % (openid, data.title, data.photo, data.material, data. accessories, data.ingredient, self.create_time)) self.resql = self.mysqlClass.add_insert(self.sql, '') self.conn = self.resql['conn'] self.cur = self.resql['cur'] self.menu_id = self.cur.lastrowid steps = json.loads(data.steps) for step in steps: print(step['num']) self.sql2 = ( """ INSERT INTO menu_step (menu_id,num,content,image,create_date) VALUES (%s,%d,'%s','%s','%s') """ % (self.menu_id, step['num'], step['content'], step[ 'image'], self.create_time)) self.resql2 = self.mysqlClass.add_insert(self.sql2, self.conn) self.conn = self.resql2['conn'] self.resql = self.mysqlClass.commit_inserst(self.conn) if self.resql['state'] != 'E': return {'code': 1010} else: return {'code': -1} except Exception as e: print(str(e)) return {'code': -1}
<mask token> class Menu: def __init__(self): self.mysqlClass = Mysql.MySQL() self.timeClass = Utils.Time() def get_menu(self, type, openid): try: if type == 'mine': self.sql = ( "SELECT * FROM get_menu WHERE openid='%s' order by watch DESC " % openid) self.resql = self.mysqlClass.select_data(self.sql) if self.resql['state'] != 'E': return {'code': 1007, 'menu_list': self.resql['alldata']} else: return {'code': -1} elif type == 'main': self.sql = 'SELECT * FROM get_menu order by watch DESC' self.resql = self.mysqlClass.select_data(self.sql) if self.resql['state'] != 'E': return {'code': 1007, 'top_list': self.resql['alldata'] [0:3], 'menu_list': self.resql['alldata'][3:-1]} else: return {'code': -1} except Exception as e: print(str(e)) return {'code': -1} def get_menu_info(self, menu_id): try: self.sql = 'SELECT * FROM menu WHERE id=%s' % menu_id self.resql = self.mysqlClass.select_data(self.sql) if self.resql['state'] != 'E': self.menu = self.resql['alldata'][0] self.sql3 = 'UPDATE menu SET watch=%s where id=%s' % (self. menu['watch'] + 1, menu_id) self.resql3 = self.mysqlClass.insert_data(self.sql3) print(self.resql3) self.sql2 = ( 'SELECT * FROM menu_step WHERE menu_id=%s order by num ASC ' % menu_id) self.resql2 = self.mysqlClass.select_data(self.sql2) self.step_list = [] if self.resql2['state'] != 'E': for ai_menu_log in self.resql2['alldata']: self.step_list.append(ai_menu_log) self.menu['menu_step'] = self.step_list return {'code': 1008, 'menu_info': self.menu} else: return {'code': -1} except Exception as e: print(str(e)) return {'code': -1} def add_menu(self, data, openid): try: self.create_time = self.timeClass.get_time() self.sql = ( """ INSERT INTO menu (openid,title,photo,material,accessories,ingredient,create_date) VALUES ('%s','%s','%s','%s','%s','%s','%s') """ % (openid, data.title, data.photo, data.material, data. accessories, data.ingredient, self.create_time)) self.resql = self.mysqlClass.add_insert(self.sql, '') self.conn = self.resql['conn'] self.cur = self.resql['cur'] self.menu_id = self.cur.lastrowid steps = json.loads(data.steps) for step in steps: print(step['num']) self.sql2 = ( """ INSERT INTO menu_step (menu_id,num,content,image,create_date) VALUES (%s,%d,'%s','%s','%s') """ % (self.menu_id, step['num'], step['content'], step[ 'image'], self.create_time)) self.resql2 = self.mysqlClass.add_insert(self.sql2, self.conn) self.conn = self.resql2['conn'] self.resql = self.mysqlClass.commit_inserst(self.conn) if self.resql['state'] != 'E': return {'code': 1010} else: return {'code': -1} except Exception as e: print(str(e)) return {'code': -1}
from jox_api import label_image, Mysql, Utils from jox_config import api_base_url import json class Menu: def __init__(self): self.mysqlClass = Mysql.MySQL() self.timeClass = Utils.Time() def get_menu(self, type, openid): try: if type == 'mine': self.sql = ( "SELECT * FROM get_menu WHERE openid='%s' order by watch DESC " % openid) self.resql = self.mysqlClass.select_data(self.sql) if self.resql['state'] != 'E': return {'code': 1007, 'menu_list': self.resql['alldata']} else: return {'code': -1} elif type == 'main': self.sql = 'SELECT * FROM get_menu order by watch DESC' self.resql = self.mysqlClass.select_data(self.sql) if self.resql['state'] != 'E': return {'code': 1007, 'top_list': self.resql['alldata'] [0:3], 'menu_list': self.resql['alldata'][3:-1]} else: return {'code': -1} except Exception as e: print(str(e)) return {'code': -1} def get_menu_info(self, menu_id): try: self.sql = 'SELECT * FROM menu WHERE id=%s' % menu_id self.resql = self.mysqlClass.select_data(self.sql) if self.resql['state'] != 'E': self.menu = self.resql['alldata'][0] self.sql3 = 'UPDATE menu SET watch=%s where id=%s' % (self. menu['watch'] + 1, menu_id) self.resql3 = self.mysqlClass.insert_data(self.sql3) print(self.resql3) self.sql2 = ( 'SELECT * FROM menu_step WHERE menu_id=%s order by num ASC ' % menu_id) self.resql2 = self.mysqlClass.select_data(self.sql2) self.step_list = [] if self.resql2['state'] != 'E': for ai_menu_log in self.resql2['alldata']: self.step_list.append(ai_menu_log) self.menu['menu_step'] = self.step_list return {'code': 1008, 'menu_info': self.menu} else: return {'code': -1} except Exception as e: print(str(e)) return {'code': -1} def add_menu(self, data, openid): try: self.create_time = self.timeClass.get_time() self.sql = ( """ INSERT INTO menu (openid,title,photo,material,accessories,ingredient,create_date) VALUES ('%s','%s','%s','%s','%s','%s','%s') """ % (openid, data.title, data.photo, data.material, data. accessories, data.ingredient, self.create_time)) self.resql = self.mysqlClass.add_insert(self.sql, '') self.conn = self.resql['conn'] self.cur = self.resql['cur'] self.menu_id = self.cur.lastrowid steps = json.loads(data.steps) for step in steps: print(step['num']) self.sql2 = ( """ INSERT INTO menu_step (menu_id,num,content,image,create_date) VALUES (%s,%d,'%s','%s','%s') """ % (self.menu_id, step['num'], step['content'], step[ 'image'], self.create_time)) self.resql2 = self.mysqlClass.add_insert(self.sql2, self.conn) self.conn = self.resql2['conn'] self.resql = self.mysqlClass.commit_inserst(self.conn) if self.resql['state'] != 'E': return {'code': 1010} else: return {'code': -1} except Exception as e: print(str(e)) return {'code': -1}
from jox_api import label_image,Mysql,Utils from jox_config import api_base_url import json class Menu(): def __init__(self): self.mysqlClass = Mysql.MySQL() self.timeClass = Utils.Time() def get_menu(self,type,openid): try: if type == 'mine': self.sql = "SELECT * FROM get_menu WHERE openid=\'%s\' order by watch DESC " % (openid) self.resql = self.mysqlClass.select_data(self.sql) if self.resql['state'] != 'E': return {'code': 1007, 'menu_list': self.resql['alldata'] } else: return {'code': -1} elif type == 'main': self.sql = "SELECT * FROM get_menu order by watch DESC" self.resql = self.mysqlClass.select_data(self.sql) if self.resql['state'] != 'E': return {'code': 1007, 'top_list': self.resql['alldata'][0:3],'menu_list': self.resql['alldata'][3:-1]} else: return {'code': -1} except Exception as e: print(str(e)) return {'code': -1} def get_menu_info(self,menu_id): try: self.sql = "SELECT * FROM menu WHERE id=%s" % (menu_id) self.resql = self.mysqlClass.select_data(self.sql) if self.resql['state'] != 'E': self.menu= self.resql['alldata'][0] self.sql3 = "UPDATE menu SET watch=%s where id=%s" %(self.menu['watch']+1,menu_id) self.resql3 = self.mysqlClass.insert_data(self.sql3) print(self.resql3) self.sql2 = "SELECT * FROM menu_step WHERE menu_id=%s order by num ASC " % (menu_id) self.resql2 = self.mysqlClass.select_data(self.sql2) self.step_list = [] if self.resql2['state'] != 'E': for ai_menu_log in self.resql2['alldata']: self.step_list.append(ai_menu_log) self.menu['menu_step'] = self.step_list return {'code': 1008, 'menu_info': self.menu} else: return {'code': -1} except Exception as e: print(str(e)) return {'code': -1} def add_menu(self,data,openid): try: self.create_time = self.timeClass.get_time() self.sql =''' INSERT INTO menu (openid,title,photo,material,accessories,ingredient,create_date) VALUES (\'%s\',\'%s\',\'%s\',\'%s\',\'%s\',\'%s\',\'%s\') '''% (openid, data.title,data.photo,data.material,data.accessories,data.ingredient, self.create_time) self.resql = self.mysqlClass.add_insert(self.sql,"") self.conn = self.resql['conn'] self.cur = self.resql['cur'] self.menu_id = self.cur.lastrowid steps = json.loads(data.steps) for step in steps: print(step['num']) self.sql2 = ''' INSERT INTO menu_step (menu_id,num,content,image,create_date) VALUES (%s,%d,\'%s\',\'%s\',\'%s\') '''% (self.menu_id, step['num'],step['content'],step['image'], self.create_time) self.resql2 = self.mysqlClass.add_insert(self.sql2, self.conn) self.conn = self.resql2['conn'] self.resql = self.mysqlClass.commit_inserst(self.conn) if self.resql['state'] !='E': return {'code': 1010} else: return {'code': -1} except Exception as e: print(str(e)) return {'code': -1}
[ 1, 3, 5, 6, 7 ]
223
e5e012e40a71dee9f4dbd9913590aef125b758df
<mask token> class Visualiser: <mask token> <mask token> <mask token> def __build_map(self): """ Creates the array of the battlefield. Should never be used for logical operations :return: """ columns = [] for i in range(self.__dimensions): columns.append([]) for i in range(self.__dimensions): self.map.append(columns) def print(self, board: Board): """ Print the entire battlefield :param board: The current board in play :return: void """ row = [' '] for x_marker in self.coordinate_map: row.append(' ' + x_marker) print(''.join(row)) for y, y_row in enumerate(self.map): row = [str(8 - y) + ' '] for x, square in enumerate(y_row): anybody = board.who_is_in(*[x, y]) if anybody is not None: row.append(anybody.name) else: row.append(' .') print(''.join(row)) @staticmethod def to_algebraic(x, y): return Visualiser.coordinate_map[x] + str(abs(y - Visualiser. __dimensions))
<mask token> class Visualiser: <mask token> <mask token> def __init__(self): self.map = [] self.__build_map() def __build_map(self): """ Creates the array of the battlefield. Should never be used for logical operations :return: """ columns = [] for i in range(self.__dimensions): columns.append([]) for i in range(self.__dimensions): self.map.append(columns) def print(self, board: Board): """ Print the entire battlefield :param board: The current board in play :return: void """ row = [' '] for x_marker in self.coordinate_map: row.append(' ' + x_marker) print(''.join(row)) for y, y_row in enumerate(self.map): row = [str(8 - y) + ' '] for x, square in enumerate(y_row): anybody = board.who_is_in(*[x, y]) if anybody is not None: row.append(anybody.name) else: row.append(' .') print(''.join(row)) @staticmethod def to_algebraic(x, y): return Visualiser.coordinate_map[x] + str(abs(y - Visualiser. __dimensions))
<mask token> class Visualiser: coordinate_map = 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h' __dimensions = 8 def __init__(self): self.map = [] self.__build_map() def __build_map(self): """ Creates the array of the battlefield. Should never be used for logical operations :return: """ columns = [] for i in range(self.__dimensions): columns.append([]) for i in range(self.__dimensions): self.map.append(columns) def print(self, board: Board): """ Print the entire battlefield :param board: The current board in play :return: void """ row = [' '] for x_marker in self.coordinate_map: row.append(' ' + x_marker) print(''.join(row)) for y, y_row in enumerate(self.map): row = [str(8 - y) + ' '] for x, square in enumerate(y_row): anybody = board.who_is_in(*[x, y]) if anybody is not None: row.append(anybody.name) else: row.append(' .') print(''.join(row)) @staticmethod def to_algebraic(x, y): return Visualiser.coordinate_map[x] + str(abs(y - Visualiser. __dimensions))
from classes.Board import Board class Visualiser: coordinate_map = 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h' __dimensions = 8 def __init__(self): self.map = [] self.__build_map() def __build_map(self): """ Creates the array of the battlefield. Should never be used for logical operations :return: """ columns = [] for i in range(self.__dimensions): columns.append([]) for i in range(self.__dimensions): self.map.append(columns) def print(self, board: Board): """ Print the entire battlefield :param board: The current board in play :return: void """ row = [' '] for x_marker in self.coordinate_map: row.append(' ' + x_marker) print(''.join(row)) for y, y_row in enumerate(self.map): row = [str(8 - y) + ' '] for x, square in enumerate(y_row): anybody = board.who_is_in(*[x, y]) if anybody is not None: row.append(anybody.name) else: row.append(' .') print(''.join(row)) @staticmethod def to_algebraic(x, y): return Visualiser.coordinate_map[x] + str(abs(y - Visualiser. __dimensions))
from classes.Board import Board class Visualiser: coordinate_map = ("a", "b", "c", "d", "e", "f", "g", "h") __dimensions = 8 def __init__(self): self.map = [] self.__build_map() def __build_map(self): """ Creates the array of the battlefield. Should never be used for logical operations :return: """ columns = [] for i in range(self.__dimensions): columns.append([]) for i in range(self.__dimensions): self.map.append(columns) def print(self, board: Board): """ Print the entire battlefield :param board: The current board in play :return: void """ # Render first horizontal alphabetical x-axis markers row = [" "] for x_marker in self.coordinate_map: row.append(" " + x_marker) print("".join(row)) # Render the rest of the cheese board for y, y_row in enumerate(self.map): # Render left side row numbers row = [str((8-y)) + " "] # Render battlefield for x, square in enumerate(y_row): # Check with Board if there is a piece on this coordinate anybody = board.who_is_in(*[x, y]) # Anybody out there? if anybody is not None: # Oh hai row.append(anybody.name) else: # Print a simple dot row.append(" .") # Print the entire row print("".join(row)) @staticmethod def to_algebraic(x, y): return Visualiser.coordinate_map[x] + str(abs((y - Visualiser.__dimensions)))
[ 4, 5, 6, 7, 8 ]
224
c4e4e54ac93c2acdbd3a1cd22b200341a6e45688
import pyaudio import numpy as np from collections import OrderedDict import utils class MasterPlayer(object): def __init__(self, volume=1., samplesPerSecond=44100): self.p = pyaudio.PyAudio() self.volume = volume self.samplesPerSecond = samplesPerSecond self.individual_callbacks = OrderedDict() self.volumes = {} def __del__(self): self.p.terminate() def play(self): self.offset = 0 def callback(in_data, frame_count, time_info, status): total_stereo = np.zeros((frame_count*2)) time = self.offset / float(self.samplesPerSecond) for ic in self.individual_callbacks: left, right = ic(self.offset, time, frame_count) if left is None: # dead voice continue stereo = utils.to_stereo(left, right) # Accumulate total_stereo += stereo * self.volumes[ic] self.offset += frame_count output = utils.np_to_frames(total_stereo * self.volume) return (output, pyaudio.paContinue) self.stream = self.p.open(format=self.p.get_format_from_width(2), channels=2, rate=self.samplesPerSecond, output=True, stream_callback=callback) self.stream.start_stream() def stop(self): self.stream.stop_stream() def register(self, callback): self.individual_callbacks[callback] = {} self.volumes[callback] = 1. def unregister(self, callback): if callback in self.individual_callbacks: del self.individual_callbacks[callback] del self.volumes[callback] def set_volume(self, callback, volume): self.volumes[callback] = volume MAXVOLUME = 32767. def sawtooth(x): return np.mod(x / (2*np.pi), 1.) class ADSR(object): def __init__(self, a=0.01, d=0.1, s=0.8, r=0.5, mode='linear'): self.a = a self.d = d self.s = s self.r = r assert mode == 'linear' def get_envelope_pressed(self, delta): ''' :param delta: time after pressed :return: envelope (between 0 and 1) ''' delta = delta.astype(float) #assert delta>0. envelope = np.zeros(len(delta)) # attack attack = delta < self.a envelope[attack] = delta[attack] / self.a # decay decay = (delta < self.a + self.d) & (delta >= self.a) envelope[decay] = 1 - (1 - self.s) * (delta[decay] - self.a) / self.d # sustain sustain = (delta >= self.a + self.d) envelope[sustain] = self.s return envelope def get_envelope_released(self, delta): ''' :param delta: time after released :return: envelope (between 0 and 1) ''' delta = delta.astype(float) envelope = np.zeros(len(delta)) # release release = delta < self.r envelope[release] = self.s * (self.r - delta[release]) / self.r # dead dead = delta >= self.r all_dead = np.all(dead) return envelope, all_dead class SineWavePlayer(object): def __init__(self, freq, samplerate, adsr, motherwave=None): self.freq = freq self.samplerate = samplerate self.pressed = False self.volume = 0.3 #self.wave = np.sin if motherwave is None: motherwave = sawtooth() self.wave = motherwave self.adsr = adsr self.dead = True def __call__(self, offset, time, frame_count): # Find out which state we are in # Dead/NewPress/Pressed/NewRelease/Released/Dead if self.pressed: if self.new_press: # Initialize phase to prevent clicking self.onset = time self.new_press = False # Relative time after press time_after_press = (time + np.arange(frame_count, dtype=float) / self.samplerate - self.onset) left = self.volume * MAXVOLUME * self.wave(time_after_press * 2*np.pi * self.freq) envelope = self.adsr.get_envelope_pressed(time_after_press) left *= envelope right = left elif not self.dead: if self.new_release: self.new_release = False self.release_time = time # Relative time after release time_after_press = (time + np.arange(frame_count, dtype=float) / self.samplerate - self.onset) time_after_release = (time + np.arange(frame_count, dtype=float) / self.samplerate - self.release_time) left = self.volume * MAXVOLUME * self.wave(time_after_press * 2*np.pi * self.freq) envelope, self.dead = self.adsr.get_envelope_released(time_after_release) left *= envelope right = left else: left = right = None return left, right def press(self): self.pressed = True self.new_press = True self.dead = False def release(self): self.pressed = False self.new_release = True def note_to_freq(note): reference_a = 45 return np.exp(np.log(440) + (note - reference_a) / 12. * np.log(2)) class NaivePoly(object): def __init__(self, octaves, samplerate, adsr, motherwave): self.voices = [] self.octaves = octaves for note in xrange(self.octaves*12): # Compute frequency -> 440hz is note 45 freq = note_to_freq(note) # Initialize voice self.voices.append(SineWavePlayer(freq, samplerate, adsr, motherwave)) print 'note {} freq {}'.format(note, freq) def register(self, master): for voice in self.voices: master.register(voice) def unregister(self, master): for voice in self.voices: master.unregister(voice) def press(self, key): self.voices[key].press() def release(self, key): self.voices[key].release()
null
null
null
null
[ 0 ]
225
27e9e63338d422b5fca6f7a67fa3d255602a3358
<mask token> class V_test_abstract(V): def __init__(self): super(V_test_abstract, self).__init__() <mask token> def forward(self): z = self.beta[:self.dim] r1_local = self.beta[self.dim:2 * self.dim] r2_local = self.beta[2 * self.dim:3 * self.dim] r1_local_plus = self.beta[3 * self.dim:4 * self.dim] r2_local_plus = self.beta[4 * self.dim:5 * self.dim] r1_global = self.beta[5 * self.dim] r2_global = self.beta[5 * self.dim + 1] sigma = self.beta[5 * self.dim + 2] w0 = self.beta[5 * self.dim + 3] tau = r1_global * torch.sqrt(r2_global) lamb = r1_local * torch.sqrt(r2_local) lambda_plus = r1_local_plus * torch.sqrt(r2_local_plus) w = z * lamb * lambda_plus * tau outy = (self.y - (w0 + self.X.mv(w))) * (self.y - (w0 + self.X.mv(w)) ) / (sigma * sigma) * 0.5 outz = torch.dot(z, z) * 0.5 outr1_local = torch.dot(r1_local, r1_local) outr2_local = ((0.5 * self.nu + 1) * torch.log(r2_local) + 0.5 * self.nu / r2_local).sum() outr1_global = r1_global * r1_global * 0.5 outr2_global = 1.5 * torch.log(r2_global) + 0.5 / r2_global outw0 = w0 * w0 / 25.0 out = (outy + outz + outr1_local + outr2_local + outr1_global + outr2_global + outw0) return out <mask token>
<mask token> class V_test_abstract(V): def __init__(self): super(V_test_abstract, self).__init__() def V_setup(self, y, X, nu): self.explicit_gradient = False self.need_higherorderderiv = True self.dim = X.shape[1] self.beta = nn.Parameter(torch.zeros(self.dim * 5 + 4), requires_grad=True) self.y = y self.X = X self.nu = nu return () def forward(self): z = self.beta[:self.dim] r1_local = self.beta[self.dim:2 * self.dim] r2_local = self.beta[2 * self.dim:3 * self.dim] r1_local_plus = self.beta[3 * self.dim:4 * self.dim] r2_local_plus = self.beta[4 * self.dim:5 * self.dim] r1_global = self.beta[5 * self.dim] r2_global = self.beta[5 * self.dim + 1] sigma = self.beta[5 * self.dim + 2] w0 = self.beta[5 * self.dim + 3] tau = r1_global * torch.sqrt(r2_global) lamb = r1_local * torch.sqrt(r2_local) lambda_plus = r1_local_plus * torch.sqrt(r2_local_plus) w = z * lamb * lambda_plus * tau outy = (self.y - (w0 + self.X.mv(w))) * (self.y - (w0 + self.X.mv(w)) ) / (sigma * sigma) * 0.5 outz = torch.dot(z, z) * 0.5 outr1_local = torch.dot(r1_local, r1_local) outr2_local = ((0.5 * self.nu + 1) * torch.log(r2_local) + 0.5 * self.nu / r2_local).sum() outr1_global = r1_global * r1_global * 0.5 outr2_global = 1.5 * torch.log(r2_global) + 0.5 / r2_global outw0 = w0 * w0 / 25.0 out = (outy + outz + outr1_local + outr2_local + outr1_global + outr2_global + outw0) return out <mask token>
<mask token> class V_test_abstract(V): def __init__(self): super(V_test_abstract, self).__init__() def V_setup(self, y, X, nu): self.explicit_gradient = False self.need_higherorderderiv = True self.dim = X.shape[1] self.beta = nn.Parameter(torch.zeros(self.dim * 5 + 4), requires_grad=True) self.y = y self.X = X self.nu = nu return () def forward(self): z = self.beta[:self.dim] r1_local = self.beta[self.dim:2 * self.dim] r2_local = self.beta[2 * self.dim:3 * self.dim] r1_local_plus = self.beta[3 * self.dim:4 * self.dim] r2_local_plus = self.beta[4 * self.dim:5 * self.dim] r1_global = self.beta[5 * self.dim] r2_global = self.beta[5 * self.dim + 1] sigma = self.beta[5 * self.dim + 2] w0 = self.beta[5 * self.dim + 3] tau = r1_global * torch.sqrt(r2_global) lamb = r1_local * torch.sqrt(r2_local) lambda_plus = r1_local_plus * torch.sqrt(r2_local_plus) w = z * lamb * lambda_plus * tau outy = (self.y - (w0 + self.X.mv(w))) * (self.y - (w0 + self.X.mv(w)) ) / (sigma * sigma) * 0.5 outz = torch.dot(z, z) * 0.5 outr1_local = torch.dot(r1_local, r1_local) outr2_local = ((0.5 * self.nu + 1) * torch.log(r2_local) + 0.5 * self.nu / r2_local).sum() outr1_global = r1_global * r1_global * 0.5 outr2_global = 1.5 * torch.log(r2_global) + 0.5 / r2_global outw0 = w0 * w0 / 25.0 out = (outy + outz + outr1_local + outr2_local + outr1_global + outr2_global + outw0) return out def load_explcit_gradient(self): return ()
from abstract_class_V import V import torch import torch.nn as nn class V_test_abstract(V): def __init__(self): super(V_test_abstract, self).__init__() def V_setup(self, y, X, nu): self.explicit_gradient = False self.need_higherorderderiv = True self.dim = X.shape[1] self.beta = nn.Parameter(torch.zeros(self.dim * 5 + 4), requires_grad=True) self.y = y self.X = X self.nu = nu return () def forward(self): z = self.beta[:self.dim] r1_local = self.beta[self.dim:2 * self.dim] r2_local = self.beta[2 * self.dim:3 * self.dim] r1_local_plus = self.beta[3 * self.dim:4 * self.dim] r2_local_plus = self.beta[4 * self.dim:5 * self.dim] r1_global = self.beta[5 * self.dim] r2_global = self.beta[5 * self.dim + 1] sigma = self.beta[5 * self.dim + 2] w0 = self.beta[5 * self.dim + 3] tau = r1_global * torch.sqrt(r2_global) lamb = r1_local * torch.sqrt(r2_local) lambda_plus = r1_local_plus * torch.sqrt(r2_local_plus) w = z * lamb * lambda_plus * tau outy = (self.y - (w0 + self.X.mv(w))) * (self.y - (w0 + self.X.mv(w)) ) / (sigma * sigma) * 0.5 outz = torch.dot(z, z) * 0.5 outr1_local = torch.dot(r1_local, r1_local) outr2_local = ((0.5 * self.nu + 1) * torch.log(r2_local) + 0.5 * self.nu / r2_local).sum() outr1_global = r1_global * r1_global * 0.5 outr2_global = 1.5 * torch.log(r2_global) + 0.5 / r2_global outw0 = w0 * w0 / 25.0 out = (outy + outz + outr1_local + outr2_local + outr1_global + outr2_global + outw0) return out def load_explcit_gradient(self): return ()
from abstract_class_V import V import torch import torch.nn as nn class V_test_abstract(V): def __init__(self): super(V_test_abstract, self).__init__() def V_setup(self,y,X,nu): self.explicit_gradient = False self.need_higherorderderiv = True self.dim = X.shape[1] self.beta = nn.Parameter(torch.zeros(self.dim*5+4),requires_grad=True) self.y = y self.X = X self.nu = nu # beta[:dim] = z # beta[(dim):(2dim)] = r1_local # beta[(2dim):(3dim)] = r2_local # beta[(3dim):(4dim)] = r1_local_plus # beta[(4dim):(5dim)] = r2_local_plus # beta[5dim] = r1_global # beta[5dim+1] = r2_global # beta[5dim+2] = sigma # beta[5dim+3] = w0 return() def forward(self): z = self.beta[:self.dim] r1_local = self.beta[(self.dim):(2*self.dim)] r2_local = self.beta[(2*self.dim):(3*self.dim)] r1_local_plus = self.beta[(3*self.dim):(4*self.dim)] r2_local_plus = self.beta[(4*self.dim):(5*self.dim)] r1_global = self.beta[5*self.dim] r2_global = self.beta[5*self.dim+1] sigma = self.beta[5*self.dim+2] w0 = self.beta[5*self.dim+3] tau = r1_global * torch.sqrt(r2_global) lamb = r1_local * torch.sqrt(r2_local) lambda_plus = r1_local_plus * torch.sqrt(r2_local_plus) w = z * lamb * lambda_plus * tau outy = (self.y - (w0 + self.X.mv(w)))*(self.y - (w0 + self.X.mv(w)))/(sigma*sigma) * 0.5 outz = torch.dot(z,z) * 0.5 outr1_local = torch.dot(r1_local,r1_local) outr2_local = ((0.5*self.nu+1)*torch.log(r2_local) + 0.5 * self.nu/r2_local).sum() outr1_global = r1_global*r1_global * 0.5 outr2_global = 1.5 * torch.log(r2_global) + 0.5/r2_global outw0 = w0*w0/(25.) out = outy+outz+outr1_local+outr2_local+outr1_global+outr2_global+outw0 return(out) def load_explcit_gradient(self): return()
[ 3, 4, 5, 6, 7 ]
226
ec4348c61cd1c9130543bb20f9ca199399e1caff
class Solution(object): def restoreIpAddresses(self, s): """ :type s: str :rtype: List[str] """ def helper(sb, string, level): if len(string) == 0: if level == 4: ans.append(sb[:-1]) return if level == 4: return for i in range(3): if i < len(string): part = string[:i + 1] if valid(part): helper(sb + part + '.', string[i + 1:], level + 1) def valid(num): if len(num) > 1 and num[0] == '0': return False if 0 <= int(num) <= 255: return True else: return False ans = [] sb = '' helper(sb, s, 0) return ans solution = Solution() print solution.restoreIpAddresses("010010")
null
null
null
null
[ 0 ]
227
d0a3f332e04627eb275168972bd92cd1ea9b9447
<mask token> class TestTTT(unittest.TestCase): def test_mcts(self): if 0 in skip: print('Skipping ai self-play') return ttt = TTT() for i in range(1000): mcts = MCTS(ttt) state = mcts.root.state while not mcts.board.ending_state(state): move = mcts.search() print(move) state = mcts.board.get_state(state, move) mcts.board.print(state) mcts.make_move(move) self.assertEqual(mcts.board.ending_state(state), -1) def test_play_mcts(self): if 1 in skip: print('Skipping human-ai play') return ttt = TTT() mcts = MCTS(ttt) state = mcts.root.state my_player = 2 while not mcts.board.ending_state(state): mcts.board.print(state) move = mcts.search() print(move) if state[1] == my_player: move = input('Make move!\n') move = int(move[0]), int(move[1]) mcts.make_move(move) state = mcts.root.state mcts.board.print(state) def test_positions(self): move_sequence = [(1, 1), (2, 0), (0, 1)] move_sequence = [(1, 1), (2, 2), (2, 1)] move_sequence = [(1, 1), (2, 2), (2, 0), (0, 2), (1, 2), (2, 1)] def from_position(self, move_sequence, expected_move, name): ttt = TTT() mcts = MCTS(ttt, searchtime=30) mcts.board.print(mcts.root.state) for move in move_sequence: mcts.search() mcts.make_move(move) mcts.board.print(mcts.root.state) move = mcts.search() print('Testing {} block (that was lost before) on the following board' .format(name)) self.assertEqual(move, expected_move) def test_trick_win(self): pass <mask token>
<mask token> class TestTTT(unittest.TestCase): def test_mcts(self): if 0 in skip: print('Skipping ai self-play') return ttt = TTT() for i in range(1000): mcts = MCTS(ttt) state = mcts.root.state while not mcts.board.ending_state(state): move = mcts.search() print(move) state = mcts.board.get_state(state, move) mcts.board.print(state) mcts.make_move(move) self.assertEqual(mcts.board.ending_state(state), -1) def test_play_mcts(self): if 1 in skip: print('Skipping human-ai play') return ttt = TTT() mcts = MCTS(ttt) state = mcts.root.state my_player = 2 while not mcts.board.ending_state(state): mcts.board.print(state) move = mcts.search() print(move) if state[1] == my_player: move = input('Make move!\n') move = int(move[0]), int(move[1]) mcts.make_move(move) state = mcts.root.state mcts.board.print(state) def test_positions(self): move_sequence = [(1, 1), (2, 0), (0, 1)] move_sequence = [(1, 1), (2, 2), (2, 1)] move_sequence = [(1, 1), (2, 2), (2, 0), (0, 2), (1, 2), (2, 1)] def from_position(self, move_sequence, expected_move, name): ttt = TTT() mcts = MCTS(ttt, searchtime=30) mcts.board.print(mcts.root.state) for move in move_sequence: mcts.search() mcts.make_move(move) mcts.board.print(mcts.root.state) move = mcts.search() print('Testing {} block (that was lost before) on the following board' .format(name)) self.assertEqual(move, expected_move) def test_trick_win(self): pass def test_defend_trick_win(self): pass
<mask token> skip = [0] class TestTTT(unittest.TestCase): def test_mcts(self): if 0 in skip: print('Skipping ai self-play') return ttt = TTT() for i in range(1000): mcts = MCTS(ttt) state = mcts.root.state while not mcts.board.ending_state(state): move = mcts.search() print(move) state = mcts.board.get_state(state, move) mcts.board.print(state) mcts.make_move(move) self.assertEqual(mcts.board.ending_state(state), -1) def test_play_mcts(self): if 1 in skip: print('Skipping human-ai play') return ttt = TTT() mcts = MCTS(ttt) state = mcts.root.state my_player = 2 while not mcts.board.ending_state(state): mcts.board.print(state) move = mcts.search() print(move) if state[1] == my_player: move = input('Make move!\n') move = int(move[0]), int(move[1]) mcts.make_move(move) state = mcts.root.state mcts.board.print(state) def test_positions(self): move_sequence = [(1, 1), (2, 0), (0, 1)] move_sequence = [(1, 1), (2, 2), (2, 1)] move_sequence = [(1, 1), (2, 2), (2, 0), (0, 2), (1, 2), (2, 1)] def from_position(self, move_sequence, expected_move, name): ttt = TTT() mcts = MCTS(ttt, searchtime=30) mcts.board.print(mcts.root.state) for move in move_sequence: mcts.search() mcts.make_move(move) mcts.board.print(mcts.root.state) move = mcts.search() print('Testing {} block (that was lost before) on the following board' .format(name)) self.assertEqual(move, expected_move) def test_trick_win(self): pass def test_defend_trick_win(self): pass
from board.ttt import TTT from mctsai.mcts import MCTS import unittest skip = [0] class TestTTT(unittest.TestCase): def test_mcts(self): if 0 in skip: print('Skipping ai self-play') return ttt = TTT() for i in range(1000): mcts = MCTS(ttt) state = mcts.root.state while not mcts.board.ending_state(state): move = mcts.search() print(move) state = mcts.board.get_state(state, move) mcts.board.print(state) mcts.make_move(move) self.assertEqual(mcts.board.ending_state(state), -1) def test_play_mcts(self): if 1 in skip: print('Skipping human-ai play') return ttt = TTT() mcts = MCTS(ttt) state = mcts.root.state my_player = 2 while not mcts.board.ending_state(state): mcts.board.print(state) move = mcts.search() print(move) if state[1] == my_player: move = input('Make move!\n') move = int(move[0]), int(move[1]) mcts.make_move(move) state = mcts.root.state mcts.board.print(state) def test_positions(self): move_sequence = [(1, 1), (2, 0), (0, 1)] move_sequence = [(1, 1), (2, 2), (2, 1)] move_sequence = [(1, 1), (2, 2), (2, 0), (0, 2), (1, 2), (2, 1)] def from_position(self, move_sequence, expected_move, name): ttt = TTT() mcts = MCTS(ttt, searchtime=30) mcts.board.print(mcts.root.state) for move in move_sequence: mcts.search() mcts.make_move(move) mcts.board.print(mcts.root.state) move = mcts.search() print('Testing {} block (that was lost before) on the following board' .format(name)) self.assertEqual(move, expected_move) def test_trick_win(self): pass def test_defend_trick_win(self): pass
from board.ttt import TTT from mctsai.mcts import MCTS import unittest # skip = [0, 1] skip = [0] class TestTTT(unittest.TestCase): def test_mcts(self): if 0 in skip: print("Skipping ai self-play") return ttt = TTT() for i in range(1000): mcts = MCTS(ttt) state = mcts.root.state while not mcts.board.ending_state(state): move = mcts.search() print(move) state = mcts.board.get_state(state, move) mcts.board.print(state) mcts.make_move(move) self.assertEqual(mcts.board.ending_state(state), -1) def test_play_mcts(self): if 1 in skip: print("Skipping human-ai play") return ttt = TTT() mcts = MCTS(ttt) state = mcts.root.state my_player = 2 while not mcts.board.ending_state(state): mcts.board.print(state) move = mcts.search() print(move) if state[1] == my_player: move = input("Make move!\n") move = (int(move[0]), int(move[1])) mcts.make_move(move) state = mcts.root.state mcts.board.print(state) # state = mcts.board.get_state(state, move) # mcts = MCTS(ttt) # mcts.root.state = state # mcts.root.remaining_moves = mcts.board.get_legal_moves(mcts.root.state) def test_positions(self): # simple block move_sequence = [(1, 1), (2, 0), (0, 1)] # self.from_position(move_sequence, (2, 1), "Simple block 1") # simple block 2 move_sequence = [(1, 1), (2, 2), (2, 1)] # self.from_position(move_sequence, (0, 1), "Simple block 2") # simple win 1 move_sequence = [(1, 1), (2, 2), (2, 0), (0, 2), (1, 2), (2, 1)] # self.from_position(move_sequence, (1, 0), "Simple win") def from_position(self, move_sequence, expected_move, name): ttt = TTT() mcts = MCTS(ttt, searchtime= 30) mcts.board.print(mcts.root.state) for move in move_sequence: mcts.search() mcts.make_move(move) mcts.board.print(mcts.root.state) move = mcts.search() print("Testing {} block (that was lost before) on the following board".format(name)) self.assertEqual(move, expected_move) def test_trick_win(self): pass # ttt = TTT() # state = ttt.get_initial_state() # state = ttt.get_state(state, (1, 1)) # state = ttt.get_state(state, (2, 2)) # state = ttt.get_state(state, (2, 0)) # print("Testing trick win on the following board") # ttt.print(state) # for _ in range(100): # mcts = MCTS(ttt) # mcts.set_root_state(state) # move = mcts.search() # self.assertEqual(move, (0, 2)) def test_defend_trick_win(self): pass
[ 6, 7, 8, 9, 10 ]
228
e95bda8be2294c295d89f1c035bc209128fa29c8
def merge_the_tools(string, k): # your code goes here num_sub_strings = len(string)/k #print num_sub_strings for idx in range(num_sub_strings): print "".join(set(list(string[idx * k : (idx + 1) * k])))
null
null
null
null
[ 0 ]
229
f85a703b47d981397ed6048e941030a3fbee7b6d
<mask token>
<mask token> class Migration(migrations.Migration): <mask token> <mask token>
<mask token> class Migration(migrations.Migration): dependencies = [('talk', '0023_auto_20180207_1121')] operations = [migrations.AddField(model_name='talkmedia', name= 'codelink', field=models.CharField(blank=True, max_length=255, verbose_name='Source code'))]
from __future__ import unicode_literals from django.db import migrations, models class Migration(migrations.Migration): dependencies = [('talk', '0023_auto_20180207_1121')] operations = [migrations.AddField(model_name='talkmedia', name= 'codelink', field=models.CharField(blank=True, max_length=255, verbose_name='Source code'))]
# -*- coding: utf-8 -*- # Generated by Django 1.9.8 on 2018-04-27 08:05 from __future__ import unicode_literals from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('talk', '0023_auto_20180207_1121'), ] operations = [ migrations.AddField( model_name='talkmedia', name='codelink', field=models.CharField(blank=True, max_length=255, verbose_name='Source code'), ), ]
[ 0, 1, 2, 3, 4 ]
230
23375760c0943ca177b7009031d9d17a91165c5c
#!/usr/bin/env python #--coding: utf8-- import time if __name__ == '__main__': date = time.strftime('%m-%d') if date == '03-08': print '女神节' elif date == '02-14': print '情人节' else: print '发红包' print '这是一个测试题'
null
null
null
null
[ 0 ]
231
f8d815bcdc74452b66a1b3b33bf0fbe976e728c8
<mask token> def dataX(features, set): data_x = np.array([]) count = 0 for filepath in glob.iglob(set): globpath = filepath + '\\*.jpg' for filepath in glob.iglob('' + globpath): count = count + 1 img = Image.open(filepath).convert('L') data = list(img.getdata()) x = np.array(data) data_x = np.append(data_x, x) data_x = data_x.reshape(count, features) return data_x.astype(int) <mask token>
<mask token> def next_batch(num, data, labels): """ Return a total of `num` random samples and labels. """ idx = np.arange(0, len(data)) np.random.shuffle(idx) idx = idx[:num] data_shuffle = [data[i] for i in idx] labels_shuffle = [labels[i] for i in idx] return np.asarray(data_shuffle), np.asarray(labels_shuffle) def dataX(features, set): data_x = np.array([]) count = 0 for filepath in glob.iglob(set): globpath = filepath + '\\*.jpg' for filepath in glob.iglob('' + globpath): count = count + 1 img = Image.open(filepath).convert('L') data = list(img.getdata()) x = np.array(data) data_x = np.append(data_x, x) data_x = data_x.reshape(count, features) return data_x.astype(int) def dataY(categories, set): data_y = np.array([]) count = 0 for filepath in glob.iglob(set): path = filepath.split('\\') globpath = filepath + '\\*.jpg' for filepath in glob.iglob('' + globpath): count = count + 1 y = np.array([]) t = [int(path[2])] y = np.append(y, t) data_y = np.append(data_y, y) return data_y.astype(int) def model(): print(' model') batch_size = 50 features = 32 * 32 categories = 5 filter1 = 32 filter2 = 64 train_path = 'dataset\\train\\[0-4]' test_path = 'dataset\\test\\[0-4]' validation_path = 'dataset\\validation\\[0-4]' data_x = dataX(features, train_path) print('datax: ', data_x) data_y = dataY(categories, train_path) print('datay: ', data_y) data_x_test = dataX(features, test_path) data_y_test = dataY(categories, test_path) data_x_validation = dataX(features, validation_path) data_y_validation = dataY(categories, validation_path) x_image = tf.reshape(data_x, [-1, 32, 32, 1]) x_image_test = tf.reshape(data_x_test, [-1, 32, 32, 1]) x_image_validation = tf.reshape(data_x_validation, [-1, 32, 32, 1]) model = models.Sequential() model.add(layers.Conv2D(filter1, (5, 5), activation='relu', padding= 'SAME', input_shape=(32, 32, 1))) model.add(layers.MaxPooling2D((2, 2), padding='SAME', strides=(2, 2))) model.add(layers.Conv2D(filter2, (5, 5), activation='relu', padding= 'SAME', input_shape=(filter1, 16, 16, 1))) model.add(layers.MaxPooling2D((2, 2), padding='SAME', strides=(2, 2))) model.add(layers.Flatten()) model.add(layers.Dense(filter2, activation='relu')) model.add(layers.Dropout(0.5)) model.add(layers.Dense(categories)) model.summary() model.compile(optimizer='adam', loss=tf.keras.losses. SparseCategoricalCrossentropy(from_logits=True), metrics=['accuracy']) history = model.fit(x=x_image, y=data_y, epochs=10, validation_data=( x_image_validation, data_y_validation)) plt.plot(history.history['accuracy'], label='accuracy') plt.plot(history.history['val_accuracy'], label='val_accuracy') plt.xlabel('Epoch') plt.ylabel('Accuracy') plt.ylim([0.5, 1]) plt.legend(loc='lower right') test_loss, test_acc = model.evaluate(x_image_test, data_y_test, verbose=2) plt.show() <mask token>
<mask token> def next_batch(num, data, labels): """ Return a total of `num` random samples and labels. """ idx = np.arange(0, len(data)) np.random.shuffle(idx) idx = idx[:num] data_shuffle = [data[i] for i in idx] labels_shuffle = [labels[i] for i in idx] return np.asarray(data_shuffle), np.asarray(labels_shuffle) def dataX(features, set): data_x = np.array([]) count = 0 for filepath in glob.iglob(set): globpath = filepath + '\\*.jpg' for filepath in glob.iglob('' + globpath): count = count + 1 img = Image.open(filepath).convert('L') data = list(img.getdata()) x = np.array(data) data_x = np.append(data_x, x) data_x = data_x.reshape(count, features) return data_x.astype(int) def dataY(categories, set): data_y = np.array([]) count = 0 for filepath in glob.iglob(set): path = filepath.split('\\') globpath = filepath + '\\*.jpg' for filepath in glob.iglob('' + globpath): count = count + 1 y = np.array([]) t = [int(path[2])] y = np.append(y, t) data_y = np.append(data_y, y) return data_y.astype(int) def model(): print(' model') batch_size = 50 features = 32 * 32 categories = 5 filter1 = 32 filter2 = 64 train_path = 'dataset\\train\\[0-4]' test_path = 'dataset\\test\\[0-4]' validation_path = 'dataset\\validation\\[0-4]' data_x = dataX(features, train_path) print('datax: ', data_x) data_y = dataY(categories, train_path) print('datay: ', data_y) data_x_test = dataX(features, test_path) data_y_test = dataY(categories, test_path) data_x_validation = dataX(features, validation_path) data_y_validation = dataY(categories, validation_path) x_image = tf.reshape(data_x, [-1, 32, 32, 1]) x_image_test = tf.reshape(data_x_test, [-1, 32, 32, 1]) x_image_validation = tf.reshape(data_x_validation, [-1, 32, 32, 1]) model = models.Sequential() model.add(layers.Conv2D(filter1, (5, 5), activation='relu', padding= 'SAME', input_shape=(32, 32, 1))) model.add(layers.MaxPooling2D((2, 2), padding='SAME', strides=(2, 2))) model.add(layers.Conv2D(filter2, (5, 5), activation='relu', padding= 'SAME', input_shape=(filter1, 16, 16, 1))) model.add(layers.MaxPooling2D((2, 2), padding='SAME', strides=(2, 2))) model.add(layers.Flatten()) model.add(layers.Dense(filter2, activation='relu')) model.add(layers.Dropout(0.5)) model.add(layers.Dense(categories)) model.summary() model.compile(optimizer='adam', loss=tf.keras.losses. SparseCategoricalCrossentropy(from_logits=True), metrics=['accuracy']) history = model.fit(x=x_image, y=data_y, epochs=10, validation_data=( x_image_validation, data_y_validation)) plt.plot(history.history['accuracy'], label='accuracy') plt.plot(history.history['val_accuracy'], label='val_accuracy') plt.xlabel('Epoch') plt.ylabel('Accuracy') plt.ylim([0.5, 1]) plt.legend(loc='lower right') test_loss, test_acc = model.evaluate(x_image_test, data_y_test, verbose=2) plt.show() if __name__ == '__main__': model()
import tensorflow as tf from tensorflow.keras import datasets, layers, models import matplotlib.pyplot as plt import numpy as np from PIL import Image import glob def next_batch(num, data, labels): """ Return a total of `num` random samples and labels. """ idx = np.arange(0, len(data)) np.random.shuffle(idx) idx = idx[:num] data_shuffle = [data[i] for i in idx] labels_shuffle = [labels[i] for i in idx] return np.asarray(data_shuffle), np.asarray(labels_shuffle) def dataX(features, set): data_x = np.array([]) count = 0 for filepath in glob.iglob(set): globpath = filepath + '\\*.jpg' for filepath in glob.iglob('' + globpath): count = count + 1 img = Image.open(filepath).convert('L') data = list(img.getdata()) x = np.array(data) data_x = np.append(data_x, x) data_x = data_x.reshape(count, features) return data_x.astype(int) def dataY(categories, set): data_y = np.array([]) count = 0 for filepath in glob.iglob(set): path = filepath.split('\\') globpath = filepath + '\\*.jpg' for filepath in glob.iglob('' + globpath): count = count + 1 y = np.array([]) t = [int(path[2])] y = np.append(y, t) data_y = np.append(data_y, y) return data_y.astype(int) def model(): print(' model') batch_size = 50 features = 32 * 32 categories = 5 filter1 = 32 filter2 = 64 train_path = 'dataset\\train\\[0-4]' test_path = 'dataset\\test\\[0-4]' validation_path = 'dataset\\validation\\[0-4]' data_x = dataX(features, train_path) print('datax: ', data_x) data_y = dataY(categories, train_path) print('datay: ', data_y) data_x_test = dataX(features, test_path) data_y_test = dataY(categories, test_path) data_x_validation = dataX(features, validation_path) data_y_validation = dataY(categories, validation_path) x_image = tf.reshape(data_x, [-1, 32, 32, 1]) x_image_test = tf.reshape(data_x_test, [-1, 32, 32, 1]) x_image_validation = tf.reshape(data_x_validation, [-1, 32, 32, 1]) model = models.Sequential() model.add(layers.Conv2D(filter1, (5, 5), activation='relu', padding= 'SAME', input_shape=(32, 32, 1))) model.add(layers.MaxPooling2D((2, 2), padding='SAME', strides=(2, 2))) model.add(layers.Conv2D(filter2, (5, 5), activation='relu', padding= 'SAME', input_shape=(filter1, 16, 16, 1))) model.add(layers.MaxPooling2D((2, 2), padding='SAME', strides=(2, 2))) model.add(layers.Flatten()) model.add(layers.Dense(filter2, activation='relu')) model.add(layers.Dropout(0.5)) model.add(layers.Dense(categories)) model.summary() model.compile(optimizer='adam', loss=tf.keras.losses. SparseCategoricalCrossentropy(from_logits=True), metrics=['accuracy']) history = model.fit(x=x_image, y=data_y, epochs=10, validation_data=( x_image_validation, data_y_validation)) plt.plot(history.history['accuracy'], label='accuracy') plt.plot(history.history['val_accuracy'], label='val_accuracy') plt.xlabel('Epoch') plt.ylabel('Accuracy') plt.ylim([0.5, 1]) plt.legend(loc='lower right') test_loss, test_acc = model.evaluate(x_image_test, data_y_test, verbose=2) plt.show() if __name__ == '__main__': model()
# This is a sample Python script. # Press Shift+F10 to execute it or replace it with your code. # Press Double Shift to search everywhere for classes, files, tool windows, actions, and settings. import tensorflow as tf from tensorflow.keras import datasets, layers, models import matplotlib.pyplot as plt import numpy as np from PIL import Image import glob def next_batch(num, data, labels): ''' Return a total of `num` random samples and labels. ''' idx = np.arange(0 , len(data)) np.random.shuffle(idx) idx = idx[:num] data_shuffle = [data[ i] for i in idx] labels_shuffle = [labels[ i] for i in idx] return np.asarray(data_shuffle), np.asarray(labels_shuffle) def dataX(features, set): data_x = np.array([]) count = 0 for filepath in glob.iglob(set): globpath = filepath + '\*.jpg' for filepath in glob.iglob(r'' + globpath): count = count + 1 img = Image.open(filepath).convert('L') # convert image to 8-bit grayscale data = list(img.getdata()) x = np.array(data) data_x = np.append(data_x, x) data_x = data_x.reshape(count, features) # return data_x return data_x.astype(int) def dataY(categories, set): data_y = np.array([]) count = 0 for filepath in glob.iglob(set): path = filepath.split("\\") globpath = filepath + '\*.jpg' for filepath in glob.iglob(r'' + globpath): count = count + 1 y = np.array([]) t = [int(path[2])] y = np.append(y, t) data_y = np.append(data_y, y) # data_y = data_y.reshape(count, categories) # return data_y return data_y.astype(int) def model(): print(' model') batch_size = 50 features = 32 * 32 categories = 5 filter1 = 32 filter2 = 64 train_path = r'dataset\train\[0-4]' test_path = r'dataset\test\[0-4]' validation_path = r'dataset\validation\[0-4]' data_x = dataX(features, train_path) print("datax: ", data_x) data_y = dataY(categories, train_path) print("datay: ", data_y) data_x_test = dataX(features, test_path) data_y_test = dataY(categories, test_path) data_x_validation = dataX(features, validation_path) data_y_validation = dataY(categories, validation_path) x_image = tf.reshape(data_x, [-1, 32, 32, 1]) x_image_test = tf.reshape(data_x_test, [-1, 32, 32, 1]) x_image_validation = tf.reshape(data_x_validation, [-1, 32, 32, 1]) model = models.Sequential() model.add(layers.Conv2D(filter1, (5, 5), activation='relu', padding='SAME', input_shape=(32, 32, 1))) model.add(layers.MaxPooling2D((2, 2), padding='SAME', strides=(2, 2))) model.add(layers.Conv2D(filter2, (5, 5), activation='relu', padding='SAME', input_shape=(filter1, 16, 16, 1))) model.add(layers.MaxPooling2D((2, 2), padding='SAME', strides=(2, 2))) model.add(layers.Flatten()) model.add(layers.Dense(filter2, activation='relu')) model.add(layers.Dropout(0.5)) model.add(layers.Dense(categories)) model.summary() model.compile(optimizer='adam', loss=tf.keras.losses.SparseCategoricalCrossentropy(from_logits=True), metrics=['accuracy']) history = model.fit(x=x_image, y=data_y, epochs=10, validation_data=(x_image_validation, data_y_validation)) # Show results in graph view plt.plot(history.history['accuracy'], label='accuracy') plt.plot(history.history['val_accuracy'], label='val_accuracy') plt.xlabel('Epoch') plt.ylabel('Accuracy') plt.ylim([0.5, 1]) plt.legend(loc='lower right') # plt.show() test_loss, test_acc = model.evaluate(x_image_test, data_y_test, verbose=2) plt.show() if __name__ == '__main__': model()
[ 1, 4, 5, 6, 7 ]
232
ef85f94282bfd7c9491c4e28bab61aaab5c792a5
<mask token> class Ui_Tab(object): <mask token> <mask token>
<mask token> class Ui_Tab(object): <mask token> def retranslateUi(self, Tab): _translate = QtCore.QCoreApplication.translate Tab.setWindowTitle(_translate('Tab', 'Form')) self.btn_enterPassword.setText(_translate('Tab', 'Enter Password'))
<mask token> class Ui_Tab(object): def setupUi(self, Tab): Tab.setObjectName('Tab') Tab.resize(762, 523) self.verticalLayout = QtWidgets.QVBoxLayout(Tab) self.verticalLayout.setObjectName('verticalLayout') self.hLayout = QtWidgets.QHBoxLayout() self.hLayout.setObjectName('hLayout') self.btn_enterPassword = QtWidgets.QPushButton(Tab) self.btn_enterPassword.setObjectName('btn_enterPassword') self.hLayout.addWidget(self.btn_enterPassword) spacerItem = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy. Expanding, QtWidgets.QSizePolicy.Minimum) self.hLayout.addItem(spacerItem) self.verticalLayout.addLayout(self.hLayout) self.scrollArea = QtWidgets.QScrollArea(Tab) self.scrollArea.setWidgetResizable(True) self.scrollArea.setObjectName('scrollArea') self.scrollAreaWidgetContents = QtWidgets.QWidget() self.scrollAreaWidgetContents.setGeometry(QtCore.QRect(0, 0, 736, 455)) self.scrollAreaWidgetContents.setObjectName('scrollAreaWidgetContents') self.gridLayout = QtWidgets.QGridLayout(self.scrollAreaWidgetContents) self.gridLayout.setObjectName('gridLayout') self.scrollArea.setWidget(self.scrollAreaWidgetContents) self.verticalLayout.addWidget(self.scrollArea) self.retranslateUi(Tab) QtCore.QMetaObject.connectSlotsByName(Tab) def retranslateUi(self, Tab): _translate = QtCore.QCoreApplication.translate Tab.setWindowTitle(_translate('Tab', 'Form')) self.btn_enterPassword.setText(_translate('Tab', 'Enter Password'))
from PyQt5 import QtCore, QtGui, QtWidgets class Ui_Tab(object): def setupUi(self, Tab): Tab.setObjectName('Tab') Tab.resize(762, 523) self.verticalLayout = QtWidgets.QVBoxLayout(Tab) self.verticalLayout.setObjectName('verticalLayout') self.hLayout = QtWidgets.QHBoxLayout() self.hLayout.setObjectName('hLayout') self.btn_enterPassword = QtWidgets.QPushButton(Tab) self.btn_enterPassword.setObjectName('btn_enterPassword') self.hLayout.addWidget(self.btn_enterPassword) spacerItem = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy. Expanding, QtWidgets.QSizePolicy.Minimum) self.hLayout.addItem(spacerItem) self.verticalLayout.addLayout(self.hLayout) self.scrollArea = QtWidgets.QScrollArea(Tab) self.scrollArea.setWidgetResizable(True) self.scrollArea.setObjectName('scrollArea') self.scrollAreaWidgetContents = QtWidgets.QWidget() self.scrollAreaWidgetContents.setGeometry(QtCore.QRect(0, 0, 736, 455)) self.scrollAreaWidgetContents.setObjectName('scrollAreaWidgetContents') self.gridLayout = QtWidgets.QGridLayout(self.scrollAreaWidgetContents) self.gridLayout.setObjectName('gridLayout') self.scrollArea.setWidget(self.scrollAreaWidgetContents) self.verticalLayout.addWidget(self.scrollArea) self.retranslateUi(Tab) QtCore.QMetaObject.connectSlotsByName(Tab) def retranslateUi(self, Tab): _translate = QtCore.QCoreApplication.translate Tab.setWindowTitle(_translate('Tab', 'Form')) self.btn_enterPassword.setText(_translate('Tab', 'Enter Password'))
# -*- coding: utf-8 -*- # Form implementation generated from reading ui file 'src/ui_LibraryTab.ui' # # Created: Tue Jun 9 21:46:41 2015 # by: PyQt5 UI code generator 5.4 # # WARNING! All changes made in this file will be lost! from PyQt5 import QtCore, QtGui, QtWidgets class Ui_Tab(object): def setupUi(self, Tab): Tab.setObjectName("Tab") Tab.resize(762, 523) self.verticalLayout = QtWidgets.QVBoxLayout(Tab) self.verticalLayout.setObjectName("verticalLayout") self.hLayout = QtWidgets.QHBoxLayout() self.hLayout.setObjectName("hLayout") self.btn_enterPassword = QtWidgets.QPushButton(Tab) self.btn_enterPassword.setObjectName("btn_enterPassword") self.hLayout.addWidget(self.btn_enterPassword) spacerItem = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) self.hLayout.addItem(spacerItem) self.verticalLayout.addLayout(self.hLayout) self.scrollArea = QtWidgets.QScrollArea(Tab) self.scrollArea.setWidgetResizable(True) self.scrollArea.setObjectName("scrollArea") self.scrollAreaWidgetContents = QtWidgets.QWidget() self.scrollAreaWidgetContents.setGeometry(QtCore.QRect(0, 0, 736, 455)) self.scrollAreaWidgetContents.setObjectName("scrollAreaWidgetContents") self.gridLayout = QtWidgets.QGridLayout(self.scrollAreaWidgetContents) self.gridLayout.setObjectName("gridLayout") self.scrollArea.setWidget(self.scrollAreaWidgetContents) self.verticalLayout.addWidget(self.scrollArea) self.retranslateUi(Tab) QtCore.QMetaObject.connectSlotsByName(Tab) def retranslateUi(self, Tab): _translate = QtCore.QCoreApplication.translate Tab.setWindowTitle(_translate("Tab", "Form")) self.btn_enterPassword.setText(_translate("Tab", "Enter Password"))
[ 1, 2, 3, 4, 5 ]
233
8c8bbbc682889c8d79c893f27def76ad70e8bf8d
<mask token>
DATABASE_NAME = 'user_db'
DATABASE_NAME = "user_db"
null
null
[ 0, 1, 2 ]
234
9d904225afd4f4d0cf338ae16f031f8ab41639ad
<mask token> class FragmentMakoChain(Fragment): <mask token> <mask token> <mask token> <mask token> <mask token> def __init__(self, content=None, base=None, lookup_dirs=None): """ Класс, позволяющий последовательно оборачивать экземпляры Fragment друг в друга. :param content: Содержимое фрагмента :param base: Базовый фрагмент, тот, в который будет обёрнут этот фрагмент; должен быть экземпляром FragmentMakoChain или None :param lookup_dirs: Директории поиска шаблонов :return: """ assert isinstance(base, FragmentMakoChain) or base is None super(FragmentMakoChain, self).__init__(content=content) self.base = base self.lookup_dirs = lookup_dirs def body_html(self): template = self.build_chain() return template.render(**self.context.get('render_context', {})) def add_context(self, new_context): deep_update(self.context, new_context) def build_chain(self): """ Строит цепочку шаблонов. В цепочке каждый шаблон наследуется от одного и того же ifmo_xblock_base, поэтому порядок оборачивания не определён (точнее, его вычисляет метод super()). Поскольку при рендере шаблона используется исключительно lookup от шаблона, над которым он вызван, а не собственный Lookup для каждого из шаблона в коллекции, необходимо добавить в коллекцию все пути и шаблоны, использующиеся в шаблоне выше по цепочке. Более того, необходимо изменить имена шаблонов (ifmo_xblock_base) на уникальные. :param lookup: экземпляр TemplateLookup, в который будут записываться новые пути и шаблоны, использующиеся как родительские :return: tuple(template, lookup, base_template_id) - template -- шаблон, который должен будет стать родителем - lookup -- изменённый lookup """ def _build_chain(self, lookup=None): old_base_name = 'ifmo_xblock_base' new_base_name = None if self.base is not None: import uuid new_base_name = '{name}_{rnd}'.format(name=old_base_name, rnd=str(uuid.uuid4())) if hasattr(self.base, 'build_chain'): base_template, base_lookup = _build_chain(self.base, lookup ) lookup.put_template(new_base_name, base_template) else: lookup.put_string(new_base_name, self.base.body_html()) lookup.append_dirs(self.base.lookup_dirs) return Template(text=self._content.replace(old_base_name, new_base_name) if new_base_name else self._content, lookup= lookup), lookup lookup = TemplateLookup(directories=self.lookup_dirs) template, _ = _build_chain(self, lookup) return template <mask token> @property def content(self): return self.body_html() <mask token>
<mask token> class FragmentMakoChain(Fragment): <mask token> <mask token> <mask token> <mask token> <mask token> def __init__(self, content=None, base=None, lookup_dirs=None): """ Класс, позволяющий последовательно оборачивать экземпляры Fragment друг в друга. :param content: Содержимое фрагмента :param base: Базовый фрагмент, тот, в который будет обёрнут этот фрагмент; должен быть экземпляром FragmentMakoChain или None :param lookup_dirs: Директории поиска шаблонов :return: """ assert isinstance(base, FragmentMakoChain) or base is None super(FragmentMakoChain, self).__init__(content=content) self.base = base self.lookup_dirs = lookup_dirs def body_html(self): template = self.build_chain() return template.render(**self.context.get('render_context', {})) def add_context(self, new_context): deep_update(self.context, new_context) def build_chain(self): """ Строит цепочку шаблонов. В цепочке каждый шаблон наследуется от одного и того же ifmo_xblock_base, поэтому порядок оборачивания не определён (точнее, его вычисляет метод super()). Поскольку при рендере шаблона используется исключительно lookup от шаблона, над которым он вызван, а не собственный Lookup для каждого из шаблона в коллекции, необходимо добавить в коллекцию все пути и шаблоны, использующиеся в шаблоне выше по цепочке. Более того, необходимо изменить имена шаблонов (ifmo_xblock_base) на уникальные. :param lookup: экземпляр TemplateLookup, в который будут записываться новые пути и шаблоны, использующиеся как родительские :return: tuple(template, lookup, base_template_id) - template -- шаблон, который должен будет стать родителем - lookup -- изменённый lookup """ def _build_chain(self, lookup=None): old_base_name = 'ifmo_xblock_base' new_base_name = None if self.base is not None: import uuid new_base_name = '{name}_{rnd}'.format(name=old_base_name, rnd=str(uuid.uuid4())) if hasattr(self.base, 'build_chain'): base_template, base_lookup = _build_chain(self.base, lookup ) lookup.put_template(new_base_name, base_template) else: lookup.put_string(new_base_name, self.base.body_html()) lookup.append_dirs(self.base.lookup_dirs) return Template(text=self._content.replace(old_base_name, new_base_name) if new_base_name else self._content, lookup= lookup), lookup lookup = TemplateLookup(directories=self.lookup_dirs) template, _ = _build_chain(self, lookup) return template <mask token> @property def content(self): return self.body_html() @content.setter def content(self, value): self._content = value
<mask token> class FragmentMakoChain(Fragment): """ Класс, позволяющий последовательно оборачивать экземпляры Fragment друг в друга. Для того, чтобы цепочка отработала, шаблон должен наследоваться от шаблона ifmo_xblock_base и определять блок block_body. Порядок оборачивания не определён. """ base = None context = {} _content = None lookup_dirs = None def __init__(self, content=None, base=None, lookup_dirs=None): """ Класс, позволяющий последовательно оборачивать экземпляры Fragment друг в друга. :param content: Содержимое фрагмента :param base: Базовый фрагмент, тот, в который будет обёрнут этот фрагмент; должен быть экземпляром FragmentMakoChain или None :param lookup_dirs: Директории поиска шаблонов :return: """ assert isinstance(base, FragmentMakoChain) or base is None super(FragmentMakoChain, self).__init__(content=content) self.base = base self.lookup_dirs = lookup_dirs def body_html(self): template = self.build_chain() return template.render(**self.context.get('render_context', {})) def add_context(self, new_context): deep_update(self.context, new_context) def build_chain(self): """ Строит цепочку шаблонов. В цепочке каждый шаблон наследуется от одного и того же ifmo_xblock_base, поэтому порядок оборачивания не определён (точнее, его вычисляет метод super()). Поскольку при рендере шаблона используется исключительно lookup от шаблона, над которым он вызван, а не собственный Lookup для каждого из шаблона в коллекции, необходимо добавить в коллекцию все пути и шаблоны, использующиеся в шаблоне выше по цепочке. Более того, необходимо изменить имена шаблонов (ifmo_xblock_base) на уникальные. :param lookup: экземпляр TemplateLookup, в который будут записываться новые пути и шаблоны, использующиеся как родительские :return: tuple(template, lookup, base_template_id) - template -- шаблон, который должен будет стать родителем - lookup -- изменённый lookup """ def _build_chain(self, lookup=None): old_base_name = 'ifmo_xblock_base' new_base_name = None if self.base is not None: import uuid new_base_name = '{name}_{rnd}'.format(name=old_base_name, rnd=str(uuid.uuid4())) if hasattr(self.base, 'build_chain'): base_template, base_lookup = _build_chain(self.base, lookup ) lookup.put_template(new_base_name, base_template) else: lookup.put_string(new_base_name, self.base.body_html()) lookup.append_dirs(self.base.lookup_dirs) return Template(text=self._content.replace(old_base_name, new_base_name) if new_base_name else self._content, lookup= lookup), lookup lookup = TemplateLookup(directories=self.lookup_dirs) template, _ = _build_chain(self, lookup) return template @property def resources(self): seen = set() parent_res = self.base.resources if self.base else [] return [x for x in parent_res + self._resources if x not in seen and not seen.add(x)] @property def content(self): return self.body_html() @content.setter def content(self, value): self._content = value
from mako.template import Template from xblock.fragment import Fragment from .lookup import TemplateLookup from .utils import deep_update class FragmentMakoChain(Fragment): """ Класс, позволяющий последовательно оборачивать экземпляры Fragment друг в друга. Для того, чтобы цепочка отработала, шаблон должен наследоваться от шаблона ifmo_xblock_base и определять блок block_body. Порядок оборачивания не определён. """ base = None context = {} _content = None lookup_dirs = None def __init__(self, content=None, base=None, lookup_dirs=None): """ Класс, позволяющий последовательно оборачивать экземпляры Fragment друг в друга. :param content: Содержимое фрагмента :param base: Базовый фрагмент, тот, в который будет обёрнут этот фрагмент; должен быть экземпляром FragmentMakoChain или None :param lookup_dirs: Директории поиска шаблонов :return: """ assert isinstance(base, FragmentMakoChain) or base is None super(FragmentMakoChain, self).__init__(content=content) self.base = base self.lookup_dirs = lookup_dirs def body_html(self): template = self.build_chain() return template.render(**self.context.get('render_context', {})) def add_context(self, new_context): deep_update(self.context, new_context) def build_chain(self): """ Строит цепочку шаблонов. В цепочке каждый шаблон наследуется от одного и того же ifmo_xblock_base, поэтому порядок оборачивания не определён (точнее, его вычисляет метод super()). Поскольку при рендере шаблона используется исключительно lookup от шаблона, над которым он вызван, а не собственный Lookup для каждого из шаблона в коллекции, необходимо добавить в коллекцию все пути и шаблоны, использующиеся в шаблоне выше по цепочке. Более того, необходимо изменить имена шаблонов (ifmo_xblock_base) на уникальные. :param lookup: экземпляр TemplateLookup, в который будут записываться новые пути и шаблоны, использующиеся как родительские :return: tuple(template, lookup, base_template_id) - template -- шаблон, который должен будет стать родителем - lookup -- изменённый lookup """ def _build_chain(self, lookup=None): old_base_name = 'ifmo_xblock_base' new_base_name = None if self.base is not None: import uuid new_base_name = '{name}_{rnd}'.format(name=old_base_name, rnd=str(uuid.uuid4())) if hasattr(self.base, 'build_chain'): base_template, base_lookup = _build_chain(self.base, lookup ) lookup.put_template(new_base_name, base_template) else: lookup.put_string(new_base_name, self.base.body_html()) lookup.append_dirs(self.base.lookup_dirs) return Template(text=self._content.replace(old_base_name, new_base_name) if new_base_name else self._content, lookup= lookup), lookup lookup = TemplateLookup(directories=self.lookup_dirs) template, _ = _build_chain(self, lookup) return template @property def resources(self): seen = set() parent_res = self.base.resources if self.base else [] return [x for x in parent_res + self._resources if x not in seen and not seen.add(x)] @property def content(self): return self.body_html() @content.setter def content(self, value): self._content = value
# -*- coding=utf-8 -*- from mako.template import Template from xblock.fragment import Fragment from .lookup import TemplateLookup # xblock_ifmo.lookup from .utils import deep_update class FragmentMakoChain(Fragment): """ Класс, позволяющий последовательно оборачивать экземпляры Fragment друг в друга. Для того, чтобы цепочка отработала, шаблон должен наследоваться от шаблона ifmo_xblock_base и определять блок block_body. Порядок оборачивания не определён. """ base = None context = {} _content = None lookup_dirs = None def __init__(self, content=None, base=None, lookup_dirs=None): """ Класс, позволяющий последовательно оборачивать экземпляры Fragment друг в друга. :param content: Содержимое фрагмента :param base: Базовый фрагмент, тот, в который будет обёрнут этот фрагмент; должен быть экземпляром FragmentMakoChain или None :param lookup_dirs: Директории поиска шаблонов :return: """ assert isinstance(base, FragmentMakoChain) or base is None super(FragmentMakoChain, self).__init__(content=content) self.base = base self.lookup_dirs = lookup_dirs def body_html(self): template = self.build_chain() return template.render(**self.context.get('render_context', {})) def add_context(self, new_context): deep_update(self.context, new_context) def build_chain(self): """ Строит цепочку шаблонов. В цепочке каждый шаблон наследуется от одного и того же ifmo_xblock_base, поэтому порядок оборачивания не определён (точнее, его вычисляет метод super()). Поскольку при рендере шаблона используется исключительно lookup от шаблона, над которым он вызван, а не собственный Lookup для каждого из шаблона в коллекции, необходимо добавить в коллекцию все пути и шаблоны, использующиеся в шаблоне выше по цепочке. Более того, необходимо изменить имена шаблонов (ifmo_xblock_base) на уникальные. :param lookup: экземпляр TemplateLookup, в который будут записываться новые пути и шаблоны, использующиеся как родительские :return: tuple(template, lookup, base_template_id) - template -- шаблон, который должен будет стать родителем - lookup -- изменённый lookup """ def _build_chain(self, lookup=None): old_base_name = "ifmo_xblock_base" new_base_name = None if self.base is not None: import uuid new_base_name = "{name}_{rnd}".format(name=old_base_name, rnd=str(uuid.uuid4())) if hasattr(self.base, 'build_chain'): base_template, base_lookup = _build_chain(self.base, lookup) lookup.put_template(new_base_name, base_template) else: lookup.put_string(new_base_name, self.base.body_html()) lookup.append_dirs(self.base.lookup_dirs) return Template( text=self._content.replace(old_base_name, new_base_name) if new_base_name else self._content, lookup=lookup ), lookup lookup = TemplateLookup(directories=self.lookup_dirs) template, _ = _build_chain(self, lookup) return template @property def resources(self): seen = set() parent_res = self.base.resources if self.base else [] return [x for x in parent_res + self._resources if x not in seen and not seen.add(x)] @property def content(self): return self.body_html() @content.setter def content(self, value): self._content = value
[ 6, 7, 10, 11, 12 ]
235
8cc0393082448bb8f61068b5c96e89ef3aee77ed
<mask token> class LdapSync(Thread): def __init__(self, settings): Thread.__init__(self) self.settings = settings def run(self): if self.settings.enable_group_sync: migrate_dn_pairs(settings=self.settings) self.start_sync() self.show_sync_result() <mask token> def start_sync(self): data_ldap = self.get_data_from_ldap() if data_ldap is None: return data_db = self.get_data_from_db() if data_db is None: return self.sync_data(data_db, data_ldap) <mask token> def get_data_from_ldap(self): ret = {} for config in self.settings.ldap_configs: cur_ret = self.get_data_from_ldap_by_server(config) if cur_ret is None: return None for key in cur_ret.keys(): if key not in ret: ret[key] = cur_ret[key] ret[key].config = config return ret def get_data_from_ldap_by_server(self, config): return None def sync_data(self, data_db, data_ldap): pass
<mask token> class LdapSync(Thread): def __init__(self, settings): Thread.__init__(self) self.settings = settings def run(self): if self.settings.enable_group_sync: migrate_dn_pairs(settings=self.settings) self.start_sync() self.show_sync_result() <mask token> def start_sync(self): data_ldap = self.get_data_from_ldap() if data_ldap is None: return data_db = self.get_data_from_db() if data_db is None: return self.sync_data(data_db, data_ldap) def get_data_from_db(self): return None def get_data_from_ldap(self): ret = {} for config in self.settings.ldap_configs: cur_ret = self.get_data_from_ldap_by_server(config) if cur_ret is None: return None for key in cur_ret.keys(): if key not in ret: ret[key] = cur_ret[key] ret[key].config = config return ret def get_data_from_ldap_by_server(self, config): return None def sync_data(self, data_db, data_ldap): pass
<mask token> class LdapSync(Thread): def __init__(self, settings): Thread.__init__(self) self.settings = settings def run(self): if self.settings.enable_group_sync: migrate_dn_pairs(settings=self.settings) self.start_sync() self.show_sync_result() def show_sync_result(self): pass def start_sync(self): data_ldap = self.get_data_from_ldap() if data_ldap is None: return data_db = self.get_data_from_db() if data_db is None: return self.sync_data(data_db, data_ldap) def get_data_from_db(self): return None def get_data_from_ldap(self): ret = {} for config in self.settings.ldap_configs: cur_ret = self.get_data_from_ldap_by_server(config) if cur_ret is None: return None for key in cur_ret.keys(): if key not in ret: ret[key] = cur_ret[key] ret[key].config = config return ret def get_data_from_ldap_by_server(self, config): return None def sync_data(self, data_db, data_ldap): pass
<mask token> def migrate_dn_pairs(settings): grp_dn_pairs = get_group_dn_pairs() if grp_dn_pairs is None: logger.warning( 'get group dn pairs from db failed when migrate dn pairs.') return grp_dn_pairs.reverse() for grp_dn_pair in grp_dn_pairs: for config in settings.ldap_configs: search_filter = '(objectClass=*)' ldap_conn = LdapConn(config.host, config.user_dn, config.passwd, config.follow_referrals) ldap_conn.create_conn() if not ldap_conn.conn: logger.warning('connect ldap server [%s] failed.' % config. user_dn) return if config.use_page_result: results = ldap_conn.paged_search(grp_dn_pair.dn, SCOPE_BASE, search_filter, [config.group_uuid_attr]) else: results = ldap_conn.search(grp_dn_pair.dn, SCOPE_BASE, search_filter, [config.group_uuid_attr]) ldap_conn.unbind_conn() results = bytes2str(results) if not results: continue else: uuid = results[0][1][config.group_uuid_attr][0] add_group_uuid_pair(grp_dn_pair.group_id, uuid) class LdapSync(Thread): def __init__(self, settings): Thread.__init__(self) self.settings = settings def run(self): if self.settings.enable_group_sync: migrate_dn_pairs(settings=self.settings) self.start_sync() self.show_sync_result() def show_sync_result(self): pass def start_sync(self): data_ldap = self.get_data_from_ldap() if data_ldap is None: return data_db = self.get_data_from_db() if data_db is None: return self.sync_data(data_db, data_ldap) def get_data_from_db(self): return None def get_data_from_ldap(self): ret = {} for config in self.settings.ldap_configs: cur_ret = self.get_data_from_ldap_by_server(config) if cur_ret is None: return None for key in cur_ret.keys(): if key not in ret: ret[key] = cur_ret[key] ret[key].config = config return ret def get_data_from_ldap_by_server(self, config): return None def sync_data(self, data_db, data_ldap): pass
#coding: utf-8 import logging from threading import Thread from ldap import SCOPE_BASE from seafevents.ldap_syncer.ldap_conn import LdapConn from seafevents.ldap_syncer.utils import bytes2str, add_group_uuid_pair from seaserv import get_group_dn_pairs logger = logging.getLogger(__name__) def migrate_dn_pairs(settings): grp_dn_pairs = get_group_dn_pairs() if grp_dn_pairs is None: logger.warning('get group dn pairs from db failed when migrate dn pairs.') return grp_dn_pairs.reverse() for grp_dn_pair in grp_dn_pairs: for config in settings.ldap_configs: search_filter = '(objectClass=*)' ldap_conn = LdapConn(config.host, config.user_dn, config.passwd, config.follow_referrals) ldap_conn.create_conn() if not ldap_conn.conn: logger.warning('connect ldap server [%s] failed.' % config.user_dn) return if config.use_page_result: results = ldap_conn.paged_search(grp_dn_pair.dn, SCOPE_BASE, search_filter, [config.group_uuid_attr]) else: results = ldap_conn.search(grp_dn_pair.dn, SCOPE_BASE, search_filter, [config.group_uuid_attr]) ldap_conn.unbind_conn() results = bytes2str(results) if not results: continue else: uuid = results[0][1][config.group_uuid_attr][0] add_group_uuid_pair(grp_dn_pair.group_id, uuid) class LdapSync(Thread): def __init__(self, settings): Thread.__init__(self) self.settings = settings def run(self): if self.settings.enable_group_sync: migrate_dn_pairs(settings=self.settings) self.start_sync() self.show_sync_result() def show_sync_result(self): pass def start_sync(self): data_ldap = self.get_data_from_ldap() if data_ldap is None: return data_db = self.get_data_from_db() if data_db is None: return self.sync_data(data_db, data_ldap) def get_data_from_db(self): return None def get_data_from_ldap(self): ret = {} for config in self.settings.ldap_configs: cur_ret = self.get_data_from_ldap_by_server(config) # If get data from one server failed, then the result is failed if cur_ret is None: return None for key in cur_ret.keys(): if key not in ret: ret[key] = cur_ret[key] ret[key].config = config return ret def get_data_from_ldap_by_server(self, config): return None def sync_data(self, data_db, data_ldap): pass
[ 7, 8, 9, 10, 13 ]
236
21af630bf383ee1bdd0f644283f0ddadde71620a
#!/bin/usr/python2.7.x import os, re, urllib2 def main(): ip = raw_input(" Target IP : ") check(ip) def check(ip): try: print "Loading Check File Uploader...." print 58*"-" page = 1 while page <= 21: bing = "http://www.bing.com/search?q=ip%3A" + \ ip + "+upload&count=50&first=" + str(page) openbing = urllib2.urlopen(bing) readbing = openbing.read() findwebs = re.findall('<h2><a href="(.*?)"', readbing) sites = findwebs for i in sites: try: response = urllib2.urlopen(i).read() checksqli(i) except urllib2.HTTPError, e: str(sites).strip(i) page = page + 10 except: pass def checksqli(sqli): responsetwo = urllib2.urlopen(sqli).read() find = re.findall('type="file"', responsetwo) if find: print(" Found ---> " + sqli) main()
null
null
null
null
[ 0 ]
237
eb853e430b996a81dc2ef20c320979a3e04d956a
<mask token> class Beautyleg7Spider(scrapy.Spider): <mask token> <mask token> <mask token> <mask token> <mask token> def start_requests(self): mysql_host = self.crawler.settings.get('MYSQL_HOST') mysql_port = self.crawler.settings.get('MYSQL_PORT') mysql_user = self.crawler.settings.get('MYSQL_USER') mysql_password = self.crawler.settings.get('MYSQL_PASSWORD') mysql_db_name = self.crawler.settings.get('MYSQL_DB_NAME') engine = create_engine('mysql+mysqlconnector://{}:{}@{}:{}/{}'. format(mysql_user, mysql_password, mysql_host, mysql_port, mysql_db_name), pool_recycle=180, echo=False) session_maker = sessionmaker(bind=engine) self.db_session = session_maker() for url in self.start_urls: yield scrapy.Request(url) def parse(self, response): if self.db_session is None: self.logger.error('db_session is None') return None repeated_count = 0 if response is None: self.logger.warn('响应为空,不做处理!') else: album_nodes = response.css('.pic .item') category = response.css('.sitepath a')[1].css('a::text' ).extract_first().strip() is_persisted_last_item = self.redis_cmd.get(self. album_last_item_redis_unique_key) is_last_item_finished = False if is_persisted_last_item is not None and int( is_persisted_last_item): is_last_item_finished = True self.logger.info('已持久化最后一页的最后主题:%s' % self. album_last_item_redis_unique_key) album_last_page_url = response.meta.get('album_last_page_url') if album_last_page_url is not None: album_last_page_url_last_item_redis_suffix = album_nodes[-1 ].css('.p a::attr(href)').extract_first() self.album_last_item_redis_unique_key = (self. ALBUM_URL_REDIS_KEY_PREFIX + self.REDIS_LIMITER + self. sub_url_scheme(album_last_page_url, '') + self. REDIS_LIMITER + self.sub_url_scheme( album_last_page_url_last_item_redis_suffix, '')) self.redis_cmd.setnx(self.album_last_item_redis_unique_key, 0) for album_node in album_nodes: album_url = album_node.css('.p a::attr(href)').extract_first( ).strip() is_persisted = self.redis_cmd.get(album_url) if is_persisted is not None and int(is_persisted): self.logger.info('Redis中该url album_url:%s已持久化' % album_url) continue album_url_object_id = self.get_md5(album_url) self.redis_cmd.setnx(album_url, 0) count = 0 try: count = self.db_session.query(func.count()).filter( Album.album_url_object_id == album_url_object_id ).first() if count: count = count[0] except Exception as e: self.logger.error('查询数据库异常,原因:{}'.format(e)) finally: self.db_session.rollback() if count: self.logger.info('数据库已有该数据album_url_object_id:%s' % album_url_object_id) repeated_count += 1 self.redis_cmd.set(album_url, 1, xx=True) continue else: album_item = self.parse_album_item(album_node, album_url, album_url_object_id, category) yield response.follow(url=album_url, meta={'AlbumItem': album_item}, callback=self.parse_detail) selector_list = response.css('.page li a::attr(href)') if not is_last_item_finished: if selector_list: last_page_url = None current_url_page = response.xpath( '//li[@class="thisclass"]//text()').extract_first() if current_url_page and int(current_url_page) == 1: last_page_url = selector_list[-1].extract() next_url = selector_list[-2].extract() if next_url == last_page_url: album_last_page_url = response.urljoin(last_page_url) self.logger.info('Last page:%s' % album_last_page_url) else: self.logger.info('Next page:%s' % response.urljoin( next_url)) yield response.follow(url=next_url, meta={ 'album_last_page_url': album_last_page_url}, callback=self.parse) else: self.logger.info('selector_list is None') self.logger.info('重复次数:%s' % repeated_count) else: self.logger.info('Stop crawler. None Next page!') def parse_album_item(self, album_node, album_url, album_url_object_id, category): album_title = album_node.css('.p a img::attr(alt)').extract_first( ).strip() cover_url = album_node.css('.p a img::attr(src)').extract_first( ).strip() regex = '\\d+\\.\\d+.\\d+\\s+No\\.\\d+|\\d+\\-\\d+-\\d+\\s+No\\.\\d+' number_group = re.findall(regex, album_title) if len(number_group) > 0: number = number_group[0] else: number = 'No.unknown' create_date = datetime.now().strftime('%Y-%m-%d %H:%M:%S') album_item = AlbumItem() album_item['category'] = category album_item['album_url'] = album_url album_item['album_url_object_id'] = album_url_object_id album_item['album_title'] = album_title album_item['cover_url'] = cover_url album_item['number'] = number album_item['create_date'] = create_date return album_item def parse_detail(self, response): self.album_item = response.meta.get('AlbumItem') self.album_image_relation_item['album_item'] = self.album_item self.parse_album_image_item(response) relative_next_page_list = response.css('.page li a::attr(href)' ).extract() next_page_threads = [self.gevent_pool.spawn(self. get_album_image_item_list, response.urljoin(relative_next_page) ) for relative_next_page in relative_next_page_list[2:-1]] gevent.joinall(next_page_threads) self.album_image_relation_item['album_image_item_list' ] = self.album_image_item_list self.album_image_item_list = [] yield self.album_image_relation_item def get_album_image_item_list(self, abs_next_page): """ 使用下页绝对路径同步请求 :param abs_next_page: :return: """ resp = requests.get(abs_next_page) if resp.status_code == 200: encoding = requests.utils.get_encodings_from_content(resp.text) resp.encoding = encoding[0] self.parse_album_image_item(etree.HTML(resp.text)) else: self.logger.warn('下载此页{}失败,返回的状态码为{}'.format(abs_next_page, resp.status_code)) def parse_album_image_item(self, response): """ 解析item并返回给pipelines :param response: 如果response类型是继承自scrapy的TextResponse类则使用scrapy的Selector来解析,否则使用lxml来解析 :return: """ if isinstance(response, HtmlResponse): item_title = response.xpath('//div[@class="content"]/h1/text()' ).extract_first().strip() publish_date = response.xpath('//div[@class="tit"]/span/text()' ).extract_first().split(':')[1] image_link_list = response.css('.contents a img::attr(src)' ).extract() else: item_title = response.xpath('//div[@class="content"]/h1/text()')[0 ].strip() publish_date = response.xpath('//div[@class="tit"]/span/text()')[0 ].split(':')[1] image_link_list = response.xpath('//div[@class="contents"]/a/img') image_link_list = [image_link.attrib['src'] for image_link in image_link_list] regex = '\\s?\\w+[^\\w]?' regex_group = re.findall(regex, item_title) stage_name = 'unknown' if len(regex_group) > 0: str = regex_group[-1] if '[' in str: stage_name = str.split('[')[0].strip() elif '(' in str: stage_name = str.split('(')[0].strip() elif re.match('[^\\d*]', str): stage_name = re.match('[^\\d*]', str).group() for image_url in image_link_list: album_image_item = AlbumImageItem() album_image_item['item_url'] = image_url album_image_item['item_url_object_id'] = self.get_md5(image_url) item_url_list_json = '{}' album_image_item['item_url_list_json'] = item_url_list_json album_image_item['item_title'] = item_title album_image_item['stage_name'] = stage_name album_image_item['publish_date'] = publish_date self.album_image_item_list.append(album_image_item) return self.album_image_item_list <mask token> <mask token>
<mask token> class Beautyleg7Spider(scrapy.Spider): <mask token> <mask token> <mask token> <mask token> <mask token> def start_requests(self): mysql_host = self.crawler.settings.get('MYSQL_HOST') mysql_port = self.crawler.settings.get('MYSQL_PORT') mysql_user = self.crawler.settings.get('MYSQL_USER') mysql_password = self.crawler.settings.get('MYSQL_PASSWORD') mysql_db_name = self.crawler.settings.get('MYSQL_DB_NAME') engine = create_engine('mysql+mysqlconnector://{}:{}@{}:{}/{}'. format(mysql_user, mysql_password, mysql_host, mysql_port, mysql_db_name), pool_recycle=180, echo=False) session_maker = sessionmaker(bind=engine) self.db_session = session_maker() for url in self.start_urls: yield scrapy.Request(url) def parse(self, response): if self.db_session is None: self.logger.error('db_session is None') return None repeated_count = 0 if response is None: self.logger.warn('响应为空,不做处理!') else: album_nodes = response.css('.pic .item') category = response.css('.sitepath a')[1].css('a::text' ).extract_first().strip() is_persisted_last_item = self.redis_cmd.get(self. album_last_item_redis_unique_key) is_last_item_finished = False if is_persisted_last_item is not None and int( is_persisted_last_item): is_last_item_finished = True self.logger.info('已持久化最后一页的最后主题:%s' % self. album_last_item_redis_unique_key) album_last_page_url = response.meta.get('album_last_page_url') if album_last_page_url is not None: album_last_page_url_last_item_redis_suffix = album_nodes[-1 ].css('.p a::attr(href)').extract_first() self.album_last_item_redis_unique_key = (self. ALBUM_URL_REDIS_KEY_PREFIX + self.REDIS_LIMITER + self. sub_url_scheme(album_last_page_url, '') + self. REDIS_LIMITER + self.sub_url_scheme( album_last_page_url_last_item_redis_suffix, '')) self.redis_cmd.setnx(self.album_last_item_redis_unique_key, 0) for album_node in album_nodes: album_url = album_node.css('.p a::attr(href)').extract_first( ).strip() is_persisted = self.redis_cmd.get(album_url) if is_persisted is not None and int(is_persisted): self.logger.info('Redis中该url album_url:%s已持久化' % album_url) continue album_url_object_id = self.get_md5(album_url) self.redis_cmd.setnx(album_url, 0) count = 0 try: count = self.db_session.query(func.count()).filter( Album.album_url_object_id == album_url_object_id ).first() if count: count = count[0] except Exception as e: self.logger.error('查询数据库异常,原因:{}'.format(e)) finally: self.db_session.rollback() if count: self.logger.info('数据库已有该数据album_url_object_id:%s' % album_url_object_id) repeated_count += 1 self.redis_cmd.set(album_url, 1, xx=True) continue else: album_item = self.parse_album_item(album_node, album_url, album_url_object_id, category) yield response.follow(url=album_url, meta={'AlbumItem': album_item}, callback=self.parse_detail) selector_list = response.css('.page li a::attr(href)') if not is_last_item_finished: if selector_list: last_page_url = None current_url_page = response.xpath( '//li[@class="thisclass"]//text()').extract_first() if current_url_page and int(current_url_page) == 1: last_page_url = selector_list[-1].extract() next_url = selector_list[-2].extract() if next_url == last_page_url: album_last_page_url = response.urljoin(last_page_url) self.logger.info('Last page:%s' % album_last_page_url) else: self.logger.info('Next page:%s' % response.urljoin( next_url)) yield response.follow(url=next_url, meta={ 'album_last_page_url': album_last_page_url}, callback=self.parse) else: self.logger.info('selector_list is None') self.logger.info('重复次数:%s' % repeated_count) else: self.logger.info('Stop crawler. None Next page!') def parse_album_item(self, album_node, album_url, album_url_object_id, category): album_title = album_node.css('.p a img::attr(alt)').extract_first( ).strip() cover_url = album_node.css('.p a img::attr(src)').extract_first( ).strip() regex = '\\d+\\.\\d+.\\d+\\s+No\\.\\d+|\\d+\\-\\d+-\\d+\\s+No\\.\\d+' number_group = re.findall(regex, album_title) if len(number_group) > 0: number = number_group[0] else: number = 'No.unknown' create_date = datetime.now().strftime('%Y-%m-%d %H:%M:%S') album_item = AlbumItem() album_item['category'] = category album_item['album_url'] = album_url album_item['album_url_object_id'] = album_url_object_id album_item['album_title'] = album_title album_item['cover_url'] = cover_url album_item['number'] = number album_item['create_date'] = create_date return album_item def parse_detail(self, response): self.album_item = response.meta.get('AlbumItem') self.album_image_relation_item['album_item'] = self.album_item self.parse_album_image_item(response) relative_next_page_list = response.css('.page li a::attr(href)' ).extract() next_page_threads = [self.gevent_pool.spawn(self. get_album_image_item_list, response.urljoin(relative_next_page) ) for relative_next_page in relative_next_page_list[2:-1]] gevent.joinall(next_page_threads) self.album_image_relation_item['album_image_item_list' ] = self.album_image_item_list self.album_image_item_list = [] yield self.album_image_relation_item def get_album_image_item_list(self, abs_next_page): """ 使用下页绝对路径同步请求 :param abs_next_page: :return: """ resp = requests.get(abs_next_page) if resp.status_code == 200: encoding = requests.utils.get_encodings_from_content(resp.text) resp.encoding = encoding[0] self.parse_album_image_item(etree.HTML(resp.text)) else: self.logger.warn('下载此页{}失败,返回的状态码为{}'.format(abs_next_page, resp.status_code)) def parse_album_image_item(self, response): """ 解析item并返回给pipelines :param response: 如果response类型是继承自scrapy的TextResponse类则使用scrapy的Selector来解析,否则使用lxml来解析 :return: """ if isinstance(response, HtmlResponse): item_title = response.xpath('//div[@class="content"]/h1/text()' ).extract_first().strip() publish_date = response.xpath('//div[@class="tit"]/span/text()' ).extract_first().split(':')[1] image_link_list = response.css('.contents a img::attr(src)' ).extract() else: item_title = response.xpath('//div[@class="content"]/h1/text()')[0 ].strip() publish_date = response.xpath('//div[@class="tit"]/span/text()')[0 ].split(':')[1] image_link_list = response.xpath('//div[@class="contents"]/a/img') image_link_list = [image_link.attrib['src'] for image_link in image_link_list] regex = '\\s?\\w+[^\\w]?' regex_group = re.findall(regex, item_title) stage_name = 'unknown' if len(regex_group) > 0: str = regex_group[-1] if '[' in str: stage_name = str.split('[')[0].strip() elif '(' in str: stage_name = str.split('(')[0].strip() elif re.match('[^\\d*]', str): stage_name = re.match('[^\\d*]', str).group() for image_url in image_link_list: album_image_item = AlbumImageItem() album_image_item['item_url'] = image_url album_image_item['item_url_object_id'] = self.get_md5(image_url) item_url_list_json = '{}' album_image_item['item_url_list_json'] = item_url_list_json album_image_item['item_title'] = item_title album_image_item['stage_name'] = stage_name album_image_item['publish_date'] = publish_date self.album_image_item_list.append(album_image_item) return self.album_image_item_list <mask token> @staticmethod def sub_url_scheme(website, replace_str): scheme_regex = '^(http://|https://)' return re.sub(scheme_regex, replace_str, website)
<mask token> class Beautyleg7Spider(scrapy.Spider): name = 'Beautyleg7Spider' category_list = ['siwameitui', 'xingganmeinv', 'weimeixiezhen', 'ribenmeinv'] start_urls = [('http://www.beautyleg7.com/' + category) for category in category_list] const.REPEATED_THRESHOLD = 10 def __init__(self, name=None, **kwargs): super().__init__(name=None, **kwargs) self.db_session = None self.gevent_pool = Pool(32) self.redis_cmd = get_redis_conn_from_pool() self.ALBUM_URL_REDIS_KEY_PREFIX = 'album_url' self.REDIS_LIMITER = ':' self.album_last_item_redis_unique_key = '' self.album_item = None self.album_image_item_list = [] self.album_image_relation_item = AlbumImageRelationItem() def start_requests(self): mysql_host = self.crawler.settings.get('MYSQL_HOST') mysql_port = self.crawler.settings.get('MYSQL_PORT') mysql_user = self.crawler.settings.get('MYSQL_USER') mysql_password = self.crawler.settings.get('MYSQL_PASSWORD') mysql_db_name = self.crawler.settings.get('MYSQL_DB_NAME') engine = create_engine('mysql+mysqlconnector://{}:{}@{}:{}/{}'. format(mysql_user, mysql_password, mysql_host, mysql_port, mysql_db_name), pool_recycle=180, echo=False) session_maker = sessionmaker(bind=engine) self.db_session = session_maker() for url in self.start_urls: yield scrapy.Request(url) def parse(self, response): if self.db_session is None: self.logger.error('db_session is None') return None repeated_count = 0 if response is None: self.logger.warn('响应为空,不做处理!') else: album_nodes = response.css('.pic .item') category = response.css('.sitepath a')[1].css('a::text' ).extract_first().strip() is_persisted_last_item = self.redis_cmd.get(self. album_last_item_redis_unique_key) is_last_item_finished = False if is_persisted_last_item is not None and int( is_persisted_last_item): is_last_item_finished = True self.logger.info('已持久化最后一页的最后主题:%s' % self. album_last_item_redis_unique_key) album_last_page_url = response.meta.get('album_last_page_url') if album_last_page_url is not None: album_last_page_url_last_item_redis_suffix = album_nodes[-1 ].css('.p a::attr(href)').extract_first() self.album_last_item_redis_unique_key = (self. ALBUM_URL_REDIS_KEY_PREFIX + self.REDIS_LIMITER + self. sub_url_scheme(album_last_page_url, '') + self. REDIS_LIMITER + self.sub_url_scheme( album_last_page_url_last_item_redis_suffix, '')) self.redis_cmd.setnx(self.album_last_item_redis_unique_key, 0) for album_node in album_nodes: album_url = album_node.css('.p a::attr(href)').extract_first( ).strip() is_persisted = self.redis_cmd.get(album_url) if is_persisted is not None and int(is_persisted): self.logger.info('Redis中该url album_url:%s已持久化' % album_url) continue album_url_object_id = self.get_md5(album_url) self.redis_cmd.setnx(album_url, 0) count = 0 try: count = self.db_session.query(func.count()).filter( Album.album_url_object_id == album_url_object_id ).first() if count: count = count[0] except Exception as e: self.logger.error('查询数据库异常,原因:{}'.format(e)) finally: self.db_session.rollback() if count: self.logger.info('数据库已有该数据album_url_object_id:%s' % album_url_object_id) repeated_count += 1 self.redis_cmd.set(album_url, 1, xx=True) continue else: album_item = self.parse_album_item(album_node, album_url, album_url_object_id, category) yield response.follow(url=album_url, meta={'AlbumItem': album_item}, callback=self.parse_detail) selector_list = response.css('.page li a::attr(href)') if not is_last_item_finished: if selector_list: last_page_url = None current_url_page = response.xpath( '//li[@class="thisclass"]//text()').extract_first() if current_url_page and int(current_url_page) == 1: last_page_url = selector_list[-1].extract() next_url = selector_list[-2].extract() if next_url == last_page_url: album_last_page_url = response.urljoin(last_page_url) self.logger.info('Last page:%s' % album_last_page_url) else: self.logger.info('Next page:%s' % response.urljoin( next_url)) yield response.follow(url=next_url, meta={ 'album_last_page_url': album_last_page_url}, callback=self.parse) else: self.logger.info('selector_list is None') self.logger.info('重复次数:%s' % repeated_count) else: self.logger.info('Stop crawler. None Next page!') def parse_album_item(self, album_node, album_url, album_url_object_id, category): album_title = album_node.css('.p a img::attr(alt)').extract_first( ).strip() cover_url = album_node.css('.p a img::attr(src)').extract_first( ).strip() regex = '\\d+\\.\\d+.\\d+\\s+No\\.\\d+|\\d+\\-\\d+-\\d+\\s+No\\.\\d+' number_group = re.findall(regex, album_title) if len(number_group) > 0: number = number_group[0] else: number = 'No.unknown' create_date = datetime.now().strftime('%Y-%m-%d %H:%M:%S') album_item = AlbumItem() album_item['category'] = category album_item['album_url'] = album_url album_item['album_url_object_id'] = album_url_object_id album_item['album_title'] = album_title album_item['cover_url'] = cover_url album_item['number'] = number album_item['create_date'] = create_date return album_item def parse_detail(self, response): self.album_item = response.meta.get('AlbumItem') self.album_image_relation_item['album_item'] = self.album_item self.parse_album_image_item(response) relative_next_page_list = response.css('.page li a::attr(href)' ).extract() next_page_threads = [self.gevent_pool.spawn(self. get_album_image_item_list, response.urljoin(relative_next_page) ) for relative_next_page in relative_next_page_list[2:-1]] gevent.joinall(next_page_threads) self.album_image_relation_item['album_image_item_list' ] = self.album_image_item_list self.album_image_item_list = [] yield self.album_image_relation_item def get_album_image_item_list(self, abs_next_page): """ 使用下页绝对路径同步请求 :param abs_next_page: :return: """ resp = requests.get(abs_next_page) if resp.status_code == 200: encoding = requests.utils.get_encodings_from_content(resp.text) resp.encoding = encoding[0] self.parse_album_image_item(etree.HTML(resp.text)) else: self.logger.warn('下载此页{}失败,返回的状态码为{}'.format(abs_next_page, resp.status_code)) def parse_album_image_item(self, response): """ 解析item并返回给pipelines :param response: 如果response类型是继承自scrapy的TextResponse类则使用scrapy的Selector来解析,否则使用lxml来解析 :return: """ if isinstance(response, HtmlResponse): item_title = response.xpath('//div[@class="content"]/h1/text()' ).extract_first().strip() publish_date = response.xpath('//div[@class="tit"]/span/text()' ).extract_first().split(':')[1] image_link_list = response.css('.contents a img::attr(src)' ).extract() else: item_title = response.xpath('//div[@class="content"]/h1/text()')[0 ].strip() publish_date = response.xpath('//div[@class="tit"]/span/text()')[0 ].split(':')[1] image_link_list = response.xpath('//div[@class="contents"]/a/img') image_link_list = [image_link.attrib['src'] for image_link in image_link_list] regex = '\\s?\\w+[^\\w]?' regex_group = re.findall(regex, item_title) stage_name = 'unknown' if len(regex_group) > 0: str = regex_group[-1] if '[' in str: stage_name = str.split('[')[0].strip() elif '(' in str: stage_name = str.split('(')[0].strip() elif re.match('[^\\d*]', str): stage_name = re.match('[^\\d*]', str).group() for image_url in image_link_list: album_image_item = AlbumImageItem() album_image_item['item_url'] = image_url album_image_item['item_url_object_id'] = self.get_md5(image_url) item_url_list_json = '{}' album_image_item['item_url_list_json'] = item_url_list_json album_image_item['item_title'] = item_title album_image_item['stage_name'] = stage_name album_image_item['publish_date'] = publish_date self.album_image_item_list.append(album_image_item) return self.album_image_item_list @staticmethod def get_md5(param): if isinstance(param, str): param = param.encode() m = hashlib.md5() m.update(param) return m.hexdigest() @staticmethod def sub_url_scheme(website, replace_str): scheme_regex = '^(http://|https://)' return re.sub(scheme_regex, replace_str, website)
import hashlib import re from datetime import datetime import gevent import requests import scrapy from gevent.pool import Pool from lxml import etree from scrapy.http import HtmlResponse from sqlalchemy import create_engine, func from sqlalchemy.orm import sessionmaker from ..items import Album, AlbumImageRelationItem, AlbumItem, AlbumImageItem from ..utils.const import const from ..utils.redis_util import get_redis_conn_from_pool class Beautyleg7Spider(scrapy.Spider): name = 'Beautyleg7Spider' category_list = ['siwameitui', 'xingganmeinv', 'weimeixiezhen', 'ribenmeinv'] start_urls = [('http://www.beautyleg7.com/' + category) for category in category_list] const.REPEATED_THRESHOLD = 10 def __init__(self, name=None, **kwargs): super().__init__(name=None, **kwargs) self.db_session = None self.gevent_pool = Pool(32) self.redis_cmd = get_redis_conn_from_pool() self.ALBUM_URL_REDIS_KEY_PREFIX = 'album_url' self.REDIS_LIMITER = ':' self.album_last_item_redis_unique_key = '' self.album_item = None self.album_image_item_list = [] self.album_image_relation_item = AlbumImageRelationItem() def start_requests(self): mysql_host = self.crawler.settings.get('MYSQL_HOST') mysql_port = self.crawler.settings.get('MYSQL_PORT') mysql_user = self.crawler.settings.get('MYSQL_USER') mysql_password = self.crawler.settings.get('MYSQL_PASSWORD') mysql_db_name = self.crawler.settings.get('MYSQL_DB_NAME') engine = create_engine('mysql+mysqlconnector://{}:{}@{}:{}/{}'. format(mysql_user, mysql_password, mysql_host, mysql_port, mysql_db_name), pool_recycle=180, echo=False) session_maker = sessionmaker(bind=engine) self.db_session = session_maker() for url in self.start_urls: yield scrapy.Request(url) def parse(self, response): if self.db_session is None: self.logger.error('db_session is None') return None repeated_count = 0 if response is None: self.logger.warn('响应为空,不做处理!') else: album_nodes = response.css('.pic .item') category = response.css('.sitepath a')[1].css('a::text' ).extract_first().strip() is_persisted_last_item = self.redis_cmd.get(self. album_last_item_redis_unique_key) is_last_item_finished = False if is_persisted_last_item is not None and int( is_persisted_last_item): is_last_item_finished = True self.logger.info('已持久化最后一页的最后主题:%s' % self. album_last_item_redis_unique_key) album_last_page_url = response.meta.get('album_last_page_url') if album_last_page_url is not None: album_last_page_url_last_item_redis_suffix = album_nodes[-1 ].css('.p a::attr(href)').extract_first() self.album_last_item_redis_unique_key = (self. ALBUM_URL_REDIS_KEY_PREFIX + self.REDIS_LIMITER + self. sub_url_scheme(album_last_page_url, '') + self. REDIS_LIMITER + self.sub_url_scheme( album_last_page_url_last_item_redis_suffix, '')) self.redis_cmd.setnx(self.album_last_item_redis_unique_key, 0) for album_node in album_nodes: album_url = album_node.css('.p a::attr(href)').extract_first( ).strip() is_persisted = self.redis_cmd.get(album_url) if is_persisted is not None and int(is_persisted): self.logger.info('Redis中该url album_url:%s已持久化' % album_url) continue album_url_object_id = self.get_md5(album_url) self.redis_cmd.setnx(album_url, 0) count = 0 try: count = self.db_session.query(func.count()).filter( Album.album_url_object_id == album_url_object_id ).first() if count: count = count[0] except Exception as e: self.logger.error('查询数据库异常,原因:{}'.format(e)) finally: self.db_session.rollback() if count: self.logger.info('数据库已有该数据album_url_object_id:%s' % album_url_object_id) repeated_count += 1 self.redis_cmd.set(album_url, 1, xx=True) continue else: album_item = self.parse_album_item(album_node, album_url, album_url_object_id, category) yield response.follow(url=album_url, meta={'AlbumItem': album_item}, callback=self.parse_detail) selector_list = response.css('.page li a::attr(href)') if not is_last_item_finished: if selector_list: last_page_url = None current_url_page = response.xpath( '//li[@class="thisclass"]//text()').extract_first() if current_url_page and int(current_url_page) == 1: last_page_url = selector_list[-1].extract() next_url = selector_list[-2].extract() if next_url == last_page_url: album_last_page_url = response.urljoin(last_page_url) self.logger.info('Last page:%s' % album_last_page_url) else: self.logger.info('Next page:%s' % response.urljoin( next_url)) yield response.follow(url=next_url, meta={ 'album_last_page_url': album_last_page_url}, callback=self.parse) else: self.logger.info('selector_list is None') self.logger.info('重复次数:%s' % repeated_count) else: self.logger.info('Stop crawler. None Next page!') def parse_album_item(self, album_node, album_url, album_url_object_id, category): album_title = album_node.css('.p a img::attr(alt)').extract_first( ).strip() cover_url = album_node.css('.p a img::attr(src)').extract_first( ).strip() regex = '\\d+\\.\\d+.\\d+\\s+No\\.\\d+|\\d+\\-\\d+-\\d+\\s+No\\.\\d+' number_group = re.findall(regex, album_title) if len(number_group) > 0: number = number_group[0] else: number = 'No.unknown' create_date = datetime.now().strftime('%Y-%m-%d %H:%M:%S') album_item = AlbumItem() album_item['category'] = category album_item['album_url'] = album_url album_item['album_url_object_id'] = album_url_object_id album_item['album_title'] = album_title album_item['cover_url'] = cover_url album_item['number'] = number album_item['create_date'] = create_date return album_item def parse_detail(self, response): self.album_item = response.meta.get('AlbumItem') self.album_image_relation_item['album_item'] = self.album_item self.parse_album_image_item(response) relative_next_page_list = response.css('.page li a::attr(href)' ).extract() next_page_threads = [self.gevent_pool.spawn(self. get_album_image_item_list, response.urljoin(relative_next_page) ) for relative_next_page in relative_next_page_list[2:-1]] gevent.joinall(next_page_threads) self.album_image_relation_item['album_image_item_list' ] = self.album_image_item_list self.album_image_item_list = [] yield self.album_image_relation_item def get_album_image_item_list(self, abs_next_page): """ 使用下页绝对路径同步请求 :param abs_next_page: :return: """ resp = requests.get(abs_next_page) if resp.status_code == 200: encoding = requests.utils.get_encodings_from_content(resp.text) resp.encoding = encoding[0] self.parse_album_image_item(etree.HTML(resp.text)) else: self.logger.warn('下载此页{}失败,返回的状态码为{}'.format(abs_next_page, resp.status_code)) def parse_album_image_item(self, response): """ 解析item并返回给pipelines :param response: 如果response类型是继承自scrapy的TextResponse类则使用scrapy的Selector来解析,否则使用lxml来解析 :return: """ if isinstance(response, HtmlResponse): item_title = response.xpath('//div[@class="content"]/h1/text()' ).extract_first().strip() publish_date = response.xpath('//div[@class="tit"]/span/text()' ).extract_first().split(':')[1] image_link_list = response.css('.contents a img::attr(src)' ).extract() else: item_title = response.xpath('//div[@class="content"]/h1/text()')[0 ].strip() publish_date = response.xpath('//div[@class="tit"]/span/text()')[0 ].split(':')[1] image_link_list = response.xpath('//div[@class="contents"]/a/img') image_link_list = [image_link.attrib['src'] for image_link in image_link_list] regex = '\\s?\\w+[^\\w]?' regex_group = re.findall(regex, item_title) stage_name = 'unknown' if len(regex_group) > 0: str = regex_group[-1] if '[' in str: stage_name = str.split('[')[0].strip() elif '(' in str: stage_name = str.split('(')[0].strip() elif re.match('[^\\d*]', str): stage_name = re.match('[^\\d*]', str).group() for image_url in image_link_list: album_image_item = AlbumImageItem() album_image_item['item_url'] = image_url album_image_item['item_url_object_id'] = self.get_md5(image_url) item_url_list_json = '{}' album_image_item['item_url_list_json'] = item_url_list_json album_image_item['item_title'] = item_title album_image_item['stage_name'] = stage_name album_image_item['publish_date'] = publish_date self.album_image_item_list.append(album_image_item) return self.album_image_item_list @staticmethod def get_md5(param): if isinstance(param, str): param = param.encode() m = hashlib.md5() m.update(param) return m.hexdigest() @staticmethod def sub_url_scheme(website, replace_str): scheme_regex = '^(http://|https://)' return re.sub(scheme_regex, replace_str, website)
#!/usr/bin/env python3 # -*- coding: UTF-8 -*- import hashlib import re from datetime import datetime import gevent import requests import scrapy from gevent.pool import Pool from lxml import etree from scrapy.http import HtmlResponse from sqlalchemy import create_engine, func from sqlalchemy.orm import sessionmaker from ..items import Album, AlbumImageRelationItem, AlbumItem, AlbumImageItem from ..utils.const import const from ..utils.redis_util import get_redis_conn_from_pool class Beautyleg7Spider(scrapy.Spider): name = 'Beautyleg7Spider' category_list = ['siwameitui', 'xingganmeinv', 'weimeixiezhen', 'ribenmeinv'] start_urls = [('http://www.beautyleg7.com/' + category) for category in category_list] const.REPEATED_THRESHOLD = 10 def __init__(self, name=None, **kwargs): super().__init__(name=None, **kwargs) self.db_session = None self.gevent_pool = Pool(32) self.redis_cmd = get_redis_conn_from_pool() self.ALBUM_URL_REDIS_KEY_PREFIX = "album_url" self.REDIS_LIMITER = ":" self.album_last_item_redis_unique_key = "" self.album_item = None self.album_image_item_list = [] self.album_image_relation_item = AlbumImageRelationItem() def start_requests(self): mysql_host = self.crawler.settings.get("MYSQL_HOST") mysql_port = self.crawler.settings.get("MYSQL_PORT") mysql_user = self.crawler.settings.get("MYSQL_USER") mysql_password = self.crawler.settings.get("MYSQL_PASSWORD") mysql_db_name = self.crawler.settings.get("MYSQL_DB_NAME") engine = create_engine('mysql+mysqlconnector://{}:{}@{}:{}/{}'.format(mysql_user, mysql_password, mysql_host, mysql_port, mysql_db_name), pool_recycle=180, echo=False) session_maker = sessionmaker(bind=engine) self.db_session = session_maker() for url in self.start_urls: yield scrapy.Request(url) def parse(self, response): if self.db_session is None: self.logger.error("db_session is None") return None repeated_count = 0 if response is None: self.logger.warn("响应为空,不做处理!") else: album_nodes = response.css('.pic .item') category = response.css('.sitepath a')[1].css('a::text').extract_first().strip() # 判断最后一页的最后主题是否被持久化 is_persisted_last_item = self.redis_cmd.get(self.album_last_item_redis_unique_key) is_last_item_finished = False if is_persisted_last_item is not None and int(is_persisted_last_item): is_last_item_finished = True self.logger.info("已持久化最后一页的最后主题:%s" % self.album_last_item_redis_unique_key) # 如果是最后一页则设置Redis存储key:“最后一页页码:最后一条主题url”,value:is_persisted(取值为0或1,默认为0) album_last_page_url = response.meta.get("album_last_page_url") if album_last_page_url is not None: album_last_page_url_last_item_redis_suffix = album_nodes[-1].css('.p a::attr(href)').extract_first() self.album_last_item_redis_unique_key = self.ALBUM_URL_REDIS_KEY_PREFIX + self.REDIS_LIMITER + \ self.sub_url_scheme(album_last_page_url, "") + self.REDIS_LIMITER + \ self.sub_url_scheme(album_last_page_url_last_item_redis_suffix, "") self.redis_cmd.setnx(self.album_last_item_redis_unique_key, 0) for album_node in album_nodes: album_url = album_node.css('.p a::attr(href)').extract_first().strip() # 判断当前主题url是否已持久化 is_persisted = self.redis_cmd.get(album_url) if is_persisted is not None and int(is_persisted): self.logger.info("Redis中该url album_url:%s已持久化" % album_url) continue album_url_object_id = self.get_md5(album_url) # 只有name不存在时,当前set操作才执行 self.redis_cmd.setnx(album_url, 0) count = 0 try: count = self.db_session.query(func.count()).filter( Album.album_url_object_id == album_url_object_id).first() if count: count = count[0] except Exception as e: self.logger.error("查询数据库异常,原因:{}".format(e)) finally: self.db_session.rollback() if count: self.logger.info("数据库已有该数据album_url_object_id:%s" % album_url_object_id) repeated_count += 1 # 只有name存在时,当前set操作才执行 self.redis_cmd.set(album_url, 1, xx=True) continue else: album_item = self.parse_album_item(album_node, album_url, album_url_object_id, category) yield response.follow(url=album_url, meta={"AlbumItem": album_item}, callback=self.parse_detail) # 提取下一页并交给scrapy下载 selector_list = response.css('.page li a::attr(href)') # 如果最后一页的最后一个主题url未被持久化则继续爬取 if not is_last_item_finished: if selector_list: last_page_url = None current_url_page = response.xpath('//li[@class="thisclass"]//text()').extract_first() # 如果当前页是第一页则获取最后一页url if current_url_page and int(current_url_page) == 1: last_page_url = selector_list[-1].extract() next_url = selector_list[-2].extract() if next_url == last_page_url: album_last_page_url = response.urljoin(last_page_url) self.logger.info("Last page:%s" % album_last_page_url) else: self.logger.info("Next page:%s" % response.urljoin(next_url)) yield response.follow(url=next_url, meta={"album_last_page_url": album_last_page_url}, callback=self.parse) else: self.logger.info("selector_list is None") self.logger.info("重复次数:%s" % repeated_count) else: self.logger.info("Stop crawler. None Next page!") def parse_album_item(self, album_node, album_url, album_url_object_id, category): album_title = album_node.css('.p a img::attr(alt)').extract_first().strip() cover_url = album_node.css('.p a img::attr(src)').extract_first().strip() regex = "\d+\.\d+.\d+\s+No\.\d+|\d+\-\d+-\d+\s+No\.\d+" number_group = re.findall(regex, album_title) if len(number_group) > 0: number = number_group[0] else: number = "No.unknown" create_date = datetime.now().strftime('%Y-%m-%d %H:%M:%S') album_item = AlbumItem() album_item['category'] = category album_item['album_url'] = album_url album_item['album_url_object_id'] = album_url_object_id album_item['album_title'] = album_title album_item['cover_url'] = cover_url album_item['number'] = number album_item['create_date'] = create_date return album_item def parse_detail(self, response): self.album_item = response.meta.get("AlbumItem") self.album_image_relation_item['album_item'] = self.album_item self.parse_album_image_item(response) # 详情页分页链接,循环生成所有子页面的请求 relative_next_page_list = response.css('.page li a::attr(href)').extract() # 使用gevent协程池提升网络IO处理效率 next_page_threads = [ self.gevent_pool.spawn(self.get_album_image_item_list, response.urljoin(relative_next_page)) for relative_next_page in relative_next_page_list[2:-1] ] gevent.joinall(next_page_threads) self.album_image_relation_item['album_image_item_list'] = self.album_image_item_list # 重新初始化 self.album_image_item_list = [] yield self.album_image_relation_item def get_album_image_item_list(self, abs_next_page): """ 使用下页绝对路径同步请求 :param abs_next_page: :return: """ resp = requests.get(abs_next_page) if resp.status_code == 200: encoding = requests.utils.get_encodings_from_content(resp.text) resp.encoding = encoding[0] self.parse_album_image_item(etree.HTML(resp.text)) else: self.logger.warn("下载此页{}失败,返回的状态码为{}".format(abs_next_page, resp.status_code)) def parse_album_image_item(self, response): """ 解析item并返回给pipelines :param response: 如果response类型是继承自scrapy的TextResponse类则使用scrapy的Selector来解析,否则使用lxml来解析 :return: """ if isinstance(response, HtmlResponse): item_title = response.xpath('//div[@class="content"]/h1/text()').extract_first().strip() publish_date = response.xpath('//div[@class="tit"]/span/text()').extract_first().split(":")[1] image_link_list = response.css('.contents a img::attr(src)').extract() else: item_title = response.xpath('//div[@class="content"]/h1/text()')[0].strip() publish_date = response.xpath('//div[@class="tit"]/span/text()')[0].split(":")[1] image_link_list = response.xpath('//div[@class="contents"]/a/img') image_link_list = [image_link.attrib['src'] for image_link in image_link_list] regex = "\s?\w+[^\w]?" regex_group = re.findall(regex, item_title) stage_name = "unknown" if len(regex_group) > 0: str = regex_group[-1] if "[" in str: stage_name = str.split("[")[0].strip() elif "(" in str: stage_name = str.split("(")[0].strip() elif re.match('[^\d*]', str): stage_name = re.match('[^\d*]', str).group() # 详情页多个图片链接 for image_url in image_link_list: album_image_item = AlbumImageItem() album_image_item['item_url'] = image_url album_image_item['item_url_object_id'] = self.get_md5(image_url) item_url_list_json = "{}" album_image_item['item_url_list_json'] = item_url_list_json album_image_item['item_title'] = item_title album_image_item['stage_name'] = stage_name album_image_item['publish_date'] = publish_date self.album_image_item_list.append(album_image_item) return self.album_image_item_list @staticmethod def get_md5(param): if isinstance(param, str): param = param.encode() m = hashlib.md5() m.update(param) return m.hexdigest() @staticmethod def sub_url_scheme(website, replace_str): scheme_regex = "^(http://|https://)" return re.sub(scheme_regex, replace_str, website)
[ 7, 8, 11, 12, 13 ]
238
bc4684d255a46427f708d8ce8bda2e12fb8c8ffe
<mask token> def main(): r4m = Route4Me(API_KEY) route = r4m.route response = route.get_routes(limit=1, offset=0) if isinstance(response, dict) and 'errors' in response.keys(): print('. '.join(response['errors'])) else: route_id = response[0]['route_id'] print('Route ID: {}'.format(route_id)) response = route.get_route(route_id=route_id) if isinstance(response, dict) and 'errors' in response.keys(): print('. '.join(response['errors'])) else: print('Original Route') print('Route ID: {}'.format(response['route_id'])) for i, address in enumerate(response['addresses']): print('Address #{}'.format(i + 1)) print('\tAddress: {0}'.format(address['address'])) print('\tRoute Destination ID: {0}'.format(address[ 'route_destination_id'])) route_destination_id = response['addresses'][1][ 'route_destination_id'] route_destination_id2 = response['addresses'][2][ 'route_destination_id'] data = {'route_destination_id': route_destination_id, 'route_id': route_id, 'addresses': [{'route_destination_id': route_destination_id2, 'sequence_no': 6}]} print('After Re-sequence Route') response = route.resequence_route(**data) print('Route ID: {}'.format(response['route_id'])) for i, address in enumerate(response['addresses']): print('Address #{}'.format(i + 1)) print('\tAddress: {0}'.format(address['address'])) print('\tRoute Destination ID: {0}'.format(address[ 'route_destination_id'])) <mask token>
<mask token> def main(): r4m = Route4Me(API_KEY) route = r4m.route response = route.get_routes(limit=1, offset=0) if isinstance(response, dict) and 'errors' in response.keys(): print('. '.join(response['errors'])) else: route_id = response[0]['route_id'] print('Route ID: {}'.format(route_id)) response = route.get_route(route_id=route_id) if isinstance(response, dict) and 'errors' in response.keys(): print('. '.join(response['errors'])) else: print('Original Route') print('Route ID: {}'.format(response['route_id'])) for i, address in enumerate(response['addresses']): print('Address #{}'.format(i + 1)) print('\tAddress: {0}'.format(address['address'])) print('\tRoute Destination ID: {0}'.format(address[ 'route_destination_id'])) route_destination_id = response['addresses'][1][ 'route_destination_id'] route_destination_id2 = response['addresses'][2][ 'route_destination_id'] data = {'route_destination_id': route_destination_id, 'route_id': route_id, 'addresses': [{'route_destination_id': route_destination_id2, 'sequence_no': 6}]} print('After Re-sequence Route') response = route.resequence_route(**data) print('Route ID: {}'.format(response['route_id'])) for i, address in enumerate(response['addresses']): print('Address #{}'.format(i + 1)) print('\tAddress: {0}'.format(address['address'])) print('\tRoute Destination ID: {0}'.format(address[ 'route_destination_id'])) if __name__ == '__main__': main()
<mask token> API_KEY = '11111111111111111111111111111111' def main(): r4m = Route4Me(API_KEY) route = r4m.route response = route.get_routes(limit=1, offset=0) if isinstance(response, dict) and 'errors' in response.keys(): print('. '.join(response['errors'])) else: route_id = response[0]['route_id'] print('Route ID: {}'.format(route_id)) response = route.get_route(route_id=route_id) if isinstance(response, dict) and 'errors' in response.keys(): print('. '.join(response['errors'])) else: print('Original Route') print('Route ID: {}'.format(response['route_id'])) for i, address in enumerate(response['addresses']): print('Address #{}'.format(i + 1)) print('\tAddress: {0}'.format(address['address'])) print('\tRoute Destination ID: {0}'.format(address[ 'route_destination_id'])) route_destination_id = response['addresses'][1][ 'route_destination_id'] route_destination_id2 = response['addresses'][2][ 'route_destination_id'] data = {'route_destination_id': route_destination_id, 'route_id': route_id, 'addresses': [{'route_destination_id': route_destination_id2, 'sequence_no': 6}]} print('After Re-sequence Route') response = route.resequence_route(**data) print('Route ID: {}'.format(response['route_id'])) for i, address in enumerate(response['addresses']): print('Address #{}'.format(i + 1)) print('\tAddress: {0}'.format(address['address'])) print('\tRoute Destination ID: {0}'.format(address[ 'route_destination_id'])) if __name__ == '__main__': main()
from route4me import Route4Me API_KEY = '11111111111111111111111111111111' def main(): r4m = Route4Me(API_KEY) route = r4m.route response = route.get_routes(limit=1, offset=0) if isinstance(response, dict) and 'errors' in response.keys(): print('. '.join(response['errors'])) else: route_id = response[0]['route_id'] print('Route ID: {}'.format(route_id)) response = route.get_route(route_id=route_id) if isinstance(response, dict) and 'errors' in response.keys(): print('. '.join(response['errors'])) else: print('Original Route') print('Route ID: {}'.format(response['route_id'])) for i, address in enumerate(response['addresses']): print('Address #{}'.format(i + 1)) print('\tAddress: {0}'.format(address['address'])) print('\tRoute Destination ID: {0}'.format(address[ 'route_destination_id'])) route_destination_id = response['addresses'][1][ 'route_destination_id'] route_destination_id2 = response['addresses'][2][ 'route_destination_id'] data = {'route_destination_id': route_destination_id, 'route_id': route_id, 'addresses': [{'route_destination_id': route_destination_id2, 'sequence_no': 6}]} print('After Re-sequence Route') response = route.resequence_route(**data) print('Route ID: {}'.format(response['route_id'])) for i, address in enumerate(response['addresses']): print('Address #{}'.format(i + 1)) print('\tAddress: {0}'.format(address['address'])) print('\tRoute Destination ID: {0}'.format(address[ 'route_destination_id'])) if __name__ == '__main__': main()
# -*- coding: utf-8 -*- from route4me import Route4Me API_KEY = "11111111111111111111111111111111" def main(): r4m = Route4Me(API_KEY) route = r4m.route response = route.get_routes(limit=1, offset=0) if isinstance(response, dict) and 'errors' in response.keys(): print('. '.join(response['errors'])) else: route_id = response[0]['route_id'] print('Route ID: {}'.format(route_id)) response = route.get_route(route_id=route_id) if isinstance(response, dict) and 'errors' in response.keys(): print('. '.join(response['errors'])) else: print('Original Route') print('Route ID: {}'.format(response['route_id'])) for i, address in enumerate(response['addresses']): print('Address #{}'.format(i + 1)) print('\tAddress: {0}'.format(address['address'])) print('\tRoute Destination ID: {0}'.format( address['route_destination_id'])) route_destination_id = response['addresses'][1]['route_destination_id'] route_destination_id2 = response['addresses'][2]['route_destination_id'] data = { "route_destination_id": route_destination_id, "route_id": route_id, "addresses": [{ "route_destination_id": route_destination_id2, "sequence_no": 6, }] } print('After Re-sequence Route') response = route.resequence_route(**data) print('Route ID: {}'.format(response['route_id'])) for i, address in enumerate(response['addresses']): print('Address #{}'.format(i + 1)) print('\tAddress: {0}'.format(address['address'])) print('\tRoute Destination ID: {0}'.format( address['route_destination_id'])) if __name__ == '__main__': main()
[ 1, 2, 3, 4, 5 ]
239
d015a1b27a3a9e7f5e6614da752137064000b905
<mask token> class my_model: <mask token> def make_model(self, param): """makes the model""" self.lr = param[0][0] dr = param[0][1] layer_units0 = param[0][2] layer_units1 = param[0][3] layer_units2 = param[0][4] def learning_rate(epoch): """The learning rate scheduler""" self.lr = self.lr / 1.00000001 return self.lr """Do not touch from here...""" (X, Y), (X_test, Y_test) = K.datasets.cifar10.load_data() Y = K.utils.to_categorical(Y[:]) X = K.applications.xception.preprocess_input(X) Y_test = K.utils.to_categorical(Y_test[:]) X_test = K.applications.xception.preprocess_input(X_test) df = 'channels_last' save_best = K.callbacks.ModelCheckpoint(filepath= 'model_lr{:.2f}_dr{:.2f}_l0{}_l1{}_l2{}.h5'.format(self.lr, dr, layer_units0, layer_units1, layer_units2), monitor='val_loss', save_best_only=True) early_stop = K.callbacks.EarlyStopping(monitor='val_loss', patience=7) learning_rate_0 = K.callbacks.LearningRateScheduler(learning_rate, verbose=1) try: loaded_model = K.models.load_model('frozen_layers.h5') print('Loaded frozen layers!') except Exception as e: if isinstance(e, OSError): pass else: exit() print('Failed to load frozen layers.') inputs = K.Input(shape=(32, 32, 3)) l = K.layers.Lambda(lambda X: K.backend.resize_images(X, height_factor=7, width_factor=7, data_format='channels_last'))( inputs) xception = K.applications.Xception(include_top=False, input_tensor=l, weights='imagenet', pooling='max') for layer in xception.layers: layer.trainable = False outputs = xception.layers[-1].output outputs = K.layers.Dense(units=10, activation='softmax', kernel_initializer=K.initializers.he_normal())(outputs) model = K.Model(inputs=inputs, outputs=outputs) model.compile(optimizer='adam', loss='categorical_crossentropy', metrics=['accuracy']) model.fit(X, Y, epochs=1, verbose=True, batch_size=128) model.save('frozen_layers.h5') loaded_model = K.models.load_model('frozen_layers.h5') except MemoryError('Try lowering the batch size'): exit() if os.path.exists('X_inputs') and os.path.exists('X_test_inputs'): with open('X_inputs', 'rb') as X_file: X = pickle.load(X_file) with open('X_test_inputs', 'rb') as X_test_file: X_test = pickle.load(X_test_file) else: frozen_layers = K.Model(inputs=loaded_model.input, outputs= loaded_model.layers[-2].output) X = frozen_layers.predict(X, verbose=True) X_test = frozen_layers.predict(X_test, verbose=True) with open('X_inputs', 'wb') as X_file: pickle.dump(X, X_file) with open('X_test_inputs', 'wb') as X_test_file: pickle.dump(X_test, X_test_file) inputs = K.Input((2048,)) """... to here!!!""" layer = K.layers.Dense(units=layer_units0, activation='relu', kernel_initializer=K.initializers.he_normal())(inputs) layer = K.layers.Dropout(dr)(layer) layer = K.layers.Dense(units=layer_units1, activation='relu', kernel_initializer=K.initializers.he_normal())(layer) layer = K.layers.Dense(units=layer_units2, activation='relu', kernel_initializer=K.initializers.he_normal())(layer) outputs = K.layers.Dense(units=10, activation='softmax', kernel_initializer=K.initializers.he_normal())(layer) model = K.Model(inputs=inputs, outputs=outputs) model.compile(optimizer='adam', loss='categorical_crossentropy', metrics=['accuracy']) h = model.fit(X, Y, validation_data=(X_test, Y_test), epochs=64, verbose=True, batch_size=128, shuffle=True, callbacks=[ early_stop, learning_rate_0, save_best]) val_accuracy = np.min(h.history['val_loss']) return val_accuracy def opt(self): """the optimization function""" search_space = [{'name': 'lr', 'type': 'continuous', 'domain': ( 0.01, 0.001)}, {'name': 'dr', 'type': 'continuous', 'domain': ( 0.1, 0.3)}, {'name': 'layer_units0', 'type': 'discrete', 'domain': (32, 64, 128, 256, 512)}, {'name': 'layer_units1', 'type': 'discrete', 'domain': (32, 64, 128, 256, 512)}, {'name': 'layer_units2', 'type': 'discrete', 'domain': (32, 64, 128, 256, 512)}] my_bayesian_opt = BayesianOptimization(self.make_model, domain= search_space, model_type='GP', initial_design_numdata=1, acquisition_type='EI', maximize=False, verbosity=True) print('==============================') my_bayesian_opt.run_optimization(max_iter=29, report_file='report', evaluations_file='evaluation', models_file='models') print('PLOTTING') my_bayesian_opt.plot_acquisition() my_bayesian_opt.plot_convergence() print('==============================') <mask token>
<mask token> class my_model: """A model bassed on xception""" def make_model(self, param): """makes the model""" self.lr = param[0][0] dr = param[0][1] layer_units0 = param[0][2] layer_units1 = param[0][3] layer_units2 = param[0][4] def learning_rate(epoch): """The learning rate scheduler""" self.lr = self.lr / 1.00000001 return self.lr """Do not touch from here...""" (X, Y), (X_test, Y_test) = K.datasets.cifar10.load_data() Y = K.utils.to_categorical(Y[:]) X = K.applications.xception.preprocess_input(X) Y_test = K.utils.to_categorical(Y_test[:]) X_test = K.applications.xception.preprocess_input(X_test) df = 'channels_last' save_best = K.callbacks.ModelCheckpoint(filepath= 'model_lr{:.2f}_dr{:.2f}_l0{}_l1{}_l2{}.h5'.format(self.lr, dr, layer_units0, layer_units1, layer_units2), monitor='val_loss', save_best_only=True) early_stop = K.callbacks.EarlyStopping(monitor='val_loss', patience=7) learning_rate_0 = K.callbacks.LearningRateScheduler(learning_rate, verbose=1) try: loaded_model = K.models.load_model('frozen_layers.h5') print('Loaded frozen layers!') except Exception as e: if isinstance(e, OSError): pass else: exit() print('Failed to load frozen layers.') inputs = K.Input(shape=(32, 32, 3)) l = K.layers.Lambda(lambda X: K.backend.resize_images(X, height_factor=7, width_factor=7, data_format='channels_last'))( inputs) xception = K.applications.Xception(include_top=False, input_tensor=l, weights='imagenet', pooling='max') for layer in xception.layers: layer.trainable = False outputs = xception.layers[-1].output outputs = K.layers.Dense(units=10, activation='softmax', kernel_initializer=K.initializers.he_normal())(outputs) model = K.Model(inputs=inputs, outputs=outputs) model.compile(optimizer='adam', loss='categorical_crossentropy', metrics=['accuracy']) model.fit(X, Y, epochs=1, verbose=True, batch_size=128) model.save('frozen_layers.h5') loaded_model = K.models.load_model('frozen_layers.h5') except MemoryError('Try lowering the batch size'): exit() if os.path.exists('X_inputs') and os.path.exists('X_test_inputs'): with open('X_inputs', 'rb') as X_file: X = pickle.load(X_file) with open('X_test_inputs', 'rb') as X_test_file: X_test = pickle.load(X_test_file) else: frozen_layers = K.Model(inputs=loaded_model.input, outputs= loaded_model.layers[-2].output) X = frozen_layers.predict(X, verbose=True) X_test = frozen_layers.predict(X_test, verbose=True) with open('X_inputs', 'wb') as X_file: pickle.dump(X, X_file) with open('X_test_inputs', 'wb') as X_test_file: pickle.dump(X_test, X_test_file) inputs = K.Input((2048,)) """... to here!!!""" layer = K.layers.Dense(units=layer_units0, activation='relu', kernel_initializer=K.initializers.he_normal())(inputs) layer = K.layers.Dropout(dr)(layer) layer = K.layers.Dense(units=layer_units1, activation='relu', kernel_initializer=K.initializers.he_normal())(layer) layer = K.layers.Dense(units=layer_units2, activation='relu', kernel_initializer=K.initializers.he_normal())(layer) outputs = K.layers.Dense(units=10, activation='softmax', kernel_initializer=K.initializers.he_normal())(layer) model = K.Model(inputs=inputs, outputs=outputs) model.compile(optimizer='adam', loss='categorical_crossentropy', metrics=['accuracy']) h = model.fit(X, Y, validation_data=(X_test, Y_test), epochs=64, verbose=True, batch_size=128, shuffle=True, callbacks=[ early_stop, learning_rate_0, save_best]) val_accuracy = np.min(h.history['val_loss']) return val_accuracy def opt(self): """the optimization function""" search_space = [{'name': 'lr', 'type': 'continuous', 'domain': ( 0.01, 0.001)}, {'name': 'dr', 'type': 'continuous', 'domain': ( 0.1, 0.3)}, {'name': 'layer_units0', 'type': 'discrete', 'domain': (32, 64, 128, 256, 512)}, {'name': 'layer_units1', 'type': 'discrete', 'domain': (32, 64, 128, 256, 512)}, {'name': 'layer_units2', 'type': 'discrete', 'domain': (32, 64, 128, 256, 512)}] my_bayesian_opt = BayesianOptimization(self.make_model, domain= search_space, model_type='GP', initial_design_numdata=1, acquisition_type='EI', maximize=False, verbosity=True) print('==============================') my_bayesian_opt.run_optimization(max_iter=29, report_file='report', evaluations_file='evaluation', models_file='models') print('PLOTTING') my_bayesian_opt.plot_acquisition() my_bayesian_opt.plot_convergence() print('==============================') <mask token>
<mask token> class my_model: """A model bassed on xception""" def make_model(self, param): """makes the model""" self.lr = param[0][0] dr = param[0][1] layer_units0 = param[0][2] layer_units1 = param[0][3] layer_units2 = param[0][4] def learning_rate(epoch): """The learning rate scheduler""" self.lr = self.lr / 1.00000001 return self.lr """Do not touch from here...""" (X, Y), (X_test, Y_test) = K.datasets.cifar10.load_data() Y = K.utils.to_categorical(Y[:]) X = K.applications.xception.preprocess_input(X) Y_test = K.utils.to_categorical(Y_test[:]) X_test = K.applications.xception.preprocess_input(X_test) df = 'channels_last' save_best = K.callbacks.ModelCheckpoint(filepath= 'model_lr{:.2f}_dr{:.2f}_l0{}_l1{}_l2{}.h5'.format(self.lr, dr, layer_units0, layer_units1, layer_units2), monitor='val_loss', save_best_only=True) early_stop = K.callbacks.EarlyStopping(monitor='val_loss', patience=7) learning_rate_0 = K.callbacks.LearningRateScheduler(learning_rate, verbose=1) try: loaded_model = K.models.load_model('frozen_layers.h5') print('Loaded frozen layers!') except Exception as e: if isinstance(e, OSError): pass else: exit() print('Failed to load frozen layers.') inputs = K.Input(shape=(32, 32, 3)) l = K.layers.Lambda(lambda X: K.backend.resize_images(X, height_factor=7, width_factor=7, data_format='channels_last'))( inputs) xception = K.applications.Xception(include_top=False, input_tensor=l, weights='imagenet', pooling='max') for layer in xception.layers: layer.trainable = False outputs = xception.layers[-1].output outputs = K.layers.Dense(units=10, activation='softmax', kernel_initializer=K.initializers.he_normal())(outputs) model = K.Model(inputs=inputs, outputs=outputs) model.compile(optimizer='adam', loss='categorical_crossentropy', metrics=['accuracy']) model.fit(X, Y, epochs=1, verbose=True, batch_size=128) model.save('frozen_layers.h5') loaded_model = K.models.load_model('frozen_layers.h5') except MemoryError('Try lowering the batch size'): exit() if os.path.exists('X_inputs') and os.path.exists('X_test_inputs'): with open('X_inputs', 'rb') as X_file: X = pickle.load(X_file) with open('X_test_inputs', 'rb') as X_test_file: X_test = pickle.load(X_test_file) else: frozen_layers = K.Model(inputs=loaded_model.input, outputs= loaded_model.layers[-2].output) X = frozen_layers.predict(X, verbose=True) X_test = frozen_layers.predict(X_test, verbose=True) with open('X_inputs', 'wb') as X_file: pickle.dump(X, X_file) with open('X_test_inputs', 'wb') as X_test_file: pickle.dump(X_test, X_test_file) inputs = K.Input((2048,)) """... to here!!!""" layer = K.layers.Dense(units=layer_units0, activation='relu', kernel_initializer=K.initializers.he_normal())(inputs) layer = K.layers.Dropout(dr)(layer) layer = K.layers.Dense(units=layer_units1, activation='relu', kernel_initializer=K.initializers.he_normal())(layer) layer = K.layers.Dense(units=layer_units2, activation='relu', kernel_initializer=K.initializers.he_normal())(layer) outputs = K.layers.Dense(units=10, activation='softmax', kernel_initializer=K.initializers.he_normal())(layer) model = K.Model(inputs=inputs, outputs=outputs) model.compile(optimizer='adam', loss='categorical_crossentropy', metrics=['accuracy']) h = model.fit(X, Y, validation_data=(X_test, Y_test), epochs=64, verbose=True, batch_size=128, shuffle=True, callbacks=[ early_stop, learning_rate_0, save_best]) val_accuracy = np.min(h.history['val_loss']) return val_accuracy def opt(self): """the optimization function""" search_space = [{'name': 'lr', 'type': 'continuous', 'domain': ( 0.01, 0.001)}, {'name': 'dr', 'type': 'continuous', 'domain': ( 0.1, 0.3)}, {'name': 'layer_units0', 'type': 'discrete', 'domain': (32, 64, 128, 256, 512)}, {'name': 'layer_units1', 'type': 'discrete', 'domain': (32, 64, 128, 256, 512)}, {'name': 'layer_units2', 'type': 'discrete', 'domain': (32, 64, 128, 256, 512)}] my_bayesian_opt = BayesianOptimization(self.make_model, domain= search_space, model_type='GP', initial_design_numdata=1, acquisition_type='EI', maximize=False, verbosity=True) print('==============================') my_bayesian_opt.run_optimization(max_iter=29, report_file='report', evaluations_file='evaluation', models_file='models') print('PLOTTING') my_bayesian_opt.plot_acquisition() my_bayesian_opt.plot_convergence() print('==============================') def preprocess_data(X, Y): """The data preprocessing""" Y_p = K.utils.to_categorical(Y[:]) X_p = K.applications.xception.preprocess_input(X) loaded_model = K.models.load_model('frozen_layers.h5') frozen_layers = K.Model(inputs=loaded_model.input, outputs=loaded_model .layers[-2].output) X_p = frozen_layers.predict(X_p, verbose=True) with open('Preprocessed_data_Xs', 'wb') as my_file0: pickle.dump(X_p, my_file0) with open('Preprocessed_data_Ys', 'wb') as my_file1: pickle.dump(Y_p, my_file1) return X_p, Y_p
<mask token> import tensorflow.keras as K from GPyOpt.methods import BayesianOptimization import pickle import os import numpy as np class my_model: """A model bassed on xception""" def make_model(self, param): """makes the model""" self.lr = param[0][0] dr = param[0][1] layer_units0 = param[0][2] layer_units1 = param[0][3] layer_units2 = param[0][4] def learning_rate(epoch): """The learning rate scheduler""" self.lr = self.lr / 1.00000001 return self.lr """Do not touch from here...""" (X, Y), (X_test, Y_test) = K.datasets.cifar10.load_data() Y = K.utils.to_categorical(Y[:]) X = K.applications.xception.preprocess_input(X) Y_test = K.utils.to_categorical(Y_test[:]) X_test = K.applications.xception.preprocess_input(X_test) df = 'channels_last' save_best = K.callbacks.ModelCheckpoint(filepath= 'model_lr{:.2f}_dr{:.2f}_l0{}_l1{}_l2{}.h5'.format(self.lr, dr, layer_units0, layer_units1, layer_units2), monitor='val_loss', save_best_only=True) early_stop = K.callbacks.EarlyStopping(monitor='val_loss', patience=7) learning_rate_0 = K.callbacks.LearningRateScheduler(learning_rate, verbose=1) try: loaded_model = K.models.load_model('frozen_layers.h5') print('Loaded frozen layers!') except Exception as e: if isinstance(e, OSError): pass else: exit() print('Failed to load frozen layers.') inputs = K.Input(shape=(32, 32, 3)) l = K.layers.Lambda(lambda X: K.backend.resize_images(X, height_factor=7, width_factor=7, data_format='channels_last'))( inputs) xception = K.applications.Xception(include_top=False, input_tensor=l, weights='imagenet', pooling='max') for layer in xception.layers: layer.trainable = False outputs = xception.layers[-1].output outputs = K.layers.Dense(units=10, activation='softmax', kernel_initializer=K.initializers.he_normal())(outputs) model = K.Model(inputs=inputs, outputs=outputs) model.compile(optimizer='adam', loss='categorical_crossentropy', metrics=['accuracy']) model.fit(X, Y, epochs=1, verbose=True, batch_size=128) model.save('frozen_layers.h5') loaded_model = K.models.load_model('frozen_layers.h5') except MemoryError('Try lowering the batch size'): exit() if os.path.exists('X_inputs') and os.path.exists('X_test_inputs'): with open('X_inputs', 'rb') as X_file: X = pickle.load(X_file) with open('X_test_inputs', 'rb') as X_test_file: X_test = pickle.load(X_test_file) else: frozen_layers = K.Model(inputs=loaded_model.input, outputs= loaded_model.layers[-2].output) X = frozen_layers.predict(X, verbose=True) X_test = frozen_layers.predict(X_test, verbose=True) with open('X_inputs', 'wb') as X_file: pickle.dump(X, X_file) with open('X_test_inputs', 'wb') as X_test_file: pickle.dump(X_test, X_test_file) inputs = K.Input((2048,)) """... to here!!!""" layer = K.layers.Dense(units=layer_units0, activation='relu', kernel_initializer=K.initializers.he_normal())(inputs) layer = K.layers.Dropout(dr)(layer) layer = K.layers.Dense(units=layer_units1, activation='relu', kernel_initializer=K.initializers.he_normal())(layer) layer = K.layers.Dense(units=layer_units2, activation='relu', kernel_initializer=K.initializers.he_normal())(layer) outputs = K.layers.Dense(units=10, activation='softmax', kernel_initializer=K.initializers.he_normal())(layer) model = K.Model(inputs=inputs, outputs=outputs) model.compile(optimizer='adam', loss='categorical_crossentropy', metrics=['accuracy']) h = model.fit(X, Y, validation_data=(X_test, Y_test), epochs=64, verbose=True, batch_size=128, shuffle=True, callbacks=[ early_stop, learning_rate_0, save_best]) val_accuracy = np.min(h.history['val_loss']) return val_accuracy def opt(self): """the optimization function""" search_space = [{'name': 'lr', 'type': 'continuous', 'domain': ( 0.01, 0.001)}, {'name': 'dr', 'type': 'continuous', 'domain': ( 0.1, 0.3)}, {'name': 'layer_units0', 'type': 'discrete', 'domain': (32, 64, 128, 256, 512)}, {'name': 'layer_units1', 'type': 'discrete', 'domain': (32, 64, 128, 256, 512)}, {'name': 'layer_units2', 'type': 'discrete', 'domain': (32, 64, 128, 256, 512)}] my_bayesian_opt = BayesianOptimization(self.make_model, domain= search_space, model_type='GP', initial_design_numdata=1, acquisition_type='EI', maximize=False, verbosity=True) print('==============================') my_bayesian_opt.run_optimization(max_iter=29, report_file='report', evaluations_file='evaluation', models_file='models') print('PLOTTING') my_bayesian_opt.plot_acquisition() my_bayesian_opt.plot_convergence() print('==============================') def preprocess_data(X, Y): """The data preprocessing""" Y_p = K.utils.to_categorical(Y[:]) X_p = K.applications.xception.preprocess_input(X) loaded_model = K.models.load_model('frozen_layers.h5') frozen_layers = K.Model(inputs=loaded_model.input, outputs=loaded_model .layers[-2].output) X_p = frozen_layers.predict(X_p, verbose=True) with open('Preprocessed_data_Xs', 'wb') as my_file0: pickle.dump(X_p, my_file0) with open('Preprocessed_data_Ys', 'wb') as my_file1: pickle.dump(Y_p, my_file1) return X_p, Y_p
#!/usr/bin/env python3 """Transfer learning with xception""" import tensorflow.keras as K from GPyOpt.methods import BayesianOptimization import pickle import os import numpy as np class my_model(): """A model bassed on xception""" def make_model(self, param): """makes the model""" self.lr = param[0][0] dr = param[0][1] layer_units0 = param[0][2] layer_units1 = param[0][3] layer_units2 = param[0][4] def learning_rate(epoch): """The learning rate scheduler""" self.lr = self.lr / 1.00000001 return self.lr """Do not touch from here...""" # load data (X, Y), (X_test, Y_test) = K.datasets.cifar10.load_data() # uncomment for rapid test # X = X[0:256, :, :, :] # Y = Y[0:256, :] # X_test = X_test[0:256, :, :, :] # Y_test = Y_test[0:256, :] # preprocessing Y = K.utils.to_categorical(Y[:]) X = K.applications.xception.preprocess_input(X) Y_test = K.utils.to_categorical(Y_test[:]) X_test = K.applications.xception.preprocess_input(X_test) # data format df = "channels_last" # call backs save_best = K.callbacks.ModelCheckpoint(filepath="model_lr{:.2f}_dr{:.2f}_l0{}_l1{}_l2{}.h5" .format(self.lr, dr, layer_units0, layer_units1, layer_units2), monitor="val_loss", save_best_only=True, ) early_stop = K.callbacks.EarlyStopping(monitor="val_loss", patience=7 ) learning_rate_0 = K.callbacks.LearningRateScheduler(learning_rate, verbose=1 ) # input layer and lambda layer save and load for faster training try: loaded_model = K.models.load_model("frozen_layers.h5") print("Loaded frozen layers!") except Exception as e: if isinstance(e, OSError): pass else: exit() print("Failed to load frozen layers.") inputs = K.Input(shape=(32, 32, 3)) l = K.layers.Lambda(lambda X: K.backend.resize_images(X, height_factor=7, width_factor=7, data_format="channels_last" ))(inputs) # Transfer learning layers xception = K.applications.Xception(include_top=False, input_tensor=l, weights="imagenet", pooling="max" ) # freeze the resnet50 layers for layer in xception.layers: layer.trainable = False # get outputs outputs = xception.layers[-1].output outputs = K.layers.Dense(units=10, activation="softmax", kernel_initializer=K.initializers.he_normal() )(outputs) # compile frozen model model = K.Model(inputs=inputs, outputs=outputs) model.compile(optimizer="adam", loss="categorical_crossentropy", metrics=["accuracy"]) model.fit(X, Y, epochs=1, verbose=True, batch_size=128 ) model.save("frozen_layers.h5") loaded_model = K.models.load_model("frozen_layers.h5") except MemoryError("Try lowering the batch size"): exit() # set up new model if os.path.exists("X_inputs") and os.path.exists("X_test_inputs"): with open("X_inputs", "rb") as X_file: X = pickle.load(X_file) with open("X_test_inputs", "rb") as X_test_file: X_test = pickle.load(X_test_file) else: frozen_layers = K.Model(inputs=loaded_model.input, outputs=loaded_model.layers[-2].output ) X = frozen_layers.predict(X, verbose=True ) X_test = frozen_layers.predict(X_test, verbose=True ) with open("X_inputs", "wb") as X_file: pickle.dump(X, X_file) with open("X_test_inputs", "wb") as X_test_file: pickle.dump(X_test, X_test_file) # inputs inputs = K.Input((2048,)) """... to here!!!""" # new layers here layer = K.layers.Dense(units=layer_units0, activation="relu", kernel_initializer=K.initializers.he_normal() )(inputs) layer = K.layers.Dropout(dr)(layer) layer = K.layers.Dense(units=layer_units1, activation="relu", kernel_initializer=K.initializers.he_normal() )(layer) # layer = K.layers.Dropout(dr)(layer) layer = K.layers.Dense(units=layer_units2, activation="relu", kernel_initializer=K.initializers.he_normal() )(layer) # layer = K.layers.Dropout(dr)(layer) outputs = K.layers.Dense(units=10, activation="softmax", kernel_initializer=K.initializers.he_normal() )(layer) model = K.Model(inputs=inputs, outputs=outputs) model.compile(optimizer="adam", loss="categorical_crossentropy", metrics=["accuracy"]) # train h = model.fit(X, Y, validation_data=(X_test, Y_test), epochs=64, verbose=True, batch_size=128, shuffle=True, callbacks=[early_stop, learning_rate_0, save_best] ) val_accuracy = np.min(h.history["val_loss"]) return val_accuracy def opt(self): """the optimization function""" search_space = [ {"name": "lr", "type": "continuous", "domain": (0.01, 0.001)}, {"name": "dr", "type": "continuous", "domain": (0.1, 0.3)}, {"name": "layer_units0", "type": "discrete", "domain": (32, 64, 128, 256, 512)}, {"name": "layer_units1", "type": "discrete", "domain": (32, 64, 128, 256, 512)}, {"name": "layer_units2", "type": "discrete", "domain": (32, 64, 128, 256, 512)} ] my_bayesian_opt = BayesianOptimization(self.make_model, domain=search_space, model_type="GP", initial_design_numdata=1, acquisition_type="EI", maximize=False, verbosity=True ) print("==============================") my_bayesian_opt.run_optimization(max_iter=29, report_file="report", evaluations_file="evaluation", models_file="models") print("PLOTTING") my_bayesian_opt.plot_acquisition() my_bayesian_opt.plot_convergence() print("==============================") def preprocess_data(X, Y): """The data preprocessing""" Y_p = K.utils.to_categorical(Y[:]) X_p = K.applications.xception.preprocess_input(X) loaded_model = K.models.load_model("frozen_layers.h5") frozen_layers = K.Model(inputs=loaded_model.input, outputs=loaded_model.layers[-2].output ) X_p = frozen_layers.predict(X_p, verbose=True ) with open("Preprocessed_data_Xs", "wb") as my_file0: pickle.dump(X_p, my_file0) with open("Preprocessed_data_Ys", "wb") as my_file1: pickle.dump(Y_p, my_file1) return X_p, Y_p
[ 3, 4, 5, 6, 7 ]
240
ef6f55bf27982f53441215da6822cfcdc80706a5
<mask token> def display_meta(request): context_dict = {'meta_dict': request.META} return render_to_response('display_meta.html', context_dict)
<mask token> def current_datetime(request): current_date = datetime.datetime.now() locals_prams = {'locals': locals()} return render_to_response('current_datetime.html', locals_prams) def display_meta(request): context_dict = {'meta_dict': request.META} return render_to_response('display_meta.html', context_dict)
__author__ = 'Yun' __project__ = 'DjangoBookTest2' <mask token> def current_datetime(request): current_date = datetime.datetime.now() locals_prams = {'locals': locals()} return render_to_response('current_datetime.html', locals_prams) def display_meta(request): context_dict = {'meta_dict': request.META} return render_to_response('display_meta.html', context_dict)
__author__ = 'Yun' __project__ = 'DjangoBookTest2' from django.shortcuts import render_to_response import datetime def current_datetime(request): current_date = datetime.datetime.now() locals_prams = {'locals': locals()} return render_to_response('current_datetime.html', locals_prams) def display_meta(request): context_dict = {'meta_dict': request.META} return render_to_response('display_meta.html', context_dict)
# -*- coding: utf-8 -*- __author__ = 'Yun' __project__ = 'DjangoBookTest2' # from django.template import Template, Context # from django.template.loader import get_template # from django.http import HttpResponse from django.shortcuts import render_to_response import datetime def current_datetime(request): # now = datetime.datetime.now() # t = Template("<html><body>It is now {{ current_date }}.</body></html>") # t = get_template('current_datetime.html') # html = t.render(Context({'current_date': now})) # return HttpResponse(html) # return render_to_response('current_datetime.html', {'current_date': now}) current_date = datetime.datetime.now() locals_prams = {'locals': locals(), } # locals_prams = {'current_date': now, 'name': 'YZhu', 'list': {'name': 'Qiqi', 'age': '29', 'gender': 'man'}} return render_to_response('current_datetime.html', locals_prams) def display_meta(request): context_dict = {'meta_dict': request.META, } return render_to_response('display_meta.html', context_dict)
[ 1, 2, 3, 4, 5 ]
241
e8226ab6be5c21335d843cba720e66646a2dee4e
import os import requests import sqlite3 from models import analytics, jcanalytics def populate(): url = 'https://api.clicky.com/api/stats/4?site_id=100716069&sitekey=93c104e29de28bd9&type=visitors-list' date = '&date=last-30-days' limit = '&limit=all' output = '&output=json' total = url+date+limit+output r = requests.get(total) print(total) data = r.json() # html = [] for item in data[0]['dates'][0]['items']: si = item["session_id"] ip = item["ip_address"] time = item["time"] timep = item["time_pretty"] # geol = item["geolocation"] # org = item["organization"] if item.has_key("geolocation"): geol = item["geolocation"] else: geol = "" if item.has_key("organization"): org = item["organization"] else: org = "" add_entry(si,ip,org,time,timep,geol) add_jcentry(org) def add_entry(si,ip,org,time,timep,geol): entry = analytics.objects.get_or_create(si=si,ip=ip,org=org,time=time,timep=timep,geol=geol)[0] return entry def add_jcentry(org): jcentry = jcanalytics.objects.get_or_create(org=org)[0] return jcentry print "Starting population script..." populate()
null
null
null
null
[ 0 ]
242
e616d14827beaa08ab08219421cbf7990cf163fd
<mask token> class AlipayInsSceneEcommerceInsureCheckModel(object): def __init__(self): self._insure_admit_dto_list = None self._partner_org_id = None self._product_code = None self._scene_code = None self._user_client = None @property def insure_admit_dto_list(self): return self._insure_admit_dto_list <mask token> @property def partner_org_id(self): return self._partner_org_id @partner_org_id.setter def partner_org_id(self, value): self._partner_org_id = value @property def product_code(self): return self._product_code @product_code.setter def product_code(self, value): self._product_code = value <mask token> <mask token> @property def user_client(self): return self._user_client <mask token> <mask token> <mask token>
<mask token> class AlipayInsSceneEcommerceInsureCheckModel(object): def __init__(self): self._insure_admit_dto_list = None self._partner_org_id = None self._product_code = None self._scene_code = None self._user_client = None @property def insure_admit_dto_list(self): return self._insure_admit_dto_list @insure_admit_dto_list.setter def insure_admit_dto_list(self, value): if isinstance(value, list): self._insure_admit_dto_list = list() for i in value: if isinstance(i, InsureAdmitDTO): self._insure_admit_dto_list.append(i) else: self._insure_admit_dto_list.append(InsureAdmitDTO. from_alipay_dict(i)) @property def partner_org_id(self): return self._partner_org_id @partner_org_id.setter def partner_org_id(self, value): self._partner_org_id = value @property def product_code(self): return self._product_code @product_code.setter def product_code(self, value): self._product_code = value @property def scene_code(self): return self._scene_code @scene_code.setter def scene_code(self, value): self._scene_code = value @property def user_client(self): return self._user_client <mask token> <mask token> @staticmethod def from_alipay_dict(d): if not d: return None o = AlipayInsSceneEcommerceInsureCheckModel() if 'insure_admit_dto_list' in d: o.insure_admit_dto_list = d['insure_admit_dto_list'] if 'partner_org_id' in d: o.partner_org_id = d['partner_org_id'] if 'product_code' in d: o.product_code = d['product_code'] if 'scene_code' in d: o.scene_code = d['scene_code'] if 'user_client' in d: o.user_client = d['user_client'] return o
<mask token> class AlipayInsSceneEcommerceInsureCheckModel(object): def __init__(self): self._insure_admit_dto_list = None self._partner_org_id = None self._product_code = None self._scene_code = None self._user_client = None @property def insure_admit_dto_list(self): return self._insure_admit_dto_list @insure_admit_dto_list.setter def insure_admit_dto_list(self, value): if isinstance(value, list): self._insure_admit_dto_list = list() for i in value: if isinstance(i, InsureAdmitDTO): self._insure_admit_dto_list.append(i) else: self._insure_admit_dto_list.append(InsureAdmitDTO. from_alipay_dict(i)) @property def partner_org_id(self): return self._partner_org_id @partner_org_id.setter def partner_org_id(self, value): self._partner_org_id = value @property def product_code(self): return self._product_code @product_code.setter def product_code(self, value): self._product_code = value @property def scene_code(self): return self._scene_code @scene_code.setter def scene_code(self, value): self._scene_code = value @property def user_client(self): return self._user_client <mask token> def to_alipay_dict(self): params = dict() if self.insure_admit_dto_list: if isinstance(self.insure_admit_dto_list, list): for i in range(0, len(self.insure_admit_dto_list)): element = self.insure_admit_dto_list[i] if hasattr(element, 'to_alipay_dict'): self.insure_admit_dto_list[i] = element.to_alipay_dict( ) if hasattr(self.insure_admit_dto_list, 'to_alipay_dict'): params['insure_admit_dto_list' ] = self.insure_admit_dto_list.to_alipay_dict() else: params['insure_admit_dto_list'] = self.insure_admit_dto_list if self.partner_org_id: if hasattr(self.partner_org_id, 'to_alipay_dict'): params['partner_org_id'] = self.partner_org_id.to_alipay_dict() else: params['partner_org_id'] = self.partner_org_id if self.product_code: if hasattr(self.product_code, 'to_alipay_dict'): params['product_code'] = self.product_code.to_alipay_dict() else: params['product_code'] = self.product_code if self.scene_code: if hasattr(self.scene_code, 'to_alipay_dict'): params['scene_code'] = self.scene_code.to_alipay_dict() else: params['scene_code'] = self.scene_code if self.user_client: if hasattr(self.user_client, 'to_alipay_dict'): params['user_client'] = self.user_client.to_alipay_dict() else: params['user_client'] = self.user_client return params @staticmethod def from_alipay_dict(d): if not d: return None o = AlipayInsSceneEcommerceInsureCheckModel() if 'insure_admit_dto_list' in d: o.insure_admit_dto_list = d['insure_admit_dto_list'] if 'partner_org_id' in d: o.partner_org_id = d['partner_org_id'] if 'product_code' in d: o.product_code = d['product_code'] if 'scene_code' in d: o.scene_code = d['scene_code'] if 'user_client' in d: o.user_client = d['user_client'] return o
<mask token> class AlipayInsSceneEcommerceInsureCheckModel(object): def __init__(self): self._insure_admit_dto_list = None self._partner_org_id = None self._product_code = None self._scene_code = None self._user_client = None @property def insure_admit_dto_list(self): return self._insure_admit_dto_list @insure_admit_dto_list.setter def insure_admit_dto_list(self, value): if isinstance(value, list): self._insure_admit_dto_list = list() for i in value: if isinstance(i, InsureAdmitDTO): self._insure_admit_dto_list.append(i) else: self._insure_admit_dto_list.append(InsureAdmitDTO. from_alipay_dict(i)) @property def partner_org_id(self): return self._partner_org_id @partner_org_id.setter def partner_org_id(self, value): self._partner_org_id = value @property def product_code(self): return self._product_code @product_code.setter def product_code(self, value): self._product_code = value @property def scene_code(self): return self._scene_code @scene_code.setter def scene_code(self, value): self._scene_code = value @property def user_client(self): return self._user_client @user_client.setter def user_client(self, value): self._user_client = value def to_alipay_dict(self): params = dict() if self.insure_admit_dto_list: if isinstance(self.insure_admit_dto_list, list): for i in range(0, len(self.insure_admit_dto_list)): element = self.insure_admit_dto_list[i] if hasattr(element, 'to_alipay_dict'): self.insure_admit_dto_list[i] = element.to_alipay_dict( ) if hasattr(self.insure_admit_dto_list, 'to_alipay_dict'): params['insure_admit_dto_list' ] = self.insure_admit_dto_list.to_alipay_dict() else: params['insure_admit_dto_list'] = self.insure_admit_dto_list if self.partner_org_id: if hasattr(self.partner_org_id, 'to_alipay_dict'): params['partner_org_id'] = self.partner_org_id.to_alipay_dict() else: params['partner_org_id'] = self.partner_org_id if self.product_code: if hasattr(self.product_code, 'to_alipay_dict'): params['product_code'] = self.product_code.to_alipay_dict() else: params['product_code'] = self.product_code if self.scene_code: if hasattr(self.scene_code, 'to_alipay_dict'): params['scene_code'] = self.scene_code.to_alipay_dict() else: params['scene_code'] = self.scene_code if self.user_client: if hasattr(self.user_client, 'to_alipay_dict'): params['user_client'] = self.user_client.to_alipay_dict() else: params['user_client'] = self.user_client return params @staticmethod def from_alipay_dict(d): if not d: return None o = AlipayInsSceneEcommerceInsureCheckModel() if 'insure_admit_dto_list' in d: o.insure_admit_dto_list = d['insure_admit_dto_list'] if 'partner_org_id' in d: o.partner_org_id = d['partner_org_id'] if 'product_code' in d: o.product_code = d['product_code'] if 'scene_code' in d: o.scene_code = d['scene_code'] if 'user_client' in d: o.user_client = d['user_client'] return o
#!/usr/bin/env python # -*- coding: utf-8 -*- import json from alipay.aop.api.constant.ParamConstants import * from alipay.aop.api.domain.InsureAdmitDTO import InsureAdmitDTO class AlipayInsSceneEcommerceInsureCheckModel(object): def __init__(self): self._insure_admit_dto_list = None self._partner_org_id = None self._product_code = None self._scene_code = None self._user_client = None @property def insure_admit_dto_list(self): return self._insure_admit_dto_list @insure_admit_dto_list.setter def insure_admit_dto_list(self, value): if isinstance(value, list): self._insure_admit_dto_list = list() for i in value: if isinstance(i, InsureAdmitDTO): self._insure_admit_dto_list.append(i) else: self._insure_admit_dto_list.append(InsureAdmitDTO.from_alipay_dict(i)) @property def partner_org_id(self): return self._partner_org_id @partner_org_id.setter def partner_org_id(self, value): self._partner_org_id = value @property def product_code(self): return self._product_code @product_code.setter def product_code(self, value): self._product_code = value @property def scene_code(self): return self._scene_code @scene_code.setter def scene_code(self, value): self._scene_code = value @property def user_client(self): return self._user_client @user_client.setter def user_client(self, value): self._user_client = value def to_alipay_dict(self): params = dict() if self.insure_admit_dto_list: if isinstance(self.insure_admit_dto_list, list): for i in range(0, len(self.insure_admit_dto_list)): element = self.insure_admit_dto_list[i] if hasattr(element, 'to_alipay_dict'): self.insure_admit_dto_list[i] = element.to_alipay_dict() if hasattr(self.insure_admit_dto_list, 'to_alipay_dict'): params['insure_admit_dto_list'] = self.insure_admit_dto_list.to_alipay_dict() else: params['insure_admit_dto_list'] = self.insure_admit_dto_list if self.partner_org_id: if hasattr(self.partner_org_id, 'to_alipay_dict'): params['partner_org_id'] = self.partner_org_id.to_alipay_dict() else: params['partner_org_id'] = self.partner_org_id if self.product_code: if hasattr(self.product_code, 'to_alipay_dict'): params['product_code'] = self.product_code.to_alipay_dict() else: params['product_code'] = self.product_code if self.scene_code: if hasattr(self.scene_code, 'to_alipay_dict'): params['scene_code'] = self.scene_code.to_alipay_dict() else: params['scene_code'] = self.scene_code if self.user_client: if hasattr(self.user_client, 'to_alipay_dict'): params['user_client'] = self.user_client.to_alipay_dict() else: params['user_client'] = self.user_client return params @staticmethod def from_alipay_dict(d): if not d: return None o = AlipayInsSceneEcommerceInsureCheckModel() if 'insure_admit_dto_list' in d: o.insure_admit_dto_list = d['insure_admit_dto_list'] if 'partner_org_id' in d: o.partner_org_id = d['partner_org_id'] if 'product_code' in d: o.product_code = d['product_code'] if 'scene_code' in d: o.scene_code = d['scene_code'] if 'user_client' in d: o.user_client = d['user_client'] return o
[ 8, 12, 13, 14, 16 ]
243
c4ca4b5c77c3c912b44a4853be30298ec845c4fd
<mask token>
<mask token> print(owog.find('e')) print(owog.count('e')) print(owog[2:10]) <mask token> if a > b: print('a too ih') elif a == b: print('tentsuu') else: print('b too ih') <mask token> for i in range(a, b + 1): print(i)
owog = 'Delger' print(owog.find('e')) print(owog.count('e')) print(owog[2:10]) a = 21 b = 21 if a > b: print('a too ih') elif a == b: print('tentsuu') else: print('b too ih') a, b = input().split() for i in range(a, b + 1): print(i)
#str owog="Delger" # len()- urt # lower()- jijigruuleh # upper()- tomruulah # capitalize()- ehnii useg tomruulah # replace()- temdegt solih print(owog.find("e")) print(owog.count("e")) print(owog[2:10]) a=21 b=21 if a>b: print("a too ih") elif a==b: print("tentsuu") else: print("b too ih") a, b = input().split() for i in range(a, b+1): print(i)
null
[ 0, 1, 2, 3 ]
244
050e2207ac7331444d39305869c4b25bcbc53907
<mask token>
<mask token> print( 'Note: total_earnings values were scaled by multiplying by {:.10f} and adding {:.6f}' .format(scaler.scale_[8], scaler.min_[8])) <mask token> scaled_training_df.to_csv('sales_data_training_scaled.csv', index=False) scaled_training_df.to_csv('sales_data_test_scaled.csv', index=False)
<mask token> training_data_df = pd.read_csv('sales_data_training.csv') test_data_df = pd.read_csv('sales_data_test.csv') scaler = MinMaxScaler(feature_range=(0, 1)) scaled_training = scaler.fit_transform(training_data_df) scaled_testing = scaler.transform(test_data_df) print( 'Note: total_earnings values were scaled by multiplying by {:.10f} and adding {:.6f}' .format(scaler.scale_[8], scaler.min_[8])) scaled_training_df = pd.DataFrame(scaled_training, columns=training_data_df .columns.values) scaled_testing_df = pd.DataFrame(scaled_testing, columns=test_data_df. columns.values) scaled_training_df.to_csv('sales_data_training_scaled.csv', index=False) scaled_training_df.to_csv('sales_data_test_scaled.csv', index=False)
import pandas as pd from sklearn.preprocessing import MinMaxScaler training_data_df = pd.read_csv('sales_data_training.csv') test_data_df = pd.read_csv('sales_data_test.csv') scaler = MinMaxScaler(feature_range=(0, 1)) scaled_training = scaler.fit_transform(training_data_df) scaled_testing = scaler.transform(test_data_df) print( 'Note: total_earnings values were scaled by multiplying by {:.10f} and adding {:.6f}' .format(scaler.scale_[8], scaler.min_[8])) scaled_training_df = pd.DataFrame(scaled_training, columns=training_data_df .columns.values) scaled_testing_df = pd.DataFrame(scaled_testing, columns=test_data_df. columns.values) scaled_training_df.to_csv('sales_data_training_scaled.csv', index=False) scaled_training_df.to_csv('sales_data_test_scaled.csv', index=False)
import pandas as pd from sklearn.preprocessing import MinMaxScaler #loading data from CSV training_data_df = pd.read_csv("sales_data_training.csv") test_data_df = pd.read_csv("sales_data_test.csv") #scaler scaler = MinMaxScaler(feature_range=(0,1)) #scale both inputs and outputs scaled_training = scaler.fit_transform(training_data_df) scaled_testing = scaler.transform(test_data_df) #to bring it back to the original values print("Note: total_earnings values were scaled by multiplying by {:.10f} and adding {:.6f}".format(scaler.scale_[8], scaler.min_[8])) #create a new scaled dataframe object scaled_training_df = pd.DataFrame(scaled_training, columns=training_data_df.columns.values) scaled_testing_df = pd.DataFrame(scaled_testing, columns=test_data_df.columns.values) #save the scaled dataframe to new csv files scaled_training_df.to_csv("sales_data_training_scaled.csv", index=False) scaled_training_df.to_csv("sales_data_test_scaled.csv", index=False)
[ 0, 1, 2, 3, 4 ]
245
df64d769ffba8cddac34282a526122e3c941249d
#!/usr/bin/env python import os import tempfile import shutil import math import sys import subprocess from irank.config import IrankOptionParser, IrankApp from irank import db as irank_db STATUS = 0 def main(): p = IrankOptionParser('%prog -d DEST playlist_name [playlist_name ...]') p.add_option('-d', '--dest', help='export destination', default=None) p.add_option('-l', '--limit', type="int", help='per-playlist filesize limit', default=None) p.add_option('--no-checksum', dest='checksum', action="store_false", default=True) p.add_option('-i', '--interactive', action='store_true', help='Interactively resolve errors') p.add_option('--rsync-opt', dest='rsync_opts', action='append', default=[], help='Add rsync option (can be used multiple times)') opts, args = p.parse_args() assert opts.dest, p.get_usage() assert len(args) > 0, p.get_usage() app = IrankApp(opts) music_base = os.path.expanduser(opts.music) irank_base = os.path.expanduser(opts.irank) export_base = os.path.expanduser(opts.dest) export_music = export_base # Used to be __music, but android 4+ doesn't like sub-folders songs = {} all_songs = set() # we use hard-links, so the export_temp must be on the same device as our music! # export_temp = tempfile.mkdtemp(prefix='irank-export-') export_temp = os.path.join(irank_base, "__export_temp") if os.path.exists(export_temp): shutil.rmtree(export_temp) else: os.makedirs(export_temp) shutil.copy( os.path.join(irank_base, "irank.sqlite"), os.path.join(export_temp, "irank.sqlite") ) try: for playlist in args: playlist_songs = set(app.songs_for(playlist, relative=True)) songs[playlist] = playlist_songs all_songs.update(playlist_songs) write_m3u(export_temp, playlist, sorted(playlist_songs)) print "Generated playlist %s: %s files" % (playlist, len(playlist_songs)) print "linking into %r ..." % (export_temp,) total_size = link_all_files(all_songs, export_temp=export_temp, music_base=music_base, limit=opts.limit) print "Syncing %s files (%0.2fgb)" % (len(all_songs),total_size / (math.pow(1000, 3))) extra_sync_opts = [] syncing = True while syncing: try: sync(export_temp, export_music, additional_opts=opts.rsync_opts + extra_sync_opts, checksum=opts.checksum) break except (subprocess.CalledProcessError, OSError) as e: if not opts.interactive: raise print >> sys.stderr, "Error syncing: %s\n" % (e,) while True: print >> sys.stderr, "Press Ctrl-C to abort, <return> to restart, 'k' to retry (skipping existing files) and 's' to skip to next step" result = raw_input().strip().lower() if result == 'k': extra_sync_opts = ['--ignore-existing'] break elif result == '': extra_sync_opts = [] break elif result == 's': syncing = False break else: print >> sys.stderr, "Eh?" finally: shutil.rmtree(export_temp) def link_all_files(all_songs, export_temp, music_base, limit=None): total_size = 0 def file_size(path): try: return os.stat(path).st_size except OSError: print >> sys.stderr, "couldn't get file size of file: %s" % (path,) return None for file in all_songs: #if not os.path.isdir(os.path.dirname( src_file = os.path.join(music_base, file) src_file_size = file_size(src_file) if src_file_size is None: continue if limit and (total_size + src_file_size) > limit: return total_size else: total_size += src_file_size link_dest = os.path.join(export_temp, file) link_dest_dir = os.path.dirname(link_dest) if not os.path.isdir(link_dest_dir): os.makedirs(link_dest_dir) os.link(src_file, link_dest) return total_size def sync(src, dest, additional_opts=[], checksum=True): cmd = [ 'rsync', #'-n', '--progress', '--modify-window=5', '-r', #'-v', '--delete-before'] if checksum: cmd.append('-c') cmd = cmd + additional_opts + [src + os.path.sep, dest] print "running: %r" % (cmd,) subprocess.check_call(cmd, stdin=subprocess.PIPE) def write_m3u(dest, name, files): global STATUS encoding = sys.getfilesystemencoding() with open(os.path.join(dest, name + '.m3u'), 'w') as output: for name in files: try: print >> output, name.encode(encoding) except (UnicodeEncodeError, UnicodeDecodeError) as err: print "FAILED to write song: %r" % (name,) STATUS = 1 if __name__ == '__main__': main() sys.exit(STATUS)
null
null
null
null
[ 0 ]
246
21b295e28a7e4443ea116df1b22ff5074dca955a
<mask token>
<mask token> for i in range(1, n + 1): print(i)
n = int(input('nhap gia tri')) for i in range(1, n + 1): print(i)
n =int(input("nhap gia tri")) for i in range(1,n+1): print(i)
null
[ 0, 1, 2, 3 ]
247
93737e4c409d0efb1ae2263cb60d4b03d9aad0d8
<mask token>
<mask token> ap.add_argument('-D', '--dir', required=False, help='Directory to sort') <mask token> if args['dir'] == None: DIR = os.getcwd() elif os.path.exists(args['dir']): DIR = args['dir'] for file in os.listdir(DIR): if not os.path.isdir(os.path.join(DIR, file)): name, ext = os.path.splitext(file) ext = ext[::-1][:-1][::-1] if os.path.exists(os.path.join(DIR, ext.upper())): shutil.move(os.path.join(DIR, file), os.path.join(DIR, ext. upper(), file)) else: os.mkdir(os.path.join(DIR, ext.upper())) shutil.move(os.path.join(DIR, file), os.path.join(DIR, ext. upper(), file))
<mask token> ap = argparse.ArgumentParser() ap.add_argument('-D', '--dir', required=False, help='Directory to sort') args = vars(ap.parse_args()) if args['dir'] == None: DIR = os.getcwd() elif os.path.exists(args['dir']): DIR = args['dir'] for file in os.listdir(DIR): if not os.path.isdir(os.path.join(DIR, file)): name, ext = os.path.splitext(file) ext = ext[::-1][:-1][::-1] if os.path.exists(os.path.join(DIR, ext.upper())): shutil.move(os.path.join(DIR, file), os.path.join(DIR, ext. upper(), file)) else: os.mkdir(os.path.join(DIR, ext.upper())) shutil.move(os.path.join(DIR, file), os.path.join(DIR, ext. upper(), file))
import os import shutil import argparse ap = argparse.ArgumentParser() ap.add_argument('-D', '--dir', required=False, help='Directory to sort') args = vars(ap.parse_args()) if args['dir'] == None: DIR = os.getcwd() elif os.path.exists(args['dir']): DIR = args['dir'] for file in os.listdir(DIR): if not os.path.isdir(os.path.join(DIR, file)): name, ext = os.path.splitext(file) ext = ext[::-1][:-1][::-1] if os.path.exists(os.path.join(DIR, ext.upper())): shutil.move(os.path.join(DIR, file), os.path.join(DIR, ext. upper(), file)) else: os.mkdir(os.path.join(DIR, ext.upper())) shutil.move(os.path.join(DIR, file), os.path.join(DIR, ext. upper(), file))
import os import shutil import argparse ap = argparse.ArgumentParser() ap.add_argument('-D','--dir', required=False, help='Directory to sort') args = vars(ap.parse_args()) if args['dir'] == None: DIR = os.getcwd() elif os.path.exists(args['dir']): DIR = args['dir'] for file in os.listdir(DIR): if not os.path.isdir(os.path.join(DIR, file)): name, ext = os.path.splitext(file) ext = ext[::-1][:-1][::-1] if os.path.exists(os.path.join(DIR, ext.upper())): shutil.move(os.path.join(DIR, file), os.path.join(DIR, ext.upper(), file)) else: os.mkdir(os.path.join(DIR, ext.upper())) shutil.move(os.path.join(DIR, file), os.path.join(DIR, ext.upper(), file))
[ 0, 1, 2, 3, 4 ]
248
b5611c668a40e1735c92d6d00867885023ad713f
<mask token> def f(A): if len(A) == 1: return 0 else: rightStart = len(A) // 2 leftArray = A[0:rightStart] righArray = A[rightStart:] B, b = count_and_sort(leftArray) C, c = count_and_sort(righArray) D, d = count_and_sort_split(B, C) return b + c + d <mask token> def count_and_sort_split(B, C): result = [] nums = 0 i = 0 j = 0 while i < len(B) or j < len(C): if i >= len(B): result = result + C[j:] break elif j >= len(C): result = result + B[i:] break if B[i] < C[j]: result.append(B[i]) i += 1 elif B[i] > C[j]: result.append(C[j]) nums = nums + len(B[i:]) j += 1 return result, nums <mask token>
<mask token> def f(A): if len(A) == 1: return 0 else: rightStart = len(A) // 2 leftArray = A[0:rightStart] righArray = A[rightStart:] B, b = count_and_sort(leftArray) C, c = count_and_sort(righArray) D, d = count_and_sort_split(B, C) return b + c + d def count_and_sort(A): if len(A) == 1: return A, 0 elif len(A) == 2: if A[0] < A[1]: return A, 0 else: temp = A[0] A[0] = A[1] A[1] = temp return A, 1 else: rightStart = len(A) // 2 leftArray = A[0:rightStart] righArray = A[rightStart:] B, b = count_and_sort(leftArray) C, c = count_and_sort(righArray) D, d = count_and_sort_split(B, C) return D, b + c + d def count_and_sort_split(B, C): result = [] nums = 0 i = 0 j = 0 while i < len(B) or j < len(C): if i >= len(B): result = result + C[j:] break elif j >= len(C): result = result + B[i:] break if B[i] < C[j]: result.append(B[i]) i += 1 elif B[i] > C[j]: result.append(C[j]) nums = nums + len(B[i:]) j += 1 return result, nums <mask token>
<mask token> with open('IntegerArray.txt', 'r') as f: target = f.readlines() for x in range(len(target)): target[x] = int(target[x]) def f(A): if len(A) == 1: return 0 else: rightStart = len(A) // 2 leftArray = A[0:rightStart] righArray = A[rightStart:] B, b = count_and_sort(leftArray) C, c = count_and_sort(righArray) D, d = count_and_sort_split(B, C) return b + c + d def count_and_sort(A): if len(A) == 1: return A, 0 elif len(A) == 2: if A[0] < A[1]: return A, 0 else: temp = A[0] A[0] = A[1] A[1] = temp return A, 1 else: rightStart = len(A) // 2 leftArray = A[0:rightStart] righArray = A[rightStart:] B, b = count_and_sort(leftArray) C, c = count_and_sort(righArray) D, d = count_and_sort_split(B, C) return D, b + c + d def count_and_sort_split(B, C): result = [] nums = 0 i = 0 j = 0 while i < len(B) or j < len(C): if i >= len(B): result = result + C[j:] break elif j >= len(C): result = result + B[i:] break if B[i] < C[j]: result.append(B[i]) i += 1 elif B[i] > C[j]: result.append(C[j]) nums = nums + len(B[i:]) j += 1 return result, nums print(f(target))
target = [] with open('IntegerArray.txt', 'r') as f: target = f.readlines() for x in range(len(target)): target[x] = int(target[x]) def f(A): if len(A) == 1: return 0 else: rightStart = len(A) // 2 leftArray = A[0:rightStart] righArray = A[rightStart:] B, b = count_and_sort(leftArray) C, c = count_and_sort(righArray) D, d = count_and_sort_split(B, C) return b + c + d def count_and_sort(A): if len(A) == 1: return A, 0 elif len(A) == 2: if A[0] < A[1]: return A, 0 else: temp = A[0] A[0] = A[1] A[1] = temp return A, 1 else: rightStart = len(A) // 2 leftArray = A[0:rightStart] righArray = A[rightStart:] B, b = count_and_sort(leftArray) C, c = count_and_sort(righArray) D, d = count_and_sort_split(B, C) return D, b + c + d def count_and_sort_split(B, C): result = [] nums = 0 i = 0 j = 0 while i < len(B) or j < len(C): if i >= len(B): result = result + C[j:] break elif j >= len(C): result = result + B[i:] break if B[i] < C[j]: result.append(B[i]) i += 1 elif B[i] > C[j]: result.append(C[j]) nums = nums + len(B[i:]) j += 1 return result, nums print(f(target))
target=[] with open('IntegerArray.txt','r') as f: target=f.readlines() for x in range(len(target)): target[x]=int(target[x]) def f(A): if len(A)==1: return 0 else: rightStart=len(A)//2 leftArray=A[0:rightStart] righArray=A[rightStart:] B,b=count_and_sort(leftArray) C,c=count_and_sort(righArray) D,d=count_and_sort_split(B,C) return b+c+d def count_and_sort(A): if len(A)==1: return A,0 elif len(A)==2: if A[0]<A[1]: return A,0 else: temp=A[0] A[0]=A[1] A[1]=temp return A,1 else: rightStart=len(A)//2 leftArray=A[0:rightStart] righArray=A[rightStart:] B,b=count_and_sort(leftArray) C,c=count_and_sort(righArray) D,d=count_and_sort_split(B,C) return D,b+c+d def count_and_sort_split(B,C): result=[] nums=0 i=0 j=0 while i<len(B) or j<len(C): if i>=len(B): result=result+C[j:] break elif j>=len(C): result=result+B[i:] break if B[i]<C[j]: result.append(B[i]) i+=1 elif B[i]>C[j]: result.append(C[j]) nums=nums+len(B[i:]) j+=1 return result,nums print(f(target))
[ 2, 3, 4, 5, 6 ]
249
09f032301fa9389f6b07687e0ee13844e0b4ddf3
from artichoke import DefaultManager, Config from artichoke.helpers import read, prompt from fabric.api import env, task, run import os chars = ''.join(chr(c) if chr(c).isupper() or chr(c).islower() else '_' for c in range(256)) class MagicDefaultManager(DefaultManager): def __init__(self, env): self.env = env def SSH__user(self): return env.user def Global__project_root(self): query = "Enter the project code root path" default = "/home/%s/%s" % (self.env.user, self.config.project_name) return read(query, default=default) def Global__python_version(self): major, minor, rev = tuple(run("python --version").split(' ')[1].split(".")) return "%s.%s" % (major, minor) def Global__build(self): query = "Select deployment mode" options = ["development", "production"] default = "development" return read(query, options=options, default=default) def Global__name(self): query = "Enter deployment name" return read(query) def Global__project_name(self): query = "Enter the project name" return read(query) def Global__branch(self): query = "Enter the git branch for current project" default = "master" return read(query, default=default) def Database__engine(self): query = "Select database engine" options = [ "postgresql_psycopg2", "postgresql", "sqlite3", "oracle", "mysql" ] default = "mysql" return read(query, options=options, default=default) def Database__config_name(self): query = "Select configuration name" default = "default" return read(query, default=default) def Database__name(self): name = self.config.project_name.translate(chars) if self.config.Database.engine == 'sqlite3': query = "Select path to database" default = "/tmp/%s.sqlite3" % name else: query = "Select database name" default = name return read(query, default=default) def Database__user(self): if self.config.Database.engine == 'sqlite3': return "" query = "Select database user" default = self.config.project_name.translate(chars).lower() return read(query, default=default) def Database__password(self): if self.config.Database.engine == 'sqlite3': return "" query = "Select database password" default = self.config.project_name.translate(chars).lower() return read(query, default=default) def Database__host(self): if self.config.Database.engine == 'sqlite3': return "" query = "Select database host" default = "localhost" return read(query, default=default) def Database__port(self): if self.config.Database.engine == 'sqlite3': return "" query = "Select database port" default = "use %s default" % self.config.Database.engine value = read(query, default=default) return "" if value == default else value def MySQL__root_password(self): query = "Enter MySQL root password" return read(query) def GitHub__username(self): query = "Enter Github username" return read(query) def GitHub__password(self): query = "Enter Github password for user %s" % self.config.GitHub.username return read(query) def Django__static_url(self): if self.config.build == "development": return "/static/" else: if self.config.StaticServer.use_ssl: return "https://%s/" % self.config.StaticServer.hostname else: return "http://%s/" % self.config.StaticServer.hostname def StaticServer__document_root(self): query = "Enter the document root path for the static server" default = "/home/%s/klooff-static" % self.env.user return read(query, default=default) def StaticServer__hostname(self): query = "Enter the static server hostname" default = "static.klooff.com" return read(query, default=default) def ApiServer__hostname(self): query = "Enter the api server hostname" default = "api.klooff.com" return read(query, default=default) def ApiServer__ipaddress(self): query = "Enter the api server IP address for apache hostname configuration" default = "*" return read(query, default=default) def WebServer__hostname(self): query = "Enter the web server hostname" default = "www.klooff.com" return read(query, default=default) def ApiServer__use_ssl(self): query = "Use SSL for Api?" return prompt(query, default=True) def StaticServer__use_ssl(self): query = "Use SSL for Static?" return prompt(query, default=True) def StaticServer__ipaddress(self): query = "Enter the static server IP address for apache hostname configuration" default = "*" return read(query, default=default) def ApiServer__certificates_dir(self): query = "Enter the certificates directory (relative to klooff-control root)" default = os.path.join(self.env.local_code_root, "configs", "certs", "stage") return read(query, default) def StaticServer__certificates_dir(self): query = "Enter the Static ssl certificates directory" default = os.path.join(self.config.ApiServer.document_root, "configs", "certs", "static") return read(query, default) def ApiServer__document_root(self): query = "Enter the document root path for the API server" default = "/home/%s/klooff-server" % self.env.user return read(query, default=default) def Sentry__dsn(self): query = "Enter the DSN where sentry logs are to be sent" default = "http://b97f9ac6f98f48928afeed6a0ef91c0b:f8335b789f4945d59e93fa75aace5e85@localhost:9000/2" return read(query, default=default) class MagicConfig(Config): def __init__(self, env, config_file=None): Config.__init__( self, config_file, default_manager=MagicDefaultManager(env) ) self.add_section("Database") self.add_section("MySQL") self.add_section("GitHub") self.add_section("Django") self.add_section("StaticServer") self.add_section("ApiServer") self.add_section("WebServer") self.add_section("SSH") self.add_section("Sentry") self.add_section("Celery") self.add_section("Redis") self.add_section("Session") self.add_section("Mongodb") def set_config(name): if name.endswith(".ini"): name = name[:-4] env.config_file = os.path.join( env.local_code_root, "configs", "%s.ini" % name) env.config = MagicConfig(env, env.config_file) env.config.autosave(env.config_file) #env.config.name = name if env.config.SSH.is_set("user"): env.user = env.config.SSH.user if env.config.SSH.is_set("password"): env.password = env.config.SSH.password print "Setting user to ", env.user if env.config.SSH.is_set("password"): env.password = env.config.SSH.password if env.config.SSH.is_set("hostname"): env.hosts = [env.config.SSH.hostname] print "Setting hosts to ", env.hosts if env.config.SSH.is_set("identity_file"): env.key_filename = os.path.join( env.local_code_root, "configs", "keys", env.config.SSH.identity_file) print "Setting identity file to ", env.key_filename @task def save(): """Saves the current config state.""" env.config.save(env.config_file) @task def set(name): """Loads a given configuration file from the configs directory""" set_config(name)
null
null
null
null
[ 0 ]
250
68b967ecf18d576758cf05e889919944cfc34dcd
<mask token> class Entity(Agent): <mask token> def __init__(self, unique_id, model): super().__init__(unique_id, model) self.type = '' self.position = '' self.log = [] self.move_probability = None self.retire_probability = None self._next_state = None <mask token> def get_next_position(self, next_level): """ randomly pick a position in some level and return its ID and the ID of its current occupant. :param next_level: int """ next_positions = list(self.model.positions[int(next_level)].values()) shuffle(next_positions) for p in next_positions: if p.dual[1] != self.type: self.model.desired_positions.append(p.unique_id) return p.unique_id, p.dual[0] def retire(self, other): """ swap with an agent and mark yourself as retired :param other: an Entity-class object """ self.swap(other) self.model.schedule.add(other) self.model.schedule.remove(self) self.model.retirees[self.type][self.model.schedule.steps] = self self.model.per_step_movement[self.type] += 1 def swap(self, other): """ swap positions with an entity :param other: an Entity-class object """ new_position = other.position other.position = self.position other.log.append(other.position) your_old_level = int(self.position[0]) self.model.positions[your_old_level][self.position].dual = [other. unique_id, other.type] self.position = new_position self.log.append(self.position) if self.position != '': your_new_level = int(self.position[0]) self.model.positions[your_new_level][self.position].dual = [self .unique_id, self.type] self.model.per_step_movement[self.type] += 1 def unmoving_update_log(self): """update own log if not moving.""" self.log.append(self.log[-1])
<mask token> class Entity(Agent): <mask token> def __init__(self, unique_id, model): super().__init__(unique_id, model) self.type = '' self.position = '' self.log = [] self.move_probability = None self.retire_probability = None self._next_state = None def pick_move(self): """ given a vector of probabilities that sums to one, pick which level you'll go to e.g. vector of probabilities = [0.3, 0.1, 0.3, 0.3] :return: the draw, an int """ cum_sum = np.cumsum(self.move_probability) cum_sum = np.insert(cum_sum, 0, 0) rd = np.random.uniform(0.0, 1.0) m = np.asarray(cum_sum < rd).nonzero()[0] next_level = m[len(m) - 1] return next_level def get_next_position(self, next_level): """ randomly pick a position in some level and return its ID and the ID of its current occupant. :param next_level: int """ next_positions = list(self.model.positions[int(next_level)].values()) shuffle(next_positions) for p in next_positions: if p.dual[1] != self.type: self.model.desired_positions.append(p.unique_id) return p.unique_id, p.dual[0] def retire(self, other): """ swap with an agent and mark yourself as retired :param other: an Entity-class object """ self.swap(other) self.model.schedule.add(other) self.model.schedule.remove(self) self.model.retirees[self.type][self.model.schedule.steps] = self self.model.per_step_movement[self.type] += 1 def swap(self, other): """ swap positions with an entity :param other: an Entity-class object """ new_position = other.position other.position = self.position other.log.append(other.position) your_old_level = int(self.position[0]) self.model.positions[your_old_level][self.position].dual = [other. unique_id, other.type] self.position = new_position self.log.append(self.position) if self.position != '': your_new_level = int(self.position[0]) self.model.positions[your_new_level][self.position].dual = [self .unique_id, self.type] self.model.per_step_movement[self.type] += 1 def unmoving_update_log(self): """update own log if not moving.""" self.log.append(self.log[-1])
<mask token> class Entity(Agent): """ superclass for vacancy and actor agents not intended to be used on its own, but to inherit its methods to multiple other agents """ def __init__(self, unique_id, model): super().__init__(unique_id, model) self.type = '' self.position = '' self.log = [] self.move_probability = None self.retire_probability = None self._next_state = None def pick_move(self): """ given a vector of probabilities that sums to one, pick which level you'll go to e.g. vector of probabilities = [0.3, 0.1, 0.3, 0.3] :return: the draw, an int """ cum_sum = np.cumsum(self.move_probability) cum_sum = np.insert(cum_sum, 0, 0) rd = np.random.uniform(0.0, 1.0) m = np.asarray(cum_sum < rd).nonzero()[0] next_level = m[len(m) - 1] return next_level def get_next_position(self, next_level): """ randomly pick a position in some level and return its ID and the ID of its current occupant. :param next_level: int """ next_positions = list(self.model.positions[int(next_level)].values()) shuffle(next_positions) for p in next_positions: if p.dual[1] != self.type: self.model.desired_positions.append(p.unique_id) return p.unique_id, p.dual[0] def retire(self, other): """ swap with an agent and mark yourself as retired :param other: an Entity-class object """ self.swap(other) self.model.schedule.add(other) self.model.schedule.remove(self) self.model.retirees[self.type][self.model.schedule.steps] = self self.model.per_step_movement[self.type] += 1 def swap(self, other): """ swap positions with an entity :param other: an Entity-class object """ new_position = other.position other.position = self.position other.log.append(other.position) your_old_level = int(self.position[0]) self.model.positions[your_old_level][self.position].dual = [other. unique_id, other.type] self.position = new_position self.log.append(self.position) if self.position != '': your_new_level = int(self.position[0]) self.model.positions[your_new_level][self.position].dual = [self .unique_id, self.type] self.model.per_step_movement[self.type] += 1 def unmoving_update_log(self): """update own log if not moving.""" self.log.append(self.log[-1])
<mask token> from mesa import Agent from random import shuffle import numpy as np class Entity(Agent): """ superclass for vacancy and actor agents not intended to be used on its own, but to inherit its methods to multiple other agents """ def __init__(self, unique_id, model): super().__init__(unique_id, model) self.type = '' self.position = '' self.log = [] self.move_probability = None self.retire_probability = None self._next_state = None def pick_move(self): """ given a vector of probabilities that sums to one, pick which level you'll go to e.g. vector of probabilities = [0.3, 0.1, 0.3, 0.3] :return: the draw, an int """ cum_sum = np.cumsum(self.move_probability) cum_sum = np.insert(cum_sum, 0, 0) rd = np.random.uniform(0.0, 1.0) m = np.asarray(cum_sum < rd).nonzero()[0] next_level = m[len(m) - 1] return next_level def get_next_position(self, next_level): """ randomly pick a position in some level and return its ID and the ID of its current occupant. :param next_level: int """ next_positions = list(self.model.positions[int(next_level)].values()) shuffle(next_positions) for p in next_positions: if p.dual[1] != self.type: self.model.desired_positions.append(p.unique_id) return p.unique_id, p.dual[0] def retire(self, other): """ swap with an agent and mark yourself as retired :param other: an Entity-class object """ self.swap(other) self.model.schedule.add(other) self.model.schedule.remove(self) self.model.retirees[self.type][self.model.schedule.steps] = self self.model.per_step_movement[self.type] += 1 def swap(self, other): """ swap positions with an entity :param other: an Entity-class object """ new_position = other.position other.position = self.position other.log.append(other.position) your_old_level = int(self.position[0]) self.model.positions[your_old_level][self.position].dual = [other. unique_id, other.type] self.position = new_position self.log.append(self.position) if self.position != '': your_new_level = int(self.position[0]) self.model.positions[your_new_level][self.position].dual = [self .unique_id, self.type] self.model.per_step_movement[self.type] += 1 def unmoving_update_log(self): """update own log if not moving.""" self.log.append(self.log[-1])
""" generalised behaviour for actors and vacancies """ from mesa import Agent from random import shuffle import numpy as np class Entity(Agent): """ superclass for vacancy and actor agents not intended to be used on its own, but to inherit its methods to multiple other agents """ def __init__(self, unique_id, model): super().__init__(unique_id, model) self.type = '' # type of entity: vacancy, or actor self.position = '' # ID of current position self.log = [] # log of moves self.move_probability = None # for in-system moves; float [0,1] self.retire_probability = None # for leaving the system; float [0,1] self._next_state = None def pick_move(self): """ given a vector of probabilities that sums to one, pick which level you'll go to e.g. vector of probabilities = [0.3, 0.1, 0.3, 0.3] :return: the draw, an int """ cum_sum = np.cumsum(self.move_probability) cum_sum = np.insert(cum_sum, 0, 0) # throw random dart rd = np.random.uniform(0.0, 1.0) # see where dart hit m = np.asarray(cum_sum < rd).nonzero()[0] next_level = m[len(m) - 1] return next_level def get_next_position(self, next_level): """ randomly pick a position in some level and return its ID and the ID of its current occupant. :param next_level: int """ next_positions = list(self.model.positions[int(next_level)].values()) shuffle(next_positions) for p in next_positions: if p.dual[1] != self.type: # vacancies only pick positions occupied by actors, and vice versa self.model.desired_positions.append(p.unique_id) # mark position as desired return p.unique_id, p.dual[0] # return positions ID and ID of current dual/occupant def retire(self, other): """ swap with an agent and mark yourself as retired :param other: an Entity-class object """ self.swap(other) self.model.schedule.add(other) # put new entity into scheduler self.model.schedule.remove(self) # take yourself out of it self.model.retirees[self.type][self.model.schedule.steps] = self # mark yourself as retiree self.model.per_step_movement[self.type] += 1 def swap(self, other): """ swap positions with an entity :param other: an Entity-class object """ new_position = other.position # mark where you're going other.position = self.position # put swapee in your position other.log.append(other.position) # update swapee's log # update your old position's dual your_old_level = int(self.position[0]) self.model.positions[your_old_level][self.position].dual = [other.unique_id, other.type] self.position = new_position # take your new position self.log.append(self.position) # update your log # if you have a new position, update its dual if self.position != '': your_new_level = int(self.position[0]) self.model.positions[your_new_level][self.position].dual = [self.unique_id, self.type] # increment movement counters self.model.per_step_movement[self.type] += 1 def unmoving_update_log(self): """update own log if not moving.""" self.log.append(self.log[-1])
[ 6, 7, 8, 9, 10 ]
251
46babde9c26a944c9d29121b6bbf89a32f242a81
<mask token>
<mask token> def sun_prepare(xpoint, ypoint, radius, color, angle): delta_list = [] radius_list = [] for delta in range(0, 360, angle): delta_list.append(delta) radius_list.append(random.randint(radius - 10, radius + 10)) return xpoint, ypoint, color, radius, delta_list, radius_list <mask token>
<mask token> def sun_prepare(xpoint, ypoint, radius, color, angle): delta_list = [] radius_list = [] for delta in range(0, 360, angle): delta_list.append(delta) radius_list.append(random.randint(radius - 10, radius + 10)) return xpoint, ypoint, color, radius, delta_list, radius_list def sun(prepare_list): xpoint = prepare_list[0] ypoint = prepare_list[1] color = prepare_list[2] radius = prepare_list[3] delta_list = prepare_list[4] radius_list = prepare_list[5] sd.start_drawing() point = sd.get_point(xpoint, ypoint) sd.circle(center_position=point, radius=radius * 3.9, color=sd. background_color, width=0) sd.circle(center_position=point, radius=radius, color=color, width=0) for j, (delta, radius) in enumerate(zip(delta_list, radius_list)): v = sd.get_vector(start_point=point, angle=delta, width=6, length= random.randint(radius * 2, radius * 3)) v.draw(color) sd.finish_drawing()
import simple_draw as sd import random def sun_prepare(xpoint, ypoint, radius, color, angle): delta_list = [] radius_list = [] for delta in range(0, 360, angle): delta_list.append(delta) radius_list.append(random.randint(radius - 10, radius + 10)) return xpoint, ypoint, color, radius, delta_list, radius_list def sun(prepare_list): xpoint = prepare_list[0] ypoint = prepare_list[1] color = prepare_list[2] radius = prepare_list[3] delta_list = prepare_list[4] radius_list = prepare_list[5] sd.start_drawing() point = sd.get_point(xpoint, ypoint) sd.circle(center_position=point, radius=radius * 3.9, color=sd. background_color, width=0) sd.circle(center_position=point, radius=radius, color=color, width=0) for j, (delta, radius) in enumerate(zip(delta_list, radius_list)): v = sd.get_vector(start_point=point, angle=delta, width=6, length= random.randint(radius * 2, radius * 3)) v.draw(color) sd.finish_drawing()
import simple_draw as sd import random # sd.resolution = (1400, 900) # Prepare data for the sun function def sun_prepare(xpoint, ypoint, radius, color, angle): delta_list = [] radius_list = [] for delta in range(0, 360, angle): delta_list.append(delta) radius_list.append(random.randint(radius - 10, radius + 10)) return xpoint, ypoint, color, radius, delta_list, radius_list # Drawing the sun def sun(prepare_list): xpoint = prepare_list[0] ypoint = prepare_list[1] color = prepare_list[2] radius = prepare_list[3] delta_list = prepare_list[4] radius_list = prepare_list[5] sd.start_drawing() point = sd.get_point(xpoint, ypoint) sd.circle(center_position=point, radius=radius * 3.9, color=sd.background_color, width=0) sd.circle(center_position=point, radius=radius, color=color, width=0) for j, (delta, radius) in enumerate(zip(delta_list, radius_list)): v = sd.get_vector(start_point=point, angle=delta, width=6, length=random.randint(radius * 2, radius * 3)) v.draw(color) sd.finish_drawing() # sd.pause()
[ 0, 1, 2, 3, 4 ]
252
e736991f364ba9ff709348e4b1f612b1e9673281
<mask token>
<mask token> app = Flask(__name__) <mask token>
from flask import * app = Flask(__name__) from app import views from app import admin_views from app import usr_reg from app import cookie from app import db_connect
from flask import * app=Flask(__name__) from app import views from app import admin_views from app import usr_reg from app import cookie from app import db_connect
null
[ 0, 1, 2, 3 ]
253
07215403750be53994ae36727b6f790202b88697
# Inspiration: [Fake Album Covers](https://fakealbumcovers.com/) from IPython.display import Image as IPythonImage from PIL import Image from PIL import ImageFont from PIL import ImageDraw import requests from xml.etree import ElementTree as ET def display_cover(top,bottom ): name='album_art_raw.png' album_art_raw = requests.get('https://picsum.photos/500/500/?random') with open(name,'wb') as album_art_raw_file: album_art_raw_file.write(album_art_raw.content) img = Image.open("album_art_raw.png") draw = ImageDraw.Draw(img) band_name_font = ImageFont.truetype("/usr/share/fonts/truetype/dejavu/DejaVuSans-Bold.ttf", 25) #25pt font album_name_font = ImageFont.truetype("/usr/share/fonts/truetype/dejavu/DejaVuSans-Bold.ttf", 20) # 20pt font band_x, band_y = 50, 50 album_x, album_y = 50, 400 outline_color ="black" draw.text((band_x-1, band_y-1), top, font=band_name_font, fill=outline_color) draw.text((band_x+1, band_y-1), top, font=band_name_font, fill=outline_color) draw.text((band_x-1, band_y+1), top, font=band_name_font, fill=outline_color) draw.text((band_x+1, band_y+1), top, font=band_name_font, fill=outline_color) draw.text((album_x-1, album_y-1), bottom , font=album_name_font, fill=outline_color) draw.text((album_x+1, album_y-1), bottom , font=album_name_font, fill=outline_color) draw.text((album_x-1, album_y+1), bottom , font=album_name_font, fill=outline_color) draw.text((album_x+1, album_y+1), bottom , font=album_name_font, fill=outline_color) draw.text((band_x,band_y),top,(255,255,255),font=band_name_font) draw.text((album_x, album_y),bottom,(255,255,255),font=album_name_font) return img wikipedia='https://en.wikipedia.org/wiki/Special:Random' page = requests.get(wikipedia).text.strip() file= ET.fromstring(page).find('head/title') band_title = file.text.replace(' - Wikipedia','') wikipedia='https://en.wikipedia.org/wiki/Special:Random' page = requests.get(wikipedia).text.strip()p file= ET.fromstring(page).find('head/title') album_title = file.text.replace(' - Wikipedia','') print(album_title) print("Your band: ", band_title) print("Your album: ", album_title) img = display_cover(band_title,album_title) img.save('sample-out.png') IPythonImage(filename='sample-out.png')
null
null
null
null
[ 0 ]
254
18d3f58048b7e5d792eb2494ecc62bb158ac7407
<mask token> @app.route('/') def hello_world(): return render_template('index.html') @app.route('/on/') def on(): state = powerswitch.on() return json.dumps(state) @app.route('/off/') def off(): state = powerswitch.off() return json.dumps(state) @app.route('/toggle/') def toggle(): state = powerswitch.toggle() return json.dumps(state) @app.route('/state/') def state(): state = powerswitch.state() return json.dumps(state) <mask token>
<mask token> @app.route('/') def hello_world(): return render_template('index.html') @app.route('/on/') def on(): state = powerswitch.on() return json.dumps(state) @app.route('/off/') def off(): state = powerswitch.off() return json.dumps(state) @app.route('/toggle/') def toggle(): state = powerswitch.toggle() return json.dumps(state) @app.route('/state/') def state(): state = powerswitch.state() return json.dumps(state) if __name__ == '__main__': powerswitch.on() app.run(host='0.0.0.0', port=80, debug=True)
<mask token> app = Flask(__name__) @app.route('/') def hello_world(): return render_template('index.html') @app.route('/on/') def on(): state = powerswitch.on() return json.dumps(state) @app.route('/off/') def off(): state = powerswitch.off() return json.dumps(state) @app.route('/toggle/') def toggle(): state = powerswitch.toggle() return json.dumps(state) @app.route('/state/') def state(): state = powerswitch.state() return json.dumps(state) if __name__ == '__main__': powerswitch.on() app.run(host='0.0.0.0', port=80, debug=True)
from flask import Flask from flask import render_template from flask import make_response import json from lib import powerswitch app = Flask(__name__) @app.route('/') def hello_world(): return render_template('index.html') @app.route('/on/') def on(): state = powerswitch.on() return json.dumps(state) @app.route('/off/') def off(): state = powerswitch.off() return json.dumps(state) @app.route('/toggle/') def toggle(): state = powerswitch.toggle() return json.dumps(state) @app.route('/state/') def state(): state = powerswitch.state() return json.dumps(state) if __name__ == '__main__': powerswitch.on() app.run(host='0.0.0.0', port=80, debug=True)
from flask import Flask from flask import render_template from flask import make_response import json from lib import powerswitch app = Flask(__name__) @app.route('/') def hello_world(): return render_template('index.html') @app.route('/on/') def on(): state = powerswitch.on() return json.dumps(state) @app.route('/off/') def off(): state = powerswitch.off() return json.dumps(state) @app.route('/toggle/') def toggle(): state = powerswitch.toggle() return json.dumps(state) @app.route('/state/') def state(): state = powerswitch.state() return json.dumps(state) if __name__ == "__main__": powerswitch.on() app.run(host='0.0.0.0', port=80, debug=True)
[ 5, 6, 7, 8, 9 ]
255
869284fa531a93c1b9812ed90a560d0bb2f87e97
<mask token>
<mask token> def fibonaci(n): for i in range(0, n): j = 1 i = i + j j = i return fibonaci
def ep(m, h, el, g=9.8): E = m * h * g if E < el: print('le plus grand est : el') else: print('le plus grand est : E') <mask token> def fibonaci(n): for i in range(0, n): j = 1 i = i + j j = i return fibonaci
def ep(m, h, el, g=9.8): E = m * h * g if E < el: print('le plus grand est : el') else: print('le plus grand est : E') ep(3, 4, 5) def fibonaci(n): for i in range(0, n): j = 1 i = i + j j = i return fibonaci
# fonction pour voir quel est le plus grand entre l'energie limite et l'enerve potentiel def ep (m,h,el,g=9.8): E=m*h*g if E<el: print ("le plus grand est : el") else: print ("le plus grand est : E") ep(3,4,5) #fontion fibonaci 0 1 1 2 3 5 8 13 def fibonaci(n): for i in range(0,n,): j= 1 i = i + j j=i return fibonaci
[ 0, 1, 2, 3, 4 ]
256
d126efa91b964a3a374d546bb860b39ae26dfa22
<mask token> class TestGetNumber(unittest.TestCase): <mask token> def test_fib(self): self.assertEqual(Fib(5), 8) <mask token>
<mask token> class TestGetNumber(unittest.TestCase): def test_ok(self): self.assertEqual(GetNumber(), 42) def test_fib(self): self.assertEqual(Fib(5), 8) <mask token>
<mask token> class TestGetNumber(unittest.TestCase): def test_ok(self): self.assertEqual(GetNumber(), 42) def test_fib(self): self.assertEqual(Fib(5), 8) if __name__ == '__main__': unittest.main()
<mask token> import unittest from bazel_tutorial.examples.py.lib import GetNumber from bazel_tutorial.examples.py.fibonacci.fib import Fib class TestGetNumber(unittest.TestCase): def test_ok(self): self.assertEqual(GetNumber(), 42) def test_fib(self): self.assertEqual(Fib(5), 8) if __name__ == '__main__': unittest.main()
"""A tiny example binary for the native Python rules of Bazel.""" import unittest from bazel_tutorial.examples.py.lib import GetNumber from bazel_tutorial.examples.py.fibonacci.fib import Fib class TestGetNumber(unittest.TestCase): def test_ok(self): self.assertEqual(GetNumber(), 42) def test_fib(self): self.assertEqual(Fib(5), 8) if __name__ == '__main__': unittest.main()
[ 2, 3, 4, 5, 6 ]
257
e582787a912f479830ed99575b2c6adb8088b4e5
<mask token> @app.route('/search_general', methods=['POST']) def query(): message = None searchQuery = request.json['searchQuery'] result = qp.generateQuery(searchQuery) response = jsonify(result) response.headers.add('Access-Control-Allow-Origin', '*') return response @app.route('/search_faceted', methods=['POST']) def facQuery(): message = None facQuery = request.json['facQuery'] result = qp.advancedQuery(facQuery) response = jsonify(result) response.headers.add('Access-Control-Allow-Origin', '*') return response <mask token>
<mask token> CORS(app) <mask token> @app.route('/search_general', methods=['POST']) def query(): message = None searchQuery = request.json['searchQuery'] result = qp.generateQuery(searchQuery) response = jsonify(result) response.headers.add('Access-Control-Allow-Origin', '*') return response @app.route('/search_faceted', methods=['POST']) def facQuery(): message = None facQuery = request.json['facQuery'] result = qp.advancedQuery(facQuery) response = jsonify(result) response.headers.add('Access-Control-Allow-Origin', '*') return response if __name__ == '__main__': app.run(debug=True)
<mask token> app = Flask(__name__) CORS(app) qp = QueryProcessor() @app.route('/search_general', methods=['POST']) def query(): message = None searchQuery = request.json['searchQuery'] result = qp.generateQuery(searchQuery) response = jsonify(result) response.headers.add('Access-Control-Allow-Origin', '*') return response @app.route('/search_faceted', methods=['POST']) def facQuery(): message = None facQuery = request.json['facQuery'] result = qp.advancedQuery(facQuery) response = jsonify(result) response.headers.add('Access-Control-Allow-Origin', '*') return response if __name__ == '__main__': app.run(debug=True)
from flask import Flask, request from flask import jsonify from preprocessing import QueryProcessor from flask_cors import CORS app = Flask(__name__) CORS(app) qp = QueryProcessor() @app.route('/search_general', methods=['POST']) def query(): message = None searchQuery = request.json['searchQuery'] result = qp.generateQuery(searchQuery) response = jsonify(result) response.headers.add('Access-Control-Allow-Origin', '*') return response @app.route('/search_faceted', methods=['POST']) def facQuery(): message = None facQuery = request.json['facQuery'] result = qp.advancedQuery(facQuery) response = jsonify(result) response.headers.add('Access-Control-Allow-Origin', '*') return response if __name__ == '__main__': app.run(debug=True)
from flask import Flask, request from flask import jsonify from preprocessing import QueryProcessor from flask_cors import CORS app = Flask(__name__) CORS(app) qp = QueryProcessor() @app.route('/search_general', methods=['POST']) def query(): message = None searchQuery = request.json['searchQuery'] result = qp.generateQuery(searchQuery) response = jsonify(result) response.headers.add('Access-Control-Allow-Origin', '*') return response @app.route('/search_faceted', methods=['POST']) def facQuery(): message = None facQuery = request.json['facQuery'] result = qp.advancedQuery(facQuery) response = jsonify(result) response.headers.add('Access-Control-Allow-Origin', '*') return response if __name__ == "__main__": app.run(debug=True)
[ 2, 3, 4, 5, 6 ]
258
cf0cf028d5f67e8deca8ebd3ad76d9c1e3563002
#!/usr/bin/python2 import sys import argparse """ This program generates an extract table having the following format: <S1> <S2> <S3> ... <Sn> ||| <T1> <T2> <T3> ... <Tk> ||| 0-0 Each line is a mapping from a source sentence to target sentence with special delimiter characters. You can give the output of this script to extract2bin to generate a binary phrase table. """ def main(): parser = argparse.ArgumentParser() parser.add_argument("source_text", type=argparse.FileType("r"), help="Tokenized sentences in the source language") parser.add_argument("target_text", type=argparse.FileType("r"), help="Tokenized sentences in the target language") args = parser.parse_args() src_lines = args.source_text.readlines() len_src = len(src_lines) tgt_lines = args.target_text.readlines() len_tgt = len(tgt_lines) if len_src != len_tgt: print "Number of sentences doesn't match: %d - %d\n" % (len_src,len_tgt) return 1 for s, t in zip(src_lines, tgt_lines): print "%s ||| %s ||| 0-0" % (s.rstrip(), t.rstrip()) args.source_text.close() args.target_text.close() if __name__ == '__main__': sys.exit(main())
null
null
null
null
[ 0 ]
259
f8bf7e2d8f06bbd00f04047153833c07bf483fd3
<mask token>
<mask token> class PyrpgConfig(AppConfig): <mask token>
<mask token> class PyrpgConfig(AppConfig): name = 'PyRPG'
from django.apps import AppConfig class PyrpgConfig(AppConfig): name = 'PyRPG'
null
[ 0, 1, 2, 3 ]
260
48677d73f6489ce789884a9dff5d50c23f47d8b3
<mask token> class WindowFeatureExtractor(object): <mask token> <mask token> def fit(self, X, y=None): """ X : list of list of str list of word windows y : ignored returns : numpy array (sparse is sparse = True) """ feats = self.__extract_features_(X) return self.vectorizer.fit(feats) def transform(self, X, y=None): return self.vectorizer.transform(X, y) def fit_transform(self, X, y=None): feats = self.__extract_features_(X) return self.vectorizer.fit_transform(feats) def __extract_features_(self, X): if len(X) == 0: raise Exception('Empty list passed to WindowFeatureExtractor.fit') mid_ix = compute_middle_index(X[0]) all_feats = [] keys = [] for window in X: d = {} for fn in self.feature_extractors: fts = fn(window, mid_ix, self.feature_val) d.update(fts) keys.extend(d.keys()) all_feats.append(d) if self.min_feat_frequency <= 1: return all_feats """ Filter to at or above minimum feature frequency """ keyCnt = Counter(keys) frequent = set([k for k, v in keyCnt.items() if v >= self. min_feat_frequency]) freq_feats = [] for d in all_feats: freq_d = dict([(k, v) for k, v in d.items() if k in frequent]) freq_feats.append(freq_d) return freq_feats
<mask token> class WindowFeatureExtractor(object): <mask token> def __init__(self, feature_extractors, min_feat_frequency, sparse=True, feature_val=1): """ feature_extractors : list of fns feature extraction fns min_feat_frequency : int minimum frequency of features to retain sparse : boolean return a sparse numpy matrix or not """ self.feature_extractors = feature_extractors self.min_feat_frequency = min_feat_frequency self.vectorizer = DictVectorizer(sparse=sparse) self.feature_val = feature_val def fit(self, X, y=None): """ X : list of list of str list of word windows y : ignored returns : numpy array (sparse is sparse = True) """ feats = self.__extract_features_(X) return self.vectorizer.fit(feats) def transform(self, X, y=None): return self.vectorizer.transform(X, y) def fit_transform(self, X, y=None): feats = self.__extract_features_(X) return self.vectorizer.fit_transform(feats) def __extract_features_(self, X): if len(X) == 0: raise Exception('Empty list passed to WindowFeatureExtractor.fit') mid_ix = compute_middle_index(X[0]) all_feats = [] keys = [] for window in X: d = {} for fn in self.feature_extractors: fts = fn(window, mid_ix, self.feature_val) d.update(fts) keys.extend(d.keys()) all_feats.append(d) if self.min_feat_frequency <= 1: return all_feats """ Filter to at or above minimum feature frequency """ keyCnt = Counter(keys) frequent = set([k for k, v in keyCnt.items() if v >= self. min_feat_frequency]) freq_feats = [] for d in all_feats: freq_d = dict([(k, v) for k, v in d.items() if k in frequent]) freq_feats.append(freq_d) return freq_feats
__author__ = 'simon.hughes' <mask token> class WindowFeatureExtractor(object): """ A simple wrapper class that takes a number of window based feature extractor functions and applies them to a dataset of windows, and then vectorizes with the sklearn DictVectorizer class """ def __init__(self, feature_extractors, min_feat_frequency, sparse=True, feature_val=1): """ feature_extractors : list of fns feature extraction fns min_feat_frequency : int minimum frequency of features to retain sparse : boolean return a sparse numpy matrix or not """ self.feature_extractors = feature_extractors self.min_feat_frequency = min_feat_frequency self.vectorizer = DictVectorizer(sparse=sparse) self.feature_val = feature_val def fit(self, X, y=None): """ X : list of list of str list of word windows y : ignored returns : numpy array (sparse is sparse = True) """ feats = self.__extract_features_(X) return self.vectorizer.fit(feats) def transform(self, X, y=None): return self.vectorizer.transform(X, y) def fit_transform(self, X, y=None): feats = self.__extract_features_(X) return self.vectorizer.fit_transform(feats) def __extract_features_(self, X): if len(X) == 0: raise Exception('Empty list passed to WindowFeatureExtractor.fit') mid_ix = compute_middle_index(X[0]) all_feats = [] keys = [] for window in X: d = {} for fn in self.feature_extractors: fts = fn(window, mid_ix, self.feature_val) d.update(fts) keys.extend(d.keys()) all_feats.append(d) if self.min_feat_frequency <= 1: return all_feats """ Filter to at or above minimum feature frequency """ keyCnt = Counter(keys) frequent = set([k for k, v in keyCnt.items() if v >= self. min_feat_frequency]) freq_feats = [] for d in all_feats: freq_d = dict([(k, v) for k, v in d.items() if k in frequent]) freq_feats.append(freq_d) return freq_feats
__author__ = 'simon.hughes' from sklearn.feature_extraction import DictVectorizer from WindowFeatures import compute_middle_index from collections import Counter class WindowFeatureExtractor(object): """ A simple wrapper class that takes a number of window based feature extractor functions and applies them to a dataset of windows, and then vectorizes with the sklearn DictVectorizer class """ def __init__(self, feature_extractors, min_feat_frequency, sparse=True, feature_val=1): """ feature_extractors : list of fns feature extraction fns min_feat_frequency : int minimum frequency of features to retain sparse : boolean return a sparse numpy matrix or not """ self.feature_extractors = feature_extractors self.min_feat_frequency = min_feat_frequency self.vectorizer = DictVectorizer(sparse=sparse) self.feature_val = feature_val def fit(self, X, y=None): """ X : list of list of str list of word windows y : ignored returns : numpy array (sparse is sparse = True) """ feats = self.__extract_features_(X) return self.vectorizer.fit(feats) def transform(self, X, y=None): return self.vectorizer.transform(X, y) def fit_transform(self, X, y=None): feats = self.__extract_features_(X) return self.vectorizer.fit_transform(feats) def __extract_features_(self, X): if len(X) == 0: raise Exception('Empty list passed to WindowFeatureExtractor.fit') mid_ix = compute_middle_index(X[0]) all_feats = [] keys = [] for window in X: d = {} for fn in self.feature_extractors: fts = fn(window, mid_ix, self.feature_val) d.update(fts) keys.extend(d.keys()) all_feats.append(d) if self.min_feat_frequency <= 1: return all_feats """ Filter to at or above minimum feature frequency """ keyCnt = Counter(keys) frequent = set([k for k, v in keyCnt.items() if v >= self. min_feat_frequency]) freq_feats = [] for d in all_feats: freq_d = dict([(k, v) for k, v in d.items() if k in frequent]) freq_feats.append(freq_d) return freq_feats
__author__ = 'simon.hughes' from sklearn.feature_extraction import DictVectorizer from WindowFeatures import compute_middle_index from collections import Counter class WindowFeatureExtractor(object): """ A simple wrapper class that takes a number of window based feature extractor functions and applies them to a dataset of windows, and then vectorizes with the sklearn DictVectorizer class """ def __init__(self, feature_extractors, min_feat_frequency, sparse=True, feature_val=1): """ feature_extractors : list of fns feature extraction fns min_feat_frequency : int minimum frequency of features to retain sparse : boolean return a sparse numpy matrix or not """ self.feature_extractors = feature_extractors self.min_feat_frequency = min_feat_frequency self.vectorizer = DictVectorizer(sparse=sparse) self.feature_val = feature_val def fit(self, X, y=None): """ X : list of list of str list of word windows y : ignored returns : numpy array (sparse is sparse = True) """ feats = self.__extract_features_(X) return self.vectorizer.fit(feats) def transform(self, X, y=None): return self.vectorizer.transform(X, y) def fit_transform(self, X,y=None): feats = self.__extract_features_(X) return self.vectorizer.fit_transform(feats) def __extract_features_(self, X): if len(X) == 0: raise Exception("Empty list passed to WindowFeatureExtractor.fit") mid_ix = compute_middle_index(X[0]) all_feats = [] keys = [] for window in X: d = {} for fn in self.feature_extractors: fts = fn(window, mid_ix, self.feature_val) d.update(fts) keys.extend(d.keys()) all_feats.append(d) if self.min_feat_frequency <= 1: return all_feats """ Filter to at or above minimum feature frequency """ keyCnt = Counter(keys) frequent = set([k for k,v in keyCnt.items() if v >= self.min_feat_frequency]) freq_feats = [] for d in all_feats: freq_d = dict([(k,v) for k,v in d.items() if k in frequent]) freq_feats.append(freq_d) return freq_feats
[ 5, 6, 8, 9, 10 ]
261
65aa85675393efa1a0d8e5bab4b1dbf388018c58
indelCost = 1 swapCost = 13 subCost = 12 noOp = 0 def alignStrings(x,y): nx = len(x) ny = len(y) S = matrix(nx+1, ny+1) #?? for i in range (nx+1) for j in range (ny+1) if i == 0: #if the string is empty S[i][j] = j #this will put all the letters from j in i elif j == 0: #if the second string is empy S[i][j] = i #this will putj all the letter from i in j elif
null
null
null
null
[ 0 ]
262
47c1ad4bd1ceffa38eef467ea8eb59dbd2fc2ebb
<mask token> class PacketSender: <mask token> <mask token> <mask token> <mask token> <mask token> <mask token> <mask token> <mask token> <mask token> def handle_ack(data): global acked_packets global seq_num global acked_all_packets global acked_packets_lock p = Packet.from_bytes(data) if not p.packet_type == PacketConstructor.ack_type: return print('received ack ' + str(p.seq_num)) acked_packets_lock.acquire() if p.seq_num not in acked_packets: print("it's a new ack") acked_packets.append(p.seq_num) if len(acked_packets) == seq_num: print('got all acks') acked_all_packets = True else: print('len: ' + str(len(acked_packets))) print('seq_num: ' + str(seq_num)) acked_packets_lock.release() def await_acks(conn): print('awaiting acks') while not PacketSender.acked_all_packets: data, sender = conn.recvfrom(1024) threading.Thread(target=PacketSender.handle_ack, args=(data,) ).start() <mask token> <mask token> @staticmethod def send_as_packets(data, conn, destination, peer_ip, peer_port): global sent_packets global acked_packets global next_seq_num global acked_all_packets global seq_num PacketSender.reset() max_payload_length = Packet.MAX_LEN - Packet.MIN_LEN curr = [0, 0] def nbytes(n): curr[0], curr[1] = curr[1], curr[1] + n return data[curr[0]:curr[1]] remaining_data = len(data) if remaining_data > 0: threading.Thread(target=PacketSender.await_acks, args=(conn,) ).start() while remaining_data > 0: while (sent_packets < PacketConstructor.window_size and remaining_data > 0): print('sending packet %d' % seq_num) if remaining_data > max_payload_length: p = Packet(packet_type=PacketConstructor.data_type, seq_num=seq_num, peer_ip_addr=peer_ip, peer_port= peer_port, is_last_packet=False, payload=nbytes( max_payload_length)) conn.sendto(p.to_bytes(), destination) sent_packets += 1 remaining_data -= max_payload_length seq_num += 1 PacketSender.spawn_resend_thread(conn, p, destination) print('not last packet') else: p = Packet(packet_type=PacketConstructor.data_type, seq_num=seq_num, peer_ip_addr=peer_ip, peer_port= peer_port, is_last_packet=True, payload=nbytes( remaining_data)) conn.sendto(p.to_bytes(), destination) sent_packets += 1 remaining_data -= remaining_data seq_num += 1 print('remaining data ' + str(remaining_data)) print('is last packet') PacketSender.spawn_resend_thread(conn, p, destination) while next_seq_num in acked_packets: next_seq_num += 1 sent_packets -= 1 print('Waiting for acks') while not acked_all_packets: pass print('RECEIVED ALL ACKS') PacketSender.was_reset = True
<mask token> class PacketSender: <mask token> <mask token> <mask token> <mask token> <mask token> <mask token> <mask token> <mask token> def reset(self): global seq_num global sent_packets global next_seq_num global acked_packets global acked_all_packets global acked_packets_lock seq_num = 0 sent_packets = 0 next_seq_num = 0 acked_packets = [] acked_all_packets = False acked_packets_lock = threading.Lock() def handle_ack(data): global acked_packets global seq_num global acked_all_packets global acked_packets_lock p = Packet.from_bytes(data) if not p.packet_type == PacketConstructor.ack_type: return print('received ack ' + str(p.seq_num)) acked_packets_lock.acquire() if p.seq_num not in acked_packets: print("it's a new ack") acked_packets.append(p.seq_num) if len(acked_packets) == seq_num: print('got all acks') acked_all_packets = True else: print('len: ' + str(len(acked_packets))) print('seq_num: ' + str(seq_num)) acked_packets_lock.release() def await_acks(conn): print('awaiting acks') while not PacketSender.acked_all_packets: data, sender = conn.recvfrom(1024) threading.Thread(target=PacketSender.handle_ack, args=(data,) ).start() <mask token> def spawn_resend_thread(conn, packet, destination): threading.Thread(target=PacketSender.resend_packet_if_needed, args= (conn, packet, destination)).start() @staticmethod def send_as_packets(data, conn, destination, peer_ip, peer_port): global sent_packets global acked_packets global next_seq_num global acked_all_packets global seq_num PacketSender.reset() max_payload_length = Packet.MAX_LEN - Packet.MIN_LEN curr = [0, 0] def nbytes(n): curr[0], curr[1] = curr[1], curr[1] + n return data[curr[0]:curr[1]] remaining_data = len(data) if remaining_data > 0: threading.Thread(target=PacketSender.await_acks, args=(conn,) ).start() while remaining_data > 0: while (sent_packets < PacketConstructor.window_size and remaining_data > 0): print('sending packet %d' % seq_num) if remaining_data > max_payload_length: p = Packet(packet_type=PacketConstructor.data_type, seq_num=seq_num, peer_ip_addr=peer_ip, peer_port= peer_port, is_last_packet=False, payload=nbytes( max_payload_length)) conn.sendto(p.to_bytes(), destination) sent_packets += 1 remaining_data -= max_payload_length seq_num += 1 PacketSender.spawn_resend_thread(conn, p, destination) print('not last packet') else: p = Packet(packet_type=PacketConstructor.data_type, seq_num=seq_num, peer_ip_addr=peer_ip, peer_port= peer_port, is_last_packet=True, payload=nbytes( remaining_data)) conn.sendto(p.to_bytes(), destination) sent_packets += 1 remaining_data -= remaining_data seq_num += 1 print('remaining data ' + str(remaining_data)) print('is last packet') PacketSender.spawn_resend_thread(conn, p, destination) while next_seq_num in acked_packets: next_seq_num += 1 sent_packets -= 1 print('Waiting for acks') while not acked_all_packets: pass print('RECEIVED ALL ACKS') PacketSender.was_reset = True
<mask token> class PacketSender: """ Packet represents a simulated UDP packet. """ seq_num = 0 next_seq_num = 0 sent_packets = 0 acked_packets = [] acked_all_packets = False acked_packets_lock = threading.Lock() was_reset = False def reset(self): global seq_num global sent_packets global next_seq_num global acked_packets global acked_all_packets global acked_packets_lock seq_num = 0 sent_packets = 0 next_seq_num = 0 acked_packets = [] acked_all_packets = False acked_packets_lock = threading.Lock() def handle_ack(data): global acked_packets global seq_num global acked_all_packets global acked_packets_lock p = Packet.from_bytes(data) if not p.packet_type == PacketConstructor.ack_type: return print('received ack ' + str(p.seq_num)) acked_packets_lock.acquire() if p.seq_num not in acked_packets: print("it's a new ack") acked_packets.append(p.seq_num) if len(acked_packets) == seq_num: print('got all acks') acked_all_packets = True else: print('len: ' + str(len(acked_packets))) print('seq_num: ' + str(seq_num)) acked_packets_lock.release() def await_acks(conn): print('awaiting acks') while not PacketSender.acked_all_packets: data, sender = conn.recvfrom(1024) threading.Thread(target=PacketSender.handle_ack, args=(data,) ).start() def resend_packet_if_needed(conn, packet, destination): while (not packet.seq_num in PacketSender.acked_packets and not PacketSender.was_reset): print('starting resend loop') time.sleep(0.5) acked_packets_lock.acquire() if (not packet.seq_num in PacketSender.acked_packets and not PacketSender.was_reset): print('resending packet ' + str(packet.seq_num)) conn.sendto(packet.to_bytes(), destination) acked_packets_lock.release() def spawn_resend_thread(conn, packet, destination): threading.Thread(target=PacketSender.resend_packet_if_needed, args= (conn, packet, destination)).start() @staticmethod def send_as_packets(data, conn, destination, peer_ip, peer_port): global sent_packets global acked_packets global next_seq_num global acked_all_packets global seq_num PacketSender.reset() max_payload_length = Packet.MAX_LEN - Packet.MIN_LEN curr = [0, 0] def nbytes(n): curr[0], curr[1] = curr[1], curr[1] + n return data[curr[0]:curr[1]] remaining_data = len(data) if remaining_data > 0: threading.Thread(target=PacketSender.await_acks, args=(conn,) ).start() while remaining_data > 0: while (sent_packets < PacketConstructor.window_size and remaining_data > 0): print('sending packet %d' % seq_num) if remaining_data > max_payload_length: p = Packet(packet_type=PacketConstructor.data_type, seq_num=seq_num, peer_ip_addr=peer_ip, peer_port= peer_port, is_last_packet=False, payload=nbytes( max_payload_length)) conn.sendto(p.to_bytes(), destination) sent_packets += 1 remaining_data -= max_payload_length seq_num += 1 PacketSender.spawn_resend_thread(conn, p, destination) print('not last packet') else: p = Packet(packet_type=PacketConstructor.data_type, seq_num=seq_num, peer_ip_addr=peer_ip, peer_port= peer_port, is_last_packet=True, payload=nbytes( remaining_data)) conn.sendto(p.to_bytes(), destination) sent_packets += 1 remaining_data -= remaining_data seq_num += 1 print('remaining data ' + str(remaining_data)) print('is last packet') PacketSender.spawn_resend_thread(conn, p, destination) while next_seq_num in acked_packets: next_seq_num += 1 sent_packets -= 1 print('Waiting for acks') while not acked_all_packets: pass print('RECEIVED ALL ACKS') PacketSender.was_reset = True
from packet import Packet from packetConstructor import PacketConstructor import threading import time class PacketSender: """ Packet represents a simulated UDP packet. """ seq_num = 0 next_seq_num = 0 sent_packets = 0 acked_packets = [] acked_all_packets = False acked_packets_lock = threading.Lock() was_reset = False def reset(self): global seq_num global sent_packets global next_seq_num global acked_packets global acked_all_packets global acked_packets_lock seq_num = 0 sent_packets = 0 next_seq_num = 0 acked_packets = [] acked_all_packets = False acked_packets_lock = threading.Lock() def handle_ack(data): global acked_packets global seq_num global acked_all_packets global acked_packets_lock p = Packet.from_bytes(data) if not p.packet_type == PacketConstructor.ack_type: return print('received ack ' + str(p.seq_num)) acked_packets_lock.acquire() if p.seq_num not in acked_packets: print("it's a new ack") acked_packets.append(p.seq_num) if len(acked_packets) == seq_num: print('got all acks') acked_all_packets = True else: print('len: ' + str(len(acked_packets))) print('seq_num: ' + str(seq_num)) acked_packets_lock.release() def await_acks(conn): print('awaiting acks') while not PacketSender.acked_all_packets: data, sender = conn.recvfrom(1024) threading.Thread(target=PacketSender.handle_ack, args=(data,) ).start() def resend_packet_if_needed(conn, packet, destination): while (not packet.seq_num in PacketSender.acked_packets and not PacketSender.was_reset): print('starting resend loop') time.sleep(0.5) acked_packets_lock.acquire() if (not packet.seq_num in PacketSender.acked_packets and not PacketSender.was_reset): print('resending packet ' + str(packet.seq_num)) conn.sendto(packet.to_bytes(), destination) acked_packets_lock.release() def spawn_resend_thread(conn, packet, destination): threading.Thread(target=PacketSender.resend_packet_if_needed, args= (conn, packet, destination)).start() @staticmethod def send_as_packets(data, conn, destination, peer_ip, peer_port): global sent_packets global acked_packets global next_seq_num global acked_all_packets global seq_num PacketSender.reset() max_payload_length = Packet.MAX_LEN - Packet.MIN_LEN curr = [0, 0] def nbytes(n): curr[0], curr[1] = curr[1], curr[1] + n return data[curr[0]:curr[1]] remaining_data = len(data) if remaining_data > 0: threading.Thread(target=PacketSender.await_acks, args=(conn,) ).start() while remaining_data > 0: while (sent_packets < PacketConstructor.window_size and remaining_data > 0): print('sending packet %d' % seq_num) if remaining_data > max_payload_length: p = Packet(packet_type=PacketConstructor.data_type, seq_num=seq_num, peer_ip_addr=peer_ip, peer_port= peer_port, is_last_packet=False, payload=nbytes( max_payload_length)) conn.sendto(p.to_bytes(), destination) sent_packets += 1 remaining_data -= max_payload_length seq_num += 1 PacketSender.spawn_resend_thread(conn, p, destination) print('not last packet') else: p = Packet(packet_type=PacketConstructor.data_type, seq_num=seq_num, peer_ip_addr=peer_ip, peer_port= peer_port, is_last_packet=True, payload=nbytes( remaining_data)) conn.sendto(p.to_bytes(), destination) sent_packets += 1 remaining_data -= remaining_data seq_num += 1 print('remaining data ' + str(remaining_data)) print('is last packet') PacketSender.spawn_resend_thread(conn, p, destination) while next_seq_num in acked_packets: next_seq_num += 1 sent_packets -= 1 print('Waiting for acks') while not acked_all_packets: pass print('RECEIVED ALL ACKS') PacketSender.was_reset = True
from packet import Packet from packetConstructor import PacketConstructor import threading import time class PacketSender: """ Packet represents a simulated UDP packet. """ # The next seq num for sent packets seq_num = 0 # The next seq num for acks that we're waiting for next_seq_num = 0 sent_packets = 0 acked_packets = [] acked_all_packets = False acked_packets_lock = threading.Lock() was_reset = False def reset(self): global seq_num global sent_packets global next_seq_num global acked_packets global acked_all_packets global acked_packets_lock seq_num = 0 sent_packets = 0 next_seq_num = 0 acked_packets = [] acked_all_packets = False acked_packets_lock = threading.Lock() def handle_ack(data): global acked_packets global seq_num global acked_all_packets global acked_packets_lock p = Packet.from_bytes(data) if not p.packet_type == PacketConstructor.ack_type: # TODO: handle NAKs here return print("received ack " + str(p.seq_num)) acked_packets_lock.acquire() if p.seq_num not in acked_packets: print("it's a new ack") acked_packets.append(p.seq_num) if len(acked_packets) == seq_num: print("got all acks") acked_all_packets = True else: print("len: " + str(len(acked_packets))) print("seq_num: " + str(seq_num)) acked_packets_lock.release() def await_acks(conn): print("awaiting acks") while not PacketSender.acked_all_packets: data, sender = conn.recvfrom(1024) threading.Thread(target=PacketSender.handle_ack, args=(data,)).start() def resend_packet_if_needed(conn, packet, destination): while not packet.seq_num in PacketSender.acked_packets and not PacketSender.was_reset: print("starting resend loop") time.sleep(0.5) acked_packets_lock.acquire() if not packet.seq_num in PacketSender.acked_packets and not PacketSender.was_reset: print("resending packet " + str(packet.seq_num)) conn.sendto(packet.to_bytes(), destination) acked_packets_lock.release() def spawn_resend_thread(conn, packet, destination): threading.Thread(target=PacketSender.resend_packet_if_needed, args=(conn, packet, destination)).start() @staticmethod def send_as_packets(data, conn, destination, peer_ip, peer_port): global sent_packets global acked_packets global next_seq_num global acked_all_packets global seq_num PacketSender.reset() max_payload_length = Packet.MAX_LEN - Packet.MIN_LEN curr = [0, 0] def nbytes(n): curr[0], curr[1] = curr[1], curr[1] + n return data[curr[0]: curr[1]] remaining_data = len(data) if remaining_data > 0: threading.Thread(target=PacketSender.await_acks, args=(conn,)).start() # While there's still data to be sent while remaining_data > 0: # While there are less packets in transit than the window size while (sent_packets < PacketConstructor.window_size and remaining_data > 0): print("sending packet %d" % seq_num) if remaining_data > max_payload_length: p = Packet(packet_type=PacketConstructor.data_type, seq_num=seq_num, peer_ip_addr=peer_ip, peer_port=peer_port, is_last_packet=False, payload=nbytes(max_payload_length)) conn.sendto(p.to_bytes(), destination) sent_packets += 1 remaining_data -= max_payload_length seq_num += 1 PacketSender.spawn_resend_thread(conn, p, destination) print("not last packet") else: p = Packet(packet_type=PacketConstructor.data_type, seq_num=seq_num, peer_ip_addr=peer_ip, peer_port=peer_port, is_last_packet=True, payload=nbytes(remaining_data)) conn.sendto(p.to_bytes(), destination) sent_packets += 1 remaining_data -= remaining_data seq_num += 1 print("remaining data " + str(remaining_data)) print("is last packet") PacketSender.spawn_resend_thread(conn, p, destination) # Update the number of packets still in transit while next_seq_num in acked_packets: next_seq_num += 1 sent_packets -= 1 print("Waiting for acks") while not acked_all_packets: # Wait here until all packets have been acked pass print("RECEIVED ALL ACKS") PacketSender.was_reset = True
[ 4, 6, 9, 10, 11 ]
263
24cdbbadc8ff1c7ad5d42eeb518cb6c2b34724a2
<mask token> class EfficientDoubleExchange(AnsatzElement): <mask token> <mask token> <mask token> <mask token> class EfficientDoubleExcitation2(AnsatzElement): def __init__(self, qubit_pair_1, qubit_pair_2): self.qubit_pair_1 = qubit_pair_1 self.qubit_pair_2 = qubit_pair_2 super(EfficientDoubleExcitation2, self).__init__(element= 'optimized_d_exc {}, {}'.format(qubit_pair_1, qubit_pair_2), element_type=str(self), n_var_parameters=1) @staticmethod def efficient_double_excitation_2(angle, qubit_pair_1, qubit_pair_2): qasm = [''] theta = angle / 8 qasm.append('cx q[{}], q[{}];\n'.format(*qubit_pair_1)) qasm.append('x q[{}];\n'.format(qubit_pair_1[1])) qasm.append('cx q[{}], q[{}];\n'.format(*qubit_pair_2)) qasm.append('x q[{}];\n'.format(qubit_pair_2[1])) qasm.append('cx q[{}], q[{}];\n'.format(qubit_pair_1[0], qubit_pair_2[0])) qasm.append('rz({}) q[{}];\n'.format(numpy.pi / 2, qubit_pair_1[0])) qasm.append('rx({}) q[{}];\n'.format(theta, qubit_pair_1[0])) qasm.append('h q[{}];\n'.format(qubit_pair_1[1])) qasm.append('cx q[{}], q[{}];\n'.format(qubit_pair_1[0], qubit_pair_1[1])) qasm.append('h q[{}];\n'.format(qubit_pair_1[1])) qasm.append('rx({}) q[{}];\n'.format(-theta, qubit_pair_1[0])) qasm.append('h q[{}];\n'.format(qubit_pair_2[1])) qasm.append('cx q[{}], q[{}];\n'.format(qubit_pair_1[0], qubit_pair_2[1])) qasm.append('h q[{}];\n'.format(qubit_pair_2[1])) qasm.append('rx({}) q[{}];\n'.format(theta, qubit_pair_1[0])) qasm.append('h q[{}];\n'.format(qubit_pair_1[1])) qasm.append('cx q[{}], q[{}];\n'.format(qubit_pair_1[0], qubit_pair_1[1])) qasm.append('h q[{}];\n'.format(qubit_pair_1[1])) qasm.append('rx({}) q[{}];\n'.format(-theta, qubit_pair_1[0])) qasm.append('h q[{}];\n'.format(qubit_pair_2[0])) qasm.append('cx q[{}], q[{}];\n'.format(qubit_pair_1[0], qubit_pair_2[0])) qasm.append('h q[{}];\n'.format(qubit_pair_2[0])) qasm.append('rx({}) q[{}];\n'.format(theta, qubit_pair_1[0])) qasm.append('h q[{}];\n'.format(qubit_pair_1[1])) qasm.append('cx q[{}], q[{}];\n'.format(qubit_pair_1[0], qubit_pair_1[1])) qasm.append('h q[{}];\n'.format(qubit_pair_1[1])) qasm.append('rx({}) q[{}];\n'.format(-theta, qubit_pair_1[0])) qasm.append('h q[{}];\n'.format(qubit_pair_2[1])) qasm.append('cx q[{}], q[{}];\n'.format(qubit_pair_1[0], qubit_pair_2[1])) qasm.append('h q[{}];\n'.format(qubit_pair_2[1])) qasm.append('rx({}) q[{}];\n'.format(theta, qubit_pair_1[0])) qasm.append('h q[{}];\n'.format(qubit_pair_1[1])) qasm.append('cx q[{}], q[{}];\n'.format(qubit_pair_1[0], qubit_pair_1[1])) qasm.append('h q[{}];\n'.format(qubit_pair_1[1])) qasm.append('rx({}) q[{}];\n'.format(-theta, qubit_pair_1[0])) qasm.append('rz({}) q[{}];\n'.format(-numpy.pi / 2, qubit_pair_1[0])) qasm.append(QasmUtils.controlled_xz(qubit_pair_1[0], qubit_pair_2[0 ], reverse=True)) qasm.append('x q[{}];\n'.format(qubit_pair_1[1])) qasm.append('cx q[{}], q[{}];\n'.format(*qubit_pair_1)) qasm.append('x q[{}];\n'.format(qubit_pair_2[1])) qasm.append('cx q[{}], q[{}];\n'.format(*qubit_pair_2)) return ''.join(qasm) def get_qasm(self, var_parameters): assert len(var_parameters) == 1 parameter = var_parameters[0] return self.efficient_double_excitation_2(parameter, self. qubit_pair_1, self.qubit_pair_2)
<mask token> class EfficientDoubleExchange(AnsatzElement): def __init__(self, qubit_pair_1, qubit_pair_2, rescaled_parameter=False, parity_dependence=False, d_exc_correction=False): self.qubit_pair_1 = qubit_pair_1 self.qubit_pair_2 = qubit_pair_2 self.rescaled_parameter = rescaled_parameter self.parity_dependence = parity_dependence self.d_exc_correction = d_exc_correction super(EfficientDoubleExchange, self).__init__(element= 'd_exc {}, {}'.format(qubit_pair_1, qubit_pair_2), element_type =str(self), n_var_parameters=1) <mask token> <mask token> <mask token> class EfficientDoubleExcitation2(AnsatzElement): def __init__(self, qubit_pair_1, qubit_pair_2): self.qubit_pair_1 = qubit_pair_1 self.qubit_pair_2 = qubit_pair_2 super(EfficientDoubleExcitation2, self).__init__(element= 'optimized_d_exc {}, {}'.format(qubit_pair_1, qubit_pair_2), element_type=str(self), n_var_parameters=1) @staticmethod def efficient_double_excitation_2(angle, qubit_pair_1, qubit_pair_2): qasm = [''] theta = angle / 8 qasm.append('cx q[{}], q[{}];\n'.format(*qubit_pair_1)) qasm.append('x q[{}];\n'.format(qubit_pair_1[1])) qasm.append('cx q[{}], q[{}];\n'.format(*qubit_pair_2)) qasm.append('x q[{}];\n'.format(qubit_pair_2[1])) qasm.append('cx q[{}], q[{}];\n'.format(qubit_pair_1[0], qubit_pair_2[0])) qasm.append('rz({}) q[{}];\n'.format(numpy.pi / 2, qubit_pair_1[0])) qasm.append('rx({}) q[{}];\n'.format(theta, qubit_pair_1[0])) qasm.append('h q[{}];\n'.format(qubit_pair_1[1])) qasm.append('cx q[{}], q[{}];\n'.format(qubit_pair_1[0], qubit_pair_1[1])) qasm.append('h q[{}];\n'.format(qubit_pair_1[1])) qasm.append('rx({}) q[{}];\n'.format(-theta, qubit_pair_1[0])) qasm.append('h q[{}];\n'.format(qubit_pair_2[1])) qasm.append('cx q[{}], q[{}];\n'.format(qubit_pair_1[0], qubit_pair_2[1])) qasm.append('h q[{}];\n'.format(qubit_pair_2[1])) qasm.append('rx({}) q[{}];\n'.format(theta, qubit_pair_1[0])) qasm.append('h q[{}];\n'.format(qubit_pair_1[1])) qasm.append('cx q[{}], q[{}];\n'.format(qubit_pair_1[0], qubit_pair_1[1])) qasm.append('h q[{}];\n'.format(qubit_pair_1[1])) qasm.append('rx({}) q[{}];\n'.format(-theta, qubit_pair_1[0])) qasm.append('h q[{}];\n'.format(qubit_pair_2[0])) qasm.append('cx q[{}], q[{}];\n'.format(qubit_pair_1[0], qubit_pair_2[0])) qasm.append('h q[{}];\n'.format(qubit_pair_2[0])) qasm.append('rx({}) q[{}];\n'.format(theta, qubit_pair_1[0])) qasm.append('h q[{}];\n'.format(qubit_pair_1[1])) qasm.append('cx q[{}], q[{}];\n'.format(qubit_pair_1[0], qubit_pair_1[1])) qasm.append('h q[{}];\n'.format(qubit_pair_1[1])) qasm.append('rx({}) q[{}];\n'.format(-theta, qubit_pair_1[0])) qasm.append('h q[{}];\n'.format(qubit_pair_2[1])) qasm.append('cx q[{}], q[{}];\n'.format(qubit_pair_1[0], qubit_pair_2[1])) qasm.append('h q[{}];\n'.format(qubit_pair_2[1])) qasm.append('rx({}) q[{}];\n'.format(theta, qubit_pair_1[0])) qasm.append('h q[{}];\n'.format(qubit_pair_1[1])) qasm.append('cx q[{}], q[{}];\n'.format(qubit_pair_1[0], qubit_pair_1[1])) qasm.append('h q[{}];\n'.format(qubit_pair_1[1])) qasm.append('rx({}) q[{}];\n'.format(-theta, qubit_pair_1[0])) qasm.append('rz({}) q[{}];\n'.format(-numpy.pi / 2, qubit_pair_1[0])) qasm.append(QasmUtils.controlled_xz(qubit_pair_1[0], qubit_pair_2[0 ], reverse=True)) qasm.append('x q[{}];\n'.format(qubit_pair_1[1])) qasm.append('cx q[{}], q[{}];\n'.format(*qubit_pair_1)) qasm.append('x q[{}];\n'.format(qubit_pair_2[1])) qasm.append('cx q[{}], q[{}];\n'.format(*qubit_pair_2)) return ''.join(qasm) def get_qasm(self, var_parameters): assert len(var_parameters) == 1 parameter = var_parameters[0] return self.efficient_double_excitation_2(parameter, self. qubit_pair_1, self.qubit_pair_2)
<mask token> class EfficientDoubleExchange(AnsatzElement): def __init__(self, qubit_pair_1, qubit_pair_2, rescaled_parameter=False, parity_dependence=False, d_exc_correction=False): self.qubit_pair_1 = qubit_pair_1 self.qubit_pair_2 = qubit_pair_2 self.rescaled_parameter = rescaled_parameter self.parity_dependence = parity_dependence self.d_exc_correction = d_exc_correction super(EfficientDoubleExchange, self).__init__(element= 'd_exc {}, {}'.format(qubit_pair_1, qubit_pair_2), element_type =str(self), n_var_parameters=1) @staticmethod def second_angle(x): if x == 0: return 0 else: tan_x = numpy.tan(x) tan_x_squared = tan_x ** 2 tan_y = (-tan_x_squared - 1 + numpy.sqrt(tan_x_squared ** 2 + 6 * tan_x_squared + 1)) / (2 * tan_x) return numpy.arctan(tan_y) <mask token> <mask token> class EfficientDoubleExcitation2(AnsatzElement): def __init__(self, qubit_pair_1, qubit_pair_2): self.qubit_pair_1 = qubit_pair_1 self.qubit_pair_2 = qubit_pair_2 super(EfficientDoubleExcitation2, self).__init__(element= 'optimized_d_exc {}, {}'.format(qubit_pair_1, qubit_pair_2), element_type=str(self), n_var_parameters=1) @staticmethod def efficient_double_excitation_2(angle, qubit_pair_1, qubit_pair_2): qasm = [''] theta = angle / 8 qasm.append('cx q[{}], q[{}];\n'.format(*qubit_pair_1)) qasm.append('x q[{}];\n'.format(qubit_pair_1[1])) qasm.append('cx q[{}], q[{}];\n'.format(*qubit_pair_2)) qasm.append('x q[{}];\n'.format(qubit_pair_2[1])) qasm.append('cx q[{}], q[{}];\n'.format(qubit_pair_1[0], qubit_pair_2[0])) qasm.append('rz({}) q[{}];\n'.format(numpy.pi / 2, qubit_pair_1[0])) qasm.append('rx({}) q[{}];\n'.format(theta, qubit_pair_1[0])) qasm.append('h q[{}];\n'.format(qubit_pair_1[1])) qasm.append('cx q[{}], q[{}];\n'.format(qubit_pair_1[0], qubit_pair_1[1])) qasm.append('h q[{}];\n'.format(qubit_pair_1[1])) qasm.append('rx({}) q[{}];\n'.format(-theta, qubit_pair_1[0])) qasm.append('h q[{}];\n'.format(qubit_pair_2[1])) qasm.append('cx q[{}], q[{}];\n'.format(qubit_pair_1[0], qubit_pair_2[1])) qasm.append('h q[{}];\n'.format(qubit_pair_2[1])) qasm.append('rx({}) q[{}];\n'.format(theta, qubit_pair_1[0])) qasm.append('h q[{}];\n'.format(qubit_pair_1[1])) qasm.append('cx q[{}], q[{}];\n'.format(qubit_pair_1[0], qubit_pair_1[1])) qasm.append('h q[{}];\n'.format(qubit_pair_1[1])) qasm.append('rx({}) q[{}];\n'.format(-theta, qubit_pair_1[0])) qasm.append('h q[{}];\n'.format(qubit_pair_2[0])) qasm.append('cx q[{}], q[{}];\n'.format(qubit_pair_1[0], qubit_pair_2[0])) qasm.append('h q[{}];\n'.format(qubit_pair_2[0])) qasm.append('rx({}) q[{}];\n'.format(theta, qubit_pair_1[0])) qasm.append('h q[{}];\n'.format(qubit_pair_1[1])) qasm.append('cx q[{}], q[{}];\n'.format(qubit_pair_1[0], qubit_pair_1[1])) qasm.append('h q[{}];\n'.format(qubit_pair_1[1])) qasm.append('rx({}) q[{}];\n'.format(-theta, qubit_pair_1[0])) qasm.append('h q[{}];\n'.format(qubit_pair_2[1])) qasm.append('cx q[{}], q[{}];\n'.format(qubit_pair_1[0], qubit_pair_2[1])) qasm.append('h q[{}];\n'.format(qubit_pair_2[1])) qasm.append('rx({}) q[{}];\n'.format(theta, qubit_pair_1[0])) qasm.append('h q[{}];\n'.format(qubit_pair_1[1])) qasm.append('cx q[{}], q[{}];\n'.format(qubit_pair_1[0], qubit_pair_1[1])) qasm.append('h q[{}];\n'.format(qubit_pair_1[1])) qasm.append('rx({}) q[{}];\n'.format(-theta, qubit_pair_1[0])) qasm.append('rz({}) q[{}];\n'.format(-numpy.pi / 2, qubit_pair_1[0])) qasm.append(QasmUtils.controlled_xz(qubit_pair_1[0], qubit_pair_2[0 ], reverse=True)) qasm.append('x q[{}];\n'.format(qubit_pair_1[1])) qasm.append('cx q[{}], q[{}];\n'.format(*qubit_pair_1)) qasm.append('x q[{}];\n'.format(qubit_pair_2[1])) qasm.append('cx q[{}], q[{}];\n'.format(*qubit_pair_2)) return ''.join(qasm) def get_qasm(self, var_parameters): assert len(var_parameters) == 1 parameter = var_parameters[0] return self.efficient_double_excitation_2(parameter, self. qubit_pair_1, self.qubit_pair_2)
<mask token> class EfficientDoubleExchange(AnsatzElement): def __init__(self, qubit_pair_1, qubit_pair_2, rescaled_parameter=False, parity_dependence=False, d_exc_correction=False): self.qubit_pair_1 = qubit_pair_1 self.qubit_pair_2 = qubit_pair_2 self.rescaled_parameter = rescaled_parameter self.parity_dependence = parity_dependence self.d_exc_correction = d_exc_correction super(EfficientDoubleExchange, self).__init__(element= 'd_exc {}, {}'.format(qubit_pair_1, qubit_pair_2), element_type =str(self), n_var_parameters=1) @staticmethod def second_angle(x): if x == 0: return 0 else: tan_x = numpy.tan(x) tan_x_squared = tan_x ** 2 tan_y = (-tan_x_squared - 1 + numpy.sqrt(tan_x_squared ** 2 + 6 * tan_x_squared + 1)) / (2 * tan_x) return numpy.arctan(tan_y) @staticmethod def double_exchange(angle, qubit_pair_1, qubit_pair_2, parity_dependence=False, d_exc_correction=False): assert len(qubit_pair_1) == 2 assert len(qubit_pair_2) == 2 theta_1 = numpy.pi / 2 - angle qasm = [''] qasm.append(QasmUtils.controlled_xz(qubit_pair_2[0], qubit_pair_1[0])) qasm.append('ry({}) q[{}];\n'.format(theta_1, qubit_pair_2[0])) qasm.append('cx q[{}], q[{}];\n'.format(qubit_pair_1[0], qubit_pair_2[0])) qasm.append('ry({}) q[{}];\n'.format(-theta_1, qubit_pair_2[0])) qasm.append(QasmUtils.controlled_xz(qubit_pair_2[1], qubit_pair_1[1])) qasm.append('ry({}) q[{}];\n'.format(theta_1, qubit_pair_2[1])) qasm.append('cx q[{}], q[{}];\n'.format(qubit_pair_1[1], qubit_pair_2[1])) qasm.append('ry({}) q[{}];\n'.format(-theta_1, qubit_pair_2[1])) qasm.append('cz q[{}], q[{}];\n'.format(qubit_pair_2[0], qubit_pair_2[1])) if d_exc_correction: angle_2 = DoubleExchange.second_angle(angle) else: angle_2 = angle theta_2 = numpy.pi / 2 - angle_2 qasm.append('ry({}) q[{}];\n'.format(theta_2, qubit_pair_2[0])) qasm.append('cx q[{}], q[{}];\n'.format(qubit_pair_1[0], qubit_pair_2[0])) qasm.append('ry({}) q[{}];\n'.format(-theta_2, qubit_pair_2[0])) qasm.append(QasmUtils.controlled_xz(qubit_pair_2[0], qubit_pair_1[0 ], reverse=True)) qasm.append('ry({}) q[{}];\n'.format(theta_2, qubit_pair_2[1])) qasm.append('cx q[{}], q[{}];\n'.format(qubit_pair_1[1], qubit_pair_2[1])) qasm.append('ry({}) q[{}];\n'.format(-theta_2, qubit_pair_2[1])) qasm.append(QasmUtils.controlled_xz(qubit_pair_2[1], qubit_pair_1[1 ], reverse=True)) if parity_dependence: parity_qubits = list(range(min(qubit_pair_1), max(qubit_pair_1)) ) + list(range(min(qubit_pair_2) + 1, max(qubit_pair_2))) cnot_ladder = [''] for i in range(len(parity_qubits) - 1): cnot_ladder.append('cx q[{}], q[{}];\n'.format( parity_qubits[i], parity_qubits[i + 1])) if angle > 0: front = [''] front.append('cz q[{}], q[{}];\n'.format(qubit_pair_2[0], qubit_pair_2[1])) front += cnot_ladder front.append('x q[{}];\n'.format(parity_qubits[-1])) front.append('cz q[{}], q[{}];\n'.format(parity_qubits[-1], qubit_pair_2[0])) front.append('x q[{}];\n'.format(parity_qubits[-1])) front += cnot_ladder[::-1] rear = [''] rear.append('cz q[{}], q[{}];\n'.format(qubit_pair_2[0], qubit_pair_2[1])) rear += cnot_ladder rear.append('cz q[{}], q[{}];\n'.format(parity_qubits[-1], qubit_pair_2[0])) rear += cnot_ladder[::-1] rear.append('x q[{}];\n'.format(qubit_pair_2[1])) rear.append('cz q[{}], q[{}];\n'.format(qubit_pair_2[0], qubit_pair_2[1])) rear.append('x q[{}];\n'.format(qubit_pair_2[1])) qasm = front + qasm + rear else: front = [''] front.append('cz q[{}], q[{}];\n'.format(qubit_pair_2[0], qubit_pair_2[1])) front += cnot_ladder front.append('cz q[{}], q[{}];\n'.format(parity_qubits[-1], qubit_pair_2[0])) front += cnot_ladder[::-1] rear = [''] rear.append('cz q[{}], q[{}];\n'.format(qubit_pair_2[0], qubit_pair_2[1])) rear += cnot_ladder rear.append('x q[{}];\n'.format(parity_qubits[-1])) rear.append('cz q[{}], q[{}];\n'.format(parity_qubits[-1], qubit_pair_2[0])) rear.append('x q[{}];\n'.format(parity_qubits[-1])) rear += cnot_ladder[::-1] rear.append('x q[{}];\n'.format(qubit_pair_2[1])) rear.append('cz q[{}], q[{}];\n'.format(qubit_pair_2[0], qubit_pair_2[1])) rear.append('x q[{}];\n'.format(qubit_pair_2[1])) qasm = front + qasm + rear elif angle > 0: qasm.append('cz q[{}], q[{}];\n'.format(qubit_pair_2[0], qubit_pair_2[1])) else: qasm = ['cz q[{}], q[{}];\n'.format(qubit_pair_2[0], qubit_pair_2[1])] + qasm return ''.join(qasm) def get_qasm(self, var_parameters): assert len(var_parameters) == 1 parameter = var_parameters[0] if self.rescaled_parameter: if var_parameters[0] > 0: parameter = var_parameters[0] + numpy.tanh(var_parameters[0 ] ** 0.5) else: parameter = var_parameters[0] + numpy.tanh(-(- var_parameters[0]) ** 0.5) return self.double_exchange(parameter, self.qubit_pair_1, self. qubit_pair_2, parity_dependence=self.parity_dependence, d_exc_correction=self.d_exc_correction) class EfficientDoubleExcitation2(AnsatzElement): def __init__(self, qubit_pair_1, qubit_pair_2): self.qubit_pair_1 = qubit_pair_1 self.qubit_pair_2 = qubit_pair_2 super(EfficientDoubleExcitation2, self).__init__(element= 'optimized_d_exc {}, {}'.format(qubit_pair_1, qubit_pair_2), element_type=str(self), n_var_parameters=1) @staticmethod def efficient_double_excitation_2(angle, qubit_pair_1, qubit_pair_2): qasm = [''] theta = angle / 8 qasm.append('cx q[{}], q[{}];\n'.format(*qubit_pair_1)) qasm.append('x q[{}];\n'.format(qubit_pair_1[1])) qasm.append('cx q[{}], q[{}];\n'.format(*qubit_pair_2)) qasm.append('x q[{}];\n'.format(qubit_pair_2[1])) qasm.append('cx q[{}], q[{}];\n'.format(qubit_pair_1[0], qubit_pair_2[0])) qasm.append('rz({}) q[{}];\n'.format(numpy.pi / 2, qubit_pair_1[0])) qasm.append('rx({}) q[{}];\n'.format(theta, qubit_pair_1[0])) qasm.append('h q[{}];\n'.format(qubit_pair_1[1])) qasm.append('cx q[{}], q[{}];\n'.format(qubit_pair_1[0], qubit_pair_1[1])) qasm.append('h q[{}];\n'.format(qubit_pair_1[1])) qasm.append('rx({}) q[{}];\n'.format(-theta, qubit_pair_1[0])) qasm.append('h q[{}];\n'.format(qubit_pair_2[1])) qasm.append('cx q[{}], q[{}];\n'.format(qubit_pair_1[0], qubit_pair_2[1])) qasm.append('h q[{}];\n'.format(qubit_pair_2[1])) qasm.append('rx({}) q[{}];\n'.format(theta, qubit_pair_1[0])) qasm.append('h q[{}];\n'.format(qubit_pair_1[1])) qasm.append('cx q[{}], q[{}];\n'.format(qubit_pair_1[0], qubit_pair_1[1])) qasm.append('h q[{}];\n'.format(qubit_pair_1[1])) qasm.append('rx({}) q[{}];\n'.format(-theta, qubit_pair_1[0])) qasm.append('h q[{}];\n'.format(qubit_pair_2[0])) qasm.append('cx q[{}], q[{}];\n'.format(qubit_pair_1[0], qubit_pair_2[0])) qasm.append('h q[{}];\n'.format(qubit_pair_2[0])) qasm.append('rx({}) q[{}];\n'.format(theta, qubit_pair_1[0])) qasm.append('h q[{}];\n'.format(qubit_pair_1[1])) qasm.append('cx q[{}], q[{}];\n'.format(qubit_pair_1[0], qubit_pair_1[1])) qasm.append('h q[{}];\n'.format(qubit_pair_1[1])) qasm.append('rx({}) q[{}];\n'.format(-theta, qubit_pair_1[0])) qasm.append('h q[{}];\n'.format(qubit_pair_2[1])) qasm.append('cx q[{}], q[{}];\n'.format(qubit_pair_1[0], qubit_pair_2[1])) qasm.append('h q[{}];\n'.format(qubit_pair_2[1])) qasm.append('rx({}) q[{}];\n'.format(theta, qubit_pair_1[0])) qasm.append('h q[{}];\n'.format(qubit_pair_1[1])) qasm.append('cx q[{}], q[{}];\n'.format(qubit_pair_1[0], qubit_pair_1[1])) qasm.append('h q[{}];\n'.format(qubit_pair_1[1])) qasm.append('rx({}) q[{}];\n'.format(-theta, qubit_pair_1[0])) qasm.append('rz({}) q[{}];\n'.format(-numpy.pi / 2, qubit_pair_1[0])) qasm.append(QasmUtils.controlled_xz(qubit_pair_1[0], qubit_pair_2[0 ], reverse=True)) qasm.append('x q[{}];\n'.format(qubit_pair_1[1])) qasm.append('cx q[{}], q[{}];\n'.format(*qubit_pair_1)) qasm.append('x q[{}];\n'.format(qubit_pair_2[1])) qasm.append('cx q[{}], q[{}];\n'.format(*qubit_pair_2)) return ''.join(qasm) def get_qasm(self, var_parameters): assert len(var_parameters) == 1 parameter = var_parameters[0] return self.efficient_double_excitation_2(parameter, self. qubit_pair_1, self.qubit_pair_2)
from openfermion import QubitOperator, FermionOperator from openfermion.transforms import jordan_wigner from src.utils import QasmUtils, MatrixUtils from src.ansatz_elements import AnsatzElement, DoubleExchange import itertools import numpy class EfficientDoubleExchange(AnsatzElement): def __init__(self, qubit_pair_1, qubit_pair_2, rescaled_parameter=False, parity_dependence=False, d_exc_correction=False): self.qubit_pair_1 = qubit_pair_1 self.qubit_pair_2 = qubit_pair_2 self.rescaled_parameter = rescaled_parameter self.parity_dependence = parity_dependence self.d_exc_correction = d_exc_correction super(EfficientDoubleExchange, self).__init__(element='d_exc {}, {}'.format(qubit_pair_1, qubit_pair_2), element_type=str(self), n_var_parameters=1) @staticmethod def second_angle(x): if x == 0: return 0 else: tan_x = numpy.tan(x) tan_x_squared = tan_x**2 tan_y = ((-tan_x_squared - 1 + numpy.sqrt(tan_x_squared ** 2 + 6 * tan_x_squared + 1)) / (2*tan_x)) return numpy.arctan(tan_y) # this method constructs an operation that acts approximately as a double partial exchange @staticmethod def double_exchange(angle, qubit_pair_1, qubit_pair_2, parity_dependence=False, d_exc_correction=False): assert len(qubit_pair_1) == 2 assert len(qubit_pair_2) == 2 theta_1 = numpy.pi/2 - angle qasm = [''] # 1st exchange + 0-2 qasm.append(QasmUtils.controlled_xz(qubit_pair_2[0], qubit_pair_1[0])) qasm.append('ry({}) q[{}];\n'.format(theta_1, qubit_pair_2[0])) qasm.append('cx q[{}], q[{}];\n'.format(qubit_pair_1[0], qubit_pair_2[0])) qasm.append('ry({}) q[{}];\n'.format(-theta_1, qubit_pair_2[0])) # 2nd exchange + 1-3 qasm.append(QasmUtils.controlled_xz(qubit_pair_2[1], qubit_pair_1[1])) qasm.append('ry({}) q[{}];\n'.format(theta_1, qubit_pair_2[1])) qasm.append('cx q[{}], q[{}];\n'.format(qubit_pair_1[1], qubit_pair_2[1])) qasm.append('ry({}) q[{}];\n'.format(-theta_1, qubit_pair_2[1])) # CZ gates qasm.append('cz q[{}], q[{}];\n'.format(qubit_pair_2[0], qubit_pair_2[1])) # qasm.append('cz q[{}], q[{}];\n'.format(qubit_pair_1[0], qubit_pair_1[1])) # correction 3rd order terms approximates the operation of a double exchange if d_exc_correction: angle_2 = DoubleExchange.second_angle(angle) # not correcting 3rd order terms approximates the operation of a double excitation (with 3rd order error terms) else: angle_2 = angle theta_2 = numpy.pi / 2 - angle_2 # 3rd exchange - 0-2 qasm.append('ry({}) q[{}];\n'.format(theta_2, qubit_pair_2[0])) qasm.append('cx q[{}], q[{}];\n'.format(qubit_pair_1[0], qubit_pair_2[0])) qasm.append('ry({}) q[{}];\n'.format(-theta_2, qubit_pair_2[0])) qasm.append(QasmUtils.controlled_xz(qubit_pair_2[0], qubit_pair_1[0], reverse=True)) # 4th exchange -1-3 qasm.append('ry({}) q[{}];\n'.format(theta_2, qubit_pair_2[1])) qasm.append('cx q[{}], q[{}];\n'.format(qubit_pair_1[1], qubit_pair_2[1])) qasm.append('ry({}) q[{}];\n'.format(-theta_2, qubit_pair_2[1])) qasm.append(QasmUtils.controlled_xz(qubit_pair_2[1], qubit_pair_1[1], reverse=True)) # correcting for parameter sign if parity_dependence: # do not include the first qubit of the second pair parity_qubits = list(range(min(qubit_pair_1), max(qubit_pair_1))) + list(range(min(qubit_pair_2)+1, max(qubit_pair_2))) # ladder of CNOT used to determine the parity cnot_ladder = [''] for i in range(len(parity_qubits) - 1): cnot_ladder.append('cx q[{}], q[{}];\n'.format(parity_qubits[i], parity_qubits[i+1])) if angle > 0: # applies a CZ correction in front, to get a negative sign for the excitation term, if the parity is 1 # (or the parity of "parity_qubits" is 0) front = [''] # this is the CZ that determines the sign of the excitation term front.append('cz q[{}], q[{}];\n'.format(qubit_pair_2[0], qubit_pair_2[1])) # this bit determines the parity and applies a CZ to negate the correction if the parity is wrong front += cnot_ladder front.append('x q[{}];\n'.format(parity_qubits[-1])) front.append('cz q[{}], q[{}];\n'.format(parity_qubits[-1], qubit_pair_2[0])) front.append('x q[{}];\n'.format(parity_qubits[-1])) front += cnot_ladder[::-1] # .. positive sign for the excitation term, if the parity is 0 (or the parity of "parity_qubits" is 1) rear = [''] # .. sign correction rear.append('cz q[{}], q[{}];\n'.format(qubit_pair_2[0], qubit_pair_2[1])) # .. parity correction rear += cnot_ladder rear.append('cz q[{}], q[{}];\n'.format(parity_qubits[-1], qubit_pair_2[0])) rear += cnot_ladder[::-1] # additional correction of states 010 and 110 rear.append('x q[{}];\n'.format(qubit_pair_2[1])) rear.append('cz q[{}], q[{}];\n'.format(qubit_pair_2[0], qubit_pair_2[1])) rear.append('x q[{}];\n'.format(qubit_pair_2[1])) qasm = front + qasm + rear else: front = [''] # sign correction front.append('cz q[{}], q[{}];\n'.format(qubit_pair_2[0], qubit_pair_2[1])) # parity correction front += cnot_ladder front.append('cz q[{}], q[{}];\n'.format(parity_qubits[-1], qubit_pair_2[0])) front += cnot_ladder[::-1] rear = [''] # sign correction rear.append('cz q[{}], q[{}];\n'.format(qubit_pair_2[0], qubit_pair_2[1])) # parity correction rear += cnot_ladder rear.append('x q[{}];\n'.format(parity_qubits[-1])) rear.append('cz q[{}], q[{}];\n'.format(parity_qubits[-1], qubit_pair_2[0])) rear.append('x q[{}];\n'.format(parity_qubits[-1])) rear += cnot_ladder[::-1] # 010 and 011 correction rear.append('x q[{}];\n'.format(qubit_pair_2[1])) rear.append('cz q[{}], q[{}];\n'.format(qubit_pair_2[0], qubit_pair_2[1])) rear.append('x q[{}];\n'.format(qubit_pair_2[1])) qasm = front + qasm + rear else: if angle > 0: # adding a correcting CZ gate at the end will result in a minus sign qasm.append('cz q[{}], q[{}];\n'.format(qubit_pair_2[0], qubit_pair_2[1])) # qasm.append('cz q[{}], q[{}];\n'.format(qubit_pair_1[0], qubit_pair_1[1])) else: # adding a correcting CZ gate at the front will result in a plus sign qasm = ['cz q[{}], q[{}];\n'.format(qubit_pair_2[0], qubit_pair_2[1]), ] \ + qasm # 'cz q[{}], q[{}];\n'.format(qubit_pair_1[0], qubit_pair_1[1]) return ''.join(qasm) def get_qasm(self, var_parameters): assert len(var_parameters) == 1 parameter = var_parameters[0] # rescaled parameter (used for easier gradient optimization) if self.rescaled_parameter: if var_parameters[0] > 0: parameter = var_parameters[0] + numpy.tanh(var_parameters[0]**0.5) else: parameter = var_parameters[0] + numpy.tanh(-(-var_parameters[0])**0.5) return self.double_exchange(parameter, self.qubit_pair_1, self.qubit_pair_2, parity_dependence=self.parity_dependence, d_exc_correction=self.d_exc_correction) class EfficientDoubleExcitation2(AnsatzElement): def __init__(self, qubit_pair_1, qubit_pair_2): self.qubit_pair_1 = qubit_pair_1 self.qubit_pair_2 = qubit_pair_2 super(EfficientDoubleExcitation2, self).__init__(element='optimized_d_exc {}, {}'.format(qubit_pair_1, qubit_pair_2), element_type=str(self), n_var_parameters=1) @staticmethod def efficient_double_excitation_2(angle, qubit_pair_1, qubit_pair_2): qasm = [''] theta = angle / 8 # determine the parity of the two pairs qasm.append('cx q[{}], q[{}];\n'.format(*qubit_pair_1)) qasm.append('x q[{}];\n'.format(qubit_pair_1[1])) qasm.append('cx q[{}], q[{}];\n'.format(*qubit_pair_2)) qasm.append('x q[{}];\n'.format(qubit_pair_2[1])) # apply a partial swap of qubits 0 and 2, controlled by 1 and 3 ## qasm.append('cx q[{}], q[{}];\n'.format(qubit_pair_1[0], qubit_pair_2[0])) # # partial ccc_y operation qasm.append('rz({}) q[{}];\n'.format(numpy.pi/2, qubit_pair_1[0])) qasm.append('rx({}) q[{}];\n'.format(theta, qubit_pair_1[0])) # + qasm.append('h q[{}];\n'.format(qubit_pair_1[1])) qasm.append('cx q[{}], q[{}];\n'.format(qubit_pair_1[0], qubit_pair_1[1])) # 0 1 qasm.append('h q[{}];\n'.format(qubit_pair_1[1])) qasm.append('rx({}) q[{}];\n'.format(-theta, qubit_pair_1[0])) # - qasm.append('h q[{}];\n'.format(qubit_pair_2[1])) qasm.append('cx q[{}], q[{}];\n'.format(qubit_pair_1[0], qubit_pair_2[1])) # 0 3 qasm.append('h q[{}];\n'.format(qubit_pair_2[1])) qasm.append('rx({}) q[{}];\n'.format(theta, qubit_pair_1[0])) # + qasm.append('h q[{}];\n'.format(qubit_pair_1[1])) qasm.append('cx q[{}], q[{}];\n'.format(qubit_pair_1[0], qubit_pair_1[1])) # 0 1 qasm.append('h q[{}];\n'.format(qubit_pair_1[1])) qasm.append('rx({}) q[{}];\n'.format(-theta, qubit_pair_1[0])) # - qasm.append('h q[{}];\n'.format(qubit_pair_2[0])) qasm.append('cx q[{}], q[{}];\n'.format(qubit_pair_1[0], qubit_pair_2[0])) # 0 2 qasm.append('h q[{}];\n'.format(qubit_pair_2[0])) qasm.append('rx({}) q[{}];\n'.format(theta, qubit_pair_1[0])) # + qasm.append('h q[{}];\n'.format(qubit_pair_1[1])) qasm.append('cx q[{}], q[{}];\n'.format(qubit_pair_1[0], qubit_pair_1[1])) # 0 1 qasm.append('h q[{}];\n'.format(qubit_pair_1[1])) qasm.append('rx({}) q[{}];\n'.format(-theta, qubit_pair_1[0])) # - qasm.append('h q[{}];\n'.format(qubit_pair_2[1])) qasm.append('cx q[{}], q[{}];\n'.format(qubit_pair_1[0], qubit_pair_2[1])) # 0 3 qasm.append('h q[{}];\n'.format(qubit_pair_2[1])) qasm.append('rx({}) q[{}];\n'.format(theta, qubit_pair_1[0])) # + qasm.append('h q[{}];\n'.format(qubit_pair_1[1])) qasm.append('cx q[{}], q[{}];\n'.format(qubit_pair_1[0], qubit_pair_1[1])) # 0 1 qasm.append('h q[{}];\n'.format(qubit_pair_1[1])) qasm.append('rx({}) q[{}];\n'.format(-theta, qubit_pair_1[0])) # - qasm.append('rz({}) q[{}];\n'.format(-numpy.pi / 2, qubit_pair_1[0])) ##### test ##### # qasm.append('h q[{}];\n'.format(qubit_pair_2[0])) # qasm.append('cx q[{}], q[{}];\n'.format(qubit_pair_1[0], qubit_pair_2[0])) # 0 2 # qasm.append('h q[{}];\n'.format(qubit_pair_2[0])) # ############### # partial ccc_y operation ############ to here qasm.append(QasmUtils.controlled_xz(qubit_pair_1[0], qubit_pair_2[0], reverse=True)) # correct for parity determination qasm.append('x q[{}];\n'.format(qubit_pair_1[1])) qasm.append('cx q[{}], q[{}];\n'.format(*qubit_pair_1)) qasm.append('x q[{}];\n'.format(qubit_pair_2[1])) qasm.append('cx q[{}], q[{}];\n'.format(*qubit_pair_2)) return ''.join(qasm) def get_qasm(self, var_parameters): assert len(var_parameters) == 1 parameter = var_parameters[0] return self.efficient_double_excitation_2(parameter, self.qubit_pair_1, self.qubit_pair_2)
[ 5, 6, 7, 9, 11 ]
264
2843845848747c723d670cd3a5fcb7127153ac7e
<mask token>
<mask token> @app.route('/<sensor_id>', methods=['GET']) def sensor_details(sensor_id): sensor_pos = search_index_by_id(sensor_id) if sensor_pos >= 0: return {'sensor': sensors[sensor_pos]} else: return {'kind': 'error', 'payload': f'Sensor {sensor_id} not found'} @app.route('/<sensor_id>/toggle', methods=['PUT']) def set_sensor_value(sensor_id: str): sensor_pos = search_index_by_id(sensor_id) if sensor_pos >= 0 and isinstance(sensors[sensor_pos], ToggleSensor): sensors[sensor_pos].toggle() return {'kind': 'error', 'payload': f'Sensor {sensor_id} not found'} @app.route('/', methods=['GET']) def hello_world(): for sensor in sensors: sensor.update() return {'sensors': sensors}
<mask token> def search_index_by_id(sensor_id: str): for pos, sensor in enumerate(sensors): if sensor.id == sensor_id: return pos return -1 @app.route('/<sensor_id>', methods=['GET']) def sensor_details(sensor_id): sensor_pos = search_index_by_id(sensor_id) if sensor_pos >= 0: return {'sensor': sensors[sensor_pos]} else: return {'kind': 'error', 'payload': f'Sensor {sensor_id} not found'} @app.route('/<sensor_id>/toggle', methods=['PUT']) def set_sensor_value(sensor_id: str): sensor_pos = search_index_by_id(sensor_id) if sensor_pos >= 0 and isinstance(sensors[sensor_pos], ToggleSensor): sensors[sensor_pos].toggle() return {'kind': 'error', 'payload': f'Sensor {sensor_id} not found'} @app.route('/', methods=['GET']) def hello_world(): for sensor in sensors: sensor.update() return {'sensors': sensors}
<mask token> app = Flask(__name__) sensors = [ToggleSensor(id='s-01', description='lampadina'), ToggleSensor( id='s-02', description='lampadina'), ToggleSensor(id='s-03', description='allarme atomico'), ToggleSensor(id='s-04', description= 'porta aperta'), Sensor(id='temperature-01', description= 'sensore di temperatura'), Sensor(id='umidita-01', description= 'sensore di umiditá'), Sensor(id='cleancode-01', description= 'sensore di bellezza del codice'), Sensor(id='luce-01', description= 'sensore di luce')] def search_index_by_id(sensor_id: str): for pos, sensor in enumerate(sensors): if sensor.id == sensor_id: return pos return -1 @app.route('/<sensor_id>', methods=['GET']) def sensor_details(sensor_id): sensor_pos = search_index_by_id(sensor_id) if sensor_pos >= 0: return {'sensor': sensors[sensor_pos]} else: return {'kind': 'error', 'payload': f'Sensor {sensor_id} not found'} @app.route('/<sensor_id>/toggle', methods=['PUT']) def set_sensor_value(sensor_id: str): sensor_pos = search_index_by_id(sensor_id) if sensor_pos >= 0 and isinstance(sensors[sensor_pos], ToggleSensor): sensors[sensor_pos].toggle() return {'kind': 'error', 'payload': f'Sensor {sensor_id} not found'} @app.route('/', methods=['GET']) def hello_world(): for sensor in sensors: sensor.update() return {'sensors': sensors}
from flask import Flask from sim.toggle import ToggleSensor from sim.sensor import Sensor app = Flask(__name__) sensors = [ ToggleSensor(id="s-01", description="lampadina"), ToggleSensor(id="s-02", description="lampadina"), ToggleSensor(id="s-03", description="allarme atomico"), ToggleSensor(id="s-04", description="porta aperta"), Sensor(id="temperature-01", description="sensore di temperatura"), Sensor(id="umidita-01", description="sensore di umiditá"), Sensor(id="cleancode-01", description="sensore di bellezza del codice"), Sensor(id="luce-01", description="sensore di luce"), ] def search_index_by_id(sensor_id: str): for pos, sensor in enumerate(sensors): if sensor.id == sensor_id: return pos return -1 @app.route("/<sensor_id>", methods=["GET"]) def sensor_details(sensor_id): sensor_pos = search_index_by_id(sensor_id) if sensor_pos >= 0: return {"sensor": sensors[sensor_pos]} else: return {"kind": "error", "payload": f"Sensor {sensor_id} not found"} @app.route("/<sensor_id>/toggle", methods=["PUT"]) def set_sensor_value(sensor_id: str): sensor_pos = search_index_by_id(sensor_id) if sensor_pos >= 0 and isinstance(sensors[sensor_pos], ToggleSensor): sensors[sensor_pos].toggle() return {"kind": "error", "payload": f"Sensor {sensor_id} not found"} @app.route("/", methods=["GET"]) def hello_world(): for sensor in sensors: sensor.update() return {"sensors": sensors}
[ 0, 3, 4, 5, 7 ]
265
f5bd41f4aaff616a332d80ec44c364ffc91c58f0
<mask token>
<mask token> def skewness_log(df): df['SalePrice_New'] = np.log(df['SalePrice']) df['GrLivArea_New'] = np.log(df['GrLivArea']) skewed_slPri = skew(df['SalePrice_New']) skewness_grLiv = skew(df['GrLivArea_New']) return skewness_grLiv, skewed_slPri
<mask token> data = pd.read_csv('data/train.csv') def skewness_log(df): df['SalePrice_New'] = np.log(df['SalePrice']) df['GrLivArea_New'] = np.log(df['GrLivArea']) skewed_slPri = skew(df['SalePrice_New']) skewness_grLiv = skew(df['GrLivArea_New']) return skewness_grLiv, skewed_slPri
from scipy.stats import skew import pandas as pd import numpy as np data = pd.read_csv('data/train.csv') def skewness_log(df): df['SalePrice_New'] = np.log(df['SalePrice']) df['GrLivArea_New'] = np.log(df['GrLivArea']) skewed_slPri = skew(df['SalePrice_New']) skewness_grLiv = skew(df['GrLivArea_New']) return skewness_grLiv, skewed_slPri
# %load q03_skewness_log/build.py from scipy.stats import skew import pandas as pd import numpy as np data = pd.read_csv('data/train.csv') # Write code here: def skewness_log(df): df['SalePrice_New'] = np.log(df['SalePrice']) df['GrLivArea_New'] = np.log(df['GrLivArea']) skewed_slPri = skew(df['SalePrice_New']) skewness_grLiv = skew(df['GrLivArea_New']) return skewness_grLiv,skewed_slPri
[ 0, 1, 2, 3, 4 ]
266
d65f858c3ad06226b83d2627f6d38e03eae5b36c
<mask token>
<mask token> def line_evaluation(param_list, param_eval, file_name='line evaluation', ** kwargs): """ Evaluates a list of parameter pairs across repeated trials and aggregates the result. Parameters ---------- param_list : array_like List of values to test for parameter of interest. param_eval : callable Must take a parameter instance and return an object that can be evaluated by `aggr_meth` (see :func:`grid_evaluation`). file_name : string, optional Optional name for the file. (default is 'line evaluation') Returns ------- dict A dictionary with the results of the experiment. Notes ----- You can also explicitely set the arguments in :func:`grid_evaluation` in this function call. """ experiment = grid_evaluation(param_list_one=param_list, param_list_two= [], param_eval=param_eval, file_name=file_name, **kwargs) experiment['line'] = experiment.pop('grid') experiment['cols'] = experiment.pop('rows') return experiment
<mask token> def grid_evaluation(param_list_one, param_list_two, param_eval, n_trials=16, aggr_method=np.mean, save_dir='data/', file_name='grid evaluation', save_to_disk=True, save_each=1000, chunksize=1.0): """ Evaluates a grid of parameter pairs across repeated trials and aggregates the result. Parameters ---------- param_list_one : array_like List of values to test for the first parameter. param_list_two : array_like, optional List of values to test for the second parameter. Can be empty, in which case a one-dimensional grid is evaluated. param_eval : callable Must take an instance of parameter values and return an object that can be evaluated by `aggr_meth`. It should accept one input if `param_list_two` is empty, and two inputs otherwise. n_trials : int, optional Number of trials to run for each parameter pair. (default is `16`) aggr_method : callable, optional The aggregation method for the values returned by `patam_eval` on different trials for the same parameter pair. (default is :func:`numpy.mean`) save_dir : string, optional Directory onto which save the result. (default is 'data/') file_name : string, optional Optional name for the file. It is always prepended with the time stamp at the end of the grid evaluation. (default is 'grid evaluation') save_to_disk : bool, optional Whether to save the experiment to disk (True) or not (False). (default is `True`) save_each : int, optional Save the experiment each time `save_each` grid points are computed. (default is `1000`) chunksize : int The size of the chunks of jobs sent to each parallel worker. (default is `1`) Returns ------- dict A dictionary with the results of the experiment. """ if not list(param_list_two): params = param_list_one grid_shape = len(param_list_one), is_really_grid = False else: params = list(itertools.product(param_list_one, param_list_two)) grid_shape = len(param_list_one), len(param_list_two) is_really_grid = True def grid_fun(point): trial_out = np.nan * np.ones((n_trials,)) for i in np.arange(n_trials): if is_really_grid: trial_out[i] = param_eval(point[0], point[1]) else: trial_out[i] = param_eval(point) return aggr_method(trial_out) n_grid_pts = len(params) def record_experiment(grid): now = datetime.datetime.now().strftime('%Y-%m-%d %H:%M:%S') save_path = save_dir + now + ' ' + file_name + '.pkl' experiment = {'date': now, 'rows': param_list_one, 'cols': param_list_two, 'n_trials': n_trials, 'grid': np.reshape(grid, grid_shape), 'path': save_path} if save_to_disk: utils.save_obj(experiment, save_path) return experiment nb_workers = min(mp.cpu_count(), 24) print('Working with {} processes.'.format(nb_workers)) pool = mp.Pool(nb_workers) it = pool.imap(grid_fun, params, chunksize=chunksize) grid = np.nan * np.ones((n_grid_pts,)) for idx, val in enumerate(tqdm(it, total=n_grid_pts)): grid[idx] = val if idx >= save_each and idx % save_each == 0: experiment = record_experiment(grid) pool.close() pool.join() experiment = record_experiment(grid) return experiment def line_evaluation(param_list, param_eval, file_name='line evaluation', ** kwargs): """ Evaluates a list of parameter pairs across repeated trials and aggregates the result. Parameters ---------- param_list : array_like List of values to test for parameter of interest. param_eval : callable Must take a parameter instance and return an object that can be evaluated by `aggr_meth` (see :func:`grid_evaluation`). file_name : string, optional Optional name for the file. (default is 'line evaluation') Returns ------- dict A dictionary with the results of the experiment. Notes ----- You can also explicitely set the arguments in :func:`grid_evaluation` in this function call. """ experiment = grid_evaluation(param_list_one=param_list, param_list_two= [], param_eval=param_eval, file_name=file_name, **kwargs) experiment['line'] = experiment.pop('grid') experiment['cols'] = experiment.pop('rows') return experiment
<mask token> import utils import datetime import itertools import numpy as np import recovery as rec import sampling as smp import graphs_signals as gs import pathos.multiprocessing as mp from tqdm import tqdm def grid_evaluation(param_list_one, param_list_two, param_eval, n_trials=16, aggr_method=np.mean, save_dir='data/', file_name='grid evaluation', save_to_disk=True, save_each=1000, chunksize=1.0): """ Evaluates a grid of parameter pairs across repeated trials and aggregates the result. Parameters ---------- param_list_one : array_like List of values to test for the first parameter. param_list_two : array_like, optional List of values to test for the second parameter. Can be empty, in which case a one-dimensional grid is evaluated. param_eval : callable Must take an instance of parameter values and return an object that can be evaluated by `aggr_meth`. It should accept one input if `param_list_two` is empty, and two inputs otherwise. n_trials : int, optional Number of trials to run for each parameter pair. (default is `16`) aggr_method : callable, optional The aggregation method for the values returned by `patam_eval` on different trials for the same parameter pair. (default is :func:`numpy.mean`) save_dir : string, optional Directory onto which save the result. (default is 'data/') file_name : string, optional Optional name for the file. It is always prepended with the time stamp at the end of the grid evaluation. (default is 'grid evaluation') save_to_disk : bool, optional Whether to save the experiment to disk (True) or not (False). (default is `True`) save_each : int, optional Save the experiment each time `save_each` grid points are computed. (default is `1000`) chunksize : int The size of the chunks of jobs sent to each parallel worker. (default is `1`) Returns ------- dict A dictionary with the results of the experiment. """ if not list(param_list_two): params = param_list_one grid_shape = len(param_list_one), is_really_grid = False else: params = list(itertools.product(param_list_one, param_list_two)) grid_shape = len(param_list_one), len(param_list_two) is_really_grid = True def grid_fun(point): trial_out = np.nan * np.ones((n_trials,)) for i in np.arange(n_trials): if is_really_grid: trial_out[i] = param_eval(point[0], point[1]) else: trial_out[i] = param_eval(point) return aggr_method(trial_out) n_grid_pts = len(params) def record_experiment(grid): now = datetime.datetime.now().strftime('%Y-%m-%d %H:%M:%S') save_path = save_dir + now + ' ' + file_name + '.pkl' experiment = {'date': now, 'rows': param_list_one, 'cols': param_list_two, 'n_trials': n_trials, 'grid': np.reshape(grid, grid_shape), 'path': save_path} if save_to_disk: utils.save_obj(experiment, save_path) return experiment nb_workers = min(mp.cpu_count(), 24) print('Working with {} processes.'.format(nb_workers)) pool = mp.Pool(nb_workers) it = pool.imap(grid_fun, params, chunksize=chunksize) grid = np.nan * np.ones((n_grid_pts,)) for idx, val in enumerate(tqdm(it, total=n_grid_pts)): grid[idx] = val if idx >= save_each and idx % save_each == 0: experiment = record_experiment(grid) pool.close() pool.join() experiment = record_experiment(grid) return experiment def line_evaluation(param_list, param_eval, file_name='line evaluation', ** kwargs): """ Evaluates a list of parameter pairs across repeated trials and aggregates the result. Parameters ---------- param_list : array_like List of values to test for parameter of interest. param_eval : callable Must take a parameter instance and return an object that can be evaluated by `aggr_meth` (see :func:`grid_evaluation`). file_name : string, optional Optional name for the file. (default is 'line evaluation') Returns ------- dict A dictionary with the results of the experiment. Notes ----- You can also explicitely set the arguments in :func:`grid_evaluation` in this function call. """ experiment = grid_evaluation(param_list_one=param_list, param_list_two= [], param_eval=param_eval, file_name=file_name, **kwargs) experiment['line'] = experiment.pop('grid') experiment['cols'] = experiment.pop('rows') return experiment
#!/usr/bin/env python3 # -*- coding: utf-8 -*- """Phase transition module """ import utils import datetime import itertools import numpy as np import recovery as rec import sampling as smp import graphs_signals as gs import pathos.multiprocessing as mp from tqdm import tqdm ## MAIN FUNCTIONS ## def grid_evaluation(param_list_one, param_list_two, param_eval, n_trials=16, aggr_method=np.mean, save_dir='data/', file_name='grid evaluation', save_to_disk=True, save_each=1000, chunksize=1.): r""" Evaluates a grid of parameter pairs across repeated trials and aggregates the result. Parameters ---------- param_list_one : array_like List of values to test for the first parameter. param_list_two : array_like, optional List of values to test for the second parameter. Can be empty, in which case a one-dimensional grid is evaluated. param_eval : callable Must take an instance of parameter values and return an object that can be evaluated by `aggr_meth`. It should accept one input if `param_list_two` is empty, and two inputs otherwise. n_trials : int, optional Number of trials to run for each parameter pair. (default is `16`) aggr_method : callable, optional The aggregation method for the values returned by `patam_eval` on different trials for the same parameter pair. (default is :func:`numpy.mean`) save_dir : string, optional Directory onto which save the result. (default is 'data/') file_name : string, optional Optional name for the file. It is always prepended with the time stamp at the end of the grid evaluation. (default is 'grid evaluation') save_to_disk : bool, optional Whether to save the experiment to disk (True) or not (False). (default is `True`) save_each : int, optional Save the experiment each time `save_each` grid points are computed. (default is `1000`) chunksize : int The size of the chunks of jobs sent to each parallel worker. (default is `1`) Returns ------- dict A dictionary with the results of the experiment. """ if not list(param_list_two): # If `param_list_two` is empty params = param_list_one grid_shape = (len(param_list_one),) is_really_grid = False else: params = list(itertools.product(param_list_one, param_list_two)) grid_shape = (len(param_list_one), len(param_list_two)) is_really_grid = True def grid_fun(point): # Function to compute for each grid point trial_out = np.nan * np.ones((n_trials,)) for i in np.arange(n_trials): if is_really_grid: trial_out[i] = param_eval(point[0], point[1]) else: # If `param_list_two` is empty trial_out[i] = param_eval(point) return aggr_method(trial_out) n_grid_pts = len(params) # Recording procedure def record_experiment(grid): now = datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S") save_path = save_dir + now + ' ' + file_name + '.pkl' experiment = { 'date': now, 'rows': param_list_one, 'cols': param_list_two, 'n_trials': n_trials, 'grid': np.reshape(grid, grid_shape), 'path': save_path } if save_to_disk: utils.save_obj(experiment, save_path) return experiment # Set a pool of workers nb_workers = min(mp.cpu_count(), 24) print('Working with {} processes.'.format(nb_workers)) pool = mp.Pool(nb_workers) # Iterate `grid_fun` across workers it = pool.imap(grid_fun, params, chunksize=chunksize) grid = np.nan * np.ones((n_grid_pts,)) for idx, val in enumerate(tqdm(it, total=n_grid_pts)): grid[idx] = val # Make sure that we save after each couple of iterations if (idx >= save_each) and (idx % save_each == 0): experiment = record_experiment(grid) # Close pool pool.close() pool.join() experiment = record_experiment(grid) return experiment def line_evaluation(param_list, param_eval, file_name='line evaluation', **kwargs): r""" Evaluates a list of parameter pairs across repeated trials and aggregates the result. Parameters ---------- param_list : array_like List of values to test for parameter of interest. param_eval : callable Must take a parameter instance and return an object that can be evaluated by `aggr_meth` (see :func:`grid_evaluation`). file_name : string, optional Optional name for the file. (default is 'line evaluation') Returns ------- dict A dictionary with the results of the experiment. Notes ----- You can also explicitely set the arguments in :func:`grid_evaluation` in this function call. """ experiment = grid_evaluation(param_list_one=param_list, param_list_two=[], param_eval=param_eval, file_name=file_name, **kwargs) experiment['line'] = experiment.pop('grid') experiment['cols'] = experiment.pop('rows') return experiment
[ 0, 1, 2, 3, 4 ]
267
f97a892e6e0aa258ad917c4a73a66e89b0dc3253
<mask token>
<mask token> sys.path.extend(['detection', 'train']) <mask token> if test_mode in ['RNet', 'ONet']: detectors[1] = Detector(R_Net, 24, batch_size[1], model_path[1]) if test_mode == 'ONet': detectors[2] = Detector(O_Net, 48, batch_size[2], model_path[2]) <mask token> if config.input_mode == '1': path = config.test_dir print(path) for item in tqdm(os.listdir(path)): img_path = os.path.join(path, item) img = cv2.imread(img_path) img_labeled = mtcnn_detector.detect_and_draw(img) cv2.imwrite(out_path + item, img_labeled) if config.input_mode == '2': cap = cv2.VideoCapture(0) fourcc = cv2.VideoWriter_fourcc(*'XVID') out = cv2.VideoWriter(out_path + 'out.mp4', fourcc, 10, (640, 480)) while True: t1 = cv2.getTickCount() ret, frame = cap.read() if ret == True: boxes_c, landmarks = mtcnn_detector.detect(frame) t2 = cv2.getTickCount() t = (t2 - t1) / cv2.getTickFrequency() fps = 1.0 / t for i in range(boxes_c.shape[0]): bbox = boxes_c[i, :4] score = boxes_c[i, 4] corpbbox = [int(bbox[0]), int(bbox[1]), int(bbox[2]), int( bbox[3])] cv2.rectangle(frame, (corpbbox[0], corpbbox[1]), (corpbbox[ 2], corpbbox[3]), (255, 0, 0), 1) cv2.putText(frame, '{:.2f}'.format(score), (corpbbox[0], corpbbox[1] - 2), cv2.FONT_HERSHEY_SIMPLEX, 0.5, (0, 0, 255), 2) cv2.putText(frame, '{:.4f}'.format(t) + ' ' + '{:.3f}'.format( fps), (10, 20), cv2.FONT_HERSHEY_SIMPLEX, 0.5, (255, 0, 255), 2 ) for i in range(landmarks.shape[0]): for j in range(len(landmarks[i]) // 2): cv2.circle(frame, (int(landmarks[i][2 * j]), int(int( landmarks[i][2 * j + 1]))), 2, (0, 0, 255)) a = out.write(frame) cv2.imshow('result', frame) if cv2.waitKey(1) & 255 == ord('q'): break else: break cap.release() out.release() cv2.destroyAllWindows()
<mask token> sys.path.extend(['detection', 'train']) <mask token> test_mode = 'ONet' thresh = [0.6, 0.7, 0.9] min_face_size = 24 stride = 2 detectors = [None, None, None] scale_factor = 0.79 model_path = ['model/PNet/', 'model/RNet/', 'model/ONet'] batch_size = config.batches detectors[0] = FcnDetector(P_Net, model_path[0]) if test_mode in ['RNet', 'ONet']: detectors[1] = Detector(R_Net, 24, batch_size[1], model_path[1]) if test_mode == 'ONet': detectors[2] = Detector(O_Net, 48, batch_size[2], model_path[2]) mtcnn_detector = MtcnnDetector(detectors=detectors, min_face_size= min_face_size, stride=stride, threshold=thresh, scale_factor=scale_factor) out_path = join('validate', test_mode) + '/' if config.input_mode == '1': path = config.test_dir print(path) for item in tqdm(os.listdir(path)): img_path = os.path.join(path, item) img = cv2.imread(img_path) img_labeled = mtcnn_detector.detect_and_draw(img) cv2.imwrite(out_path + item, img_labeled) if config.input_mode == '2': cap = cv2.VideoCapture(0) fourcc = cv2.VideoWriter_fourcc(*'XVID') out = cv2.VideoWriter(out_path + 'out.mp4', fourcc, 10, (640, 480)) while True: t1 = cv2.getTickCount() ret, frame = cap.read() if ret == True: boxes_c, landmarks = mtcnn_detector.detect(frame) t2 = cv2.getTickCount() t = (t2 - t1) / cv2.getTickFrequency() fps = 1.0 / t for i in range(boxes_c.shape[0]): bbox = boxes_c[i, :4] score = boxes_c[i, 4] corpbbox = [int(bbox[0]), int(bbox[1]), int(bbox[2]), int( bbox[3])] cv2.rectangle(frame, (corpbbox[0], corpbbox[1]), (corpbbox[ 2], corpbbox[3]), (255, 0, 0), 1) cv2.putText(frame, '{:.2f}'.format(score), (corpbbox[0], corpbbox[1] - 2), cv2.FONT_HERSHEY_SIMPLEX, 0.5, (0, 0, 255), 2) cv2.putText(frame, '{:.4f}'.format(t) + ' ' + '{:.3f}'.format( fps), (10, 20), cv2.FONT_HERSHEY_SIMPLEX, 0.5, (255, 0, 255), 2 ) for i in range(landmarks.shape[0]): for j in range(len(landmarks[i]) // 2): cv2.circle(frame, (int(landmarks[i][2 * j]), int(int( landmarks[i][2 * j + 1]))), 2, (0, 0, 255)) a = out.write(frame) cv2.imshow('result', frame) if cv2.waitKey(1) & 255 == ord('q'): break else: break cap.release() out.release() cv2.destroyAllWindows()
import sys sys.path.extend(['detection', 'train']) from MtcnnDetector import MtcnnDetector from detector import Detector from fcn_detector import FcnDetector from model_factory import P_Net, R_Net, O_Net import config as config from preprocess.utils import iou import cv2 import os from os.path import join, split import numpy as np from tqdm import tqdm test_mode = 'ONet' thresh = [0.6, 0.7, 0.9] min_face_size = 24 stride = 2 detectors = [None, None, None] scale_factor = 0.79 model_path = ['model/PNet/', 'model/RNet/', 'model/ONet'] batch_size = config.batches detectors[0] = FcnDetector(P_Net, model_path[0]) if test_mode in ['RNet', 'ONet']: detectors[1] = Detector(R_Net, 24, batch_size[1], model_path[1]) if test_mode == 'ONet': detectors[2] = Detector(O_Net, 48, batch_size[2], model_path[2]) mtcnn_detector = MtcnnDetector(detectors=detectors, min_face_size= min_face_size, stride=stride, threshold=thresh, scale_factor=scale_factor) out_path = join('validate', test_mode) + '/' if config.input_mode == '1': path = config.test_dir print(path) for item in tqdm(os.listdir(path)): img_path = os.path.join(path, item) img = cv2.imread(img_path) img_labeled = mtcnn_detector.detect_and_draw(img) cv2.imwrite(out_path + item, img_labeled) if config.input_mode == '2': cap = cv2.VideoCapture(0) fourcc = cv2.VideoWriter_fourcc(*'XVID') out = cv2.VideoWriter(out_path + 'out.mp4', fourcc, 10, (640, 480)) while True: t1 = cv2.getTickCount() ret, frame = cap.read() if ret == True: boxes_c, landmarks = mtcnn_detector.detect(frame) t2 = cv2.getTickCount() t = (t2 - t1) / cv2.getTickFrequency() fps = 1.0 / t for i in range(boxes_c.shape[0]): bbox = boxes_c[i, :4] score = boxes_c[i, 4] corpbbox = [int(bbox[0]), int(bbox[1]), int(bbox[2]), int( bbox[3])] cv2.rectangle(frame, (corpbbox[0], corpbbox[1]), (corpbbox[ 2], corpbbox[3]), (255, 0, 0), 1) cv2.putText(frame, '{:.2f}'.format(score), (corpbbox[0], corpbbox[1] - 2), cv2.FONT_HERSHEY_SIMPLEX, 0.5, (0, 0, 255), 2) cv2.putText(frame, '{:.4f}'.format(t) + ' ' + '{:.3f}'.format( fps), (10, 20), cv2.FONT_HERSHEY_SIMPLEX, 0.5, (255, 0, 255), 2 ) for i in range(landmarks.shape[0]): for j in range(len(landmarks[i]) // 2): cv2.circle(frame, (int(landmarks[i][2 * j]), int(int( landmarks[i][2 * j + 1]))), 2, (0, 0, 255)) a = out.write(frame) cv2.imshow('result', frame) if cv2.waitKey(1) & 255 == ord('q'): break else: break cap.release() out.release() cv2.destroyAllWindows()
# coding: utf-8 # In[1]: import sys sys.path.extend(['detection', 'train']) # from detection folder from MtcnnDetector import MtcnnDetector from detector import Detector from fcn_detector import FcnDetector # from train folder from model_factory import P_Net, R_Net, O_Net import config as config from preprocess.utils import iou import cv2 import os from os.path import join, split import numpy as np from tqdm import tqdm # In[ ]: # test_mode = config.test_mode test_mode = 'ONet' thresh = [0.6, 0.7, 0.9] min_face_size = 24 stride = 2 detectors = [None, None, None] scale_factor = 0.79 # 模型放置位置 model_path = ['model/PNet/', 'model/RNet/', 'model/ONet'] batch_size = config.batches detectors[0] = FcnDetector(P_Net, model_path[0]) # detecotors for PNet if test_mode in ['RNet', 'ONet']: detectors[1] = Detector(R_Net, 24, batch_size[1], model_path[1]) if test_mode == 'ONet': detectors[2] = Detector(O_Net, 48, batch_size[2], model_path[2]) # Use the three detectors to construct a mtcnn_detector = MtcnnDetector( detectors=detectors, min_face_size=min_face_size, stride=stride, threshold=thresh, scale_factor=scale_factor) out_path = join('validate', test_mode) + '/' if config.input_mode == '1': #选用图片 path = config.test_dir print(path) for item in tqdm(os.listdir(path)): img_path = os.path.join(path, item) img = cv2.imread(img_path) img_labeled = mtcnn_detector.detect_and_draw(img) cv2.imwrite(out_path + item, img_labeled) if config.input_mode == '2': cap = cv2.VideoCapture(0) fourcc = cv2.VideoWriter_fourcc(*'XVID') out = cv2.VideoWriter(out_path+'out.mp4', fourcc, 10, (640, 480)) while True: t1 = cv2.getTickCount() ret, frame = cap.read() if ret == True: boxes_c, landmarks = mtcnn_detector.detect(frame) t2 = cv2.getTickCount() t = (t2-t1)/cv2.getTickFrequency() fps = 1.0/t for i in range(boxes_c.shape[0]): bbox = boxes_c[i, :4] score = boxes_c[i, 4] corpbbox = [int(bbox[0]), int(bbox[1]), int(bbox[2]), int(bbox[3])] #画人脸框 cv2.rectangle(frame, (corpbbox[0], corpbbox[1]), (corpbbox[2], corpbbox[3]), (255, 0, 0), 1) #画置信度 cv2.putText(frame, '{:.2f}'.format(score), (corpbbox[0], corpbbox[1] - 2), cv2.FONT_HERSHEY_SIMPLEX, 0.5, (0, 0, 255), 2) #画fps值 cv2.putText(frame, '{:.4f}'.format(t) + " " + '{:.3f}'.format(fps), (10, 20), cv2.FONT_HERSHEY_SIMPLEX, 0.5, (255, 0, 255), 2) #画关键点 for i in range(landmarks.shape[0]): for j in range(len(landmarks[i])//2): cv2.circle( frame, (int(landmarks[i][2*j]), int(int(landmarks[i][2*j+1]))), 2, (0, 0, 255)) a = out.write(frame) cv2.imshow("result", frame) if cv2.waitKey(1) & 0xFF == ord('q'): break else: break cap.release() out.release() cv2.destroyAllWindows()
[ 0, 1, 2, 3, 4 ]
268
f19d8aa2104240cc93a0146f1b14c635e7cd3a41
#! /usr/bin/env python import ldac from numpy import * import shearprofile as sp import sys import os, subprocess import pylab if len(sys.argv) != 6: sys.stderr.write("wrong number of arguments!\n") sys.exit(1) catfile= sys.argv[1] clusterz=float(sys.argv[2]) center= map(float,sys.argv[3].split(',')) pixscale=float(sys.argv[4]) # arcsec / pix clustername=sys.argv[5] catalog= ldac.openObjectFile(catfile) r, E = sp.calcTangentialShear(catalog, center, pixscale) beta=sp.beta(catalog["Z_BEST"],clusterz, calcAverage = False) kappacut = sp.calcWLViolationCut(r, beta, sigma_v = 1300) radiuscut = r > 60 #arcseconds largeradiuscut = r < 500 zcut = logical_and(catalog['Z_BEST'] > 1.2*clusterz, catalog['Z_BEST'] < 1.2) cleancut = logical_and(kappacut, logical_and(radiuscut, logical_and(largeradiuscut,zcut))) cleancat = catalog.filter(cleancut) samples = sp.simpleBootstrap(cleancat, clusterz, pixscale, center, beta[cleancut]) r500x = float(subprocess.Popen("grep %s /nfs/slac/g/ki/ki05/anja/SUBARU/clusters.r500x.dat | awk '{print $2}'" % clustername, stdout=subprocess.PIPE, shell=True).communicate()[0]) mass = lambda sigma2,r500x: 2*sigma2*r500x/4.3e-09 masses = [ mass(sigma2, r500x) for sigma2 in samples] confidenceRegion = sp.ConfidenceRegion(masses) filebase,ext=os.path.splitext(catfile) #output = open(filebase+"_profile.dat", 'w') #for i in xrange(len(r_as)): # output.write("%f %f %f %f %f\n" % (r_as[i], E[i], Err[i], B[i], Berr[i])) #output.close() #veldisp = sqrt( confidenceRegion[0][0] * 4.3e-09 / (3*r500x) ) #veldisperr = (veldisp / 2) * ((confidenceRegion[1][0]+confidenceRegion[2][0])/confidenceRegion[0][0]) # output = open(filebase+"_sisfit.ml.dat", 'w') samples = array(samples) samples[samples < 0] = 0. veldispersions = sqrt(samples) veldisp_confidenceregion = sp.ConfidenceRegion(veldispersions[veldispersions > 0]) output = open(filebase+"_sisfit.sigma.dat", 'w') output.write("M500: %e -%e %e\n" % (confidenceRegion[0][0], confidenceRegion[1][0], confidenceRegion[2][0])) output.write("sigma: %e -%e %e\n" % (veldisp_confidenceregion[0][0], veldisp_confidenceregion[1][0], veldisp_confidenceregion[2][0])) output.close() #sys.stderr.write("sigma: %e -%e %e\n" % (veldisp_confidenceregion[0][0], veldisp_confidenceregion[1][0], veldisp_confidenceregion[2][0])) # #pylab.hist(veldispersions[veldispersions > 0], bins=50) #pylab.show() # print '%s %e -%e %e' % (clustername, confidenceRegion[0][0], confidenceRegion[1][0], confidenceRegion[2][0])
null
null
null
null
[ 0 ]
269
0e58834120c34b5152026bde6d089be19244e21a
import os from MdApi import MdApi class Adapter(MdApi): def __init__(self): super(Adapter, self).__init__() def connect(self): self.createFtdcMdApi(os.getcwd()) self.registerFront('tcp://180.168.146.187:10010') def onFrontConnected(self): print 'front success' if __name__ == '__main__': adapter = Adapter() adapter.connect()
null
null
null
null
[ 0 ]
270
df40b0628d6a180a98cd385145ee7c65ecb78256
<mask token> def bytes_feature(value): assert isinstance(value, Iterable) return tf.train.Feature(bytes_list=tf.train.BytesList(value=value)) <mask token> class TFRecordProducer: def remove_list(self, list1, list2): i, j = 0, 0 tmp_list1 = [] tmp_list2 = [] while i < len(list1) and j < len(list2): item1 = int(list1[i].split('/')[-1].split('-')[0]) item2 = int(list2[j].split('/')[-1].split('-')[0]) if item1 == item2: tmp_list1.append(list1[i]) tmp_list2.append(list2[j]) i += 1 j += 1 elif item1 < item2: i += 1 else: j += 1 return tmp_list1, tmp_list2 def __init__(self, in_dir, hp, args, is_train): def find_all(file_format): return sorted(glob(os.path.join(self.data_dir, file_format))) self.in_dir = in_dir self.hp = hp self.args = args self.is_train = is_train self.data_dir = in_dir self.dvec_list = find_all(hp.form.dvec_npy) self.target_wav_list = find_all(hp.form.target.wav) self.mixed_wav_list = find_all(hp.form.mixed.wav) self.target_mag_list = find_all(hp.form.target.mag) self.mixed_mag_list = find_all(hp.form.mixed.mag) self.target_phase_list = find_all(hp.form.target.phase) self.mixed_phase_list = find_all(hp.form.mixed.phase) self.target_mel_list = find_all(hp.form.target.mel) self.mixed_mel_list = find_all(hp.form.mixed.mel) _, self.target_wav_list = self.remove_list(self.dvec_list, self. target_wav_list) _, self.mixed_wav_list = self.remove_list(self.dvec_list, self. mixed_wav_list) _, self.target_mag_list = self.remove_list(self.dvec_list, self. target_mag_list) _, self.mixed_mag_list = self.remove_list(self.dvec_list, self. mixed_mag_list) _, self.target_phase_list = self.remove_list(self.dvec_list, self. target_phase_list) _, self.mixed_phase_list = self.remove_list(self.dvec_list, self. mixed_phase_list) _, self.target_mel_list = self.remove_list(self.dvec_list, self. target_mel_list) _, self.mixed_mel_list = self.remove_list(self.dvec_list, self. mixed_mel_list) print(len(self.dvec_list), len(self.target_wav_list), len(self. mixed_wav_list), len(self.target_mag_list), len(self. mixed_mag_list), len(self.target_phase_list), len(self. mixed_phase_list), len(self.target_mel_list), len(self. mixed_mel_list)) assert len(self.dvec_list) == len(self.target_wav_list) == len(self .mixed_wav_list) == len(self.target_mag_list) == len(self. mixed_mag_list), 'number of training files must match' assert len(self.dvec_list) != 0, 'no training file found' def write_training_examples_to_tfrecords(self, filename, need_phase= False, need_mel=False, hp=None): with tf.python_io.TFRecordWriter(filename) as writer: for i in tqdm(range(len(self.dvec_list))): target_mag = torch.load(self.target_mag_list[i]).numpy() mixed_mag = torch.load(self.mixed_mag_list[i]).numpy() dvec = np.load(self.dvec_list[i]) if need_phase: target_phase = torch.load(self.target_phase_list[i]).numpy( ) mixed_phase = torch.load(self.mixed_phase_list[i]).numpy() target_mel = torch.load(self.target_mel_list[i]).numpy() mixed_mel = torch.load(self.mixed_mel_list[i]).numpy() writer.write(convert_to_example(target_mag, mixed_mag, dvec, target_phase, mixed_phase, target_mel, mixed_mel).SerializeToString()) elif need_mel: target_mel = torch.load(self.target_mel_list[i]).numpy() mixed_mel = torch.load(self.mixed_mel_list[i]).numpy() writer.write(convert_to_example(target_mag, mixed_mag, dvec, None, None, target_mel, mixed_mel). SerializeToString()) else: writer.write(convert_to_example(target_mag, mixed_mag, dvec).SerializeToString()) <mask token>
<mask token> def bytes_feature(value): assert isinstance(value, Iterable) return tf.train.Feature(bytes_list=tf.train.BytesList(value=value)) def convert_to_example(target, mixed, speaker, target_phase=None, mixed_phase=None, target_mel=None, mixed_mel=None): raw_target = target.tostring() raw_mixed = mixed.tostring() raw_speaker = speaker.tostring() raw_target_phase = target_phase.tostring( ) if target_phase is not None else None raw_mixed_phase = mixed_phase.tostring( ) if mixed_phase is not None else None raw_target_mel = target_mel.tostring() if target_mel is not None else None raw_mixed_mel = mixed_mel.tostring() if mixed_mel is not None else None if target_mel is not None and mixed_mel is not None: if target_phase is not None and mixed_phase is not None: example = tf.train.Example(features=tf.train.Features(feature={ 'target': bytes_feature([raw_target]), 'mixed': bytes_feature([raw_mixed]), 'speaker': bytes_feature([ raw_speaker]), 'target_phase': bytes_feature([ raw_target_phase]), 'mixed_phase': bytes_feature([ raw_mixed_phase]), 'target_mel': bytes_feature([ raw_target_mel]), 'mixed_mel': bytes_feature([raw_mixed_mel])}) ) else: example = tf.train.Example(features=tf.train.Features(feature={ 'target': bytes_feature([raw_target]), 'mixed': bytes_feature([raw_mixed]), 'speaker': bytes_feature([ raw_speaker]), 'target_mel': bytes_feature([raw_target_mel] ), 'mixed_mel': bytes_feature([raw_mixed_mel])})) else: example = tf.train.Example(features=tf.train.Features(feature={ 'target': bytes_feature([raw_target]), 'mixed': bytes_feature([ raw_mixed]), 'speaker': bytes_feature([raw_speaker])})) return example class TFRecordProducer: def remove_list(self, list1, list2): i, j = 0, 0 tmp_list1 = [] tmp_list2 = [] while i < len(list1) and j < len(list2): item1 = int(list1[i].split('/')[-1].split('-')[0]) item2 = int(list2[j].split('/')[-1].split('-')[0]) if item1 == item2: tmp_list1.append(list1[i]) tmp_list2.append(list2[j]) i += 1 j += 1 elif item1 < item2: i += 1 else: j += 1 return tmp_list1, tmp_list2 def __init__(self, in_dir, hp, args, is_train): def find_all(file_format): return sorted(glob(os.path.join(self.data_dir, file_format))) self.in_dir = in_dir self.hp = hp self.args = args self.is_train = is_train self.data_dir = in_dir self.dvec_list = find_all(hp.form.dvec_npy) self.target_wav_list = find_all(hp.form.target.wav) self.mixed_wav_list = find_all(hp.form.mixed.wav) self.target_mag_list = find_all(hp.form.target.mag) self.mixed_mag_list = find_all(hp.form.mixed.mag) self.target_phase_list = find_all(hp.form.target.phase) self.mixed_phase_list = find_all(hp.form.mixed.phase) self.target_mel_list = find_all(hp.form.target.mel) self.mixed_mel_list = find_all(hp.form.mixed.mel) _, self.target_wav_list = self.remove_list(self.dvec_list, self. target_wav_list) _, self.mixed_wav_list = self.remove_list(self.dvec_list, self. mixed_wav_list) _, self.target_mag_list = self.remove_list(self.dvec_list, self. target_mag_list) _, self.mixed_mag_list = self.remove_list(self.dvec_list, self. mixed_mag_list) _, self.target_phase_list = self.remove_list(self.dvec_list, self. target_phase_list) _, self.mixed_phase_list = self.remove_list(self.dvec_list, self. mixed_phase_list) _, self.target_mel_list = self.remove_list(self.dvec_list, self. target_mel_list) _, self.mixed_mel_list = self.remove_list(self.dvec_list, self. mixed_mel_list) print(len(self.dvec_list), len(self.target_wav_list), len(self. mixed_wav_list), len(self.target_mag_list), len(self. mixed_mag_list), len(self.target_phase_list), len(self. mixed_phase_list), len(self.target_mel_list), len(self. mixed_mel_list)) assert len(self.dvec_list) == len(self.target_wav_list) == len(self .mixed_wav_list) == len(self.target_mag_list) == len(self. mixed_mag_list), 'number of training files must match' assert len(self.dvec_list) != 0, 'no training file found' def write_training_examples_to_tfrecords(self, filename, need_phase= False, need_mel=False, hp=None): with tf.python_io.TFRecordWriter(filename) as writer: for i in tqdm(range(len(self.dvec_list))): target_mag = torch.load(self.target_mag_list[i]).numpy() mixed_mag = torch.load(self.mixed_mag_list[i]).numpy() dvec = np.load(self.dvec_list[i]) if need_phase: target_phase = torch.load(self.target_phase_list[i]).numpy( ) mixed_phase = torch.load(self.mixed_phase_list[i]).numpy() target_mel = torch.load(self.target_mel_list[i]).numpy() mixed_mel = torch.load(self.mixed_mel_list[i]).numpy() writer.write(convert_to_example(target_mag, mixed_mag, dvec, target_phase, mixed_phase, target_mel, mixed_mel).SerializeToString()) elif need_mel: target_mel = torch.load(self.target_mel_list[i]).numpy() mixed_mel = torch.load(self.mixed_mel_list[i]).numpy() writer.write(convert_to_example(target_mag, mixed_mag, dvec, None, None, target_mel, mixed_mel). SerializeToString()) else: writer.write(convert_to_example(target_mag, mixed_mag, dvec).SerializeToString()) <mask token> parser.add_argument('--in_dir', default='.', help='input glob str') parser.add_argument('-c', '--config', type=str, default= 'config/config.yaml', help='yaml file for configuration') parser.add_argument('--out', default='.', help='output prefix of tf record') parser.add_argument('--gpu', default=0, help='Path to model checkpoint') parser.add_argument('--need_phase', action='store_true') parser.add_argument('--need_mel', action='store_true') <mask token> tp.write_training_examples_to_tfrecords(filename, args.need_phase, args. need_mel, hp)
<mask token> def bytes_feature(value): assert isinstance(value, Iterable) return tf.train.Feature(bytes_list=tf.train.BytesList(value=value)) def convert_to_example(target, mixed, speaker, target_phase=None, mixed_phase=None, target_mel=None, mixed_mel=None): raw_target = target.tostring() raw_mixed = mixed.tostring() raw_speaker = speaker.tostring() raw_target_phase = target_phase.tostring( ) if target_phase is not None else None raw_mixed_phase = mixed_phase.tostring( ) if mixed_phase is not None else None raw_target_mel = target_mel.tostring() if target_mel is not None else None raw_mixed_mel = mixed_mel.tostring() if mixed_mel is not None else None if target_mel is not None and mixed_mel is not None: if target_phase is not None and mixed_phase is not None: example = tf.train.Example(features=tf.train.Features(feature={ 'target': bytes_feature([raw_target]), 'mixed': bytes_feature([raw_mixed]), 'speaker': bytes_feature([ raw_speaker]), 'target_phase': bytes_feature([ raw_target_phase]), 'mixed_phase': bytes_feature([ raw_mixed_phase]), 'target_mel': bytes_feature([ raw_target_mel]), 'mixed_mel': bytes_feature([raw_mixed_mel])}) ) else: example = tf.train.Example(features=tf.train.Features(feature={ 'target': bytes_feature([raw_target]), 'mixed': bytes_feature([raw_mixed]), 'speaker': bytes_feature([ raw_speaker]), 'target_mel': bytes_feature([raw_target_mel] ), 'mixed_mel': bytes_feature([raw_mixed_mel])})) else: example = tf.train.Example(features=tf.train.Features(feature={ 'target': bytes_feature([raw_target]), 'mixed': bytes_feature([ raw_mixed]), 'speaker': bytes_feature([raw_speaker])})) return example class TFRecordProducer: def remove_list(self, list1, list2): i, j = 0, 0 tmp_list1 = [] tmp_list2 = [] while i < len(list1) and j < len(list2): item1 = int(list1[i].split('/')[-1].split('-')[0]) item2 = int(list2[j].split('/')[-1].split('-')[0]) if item1 == item2: tmp_list1.append(list1[i]) tmp_list2.append(list2[j]) i += 1 j += 1 elif item1 < item2: i += 1 else: j += 1 return tmp_list1, tmp_list2 def __init__(self, in_dir, hp, args, is_train): def find_all(file_format): return sorted(glob(os.path.join(self.data_dir, file_format))) self.in_dir = in_dir self.hp = hp self.args = args self.is_train = is_train self.data_dir = in_dir self.dvec_list = find_all(hp.form.dvec_npy) self.target_wav_list = find_all(hp.form.target.wav) self.mixed_wav_list = find_all(hp.form.mixed.wav) self.target_mag_list = find_all(hp.form.target.mag) self.mixed_mag_list = find_all(hp.form.mixed.mag) self.target_phase_list = find_all(hp.form.target.phase) self.mixed_phase_list = find_all(hp.form.mixed.phase) self.target_mel_list = find_all(hp.form.target.mel) self.mixed_mel_list = find_all(hp.form.mixed.mel) _, self.target_wav_list = self.remove_list(self.dvec_list, self. target_wav_list) _, self.mixed_wav_list = self.remove_list(self.dvec_list, self. mixed_wav_list) _, self.target_mag_list = self.remove_list(self.dvec_list, self. target_mag_list) _, self.mixed_mag_list = self.remove_list(self.dvec_list, self. mixed_mag_list) _, self.target_phase_list = self.remove_list(self.dvec_list, self. target_phase_list) _, self.mixed_phase_list = self.remove_list(self.dvec_list, self. mixed_phase_list) _, self.target_mel_list = self.remove_list(self.dvec_list, self. target_mel_list) _, self.mixed_mel_list = self.remove_list(self.dvec_list, self. mixed_mel_list) print(len(self.dvec_list), len(self.target_wav_list), len(self. mixed_wav_list), len(self.target_mag_list), len(self. mixed_mag_list), len(self.target_phase_list), len(self. mixed_phase_list), len(self.target_mel_list), len(self. mixed_mel_list)) assert len(self.dvec_list) == len(self.target_wav_list) == len(self .mixed_wav_list) == len(self.target_mag_list) == len(self. mixed_mag_list), 'number of training files must match' assert len(self.dvec_list) != 0, 'no training file found' def write_training_examples_to_tfrecords(self, filename, need_phase= False, need_mel=False, hp=None): with tf.python_io.TFRecordWriter(filename) as writer: for i in tqdm(range(len(self.dvec_list))): target_mag = torch.load(self.target_mag_list[i]).numpy() mixed_mag = torch.load(self.mixed_mag_list[i]).numpy() dvec = np.load(self.dvec_list[i]) if need_phase: target_phase = torch.load(self.target_phase_list[i]).numpy( ) mixed_phase = torch.load(self.mixed_phase_list[i]).numpy() target_mel = torch.load(self.target_mel_list[i]).numpy() mixed_mel = torch.load(self.mixed_mel_list[i]).numpy() writer.write(convert_to_example(target_mag, mixed_mag, dvec, target_phase, mixed_phase, target_mel, mixed_mel).SerializeToString()) elif need_mel: target_mel = torch.load(self.target_mel_list[i]).numpy() mixed_mel = torch.load(self.mixed_mel_list[i]).numpy() writer.write(convert_to_example(target_mag, mixed_mag, dvec, None, None, target_mel, mixed_mel). SerializeToString()) else: writer.write(convert_to_example(target_mag, mixed_mag, dvec).SerializeToString()) <mask token> parser = argparse.ArgumentParser() parser.add_argument('--in_dir', default='.', help='input glob str') parser.add_argument('-c', '--config', type=str, default= 'config/config.yaml', help='yaml file for configuration') parser.add_argument('--out', default='.', help='output prefix of tf record') parser.add_argument('--gpu', default=0, help='Path to model checkpoint') parser.add_argument('--need_phase', action='store_true') parser.add_argument('--need_mel', action='store_true') args = parser.parse_args() os.environ['CUDA_DEVICE_ORDER'] = 'PCI_BUS_ID' os.environ['CUDA_VISIBLE_DEVICES'] = str(args.gpu) in_dir = args.in_dir filename = args.out hp = HParam(args.config) tp = TFRecordProducer(in_dir, hp, args, True) tp.write_training_examples_to_tfrecords(filename, args.need_phase, args. need_mel, hp)
import os import tensorflow as tf import torch from tqdm import tqdm from glob import glob import numpy as np from collections.abc import Iterable from utils.hparams import HParam def bytes_feature(value): assert isinstance(value, Iterable) return tf.train.Feature(bytes_list=tf.train.BytesList(value=value)) def convert_to_example(target, mixed, speaker, target_phase=None, mixed_phase=None, target_mel=None, mixed_mel=None): raw_target = target.tostring() raw_mixed = mixed.tostring() raw_speaker = speaker.tostring() raw_target_phase = target_phase.tostring( ) if target_phase is not None else None raw_mixed_phase = mixed_phase.tostring( ) if mixed_phase is not None else None raw_target_mel = target_mel.tostring() if target_mel is not None else None raw_mixed_mel = mixed_mel.tostring() if mixed_mel is not None else None if target_mel is not None and mixed_mel is not None: if target_phase is not None and mixed_phase is not None: example = tf.train.Example(features=tf.train.Features(feature={ 'target': bytes_feature([raw_target]), 'mixed': bytes_feature([raw_mixed]), 'speaker': bytes_feature([ raw_speaker]), 'target_phase': bytes_feature([ raw_target_phase]), 'mixed_phase': bytes_feature([ raw_mixed_phase]), 'target_mel': bytes_feature([ raw_target_mel]), 'mixed_mel': bytes_feature([raw_mixed_mel])}) ) else: example = tf.train.Example(features=tf.train.Features(feature={ 'target': bytes_feature([raw_target]), 'mixed': bytes_feature([raw_mixed]), 'speaker': bytes_feature([ raw_speaker]), 'target_mel': bytes_feature([raw_target_mel] ), 'mixed_mel': bytes_feature([raw_mixed_mel])})) else: example = tf.train.Example(features=tf.train.Features(feature={ 'target': bytes_feature([raw_target]), 'mixed': bytes_feature([ raw_mixed]), 'speaker': bytes_feature([raw_speaker])})) return example class TFRecordProducer: def remove_list(self, list1, list2): i, j = 0, 0 tmp_list1 = [] tmp_list2 = [] while i < len(list1) and j < len(list2): item1 = int(list1[i].split('/')[-1].split('-')[0]) item2 = int(list2[j].split('/')[-1].split('-')[0]) if item1 == item2: tmp_list1.append(list1[i]) tmp_list2.append(list2[j]) i += 1 j += 1 elif item1 < item2: i += 1 else: j += 1 return tmp_list1, tmp_list2 def __init__(self, in_dir, hp, args, is_train): def find_all(file_format): return sorted(glob(os.path.join(self.data_dir, file_format))) self.in_dir = in_dir self.hp = hp self.args = args self.is_train = is_train self.data_dir = in_dir self.dvec_list = find_all(hp.form.dvec_npy) self.target_wav_list = find_all(hp.form.target.wav) self.mixed_wav_list = find_all(hp.form.mixed.wav) self.target_mag_list = find_all(hp.form.target.mag) self.mixed_mag_list = find_all(hp.form.mixed.mag) self.target_phase_list = find_all(hp.form.target.phase) self.mixed_phase_list = find_all(hp.form.mixed.phase) self.target_mel_list = find_all(hp.form.target.mel) self.mixed_mel_list = find_all(hp.form.mixed.mel) _, self.target_wav_list = self.remove_list(self.dvec_list, self. target_wav_list) _, self.mixed_wav_list = self.remove_list(self.dvec_list, self. mixed_wav_list) _, self.target_mag_list = self.remove_list(self.dvec_list, self. target_mag_list) _, self.mixed_mag_list = self.remove_list(self.dvec_list, self. mixed_mag_list) _, self.target_phase_list = self.remove_list(self.dvec_list, self. target_phase_list) _, self.mixed_phase_list = self.remove_list(self.dvec_list, self. mixed_phase_list) _, self.target_mel_list = self.remove_list(self.dvec_list, self. target_mel_list) _, self.mixed_mel_list = self.remove_list(self.dvec_list, self. mixed_mel_list) print(len(self.dvec_list), len(self.target_wav_list), len(self. mixed_wav_list), len(self.target_mag_list), len(self. mixed_mag_list), len(self.target_phase_list), len(self. mixed_phase_list), len(self.target_mel_list), len(self. mixed_mel_list)) assert len(self.dvec_list) == len(self.target_wav_list) == len(self .mixed_wav_list) == len(self.target_mag_list) == len(self. mixed_mag_list), 'number of training files must match' assert len(self.dvec_list) != 0, 'no training file found' def write_training_examples_to_tfrecords(self, filename, need_phase= False, need_mel=False, hp=None): with tf.python_io.TFRecordWriter(filename) as writer: for i in tqdm(range(len(self.dvec_list))): target_mag = torch.load(self.target_mag_list[i]).numpy() mixed_mag = torch.load(self.mixed_mag_list[i]).numpy() dvec = np.load(self.dvec_list[i]) if need_phase: target_phase = torch.load(self.target_phase_list[i]).numpy( ) mixed_phase = torch.load(self.mixed_phase_list[i]).numpy() target_mel = torch.load(self.target_mel_list[i]).numpy() mixed_mel = torch.load(self.mixed_mel_list[i]).numpy() writer.write(convert_to_example(target_mag, mixed_mag, dvec, target_phase, mixed_phase, target_mel, mixed_mel).SerializeToString()) elif need_mel: target_mel = torch.load(self.target_mel_list[i]).numpy() mixed_mel = torch.load(self.mixed_mel_list[i]).numpy() writer.write(convert_to_example(target_mag, mixed_mag, dvec, None, None, target_mel, mixed_mel). SerializeToString()) else: writer.write(convert_to_example(target_mag, mixed_mag, dvec).SerializeToString()) import argparse parser = argparse.ArgumentParser() parser.add_argument('--in_dir', default='.', help='input glob str') parser.add_argument('-c', '--config', type=str, default= 'config/config.yaml', help='yaml file for configuration') parser.add_argument('--out', default='.', help='output prefix of tf record') parser.add_argument('--gpu', default=0, help='Path to model checkpoint') parser.add_argument('--need_phase', action='store_true') parser.add_argument('--need_mel', action='store_true') args = parser.parse_args() os.environ['CUDA_DEVICE_ORDER'] = 'PCI_BUS_ID' os.environ['CUDA_VISIBLE_DEVICES'] = str(args.gpu) in_dir = args.in_dir filename = args.out hp = HParam(args.config) tp = TFRecordProducer(in_dir, hp, args, True) tp.write_training_examples_to_tfrecords(filename, args.need_phase, args. need_mel, hp)
import os import tensorflow as tf import torch from tqdm import tqdm from glob import glob import numpy as np from collections.abc import Iterable from utils.hparams import HParam #from utils.audio import Audio #import librosa #python encoder_inference.py --in_dir training_libri_mel/train/ --gpu_str 5 #python tfrecord_producer.py --in_dir training_libri_mel/train/ --out xyz --gpu 6 #python tfrecord_producer.py --in_dir test_libri_mel/test/ --out xyz_mel_test --gpu 5 --need_mel --need_phase def bytes_feature(value): assert isinstance(value, Iterable) return tf.train.Feature(bytes_list=tf.train.BytesList(value=value)) def convert_to_example(target, mixed, speaker, target_phase=None, mixed_phase=None, target_mel=None, mixed_mel=None): raw_target = target.tostring() raw_mixed = mixed.tostring() raw_speaker = speaker.tostring() raw_target_phase = target_phase.tostring() if target_phase is not None else None raw_mixed_phase = mixed_phase.tostring() if mixed_phase is not None else None raw_target_mel = target_mel.tostring() if target_mel is not None else None raw_mixed_mel = mixed_mel.tostring() if mixed_mel is not None else None #TODO: handle the case where only have phase info but no mel info if target_mel is not None and mixed_mel is not None: if target_phase is not None and mixed_phase is not None: example = tf.train.Example(features=tf.train.Features(feature={ 'target': bytes_feature([raw_target]), 'mixed': bytes_feature([raw_mixed]), 'speaker': bytes_feature([raw_speaker]), 'target_phase': bytes_feature([raw_target_phase]), 'mixed_phase': bytes_feature([raw_mixed_phase]), 'target_mel': bytes_feature([raw_target_mel]), 'mixed_mel': bytes_feature([raw_mixed_mel]), })) else: example = tf.train.Example(features=tf.train.Features(feature={ 'target': bytes_feature([raw_target]), 'mixed': bytes_feature([raw_mixed]), 'speaker': bytes_feature([raw_speaker]), 'target_mel': bytes_feature([raw_target_mel]), 'mixed_mel': bytes_feature([raw_mixed_mel]), })) else: example = tf.train.Example(features=tf.train.Features(feature={ 'target': bytes_feature([raw_target]), 'mixed': bytes_feature([raw_mixed]), 'speaker': bytes_feature([raw_speaker]), })) return example class TFRecordProducer: def remove_list(self, list1, list2): i,j=0,0 tmp_list1=[] tmp_list2=[] while i<len(list1) and j<len(list2): item1=int(list1[i].split('/')[-1].split('-')[0]) item2=int(list2[j].split('/')[-1].split('-')[0]) if item1==item2: tmp_list1.append(list1[i]) tmp_list2.append(list2[j]) i+=1 j+=1 elif item1<item2: i+=1 else: j+=1 return tmp_list1, tmp_list2 def __init__(self, in_dir, hp, args, is_train): def find_all(file_format): return sorted(glob(os.path.join(self.data_dir, file_format))) self.in_dir=in_dir self.hp = hp self.args = args self.is_train = is_train #self.data_dir = hp.data.train_dir if is_train else hp.data.test_dir self.data_dir = in_dir self.dvec_list = find_all(hp.form.dvec_npy) self.target_wav_list = find_all(hp.form.target.wav) self.mixed_wav_list = find_all(hp.form.mixed.wav) self.target_mag_list = find_all(hp.form.target.mag) self.mixed_mag_list = find_all(hp.form.mixed.mag) self.target_phase_list = find_all(hp.form.target.phase) self.mixed_phase_list = find_all(hp.form.mixed.phase) self.target_mel_list = find_all(hp.form.target.mel) self.mixed_mel_list = find_all(hp.form.mixed.mel) _, self.target_wav_list=self.remove_list(self.dvec_list, self.target_wav_list) _, self.mixed_wav_list=self.remove_list(self.dvec_list, self.mixed_wav_list) _, self.target_mag_list=self.remove_list(self.dvec_list, self.target_mag_list) _, self.mixed_mag_list=self.remove_list(self.dvec_list, self.mixed_mag_list) _, self.target_phase_list=self.remove_list(self.dvec_list, self.target_phase_list) _, self.mixed_phase_list=self.remove_list(self.dvec_list, self.mixed_phase_list) _, self.target_mel_list=self.remove_list(self.dvec_list, self.target_mel_list) _, self.mixed_mel_list=self.remove_list(self.dvec_list, self.mixed_mel_list) print(len(self.dvec_list), len(self.target_wav_list), len(self.mixed_wav_list), \ len(self.target_mag_list), len(self.mixed_mag_list), len(self.target_phase_list), len(self.mixed_phase_list), len(self.target_mel_list), len(self.mixed_mel_list)) assert len(self.dvec_list) == len(self.target_wav_list) == len(self.mixed_wav_list) == \ len(self.target_mag_list) == len(self.mixed_mag_list), "number of training files must match" assert len(self.dvec_list) != 0, \ "no training file found" def write_training_examples_to_tfrecords(self, filename, need_phase=False, need_mel=False, hp=None): #if hp is not None: # audio=Audio(hp) with tf.python_io.TFRecordWriter(filename) as writer: for i in tqdm(range(len(self.dvec_list))): target_mag = torch.load(self.target_mag_list[i]).numpy() mixed_mag = torch.load(self.mixed_mag_list[i]).numpy() dvec = np.load(self.dvec_list[i]) if need_phase: target_phase = torch.load(self.target_phase_list[i]).numpy() mixed_phase = torch.load(self.mixed_phase_list[i]).numpy() target_mel = torch.load(self.target_mel_list[i]).numpy() mixed_mel = torch.load(self.mixed_mel_list[i]).numpy() #mixed_wav = audio.spec2wav(mixed_mag, mixed_phase) #librosa.output.write_wav('mixed.wav', mixed_wav, 16000) writer.write(convert_to_example(target_mag, mixed_mag, dvec, target_phase, mixed_phase, target_mel, mixed_mel).SerializeToString()) elif need_mel: target_mel = torch.load(self.target_mel_list[i]).numpy() mixed_mel = torch.load(self.mixed_mel_list[i]).numpy() writer.write(convert_to_example(target_mag, mixed_mag, dvec, None, None, target_mel, mixed_mel).SerializeToString()) else: writer.write(convert_to_example(target_mag, mixed_mag, dvec).SerializeToString()) import argparse parser=argparse.ArgumentParser() parser.add_argument('--in_dir', default='.', help='input glob str') parser.add_argument('-c', '--config', type=str, default='config/config.yaml', help="yaml file for configuration") parser.add_argument('--out', default='.', help='output prefix of tf record') parser.add_argument('--gpu', default=0, help='Path to model checkpoint') parser.add_argument('--need_phase', action='store_true') parser.add_argument('--need_mel', action='store_true') args=parser.parse_args() os.environ["CUDA_DEVICE_ORDER"]="PCI_BUS_ID" # see issue #152 os.environ["CUDA_VISIBLE_DEVICES"]=str(args.gpu) in_dir=args.in_dir filename=args.out hp = HParam(args.config) tp=TFRecordProducer(in_dir, hp, args, True) tp.write_training_examples_to_tfrecords(filename, args.need_phase, args.need_mel, hp)
[ 5, 7, 8, 9, 10 ]
271
ed7b29a4d7f3a48884434373418c3528f2f397ac
<mask token> def generate_script(seed_text, model, charset): sys.stdout.write(seed_text) sys.stdout.flush() next_char = None should_stop = False while not should_stop: prev_char = next_char next_char = sample(model, seed_text, charset, temp=0.2) sys.stdout.write(next_char) sys.stdout.flush() if prev_char == '\n' and prev_char == next_char: should_stop = True def sample(model, string, charset, temp=1.0): inputs = [string_one_hot(string, charset)] inputs = pad_sequences(inputs, padding='post', maxlen=64) preds = model.predict(inputs)[0] return charset[sample_preds(preds, temp)] <mask token>
<mask token> def main(): print('Loading model...') model, charset = load_model(MODEL_NAME) print(charset) seed_text = input('Enter a String: ').strip() print() generate_script(seed_text, model, charset) def generate_script(seed_text, model, charset): sys.stdout.write(seed_text) sys.stdout.flush() next_char = None should_stop = False while not should_stop: prev_char = next_char next_char = sample(model, seed_text, charset, temp=0.2) sys.stdout.write(next_char) sys.stdout.flush() if prev_char == '\n' and prev_char == next_char: should_stop = True def sample(model, string, charset, temp=1.0): inputs = [string_one_hot(string, charset)] inputs = pad_sequences(inputs, padding='post', maxlen=64) preds = model.predict(inputs)[0] return charset[sample_preds(preds, temp)] def sample_preds(results, temperature=1.0): if temperature <= 0.0: return np.argmax(results) probs = np.exp(np.log(results) / temperature) probs /= np.sum(probs) return np.random.choice(len(results), p=probs) <mask token>
<mask token> def main(): print('Loading model...') model, charset = load_model(MODEL_NAME) print(charset) seed_text = input('Enter a String: ').strip() print() generate_script(seed_text, model, charset) def generate_script(seed_text, model, charset): sys.stdout.write(seed_text) sys.stdout.flush() next_char = None should_stop = False while not should_stop: prev_char = next_char next_char = sample(model, seed_text, charset, temp=0.2) sys.stdout.write(next_char) sys.stdout.flush() if prev_char == '\n' and prev_char == next_char: should_stop = True def sample(model, string, charset, temp=1.0): inputs = [string_one_hot(string, charset)] inputs = pad_sequences(inputs, padding='post', maxlen=64) preds = model.predict(inputs)[0] return charset[sample_preds(preds, temp)] def sample_preds(results, temperature=1.0): if temperature <= 0.0: return np.argmax(results) probs = np.exp(np.log(results) / temperature) probs /= np.sum(probs) return np.random.choice(len(results), p=probs) if __name__ == '__main__': main()
import os os.environ['TF_CPP_MIN_LOG_LEVEL'] = '3' os.environ['KERAS_BACKEND'] = 'tensorflow' import numpy as np import sys from util import load_model from keras.preprocessing.text import hashing_trick from keras.preprocessing.sequence import pad_sequences from southpark.southpark_generative import string_one_hot, char_one_hot MODEL_NAME = 'script_gen_demo_model' def main(): print('Loading model...') model, charset = load_model(MODEL_NAME) print(charset) seed_text = input('Enter a String: ').strip() print() generate_script(seed_text, model, charset) def generate_script(seed_text, model, charset): sys.stdout.write(seed_text) sys.stdout.flush() next_char = None should_stop = False while not should_stop: prev_char = next_char next_char = sample(model, seed_text, charset, temp=0.2) sys.stdout.write(next_char) sys.stdout.flush() if prev_char == '\n' and prev_char == next_char: should_stop = True def sample(model, string, charset, temp=1.0): inputs = [string_one_hot(string, charset)] inputs = pad_sequences(inputs, padding='post', maxlen=64) preds = model.predict(inputs)[0] return charset[sample_preds(preds, temp)] def sample_preds(results, temperature=1.0): if temperature <= 0.0: return np.argmax(results) probs = np.exp(np.log(results) / temperature) probs /= np.sum(probs) return np.random.choice(len(results), p=probs) if __name__ == '__main__': main()
#!/usr/bin/python3 import os os.environ['TF_CPP_MIN_LOG_LEVEL'] = '3' # or any {'0', '1', '2' os.environ['KERAS_BACKEND'] = 'tensorflow' import numpy as np import sys from util import load_model from keras.preprocessing.text import hashing_trick from keras.preprocessing.sequence import pad_sequences from southpark.southpark_generative import string_one_hot, char_one_hot MODEL_NAME = "script_gen_demo_model" def main(): print("Loading model...") model, charset = load_model(MODEL_NAME) print(charset) seed_text = input("Enter a String: ").strip() print() generate_script(seed_text, model, charset) def generate_script(seed_text, model, charset): sys.stdout.write(seed_text) sys.stdout.flush() next_char = None should_stop = False while not should_stop: prev_char = next_char next_char = sample(model, seed_text, charset, temp = 0.2) sys.stdout.write(next_char) sys.stdout.flush() if prev_char == '\n' and prev_char == next_char: should_stop = True def sample(model, string, charset, temp = 1.0): inputs = [string_one_hot(string, charset)] inputs = pad_sequences(inputs, padding = 'post', maxlen = 64) preds = model.predict(inputs)[0] return charset[sample_preds(preds, temp)] def sample_preds(results, temperature = 1.0): # helper function to sample an index from a probability array if temperature <= 0.0: return np.argmax(results) #num_choices = results.shape[0] # (batch, outputs) probs = np.exp(np.log(results) / temperature) probs /= np.sum(probs) return np.random.choice(len(results), p = probs) #preds = np.asarray(preds).astype('float64') #preds = np.log(preds) / temperature #exp_preds = np.exp(preds) #preds = exp_preds / np.sum(exp_preds) #probas = np.random.multinomial(1, preds, 1) # #print(probas) #return np.argmax(probas) if __name__ == "__main__": main()
[ 2, 4, 5, 7, 8 ]
272
b6d8a918659f733919fe3bb4be9037e36ad32386
<mask token> def hwToidx(x: int, y: int, weight: int): return y * weight + x <mask token> def idxToXY(idx, cellw: int): curpoint = idxTohw(idx, cellw) curpoint[0], curpoint[1] = curpoint[0] * 10, curpoint[1] * 10 return curpoint class Graph: def __init__(self, V: int, W: int): self.V = V self.E = 0 self.adj = [] self.W = W for i in range(V): nears = [] self.adj.append(nears) def AddEdge(self, v: int, w: int): self.adj[v].append(w) self.E += 1 def __str__(self): str = '' for idx, nears in enumerate(self.adj): str += 'idx: {} nears: {}\n'.format(idx, nears) return str class BreadthFirstPaths: def __init__(self, g: Graph, s: int): self.marked = [False] * g.V self.edgeTo = [0] * g.V self.s = s self.bfs(g, self.s) def bfs(self, g: Graph, s: int): q = queue.Queue() q.put(s) while q.qsize() != 0: v = q.get() for w in g.adj[v]: if not self.marked[w]: self.edgeTo[w] = v self.marked[w] = True q.put(w) def HasPathTo(self, v: int): return self.marked[v] def PathTo(self, v: int) ->[int]: result = [] if not self.HasPathTo(v): return result x = v while x != self.s: result.append(x) x = self.edgeTo[x] result.append(self.s) return result <mask token> class AStarPaths: def __init__(self, g: Graph, start: int, end: int): self.closedSet = [] self.openSet = [start] self.start = start self.end = end self.edgeTo = [0] * g.V self.marked = [False] * g.V self.gScore = [sys.maxsize] * g.V self.gScore[start] = 0 self.fScore = [sys.maxsize] * g.V self.fScore[start] = manhattanDistance(idxTohw(start, g.W), idxTohw (end, g.W)) self.astar(g) def astar(self, g: Graph): while len(self.openSet) > 0: current = min(self.openSet, key=lambda s: self.fScore[s]) if current == self.end: return self.openSet.remove(current) self.closedSet.append(current) for w in g.adj[current]: if w in self.closedSet: continue tentativegScore = self.gScore[current] + manhattanDistance( idxTohw(current, g.W), idxTohw(w, g.W)) if tentativegScore < self.gScore[w]: self.edgeTo[w] = current self.marked[w] = True print('edgeTo ({}) -> ({})'.format(idxTohw(current, g.W ), idxTohw(w, g.W))) self.gScore[w] = tentativegScore self.fScore[w] = self.gScore[w] + manhattanDistance(idxTohw (w, g.W), idxTohw(self.end, g.W)) print('fScore[%d] manhattan: %d' % (w, self.fScore[w])) if w not in self.openSet: self.openSet.append(w) def HasPathTo(self, v: int): return self.marked[v] def PathTo(self, v: int): result = [] if not self.HasPathTo(v): return result x = v while x != self.start: result.append(x) x = self.edgeTo[x] result.append(self.start) return result <mask token>
<mask token> def hwToidx(x: int, y: int, weight: int): return y * weight + x def idxTohw(idx, weight: int): return [idx % weight, idx // weight] def idxToXY(idx, cellw: int): curpoint = idxTohw(idx, cellw) curpoint[0], curpoint[1] = curpoint[0] * 10, curpoint[1] * 10 return curpoint class Graph: def __init__(self, V: int, W: int): self.V = V self.E = 0 self.adj = [] self.W = W for i in range(V): nears = [] self.adj.append(nears) def AddEdge(self, v: int, w: int): self.adj[v].append(w) self.E += 1 def __str__(self): str = '' for idx, nears in enumerate(self.adj): str += 'idx: {} nears: {}\n'.format(idx, nears) return str class BreadthFirstPaths: def __init__(self, g: Graph, s: int): self.marked = [False] * g.V self.edgeTo = [0] * g.V self.s = s self.bfs(g, self.s) def bfs(self, g: Graph, s: int): q = queue.Queue() q.put(s) while q.qsize() != 0: v = q.get() for w in g.adj[v]: if not self.marked[w]: self.edgeTo[w] = v self.marked[w] = True q.put(w) def HasPathTo(self, v: int): return self.marked[v] def PathTo(self, v: int) ->[int]: result = [] if not self.HasPathTo(v): return result x = v while x != self.s: result.append(x) x = self.edgeTo[x] result.append(self.s) return result <mask token> def dist_between(a, b): return (b[0] - a[0]) ** 2 + (b[1] - a[1]) ** 2 class AStarPaths: def __init__(self, g: Graph, start: int, end: int): self.closedSet = [] self.openSet = [start] self.start = start self.end = end self.edgeTo = [0] * g.V self.marked = [False] * g.V self.gScore = [sys.maxsize] * g.V self.gScore[start] = 0 self.fScore = [sys.maxsize] * g.V self.fScore[start] = manhattanDistance(idxTohw(start, g.W), idxTohw (end, g.W)) self.astar(g) def astar(self, g: Graph): while len(self.openSet) > 0: current = min(self.openSet, key=lambda s: self.fScore[s]) if current == self.end: return self.openSet.remove(current) self.closedSet.append(current) for w in g.adj[current]: if w in self.closedSet: continue tentativegScore = self.gScore[current] + manhattanDistance( idxTohw(current, g.W), idxTohw(w, g.W)) if tentativegScore < self.gScore[w]: self.edgeTo[w] = current self.marked[w] = True print('edgeTo ({}) -> ({})'.format(idxTohw(current, g.W ), idxTohw(w, g.W))) self.gScore[w] = tentativegScore self.fScore[w] = self.gScore[w] + manhattanDistance(idxTohw (w, g.W), idxTohw(self.end, g.W)) print('fScore[%d] manhattan: %d' % (w, self.fScore[w])) if w not in self.openSet: self.openSet.append(w) def HasPathTo(self, v: int): return self.marked[v] def PathTo(self, v: int): result = [] if not self.HasPathTo(v): return result x = v while x != self.start: result.append(x) x = self.edgeTo[x] result.append(self.start) return result <mask token>
<mask token> def hwToidx(x: int, y: int, weight: int): return y * weight + x def idxTohw(idx, weight: int): return [idx % weight, idx // weight] def idxToXY(idx, cellw: int): curpoint = idxTohw(idx, cellw) curpoint[0], curpoint[1] = curpoint[0] * 10, curpoint[1] * 10 return curpoint class Graph: def __init__(self, V: int, W: int): self.V = V self.E = 0 self.adj = [] self.W = W for i in range(V): nears = [] self.adj.append(nears) def AddEdge(self, v: int, w: int): self.adj[v].append(w) self.E += 1 def __str__(self): str = '' for idx, nears in enumerate(self.adj): str += 'idx: {} nears: {}\n'.format(idx, nears) return str class BreadthFirstPaths: def __init__(self, g: Graph, s: int): self.marked = [False] * g.V self.edgeTo = [0] * g.V self.s = s self.bfs(g, self.s) def bfs(self, g: Graph, s: int): q = queue.Queue() q.put(s) while q.qsize() != 0: v = q.get() for w in g.adj[v]: if not self.marked[w]: self.edgeTo[w] = v self.marked[w] = True q.put(w) def HasPathTo(self, v: int): return self.marked[v] def PathTo(self, v: int) ->[int]: result = [] if not self.HasPathTo(v): return result x = v while x != self.s: result.append(x) x = self.edgeTo[x] result.append(self.s) return result def manhattanDistance(x, y): return sum(map(lambda i, j: abs(i - j), x, y)) def dist_between(a, b): return (b[0] - a[0]) ** 2 + (b[1] - a[1]) ** 2 class AStarPaths: def __init__(self, g: Graph, start: int, end: int): self.closedSet = [] self.openSet = [start] self.start = start self.end = end self.edgeTo = [0] * g.V self.marked = [False] * g.V self.gScore = [sys.maxsize] * g.V self.gScore[start] = 0 self.fScore = [sys.maxsize] * g.V self.fScore[start] = manhattanDistance(idxTohw(start, g.W), idxTohw (end, g.W)) self.astar(g) def astar(self, g: Graph): while len(self.openSet) > 0: current = min(self.openSet, key=lambda s: self.fScore[s]) if current == self.end: return self.openSet.remove(current) self.closedSet.append(current) for w in g.adj[current]: if w in self.closedSet: continue tentativegScore = self.gScore[current] + manhattanDistance( idxTohw(current, g.W), idxTohw(w, g.W)) if tentativegScore < self.gScore[w]: self.edgeTo[w] = current self.marked[w] = True print('edgeTo ({}) -> ({})'.format(idxTohw(current, g.W ), idxTohw(w, g.W))) self.gScore[w] = tentativegScore self.fScore[w] = self.gScore[w] + manhattanDistance(idxTohw (w, g.W), idxTohw(self.end, g.W)) print('fScore[%d] manhattan: %d' % (w, self.fScore[w])) if w not in self.openSet: self.openSet.append(w) def HasPathTo(self, v: int): return self.marked[v] def PathTo(self, v: int): result = [] if not self.HasPathTo(v): return result x = v while x != self.start: result.append(x) x = self.edgeTo[x] result.append(self.start) return result <mask token>
import queue import sys import logging from superai.common import InitLog logger = logging.getLogger(__name__) def hwToidx(x: int, y: int, weight: int): return y * weight + x def idxTohw(idx, weight: int): return [idx % weight, idx // weight] def idxToXY(idx, cellw: int): curpoint = idxTohw(idx, cellw) curpoint[0], curpoint[1] = curpoint[0] * 10, curpoint[1] * 10 return curpoint class Graph: def __init__(self, V: int, W: int): self.V = V self.E = 0 self.adj = [] self.W = W for i in range(V): nears = [] self.adj.append(nears) def AddEdge(self, v: int, w: int): self.adj[v].append(w) self.E += 1 def __str__(self): str = '' for idx, nears in enumerate(self.adj): str += 'idx: {} nears: {}\n'.format(idx, nears) return str class BreadthFirstPaths: def __init__(self, g: Graph, s: int): self.marked = [False] * g.V self.edgeTo = [0] * g.V self.s = s self.bfs(g, self.s) def bfs(self, g: Graph, s: int): q = queue.Queue() q.put(s) while q.qsize() != 0: v = q.get() for w in g.adj[v]: if not self.marked[w]: self.edgeTo[w] = v self.marked[w] = True q.put(w) def HasPathTo(self, v: int): return self.marked[v] def PathTo(self, v: int) ->[int]: result = [] if not self.HasPathTo(v): return result x = v while x != self.s: result.append(x) x = self.edgeTo[x] result.append(self.s) return result def manhattanDistance(x, y): return sum(map(lambda i, j: abs(i - j), x, y)) def dist_between(a, b): return (b[0] - a[0]) ** 2 + (b[1] - a[1]) ** 2 class AStarPaths: def __init__(self, g: Graph, start: int, end: int): self.closedSet = [] self.openSet = [start] self.start = start self.end = end self.edgeTo = [0] * g.V self.marked = [False] * g.V self.gScore = [sys.maxsize] * g.V self.gScore[start] = 0 self.fScore = [sys.maxsize] * g.V self.fScore[start] = manhattanDistance(idxTohw(start, g.W), idxTohw (end, g.W)) self.astar(g) def astar(self, g: Graph): while len(self.openSet) > 0: current = min(self.openSet, key=lambda s: self.fScore[s]) if current == self.end: return self.openSet.remove(current) self.closedSet.append(current) for w in g.adj[current]: if w in self.closedSet: continue tentativegScore = self.gScore[current] + manhattanDistance( idxTohw(current, g.W), idxTohw(w, g.W)) if tentativegScore < self.gScore[w]: self.edgeTo[w] = current self.marked[w] = True print('edgeTo ({}) -> ({})'.format(idxTohw(current, g.W ), idxTohw(w, g.W))) self.gScore[w] = tentativegScore self.fScore[w] = self.gScore[w] + manhattanDistance(idxTohw (w, g.W), idxTohw(self.end, g.W)) print('fScore[%d] manhattan: %d' % (w, self.fScore[w])) if w not in self.openSet: self.openSet.append(w) def HasPathTo(self, v: int): return self.marked[v] def PathTo(self, v: int): result = [] if not self.HasPathTo(v): return result x = v while x != self.start: result.append(x) x = self.edgeTo[x] result.append(self.start) return result def main(): InitLog() graph = Graph(24, 6) graph.AddEdge(hwToidx(2, 0, 6), hwToidx(2, 1, 6)) graph.AddEdge(hwToidx(1, 1, 6), hwToidx(1, 2, 6)) graph.AddEdge(hwToidx(2, 1, 6), hwToidx(2, 0, 6)) graph.AddEdge(hwToidx(2, 1, 6), hwToidx(3, 1, 6)) graph.AddEdge(hwToidx(3, 1, 6), hwToidx(2, 1, 6)) graph.AddEdge(hwToidx(3, 1, 6), hwToidx(4, 1, 6)) graph.AddEdge(hwToidx(4, 1, 6), hwToidx(4, 2, 6)) graph.AddEdge(hwToidx(4, 1, 6), hwToidx(3, 1, 6)) graph.AddEdge(hwToidx(0, 2, 6), hwToidx(1, 2, 6)) graph.AddEdge(hwToidx(1, 2, 6), hwToidx(1, 3, 6)) graph.AddEdge(hwToidx(1, 2, 6), hwToidx(0, 2, 6)) graph.AddEdge(hwToidx(1, 2, 6), hwToidx(1, 1, 6)) graph.AddEdge(hwToidx(1, 2, 6), hwToidx(2, 2, 6)) graph.AddEdge(hwToidx(2, 2, 6), hwToidx(2, 3, 6)) graph.AddEdge(hwToidx(2, 2, 6), hwToidx(1, 2, 6)) graph.AddEdge(hwToidx(2, 2, 6), hwToidx(3, 2, 6)) graph.AddEdge(hwToidx(3, 2, 6), hwToidx(3, 3, 6)) graph.AddEdge(hwToidx(3, 2, 6), hwToidx(2, 2, 6)) graph.AddEdge(hwToidx(3, 2, 6), hwToidx(4, 2, 6)) graph.AddEdge(hwToidx(4, 2, 6), hwToidx(4, 3, 6)) graph.AddEdge(hwToidx(4, 2, 6), hwToidx(3, 2, 6)) graph.AddEdge(hwToidx(4, 2, 6), hwToidx(4, 1, 6)) graph.AddEdge(hwToidx(4, 2, 6), hwToidx(5, 2, 6)) graph.AddEdge(hwToidx(5, 2, 6), hwToidx(5, 3, 6)) graph.AddEdge(hwToidx(5, 2, 6), hwToidx(4, 2, 6)) graph.AddEdge(hwToidx(1, 3, 6), hwToidx(1, 2, 6)) graph.AddEdge(hwToidx(2, 3, 6), hwToidx(2, 2, 6)) graph.AddEdge(hwToidx(2, 3, 6), hwToidx(3, 3, 6)) graph.AddEdge(hwToidx(3, 3, 6), hwToidx(2, 3, 6)) graph.AddEdge(hwToidx(3, 3, 6), hwToidx(3, 2, 6)) graph.AddEdge(hwToidx(4, 3, 6), hwToidx(5, 3, 6)) graph.AddEdge(hwToidx(4, 3, 6), hwToidx(4, 2, 6)) graph.AddEdge(hwToidx(5, 3, 6), hwToidx(4, 3, 6)) graph.AddEdge(hwToidx(5, 3, 6), hwToidx(5, 2, 6)) print('图:') print(graph) print('广度优先:') bfs = BreadthFirstPaths(graph, 2) paths = bfs.PathTo(hwToidx(1, 1, 6)) for v in reversed(paths): print(v, idxTohw(v, 6)) print('\na*寻径') astar = AStarPaths(graph, 2, 7) paths = astar.PathTo(hwToidx(1, 1, 6)) for v in reversed(paths): print(v, idxTohw(v, 6)) if __name__ == '__main__': main()
import queue import sys import logging from superai.common import InitLog logger = logging.getLogger(__name__) # 2维到1维 def hwToidx(x: int, y: int, weight: int): return y * weight + x # 1维到2维 def idxTohw(idx, weight: int): return [idx % weight, idx // weight] # 10x10 cell idx 到 [x,y] def idxToXY(idx, cellw: int): curpoint = idxTohw(idx, cellw) curpoint[0], curpoint[1] = curpoint[0] * 10, curpoint[1] * 10 return curpoint # 有向图 class Graph: def __init__(self, V: int, W: int): # 顶点数量 self.V = V # 边数量 self.E = 0 # 邻接表 self.adj = [] # 宽度 (虽然是一维的但是表示是二维的) self.W = W for i in range(V): nears = [] self.adj.append(nears) def AddEdge(self, v: int, w: int): self.adj[v].append(w) self.E += 1 def __str__(self): str = "" for idx, nears in enumerate(self.adj): str += "idx: {} nears: {}\n".format(idx, nears) return str # bfs class BreadthFirstPaths: def __init__(self, g: Graph, s: int): self.marked = [False] * g.V self.edgeTo = [0] * g.V self.s = s self.bfs(g, self.s) def bfs(self, g: Graph, s: int): q = queue.Queue() q.put(s) while q.qsize() != 0: v = q.get() for w in g.adj[v]: # 这个路径没有经过 if not self.marked[w]: self.edgeTo[w] = v self.marked[w] = True q.put(w) # print(w, idxTohw(w, 6)) def HasPathTo(self, v: int): return self.marked[v] def PathTo(self, v: int) -> [int]: result = [] if not self.HasPathTo(v): return result x = v while x != self.s: result.append(x) x = self.edgeTo[x] result.append(self.s) return result # 曼哈顿距离 def manhattanDistance(x, y): return sum(map(lambda i, j: abs(i - j), x, y)) # 欧几里得距离 def dist_between(a, b): return (b[0] - a[0]) ** 2 + (b[1] - a[1]) ** 2 # a* 4方位 class AStarPaths: def __init__(self, g: Graph, start: int, end: int): self.closedSet = [] self.openSet = [start] self.start = start self.end = end self.edgeTo = [0] * g.V self.marked = [False] * g.V # 实际距离 self.gScore = [sys.maxsize] * g.V self.gScore[start] = 0 # 估算到终点的距离 self.fScore = [sys.maxsize] * g.V self.fScore[start] = manhattanDistance(idxTohw(start, g.W), idxTohw(end, g.W)) self.astar(g) def astar(self, g: Graph): while len(self.openSet) > 0: current = min(self.openSet, key=lambda s: self.fScore[s]) if current == self.end: return self.openSet.remove(current) self.closedSet.append(current) for w in g.adj[current]: if w in self.closedSet: continue # 实际距离 tentativegScore = self.gScore[current] + manhattanDistance(idxTohw(current, g.W), idxTohw(w, g.W)) if tentativegScore < self.gScore[w]: self.edgeTo[w] = current self.marked[w] = True print("edgeTo ({}) -> ({})".format(idxTohw(current, g.W), idxTohw(w, g.W))) self.gScore[w] = tentativegScore self.fScore[w] = self.gScore[w] + manhattanDistance(idxTohw(w, g.W), idxTohw(self.end, g.W)) print("fScore[%d] manhattan: %d" % (w, self.fScore[w])) if w not in self.openSet: self.openSet.append(w) def HasPathTo(self, v: int): return self.marked[v] def PathTo(self, v: int): result = [] if not self.HasPathTo(v): return result x = v while x != self.start: result.append(x) x = self.edgeTo[x] result.append(self.start) return result def main(): InitLog() # 0,1,2,3,4 ... 一共12个顶点. width=6,height=4 graph = Graph(24, 6) graph.AddEdge(hwToidx(2, 0, 6), hwToidx(2, 1, 6)) graph.AddEdge(hwToidx(1, 1, 6), hwToidx(1, 2, 6)) graph.AddEdge(hwToidx(2, 1, 6), hwToidx(2, 0, 6)) graph.AddEdge(hwToidx(2, 1, 6), hwToidx(3, 1, 6)) graph.AddEdge(hwToidx(3, 1, 6), hwToidx(2, 1, 6)) graph.AddEdge(hwToidx(3, 1, 6), hwToidx(4, 1, 6)) graph.AddEdge(hwToidx(4, 1, 6), hwToidx(4, 2, 6)) graph.AddEdge(hwToidx(4, 1, 6), hwToidx(3, 1, 6)) graph.AddEdge(hwToidx(0, 2, 6), hwToidx(1, 2, 6)) graph.AddEdge(hwToidx(1, 2, 6), hwToidx(1, 3, 6)) graph.AddEdge(hwToidx(1, 2, 6), hwToidx(0, 2, 6)) graph.AddEdge(hwToidx(1, 2, 6), hwToidx(1, 1, 6)) graph.AddEdge(hwToidx(1, 2, 6), hwToidx(2, 2, 6)) graph.AddEdge(hwToidx(2, 2, 6), hwToidx(2, 3, 6)) graph.AddEdge(hwToidx(2, 2, 6), hwToidx(1, 2, 6)) graph.AddEdge(hwToidx(2, 2, 6), hwToidx(3, 2, 6)) graph.AddEdge(hwToidx(3, 2, 6), hwToidx(3, 3, 6)) graph.AddEdge(hwToidx(3, 2, 6), hwToidx(2, 2, 6)) graph.AddEdge(hwToidx(3, 2, 6), hwToidx(4, 2, 6)) graph.AddEdge(hwToidx(4, 2, 6), hwToidx(4, 3, 6)) graph.AddEdge(hwToidx(4, 2, 6), hwToidx(3, 2, 6)) graph.AddEdge(hwToidx(4, 2, 6), hwToidx(4, 1, 6)) graph.AddEdge(hwToidx(4, 2, 6), hwToidx(5, 2, 6)) graph.AddEdge(hwToidx(5, 2, 6), hwToidx(5, 3, 6)) graph.AddEdge(hwToidx(5, 2, 6), hwToidx(4, 2, 6)) graph.AddEdge(hwToidx(1, 3, 6), hwToidx(1, 2, 6)) graph.AddEdge(hwToidx(2, 3, 6), hwToidx(2, 2, 6)) graph.AddEdge(hwToidx(2, 3, 6), hwToidx(3, 3, 6)) graph.AddEdge(hwToidx(3, 3, 6), hwToidx(2, 3, 6)) graph.AddEdge(hwToidx(3, 3, 6), hwToidx(3, 2, 6)) graph.AddEdge(hwToidx(4, 3, 6), hwToidx(5, 3, 6)) graph.AddEdge(hwToidx(4, 3, 6), hwToidx(4, 2, 6)) graph.AddEdge(hwToidx(5, 3, 6), hwToidx(4, 3, 6)) graph.AddEdge(hwToidx(5, 3, 6), hwToidx(5, 2, 6)) print("图:") print(graph) print("广度优先:") bfs = BreadthFirstPaths(graph, 2) paths = bfs.PathTo(hwToidx(1, 1, 6)) for v in reversed(paths): print(v, idxTohw(v, 6)) # print(manhattanDistance([0, 2], [1, 2])) print("\na*寻径") astar = AStarPaths(graph, 2, 7) paths = astar.PathTo(hwToidx(1, 1, 6)) for v in reversed(paths): print(v, idxTohw(v, 6)) if __name__ == "__main__": main()
[ 16, 18, 19, 23, 24 ]
273
7930bb813bd546747c7c65b661900939f5ba93f1
<mask token>
<mask token> for n in range(len(user_input)): explosion_strength = 0 if user_input[n] == '>': explosion_strength += int(user_input[n + 1]) if user_input[n + explosion_strength] != '>': exploded_str = user_input[:n] + user_input[n + explosion_strength + 1:] user_input = exploded_str else: explosion_strength += user_input[n + explosion_strength + 1]
user_input = input() exploded_str = user_input for n in range(len(user_input)): explosion_strength = 0 if user_input[n] == '>': explosion_strength += int(user_input[n + 1]) if user_input[n + explosion_strength] != '>': exploded_str = user_input[:n] + user_input[n + explosion_strength + 1:] user_input = exploded_str else: explosion_strength += user_input[n + explosion_strength + 1]
user_input = input() #abv>1>1>2>2asdasd exploded_str = user_input for n in range(len(user_input)): explosion_strength = 0 if user_input[n] == ">": explosion_strength += int(user_input[n+1]) if user_input[n+explosion_strength] != ">": exploded_str = user_input[:n] + user_input[n+explosion_strength+1:] user_input = exploded_str else: explosion_strength += user_input[n+explosion_strength+1]
null
[ 0, 1, 2, 3 ]
274
c6cf085330f47ffb139c5acc91d91e9758f5396a
<mask token> class MainPage(PageObject): <mask token> <mask token> <mask token> <mask token> <mask token> <mask token> <mask token> def __init__(self, webdriver, root_uri=None): super(MainPage, self).__init__(webdriver, root_uri) self.open_level_menu() self.close_level_menu() <mask token> <mask token> <mask token> <mask token> def open_level(self, level_number): self.open_level_menu() self.get_level_link(level_number).click() def css_write(self, css): self.css_input = css self.enter_button.click() <mask token>
<mask token> class MainPage(PageObject): <mask token> <mask token> <mask token> <mask token> <mask token> <mask token> <mask token> def __init__(self, webdriver, root_uri=None): super(MainPage, self).__init__(webdriver, root_uri) self.open_level_menu() self.close_level_menu() <mask token> <mask token> def close_level_menu(self): if self.level_menu_opened: self.level_menu.click() self.level_menu_opened = False def get_level_link(self, level_number): return PageElement(xpath= '//span[@class="level-number" and text() = "{0}"]/..'.format( level_number)) def open_level(self, level_number): self.open_level_menu() self.get_level_link(level_number).click() def css_write(self, css): self.css_input = css self.enter_button.click() <mask token>
<mask token> class MainPage(PageObject): <mask token> <mask token> <mask token> <mask token> <mask token> <mask token> <mask token> def __init__(self, webdriver, root_uri=None): super(MainPage, self).__init__(webdriver, root_uri) self.open_level_menu() self.close_level_menu() <mask token> <mask token> def close_level_menu(self): if self.level_menu_opened: self.level_menu.click() self.level_menu_opened = False def get_level_link(self, level_number): return PageElement(xpath= '//span[@class="level-number" and text() = "{0}"]/..'.format( level_number)) def open_level(self, level_number): self.open_level_menu() self.get_level_link(level_number).click() def css_write(self, css): self.css_input = css self.enter_button.click() def do_level1(self): self.open_level(1) self.css_write('page') self.level1_link.click()
from page_objects import PageObject, PageElement class MainPage(PageObject): level_menu_opened = False level_menu_created = False css_input = PageElement(css='input.input-strobe') level_text_span = PageElement(css='span.level-text') instruction_h2 = PageElement(css='h2.order') enter_button = PageElement(css='div.enter-button') level_menu = PageElement(xpath='//div[@class="level-menu-toggle-wrapper"]') def __init__(self, webdriver, root_uri=None): super(MainPage, self).__init__(webdriver, root_uri) self.open_level_menu() self.close_level_menu() def ensure_menu_created(self): if not self.level_menu_created: self.open_level_menu() self.close_level_menu() def open_level_menu(self): if not self.level_menu_opened: self.level_menu.click() self.level_menu_opened = True self.level_menu_created = True def close_level_menu(self): if self.level_menu_opened: self.level_menu.click() self.level_menu_opened = False def get_level_link(self, level_number): return PageElement(xpath= '//span[@class="level-number" and text() = "{0}"]/..'.format( level_number)) def open_level(self, level_number): self.open_level_menu() self.get_level_link(level_number).click() def css_write(self, css): self.css_input = css self.enter_button.click() def do_level1(self): self.open_level(1) self.css_write('page') self.level1_link.click()
from page_objects import PageObject, PageElement class MainPage(PageObject): level_menu_opened = False level_menu_created = False css_input = PageElement(css='input.input-strobe') level_text_span = PageElement(css='span.level-text') instruction_h2 = PageElement(css='h2.order') enter_button = PageElement(css='div.enter-button') level_menu = PageElement( xpath='//div[@class="level-menu-toggle-wrapper"]') def __init__(self, webdriver, root_uri=None): super(MainPage, self).__init__(webdriver, root_uri) # hack to initialize all the menu items self.open_level_menu() self.close_level_menu() def ensure_menu_created(self): if not self.level_menu_created: self.open_level_menu() self.close_level_menu() def open_level_menu(self): if not self.level_menu_opened: self.level_menu.click() self.level_menu_opened = True self.level_menu_created = True def close_level_menu(self): if self.level_menu_opened: self.level_menu.click() self.level_menu_opened = False def get_level_link(self, level_number): return PageElement( xpath='//span[@class="level-number" and text() = "{0}"]/..' .format(level_number) ) def open_level(self, level_number): self.open_level_menu() self.get_level_link(level_number).click() def css_write(self, css): self.css_input = css self.enter_button.click() def do_level1(self): self.open_level(1) self.css_write("page") self.level1_link.click()
[ 4, 6, 7, 11, 12 ]
275
c2ddf31bce4a5f3ae2b0d5455bbc9942f92bff40
<mask token>
<mask token> with open(MODEL_LABELS_FILENAME, 'rb') as f: lb = pickle.load(f) <mask token> for root, dirs, files in os.walk(CAPTCHA_IMAGE_FOLDER): for name in tqdm(files, desc='Solving captchas'): kernel = 5, 5 image = cv2.imread(os.path.join(root, name)) image = cv2.cvtColor(image, cv2.COLOR_RGBA2GRAY) image = cv2.copyMakeBorder(image, 8, 8, 8, 8, cv2.BORDER_CONSTANT, None, 255) k = np.ones((5, 5), np.float32) / 25 image = cv2.filter2D(image, -1, k) ret, image = cv2.threshold(image, 127, 255, cv2.THRESH_BINARY_INV) clear_chunks(image, 0, 50) image = cv2.erode(image, kernel, iterations=1) contours = cv2.findContours(image, cv2.RETR_EXTERNAL, cv2. CHAIN_APPROX_SIMPLE)[-2] letter_image_regions = [] contours = sorted(contours, key=lambda x: cv2.contourArea(x), reverse=True) contours = contours[:5] for contour in contours: if cv2.contourArea(contour) < 60: continue x, y, w, h = cv2.boundingRect(contour) if w / h > 1.5: half_width = int(w / 2) letter_image_regions.append((x, y, half_width, h)) letter_image_regions.append((x + half_width, y, half_width, h)) else: letter_image_regions.append((x, y, w, h)) if len(letter_image_regions) != 5: incorrectly_segmented += 1 continue print( f'Found {len(letter_image_regions)} letter regions instead of 5 , the guess will likely be incorrect' ) letter_image_regions = sorted(letter_image_regions, key=lambda x: x[0]) chars = [] i = 0 for x, y, w, h in letter_image_regions: letter = image[y - 2:y + h + 2, x - 2:x + w + 2] chars.append(letter) i += 1 predictions = [] for letter in chars: letter = resize_to_fit(letter, 20, 20) letter = np.expand_dims(letter, axis=2) letter = np.expand_dims(letter, axis=0) prediction = model.predict(letter) letter_text = lb.inverse_transform(prediction)[0] predictions.append(letter_text) gc1, gc2, gc3, gc4, gc5 = predictions c1, c2, c3, c4, c5, e1, e2, e3, e4 = name correct_guesses = 0 if c1 == gc1: c1_correct += 1 correct_guesses += 1 if c2 == gc2: c2_correct += 1 correct_guesses += 1 if c3 == gc3: c3_correct += 1 correct_guesses += 1 if c4 == gc4: c4_correct += 1 correct_guesses += 1 if c5 == gc5: c5_correct += 1 correct_guesses += 1 if ''.join(predictions) == ''.join([c1, c2, c3, c4, c5]): total_correct += 1 n = correct_guesses_dict.get(correct_guesses, 0) + 1 correct_guesses_dict[correct_guesses] = n print(f"Prediction for {name}: {''.join(predictions)}") print(f'correct c1: {c1_correct}') print(f'correct c2: {c2_correct}') print(f'correct c3: {c3_correct}') print(f'correct c4: {c4_correct}') print(f'correct c5: {c5_correct}') print(f'correct total: {total_correct}') print(f'correctly segmented: {10000 - incorrectly_segmented}') print(correct_guesses_dict)
<mask token> os.environ['TF_CPP_MIN_LOG_LEVEL'] = '3' <mask token> c1_correct = 0 c2_correct = 0 c3_correct = 0 c4_correct = 0 c5_correct = 0 total_correct = 0 incorrectly_segmented = 0 correct_guesses_dict = {} MODEL_FILENAME = 'captcha_model.hdf5' MODEL_LABELS_FILENAME = 'model_labels.dat' CAPTCHA_IMAGE_FOLDER = 'test captchas' with open(MODEL_LABELS_FILENAME, 'rb') as f: lb = pickle.load(f) model = load_model(MODEL_FILENAME) for root, dirs, files in os.walk(CAPTCHA_IMAGE_FOLDER): for name in tqdm(files, desc='Solving captchas'): kernel = 5, 5 image = cv2.imread(os.path.join(root, name)) image = cv2.cvtColor(image, cv2.COLOR_RGBA2GRAY) image = cv2.copyMakeBorder(image, 8, 8, 8, 8, cv2.BORDER_CONSTANT, None, 255) k = np.ones((5, 5), np.float32) / 25 image = cv2.filter2D(image, -1, k) ret, image = cv2.threshold(image, 127, 255, cv2.THRESH_BINARY_INV) clear_chunks(image, 0, 50) image = cv2.erode(image, kernel, iterations=1) contours = cv2.findContours(image, cv2.RETR_EXTERNAL, cv2. CHAIN_APPROX_SIMPLE)[-2] letter_image_regions = [] contours = sorted(contours, key=lambda x: cv2.contourArea(x), reverse=True) contours = contours[:5] for contour in contours: if cv2.contourArea(contour) < 60: continue x, y, w, h = cv2.boundingRect(contour) if w / h > 1.5: half_width = int(w / 2) letter_image_regions.append((x, y, half_width, h)) letter_image_regions.append((x + half_width, y, half_width, h)) else: letter_image_regions.append((x, y, w, h)) if len(letter_image_regions) != 5: incorrectly_segmented += 1 continue print( f'Found {len(letter_image_regions)} letter regions instead of 5 , the guess will likely be incorrect' ) letter_image_regions = sorted(letter_image_regions, key=lambda x: x[0]) chars = [] i = 0 for x, y, w, h in letter_image_regions: letter = image[y - 2:y + h + 2, x - 2:x + w + 2] chars.append(letter) i += 1 predictions = [] for letter in chars: letter = resize_to_fit(letter, 20, 20) letter = np.expand_dims(letter, axis=2) letter = np.expand_dims(letter, axis=0) prediction = model.predict(letter) letter_text = lb.inverse_transform(prediction)[0] predictions.append(letter_text) gc1, gc2, gc3, gc4, gc5 = predictions c1, c2, c3, c4, c5, e1, e2, e3, e4 = name correct_guesses = 0 if c1 == gc1: c1_correct += 1 correct_guesses += 1 if c2 == gc2: c2_correct += 1 correct_guesses += 1 if c3 == gc3: c3_correct += 1 correct_guesses += 1 if c4 == gc4: c4_correct += 1 correct_guesses += 1 if c5 == gc5: c5_correct += 1 correct_guesses += 1 if ''.join(predictions) == ''.join([c1, c2, c3, c4, c5]): total_correct += 1 n = correct_guesses_dict.get(correct_guesses, 0) + 1 correct_guesses_dict[correct_guesses] = n print(f"Prediction for {name}: {''.join(predictions)}") print(f'correct c1: {c1_correct}') print(f'correct c2: {c2_correct}') print(f'correct c3: {c3_correct}') print(f'correct c4: {c4_correct}') print(f'correct c5: {c5_correct}') print(f'correct total: {total_correct}') print(f'correctly segmented: {10000 - incorrectly_segmented}') print(correct_guesses_dict)
import os os.environ['TF_CPP_MIN_LOG_LEVEL'] = '3' from keras.models import load_model from utils import resize_to_fit, clear_chunks, stack_windows from imutils import paths import numpy as np import imutils import cv2 as cv2 import pickle from tqdm import tqdm c1_correct = 0 c2_correct = 0 c3_correct = 0 c4_correct = 0 c5_correct = 0 total_correct = 0 incorrectly_segmented = 0 correct_guesses_dict = {} MODEL_FILENAME = 'captcha_model.hdf5' MODEL_LABELS_FILENAME = 'model_labels.dat' CAPTCHA_IMAGE_FOLDER = 'test captchas' with open(MODEL_LABELS_FILENAME, 'rb') as f: lb = pickle.load(f) model = load_model(MODEL_FILENAME) for root, dirs, files in os.walk(CAPTCHA_IMAGE_FOLDER): for name in tqdm(files, desc='Solving captchas'): kernel = 5, 5 image = cv2.imread(os.path.join(root, name)) image = cv2.cvtColor(image, cv2.COLOR_RGBA2GRAY) image = cv2.copyMakeBorder(image, 8, 8, 8, 8, cv2.BORDER_CONSTANT, None, 255) k = np.ones((5, 5), np.float32) / 25 image = cv2.filter2D(image, -1, k) ret, image = cv2.threshold(image, 127, 255, cv2.THRESH_BINARY_INV) clear_chunks(image, 0, 50) image = cv2.erode(image, kernel, iterations=1) contours = cv2.findContours(image, cv2.RETR_EXTERNAL, cv2. CHAIN_APPROX_SIMPLE)[-2] letter_image_regions = [] contours = sorted(contours, key=lambda x: cv2.contourArea(x), reverse=True) contours = contours[:5] for contour in contours: if cv2.contourArea(contour) < 60: continue x, y, w, h = cv2.boundingRect(contour) if w / h > 1.5: half_width = int(w / 2) letter_image_regions.append((x, y, half_width, h)) letter_image_regions.append((x + half_width, y, half_width, h)) else: letter_image_regions.append((x, y, w, h)) if len(letter_image_regions) != 5: incorrectly_segmented += 1 continue print( f'Found {len(letter_image_regions)} letter regions instead of 5 , the guess will likely be incorrect' ) letter_image_regions = sorted(letter_image_regions, key=lambda x: x[0]) chars = [] i = 0 for x, y, w, h in letter_image_regions: letter = image[y - 2:y + h + 2, x - 2:x + w + 2] chars.append(letter) i += 1 predictions = [] for letter in chars: letter = resize_to_fit(letter, 20, 20) letter = np.expand_dims(letter, axis=2) letter = np.expand_dims(letter, axis=0) prediction = model.predict(letter) letter_text = lb.inverse_transform(prediction)[0] predictions.append(letter_text) gc1, gc2, gc3, gc4, gc5 = predictions c1, c2, c3, c4, c5, e1, e2, e3, e4 = name correct_guesses = 0 if c1 == gc1: c1_correct += 1 correct_guesses += 1 if c2 == gc2: c2_correct += 1 correct_guesses += 1 if c3 == gc3: c3_correct += 1 correct_guesses += 1 if c4 == gc4: c4_correct += 1 correct_guesses += 1 if c5 == gc5: c5_correct += 1 correct_guesses += 1 if ''.join(predictions) == ''.join([c1, c2, c3, c4, c5]): total_correct += 1 n = correct_guesses_dict.get(correct_guesses, 0) + 1 correct_guesses_dict[correct_guesses] = n print(f"Prediction for {name}: {''.join(predictions)}") print(f'correct c1: {c1_correct}') print(f'correct c2: {c2_correct}') print(f'correct c3: {c3_correct}') print(f'correct c4: {c4_correct}') print(f'correct c5: {c5_correct}') print(f'correct total: {total_correct}') print(f'correctly segmented: {10000 - incorrectly_segmented}') print(correct_guesses_dict)
import os os.environ['TF_CPP_MIN_LOG_LEVEL'] = '3' from keras.models import load_model from utils import resize_to_fit, clear_chunks, stack_windows from imutils import paths import numpy as np import imutils import cv2 as cv2 import pickle from tqdm import tqdm c1_correct = 0 c2_correct = 0 c3_correct = 0 c4_correct = 0 c5_correct = 0 total_correct = 0 incorrectly_segmented = 0 correct_guesses_dict = {} MODEL_FILENAME = "captcha_model.hdf5" MODEL_LABELS_FILENAME = "model_labels.dat" CAPTCHA_IMAGE_FOLDER = "test captchas" # Load up the model labels (so we can translate model predictions to actual letters) with open(MODEL_LABELS_FILENAME, "rb") as f: lb = pickle.load(f) # Load the trained neural network model = load_model(MODEL_FILENAME) for root, dirs, files in os.walk(CAPTCHA_IMAGE_FOLDER): for name in tqdm(files, desc='Solving captchas'): kernel = (5,5) #load image image = cv2.imread(os.path.join(root, name)) image = cv2.cvtColor(image, cv2.COLOR_RGBA2GRAY) #add padding image = cv2.copyMakeBorder(image, 8, 8, 8, 8, cv2.BORDER_CONSTANT, None, 255) #blur k = np.ones((5,5),np.float32)/25 image = cv2.filter2D(image,-1,k) # threshhold image ret, image = cv2.threshold(image, 127, 255, cv2.THRESH_BINARY_INV) # clear white dots clear_chunks(image,0,50) # erosion image = cv2.erode(image, kernel, iterations=1) # get contours contours = cv2.findContours(image, cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_SIMPLE)[-2] #segment letters letter_image_regions = [] #(x, y, w ,h) contours = sorted(contours, key=lambda x: cv2.contourArea(x), reverse=True) contours = contours[:5] for contour in contours: if cv2.contourArea(contour) < 60: continue (x, y, w, h) = cv2.boundingRect(contour) if w / h > 1.5: half_width = int(w / 2) letter_image_regions.append((x, y, half_width, h)) letter_image_regions.append((x + half_width, y, half_width, h)) else: letter_image_regions.append((x, y, w, h)) if len(letter_image_regions) != 5: incorrectly_segmented += 1 continue print(f"Found {len(letter_image_regions)} letter regions instead of 5 , the guess will likely be incorrect") letter_image_regions = sorted(letter_image_regions, key=lambda x: x[0]) chars = [] i=0 for (x,y,w,h) in letter_image_regions: letter = image[y-2:y+h+2, x-2:x+w+2] chars.append(letter) i+=1 predictions = [] for letter in chars: # Re-size the letter image to 20x20 pixels to match training data letter = resize_to_fit(letter, 20, 20) # Turn the single image into a 4d list of images to make Keras happy letter = np.expand_dims(letter, axis=2) letter = np.expand_dims(letter, axis=0) # Ask the neural network to make a prediction prediction = model.predict(letter) # Convert the one-hot-encoded prediction back to a normal letter letter_text = lb.inverse_transform(prediction)[0] predictions.append(letter_text) gc1, gc2, gc3, gc4, gc5 = predictions c1, c2, c3, c4, c5, e1, e2, e3, e4 = name correct_guesses = 0 if c1 == gc1: c1_correct += 1 correct_guesses += 1 if c2 == gc2: c2_correct += 1 correct_guesses += 1 if c3 == gc3: c3_correct += 1 correct_guesses += 1 if c4 == gc4: c4_correct += 1 correct_guesses += 1 if c5 == gc5: c5_correct += 1 correct_guesses += 1 if ''.join(predictions) == ''.join([c1,c2,c3,c4,c5]): total_correct += 1 n = correct_guesses_dict.get(correct_guesses, 0) + 1 correct_guesses_dict[correct_guesses] = n print(f"Prediction for {name}: {''.join(predictions)}") print(f"correct c1: {c1_correct}") print(f"correct c2: {c2_correct}") print(f"correct c3: {c3_correct}") print(f"correct c4: {c4_correct}") print(f"correct c5: {c5_correct}") print(f"correct total: {total_correct}") print(f"correctly segmented: {10000 - incorrectly_segmented}") print(correct_guesses_dict)
[ 0, 1, 2, 3, 4 ]
276
75e6554ea3c327c87a2a65710a7f1d55e9933bb0
<mask token> def train(): args = get_args() os.makedirs(args.model_path, exist_ok=True) set_seed(args.seed) """ To follow this training routine you need a DataLoader that yields the tuples of the following format: (Bx3xHxW FloatTensor x, BxHxW LongTensor y, BxN LongTensor y_cls) where x - batch of input images, y - batch of groung truth seg maps, y_cls - batch of 1D tensors of dimensionality N: N total number of classes, y_cls[i, T] = 1 if class T is present in image i, 0 otherwise """ traindata = HeadSegData(args.seg_data_path, args.train_txt, train=True) train_loader = DataLoader(traindata, batch_size=args.seg_batch_size, shuffle=True, num_workers=1) net, _ = build_network(None, args.seg_backend) seg_criterion = nn.NLLLoss().cuda(0) cls_criterion = nn.BCEWithLogitsLoss().cuda(0) optimizer = optim.Adam(net.parameters(), lr=args.seg_lr) print('start training...') net.train() total_loss = 0.0 for epoch in range(args.seg_epochs): if (epoch + 1) % 5 == 0: for group in optimizer.param_groups: group['lr'] *= 0.25 total_loss = 0.0 for i, (x, y, y_cls) in enumerate(train_loader): x, y, y_cls = x.cuda(0), y.cuda(0).long(), y_cls.cuda(0).float() out, out_cls = net(x) seg_loss = seg_criterion(out, y) cls_loss = cls_criterion(out_cls, y_cls) loss = seg_loss + args.seg_alpha * cls_loss total_loss += loss.item() if i % 50 == 0: status = '[batch:{0}/{1} epoch:{2}] loss = {3:0.5f}'.format(i, len(traindata) // args.seg_batch_size, epoch + 1, loss. item()) print(status) optimizer.zero_grad() loss.backward() optimizer.step() torch.save(net.state_dict(), os.path.join(args.model_path, f"{'seg'}_{args.seg_model}_{args.seg_backend}_{epoch}.pth")) print(f'epoch:{epoch} total_loss: {total_loss / len(traindata)}') <mask token>
<mask token> def build_network(snapshot, backend): epoch = 0 backend = backend.lower() net = models[backend]() if snapshot is not None: _, epoch = os.path.basename(snapshot).split('_') epoch = int(epoch) net.load_state_dict(torch.load(snapshot)) logging.info('Snapshot for epoch {} loaded from {}'.format(epoch, snapshot)) net = net.cuda(0) return net, epoch def train(): args = get_args() os.makedirs(args.model_path, exist_ok=True) set_seed(args.seed) """ To follow this training routine you need a DataLoader that yields the tuples of the following format: (Bx3xHxW FloatTensor x, BxHxW LongTensor y, BxN LongTensor y_cls) where x - batch of input images, y - batch of groung truth seg maps, y_cls - batch of 1D tensors of dimensionality N: N total number of classes, y_cls[i, T] = 1 if class T is present in image i, 0 otherwise """ traindata = HeadSegData(args.seg_data_path, args.train_txt, train=True) train_loader = DataLoader(traindata, batch_size=args.seg_batch_size, shuffle=True, num_workers=1) net, _ = build_network(None, args.seg_backend) seg_criterion = nn.NLLLoss().cuda(0) cls_criterion = nn.BCEWithLogitsLoss().cuda(0) optimizer = optim.Adam(net.parameters(), lr=args.seg_lr) print('start training...') net.train() total_loss = 0.0 for epoch in range(args.seg_epochs): if (epoch + 1) % 5 == 0: for group in optimizer.param_groups: group['lr'] *= 0.25 total_loss = 0.0 for i, (x, y, y_cls) in enumerate(train_loader): x, y, y_cls = x.cuda(0), y.cuda(0).long(), y_cls.cuda(0).float() out, out_cls = net(x) seg_loss = seg_criterion(out, y) cls_loss = cls_criterion(out_cls, y_cls) loss = seg_loss + args.seg_alpha * cls_loss total_loss += loss.item() if i % 50 == 0: status = '[batch:{0}/{1} epoch:{2}] loss = {3:0.5f}'.format(i, len(traindata) // args.seg_batch_size, epoch + 1, loss. item()) print(status) optimizer.zero_grad() loss.backward() optimizer.step() torch.save(net.state_dict(), os.path.join(args.model_path, f"{'seg'}_{args.seg_model}_{args.seg_backend}_{epoch}.pth")) print(f'epoch:{epoch} total_loss: {total_loss / len(traindata)}') if __name__ == '__main__': train()
__author__ = 'BeiYu' <mask token> models = {'squeezenet': lambda : PSPNet(sizes=(1, 2, 3, 6), psp_size=512, deep_features_size=256, backend='squeezenet', n_classes=3), 'densenet': lambda : PSPNet(sizes=(1, 2, 3, 6), psp_size=1024, deep_features_size= 512, backend='densenet', n_classes=3), 'resnet18': lambda : PSPNet( sizes=(1, 2, 3, 6), psp_size=512, deep_features_size=256, backend= 'resnet18', n_classes=3), 'resnet34': lambda : PSPNet(sizes=(1, 2, 3, 6 ), psp_size=512, deep_features_size=256, backend='resnet34', n_classes= 3), 'resnet50': lambda : PSPNet(sizes=(1, 2, 3, 6), psp_size=2048, deep_features_size=1024, backend='resnet50', n_classes=3), 'resnet101': lambda : PSPNet(sizes=(1, 2, 3, 6), psp_size=2048, deep_features_size= 1024, backend='resnet101', n_classes=3), 'resnet152': lambda : PSPNet( sizes=(1, 2, 3, 6), psp_size=2048, deep_features_size=1024, backend= 'resnet152', n_classes=3)} def build_network(snapshot, backend): epoch = 0 backend = backend.lower() net = models[backend]() if snapshot is not None: _, epoch = os.path.basename(snapshot).split('_') epoch = int(epoch) net.load_state_dict(torch.load(snapshot)) logging.info('Snapshot for epoch {} loaded from {}'.format(epoch, snapshot)) net = net.cuda(0) return net, epoch def train(): args = get_args() os.makedirs(args.model_path, exist_ok=True) set_seed(args.seed) """ To follow this training routine you need a DataLoader that yields the tuples of the following format: (Bx3xHxW FloatTensor x, BxHxW LongTensor y, BxN LongTensor y_cls) where x - batch of input images, y - batch of groung truth seg maps, y_cls - batch of 1D tensors of dimensionality N: N total number of classes, y_cls[i, T] = 1 if class T is present in image i, 0 otherwise """ traindata = HeadSegData(args.seg_data_path, args.train_txt, train=True) train_loader = DataLoader(traindata, batch_size=args.seg_batch_size, shuffle=True, num_workers=1) net, _ = build_network(None, args.seg_backend) seg_criterion = nn.NLLLoss().cuda(0) cls_criterion = nn.BCEWithLogitsLoss().cuda(0) optimizer = optim.Adam(net.parameters(), lr=args.seg_lr) print('start training...') net.train() total_loss = 0.0 for epoch in range(args.seg_epochs): if (epoch + 1) % 5 == 0: for group in optimizer.param_groups: group['lr'] *= 0.25 total_loss = 0.0 for i, (x, y, y_cls) in enumerate(train_loader): x, y, y_cls = x.cuda(0), y.cuda(0).long(), y_cls.cuda(0).float() out, out_cls = net(x) seg_loss = seg_criterion(out, y) cls_loss = cls_criterion(out_cls, y_cls) loss = seg_loss + args.seg_alpha * cls_loss total_loss += loss.item() if i % 50 == 0: status = '[batch:{0}/{1} epoch:{2}] loss = {3:0.5f}'.format(i, len(traindata) // args.seg_batch_size, epoch + 1, loss. item()) print(status) optimizer.zero_grad() loss.backward() optimizer.step() torch.save(net.state_dict(), os.path.join(args.model_path, f"{'seg'}_{args.seg_model}_{args.seg_backend}_{epoch}.pth")) print(f'epoch:{epoch} total_loss: {total_loss / len(traindata)}') if __name__ == '__main__': train()
__author__ = 'BeiYu' from utils.init_env import set_seed from utils.options import * import os import logging import torch from torch import nn from torch import optim from torch.optim.lr_scheduler import MultiStepLR from torch.autograd import Variable from torch.utils.data import DataLoader from modules.seg_dataset import * from tqdm import tqdm import click import torch.nn.functional as F import numpy as np from modules.seg import PSPNet models = {'squeezenet': lambda : PSPNet(sizes=(1, 2, 3, 6), psp_size=512, deep_features_size=256, backend='squeezenet', n_classes=3), 'densenet': lambda : PSPNet(sizes=(1, 2, 3, 6), psp_size=1024, deep_features_size= 512, backend='densenet', n_classes=3), 'resnet18': lambda : PSPNet( sizes=(1, 2, 3, 6), psp_size=512, deep_features_size=256, backend= 'resnet18', n_classes=3), 'resnet34': lambda : PSPNet(sizes=(1, 2, 3, 6 ), psp_size=512, deep_features_size=256, backend='resnet34', n_classes= 3), 'resnet50': lambda : PSPNet(sizes=(1, 2, 3, 6), psp_size=2048, deep_features_size=1024, backend='resnet50', n_classes=3), 'resnet101': lambda : PSPNet(sizes=(1, 2, 3, 6), psp_size=2048, deep_features_size= 1024, backend='resnet101', n_classes=3), 'resnet152': lambda : PSPNet( sizes=(1, 2, 3, 6), psp_size=2048, deep_features_size=1024, backend= 'resnet152', n_classes=3)} def build_network(snapshot, backend): epoch = 0 backend = backend.lower() net = models[backend]() if snapshot is not None: _, epoch = os.path.basename(snapshot).split('_') epoch = int(epoch) net.load_state_dict(torch.load(snapshot)) logging.info('Snapshot for epoch {} loaded from {}'.format(epoch, snapshot)) net = net.cuda(0) return net, epoch def train(): args = get_args() os.makedirs(args.model_path, exist_ok=True) set_seed(args.seed) """ To follow this training routine you need a DataLoader that yields the tuples of the following format: (Bx3xHxW FloatTensor x, BxHxW LongTensor y, BxN LongTensor y_cls) where x - batch of input images, y - batch of groung truth seg maps, y_cls - batch of 1D tensors of dimensionality N: N total number of classes, y_cls[i, T] = 1 if class T is present in image i, 0 otherwise """ traindata = HeadSegData(args.seg_data_path, args.train_txt, train=True) train_loader = DataLoader(traindata, batch_size=args.seg_batch_size, shuffle=True, num_workers=1) net, _ = build_network(None, args.seg_backend) seg_criterion = nn.NLLLoss().cuda(0) cls_criterion = nn.BCEWithLogitsLoss().cuda(0) optimizer = optim.Adam(net.parameters(), lr=args.seg_lr) print('start training...') net.train() total_loss = 0.0 for epoch in range(args.seg_epochs): if (epoch + 1) % 5 == 0: for group in optimizer.param_groups: group['lr'] *= 0.25 total_loss = 0.0 for i, (x, y, y_cls) in enumerate(train_loader): x, y, y_cls = x.cuda(0), y.cuda(0).long(), y_cls.cuda(0).float() out, out_cls = net(x) seg_loss = seg_criterion(out, y) cls_loss = cls_criterion(out_cls, y_cls) loss = seg_loss + args.seg_alpha * cls_loss total_loss += loss.item() if i % 50 == 0: status = '[batch:{0}/{1} epoch:{2}] loss = {3:0.5f}'.format(i, len(traindata) // args.seg_batch_size, epoch + 1, loss. item()) print(status) optimizer.zero_grad() loss.backward() optimizer.step() torch.save(net.state_dict(), os.path.join(args.model_path, f"{'seg'}_{args.seg_model}_{args.seg_backend}_{epoch}.pth")) print(f'epoch:{epoch} total_loss: {total_loss / len(traindata)}') if __name__ == '__main__': train()
# Author: BeiYu # Github: https://github.com/beiyuouo # Date : 2021/2/21 21:57 # Description: __author__ = "BeiYu" from utils.init_env import set_seed from utils.options import * import os import logging import torch from torch import nn from torch import optim from torch.optim.lr_scheduler import MultiStepLR from torch.autograd import Variable from torch.utils.data import DataLoader from modules.seg_dataset import * from tqdm import tqdm import click import torch.nn.functional as F import numpy as np from modules.seg import PSPNet models = { 'squeezenet': lambda: PSPNet(sizes=(1, 2, 3, 6), psp_size=512, deep_features_size=256, backend='squeezenet', n_classes=3), 'densenet': lambda: PSPNet(sizes=(1, 2, 3, 6), psp_size=1024, deep_features_size=512, backend='densenet', n_classes=3), 'resnet18': lambda: PSPNet(sizes=(1, 2, 3, 6), psp_size=512, deep_features_size=256, backend='resnet18', n_classes=3), 'resnet34': lambda: PSPNet(sizes=(1, 2, 3, 6), psp_size=512, deep_features_size=256, backend='resnet34', n_classes=3), 'resnet50': lambda: PSPNet(sizes=(1, 2, 3, 6), psp_size=2048, deep_features_size=1024, backend='resnet50', n_classes=3), 'resnet101': lambda: PSPNet(sizes=(1, 2, 3, 6), psp_size=2048, deep_features_size=1024, backend='resnet101', n_classes=3), 'resnet152': lambda: PSPNet(sizes=(1, 2, 3, 6), psp_size=2048, deep_features_size=1024, backend='resnet152', n_classes=3) } def build_network(snapshot, backend): epoch = 0 backend = backend.lower() net = models[backend]() # net = nn.DataParallel(net) if snapshot is not None: _, epoch = os.path.basename(snapshot).split('_') epoch = int(epoch) net.load_state_dict(torch.load(snapshot)) logging.info("Snapshot for epoch {} loaded from {}".format(epoch, snapshot)) net = net.cuda(0) return net, epoch def train(): args = get_args() # os.environ["CUDA_VISIBLE_DEVICES"] = gpu # net, starting_epoch = build_network(snapshot, backend) # data_path = os.path.abspath(os.path.expanduser(data_path)) # models_path = os.path.abspath(os.path.expanduser(models_path)) os.makedirs(args.model_path, exist_ok=True) set_seed(args.seed) ''' To follow this training routine you need a DataLoader that yields the tuples of the following format: (Bx3xHxW FloatTensor x, BxHxW LongTensor y, BxN LongTensor y_cls) where x - batch of input images, y - batch of groung truth seg maps, y_cls - batch of 1D tensors of dimensionality N: N total number of classes, y_cls[i, T] = 1 if class T is present in image i, 0 otherwise ''' traindata = HeadSegData(args.seg_data_path, args.train_txt, train=True) train_loader = DataLoader(traindata, batch_size=args.seg_batch_size, shuffle=True, num_workers=1) net, _ = build_network(None, args.seg_backend) seg_criterion = nn.NLLLoss().cuda(0) cls_criterion = nn.BCEWithLogitsLoss().cuda(0) optimizer = optim.Adam(net.parameters(), lr=args.seg_lr) # scheduler = MultiStepLR(optimizer, milestones=[int(x) for x in milestones.split(',')]) print("start training...") net.train() total_loss = 0.0 for epoch in range(args.seg_epochs): if (epoch+1) % 5 == 0: for group in optimizer.param_groups: group['lr'] *= 0.25 total_loss = 0.0 for i, (x, y, y_cls) in enumerate(train_loader): x, y, y_cls = x.cuda(0), y.cuda(0).long(), y_cls.cuda(0).float() out, out_cls = net(x) # print(x.shape, out.shape, out_cls.shape, y.shape, y_cls.shape) seg_loss = seg_criterion(out, y) cls_loss = cls_criterion(out_cls, y_cls) loss = seg_loss + args.seg_alpha * cls_loss total_loss += loss.item() if i % 50 == 0: status = '[batch:{0}/{1} epoch:{2}] loss = {3:0.5f}'.format(i, len(traindata) // args.seg_batch_size, epoch + 1, loss.item()) print(status) optimizer.zero_grad() loss.backward() optimizer.step() torch.save(net.state_dict(), os.path.join(args.model_path, f'{"seg"}_{args.seg_model}_{args.seg_backend}_{epoch}.pth')) print(f'epoch:{epoch} total_loss: {total_loss / len(traindata)}') if __name__ == '__main__': train()
[ 1, 3, 4, 5, 6 ]
277
58f3b8c5470c765c81f27d39d9c28751a8c2b719
<mask token>
<mask token> print(f'Sua frase tem {n_a} letras a') print(f'A letra A aparece pela primeira vez na {f_a}° posição') print(f'A letra A apaerece pela ultima vez na {l_a}° posição')
<mask token> frase = str(input('Digite uma frase: ')).strip().lower() n_a = frase.count('a') f_a = frase.find('a') + 1 l_a = frase.rfind('a') - 1 print(f'Sua frase tem {n_a} letras a') print(f'A letra A aparece pela primeira vez na {f_a}° posição') print(f'A letra A apaerece pela ultima vez na {l_a}° posição')
"""Ex026 Faça um programa que leia uma frase pelo teclado e mostre: Quantas vezes aparece a letra "A". Em que posição ela aparece a primeira vez. Em que posição ela aparece pela última vez.""" frase = str(input('Digite uma frase: ')).strip().lower() n_a = frase.count('a') f_a = frase.find('a')+1 l_a= frase.rfind('a')-1 print(f'Sua frase tem {n_a} letras a') print(f'A letra A aparece pela primeira vez na {f_a}° posição') print(f'A letra A apaerece pela ultima vez na {l_a}° posição')
null
[ 0, 1, 2, 3 ]
278
d83f2d9bb25a46bc7344b420ce65bf729165e6b9
<mask token>
<mask token> class FosAppConfig(AppConfig): <mask token>
<mask token> class FosAppConfig(AppConfig): name = 'fos_app'
from django.apps import AppConfig class FosAppConfig(AppConfig): name = 'fos_app'
from django.apps import AppConfig class FosAppConfig(AppConfig): name = 'fos_app'
[ 0, 1, 2, 3, 4 ]
279
d2b05c5653ca6c6b7219f6c0393e81c9425b5977
<mask token>
<mask token> print(bucket) if bucket is None: raise Exception('No Input Bucket set') def handler(event: Dict, context: Dict): """AWS Lambda handler.""" granule = event.get('granule') prefix = granule[0:-6] print(prefix) response = s3.list_objects_v2(Bucket=bucket, Prefix=prefix) print(response) granules = [] contents = response['Contents'] for obj in contents: granules.append(obj['Key'][0:-4]) granule_str = ','.join(granules) output = {'granule': granule_str} return output
<mask token> s3 = boto3.client('s3') bucket = os.getenv('SENTINEL_INPUT_BUCKET', None) print(bucket) if bucket is None: raise Exception('No Input Bucket set') def handler(event: Dict, context: Dict): """AWS Lambda handler.""" granule = event.get('granule') prefix = granule[0:-6] print(prefix) response = s3.list_objects_v2(Bucket=bucket, Prefix=prefix) print(response) granules = [] contents = response['Contents'] for obj in contents: granules.append(obj['Key'][0:-4]) granule_str = ','.join(granules) output = {'granule': granule_str} return output
<mask token> from typing import Dict import os import re import boto3 from botocore.errorfactory import ClientError from datetime import date s3 = boto3.client('s3') bucket = os.getenv('SENTINEL_INPUT_BUCKET', None) print(bucket) if bucket is None: raise Exception('No Input Bucket set') def handler(event: Dict, context: Dict): """AWS Lambda handler.""" granule = event.get('granule') prefix = granule[0:-6] print(prefix) response = s3.list_objects_v2(Bucket=bucket, Prefix=prefix) print(response) granules = [] contents = response['Contents'] for obj in contents: granules.append(obj['Key'][0:-4]) granule_str = ','.join(granules) output = {'granule': granule_str} return output
""" HLS: Check if Twin Granule Exists """ from typing import Dict import os import re import boto3 from botocore.errorfactory import ClientError from datetime import date s3 = boto3.client("s3") bucket = os.getenv("SENTINEL_INPUT_BUCKET", None) print(bucket) if bucket is None: raise Exception("No Input Bucket set") def handler(event: Dict, context: Dict): """AWS Lambda handler.""" granule = event.get("granule") prefix = granule[0:-6] print(prefix) response = s3.list_objects_v2(Bucket=bucket, Prefix=prefix,) print(response) granules = [] contents = response["Contents"] for obj in contents: granules.append(obj["Key"][0:-4]) granule_str = ",".join(granules) output = { "granule": granule_str, } return output
[ 0, 2, 3, 4, 5 ]
280
c73a199d1c1c1867f3d53ceebf614bc9b65c0d5e
<mask token> @admin.register(UserTicket) class UserTicketAdmin(admin.ModelAdmin): pass
<mask token> @admin.register(AuxiliaryTicket) class AuxiliaryTicketAdmin(admin.ModelAdmin): pass @admin.register(UserTicket) class UserTicketAdmin(admin.ModelAdmin): pass
<mask token> @admin.register(Ticket) class TicketAdmin(admin.ModelAdmin): pass @admin.register(AuxiliaryTicket) class AuxiliaryTicketAdmin(admin.ModelAdmin): pass @admin.register(UserTicket) class UserTicketAdmin(admin.ModelAdmin): pass
from django.contrib import admin from ticket.models import Ticket, UserTicket, AuxiliaryTicket @admin.register(Ticket) class TicketAdmin(admin.ModelAdmin): pass @admin.register(AuxiliaryTicket) class AuxiliaryTicketAdmin(admin.ModelAdmin): pass @admin.register(UserTicket) class UserTicketAdmin(admin.ModelAdmin): pass
from django.contrib import admin from ticket.models import Ticket, UserTicket, AuxiliaryTicket @admin.register(Ticket) class TicketAdmin(admin.ModelAdmin): pass @admin.register(AuxiliaryTicket) class AuxiliaryTicketAdmin(admin.ModelAdmin): pass @admin.register(UserTicket) class UserTicketAdmin(admin.ModelAdmin): pass
[ 1, 2, 3, 4, 5 ]
281
e564e0d05c3c0e60f356422722803df510d9dd0b
<mask token> @njit(parallel=True) def parallel_test(subject_array, typeII_error, typeI_error, num): test_result = np.zeros(subject_array.shape, dtype=int) random_table = np.random.uniform(0, 1, (subject_array.shape[0], num)) for i in range(len(subject_array)): subject = subject_array[i, 1] if subject == 1: temp = 1 if max(random_table[i, :]) > typeII_error else 0 elif subject == 0: temp = 1 if min(random_table[i, :]) < typeI_error else 0 test_result[i, 0] = subject_array[i, 0] test_result[i, 1] = temp return test_result, len(subject_array) * num, len(subject_array) * num def infection_rate_on_negative_batch(p, batch_size, typeII_error, typeI_error): """ Given infection rate, batch size, prob of type II error and prob of type I error, this function gives the infection rate on the negative batch. Input: p (float): the infection rate batch_size (int): the batch size typeII_error (float): the prob of type II error typeI_error (float): the prob of type I error Output: (float): the infection rate on the negative batch """ q = 1 - p r = typeII_error * (1 - q ** batch_size) / ((1 - typeI_error) * q ** batch_size + typeII_error * (1 - q ** batch_size)) return p * r / (1 - q ** batch_size) def infection_rate_on_positive_batch(p, batch_size, typeII_error, typeI_error): """ Given infection rate, batch size, prob of type II error and prob of type I error, this function gives the infection rate on the positive batch. Input: p (float): the infection rate batch_size (int): the batch size typeII_error (float): the prob of type II error typeI_error (float): the prob of type I error Output: (float): the infection rate on the positive batch """ q = 1 - p r = (1 - typeII_error) * (1 - q ** batch_size) / (typeI_error * q ** batch_size + (1 - typeII_error) * (1 - q ** batch_size)) return p * r / (1 - q ** batch_size) def one_batch_test_solver(prevalence_rate, typeII_error, typeI_error, n_initial_guess=2): """ A function gives (float) the best batch size for one batch test given the infection rate Inputs: prevalence_rate(float): infection rate typeII_error(float): the prob of type II error typeI_error(float): the prob of type I error n_initial_guess(float): the initial guess Output: (float): the optimal batch size """ q = 1 - prevalence_rate func = lambda n: n * q ** (n / 2) - (-(1 - typeII_error - typeI_error) * np.log(q)) ** (-1 / 2) n_solution = fsolve(func, n_initial_guess) return float(n_solution) <mask token> def neg_pos_batch_split(subject_array, batch_size, typeII_error, typeI_error): """ A function gives a list of sujects on the negative batch(es), a list of subjects on the postive batch(es) and the test-kit consumption given the probability of type II error, the probability of Type I error. Input: subject_array (Numpy Array): an array contains subject id and subject's condition (1 stands for infection and 0 stands for uninfection) batch_size (int): batch size typeII_error (float): probability of type II error typeI_error (float): probability of type I error Output: neg_batch (Numpy Array): an array of subjects on the negative batch(es) pos_batch (Numpy Array): an array of subjects on the postive batch(es) test_consum (int): the number of test-kit consumptions """ neg_batch = [] pos_batch = [] test_consum = np.ceil(len(subject_array) / batch_size) random_table = np.random.uniform(0, 1, int(test_consum)) i = 0 for temp_batch in np.array_split(subject_array, test_consum): if 1 in temp_batch[:, 1]: if random_table[i] > typeII_error: pos_batch.append(temp_batch) else: neg_batch.append(temp_batch) elif random_table[i] > typeI_error: neg_batch.append(temp_batch) else: pos_batch.append(temp_batch) i += 1 neg_batch = np.concatenate(neg_batch) if len(neg_batch) > 0 else np.array([ ]) pos_batch = np.concatenate(pos_batch) if len(pos_batch) > 0 else np.array([ ]) return neg_batch, pos_batch, test_consum def helpfunction(subject_array, p, batch_size, typeII_error, typeI_error, batch_limit): """ The helpfunction is a handy function to give the list of subjects on the negative batch(es), the list of subjects on the postive batch(es), the test-kit consumption, the infection rate on the negative batches, the infection rate on the positive batches, the optimal batch size for negative batches and the optimal batch size for positive batches. Input: subject_array (Numpy Array): an array contains subject id and subject's condition (1 stands for infection and 0 stands for uninfection) p (float): Infection rate batch_size (int): batch size typeII_error (float): probability of type II error typeI_error (float): probability of type I error batch_limit (int): batch size upper limit Output: temp0 (Numpy Array): an array of subjects on the negative batch(es) temp1 (Numpy Array): an array of subjects on the postive batch(es) temp_con (int): the number of test-kit consumptions p0 (float): the infection rate on the negative batches p1 (float): the infection rate on the positive batches n0 (float): the optimal batch size for the negative batches n1 (float): the optimal batch size for the positive batches """ batch_size = min(batch_size, batch_limit) p0 = infection_rate_on_negative_batch(p, batch_size, typeII_error, typeI_error) p1 = infection_rate_on_positive_batch(p, batch_size, typeII_error, typeI_error) n0 = one_batch_test_int_solver(p0, typeII_error, typeI_error, batch_limit) n1 = one_batch_test_int_solver(p1, typeII_error, typeI_error, batch_limit) if subject_array == np.array([]): return np.array([]), np.array([]), p0, p1, n0, n1 temp0, temp1, temp_con = neg_pos_batch_split(subject_array, batch_size, typeII_error, typeI_error) return temp0, temp1, temp_con, p0, p1, n0, n1 def seq_test(subject_array, stop_rule, p, batch_size, typeII_error, typeI_error, repeat=1, prob_threshold=1, seq=True, batch_limit=32): """ A function gives the test results to a subject array and the total number of test-kit consumption and the individual testing number given the subject array, the stop rule, the batch size, the probability of type II error, the probability of Type I error, and the number of repeatition, the probability threshold, and setting of sequence testing or not. Input: subject_array(Numpy Array): an array contains subject id and subject's condition (1 stands for infection and 0 stands for uninfection) stop_rule (int): the number of postive batches to enter individual testing p (float): infection rate batch_size (int): batch size typeII_error (float): probability of type II error typeI_error (float): probability of type I error repeat (int): the number of repetition prob_threshold (float): if the infection rate of a batch is beyond prob_threshold, the subjects on that batch will enter individual testing phase seq (boolean): True stands for sequential testing. The test will end when the test result is positive or run up the number of repetition. False stands for simutanlous testing with majority voting. batch_limit (int): Output: result (Numpy Array): an array contains subjects' id and test results consum (int): the total test consumption individual_con (int): the test consumption for individual testings """ temp_list = [] neg_list = [] pos_list = [] consum = 0 temp = {'data': subject_array, 'NB_Num': 0, 'PB_Num': 0, 'p': p, 'batch_size': batch_size} temp_list.append(temp) new_list = [] neg_array = [] pos_array = [] while len(temp_list) > 0: for i in temp_list: temp0, temp1, temp_con, p0, p1, n0, n1 = helpfunction(i['data'], i['p'], i['batch_size'], typeII_error, typeI_error, batch_limit=batch_limit) temp0 = {'data': temp0, 'NB_Num': i['NB_Num'] + 1, 'PB_Num': i[ 'PB_Num'], 'p': p0, 'batch_size': n0} temp1 = {'data': temp1, 'NB_Num': i['NB_Num'], 'PB_Num': i[ 'PB_Num'] + 1, 'p': p1, 'batch_size': n1} if len(temp0['data']) > 0: if temp0['NB_Num'] >= stop_rule: neg_list.append(temp0) else: new_list.append(temp0) if len(temp1['data']) > 0: if temp1['PB_Num'] >= stop_rule or temp1['p' ] >= prob_threshold: pos_list.append(temp1) else: new_list.append(temp1) consum += temp_con temp_list = new_list new_list = [] for j in neg_list: neg_array.append(j['data']) neg_array = np.concatenate(neg_array) for k in pos_list: pos_array.append(k['data']) pos_array = np.concatenate(pos_array) neg_array[:, 1] = 0 individual_test, individual_con = conventional_test(pos_array, typeII_error, typeI_error, repeat, seq) pos_array = individual_test consum += individual_con result = np.concatenate((pos_array, neg_array)) result = result[result[:, 0].argsort()] result = result.astype('int64') return result, consum, individual_con <mask token> @jit(parallel=True) def data_gen(size, p): """ data_gen provides a faster way to generate a random population with infection rate p. Input: size (int): the size of population p (float): the infection rate Output: test_array (array): the first column is for id and the second column is the condition, where 1 stands for infection and 0 stands for uninfection """ random_table = np.random.binomial(size=size, p=p, n=1) test_array = np.zeros((size, 2), dtype=int) for i in range(size): test_array[i, 0] = i test_array[i, 1] = random_table[i] return test_array <mask token> def fixed_batch_seq_test(subject_array, stop_rule, p, batch_size, typeII_error, typeI_error, repeat, prob_threshold=0.3, seq=True): """ This function provides the parallel batch testing results for a given subject array. Input: subject_array(Numpy Array): an array contains subject id and subject's condition (1 stands for infection and 0 stands for uninfection) stop_rule (int): the number of positive batches to enter the individual testing phase batch_size (int): batch size typeII_error (float): probability of type II error typeI_error (float): probability of type I error repeat (int): the number of potential individual testing for the positive crossings prob_threshold (float): if the infection rate of a batch is beyond prob_threshold, the subjects on that batch will enter individual testing phase seq (boolean): True stands for sequential testing. The test will end when the test result is positive or run up the number of repetition. False stands for simutanlous testing with majority voting. Output: result (Numpy Array): an array contains subjects' id and test results consum (int): the total test consumption individual_con (int): the test consumption for individual testings """ temp_list = [] neg_list = [] pos_list = [] consum = 0 temp = {'data': subject_array, 'NB_Num': 0, 'PB_Num': 0, 'p': p, 'batch_size': batch_size} temp_list.append(temp) new_list = [] neg_array = [] pos_array = [] while len(temp_list) > 0: for i in temp_list: temp0, temp1, temp_con, p0, p1, n0, n1 = helpfunction(i['data'], i['p'], i['batch_size'], typeII_error, typeI_error) temp0 = {'data': np.random.permutation(temp0), 'NB_Num': i[ 'NB_Num'] + 1, 'PB_Num': i['PB_Num'], 'p': p0, 'batch_size': batch_size} temp1 = {'data': np.random.permutation(temp1), 'NB_Num': i[ 'NB_Num'], 'PB_Num': i['PB_Num'] + 1, 'p': p1, 'batch_size': batch_size} if len(temp0['data']) > 0: if temp0['NB_Num'] >= stop_rule: neg_list.append(temp0) else: new_list.append(temp0) if len(temp1['data']) > 0: if temp1['PB_Num'] >= stop_rule or temp1['p' ] >= prob_threshold: pos_list.append(temp1) else: new_list.append(temp1) consum += temp_con temp_list = new_list new_list = [] for j in neg_list: neg_array.append(j['data']) neg_array = np.concatenate(neg_array) for k in pos_list: pos_array.append(k['data']) pos_array = np.concatenate(pos_array) neg_array[:, 1] = 0 individual_test, individual_con = conventional_test(pos_array, typeII_error, typeI_error, repeat, seq) pos_array = individual_test consum += individual_con result = np.concatenate((pos_array, neg_array)) result = result[result[:, 0].argsort()] result = result.astype('int64') return result, consum, individual_con def name_fun(n): """ input: stopping rule output: finish nodes """ output = [] temp = [''] for i in range(2 * n - 1): temp_cur = [] for j in temp: candidate_pos = j + '+' candidate_neg = j + '-' if str.count(candidate_pos, '+') >= n: output.append(candidate_pos) else: temp_cur.append(candidate_pos) if str.count(candidate_neg, '-') >= n: output.append(candidate_neg) else: temp_cur.append(candidate_neg) temp = temp_cur neg_symbol = [x for x in output if str.count(x, '-') == n] pos_symbol = [x for x in output if str.count(x, '+') == n] return output, neg_symbol, pos_symbol def seq_test_with_node(subject_array, stop_rule, p, batch_size, typeII_error, typeI_error, repeat=1, prob_threshold=1, seq=True, batch_limit=32): """ A function gives the test results to a subject array and the total number of test-kit consumption and the individual testing number given the subject array, the stop rule, the batch size, the probability of type II error, the probability of Type I error, and the number of repeatition, the probability threshold, and setting of sequence testing or not. Input: subject_array(Numpy Array): an array contains subject id and subject's condition (1 stands for infection and 0 stands for uninfection) stop_rule (int): the number of postive batches to enter individual testing p (float): infection rate batch_size (int): batch size typeII_error (float): probability of type II error typeI_error (float): probability of type I error repeat (int): the number of repetition prob_threshold (float): if the infection rate of a batch is beyond prob_threshold, the subjects on that batch will enter individual testing phase seq (boolean): True stands for sequential testing. The test will end when the test result is positive or run up the number of repetition. False stands for simutanlous testing with majority voting. batch_limit (int): Output: result (Numpy Array): an array contains subjects' id and test results consum (int): the total test consumption individual_con (int): the test consumption for individual testings """ temp_list = [] neg_list = [] pos_list = [] batch_num_list = [] consum = 0 temp = {'data': subject_array, 'NB_Num': 0, 'PB_Num': 0, 'p': p, 'batch_size': batch_size, 'node': ''} temp_list.append(temp) new_list = [] neg_array = [] neg_node = [] pos_node = [] pos_array = [] while len(temp_list) > 0: for i in temp_list: temp0, temp1, temp_con, p0, p1, n0, n1 = helpfunction(i['data'], i['p'], i['batch_size'], typeII_error, typeI_error, batch_limit=batch_limit) temp0 = {'data': temp0, 'NB_Num': i['NB_Num'] + 1, 'PB_Num': i[ 'PB_Num'], 'p': p0, 'batch_size': n0, 'node': i['node'] + '-'} temp1 = {'data': temp1, 'NB_Num': i['NB_Num'], 'PB_Num': i[ 'PB_Num'] + 1, 'p': p1, 'batch_size': n1, 'node': i['node'] + '+'} if len(temp0['data']) > 0: if temp0['NB_Num'] >= stop_rule: neg_list.append(temp0) else: new_list.append(temp0) if len(temp1['data']) > 0: if temp1['PB_Num'] >= stop_rule or temp1['p' ] >= prob_threshold: pos_list.append(temp1) else: new_list.append(temp1) consum += temp_con batch_num_list.append(consum) temp_list = new_list new_list = [] for j in neg_list: neg_array.append(j['data']) temp = [[x, j['node']] for x in j['data'][:, 0]] neg_node.append(temp) neg_array = np.concatenate(neg_array) for k in pos_list: pos_array.append(k['data']) temp = [[x, k['node']] for x in k['data'][:, 0]] pos_node.append(temp) pos_array = np.concatenate(pos_array) neg_array[:, 1] = 0 individual_test, individual_con = conventional_test(pos_array, typeII_error, typeI_error, repeat, seq) pos_array = individual_test consum += individual_con result = np.concatenate((pos_array, neg_array)) pos_node.extend(neg_node) node = pos_node node = sum(node, []) node.sort() node = [x[1] for x in node] result = result[result[:, 0].argsort()] result = result.astype('int64') return result, consum, individual_con, node, batch_num_list
<mask token> @njit(parallel=True) def parallel_test(subject_array, typeII_error, typeI_error, num): test_result = np.zeros(subject_array.shape, dtype=int) random_table = np.random.uniform(0, 1, (subject_array.shape[0], num)) for i in range(len(subject_array)): subject = subject_array[i, 1] if subject == 1: temp = 1 if max(random_table[i, :]) > typeII_error else 0 elif subject == 0: temp = 1 if min(random_table[i, :]) < typeI_error else 0 test_result[i, 0] = subject_array[i, 0] test_result[i, 1] = temp return test_result, len(subject_array) * num, len(subject_array) * num def infection_rate_on_negative_batch(p, batch_size, typeII_error, typeI_error): """ Given infection rate, batch size, prob of type II error and prob of type I error, this function gives the infection rate on the negative batch. Input: p (float): the infection rate batch_size (int): the batch size typeII_error (float): the prob of type II error typeI_error (float): the prob of type I error Output: (float): the infection rate on the negative batch """ q = 1 - p r = typeII_error * (1 - q ** batch_size) / ((1 - typeI_error) * q ** batch_size + typeII_error * (1 - q ** batch_size)) return p * r / (1 - q ** batch_size) def infection_rate_on_positive_batch(p, batch_size, typeII_error, typeI_error): """ Given infection rate, batch size, prob of type II error and prob of type I error, this function gives the infection rate on the positive batch. Input: p (float): the infection rate batch_size (int): the batch size typeII_error (float): the prob of type II error typeI_error (float): the prob of type I error Output: (float): the infection rate on the positive batch """ q = 1 - p r = (1 - typeII_error) * (1 - q ** batch_size) / (typeI_error * q ** batch_size + (1 - typeII_error) * (1 - q ** batch_size)) return p * r / (1 - q ** batch_size) def one_batch_test_solver(prevalence_rate, typeII_error, typeI_error, n_initial_guess=2): """ A function gives (float) the best batch size for one batch test given the infection rate Inputs: prevalence_rate(float): infection rate typeII_error(float): the prob of type II error typeI_error(float): the prob of type I error n_initial_guess(float): the initial guess Output: (float): the optimal batch size """ q = 1 - prevalence_rate func = lambda n: n * q ** (n / 2) - (-(1 - typeII_error - typeI_error) * np.log(q)) ** (-1 / 2) n_solution = fsolve(func, n_initial_guess) return float(n_solution) <mask token> def neg_pos_batch_split(subject_array, batch_size, typeII_error, typeI_error): """ A function gives a list of sujects on the negative batch(es), a list of subjects on the postive batch(es) and the test-kit consumption given the probability of type II error, the probability of Type I error. Input: subject_array (Numpy Array): an array contains subject id and subject's condition (1 stands for infection and 0 stands for uninfection) batch_size (int): batch size typeII_error (float): probability of type II error typeI_error (float): probability of type I error Output: neg_batch (Numpy Array): an array of subjects on the negative batch(es) pos_batch (Numpy Array): an array of subjects on the postive batch(es) test_consum (int): the number of test-kit consumptions """ neg_batch = [] pos_batch = [] test_consum = np.ceil(len(subject_array) / batch_size) random_table = np.random.uniform(0, 1, int(test_consum)) i = 0 for temp_batch in np.array_split(subject_array, test_consum): if 1 in temp_batch[:, 1]: if random_table[i] > typeII_error: pos_batch.append(temp_batch) else: neg_batch.append(temp_batch) elif random_table[i] > typeI_error: neg_batch.append(temp_batch) else: pos_batch.append(temp_batch) i += 1 neg_batch = np.concatenate(neg_batch) if len(neg_batch) > 0 else np.array([ ]) pos_batch = np.concatenate(pos_batch) if len(pos_batch) > 0 else np.array([ ]) return neg_batch, pos_batch, test_consum def helpfunction(subject_array, p, batch_size, typeII_error, typeI_error, batch_limit): """ The helpfunction is a handy function to give the list of subjects on the negative batch(es), the list of subjects on the postive batch(es), the test-kit consumption, the infection rate on the negative batches, the infection rate on the positive batches, the optimal batch size for negative batches and the optimal batch size for positive batches. Input: subject_array (Numpy Array): an array contains subject id and subject's condition (1 stands for infection and 0 stands for uninfection) p (float): Infection rate batch_size (int): batch size typeII_error (float): probability of type II error typeI_error (float): probability of type I error batch_limit (int): batch size upper limit Output: temp0 (Numpy Array): an array of subjects on the negative batch(es) temp1 (Numpy Array): an array of subjects on the postive batch(es) temp_con (int): the number of test-kit consumptions p0 (float): the infection rate on the negative batches p1 (float): the infection rate on the positive batches n0 (float): the optimal batch size for the negative batches n1 (float): the optimal batch size for the positive batches """ batch_size = min(batch_size, batch_limit) p0 = infection_rate_on_negative_batch(p, batch_size, typeII_error, typeI_error) p1 = infection_rate_on_positive_batch(p, batch_size, typeII_error, typeI_error) n0 = one_batch_test_int_solver(p0, typeII_error, typeI_error, batch_limit) n1 = one_batch_test_int_solver(p1, typeII_error, typeI_error, batch_limit) if subject_array == np.array([]): return np.array([]), np.array([]), p0, p1, n0, n1 temp0, temp1, temp_con = neg_pos_batch_split(subject_array, batch_size, typeII_error, typeI_error) return temp0, temp1, temp_con, p0, p1, n0, n1 def seq_test(subject_array, stop_rule, p, batch_size, typeII_error, typeI_error, repeat=1, prob_threshold=1, seq=True, batch_limit=32): """ A function gives the test results to a subject array and the total number of test-kit consumption and the individual testing number given the subject array, the stop rule, the batch size, the probability of type II error, the probability of Type I error, and the number of repeatition, the probability threshold, and setting of sequence testing or not. Input: subject_array(Numpy Array): an array contains subject id and subject's condition (1 stands for infection and 0 stands for uninfection) stop_rule (int): the number of postive batches to enter individual testing p (float): infection rate batch_size (int): batch size typeII_error (float): probability of type II error typeI_error (float): probability of type I error repeat (int): the number of repetition prob_threshold (float): if the infection rate of a batch is beyond prob_threshold, the subjects on that batch will enter individual testing phase seq (boolean): True stands for sequential testing. The test will end when the test result is positive or run up the number of repetition. False stands for simutanlous testing with majority voting. batch_limit (int): Output: result (Numpy Array): an array contains subjects' id and test results consum (int): the total test consumption individual_con (int): the test consumption for individual testings """ temp_list = [] neg_list = [] pos_list = [] consum = 0 temp = {'data': subject_array, 'NB_Num': 0, 'PB_Num': 0, 'p': p, 'batch_size': batch_size} temp_list.append(temp) new_list = [] neg_array = [] pos_array = [] while len(temp_list) > 0: for i in temp_list: temp0, temp1, temp_con, p0, p1, n0, n1 = helpfunction(i['data'], i['p'], i['batch_size'], typeII_error, typeI_error, batch_limit=batch_limit) temp0 = {'data': temp0, 'NB_Num': i['NB_Num'] + 1, 'PB_Num': i[ 'PB_Num'], 'p': p0, 'batch_size': n0} temp1 = {'data': temp1, 'NB_Num': i['NB_Num'], 'PB_Num': i[ 'PB_Num'] + 1, 'p': p1, 'batch_size': n1} if len(temp0['data']) > 0: if temp0['NB_Num'] >= stop_rule: neg_list.append(temp0) else: new_list.append(temp0) if len(temp1['data']) > 0: if temp1['PB_Num'] >= stop_rule or temp1['p' ] >= prob_threshold: pos_list.append(temp1) else: new_list.append(temp1) consum += temp_con temp_list = new_list new_list = [] for j in neg_list: neg_array.append(j['data']) neg_array = np.concatenate(neg_array) for k in pos_list: pos_array.append(k['data']) pos_array = np.concatenate(pos_array) neg_array[:, 1] = 0 individual_test, individual_con = conventional_test(pos_array, typeII_error, typeI_error, repeat, seq) pos_array = individual_test consum += individual_con result = np.concatenate((pos_array, neg_array)) result = result[result[:, 0].argsort()] result = result.astype('int64') return result, consum, individual_con <mask token> def specificity_score(y_true, y_pred): """ A function provides specificty given the prediction and the truth """ tn, fp, _, _ = confusion_matrix(y_true=y_true, y_pred=y_pred).ravel() return tn / (tn + fp) @jit(parallel=True) def data_gen(size, p): """ data_gen provides a faster way to generate a random population with infection rate p. Input: size (int): the size of population p (float): the infection rate Output: test_array (array): the first column is for id and the second column is the condition, where 1 stands for infection and 0 stands for uninfection """ random_table = np.random.binomial(size=size, p=p, n=1) test_array = np.zeros((size, 2), dtype=int) for i in range(size): test_array[i, 0] = i test_array[i, 1] = random_table[i] return test_array <mask token> def fixed_batch_seq_test(subject_array, stop_rule, p, batch_size, typeII_error, typeI_error, repeat, prob_threshold=0.3, seq=True): """ This function provides the parallel batch testing results for a given subject array. Input: subject_array(Numpy Array): an array contains subject id and subject's condition (1 stands for infection and 0 stands for uninfection) stop_rule (int): the number of positive batches to enter the individual testing phase batch_size (int): batch size typeII_error (float): probability of type II error typeI_error (float): probability of type I error repeat (int): the number of potential individual testing for the positive crossings prob_threshold (float): if the infection rate of a batch is beyond prob_threshold, the subjects on that batch will enter individual testing phase seq (boolean): True stands for sequential testing. The test will end when the test result is positive or run up the number of repetition. False stands for simutanlous testing with majority voting. Output: result (Numpy Array): an array contains subjects' id and test results consum (int): the total test consumption individual_con (int): the test consumption for individual testings """ temp_list = [] neg_list = [] pos_list = [] consum = 0 temp = {'data': subject_array, 'NB_Num': 0, 'PB_Num': 0, 'p': p, 'batch_size': batch_size} temp_list.append(temp) new_list = [] neg_array = [] pos_array = [] while len(temp_list) > 0: for i in temp_list: temp0, temp1, temp_con, p0, p1, n0, n1 = helpfunction(i['data'], i['p'], i['batch_size'], typeII_error, typeI_error) temp0 = {'data': np.random.permutation(temp0), 'NB_Num': i[ 'NB_Num'] + 1, 'PB_Num': i['PB_Num'], 'p': p0, 'batch_size': batch_size} temp1 = {'data': np.random.permutation(temp1), 'NB_Num': i[ 'NB_Num'], 'PB_Num': i['PB_Num'] + 1, 'p': p1, 'batch_size': batch_size} if len(temp0['data']) > 0: if temp0['NB_Num'] >= stop_rule: neg_list.append(temp0) else: new_list.append(temp0) if len(temp1['data']) > 0: if temp1['PB_Num'] >= stop_rule or temp1['p' ] >= prob_threshold: pos_list.append(temp1) else: new_list.append(temp1) consum += temp_con temp_list = new_list new_list = [] for j in neg_list: neg_array.append(j['data']) neg_array = np.concatenate(neg_array) for k in pos_list: pos_array.append(k['data']) pos_array = np.concatenate(pos_array) neg_array[:, 1] = 0 individual_test, individual_con = conventional_test(pos_array, typeII_error, typeI_error, repeat, seq) pos_array = individual_test consum += individual_con result = np.concatenate((pos_array, neg_array)) result = result[result[:, 0].argsort()] result = result.astype('int64') return result, consum, individual_con def name_fun(n): """ input: stopping rule output: finish nodes """ output = [] temp = [''] for i in range(2 * n - 1): temp_cur = [] for j in temp: candidate_pos = j + '+' candidate_neg = j + '-' if str.count(candidate_pos, '+') >= n: output.append(candidate_pos) else: temp_cur.append(candidate_pos) if str.count(candidate_neg, '-') >= n: output.append(candidate_neg) else: temp_cur.append(candidate_neg) temp = temp_cur neg_symbol = [x for x in output if str.count(x, '-') == n] pos_symbol = [x for x in output if str.count(x, '+') == n] return output, neg_symbol, pos_symbol def seq_test_with_node(subject_array, stop_rule, p, batch_size, typeII_error, typeI_error, repeat=1, prob_threshold=1, seq=True, batch_limit=32): """ A function gives the test results to a subject array and the total number of test-kit consumption and the individual testing number given the subject array, the stop rule, the batch size, the probability of type II error, the probability of Type I error, and the number of repeatition, the probability threshold, and setting of sequence testing or not. Input: subject_array(Numpy Array): an array contains subject id and subject's condition (1 stands for infection and 0 stands for uninfection) stop_rule (int): the number of postive batches to enter individual testing p (float): infection rate batch_size (int): batch size typeII_error (float): probability of type II error typeI_error (float): probability of type I error repeat (int): the number of repetition prob_threshold (float): if the infection rate of a batch is beyond prob_threshold, the subjects on that batch will enter individual testing phase seq (boolean): True stands for sequential testing. The test will end when the test result is positive or run up the number of repetition. False stands for simutanlous testing with majority voting. batch_limit (int): Output: result (Numpy Array): an array contains subjects' id and test results consum (int): the total test consumption individual_con (int): the test consumption for individual testings """ temp_list = [] neg_list = [] pos_list = [] batch_num_list = [] consum = 0 temp = {'data': subject_array, 'NB_Num': 0, 'PB_Num': 0, 'p': p, 'batch_size': batch_size, 'node': ''} temp_list.append(temp) new_list = [] neg_array = [] neg_node = [] pos_node = [] pos_array = [] while len(temp_list) > 0: for i in temp_list: temp0, temp1, temp_con, p0, p1, n0, n1 = helpfunction(i['data'], i['p'], i['batch_size'], typeII_error, typeI_error, batch_limit=batch_limit) temp0 = {'data': temp0, 'NB_Num': i['NB_Num'] + 1, 'PB_Num': i[ 'PB_Num'], 'p': p0, 'batch_size': n0, 'node': i['node'] + '-'} temp1 = {'data': temp1, 'NB_Num': i['NB_Num'], 'PB_Num': i[ 'PB_Num'] + 1, 'p': p1, 'batch_size': n1, 'node': i['node'] + '+'} if len(temp0['data']) > 0: if temp0['NB_Num'] >= stop_rule: neg_list.append(temp0) else: new_list.append(temp0) if len(temp1['data']) > 0: if temp1['PB_Num'] >= stop_rule or temp1['p' ] >= prob_threshold: pos_list.append(temp1) else: new_list.append(temp1) consum += temp_con batch_num_list.append(consum) temp_list = new_list new_list = [] for j in neg_list: neg_array.append(j['data']) temp = [[x, j['node']] for x in j['data'][:, 0]] neg_node.append(temp) neg_array = np.concatenate(neg_array) for k in pos_list: pos_array.append(k['data']) temp = [[x, k['node']] for x in k['data'][:, 0]] pos_node.append(temp) pos_array = np.concatenate(pos_array) neg_array[:, 1] = 0 individual_test, individual_con = conventional_test(pos_array, typeII_error, typeI_error, repeat, seq) pos_array = individual_test consum += individual_con result = np.concatenate((pos_array, neg_array)) pos_node.extend(neg_node) node = pos_node node = sum(node, []) node.sort() node = [x[1] for x in node] result = result[result[:, 0].argsort()] result = result.astype('int64') return result, consum, individual_con, node, batch_num_list
<mask token> @jit(parallel=True) def conventional_test(subject_array, typeII_error, typeI_error, repeat=1, seq=True): """ A function gives the test results to a subject array given the probability of type II error, the probability of Type I error, and the number of repeatition, and setting of sequence testing or not. Input: subject_array(Numpy Array): an array contains subject id and subject's condition (1 stands for infection and 0 stands for uninfection) typeII_error (float): probability of type II error typeI_error (float): probability of type I error repeat (int): the number of repetition seq (boolean): True stands for sequential testing. The test will end when the test result is positive or run up the number of repetition. False stands for simutanlous testing with majority voting. Output: test_result (Numpy Array): an array contains subjects' id and test results consum (int): the total test consumption """ if seq == True: consum = 0 test_result = np.zeros(subject_array.shape, dtype=int) random_table = np.random.uniform(0, 1, (subject_array.shape[0], repeat) ) for i in range(len(subject_array)): temp = 0 j = 0 subject = subject_array[i, 1] while j < repeat and temp == 0: random_num = random_table[i, j] consum += 1 if subject == 1: temp = 1 if random_num > typeII_error else 0 else: temp = 1 if random_num < typeI_error else 0 j += 1 test_result[i, 0] = subject_array[i, 0] test_result[i, 1] = temp return test_result, consum else: test_result = np.zeros(subject_array.shape, dtype=int) random_table = np.random.uniform(0, 1, (subject_array.shape[0], repeat) ) for i in range(len(subject_array)): temp = 0 for j in range(repeat): temp_random = random_table[i, j] if subject_array[i, 1] == 1: temp_1 = 1 if temp_random > typeII_error else 0 elif subject_array[i, 1] == 0: temp_1 = 1 if temp_random < typeI_error else 0 temp += temp_1 temp = 1 if temp >= repeat / 2 else 0 test_result[i, 0] = subject_array[i, 0] test_result[i, 1] = temp return test_result, len(subject_array) * repeat @njit(parallel=True) def parallel_test(subject_array, typeII_error, typeI_error, num): test_result = np.zeros(subject_array.shape, dtype=int) random_table = np.random.uniform(0, 1, (subject_array.shape[0], num)) for i in range(len(subject_array)): subject = subject_array[i, 1] if subject == 1: temp = 1 if max(random_table[i, :]) > typeII_error else 0 elif subject == 0: temp = 1 if min(random_table[i, :]) < typeI_error else 0 test_result[i, 0] = subject_array[i, 0] test_result[i, 1] = temp return test_result, len(subject_array) * num, len(subject_array) * num def infection_rate_on_negative_batch(p, batch_size, typeII_error, typeI_error): """ Given infection rate, batch size, prob of type II error and prob of type I error, this function gives the infection rate on the negative batch. Input: p (float): the infection rate batch_size (int): the batch size typeII_error (float): the prob of type II error typeI_error (float): the prob of type I error Output: (float): the infection rate on the negative batch """ q = 1 - p r = typeII_error * (1 - q ** batch_size) / ((1 - typeI_error) * q ** batch_size + typeII_error * (1 - q ** batch_size)) return p * r / (1 - q ** batch_size) def infection_rate_on_positive_batch(p, batch_size, typeII_error, typeI_error): """ Given infection rate, batch size, prob of type II error and prob of type I error, this function gives the infection rate on the positive batch. Input: p (float): the infection rate batch_size (int): the batch size typeII_error (float): the prob of type II error typeI_error (float): the prob of type I error Output: (float): the infection rate on the positive batch """ q = 1 - p r = (1 - typeII_error) * (1 - q ** batch_size) / (typeI_error * q ** batch_size + (1 - typeII_error) * (1 - q ** batch_size)) return p * r / (1 - q ** batch_size) def one_batch_test_solver(prevalence_rate, typeII_error, typeI_error, n_initial_guess=2): """ A function gives (float) the best batch size for one batch test given the infection rate Inputs: prevalence_rate(float): infection rate typeII_error(float): the prob of type II error typeI_error(float): the prob of type I error n_initial_guess(float): the initial guess Output: (float): the optimal batch size """ q = 1 - prevalence_rate func = lambda n: n * q ** (n / 2) - (-(1 - typeII_error - typeI_error) * np.log(q)) ** (-1 / 2) n_solution = fsolve(func, n_initial_guess) return float(n_solution) def one_batch_test_int_solver(prevalence_rate, typeII_error, typeI_error, batch_limit, n_initial_guess=2): """ A function gives (int) the best batch size for one batch test given the infection rate Inputs: prevalence_rate(float): infection rate n_initial_guess(float): the initial guess typeII_error(float): the prob of type II error typeI_error(float): the prob of type I error n_initial_guess: batch_limit (int): the upper limit of batch size Output: (int): the optimal batch size """ sol_float = one_batch_test_solver(prevalence_rate, typeII_error, typeI_error, n_initial_guess) floor, ceil = np.floor(sol_float), np.ceil(sol_float) func = lambda batch_size: 1 / batch_size + 1 - typeII_error - (1 - typeII_error - typeI_error) * (1 - prevalence_rate) ** batch_size if func(floor) < func(ceil): temp = int(floor) else: temp = int(ceil) if temp <= batch_limit: return temp else: return int(batch_limit) def neg_pos_batch_split(subject_array, batch_size, typeII_error, typeI_error): """ A function gives a list of sujects on the negative batch(es), a list of subjects on the postive batch(es) and the test-kit consumption given the probability of type II error, the probability of Type I error. Input: subject_array (Numpy Array): an array contains subject id and subject's condition (1 stands for infection and 0 stands for uninfection) batch_size (int): batch size typeII_error (float): probability of type II error typeI_error (float): probability of type I error Output: neg_batch (Numpy Array): an array of subjects on the negative batch(es) pos_batch (Numpy Array): an array of subjects on the postive batch(es) test_consum (int): the number of test-kit consumptions """ neg_batch = [] pos_batch = [] test_consum = np.ceil(len(subject_array) / batch_size) random_table = np.random.uniform(0, 1, int(test_consum)) i = 0 for temp_batch in np.array_split(subject_array, test_consum): if 1 in temp_batch[:, 1]: if random_table[i] > typeII_error: pos_batch.append(temp_batch) else: neg_batch.append(temp_batch) elif random_table[i] > typeI_error: neg_batch.append(temp_batch) else: pos_batch.append(temp_batch) i += 1 neg_batch = np.concatenate(neg_batch) if len(neg_batch) > 0 else np.array([ ]) pos_batch = np.concatenate(pos_batch) if len(pos_batch) > 0 else np.array([ ]) return neg_batch, pos_batch, test_consum def helpfunction(subject_array, p, batch_size, typeII_error, typeI_error, batch_limit): """ The helpfunction is a handy function to give the list of subjects on the negative batch(es), the list of subjects on the postive batch(es), the test-kit consumption, the infection rate on the negative batches, the infection rate on the positive batches, the optimal batch size for negative batches and the optimal batch size for positive batches. Input: subject_array (Numpy Array): an array contains subject id and subject's condition (1 stands for infection and 0 stands for uninfection) p (float): Infection rate batch_size (int): batch size typeII_error (float): probability of type II error typeI_error (float): probability of type I error batch_limit (int): batch size upper limit Output: temp0 (Numpy Array): an array of subjects on the negative batch(es) temp1 (Numpy Array): an array of subjects on the postive batch(es) temp_con (int): the number of test-kit consumptions p0 (float): the infection rate on the negative batches p1 (float): the infection rate on the positive batches n0 (float): the optimal batch size for the negative batches n1 (float): the optimal batch size for the positive batches """ batch_size = min(batch_size, batch_limit) p0 = infection_rate_on_negative_batch(p, batch_size, typeII_error, typeI_error) p1 = infection_rate_on_positive_batch(p, batch_size, typeII_error, typeI_error) n0 = one_batch_test_int_solver(p0, typeII_error, typeI_error, batch_limit) n1 = one_batch_test_int_solver(p1, typeII_error, typeI_error, batch_limit) if subject_array == np.array([]): return np.array([]), np.array([]), p0, p1, n0, n1 temp0, temp1, temp_con = neg_pos_batch_split(subject_array, batch_size, typeII_error, typeI_error) return temp0, temp1, temp_con, p0, p1, n0, n1 def seq_test(subject_array, stop_rule, p, batch_size, typeII_error, typeI_error, repeat=1, prob_threshold=1, seq=True, batch_limit=32): """ A function gives the test results to a subject array and the total number of test-kit consumption and the individual testing number given the subject array, the stop rule, the batch size, the probability of type II error, the probability of Type I error, and the number of repeatition, the probability threshold, and setting of sequence testing or not. Input: subject_array(Numpy Array): an array contains subject id and subject's condition (1 stands for infection and 0 stands for uninfection) stop_rule (int): the number of postive batches to enter individual testing p (float): infection rate batch_size (int): batch size typeII_error (float): probability of type II error typeI_error (float): probability of type I error repeat (int): the number of repetition prob_threshold (float): if the infection rate of a batch is beyond prob_threshold, the subjects on that batch will enter individual testing phase seq (boolean): True stands for sequential testing. The test will end when the test result is positive or run up the number of repetition. False stands for simutanlous testing with majority voting. batch_limit (int): Output: result (Numpy Array): an array contains subjects' id and test results consum (int): the total test consumption individual_con (int): the test consumption for individual testings """ temp_list = [] neg_list = [] pos_list = [] consum = 0 temp = {'data': subject_array, 'NB_Num': 0, 'PB_Num': 0, 'p': p, 'batch_size': batch_size} temp_list.append(temp) new_list = [] neg_array = [] pos_array = [] while len(temp_list) > 0: for i in temp_list: temp0, temp1, temp_con, p0, p1, n0, n1 = helpfunction(i['data'], i['p'], i['batch_size'], typeII_error, typeI_error, batch_limit=batch_limit) temp0 = {'data': temp0, 'NB_Num': i['NB_Num'] + 1, 'PB_Num': i[ 'PB_Num'], 'p': p0, 'batch_size': n0} temp1 = {'data': temp1, 'NB_Num': i['NB_Num'], 'PB_Num': i[ 'PB_Num'] + 1, 'p': p1, 'batch_size': n1} if len(temp0['data']) > 0: if temp0['NB_Num'] >= stop_rule: neg_list.append(temp0) else: new_list.append(temp0) if len(temp1['data']) > 0: if temp1['PB_Num'] >= stop_rule or temp1['p' ] >= prob_threshold: pos_list.append(temp1) else: new_list.append(temp1) consum += temp_con temp_list = new_list new_list = [] for j in neg_list: neg_array.append(j['data']) neg_array = np.concatenate(neg_array) for k in pos_list: pos_array.append(k['data']) pos_array = np.concatenate(pos_array) neg_array[:, 1] = 0 individual_test, individual_con = conventional_test(pos_array, typeII_error, typeI_error, repeat, seq) pos_array = individual_test consum += individual_con result = np.concatenate((pos_array, neg_array)) result = result[result[:, 0].argsort()] result = result.astype('int64') return result, consum, individual_con <mask token> def specificity_score(y_true, y_pred): """ A function provides specificty given the prediction and the truth """ tn, fp, _, _ = confusion_matrix(y_true=y_true, y_pred=y_pred).ravel() return tn / (tn + fp) @jit(parallel=True) def data_gen(size, p): """ data_gen provides a faster way to generate a random population with infection rate p. Input: size (int): the size of population p (float): the infection rate Output: test_array (array): the first column is for id and the second column is the condition, where 1 stands for infection and 0 stands for uninfection """ random_table = np.random.binomial(size=size, p=p, n=1) test_array = np.zeros((size, 2), dtype=int) for i in range(size): test_array[i, 0] = i test_array[i, 1] = random_table[i] return test_array def test_result(data, seq_test, **kwargs): """ a helper function provides convenient results for a given test method with its **kwargs Input: data (array or list of arrays) seq_test (test_method object): could be seq_test, matrix_test and other test_method objects Output: result (DataFrame): a dataframe contains important evaluation metrics for the test method """ if isinstance(data, list) == False: pred, consum, ind_con = seq_test(data, **kwargs) result = {'acc': np.mean(pred[:, 1] == data[:, 1]), 'sens': recall_score(data[:, 1], pred[:, 1]), 'spec': specificity_score (data[:, 1], pred[:, 1]), 'PPV': precision_score(data[:, 1], pred[:, 1]), 'NPV': npv_score(data[:, 1], pred[:, 1]), 'test_consum': consum, 'ind_consum': ind_con, 'batch_consum': consum - ind_con} return result else: length = len(data) acc = np.zeros(length) sens = np.zeros(length) spec = np.zeros(length) ppv = np.zeros(length) npv = np.zeros(length) test_consum = np.zeros(length) ind_consum = np.zeros(length) batch_consum = np.zeros(length) for i in range(length): pred, consum, ind_con = seq_test(data[i], **kwargs) acc[i] = np.mean(pred[:, 1] == data[i][:, 1]) sens[i] = recall_score(data[i][:, 1], pred[:, 1]) spec[i] = specificity_score(data[i][:, 1], pred[:, 1]) ppv[i] = precision_score(data[i][:, 1], pred[:, 1]) npv[i] = npv_score(data[i][:, 1], pred[:, 1]) test_consum[i] = consum ind_consum[i] = ind_con batch_consum[i] = consum - ind_con result = {'acc': acc, 'sens': sens, 'spec': spec, 'PPV': ppv, 'NPV': npv, 'test_consum': test_consum, 'ind_consum': ind_consum, 'batch_consum': batch_consum} return pd.DataFrame(result) def matrix_test(subject_array, side_length, typeII_error, typeI_error, sq_repeat=1, ind_repeat=1, seq=True): """ This function provides the matrix testing results for a given subject array. Input: subject_array(Numpy Array): an array contains subject id and subject's condition (1 stands for infection and 0 stands for uninfection) side_length (int): the side length of the matrix testing typeII_error (float): probability of type II error typeI_error (float): probability of type I error sq_repeat (int): the number of parallel testing for the column/row batch testing ind_repeat (int): the number of potential individual testing for the positive crossings seq (boolean): True stands for sequential testing. The test will end when the test result is positive or run up the number of repetition. False stands for simutanlous testing with majority voting. Output: result (Numpy Array): an array contains subjects' id and test results consum (int): the total test consumption individual_con (int): the test consumption for individual testings """ matrix_test_num = len(subject_array) // side_length ** 2 matrix_test_array = subject_array[0:matrix_test_num * side_length ** 2, :] ind_test_array = subject_array[matrix_test_num * side_length ** 2:, :] ind_idx = [] for temp_batch in np.array_split(matrix_test_array, matrix_test_num): temp_batch = temp_batch.reshape(side_length, side_length, 2) temp_row = [] temp_col = [] random_num_row = np.random.uniform(0, 1, sq_repeat) random_num_col = np.random.uniform(0, 1, sq_repeat) for i in range(side_length): if 1 in temp_batch[i, :, 1]: if max(random_num_row) > typeII_error: temp_row.append(temp_batch[i, :, 0]) elif min(random_num_row) < typeI_error: temp_row.append(temp_batch[i, :, 0]) if 1 in temp_batch[:, i, 1]: if max(random_num_col) > typeII_error: temp_col.append(temp_batch[:, i, 0]) elif min(random_num_col) < typeI_error: temp_col.append(temp_batch[:, i, 0]) ind_idx.append(np.intersect1d(temp_row, temp_col)) ind_idx = np.concatenate(ind_idx) ind_idx = ind_idx.astype('int') if len(ind_idx) == 0: neg_array = matrix_test_array else: mask = np.zeros(subject_array.shape[0], dtype=bool) mask[ind_idx] = True mask[matrix_test_num * side_length ** 2:] = True ind_test_array = subject_array[mask, :] neg_array = subject_array[~mask, :] neg_array[:, 1] = 0 ind_test, ind_con = conventional_test(ind_test_array, typeII_error, typeI_error, repeat=ind_repeat, seq=seq) batch_test_num = matrix_test_num * 2 * side_length * sq_repeat result = np.concatenate((neg_array, ind_test)) result = result[result[:, 0].argsort()] return result, batch_test_num + ind_con, ind_con def parallel_batch_testing(subject_array, batch_size, typeII_error, typeI_error, parallel_num, ind_repeat, seq): """ This function provides the parallel batch testing results for a given subject array. Input: subject_array(Numpy Array): an array contains subject id and subject's condition (1 stands for infection and 0 stands for uninfection) batch_size (int): batch size typeII_error (float): probability of type II error typeI_error (float): probability of type I error parallel_num (int): the number of parallel testing for the batch testing ind_repeat (int): the number of potential individual testing for the positive batches seq (boolean): True stands for sequential testing. The test will end when the test result is positive or run up the number of repetition. False stands for simutanlous testing with majority voting. Output: result (Numpy Array): an array contains subjects' id and test results consum (int): the total test consumption individual_con (int): the test consumption for individual testings """ neg_batch = [] pos_batch = [] batch_consum = np.ceil(len(subject_array) / batch_size) * parallel_num for temp_batch in np.array_split(subject_array, np.ceil(len( subject_array) / batch_size)): random_table = np.random.uniform(0, 1, (1, parallel_num)) if 1 in temp_batch[:, 1]: if random_table.max() > typeII_error: pos_batch.append(temp_batch) else: neg_batch.append(temp_batch) elif random_table.min() < typeI_error: pos_batch.append(temp_batch) else: neg_batch.append(temp_batch) neg_batch = np.concatenate(neg_batch) if len(neg_batch) > 0 else np.array([ ]) pos_batch = np.concatenate(pos_batch) if len(pos_batch) > 0 else np.array([ ]) neg_batch[:, 1] = 0 individual_test, individual_con = conventional_test(pos_batch, typeII_error, typeI_error, repeat=ind_repeat, seq=seq) result = np.concatenate((individual_test, neg_batch)) result = result[result[:, 0].argsort()] result = result.astype('int64') return result, batch_consum + individual_con, individual_con def fixed_batch_seq_test(subject_array, stop_rule, p, batch_size, typeII_error, typeI_error, repeat, prob_threshold=0.3, seq=True): """ This function provides the parallel batch testing results for a given subject array. Input: subject_array(Numpy Array): an array contains subject id and subject's condition (1 stands for infection and 0 stands for uninfection) stop_rule (int): the number of positive batches to enter the individual testing phase batch_size (int): batch size typeII_error (float): probability of type II error typeI_error (float): probability of type I error repeat (int): the number of potential individual testing for the positive crossings prob_threshold (float): if the infection rate of a batch is beyond prob_threshold, the subjects on that batch will enter individual testing phase seq (boolean): True stands for sequential testing. The test will end when the test result is positive or run up the number of repetition. False stands for simutanlous testing with majority voting. Output: result (Numpy Array): an array contains subjects' id and test results consum (int): the total test consumption individual_con (int): the test consumption for individual testings """ temp_list = [] neg_list = [] pos_list = [] consum = 0 temp = {'data': subject_array, 'NB_Num': 0, 'PB_Num': 0, 'p': p, 'batch_size': batch_size} temp_list.append(temp) new_list = [] neg_array = [] pos_array = [] while len(temp_list) > 0: for i in temp_list: temp0, temp1, temp_con, p0, p1, n0, n1 = helpfunction(i['data'], i['p'], i['batch_size'], typeII_error, typeI_error) temp0 = {'data': np.random.permutation(temp0), 'NB_Num': i[ 'NB_Num'] + 1, 'PB_Num': i['PB_Num'], 'p': p0, 'batch_size': batch_size} temp1 = {'data': np.random.permutation(temp1), 'NB_Num': i[ 'NB_Num'], 'PB_Num': i['PB_Num'] + 1, 'p': p1, 'batch_size': batch_size} if len(temp0['data']) > 0: if temp0['NB_Num'] >= stop_rule: neg_list.append(temp0) else: new_list.append(temp0) if len(temp1['data']) > 0: if temp1['PB_Num'] >= stop_rule or temp1['p' ] >= prob_threshold: pos_list.append(temp1) else: new_list.append(temp1) consum += temp_con temp_list = new_list new_list = [] for j in neg_list: neg_array.append(j['data']) neg_array = np.concatenate(neg_array) for k in pos_list: pos_array.append(k['data']) pos_array = np.concatenate(pos_array) neg_array[:, 1] = 0 individual_test, individual_con = conventional_test(pos_array, typeII_error, typeI_error, repeat, seq) pos_array = individual_test consum += individual_con result = np.concatenate((pos_array, neg_array)) result = result[result[:, 0].argsort()] result = result.astype('int64') return result, consum, individual_con def name_fun(n): """ input: stopping rule output: finish nodes """ output = [] temp = [''] for i in range(2 * n - 1): temp_cur = [] for j in temp: candidate_pos = j + '+' candidate_neg = j + '-' if str.count(candidate_pos, '+') >= n: output.append(candidate_pos) else: temp_cur.append(candidate_pos) if str.count(candidate_neg, '-') >= n: output.append(candidate_neg) else: temp_cur.append(candidate_neg) temp = temp_cur neg_symbol = [x for x in output if str.count(x, '-') == n] pos_symbol = [x for x in output if str.count(x, '+') == n] return output, neg_symbol, pos_symbol def seq_test_with_node(subject_array, stop_rule, p, batch_size, typeII_error, typeI_error, repeat=1, prob_threshold=1, seq=True, batch_limit=32): """ A function gives the test results to a subject array and the total number of test-kit consumption and the individual testing number given the subject array, the stop rule, the batch size, the probability of type II error, the probability of Type I error, and the number of repeatition, the probability threshold, and setting of sequence testing or not. Input: subject_array(Numpy Array): an array contains subject id and subject's condition (1 stands for infection and 0 stands for uninfection) stop_rule (int): the number of postive batches to enter individual testing p (float): infection rate batch_size (int): batch size typeII_error (float): probability of type II error typeI_error (float): probability of type I error repeat (int): the number of repetition prob_threshold (float): if the infection rate of a batch is beyond prob_threshold, the subjects on that batch will enter individual testing phase seq (boolean): True stands for sequential testing. The test will end when the test result is positive or run up the number of repetition. False stands for simutanlous testing with majority voting. batch_limit (int): Output: result (Numpy Array): an array contains subjects' id and test results consum (int): the total test consumption individual_con (int): the test consumption for individual testings """ temp_list = [] neg_list = [] pos_list = [] batch_num_list = [] consum = 0 temp = {'data': subject_array, 'NB_Num': 0, 'PB_Num': 0, 'p': p, 'batch_size': batch_size, 'node': ''} temp_list.append(temp) new_list = [] neg_array = [] neg_node = [] pos_node = [] pos_array = [] while len(temp_list) > 0: for i in temp_list: temp0, temp1, temp_con, p0, p1, n0, n1 = helpfunction(i['data'], i['p'], i['batch_size'], typeII_error, typeI_error, batch_limit=batch_limit) temp0 = {'data': temp0, 'NB_Num': i['NB_Num'] + 1, 'PB_Num': i[ 'PB_Num'], 'p': p0, 'batch_size': n0, 'node': i['node'] + '-'} temp1 = {'data': temp1, 'NB_Num': i['NB_Num'], 'PB_Num': i[ 'PB_Num'] + 1, 'p': p1, 'batch_size': n1, 'node': i['node'] + '+'} if len(temp0['data']) > 0: if temp0['NB_Num'] >= stop_rule: neg_list.append(temp0) else: new_list.append(temp0) if len(temp1['data']) > 0: if temp1['PB_Num'] >= stop_rule or temp1['p' ] >= prob_threshold: pos_list.append(temp1) else: new_list.append(temp1) consum += temp_con batch_num_list.append(consum) temp_list = new_list new_list = [] for j in neg_list: neg_array.append(j['data']) temp = [[x, j['node']] for x in j['data'][:, 0]] neg_node.append(temp) neg_array = np.concatenate(neg_array) for k in pos_list: pos_array.append(k['data']) temp = [[x, k['node']] for x in k['data'][:, 0]] pos_node.append(temp) pos_array = np.concatenate(pos_array) neg_array[:, 1] = 0 individual_test, individual_con = conventional_test(pos_array, typeII_error, typeI_error, repeat, seq) pos_array = individual_test consum += individual_con result = np.concatenate((pos_array, neg_array)) pos_node.extend(neg_node) node = pos_node node = sum(node, []) node.sort() node = [x[1] for x in node] result = result[result[:, 0].argsort()] result = result.astype('int64') return result, consum, individual_con, node, batch_num_list
<mask token> @jit(parallel=True) def conventional_test(subject_array, typeII_error, typeI_error, repeat=1, seq=True): """ A function gives the test results to a subject array given the probability of type II error, the probability of Type I error, and the number of repeatition, and setting of sequence testing or not. Input: subject_array(Numpy Array): an array contains subject id and subject's condition (1 stands for infection and 0 stands for uninfection) typeII_error (float): probability of type II error typeI_error (float): probability of type I error repeat (int): the number of repetition seq (boolean): True stands for sequential testing. The test will end when the test result is positive or run up the number of repetition. False stands for simutanlous testing with majority voting. Output: test_result (Numpy Array): an array contains subjects' id and test results consum (int): the total test consumption """ if seq == True: consum = 0 test_result = np.zeros(subject_array.shape, dtype=int) random_table = np.random.uniform(0, 1, (subject_array.shape[0], repeat) ) for i in range(len(subject_array)): temp = 0 j = 0 subject = subject_array[i, 1] while j < repeat and temp == 0: random_num = random_table[i, j] consum += 1 if subject == 1: temp = 1 if random_num > typeII_error else 0 else: temp = 1 if random_num < typeI_error else 0 j += 1 test_result[i, 0] = subject_array[i, 0] test_result[i, 1] = temp return test_result, consum else: test_result = np.zeros(subject_array.shape, dtype=int) random_table = np.random.uniform(0, 1, (subject_array.shape[0], repeat) ) for i in range(len(subject_array)): temp = 0 for j in range(repeat): temp_random = random_table[i, j] if subject_array[i, 1] == 1: temp_1 = 1 if temp_random > typeII_error else 0 elif subject_array[i, 1] == 0: temp_1 = 1 if temp_random < typeI_error else 0 temp += temp_1 temp = 1 if temp >= repeat / 2 else 0 test_result[i, 0] = subject_array[i, 0] test_result[i, 1] = temp return test_result, len(subject_array) * repeat @njit(parallel=True) def parallel_test(subject_array, typeII_error, typeI_error, num): test_result = np.zeros(subject_array.shape, dtype=int) random_table = np.random.uniform(0, 1, (subject_array.shape[0], num)) for i in range(len(subject_array)): subject = subject_array[i, 1] if subject == 1: temp = 1 if max(random_table[i, :]) > typeII_error else 0 elif subject == 0: temp = 1 if min(random_table[i, :]) < typeI_error else 0 test_result[i, 0] = subject_array[i, 0] test_result[i, 1] = temp return test_result, len(subject_array) * num, len(subject_array) * num def infection_rate_on_negative_batch(p, batch_size, typeII_error, typeI_error): """ Given infection rate, batch size, prob of type II error and prob of type I error, this function gives the infection rate on the negative batch. Input: p (float): the infection rate batch_size (int): the batch size typeII_error (float): the prob of type II error typeI_error (float): the prob of type I error Output: (float): the infection rate on the negative batch """ q = 1 - p r = typeII_error * (1 - q ** batch_size) / ((1 - typeI_error) * q ** batch_size + typeII_error * (1 - q ** batch_size)) return p * r / (1 - q ** batch_size) def infection_rate_on_positive_batch(p, batch_size, typeII_error, typeI_error): """ Given infection rate, batch size, prob of type II error and prob of type I error, this function gives the infection rate on the positive batch. Input: p (float): the infection rate batch_size (int): the batch size typeII_error (float): the prob of type II error typeI_error (float): the prob of type I error Output: (float): the infection rate on the positive batch """ q = 1 - p r = (1 - typeII_error) * (1 - q ** batch_size) / (typeI_error * q ** batch_size + (1 - typeII_error) * (1 - q ** batch_size)) return p * r / (1 - q ** batch_size) def one_batch_test_solver(prevalence_rate, typeII_error, typeI_error, n_initial_guess=2): """ A function gives (float) the best batch size for one batch test given the infection rate Inputs: prevalence_rate(float): infection rate typeII_error(float): the prob of type II error typeI_error(float): the prob of type I error n_initial_guess(float): the initial guess Output: (float): the optimal batch size """ q = 1 - prevalence_rate func = lambda n: n * q ** (n / 2) - (-(1 - typeII_error - typeI_error) * np.log(q)) ** (-1 / 2) n_solution = fsolve(func, n_initial_guess) return float(n_solution) def one_batch_test_int_solver(prevalence_rate, typeII_error, typeI_error, batch_limit, n_initial_guess=2): """ A function gives (int) the best batch size for one batch test given the infection rate Inputs: prevalence_rate(float): infection rate n_initial_guess(float): the initial guess typeII_error(float): the prob of type II error typeI_error(float): the prob of type I error n_initial_guess: batch_limit (int): the upper limit of batch size Output: (int): the optimal batch size """ sol_float = one_batch_test_solver(prevalence_rate, typeII_error, typeI_error, n_initial_guess) floor, ceil = np.floor(sol_float), np.ceil(sol_float) func = lambda batch_size: 1 / batch_size + 1 - typeII_error - (1 - typeII_error - typeI_error) * (1 - prevalence_rate) ** batch_size if func(floor) < func(ceil): temp = int(floor) else: temp = int(ceil) if temp <= batch_limit: return temp else: return int(batch_limit) def neg_pos_batch_split(subject_array, batch_size, typeII_error, typeI_error): """ A function gives a list of sujects on the negative batch(es), a list of subjects on the postive batch(es) and the test-kit consumption given the probability of type II error, the probability of Type I error. Input: subject_array (Numpy Array): an array contains subject id and subject's condition (1 stands for infection and 0 stands for uninfection) batch_size (int): batch size typeII_error (float): probability of type II error typeI_error (float): probability of type I error Output: neg_batch (Numpy Array): an array of subjects on the negative batch(es) pos_batch (Numpy Array): an array of subjects on the postive batch(es) test_consum (int): the number of test-kit consumptions """ neg_batch = [] pos_batch = [] test_consum = np.ceil(len(subject_array) / batch_size) random_table = np.random.uniform(0, 1, int(test_consum)) i = 0 for temp_batch in np.array_split(subject_array, test_consum): if 1 in temp_batch[:, 1]: if random_table[i] > typeII_error: pos_batch.append(temp_batch) else: neg_batch.append(temp_batch) elif random_table[i] > typeI_error: neg_batch.append(temp_batch) else: pos_batch.append(temp_batch) i += 1 neg_batch = np.concatenate(neg_batch) if len(neg_batch) > 0 else np.array([ ]) pos_batch = np.concatenate(pos_batch) if len(pos_batch) > 0 else np.array([ ]) return neg_batch, pos_batch, test_consum def helpfunction(subject_array, p, batch_size, typeII_error, typeI_error, batch_limit): """ The helpfunction is a handy function to give the list of subjects on the negative batch(es), the list of subjects on the postive batch(es), the test-kit consumption, the infection rate on the negative batches, the infection rate on the positive batches, the optimal batch size for negative batches and the optimal batch size for positive batches. Input: subject_array (Numpy Array): an array contains subject id and subject's condition (1 stands for infection and 0 stands for uninfection) p (float): Infection rate batch_size (int): batch size typeII_error (float): probability of type II error typeI_error (float): probability of type I error batch_limit (int): batch size upper limit Output: temp0 (Numpy Array): an array of subjects on the negative batch(es) temp1 (Numpy Array): an array of subjects on the postive batch(es) temp_con (int): the number of test-kit consumptions p0 (float): the infection rate on the negative batches p1 (float): the infection rate on the positive batches n0 (float): the optimal batch size for the negative batches n1 (float): the optimal batch size for the positive batches """ batch_size = min(batch_size, batch_limit) p0 = infection_rate_on_negative_batch(p, batch_size, typeII_error, typeI_error) p1 = infection_rate_on_positive_batch(p, batch_size, typeII_error, typeI_error) n0 = one_batch_test_int_solver(p0, typeII_error, typeI_error, batch_limit) n1 = one_batch_test_int_solver(p1, typeII_error, typeI_error, batch_limit) if subject_array == np.array([]): return np.array([]), np.array([]), p0, p1, n0, n1 temp0, temp1, temp_con = neg_pos_batch_split(subject_array, batch_size, typeII_error, typeI_error) return temp0, temp1, temp_con, p0, p1, n0, n1 def seq_test(subject_array, stop_rule, p, batch_size, typeII_error, typeI_error, repeat=1, prob_threshold=1, seq=True, batch_limit=32): """ A function gives the test results to a subject array and the total number of test-kit consumption and the individual testing number given the subject array, the stop rule, the batch size, the probability of type II error, the probability of Type I error, and the number of repeatition, the probability threshold, and setting of sequence testing or not. Input: subject_array(Numpy Array): an array contains subject id and subject's condition (1 stands for infection and 0 stands for uninfection) stop_rule (int): the number of postive batches to enter individual testing p (float): infection rate batch_size (int): batch size typeII_error (float): probability of type II error typeI_error (float): probability of type I error repeat (int): the number of repetition prob_threshold (float): if the infection rate of a batch is beyond prob_threshold, the subjects on that batch will enter individual testing phase seq (boolean): True stands for sequential testing. The test will end when the test result is positive or run up the number of repetition. False stands for simutanlous testing with majority voting. batch_limit (int): Output: result (Numpy Array): an array contains subjects' id and test results consum (int): the total test consumption individual_con (int): the test consumption for individual testings """ temp_list = [] neg_list = [] pos_list = [] consum = 0 temp = {'data': subject_array, 'NB_Num': 0, 'PB_Num': 0, 'p': p, 'batch_size': batch_size} temp_list.append(temp) new_list = [] neg_array = [] pos_array = [] while len(temp_list) > 0: for i in temp_list: temp0, temp1, temp_con, p0, p1, n0, n1 = helpfunction(i['data'], i['p'], i['batch_size'], typeII_error, typeI_error, batch_limit=batch_limit) temp0 = {'data': temp0, 'NB_Num': i['NB_Num'] + 1, 'PB_Num': i[ 'PB_Num'], 'p': p0, 'batch_size': n0} temp1 = {'data': temp1, 'NB_Num': i['NB_Num'], 'PB_Num': i[ 'PB_Num'] + 1, 'p': p1, 'batch_size': n1} if len(temp0['data']) > 0: if temp0['NB_Num'] >= stop_rule: neg_list.append(temp0) else: new_list.append(temp0) if len(temp1['data']) > 0: if temp1['PB_Num'] >= stop_rule or temp1['p' ] >= prob_threshold: pos_list.append(temp1) else: new_list.append(temp1) consum += temp_con temp_list = new_list new_list = [] for j in neg_list: neg_array.append(j['data']) neg_array = np.concatenate(neg_array) for k in pos_list: pos_array.append(k['data']) pos_array = np.concatenate(pos_array) neg_array[:, 1] = 0 individual_test, individual_con = conventional_test(pos_array, typeII_error, typeI_error, repeat, seq) pos_array = individual_test consum += individual_con result = np.concatenate((pos_array, neg_array)) result = result[result[:, 0].argsort()] result = result.astype('int64') return result, consum, individual_con def npv_score(y_true, y_pred): """ A function provides npv given the prediction and the truth """ tn, _, fn, _ = confusion_matrix(y_true=y_true, y_pred=y_pred).ravel() return tn / (tn + fn) def specificity_score(y_true, y_pred): """ A function provides specificty given the prediction and the truth """ tn, fp, _, _ = confusion_matrix(y_true=y_true, y_pred=y_pred).ravel() return tn / (tn + fp) @jit(parallel=True) def data_gen(size, p): """ data_gen provides a faster way to generate a random population with infection rate p. Input: size (int): the size of population p (float): the infection rate Output: test_array (array): the first column is for id and the second column is the condition, where 1 stands for infection and 0 stands for uninfection """ random_table = np.random.binomial(size=size, p=p, n=1) test_array = np.zeros((size, 2), dtype=int) for i in range(size): test_array[i, 0] = i test_array[i, 1] = random_table[i] return test_array def test_result(data, seq_test, **kwargs): """ a helper function provides convenient results for a given test method with its **kwargs Input: data (array or list of arrays) seq_test (test_method object): could be seq_test, matrix_test and other test_method objects Output: result (DataFrame): a dataframe contains important evaluation metrics for the test method """ if isinstance(data, list) == False: pred, consum, ind_con = seq_test(data, **kwargs) result = {'acc': np.mean(pred[:, 1] == data[:, 1]), 'sens': recall_score(data[:, 1], pred[:, 1]), 'spec': specificity_score (data[:, 1], pred[:, 1]), 'PPV': precision_score(data[:, 1], pred[:, 1]), 'NPV': npv_score(data[:, 1], pred[:, 1]), 'test_consum': consum, 'ind_consum': ind_con, 'batch_consum': consum - ind_con} return result else: length = len(data) acc = np.zeros(length) sens = np.zeros(length) spec = np.zeros(length) ppv = np.zeros(length) npv = np.zeros(length) test_consum = np.zeros(length) ind_consum = np.zeros(length) batch_consum = np.zeros(length) for i in range(length): pred, consum, ind_con = seq_test(data[i], **kwargs) acc[i] = np.mean(pred[:, 1] == data[i][:, 1]) sens[i] = recall_score(data[i][:, 1], pred[:, 1]) spec[i] = specificity_score(data[i][:, 1], pred[:, 1]) ppv[i] = precision_score(data[i][:, 1], pred[:, 1]) npv[i] = npv_score(data[i][:, 1], pred[:, 1]) test_consum[i] = consum ind_consum[i] = ind_con batch_consum[i] = consum - ind_con result = {'acc': acc, 'sens': sens, 'spec': spec, 'PPV': ppv, 'NPV': npv, 'test_consum': test_consum, 'ind_consum': ind_consum, 'batch_consum': batch_consum} return pd.DataFrame(result) def matrix_test(subject_array, side_length, typeII_error, typeI_error, sq_repeat=1, ind_repeat=1, seq=True): """ This function provides the matrix testing results for a given subject array. Input: subject_array(Numpy Array): an array contains subject id and subject's condition (1 stands for infection and 0 stands for uninfection) side_length (int): the side length of the matrix testing typeII_error (float): probability of type II error typeI_error (float): probability of type I error sq_repeat (int): the number of parallel testing for the column/row batch testing ind_repeat (int): the number of potential individual testing for the positive crossings seq (boolean): True stands for sequential testing. The test will end when the test result is positive or run up the number of repetition. False stands for simutanlous testing with majority voting. Output: result (Numpy Array): an array contains subjects' id and test results consum (int): the total test consumption individual_con (int): the test consumption for individual testings """ matrix_test_num = len(subject_array) // side_length ** 2 matrix_test_array = subject_array[0:matrix_test_num * side_length ** 2, :] ind_test_array = subject_array[matrix_test_num * side_length ** 2:, :] ind_idx = [] for temp_batch in np.array_split(matrix_test_array, matrix_test_num): temp_batch = temp_batch.reshape(side_length, side_length, 2) temp_row = [] temp_col = [] random_num_row = np.random.uniform(0, 1, sq_repeat) random_num_col = np.random.uniform(0, 1, sq_repeat) for i in range(side_length): if 1 in temp_batch[i, :, 1]: if max(random_num_row) > typeII_error: temp_row.append(temp_batch[i, :, 0]) elif min(random_num_row) < typeI_error: temp_row.append(temp_batch[i, :, 0]) if 1 in temp_batch[:, i, 1]: if max(random_num_col) > typeII_error: temp_col.append(temp_batch[:, i, 0]) elif min(random_num_col) < typeI_error: temp_col.append(temp_batch[:, i, 0]) ind_idx.append(np.intersect1d(temp_row, temp_col)) ind_idx = np.concatenate(ind_idx) ind_idx = ind_idx.astype('int') if len(ind_idx) == 0: neg_array = matrix_test_array else: mask = np.zeros(subject_array.shape[0], dtype=bool) mask[ind_idx] = True mask[matrix_test_num * side_length ** 2:] = True ind_test_array = subject_array[mask, :] neg_array = subject_array[~mask, :] neg_array[:, 1] = 0 ind_test, ind_con = conventional_test(ind_test_array, typeII_error, typeI_error, repeat=ind_repeat, seq=seq) batch_test_num = matrix_test_num * 2 * side_length * sq_repeat result = np.concatenate((neg_array, ind_test)) result = result[result[:, 0].argsort()] return result, batch_test_num + ind_con, ind_con def parallel_batch_testing(subject_array, batch_size, typeII_error, typeI_error, parallel_num, ind_repeat, seq): """ This function provides the parallel batch testing results for a given subject array. Input: subject_array(Numpy Array): an array contains subject id and subject's condition (1 stands for infection and 0 stands for uninfection) batch_size (int): batch size typeII_error (float): probability of type II error typeI_error (float): probability of type I error parallel_num (int): the number of parallel testing for the batch testing ind_repeat (int): the number of potential individual testing for the positive batches seq (boolean): True stands for sequential testing. The test will end when the test result is positive or run up the number of repetition. False stands for simutanlous testing with majority voting. Output: result (Numpy Array): an array contains subjects' id and test results consum (int): the total test consumption individual_con (int): the test consumption for individual testings """ neg_batch = [] pos_batch = [] batch_consum = np.ceil(len(subject_array) / batch_size) * parallel_num for temp_batch in np.array_split(subject_array, np.ceil(len( subject_array) / batch_size)): random_table = np.random.uniform(0, 1, (1, parallel_num)) if 1 in temp_batch[:, 1]: if random_table.max() > typeII_error: pos_batch.append(temp_batch) else: neg_batch.append(temp_batch) elif random_table.min() < typeI_error: pos_batch.append(temp_batch) else: neg_batch.append(temp_batch) neg_batch = np.concatenate(neg_batch) if len(neg_batch) > 0 else np.array([ ]) pos_batch = np.concatenate(pos_batch) if len(pos_batch) > 0 else np.array([ ]) neg_batch[:, 1] = 0 individual_test, individual_con = conventional_test(pos_batch, typeII_error, typeI_error, repeat=ind_repeat, seq=seq) result = np.concatenate((individual_test, neg_batch)) result = result[result[:, 0].argsort()] result = result.astype('int64') return result, batch_consum + individual_con, individual_con def fixed_batch_seq_test(subject_array, stop_rule, p, batch_size, typeII_error, typeI_error, repeat, prob_threshold=0.3, seq=True): """ This function provides the parallel batch testing results for a given subject array. Input: subject_array(Numpy Array): an array contains subject id and subject's condition (1 stands for infection and 0 stands for uninfection) stop_rule (int): the number of positive batches to enter the individual testing phase batch_size (int): batch size typeII_error (float): probability of type II error typeI_error (float): probability of type I error repeat (int): the number of potential individual testing for the positive crossings prob_threshold (float): if the infection rate of a batch is beyond prob_threshold, the subjects on that batch will enter individual testing phase seq (boolean): True stands for sequential testing. The test will end when the test result is positive or run up the number of repetition. False stands for simutanlous testing with majority voting. Output: result (Numpy Array): an array contains subjects' id and test results consum (int): the total test consumption individual_con (int): the test consumption for individual testings """ temp_list = [] neg_list = [] pos_list = [] consum = 0 temp = {'data': subject_array, 'NB_Num': 0, 'PB_Num': 0, 'p': p, 'batch_size': batch_size} temp_list.append(temp) new_list = [] neg_array = [] pos_array = [] while len(temp_list) > 0: for i in temp_list: temp0, temp1, temp_con, p0, p1, n0, n1 = helpfunction(i['data'], i['p'], i['batch_size'], typeII_error, typeI_error) temp0 = {'data': np.random.permutation(temp0), 'NB_Num': i[ 'NB_Num'] + 1, 'PB_Num': i['PB_Num'], 'p': p0, 'batch_size': batch_size} temp1 = {'data': np.random.permutation(temp1), 'NB_Num': i[ 'NB_Num'], 'PB_Num': i['PB_Num'] + 1, 'p': p1, 'batch_size': batch_size} if len(temp0['data']) > 0: if temp0['NB_Num'] >= stop_rule: neg_list.append(temp0) else: new_list.append(temp0) if len(temp1['data']) > 0: if temp1['PB_Num'] >= stop_rule or temp1['p' ] >= prob_threshold: pos_list.append(temp1) else: new_list.append(temp1) consum += temp_con temp_list = new_list new_list = [] for j in neg_list: neg_array.append(j['data']) neg_array = np.concatenate(neg_array) for k in pos_list: pos_array.append(k['data']) pos_array = np.concatenate(pos_array) neg_array[:, 1] = 0 individual_test, individual_con = conventional_test(pos_array, typeII_error, typeI_error, repeat, seq) pos_array = individual_test consum += individual_con result = np.concatenate((pos_array, neg_array)) result = result[result[:, 0].argsort()] result = result.astype('int64') return result, consum, individual_con def name_fun(n): """ input: stopping rule output: finish nodes """ output = [] temp = [''] for i in range(2 * n - 1): temp_cur = [] for j in temp: candidate_pos = j + '+' candidate_neg = j + '-' if str.count(candidate_pos, '+') >= n: output.append(candidate_pos) else: temp_cur.append(candidate_pos) if str.count(candidate_neg, '-') >= n: output.append(candidate_neg) else: temp_cur.append(candidate_neg) temp = temp_cur neg_symbol = [x for x in output if str.count(x, '-') == n] pos_symbol = [x for x in output if str.count(x, '+') == n] return output, neg_symbol, pos_symbol def seq_test_with_node(subject_array, stop_rule, p, batch_size, typeII_error, typeI_error, repeat=1, prob_threshold=1, seq=True, batch_limit=32): """ A function gives the test results to a subject array and the total number of test-kit consumption and the individual testing number given the subject array, the stop rule, the batch size, the probability of type II error, the probability of Type I error, and the number of repeatition, the probability threshold, and setting of sequence testing or not. Input: subject_array(Numpy Array): an array contains subject id and subject's condition (1 stands for infection and 0 stands for uninfection) stop_rule (int): the number of postive batches to enter individual testing p (float): infection rate batch_size (int): batch size typeII_error (float): probability of type II error typeI_error (float): probability of type I error repeat (int): the number of repetition prob_threshold (float): if the infection rate of a batch is beyond prob_threshold, the subjects on that batch will enter individual testing phase seq (boolean): True stands for sequential testing. The test will end when the test result is positive or run up the number of repetition. False stands for simutanlous testing with majority voting. batch_limit (int): Output: result (Numpy Array): an array contains subjects' id and test results consum (int): the total test consumption individual_con (int): the test consumption for individual testings """ temp_list = [] neg_list = [] pos_list = [] batch_num_list = [] consum = 0 temp = {'data': subject_array, 'NB_Num': 0, 'PB_Num': 0, 'p': p, 'batch_size': batch_size, 'node': ''} temp_list.append(temp) new_list = [] neg_array = [] neg_node = [] pos_node = [] pos_array = [] while len(temp_list) > 0: for i in temp_list: temp0, temp1, temp_con, p0, p1, n0, n1 = helpfunction(i['data'], i['p'], i['batch_size'], typeII_error, typeI_error, batch_limit=batch_limit) temp0 = {'data': temp0, 'NB_Num': i['NB_Num'] + 1, 'PB_Num': i[ 'PB_Num'], 'p': p0, 'batch_size': n0, 'node': i['node'] + '-'} temp1 = {'data': temp1, 'NB_Num': i['NB_Num'], 'PB_Num': i[ 'PB_Num'] + 1, 'p': p1, 'batch_size': n1, 'node': i['node'] + '+'} if len(temp0['data']) > 0: if temp0['NB_Num'] >= stop_rule: neg_list.append(temp0) else: new_list.append(temp0) if len(temp1['data']) > 0: if temp1['PB_Num'] >= stop_rule or temp1['p' ] >= prob_threshold: pos_list.append(temp1) else: new_list.append(temp1) consum += temp_con batch_num_list.append(consum) temp_list = new_list new_list = [] for j in neg_list: neg_array.append(j['data']) temp = [[x, j['node']] for x in j['data'][:, 0]] neg_node.append(temp) neg_array = np.concatenate(neg_array) for k in pos_list: pos_array.append(k['data']) temp = [[x, k['node']] for x in k['data'][:, 0]] pos_node.append(temp) pos_array = np.concatenate(pos_array) neg_array[:, 1] = 0 individual_test, individual_con = conventional_test(pos_array, typeII_error, typeI_error, repeat, seq) pos_array = individual_test consum += individual_con result = np.concatenate((pos_array, neg_array)) pos_node.extend(neg_node) node = pos_node node = sum(node, []) node.sort() node = [x[1] for x in node] result = result[result[:, 0].argsort()] result = result.astype('int64') return result, consum, individual_con, node, batch_num_list
import numpy as np import pandas as pd from sklearn.metrics import confusion_matrix from sklearn.metrics import classification_report from sklearn.metrics import precision_score, recall_score, f1_score from scipy.optimize import fsolve import numba from numba import njit,jit # @jit(parallel = True) def conventional_test(subject_array, typeII_error, typeI_error, repeat = 1, seq = True): """ A function gives the test results to a subject array given the probability of type II error, the probability of Type I error, and the number of repeatition, and setting of sequence testing or not. Input: subject_array(Numpy Array): an array contains subject id and subject's condition (1 stands for infection and 0 stands for uninfection) typeII_error (float): probability of type II error typeI_error (float): probability of type I error repeat (int): the number of repetition seq (boolean): True stands for sequential testing. The test will end when the test result is positive or run up the number of repetition. False stands for simutanlous testing with majority voting. Output: test_result (Numpy Array): an array contains subjects' id and test results consum (int): the total test consumption """ # Sequential Testing if seq == True: consum = 0 test_result = np.zeros(subject_array.shape, dtype = int) random_table = np.random.uniform(0, 1, (subject_array.shape[0], repeat)) for i in range(len(subject_array)): temp = 0 j = 0 subject = subject_array[i,1] while j < repeat and temp == 0: random_num = random_table[i, j] consum += 1 if subject == 1: temp = 1 if random_num > typeII_error else 0 else: temp = 1 if random_num < typeI_error else 0 j += 1 test_result[i,0] = subject_array[i,0] test_result[i,1] = temp return test_result, consum # Simultanous Testing else: test_result = np.zeros(subject_array.shape, dtype = int) random_table = np.random.uniform(0, 1, (subject_array.shape[0], repeat)) for i in range(len(subject_array)): temp = 0 for j in range(repeat): temp_random = random_table[i, j] if subject_array[i, 1] == 1: temp_1 = 1 if temp_random > typeII_error else 0 elif subject_array[i, 1] == 0: temp_1 = 1 if temp_random < typeI_error else 0 temp += temp_1 temp = 1 if temp >= repeat/2 else 0 test_result[i,0] = subject_array[i,0] test_result[i,1] = temp return test_result, len(subject_array)*repeat @njit(parallel = True) def parallel_test(subject_array, typeII_error, typeI_error, num): test_result = np.zeros(subject_array.shape, dtype = int) random_table = np.random.uniform(0, 1, (subject_array.shape[0], num)) for i in range(len(subject_array)): subject = subject_array[i, 1] if subject == 1: temp = 1 if max(random_table[i,:]) > typeII_error else 0 elif subject == 0: temp = 1 if min(random_table[i,:]) < typeI_error else 0 test_result[i,0] = subject_array[i,0] test_result[i,1] = temp return test_result,len(subject_array)*num,len(subject_array)*num def infection_rate_on_negative_batch(p,batch_size,typeII_error, typeI_error): """ Given infection rate, batch size, prob of type II error and prob of type I error, this function gives the infection rate on the negative batch. Input: p (float): the infection rate batch_size (int): the batch size typeII_error (float): the prob of type II error typeI_error (float): the prob of type I error Output: (float): the infection rate on the negative batch """ q = 1-p r = typeII_error * (1 - q ** batch_size)/((1 - typeI_error) * q ** batch_size + typeII_error *(1 - q**batch_size)) return p*r/(1-q**batch_size) def infection_rate_on_positive_batch(p, batch_size, typeII_error, typeI_error): """ Given infection rate, batch size, prob of type II error and prob of type I error, this function gives the infection rate on the positive batch. Input: p (float): the infection rate batch_size (int): the batch size typeII_error (float): the prob of type II error typeI_error (float): the prob of type I error Output: (float): the infection rate on the positive batch """ q = 1-p r = (1 - typeII_error) * (1 - q ** batch_size)/(typeI_error * q ** batch_size + (1 - typeII_error) * (1 - q **batch_size)) return p*r/(1 - q** batch_size) def one_batch_test_solver(prevalence_rate,typeII_error, typeI_error,n_initial_guess = 2): """ A function gives (float) the best batch size for one batch test given the infection rate Inputs: prevalence_rate(float): infection rate typeII_error(float): the prob of type II error typeI_error(float): the prob of type I error n_initial_guess(float): the initial guess Output: (float): the optimal batch size """ q = 1- prevalence_rate # To consistent with the notation of our document func = lambda n : n*q**(n/2) - (-(1-typeII_error - typeI_error)*np.log(q))**(-1/2) # print(func(n_initial_guess)) n_solution = fsolve(func, n_initial_guess) return float(n_solution) def one_batch_test_int_solver(prevalence_rate,typeII_error, typeI_error,batch_limit,n_initial_guess = 2): """ A function gives (int) the best batch size for one batch test given the infection rate Inputs: prevalence_rate(float): infection rate n_initial_guess(float): the initial guess typeII_error(float): the prob of type II error typeI_error(float): the prob of type I error n_initial_guess: batch_limit (int): the upper limit of batch size Output: (int): the optimal batch size """ sol_float = one_batch_test_solver(prevalence_rate,typeII_error, typeI_error, n_initial_guess) floor, ceil = np.floor(sol_float), np.ceil(sol_float) func = lambda batch_size: 1/batch_size + 1 - typeII_error -(1 - typeII_error - typeI_error)*(1-prevalence_rate)**batch_size if func(floor) < func(ceil): temp = int(floor) else: temp = int(ceil) if temp <= batch_limit: return temp else: return int(batch_limit) def neg_pos_batch_split(subject_array, batch_size, typeII_error, typeI_error): """ A function gives a list of sujects on the negative batch(es), a list of subjects on the postive batch(es) and the test-kit consumption given the probability of type II error, the probability of Type I error. Input: subject_array (Numpy Array): an array contains subject id and subject's condition (1 stands for infection and 0 stands for uninfection) batch_size (int): batch size typeII_error (float): probability of type II error typeI_error (float): probability of type I error Output: neg_batch (Numpy Array): an array of subjects on the negative batch(es) pos_batch (Numpy Array): an array of subjects on the postive batch(es) test_consum (int): the number of test-kit consumptions """ neg_batch = [] pos_batch = [] test_consum = np.ceil(len(subject_array)/batch_size) random_table = np.random.uniform(0, 1, int(test_consum)) i = 0 for temp_batch in np.array_split(subject_array, test_consum): if 1 in (temp_batch[:,1]): if random_table[i] > typeII_error: pos_batch.append(temp_batch) else: neg_batch.append(temp_batch) else: if random_table[i] > typeI_error: neg_batch.append(temp_batch) else: pos_batch.append(temp_batch) i += 1 neg_batch = np.concatenate(neg_batch) if len(neg_batch) > 0 else np.array([]) pos_batch = np.concatenate(pos_batch) if len(pos_batch) > 0 else np.array([]) return (neg_batch, pos_batch, test_consum) def helpfunction(subject_array, p, batch_size ,typeII_error, typeI_error, batch_limit): """ The helpfunction is a handy function to give the list of subjects on the negative batch(es), the list of subjects on the postive batch(es), the test-kit consumption, the infection rate on the negative batches, the infection rate on the positive batches, the optimal batch size for negative batches and the optimal batch size for positive batches. Input: subject_array (Numpy Array): an array contains subject id and subject's condition (1 stands for infection and 0 stands for uninfection) p (float): Infection rate batch_size (int): batch size typeII_error (float): probability of type II error typeI_error (float): probability of type I error batch_limit (int): batch size upper limit Output: temp0 (Numpy Array): an array of subjects on the negative batch(es) temp1 (Numpy Array): an array of subjects on the postive batch(es) temp_con (int): the number of test-kit consumptions p0 (float): the infection rate on the negative batches p1 (float): the infection rate on the positive batches n0 (float): the optimal batch size for the negative batches n1 (float): the optimal batch size for the positive batches """ batch_size = min(batch_size, batch_limit) p0 = infection_rate_on_negative_batch(p, batch_size, typeII_error, typeI_error) p1 = infection_rate_on_positive_batch(p, batch_size, typeII_error, typeI_error) n0= one_batch_test_int_solver(p0, typeII_error, typeI_error, batch_limit) n1 = one_batch_test_int_solver(p1, typeII_error, typeI_error, batch_limit) if subject_array == np.array([]): return (np.array([]), np.array([]), p0, p1, n0, n1) temp0, temp1, temp_con = neg_pos_batch_split(subject_array,batch_size,typeII_error, typeI_error) return(temp0, temp1, temp_con, p0, p1, n0, n1) def seq_test(subject_array,stop_rule,p, batch_size, typeII_error, typeI_error, repeat = 1, prob_threshold = 1, seq = True, batch_limit = 32): """ A function gives the test results to a subject array and the total number of test-kit consumption and the individual testing number given the subject array, the stop rule, the batch size, the probability of type II error, the probability of Type I error, and the number of repeatition, the probability threshold, and setting of sequence testing or not. Input: subject_array(Numpy Array): an array contains subject id and subject's condition (1 stands for infection and 0 stands for uninfection) stop_rule (int): the number of postive batches to enter individual testing p (float): infection rate batch_size (int): batch size typeII_error (float): probability of type II error typeI_error (float): probability of type I error repeat (int): the number of repetition prob_threshold (float): if the infection rate of a batch is beyond prob_threshold, the subjects on that batch will enter individual testing phase seq (boolean): True stands for sequential testing. The test will end when the test result is positive or run up the number of repetition. False stands for simutanlous testing with majority voting. batch_limit (int): Output: result (Numpy Array): an array contains subjects' id and test results consum (int): the total test consumption individual_con (int): the test consumption for individual testings """ temp_list = [] neg_list = [] #renamed to negativeInfoList pos_list = [] #renamed to positiveInfoList consum = 0 temp = {'data': subject_array, 'NB_Num': 0, 'PB_Num': 0, 'p': p, 'batch_size': batch_size} temp_list.append(temp) new_list = [] neg_array = [] #renamed to negativeBatches pos_array = [] #renamed to positiveBatches while len(temp_list) > 0: for i in temp_list: temp0, temp1, temp_con, p0, p1, n0, n1 = helpfunction(i['data'], i['p'], i['batch_size'], typeII_error, typeI_error, batch_limit = batch_limit) temp0 = {'data': temp0, 'NB_Num': i['NB_Num'] + 1, 'PB_Num': i['PB_Num'], 'p': p0, 'batch_size': n0} temp1 = {'data': temp1, 'NB_Num': i['NB_Num'], 'PB_Num': i['PB_Num'] + 1, 'p': p1, 'batch_size': n1} if len(temp0['data']) > 0: if temp0['NB_Num'] >= stop_rule: neg_list.append(temp0) else: new_list.append(temp0) if len(temp1['data'])>0: if temp1['PB_Num'] >= stop_rule or temp1['p']>=prob_threshold: pos_list.append(temp1) else: new_list.append(temp1) consum += temp_con temp_list = new_list new_list = [] for j in neg_list: neg_array.append(j['data']) neg_array = np.concatenate(neg_array) for k in pos_list: pos_array.append(k['data']) pos_array = np.concatenate(pos_array) neg_array[:,1] = 0 individual_test, individual_con = conventional_test(pos_array, typeII_error, typeI_error, repeat, seq) pos_array = individual_test consum += individual_con result = np.concatenate((pos_array, neg_array)) result = result[result[:,0].argsort()] result = result.astype('int64') return (result, consum, individual_con) def npv_score(y_true, y_pred): """ A function provides npv given the prediction and the truth """ tn, _, fn, _ = confusion_matrix(y_true = y_true, y_pred = y_pred).ravel() return tn/(tn + fn) def specificity_score(y_true, y_pred): """ A function provides specificty given the prediction and the truth """ tn, fp, _, _ = confusion_matrix(y_true = y_true, y_pred = y_pred).ravel() return tn/(tn + fp) @jit(parallel = True) def data_gen(size, p): """ data_gen provides a faster way to generate a random population with infection rate p. Input: size (int): the size of population p (float): the infection rate Output: test_array (array): the first column is for id and the second column is the condition, where 1 stands for infection and 0 stands for uninfection """ #print(np.random.get_state()[1][0]) random_table = np.random.binomial(size = size, p = p, n = 1) test_array = np.zeros((size, 2), dtype = int) for i in range(size): test_array[i,0] = i test_array[i,1] = random_table[i] return test_array def test_result(data, seq_test, **kwargs): """ a helper function provides convenient results for a given test method with its **kwargs Input: data (array or list of arrays) seq_test (test_method object): could be seq_test, matrix_test and other test_method objects Output: result (DataFrame): a dataframe contains important evaluation metrics for the test method """ if isinstance(data, list) == False: pred,consum, ind_con = seq_test(data, **kwargs) result = {'acc': np.mean(pred[:,1] == data[:,1]), 'sens': recall_score(data[:,1], pred[:,1]), 'spec': specificity_score(data[:,1], pred[:,1]), 'PPV': precision_score(data[:, 1], pred[:,1]), 'NPV': npv_score(data[:, 1], pred[:,1]), 'test_consum': consum, 'ind_consum': ind_con, 'batch_consum': consum - ind_con} return result else: length = len(data) acc = np.zeros(length) sens = np.zeros(length) spec = np.zeros(length) ppv = np.zeros(length) npv = np.zeros(length) test_consum = np.zeros(length) ind_consum = np.zeros(length) batch_consum = np.zeros(length) for i in range(length): pred,consum, ind_con = seq_test(data[i], **kwargs) acc[i] = np.mean(pred[:,1] == data[i][:,1]) sens[i] = recall_score(data[i][:,1], pred[:,1]) spec[i] = specificity_score(data[i][:,1], pred[:,1]) ppv[i] = precision_score(data[i][:,1], pred[:,1]) npv[i] = npv_score(data[i][:,1], pred[:,1]) test_consum[i] = consum ind_consum[i] = ind_con batch_consum[i] = consum-ind_con result = {'acc': acc, 'sens': sens, 'spec': spec, 'PPV': ppv, 'NPV': npv, 'test_consum': test_consum, 'ind_consum': ind_consum, 'batch_consum': batch_consum} return pd.DataFrame(result) def matrix_test(subject_array, side_length, typeII_error, typeI_error, sq_repeat = 1 ,ind_repeat = 1, seq = True): """ This function provides the matrix testing results for a given subject array. Input: subject_array(Numpy Array): an array contains subject id and subject's condition (1 stands for infection and 0 stands for uninfection) side_length (int): the side length of the matrix testing typeII_error (float): probability of type II error typeI_error (float): probability of type I error sq_repeat (int): the number of parallel testing for the column/row batch testing ind_repeat (int): the number of potential individual testing for the positive crossings seq (boolean): True stands for sequential testing. The test will end when the test result is positive or run up the number of repetition. False stands for simutanlous testing with majority voting. Output: result (Numpy Array): an array contains subjects' id and test results consum (int): the total test consumption individual_con (int): the test consumption for individual testings """ matrix_test_num = len(subject_array)//(side_length**2) matrix_test_array = subject_array[0:matrix_test_num*side_length**2, :] ind_test_array = subject_array[matrix_test_num*side_length**2:, :] ind_idx = [] for temp_batch in np.array_split(matrix_test_array, matrix_test_num): temp_batch = temp_batch.reshape(side_length, side_length, 2) temp_row = [] temp_col = [] random_num_row = np.random.uniform(0, 1, sq_repeat) random_num_col = np.random.uniform(0, 1, sq_repeat) for i in range(side_length): if 1 in (temp_batch[i,:,1]): if max(random_num_row) > typeII_error: temp_row.append(temp_batch[i,:,0]) else: if min(random_num_row) < typeI_error: temp_row.append(temp_batch[i, :, 0]) if 1 in (temp_batch[:,i,1]): if max(random_num_col) > typeII_error: temp_col.append(temp_batch[:,i,0]) else: if min(random_num_col) < typeI_error: temp_col.append(temp_batch[:, i, 0]) ind_idx.append(np.intersect1d(temp_row, temp_col)) ind_idx = np.concatenate(ind_idx) ind_idx = ind_idx.astype('int') if len(ind_idx) == 0: neg_array = matrix_test_array else: mask = np.zeros(subject_array.shape[0], dtype = bool) mask[ind_idx] = True mask[matrix_test_num*side_length**2:] = True ind_test_array = subject_array[mask,:] neg_array = subject_array[~mask, :] neg_array[:, 1] = 0 ind_test, ind_con = conventional_test(ind_test_array, typeII_error, typeI_error, repeat = ind_repeat, seq = seq) batch_test_num = matrix_test_num * 2 * side_length * sq_repeat result = np.concatenate((neg_array, ind_test)) result = result[result[:, 0].argsort()] return (result, batch_test_num + ind_con, ind_con) def parallel_batch_testing(subject_array, batch_size, typeII_error, typeI_error, parallel_num, ind_repeat, seq): """ This function provides the parallel batch testing results for a given subject array. Input: subject_array(Numpy Array): an array contains subject id and subject's condition (1 stands for infection and 0 stands for uninfection) batch_size (int): batch size typeII_error (float): probability of type II error typeI_error (float): probability of type I error parallel_num (int): the number of parallel testing for the batch testing ind_repeat (int): the number of potential individual testing for the positive batches seq (boolean): True stands for sequential testing. The test will end when the test result is positive or run up the number of repetition. False stands for simutanlous testing with majority voting. Output: result (Numpy Array): an array contains subjects' id and test results consum (int): the total test consumption individual_con (int): the test consumption for individual testings """ neg_batch = [] pos_batch = [] batch_consum = np.ceil(len(subject_array)/batch_size)* parallel_num for temp_batch in np.array_split(subject_array, np.ceil(len(subject_array)/batch_size)): random_table = np.random.uniform(0, 1, (1, parallel_num)) if 1 in (temp_batch[:, 1]): if random_table.max() > typeII_error: pos_batch.append(temp_batch) else: neg_batch.append(temp_batch) else: if random_table.min() < typeI_error: pos_batch.append(temp_batch) else: neg_batch.append(temp_batch) neg_batch = np.concatenate(neg_batch) if len(neg_batch) > 0 else np.array([]) pos_batch = np.concatenate(pos_batch) if len(pos_batch) > 0 else np.array([]) neg_batch[:, 1] = 0 individual_test, individual_con = conventional_test(pos_batch, typeII_error, typeI_error, repeat = ind_repeat, seq = seq) result = np.concatenate((individual_test, neg_batch)) result = result[result[:,0].argsort()] result = result.astype('int64') return (result, batch_consum+individual_con, individual_con) def fixed_batch_seq_test(subject_array,stop_rule, p, batch_size, typeII_error, typeI_error, repeat, prob_threshold = 0.3, seq = True): """ This function provides the parallel batch testing results for a given subject array. Input: subject_array(Numpy Array): an array contains subject id and subject's condition (1 stands for infection and 0 stands for uninfection) stop_rule (int): the number of positive batches to enter the individual testing phase batch_size (int): batch size typeII_error (float): probability of type II error typeI_error (float): probability of type I error repeat (int): the number of potential individual testing for the positive crossings prob_threshold (float): if the infection rate of a batch is beyond prob_threshold, the subjects on that batch will enter individual testing phase seq (boolean): True stands for sequential testing. The test will end when the test result is positive or run up the number of repetition. False stands for simutanlous testing with majority voting. Output: result (Numpy Array): an array contains subjects' id and test results consum (int): the total test consumption individual_con (int): the test consumption for individual testings """ temp_list = [] neg_list = [] pos_list = [] consum = 0 temp = {'data': subject_array, 'NB_Num': 0, 'PB_Num': 0, 'p': p, 'batch_size': batch_size} temp_list.append(temp) new_list = [] neg_array = [] pos_array = [] while len(temp_list) > 0: for i in temp_list: temp0, temp1, temp_con, p0, p1, n0, n1 = helpfunction(i['data'], i['p'], i['batch_size'], typeII_error, typeI_error) temp0 = {'data': np.random.permutation(temp0), 'NB_Num': i['NB_Num'] + 1, 'PB_Num': i['PB_Num'], 'p': p0, 'batch_size': batch_size} temp1 = {'data': np.random.permutation(temp1), 'NB_Num': i['NB_Num'], 'PB_Num': i['PB_Num'] + 1, 'p': p1, 'batch_size': batch_size} if len(temp0['data']) > 0: if temp0['NB_Num'] >= stop_rule: neg_list.append(temp0) else: new_list.append(temp0) if len(temp1['data'])>0: if temp1['PB_Num'] >= stop_rule or temp1['p']>=prob_threshold: pos_list.append(temp1) else: new_list.append(temp1) consum += temp_con temp_list = new_list new_list = [] for j in neg_list: neg_array.append(j['data']) neg_array = np.concatenate(neg_array) for k in pos_list: pos_array.append(k['data']) pos_array = np.concatenate(pos_array) neg_array[:,1] = 0 individual_test, individual_con = conventional_test(pos_array, typeII_error, typeI_error, repeat, seq) pos_array = individual_test consum += individual_con result = np.concatenate((pos_array, neg_array)) result = result[result[:,0].argsort()] result = result.astype('int64') return (result, consum, individual_con) def name_fun(n): """ input: stopping rule output: finish nodes """ output = [] temp = [''] for i in range(2*n-1): temp_cur = [] for j in temp: candidate_pos = j + '+' candidate_neg = j + '-' if str.count(candidate_pos, '+') >= n: output.append(candidate_pos) else: temp_cur.append(candidate_pos) if str.count(candidate_neg, '-') >= n: output.append(candidate_neg) else: temp_cur.append(candidate_neg) temp = temp_cur neg_symbol = [x for x in output if str.count(x, '-') == n] pos_symbol = [x for x in output if str.count(x, '+') == n] return output, neg_symbol, pos_symbol def seq_test_with_node(subject_array,stop_rule,p, batch_size, typeII_error, typeI_error, repeat = 1, prob_threshold = 1, seq = True, batch_limit = 32): """ A function gives the test results to a subject array and the total number of test-kit consumption and the individual testing number given the subject array, the stop rule, the batch size, the probability of type II error, the probability of Type I error, and the number of repeatition, the probability threshold, and setting of sequence testing or not. Input: subject_array(Numpy Array): an array contains subject id and subject's condition (1 stands for infection and 0 stands for uninfection) stop_rule (int): the number of postive batches to enter individual testing p (float): infection rate batch_size (int): batch size typeII_error (float): probability of type II error typeI_error (float): probability of type I error repeat (int): the number of repetition prob_threshold (float): if the infection rate of a batch is beyond prob_threshold, the subjects on that batch will enter individual testing phase seq (boolean): True stands for sequential testing. The test will end when the test result is positive or run up the number of repetition. False stands for simutanlous testing with majority voting. batch_limit (int): Output: result (Numpy Array): an array contains subjects' id and test results consum (int): the total test consumption individual_con (int): the test consumption for individual testings """ temp_list = [] neg_list = [] pos_list = [] batch_num_list = [] consum = 0 temp = {'data': subject_array, 'NB_Num': 0, 'PB_Num': 0, 'p': p, 'batch_size': batch_size, 'node': ''} temp_list.append(temp) new_list = [] neg_array = [] neg_node = [] pos_node = [] pos_array = [] while len(temp_list) > 0: for i in temp_list: temp0, temp1, temp_con, p0, p1, n0, n1 = helpfunction(i['data'], i['p'], i['batch_size'], typeII_error, typeI_error, batch_limit = batch_limit) temp0 = {'data': temp0, 'NB_Num': i['NB_Num'] + 1, 'PB_Num': i['PB_Num'], 'p': p0, 'batch_size': n0, 'node': i['node'] + '-'} temp1 = {'data': temp1, 'NB_Num': i['NB_Num'], 'PB_Num': i['PB_Num'] + 1, 'p': p1, 'batch_size': n1, 'node': i['node'] + '+'} if len(temp0['data']) > 0: if temp0['NB_Num'] >= stop_rule: neg_list.append(temp0) else: new_list.append(temp0) if len(temp1['data'])>0: if temp1['PB_Num'] >= stop_rule or temp1['p']>=prob_threshold: pos_list.append(temp1) else: new_list.append(temp1) consum += temp_con batch_num_list.append(consum) temp_list = new_list new_list = [] for j in neg_list: neg_array.append(j['data']) temp = [[x, j['node']] for x in j['data'][:,0]] neg_node.append(temp) neg_array = np.concatenate(neg_array) #print(neg_array) #print(neg_node) #neg_node = np.concatenate(neg_node) for k in pos_list: pos_array.append(k['data']) #pos_node.append(k['node']) #pos_node.append(np.column_stack((k['data'][:,0],np.repeat(k['node'], len(k['data']))))) temp = [[x, k['node']] for x in k['data'][:,0]] pos_node.append(temp) pos_array = np.concatenate(pos_array) #pos_node = np.concatenate(pos_node) neg_array[:,1] = 0 individual_test, individual_con = conventional_test(pos_array, typeII_error, typeI_error, repeat, seq) pos_array = individual_test consum += individual_con result = np.concatenate((pos_array, neg_array)) #node = np.concatenate((pos_node, neg_node)) pos_node.extend(neg_node) node = pos_node node = sum(node, []) node.sort() node = [x[1] for x in node] #node = node[node[:,0].argsort()] result = result[result[:,0].argsort()] result = result.astype('int64') return (result, consum, individual_con, node, batch_num_list)
[ 11, 12, 17, 18, 20 ]
282
9bc13c608c079cbf23ed04f29edd1fd836214cde
<mask token> class CommentViewSet(viewsets.GenericViewSet, mixins.ListModelMixin, mixins .RetrieveModelMixin): <mask token> def get_serializer_class(self): if self.action == 'retrieve': if self.get_object().level < 3: return CommentSerializer return AllCommentSerializer
<mask token> class CommentViewSet(viewsets.GenericViewSet, mixins.ListModelMixin, mixins .RetrieveModelMixin): queryset = Comment.objects.all() def get_serializer_class(self): if self.action == 'retrieve': if self.get_object().level < 3: return CommentSerializer return AllCommentSerializer
<mask token> class PostViewSet(viewsets.ModelViewSet): <mask token> <mask token> class CommentViewSet(viewsets.GenericViewSet, mixins.ListModelMixin, mixins .RetrieveModelMixin): queryset = Comment.objects.all() def get_serializer_class(self): if self.action == 'retrieve': if self.get_object().level < 3: return CommentSerializer return AllCommentSerializer
from rest_framework import viewsets, mixins from .models import Comment, Post from .serializer import CommentSerializer, PostSerializer, AllCommentSerializer class PostViewSet(viewsets.ModelViewSet): serializer_class = PostSerializer queryset = Post.objects.all() class CommentViewSet(viewsets.GenericViewSet, mixins.ListModelMixin, mixins .RetrieveModelMixin): queryset = Comment.objects.all() def get_serializer_class(self): if self.action == 'retrieve': if self.get_object().level < 3: return CommentSerializer return AllCommentSerializer
from rest_framework import viewsets, mixins from .models import Comment, Post from .serializer import CommentSerializer, PostSerializer, AllCommentSerializer class PostViewSet(viewsets.ModelViewSet): serializer_class = PostSerializer queryset = Post.objects.all() class CommentViewSet(viewsets.GenericViewSet, mixins.ListModelMixin, mixins.RetrieveModelMixin): queryset = Comment.objects.all() def get_serializer_class(self): if self.action == 'retrieve': if self.get_object().level < 3: return CommentSerializer return AllCommentSerializer
[ 2, 3, 4, 6, 7 ]
283
b11e2837d3ba9c14770b8039186a2175adc41ea1
<mask token> def http_server(file: str=None, host: str='localhost', port: int=5050 ) ->CanvasServer: """Creates a new HTTP server for displaying the network, using WebSockets to transmit data. The server will only start once its :meth:`~server.CanvasServer.start` method is called. After the server has started, the network can be viewed by opening a browser and navigating to the address ``http://localhost:5050/`` (change the port as necessary). :file: (Optional) The path to the HTML file which the server should display, relative to the current runtime directory. If unspecified, the default HTML file will be used. When creating a custom HTML interface, use the default file as a guide. :type file: str :port: (Optional) The port on which the server should start, defaulting to to 5050. Note that the next port (by default 5051) will also be used to transmit data through WebSockets. :type port: int """ return CanvasServer(file, host, port) <mask token>
<mask token> def http_server(file: str=None, host: str='localhost', port: int=5050 ) ->CanvasServer: """Creates a new HTTP server for displaying the network, using WebSockets to transmit data. The server will only start once its :meth:`~server.CanvasServer.start` method is called. After the server has started, the network can be viewed by opening a browser and navigating to the address ``http://localhost:5050/`` (change the port as necessary). :file: (Optional) The path to the HTML file which the server should display, relative to the current runtime directory. If unspecified, the default HTML file will be used. When creating a custom HTML interface, use the default file as a guide. :type file: str :port: (Optional) The port on which the server should start, defaulting to to 5050. Note that the next port (by default 5051) will also be used to transmit data through WebSockets. :type port: int """ return CanvasServer(file, host, port) def jupyter_canvas(buttons: bool=False) ->JupyterCanvas: """Creates a new :class:`~api.Canvas` which will dispatch and receive events through a Jupyter widget, and which can be displayed using the IPython ``display`` function. By default, the canvas size is (400, 250), and requires the ``ctrl``/``cmd`` to be held down while zooming.""" if HAS_JUPYTER: return create_jupyter_canvas(buttons=buttons) else: raise Exception('Jupyter is not installed')
<mask token> try: from .jupyter import JupyterCanvas, create_jupyter_canvas HAS_JUPYTER = True except: HAS_JUPYTER = False JupyterCanvas = None def http_server(file: str=None, host: str='localhost', port: int=5050 ) ->CanvasServer: """Creates a new HTTP server for displaying the network, using WebSockets to transmit data. The server will only start once its :meth:`~server.CanvasServer.start` method is called. After the server has started, the network can be viewed by opening a browser and navigating to the address ``http://localhost:5050/`` (change the port as necessary). :file: (Optional) The path to the HTML file which the server should display, relative to the current runtime directory. If unspecified, the default HTML file will be used. When creating a custom HTML interface, use the default file as a guide. :type file: str :port: (Optional) The port on which the server should start, defaulting to to 5050. Note that the next port (by default 5051) will also be used to transmit data through WebSockets. :type port: int """ return CanvasServer(file, host, port) def jupyter_canvas(buttons: bool=False) ->JupyterCanvas: """Creates a new :class:`~api.Canvas` which will dispatch and receive events through a Jupyter widget, and which can be displayed using the IPython ``display`` function. By default, the canvas size is (400, 250), and requires the ``ctrl``/``cmd`` to be held down while zooming.""" if HAS_JUPYTER: return create_jupyter_canvas(buttons=buttons) else: raise Exception('Jupyter is not installed')
from .server import CanvasServer try: from .jupyter import JupyterCanvas, create_jupyter_canvas HAS_JUPYTER = True except: HAS_JUPYTER = False JupyterCanvas = None def http_server(file: str=None, host: str='localhost', port: int=5050 ) ->CanvasServer: """Creates a new HTTP server for displaying the network, using WebSockets to transmit data. The server will only start once its :meth:`~server.CanvasServer.start` method is called. After the server has started, the network can be viewed by opening a browser and navigating to the address ``http://localhost:5050/`` (change the port as necessary). :file: (Optional) The path to the HTML file which the server should display, relative to the current runtime directory. If unspecified, the default HTML file will be used. When creating a custom HTML interface, use the default file as a guide. :type file: str :port: (Optional) The port on which the server should start, defaulting to to 5050. Note that the next port (by default 5051) will also be used to transmit data through WebSockets. :type port: int """ return CanvasServer(file, host, port) def jupyter_canvas(buttons: bool=False) ->JupyterCanvas: """Creates a new :class:`~api.Canvas` which will dispatch and receive events through a Jupyter widget, and which can be displayed using the IPython ``display`` function. By default, the canvas size is (400, 250), and requires the ``ctrl``/``cmd`` to be held down while zooming.""" if HAS_JUPYTER: return create_jupyter_canvas(buttons=buttons) else: raise Exception('Jupyter is not installed')
from .server import CanvasServer try: from .jupyter import JupyterCanvas, create_jupyter_canvas HAS_JUPYTER = True except: HAS_JUPYTER = False JupyterCanvas = None # type: ignore def http_server( file: str = None, host: str = "localhost", port: int = 5050 ) -> CanvasServer: """Creates a new HTTP server for displaying the network, using WebSockets to transmit data. The server will only start once its :meth:`~server.CanvasServer.start` method is called. After the server has started, the network can be viewed by opening a browser and navigating to the address ``http://localhost:5050/`` (change the port as necessary). :file: (Optional) The path to the HTML file which the server should display, relative to the current runtime directory. If unspecified, the default HTML file will be used. When creating a custom HTML interface, use the default file as a guide. :type file: str :port: (Optional) The port on which the server should start, defaulting to to 5050. Note that the next port (by default 5051) will also be used to transmit data through WebSockets. :type port: int """ return CanvasServer(file, host, port) def jupyter_canvas(buttons: bool = False) -> JupyterCanvas: """Creates a new :class:`~api.Canvas` which will dispatch and receive events through a Jupyter widget, and which can be displayed using the IPython ``display`` function. By default, the canvas size is (400, 250), and requires the ``ctrl``/``cmd`` to be held down while zooming.""" if HAS_JUPYTER: return create_jupyter_canvas(buttons=buttons) else: raise Exception("Jupyter is not installed")
[ 1, 2, 3, 4, 5 ]
284
2da7892722afde5a6f87e3bd6d5763c895ac96c9
<mask token> class Lang: def __init__(self): super(Lang, self).__init__() self.word2index = {} self.word2count = {} self.index2word = {} self.n_words = 0 def index_words(self, sentence): for word in sentence: self.index_word(word) def index_word(self, word): if word not in self.word2index: self.word2index[word] = self.n_words self.word2count[word] = 1 self.index2word[self.n_words] = word self.n_words += 1 else: self.word2count[word] += 1 <mask token>
<mask token> class Lang: def __init__(self): super(Lang, self).__init__() self.word2index = {} self.word2count = {} self.index2word = {} self.n_words = 0 def index_words(self, sentence): for word in sentence: self.index_word(word) def index_word(self, word): if word not in self.word2index: self.word2index[word] = self.n_words self.word2count[word] = 1 self.index2word[self.n_words] = word self.n_words += 1 else: self.word2count[word] += 1 def gen_embeddings(vocab, file, emb_size, emb_dim): """ Generate an initial embedding matrix for word_dict. If an embedding file is not given or a word is not in the embedding file, a randomly initialized vector will be used. """ embeddings = np.zeros((vocab.n_words, emb_size)) print('Embeddings: %d x %d' % (vocab.n_words, emb_size)) if file is not None: print('Loading embedding file: %s' % file) pre_trained = 0 for line in open(file).readlines(): sp = line.split() if len(sp) == emb_dim + 1: if sp[0] in vocab.word2index: pre_trained += 1 embeddings[vocab.word2index[sp[0]]] = [float(x) for x in sp[1:]] else: print(sp[0]) print('Pre-trained: %d (%.2f%%)' % (pre_trained, pre_trained * 100.0 / vocab.n_words)) return embeddings def process_raw_abstracts(vocab): with open(raw_save_path, 'r', encoding='utf8') as f: for line in tqdm(f, total=13304586): tokens = nltk.tokenize.word_tokenize(line) tokens = [token for token in tokens if not token in nltk_stopwords] vocab.index_words(tokens) <mask token> def check_graph(G): total_nodes = len(G.nodes) no_emb_nodes = 0 nodes_to_delete = [] for node_str in G.nodes: try: emb = G.node[node_str]['emb'] except: no_emb_nodes += 1 nodes_to_delete.append(node_str) print('%d Nodes and %d missing nodes in G ' % (total_nodes, no_emb_nodes)) G.remove_nodes_from(nodes_to_delete) return G def process_line(G, line, vocab=None): try: fos = data['fos'] abstract = data['indexed_abstract'] paper_id = data['id'] references_id = data['references'] text = list(abstract['InvertedIndex'].keys()) text = ' '.join(text) if args.process_raw: with open(raw_save_path, 'a+') as f: f.write(text) f.write('\n') """Create Node Embedding if Node doesn't exist """ if vocab is not None: tokens = nltk.tokenize.word_tokenize(text) tokens = [token for token in tokens if not token in nltk_stopwords] node_emb = get_node_embed(tokens, vocab) for field in fos: name = field['name'] for ref in references_id: G.add_edge(paper_id, ref) G.node[paper_id]['emb'] = node_emb except: return G return G <mask token>
<mask token> nltk.download('stopwords') <mask token> class Lang: def __init__(self): super(Lang, self).__init__() self.word2index = {} self.word2count = {} self.index2word = {} self.n_words = 0 def index_words(self, sentence): for word in sentence: self.index_word(word) def index_word(self, word): if word not in self.word2index: self.word2index[word] = self.n_words self.word2count[word] = 1 self.index2word[self.n_words] = word self.n_words += 1 else: self.word2count[word] += 1 def gen_embeddings(vocab, file, emb_size, emb_dim): """ Generate an initial embedding matrix for word_dict. If an embedding file is not given or a word is not in the embedding file, a randomly initialized vector will be used. """ embeddings = np.zeros((vocab.n_words, emb_size)) print('Embeddings: %d x %d' % (vocab.n_words, emb_size)) if file is not None: print('Loading embedding file: %s' % file) pre_trained = 0 for line in open(file).readlines(): sp = line.split() if len(sp) == emb_dim + 1: if sp[0] in vocab.word2index: pre_trained += 1 embeddings[vocab.word2index[sp[0]]] = [float(x) for x in sp[1:]] else: print(sp[0]) print('Pre-trained: %d (%.2f%%)' % (pre_trained, pre_trained * 100.0 / vocab.n_words)) return embeddings def process_raw_abstracts(vocab): with open(raw_save_path, 'r', encoding='utf8') as f: for line in tqdm(f, total=13304586): tokens = nltk.tokenize.word_tokenize(line) tokens = [token for token in tokens if not token in nltk_stopwords] vocab.index_words(tokens) def get_node_embed(text, vocab): sum_embed = 0 for word in text: embed = embeddings[vocab.word2index[word]] sum_embed += embed return sum_embed def check_graph(G): total_nodes = len(G.nodes) no_emb_nodes = 0 nodes_to_delete = [] for node_str in G.nodes: try: emb = G.node[node_str]['emb'] except: no_emb_nodes += 1 nodes_to_delete.append(node_str) print('%d Nodes and %d missing nodes in G ' % (total_nodes, no_emb_nodes)) G.remove_nodes_from(nodes_to_delete) return G def process_line(G, line, vocab=None): try: fos = data['fos'] abstract = data['indexed_abstract'] paper_id = data['id'] references_id = data['references'] text = list(abstract['InvertedIndex'].keys()) text = ' '.join(text) if args.process_raw: with open(raw_save_path, 'a+') as f: f.write(text) f.write('\n') """Create Node Embedding if Node doesn't exist """ if vocab is not None: tokens = nltk.tokenize.word_tokenize(text) tokens = [token for token in tokens if not token in nltk_stopwords] node_emb = get_node_embed(tokens, vocab) for field in fos: name = field['name'] for ref in references_id: G.add_edge(paper_id, ref) G.node[paper_id]['emb'] = node_emb except: return G return G if __name__ == '__main__': """ Create Aminer-Citation v-11 Graphs """ parser = argparse.ArgumentParser() parser.add_argument('--topk', type=int, default='100') parser.add_argument('--process_raw', action='store_true', default=False, help='Process Raw Data') parser.add_argument('--make_vocab', action='store_true', default=False, help='Create Vocab from the raw abstract data') args = parser.parse_args() onlyfiles = [f for f in listdir(load_path_rank_base) if isfile(join( load_path_rank_base, f))] vocab = Lang() if args.make_vocab: process_raw_abstracts(vocab) joblib.dump(vocab, 'aminer_100_vocab.pkl') print('Done generating vocab') embeddings = gen_embeddings(vocab, file=glove_path, emb_size=300, emb_dim=300) joblib.dump(embeddings, 'aminer_100_embed.pkl') print('Done') exit() else: vocab = joblib.load('aminer_100_vocab.pkl') embeddings = joblib.load('aminer_100_embed.pkl') for i, file_ in tqdm(enumerate(onlyfiles), total=len(onlyfiles)): file_path = load_path_rank_base + file_ G = nx.Graph() with open(file_path, 'r', encoding='utf8') as f: for line in f: data = json.loads(line) G = process_line(G, data, vocab) G = check_graph(G) print('%s has %d Nodes and %d edges' % (file_, len(G), len(G.edges))) if not os.path.exists(save_path_graph_base): os.mkdir(save_path_graph_base) save_path_graph = save_path_graph_base + file_.split('.')[0 ] + '_graph.pkl' nx.write_gpickle(G, save_path_graph)
<mask token> nltk.download('stopwords') nltk_stopwords = nltk.corpus.stopwords.words('english') data_path = '/home/joey.bose/dblp_papers_v11.txt' save_path_base = '/home/joey.bose/aminer_data/' load_path_rank_base = '/home/joey.bose/aminer_data_ranked/fos/' save_path_graph_base = '/home/joey.bose/aminer_data_ranked/graphs/' raw_save_path = '/home/joey.bose/aminer_data_ranked/aminer_raw.txt' spacy_nlp = spacy.load('en_core_web_sm') glove_path = ( '/home/joey.bose/docker_temp/meta-graph/meta-graph/glove.840B.300d.txt') class Lang: def __init__(self): super(Lang, self).__init__() self.word2index = {} self.word2count = {} self.index2word = {} self.n_words = 0 def index_words(self, sentence): for word in sentence: self.index_word(word) def index_word(self, word): if word not in self.word2index: self.word2index[word] = self.n_words self.word2count[word] = 1 self.index2word[self.n_words] = word self.n_words += 1 else: self.word2count[word] += 1 def gen_embeddings(vocab, file, emb_size, emb_dim): """ Generate an initial embedding matrix for word_dict. If an embedding file is not given or a word is not in the embedding file, a randomly initialized vector will be used. """ embeddings = np.zeros((vocab.n_words, emb_size)) print('Embeddings: %d x %d' % (vocab.n_words, emb_size)) if file is not None: print('Loading embedding file: %s' % file) pre_trained = 0 for line in open(file).readlines(): sp = line.split() if len(sp) == emb_dim + 1: if sp[0] in vocab.word2index: pre_trained += 1 embeddings[vocab.word2index[sp[0]]] = [float(x) for x in sp[1:]] else: print(sp[0]) print('Pre-trained: %d (%.2f%%)' % (pre_trained, pre_trained * 100.0 / vocab.n_words)) return embeddings def process_raw_abstracts(vocab): with open(raw_save_path, 'r', encoding='utf8') as f: for line in tqdm(f, total=13304586): tokens = nltk.tokenize.word_tokenize(line) tokens = [token for token in tokens if not token in nltk_stopwords] vocab.index_words(tokens) def get_node_embed(text, vocab): sum_embed = 0 for word in text: embed = embeddings[vocab.word2index[word]] sum_embed += embed return sum_embed def check_graph(G): total_nodes = len(G.nodes) no_emb_nodes = 0 nodes_to_delete = [] for node_str in G.nodes: try: emb = G.node[node_str]['emb'] except: no_emb_nodes += 1 nodes_to_delete.append(node_str) print('%d Nodes and %d missing nodes in G ' % (total_nodes, no_emb_nodes)) G.remove_nodes_from(nodes_to_delete) return G def process_line(G, line, vocab=None): try: fos = data['fos'] abstract = data['indexed_abstract'] paper_id = data['id'] references_id = data['references'] text = list(abstract['InvertedIndex'].keys()) text = ' '.join(text) if args.process_raw: with open(raw_save_path, 'a+') as f: f.write(text) f.write('\n') """Create Node Embedding if Node doesn't exist """ if vocab is not None: tokens = nltk.tokenize.word_tokenize(text) tokens = [token for token in tokens if not token in nltk_stopwords] node_emb = get_node_embed(tokens, vocab) for field in fos: name = field['name'] for ref in references_id: G.add_edge(paper_id, ref) G.node[paper_id]['emb'] = node_emb except: return G return G if __name__ == '__main__': """ Create Aminer-Citation v-11 Graphs """ parser = argparse.ArgumentParser() parser.add_argument('--topk', type=int, default='100') parser.add_argument('--process_raw', action='store_true', default=False, help='Process Raw Data') parser.add_argument('--make_vocab', action='store_true', default=False, help='Create Vocab from the raw abstract data') args = parser.parse_args() onlyfiles = [f for f in listdir(load_path_rank_base) if isfile(join( load_path_rank_base, f))] vocab = Lang() if args.make_vocab: process_raw_abstracts(vocab) joblib.dump(vocab, 'aminer_100_vocab.pkl') print('Done generating vocab') embeddings = gen_embeddings(vocab, file=glove_path, emb_size=300, emb_dim=300) joblib.dump(embeddings, 'aminer_100_embed.pkl') print('Done') exit() else: vocab = joblib.load('aminer_100_vocab.pkl') embeddings = joblib.load('aminer_100_embed.pkl') for i, file_ in tqdm(enumerate(onlyfiles), total=len(onlyfiles)): file_path = load_path_rank_base + file_ G = nx.Graph() with open(file_path, 'r', encoding='utf8') as f: for line in f: data = json.loads(line) G = process_line(G, data, vocab) G = check_graph(G) print('%s has %d Nodes and %d edges' % (file_, len(G), len(G.edges))) if not os.path.exists(save_path_graph_base): os.mkdir(save_path_graph_base) save_path_graph = save_path_graph_base + file_.split('.')[0 ] + '_graph.pkl' nx.write_gpickle(G, save_path_graph)
import json import os import ipdb from tqdm import tqdm import argparse from os import listdir from os.path import isfile, join import pickle import joblib from collections import Counter from shutil import copyfile import networkx as nx import spacy import nltk import numpy as np nltk.download('stopwords') nltk_stopwords = nltk.corpus.stopwords.words('english') data_path = '/home/joey.bose/dblp_papers_v11.txt' save_path_base = '/home/joey.bose/aminer_data/' load_path_rank_base = '/home/joey.bose/aminer_data_ranked/fos/' save_path_graph_base = '/home/joey.bose/aminer_data_ranked/graphs/' raw_save_path = '/home/joey.bose/aminer_data_ranked/aminer_raw.txt' spacy_nlp = spacy.load('en_core_web_sm') glove_path = '/home/joey.bose/docker_temp/meta-graph/meta-graph/glove.840B.300d.txt' class Lang: def __init__(self): super(Lang, self).__init__() self.word2index = {} self.word2count = {} self.index2word = {} self.n_words = 0 # Count default tokens def index_words(self, sentence): for word in sentence: self.index_word(word) def index_word(self, word): if word not in self.word2index: self.word2index[word] = self.n_words self.word2count[word] = 1 self.index2word[self.n_words] = word self.n_words += 1 else: self.word2count[word] += 1 def gen_embeddings(vocab, file, emb_size, emb_dim): """ Generate an initial embedding matrix for word_dict. If an embedding file is not given or a word is not in the embedding file, a randomly initialized vector will be used. """ # embeddings = np.random.randn(vocab.n_words, emb_size) * 0.01 embeddings = np.zeros((vocab.n_words, emb_size)) print('Embeddings: %d x %d' % (vocab.n_words, emb_size)) if file is not None: print('Loading embedding file: %s' % file) pre_trained = 0 for line in open(file).readlines(): sp = line.split() if(len(sp) == emb_dim + 1): if sp[0] in vocab.word2index: pre_trained += 1 embeddings[vocab.word2index[sp[0]]] = [float(x) for x in sp[1:]] else: print(sp[0]) print('Pre-trained: %d (%.2f%%)' % (pre_trained, pre_trained * 100.0 / vocab.n_words)) return embeddings def process_raw_abstracts(vocab): with open(raw_save_path,"r",encoding="utf8") as f: for line in tqdm(f,total=13304586): tokens = nltk.tokenize.word_tokenize(line) tokens = [token for token in tokens if not token in nltk_stopwords] vocab.index_words(tokens) def get_node_embed(text,vocab): sum_embed = 0 for word in text: embed = embeddings[vocab.word2index[word]] sum_embed += embed return sum_embed def check_graph(G): total_nodes = len(G.nodes) no_emb_nodes = 0 nodes_to_delete = [] for node_str in G.nodes: try: emb = G.node[node_str]['emb'] except: no_emb_nodes += 1 nodes_to_delete.append(node_str) print("%d Nodes and %d missing nodes in G " %(total_nodes, no_emb_nodes)) G.remove_nodes_from(nodes_to_delete) return G def process_line(G, line, vocab=None): try: fos = data['fos'] abstract = data['indexed_abstract'] paper_id = data['id'] references_id = data['references'] text = list(abstract['InvertedIndex'].keys()) text =" ".join(text) if args.process_raw: with open(raw_save_path,"a+") as f: f.write(text) f.write('\n') '''Create Node Embedding if Node doesn't exist ''' if vocab is not None: tokens = nltk.tokenize.word_tokenize(text) tokens = [token for token in tokens if not token in nltk_stopwords] node_emb = get_node_embed(tokens,vocab) for field in fos: name = field['name'] for ref in references_id: G.add_edge(paper_id, ref) G.node[paper_id]['emb'] = node_emb except: return G return G if __name__ == '__main__': """ Create Aminer-Citation v-11 Graphs """ parser = argparse.ArgumentParser() parser.add_argument('--topk', type=int, default='100') parser.add_argument("--process_raw", action="store_true", default=False, help='Process Raw Data') parser.add_argument("--make_vocab", action="store_true", default=False, help='Create Vocab from the raw abstract data') args = parser.parse_args() onlyfiles = [f for f in listdir(load_path_rank_base) if isfile(join(load_path_rank_base, f))] vocab = Lang() if args.make_vocab: process_raw_abstracts(vocab) joblib.dump(vocab, "aminer_100_vocab.pkl") print("Done generating vocab") embeddings = gen_embeddings(vocab,file=glove_path,emb_size=300,emb_dim=300) joblib.dump(embeddings, "aminer_100_embed.pkl") print("Done") exit() else: vocab = joblib.load("aminer_100_vocab.pkl") embeddings = joblib.load("aminer_100_embed.pkl") for i, file_ in tqdm(enumerate(onlyfiles),total=len(onlyfiles)): file_path = load_path_rank_base + file_ G = nx.Graph() with open(file_path,'r', encoding="utf8") as f: for line in f: data = json.loads(line) G = process_line(G,data,vocab) G = check_graph(G) print("%s has %d Nodes and %d edges" %(file_,len(G),len(G.edges))) if not os.path.exists(save_path_graph_base): os.mkdir(save_path_graph_base) save_path_graph = save_path_graph_base + file_.split('.')[0] + '_graph.pkl' nx.write_gpickle(G,save_path_graph)
[ 4, 8, 10, 11, 13 ]
285
e38ae7f91deed1be00e60b7516210ea1feefe23e
<mask token> def folders_with_documents(pat_ids, main_dir_name, doc_prog_folder): str_pat_ids = [str(pat_id) for pat_id in pat_ids] str_pat_folder_names = [os.path.join(main_dir_name, os.path.join( str_pat_id, doc_prog_folder)) for str_pat_id in str_pat_ids] for pid, folder in zip(str_pat_ids, str_pat_folder_names): if os.path.isdir(folder) and len(os.listdir(folder)) > 1: yield pid, folder def df_chunksof_100(df): lendf = len(df) top100 = df.iloc[:, :100] df = df.iloc[:, 100:] yield top100, df def getvalid_src_dest_filepaths(config, pat_ids, main_dir_name, doctype_info): idx_chkr_cls = doctype_info['class'].initialize(config) log, indx_filename = doctype_info['log'], idx_chkr_cls.__name__ + '.csv' for pid, pid_src_folder in folders_with_documents(pat_ids, main_dir_name, doctype_info['folder']): index_file_path = os.path.join(pid_src_folder, indx_filename) idxfile_data, built_src_filenames = idx_chkr_cls.get_idxfile_data(pid, index_file_path) if not idxfile_data: logger.debug(f'{pid}{log} | Issue(s) with IndexFile. Skipping..') continue not_in_indexbuilt_files, not_in_folderlisting = source_files.validate( pid, built_src_filenames, pid_src_folder, log, indx_filename) if any([*not_in_indexbuilt_files, *not_in_folderlisting]): logger.debug(f'{pid}{log} | invalid folder. skipping') continue for idxfile_row, built_src_file in zip(idxfile_data, built_src_filenames): destn_filename = idx_chkr_cls.get_destination_filename(idxfile_row) if not destn_filename: logger.error( f'{pid}{log} | Could not form the destination filename string' ) continue logger.info( f'{pid}{log} | src: {built_src_file} dest:{destn_filename}') yield pid, built_src_file, destn_filename def main(): config = setup_cli(sys.argv[1:]) logger.info( f'{sys.argv[0]} -f {config.file_type} -s {config.start_range} -e {config.end_range} -d {config.base_directory}' ) docinfo = DOC_TYPE[config.file_type] main_dir_name = os.path.join(config.base_directory, 'Patients') results_doc = os.path.join(os.path.join(config.base_directory, 'results'), docinfo['folder']) logger.debug(f'results doc : {results_doc}') parser = ConfigParser() parser.read('./config/settings.indexfile.ini') outfile = os.path.join('output', f"{docinfo['folder']}.paths_pids.{config.start_range}-{config.end_range}.csv" ) if not os.path.isfile(outfile): with open(outfile, 'w', newline='') as csv_file: write_to_file('pid', 'src', 'dest', csv_file, 'size') with open(outfile, 'a', newline='') as csv_file: for p, s, d in getvalid_src_dest_filepaths(parser, range(config. start_range, config.end_range), main_dir_name, docinfo): full_src_path = ( f"{main_dir_name}{os.sep}{p}{os.sep}{docinfo['folder']}{os.sep}{s}" ) write_to_file(p, s, d, csv_file, os.path.getsize(full_src_path)) <mask token>
<mask token> def folders_with_documents(pat_ids, main_dir_name, doc_prog_folder): str_pat_ids = [str(pat_id) for pat_id in pat_ids] str_pat_folder_names = [os.path.join(main_dir_name, os.path.join( str_pat_id, doc_prog_folder)) for str_pat_id in str_pat_ids] for pid, folder in zip(str_pat_ids, str_pat_folder_names): if os.path.isdir(folder) and len(os.listdir(folder)) > 1: yield pid, folder def df_chunksof_100(df): lendf = len(df) top100 = df.iloc[:, :100] df = df.iloc[:, 100:] yield top100, df def getvalid_src_dest_filepaths(config, pat_ids, main_dir_name, doctype_info): idx_chkr_cls = doctype_info['class'].initialize(config) log, indx_filename = doctype_info['log'], idx_chkr_cls.__name__ + '.csv' for pid, pid_src_folder in folders_with_documents(pat_ids, main_dir_name, doctype_info['folder']): index_file_path = os.path.join(pid_src_folder, indx_filename) idxfile_data, built_src_filenames = idx_chkr_cls.get_idxfile_data(pid, index_file_path) if not idxfile_data: logger.debug(f'{pid}{log} | Issue(s) with IndexFile. Skipping..') continue not_in_indexbuilt_files, not_in_folderlisting = source_files.validate( pid, built_src_filenames, pid_src_folder, log, indx_filename) if any([*not_in_indexbuilt_files, *not_in_folderlisting]): logger.debug(f'{pid}{log} | invalid folder. skipping') continue for idxfile_row, built_src_file in zip(idxfile_data, built_src_filenames): destn_filename = idx_chkr_cls.get_destination_filename(idxfile_row) if not destn_filename: logger.error( f'{pid}{log} | Could not form the destination filename string' ) continue logger.info( f'{pid}{log} | src: {built_src_file} dest:{destn_filename}') yield pid, built_src_file, destn_filename def main(): config = setup_cli(sys.argv[1:]) logger.info( f'{sys.argv[0]} -f {config.file_type} -s {config.start_range} -e {config.end_range} -d {config.base_directory}' ) docinfo = DOC_TYPE[config.file_type] main_dir_name = os.path.join(config.base_directory, 'Patients') results_doc = os.path.join(os.path.join(config.base_directory, 'results'), docinfo['folder']) logger.debug(f'results doc : {results_doc}') parser = ConfigParser() parser.read('./config/settings.indexfile.ini') outfile = os.path.join('output', f"{docinfo['folder']}.paths_pids.{config.start_range}-{config.end_range}.csv" ) if not os.path.isfile(outfile): with open(outfile, 'w', newline='') as csv_file: write_to_file('pid', 'src', 'dest', csv_file, 'size') with open(outfile, 'a', newline='') as csv_file: for p, s, d in getvalid_src_dest_filepaths(parser, range(config. start_range, config.end_range), main_dir_name, docinfo): full_src_path = ( f"{main_dir_name}{os.sep}{p}{os.sep}{docinfo['folder']}{os.sep}{s}" ) write_to_file(p, s, d, csv_file, os.path.getsize(full_src_path)) if __name__ == '__main__': main()
<mask token> logger = logging.getLogger(__name__) DOCUMENTS = 1 PROGRESS_NOTES = 2 DOC_TYPE = {DOCUMENTS: {'file_type': 'Document', 'folder': 'Documents', 'class': DocumentIndex, 'log': 'd', 'dates': ['CREATED_TIMESTAMP', 'POST_DATE'], 'converters': {'FILENAME': strip, 'DISPLAY_DESC': strip, 'DOC_COMMENT': strip, 'DOCUMENT_TYPE': strip}, 'staff_field': 'displayname'}, PROGRESS_NOTES: {'file_type': 'ProgressNote', 'folder': 'ProgressNotes', 'class': ProgressNoteIndex, 'log': 'p', 'dates': [ 'CREATED_TIMESTAMP'], 'converters': {}, 'staff_field': 'login'}} def folders_with_documents(pat_ids, main_dir_name, doc_prog_folder): str_pat_ids = [str(pat_id) for pat_id in pat_ids] str_pat_folder_names = [os.path.join(main_dir_name, os.path.join( str_pat_id, doc_prog_folder)) for str_pat_id in str_pat_ids] for pid, folder in zip(str_pat_ids, str_pat_folder_names): if os.path.isdir(folder) and len(os.listdir(folder)) > 1: yield pid, folder def df_chunksof_100(df): lendf = len(df) top100 = df.iloc[:, :100] df = df.iloc[:, 100:] yield top100, df def getvalid_src_dest_filepaths(config, pat_ids, main_dir_name, doctype_info): idx_chkr_cls = doctype_info['class'].initialize(config) log, indx_filename = doctype_info['log'], idx_chkr_cls.__name__ + '.csv' for pid, pid_src_folder in folders_with_documents(pat_ids, main_dir_name, doctype_info['folder']): index_file_path = os.path.join(pid_src_folder, indx_filename) idxfile_data, built_src_filenames = idx_chkr_cls.get_idxfile_data(pid, index_file_path) if not idxfile_data: logger.debug(f'{pid}{log} | Issue(s) with IndexFile. Skipping..') continue not_in_indexbuilt_files, not_in_folderlisting = source_files.validate( pid, built_src_filenames, pid_src_folder, log, indx_filename) if any([*not_in_indexbuilt_files, *not_in_folderlisting]): logger.debug(f'{pid}{log} | invalid folder. skipping') continue for idxfile_row, built_src_file in zip(idxfile_data, built_src_filenames): destn_filename = idx_chkr_cls.get_destination_filename(idxfile_row) if not destn_filename: logger.error( f'{pid}{log} | Could not form the destination filename string' ) continue logger.info( f'{pid}{log} | src: {built_src_file} dest:{destn_filename}') yield pid, built_src_file, destn_filename def main(): config = setup_cli(sys.argv[1:]) logger.info( f'{sys.argv[0]} -f {config.file_type} -s {config.start_range} -e {config.end_range} -d {config.base_directory}' ) docinfo = DOC_TYPE[config.file_type] main_dir_name = os.path.join(config.base_directory, 'Patients') results_doc = os.path.join(os.path.join(config.base_directory, 'results'), docinfo['folder']) logger.debug(f'results doc : {results_doc}') parser = ConfigParser() parser.read('./config/settings.indexfile.ini') outfile = os.path.join('output', f"{docinfo['folder']}.paths_pids.{config.start_range}-{config.end_range}.csv" ) if not os.path.isfile(outfile): with open(outfile, 'w', newline='') as csv_file: write_to_file('pid', 'src', 'dest', csv_file, 'size') with open(outfile, 'a', newline='') as csv_file: for p, s, d in getvalid_src_dest_filepaths(parser, range(config. start_range, config.end_range), main_dir_name, docinfo): full_src_path = ( f"{main_dir_name}{os.sep}{p}{os.sep}{docinfo['folder']}{os.sep}{s}" ) write_to_file(p, s, d, csv_file, os.path.getsize(full_src_path)) if __name__ == '__main__': main()
import sys import os from configparser import ConfigParser import logging from mod_argparse import setup_cli from checkers.IndexFile import DocumentIndex, ProgressNoteIndex from checkers import source_files from utilities import write_to_file, strip logger = logging.getLogger(__name__) DOCUMENTS = 1 PROGRESS_NOTES = 2 DOC_TYPE = {DOCUMENTS: {'file_type': 'Document', 'folder': 'Documents', 'class': DocumentIndex, 'log': 'd', 'dates': ['CREATED_TIMESTAMP', 'POST_DATE'], 'converters': {'FILENAME': strip, 'DISPLAY_DESC': strip, 'DOC_COMMENT': strip, 'DOCUMENT_TYPE': strip}, 'staff_field': 'displayname'}, PROGRESS_NOTES: {'file_type': 'ProgressNote', 'folder': 'ProgressNotes', 'class': ProgressNoteIndex, 'log': 'p', 'dates': [ 'CREATED_TIMESTAMP'], 'converters': {}, 'staff_field': 'login'}} def folders_with_documents(pat_ids, main_dir_name, doc_prog_folder): str_pat_ids = [str(pat_id) for pat_id in pat_ids] str_pat_folder_names = [os.path.join(main_dir_name, os.path.join( str_pat_id, doc_prog_folder)) for str_pat_id in str_pat_ids] for pid, folder in zip(str_pat_ids, str_pat_folder_names): if os.path.isdir(folder) and len(os.listdir(folder)) > 1: yield pid, folder def df_chunksof_100(df): lendf = len(df) top100 = df.iloc[:, :100] df = df.iloc[:, 100:] yield top100, df def getvalid_src_dest_filepaths(config, pat_ids, main_dir_name, doctype_info): idx_chkr_cls = doctype_info['class'].initialize(config) log, indx_filename = doctype_info['log'], idx_chkr_cls.__name__ + '.csv' for pid, pid_src_folder in folders_with_documents(pat_ids, main_dir_name, doctype_info['folder']): index_file_path = os.path.join(pid_src_folder, indx_filename) idxfile_data, built_src_filenames = idx_chkr_cls.get_idxfile_data(pid, index_file_path) if not idxfile_data: logger.debug(f'{pid}{log} | Issue(s) with IndexFile. Skipping..') continue not_in_indexbuilt_files, not_in_folderlisting = source_files.validate( pid, built_src_filenames, pid_src_folder, log, indx_filename) if any([*not_in_indexbuilt_files, *not_in_folderlisting]): logger.debug(f'{pid}{log} | invalid folder. skipping') continue for idxfile_row, built_src_file in zip(idxfile_data, built_src_filenames): destn_filename = idx_chkr_cls.get_destination_filename(idxfile_row) if not destn_filename: logger.error( f'{pid}{log} | Could not form the destination filename string' ) continue logger.info( f'{pid}{log} | src: {built_src_file} dest:{destn_filename}') yield pid, built_src_file, destn_filename def main(): config = setup_cli(sys.argv[1:]) logger.info( f'{sys.argv[0]} -f {config.file_type} -s {config.start_range} -e {config.end_range} -d {config.base_directory}' ) docinfo = DOC_TYPE[config.file_type] main_dir_name = os.path.join(config.base_directory, 'Patients') results_doc = os.path.join(os.path.join(config.base_directory, 'results'), docinfo['folder']) logger.debug(f'results doc : {results_doc}') parser = ConfigParser() parser.read('./config/settings.indexfile.ini') outfile = os.path.join('output', f"{docinfo['folder']}.paths_pids.{config.start_range}-{config.end_range}.csv" ) if not os.path.isfile(outfile): with open(outfile, 'w', newline='') as csv_file: write_to_file('pid', 'src', 'dest', csv_file, 'size') with open(outfile, 'a', newline='') as csv_file: for p, s, d in getvalid_src_dest_filepaths(parser, range(config. start_range, config.end_range), main_dir_name, docinfo): full_src_path = ( f"{main_dir_name}{os.sep}{p}{os.sep}{docinfo['folder']}{os.sep}{s}" ) write_to_file(p, s, d, csv_file, os.path.getsize(full_src_path)) if __name__ == '__main__': main()
import sys import os from configparser import ConfigParser import logging from mod_argparse import setup_cli from checkers.IndexFile import DocumentIndex, ProgressNoteIndex from checkers import source_files from utilities import write_to_file, strip # , write_to_db_isok # import pandas as pd logger = logging.getLogger(__name__) DOCUMENTS = 1 PROGRESS_NOTES = 2 DOC_TYPE = { DOCUMENTS: { 'file_type': 'Document', 'folder': 'Documents', 'class': DocumentIndex, 'log': 'd', 'dates': ['CREATED_TIMESTAMP', 'POST_DATE'], 'converters': {'FILENAME': strip, 'DISPLAY_DESC': strip, 'DOC_COMMENT': strip, 'DOCUMENT_TYPE': strip}, 'staff_field': 'displayname' }, PROGRESS_NOTES: { 'file_type': 'ProgressNote', 'folder': 'ProgressNotes', 'class': ProgressNoteIndex, 'log': 'p', 'dates': ['CREATED_TIMESTAMP'], 'converters': {}, 'staff_field': 'login' } } def folders_with_documents(pat_ids, main_dir_name, doc_prog_folder): str_pat_ids = [str(pat_id) for pat_id in pat_ids] str_pat_folder_names = [os.path.join(main_dir_name, os.path.join(str_pat_id, doc_prog_folder)) for str_pat_id in str_pat_ids] # Patients/*/Documents for pid, folder in zip(str_pat_ids, str_pat_folder_names): if os.path.isdir(folder) and len(os.listdir(folder)) > 1: yield pid, folder # # def write_db_isok(list, pid): # df = pd.concat(list) # return write_to_db_isok(df, pid) def df_chunksof_100(df): lendf = len(df) top100 = df.iloc[:, :100] df = df.iloc[:, 100:] yield top100, df # # def indxfiles_todb(config, pat_ids, main_dir_name, doctype_info): # idx_chkr_cls = doctype_info['class'].initialize(config) # log, indx_filename = doctype_info['log'], idx_chkr_cls.__name__ + '.csv' # # # df = pd.DataFrame() # list_ = [] # pid_start = 0 # pid_end = 0 # df_rows = 0 # # https://stackoverflow.com/questions/50689082/to-sql-pyodbc-count-field-incorrect-or-syntax-error # skipped_list = [] # for pid, pid_src_folder in folders_with_documents(pat_ids, main_dir_name, doctype_info['folder']): # index_file_path = os.path.join(pid_src_folder, indx_filename) # #int_pid = int(pid) # pid_end = int(pid) # try: # df = pd.read_csv(index_file_path, index_col=None, header=0, # converters=doctype_info['converters'], # # date_parser=pd.core.tools.datetimes.to_datetime, # # parse_dates=doctype_info['dates'] # ) # df['PID'] = pid # # #len_df = len(df) # # # if len_df > 50: # # df_1 = pd.concat(list_) # # if write_to_db_isok(df_1, f'{pid_start} - {pid_end}'): # # logger.info(f'Wrote to DB..upto pid: {pid} dfrows: {df_rows}') # # else: # # logger.error(f'Skipping batch because of errors : {pid_start} - {pid_end} dfrows: {df_rows} ') # # skipped_list.extend(range(pid_start, pid_end)) # # pid_start = pid_end + 1 # # # # else: # # list_.append(df) # # df_rows += len_df # # list_.append(df) # df_rows += len(df) # if len(list_) > 5 or df_rows > 30: # df = pd.concat(list_) # if write_to_db_isok(df, f'{pid_start} - {pid_end}'): # logger.info(f'Wrote to DB..upto pid: {pid} dfrows: {df_rows}') # else: # logger.error(f'Skipping batch because of errors : {pid_start} - {pid_end} dfrows: {df_rows} ') # skipped_list.extend(range(pid_start, pid_end)) # list_ = [] # pid_start = pid_end+1 # df_rows = 0 # # except pd.errors.ParserError as pe: # logger.error(f"Something went wrong (ParseError) pid:{pid}. skipping..") # list_ = [] # pid_start = pid_end + 1 # df_rows = 0 # continue # # if list_: # df = pd.concat(list_) # if write_to_db_isok(df, {pid_start} - {pid_end}): # logger.info(f'Wrote to DB..upto pid: {pid}') # # logger.warning(f'Skipped list of pids: {",".join([str(i) for i in skipped_list])}') def getvalid_src_dest_filepaths(config, pat_ids, main_dir_name, doctype_info): idx_chkr_cls = doctype_info['class'].initialize(config) log, indx_filename = doctype_info['log'], idx_chkr_cls.__name__ + '.csv' for pid, pid_src_folder in folders_with_documents(pat_ids, main_dir_name, doctype_info['folder']): index_file_path = os.path.join(pid_src_folder, indx_filename) idxfile_data, built_src_filenames = idx_chkr_cls.get_idxfile_data(pid, index_file_path) if not idxfile_data: logger.debug(f'{pid}{log} | Issue(s) with IndexFile. Skipping..') continue not_in_indexbuilt_files, not_in_folderlisting = source_files.validate(pid, built_src_filenames, pid_src_folder, log, indx_filename) if any([*not_in_indexbuilt_files, *not_in_folderlisting]): logger.debug(f'{pid}{log} | invalid folder. skipping') continue # . . . . . . . . . . . folder listing should match the file names built from index file . . . . . . . . for idxfile_row, built_src_file in zip(idxfile_data, built_src_filenames): destn_filename = idx_chkr_cls.get_destination_filename(idxfile_row) if not destn_filename: logger.error(f'{pid}{log} | Could not form the destination filename string') continue logger.info(f'{pid}{log} | src: {built_src_file} dest:{destn_filename}') yield pid, built_src_file, destn_filename def main(): config = setup_cli(sys.argv[1:]) logger.info(f'{sys.argv[0]} -f {config.file_type} -s {config.start_range}' f' -e {config.end_range} -d {config.base_directory}') docinfo = DOC_TYPE[config.file_type] main_dir_name = os.path.join(config.base_directory, 'Patients') results_doc = os.path.join(os.path.join(config.base_directory, 'results'), docinfo['folder']) logger.debug(f'results doc : {results_doc}') parser = ConfigParser() parser.read('./config/settings.indexfile.ini') outfile = os.path.join('output', f"{docinfo['folder']}.paths_pids.{config.start_range}-{config.end_range}.csv") if not os.path.isfile(outfile): with open(outfile, 'w', newline='') as csv_file: write_to_file("pid", "src", "dest", csv_file, "size") #indxfiles_todb(parser, range(config.start_range, config.end_range), # main_dir_name, doctype_info) with open(outfile, 'a', newline='') as csv_file: for p, s, d in getvalid_src_dest_filepaths(parser, range(config.start_range, config.end_range), main_dir_name, docinfo): full_src_path = f"{main_dir_name}{os.sep}{p}{os.sep}{docinfo['folder']}{os.sep}{s}" write_to_file(p, s, d, csv_file, os.path.getsize(full_src_path)) if __name__ == "__main__": main() # from checkers import sanitize # print(sanitize.fix_altdoctitle('None')) # print(sanitize.fix_doctitle('None')) # print(sanitize.fix_timestamp('None')) # print(sanitize.fix_pid('None')) # print(sanitize.fix_fileno('None')) # print(sanitize.fix_ext('...')) # print(sanitize.fix_altdoctitle(None)) # print(sanitize.fix_doctitle(None)) # print(sanitize.fix_timestamp(None)) # print(sanitize.fix_pid(None)) # print(sanitize.fix_fileno(None)) # print(sanitize.fix_ext('aa')) # print(sanitize.fix_ext('asd')) # print(sanitize.fix_ext('bbbb')) # print(sanitize.fix_ext('ccccc')) # print(sanitize.fix_pid('asdf')) # print(sanitize.fix_fileno(3.4))
[ 4, 5, 6, 7, 8 ]
286
069338b188f3cf16357b2502cbb3130b69918bd9
<mask token>
<mask token> if __name__ == '__main__': exit(cli.main(prog_name='htmap'))
from .cli import cli if __name__ == '__main__': exit(cli.main(prog_name='htmap'))
from .cli import cli if __name__ == "__main__": exit(cli.main(prog_name="htmap"))
null
[ 0, 1, 2, 3 ]
287
b52269237d66ea50c453395b9536f25f1310bf2e
#!/usr/bin/env python2.7 # -*- coding: utf-8 -*- import re from blessings import Terminal from validate_email import validate_email import requests import sys _site_ = sys.argv[1] _saida_ = sys.argv[2] _file_ = open(_saida_, "w") t = Terminal() r = requests.get(_site_, headers={'User-Agent': 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36'}) conteudo = r.content _file_ = open(_saida_, "w") _filtro_ = re.findall(r'[\w\.-]+@[\w\.-]+', conteudo) for line in _filtro_: if validate_email(line, verify=True)==False: print line, t.red("INVALID!") else: print line, t.green("OK!") _file_.write(line) _file_.write("\n")
null
null
null
null
[ 0 ]
288
8c539dbbb762717393b9a71ddca8eb3872890854
<mask token>
<mask token> def process_names(): """ Opening, reading name file and building name array. """ with open(input_names_file, 'r') as data: plaintext = data.read() name_array = plaintext.split('\n') final_name_list = [] for name in name_array: if len(name.split(',')) == 2: temp_name_list = re.split(reg_ex, name) last_name = temp_name_list.pop() first_name = temp_name_list.pop() final_name_list.append(last_name + ',' + first_name) elif len(name.split(' ')) == 2: final_name_list.append(name.replace(' ', ',')) elif len(name.split(' ')) == 3: temp_name_list = re.split(' ', name) last_name = temp_name_list.pop() middle_name = temp_name_list.pop() first_name = temp_name_list.pop() final_name_list.append(first_name + ',' + middle_name + ' ' + last_name) else: final_name_list.append(name) with open(output_names_file, 'w') as txt_file: txt_file.write('first_name,last_name' + '\n') for name in final_name_list: txt_file.write(name + '\n') names_df = pd.read_csv(output_names_file, names=name_header, sep=',', engine='python')
<mask token> instruments_file = os.path.abspath('instruments.csv') input_names_file = os.path.abspath('names.txt') output_names_file = os.path.abspath('names.csv') inst_name_file = os.path.abspath('name_instrument.csv') reg_ex = '; |, |\\*|\n' name_header = ['first_name', 'last_name'] def process_names(): """ Opening, reading name file and building name array. """ with open(input_names_file, 'r') as data: plaintext = data.read() name_array = plaintext.split('\n') final_name_list = [] for name in name_array: if len(name.split(',')) == 2: temp_name_list = re.split(reg_ex, name) last_name = temp_name_list.pop() first_name = temp_name_list.pop() final_name_list.append(last_name + ',' + first_name) elif len(name.split(' ')) == 2: final_name_list.append(name.replace(' ', ',')) elif len(name.split(' ')) == 3: temp_name_list = re.split(' ', name) last_name = temp_name_list.pop() middle_name = temp_name_list.pop() first_name = temp_name_list.pop() final_name_list.append(first_name + ',' + middle_name + ' ' + last_name) else: final_name_list.append(name) with open(output_names_file, 'w') as txt_file: txt_file.write('first_name,last_name' + '\n') for name in final_name_list: txt_file.write(name + '\n') names_df = pd.read_csv(output_names_file, names=name_header, sep=',', engine='python')
import re import os import pandas as pd instruments_file = os.path.abspath('instruments.csv') input_names_file = os.path.abspath('names.txt') output_names_file = os.path.abspath('names.csv') inst_name_file = os.path.abspath('name_instrument.csv') reg_ex = '; |, |\\*|\n' name_header = ['first_name', 'last_name'] def process_names(): """ Opening, reading name file and building name array. """ with open(input_names_file, 'r') as data: plaintext = data.read() name_array = plaintext.split('\n') final_name_list = [] for name in name_array: if len(name.split(',')) == 2: temp_name_list = re.split(reg_ex, name) last_name = temp_name_list.pop() first_name = temp_name_list.pop() final_name_list.append(last_name + ',' + first_name) elif len(name.split(' ')) == 2: final_name_list.append(name.replace(' ', ',')) elif len(name.split(' ')) == 3: temp_name_list = re.split(' ', name) last_name = temp_name_list.pop() middle_name = temp_name_list.pop() first_name = temp_name_list.pop() final_name_list.append(first_name + ',' + middle_name + ' ' + last_name) else: final_name_list.append(name) with open(output_names_file, 'w') as txt_file: txt_file.write('first_name,last_name' + '\n') for name in final_name_list: txt_file.write(name + '\n') names_df = pd.read_csv(output_names_file, names=name_header, sep=',', engine='python')
import re import os import pandas as pd instruments_file = os.path.abspath("instruments.csv") input_names_file = os.path.abspath("names.txt") output_names_file = os.path.abspath("names.csv") inst_name_file = os.path.abspath("name_instrument.csv") reg_ex = '; |, |\\*|\n' name_header = ["first_name", "last_name"] def process_names(): """ Opening, reading name file and building name array. """ with open(input_names_file, 'r') as data: plaintext = data.read() name_array = plaintext.split('\n') # Final name list final_name_list = [] # Parsing different name formats and standardizing to create csv for name in name_array: if len(name.split(',')) == 2: temp_name_list = re.split(reg_ex, name) last_name = temp_name_list.pop() first_name = temp_name_list.pop() final_name_list.append(last_name + ',' + first_name) elif len(name.split(' ')) == 2: final_name_list.append(name.replace(' ', ',')) elif len(name.split(' ')) == 3: temp_name_list = re.split(' ', name) last_name = temp_name_list.pop() middle_name = temp_name_list.pop() first_name = temp_name_list.pop() final_name_list.append(first_name + ',' + middle_name + ' ' + last_name) else: final_name_list.append(name) # Writing final name list to a file with open(output_names_file, "w") as txt_file: txt_file.write("first_name,last_name" + "\n") for name in final_name_list: txt_file.write(name + "\n") # works with any number of elements in a line names_df = pd.read_csv(output_names_file, names=name_header, sep=',', engine='python')
[ 0, 1, 2, 3, 4 ]
289
0db0daf9bea254cffaec1280cd13b2d70368cd94
<mask token>
<mask token> for i in range(B): p1 = 0.0 for j in range(N1): if rnd.uniform(0, 1) < p1mle: p1 += 1 p1 /= N1 p2 = 0.0 for j in range(N2): if rnd.uniform(0, 1) < p2mle: p2 += 1 p2 /= N2 estimate.append(p2 - p1) <mask token> for t in allt: cur = np.mean(np.sqrt(N1 + N2) * (estimate - taumle) < t) if np.abs(target - cur) < tol: print(t) print(cur) break
<mask token> B = 100000 N1 = 50 N2 = 50 p1mle = 0.3 p2mle = 0.4 taumle = p2mle - p1mle estimate = [] for i in range(B): p1 = 0.0 for j in range(N1): if rnd.uniform(0, 1) < p1mle: p1 += 1 p1 /= N1 p2 = 0.0 for j in range(N2): if rnd.uniform(0, 1) < p2mle: p2 += 1 p2 /= N2 estimate.append(p2 - p1) t = -10 estimate = np.array(estimate) allt = [(0.01 * t) for t in xrange(-5000, 5000)] target = 0.95 tol = 0.01 for t in allt: cur = np.mean(np.sqrt(N1 + N2) * (estimate - taumle) < t) if np.abs(target - cur) < tol: print(t) print(cur) break
import numpy.random as rnd import numpy as np B = 100000 N1 = 50 N2 = 50 p1mle = 0.3 p2mle = 0.4 taumle = p2mle - p1mle estimate = [] for i in range(B): p1 = 0.0 for j in range(N1): if rnd.uniform(0, 1) < p1mle: p1 += 1 p1 /= N1 p2 = 0.0 for j in range(N2): if rnd.uniform(0, 1) < p2mle: p2 += 1 p2 /= N2 estimate.append(p2 - p1) t = -10 estimate = np.array(estimate) allt = [(0.01 * t) for t in xrange(-5000, 5000)] target = 0.95 tol = 0.01 for t in allt: cur = np.mean(np.sqrt(N1 + N2) * (estimate - taumle) < t) if np.abs(target - cur) < tol: print(t) print(cur) break
import numpy.random as rnd import numpy as np B=100000 N1=50 N2=50 p1mle=0.3 p2mle=0.4 taumle=p2mle-p1mle estimate=[] for i in range(B): p1=0.0 for j in range(N1): if(rnd.uniform(0,1)<p1mle): p1+=1 p1/=N1 p2=0.0 for j in range(N2): if(rnd.uniform(0,1)<p2mle): p2+=1 p2/=N2 estimate.append(p2-p1) t=-10 estimate=np.array(estimate) allt=[0.01*t for t in xrange(-5000,5000)] target=0.95 tol=0.01 for t in allt: cur=np.mean(np.sqrt(N1+N2)*(estimate-taumle)<t) if(np.abs(target-cur)<tol): print(t) print(cur) break
[ 0, 1, 2, 3, 4 ]
290
a90b7e44cc54d4f96a13e5e6e2d15b632d3c4983
<mask token> class GroupSignature: def __init__(self, groupObj): global util, group util = SecretUtil(groupObj, debug) self.group = groupObj def pkGen(self, h1str): gstr = ( '[6172776968119684165170291368128433652817636448173749093457023424948260385279837018774774149930982188956916913145008943931711059687988096415181819433817738, 8687587692191287108886119971783525001480020593934954052605681527814232399216375005546606067382536684351686344089456732201641997200939472924879001214689004]' ) g2str = ( '[7648994551207171188393784904797547917038803147671542540175090956205316897431443264058433935237605598252399113847934759009659621851760599508222321653067284, 922489308494109901795721463782161260386164061515796674638135394871842997698175772871045949554746517321480649326465484116060959631197509151923296896589720]' ) u0str = ( '[180015966842918451436547451263180245588308971597733548673037049536176684754209695288737508087729924028686259002375511049961436438196866049956546630518033, 1295050197915669955783867959538729894307963685491173858450359845766785488725907727220684060845012524740394664162328817669422178637925195059862486690053923]' ) u1str = ( '[2555472719769037960206282327195096320915753855199743796256065902544200822503613205017219993060986152240852358189992579821797745072366030183800897743028220, 7573705235093543416041007636313631591000596820214067724084077929638801811700093589294454562385664531190678890366928407286293582994146887505184778221562373]' ) u2str = ( '[6876276970903121931083294698771200898345396507892092532649392211995185517437159402176975528760594250374462299539306423347676182899798006533425047523984724, 5323739238507219125881988073888745575030677585404965990610324901624530474522642705344792075909082041735695801098770187248023797265998906693745587936574078]' ) u3str = ( '[6628726193389375981104409894060310698729022957801238449570622103067828518416602275957863668289683360250722835022304456841105526036470008237775051984811323, 862537748555943361001122447731987661405436458862545177179548603003392540530328380518694788420155531238391922289886044667763424887444361610972254938158280]' ) u4str = ( '[8157254219580822599577995921928211211847392705248772673869189421041858895589817404931780741226510985762564598862965174380020566416411083236239871342674775, 4736677719200783513058679582227494204159737596114643136852532046080608159561620208171676599501713934575216178076006396924589443776642926902969084668055006]' ) hstr = ( '[6248393417805371388321299785844751688345516419281230263497475615452026459314582553252281068616984105757749673095320346188725995701858182333525688832492249, 351368339412205819108519989143352052898751906937356995136442397753142226531384069336237369861919799955237545207977716196031001184146017796598836939617335]' ) nstr = ( '[75201312764006187596691102237923705656296213254701583615255122742135170369075831428394751330697143847448434841509551532135632624530360013837581615049543, 3886258599652934715331576083899336629981754505948456216299528998628273512432828729344158706718479567056972375128622026273382126529171409058157562418608963]' ) g = self.group.fromstr(gstr, 10, G1) g2 = self.group.fromstr(g2str, 10, G2) u0 = self.group.fromstr(u0str, 10, G2) u1 = self.group.fromstr(u1str, 10, G2) u2 = self.group.fromstr(u2str, 10, G2) u3 = self.group.fromstr(u3str, 10, G2) u4 = self.group.fromstr(u4str, 10, G2) h = self.group.fromstr(hstr, 10, G1) n = self.group.fromstr(nstr, 10, GT) h1 = self.group.fromstr(h1str, 10, G1) pk = {'g': g, 'g2': g2, 'u0': u0, 'u1': u1, 'u2': u2, 'u3': u3, 'u4': u4, 'h': h, 'n': n, 'h1': h1} return pk def uskGen(self, usklist, pk, GID, UID, L, k): t1 = time() b0 = self.group.gen1_0(1) b3 = self.group.gen1_0(1) b4 = self.group.gen1_0(1) b5 = self.group.gen1_0(1) r2 = self.group.random(ZR) for i in range(k): b0 = b0 * usklist[i]['b0'] ** L[i] b3 = b3 * usklist[i]['b3'] ** L[i] b4 = b4 * usklist[i]['b4'] ** L[i] b5 = b5 * usklist[i]['b5'] ** L[i] b0 = b0 * (pk['u0'] * pk['u1'] ** GID * pk['u2'] ** UID) ** r2 b3 = b3 * pk['u3'] ** r2 b4 = b4 * pk['u4'] ** r2 b5 = b5 * pk['g'] ** r2 usk = {'b0': b0, 'b3': b3, 'b4': b4, 'b5': b5} t2 = time() with open('extracttime.txt', 'a') as f: f.write(str(t2 - t1)) f.write('\n') return usk def LGen(self, n, k): L = [] I = self.group.random(ZR) J = self.group.random(ZR) for i in range(n): L.append(self.group.random(ZR)) L[i].set(1) I.set(i + 1) for j in range(1, k + 1): print(j) J.set(j) if i + 1 != j: L[i] = L[i] * (J / (J - I)) return L def verifyUsk(self, usk, vk, pk, GID, UID): g = pk['g'] g2 = pk['g2'] u0 = pk['u0'] u1 = pk['u1'] u2 = pk['u2'] u3 = pk['u3'] u4 = pk['u4'] b0 = usk['b0'] b5 = usk['b5'] b3 = usk['b3'] b4 = usk['b4'] return pair(g, b0) == pair(vk, g2) * pair(b5, u0) * pair(b5, u1 ** GID ) * pair(b5, u2 ** UID) and pair(g, b3) == pair(b5, u3) and pair(g, b4) == pair(b5, u4) def sign(self, title, usk, pk, GID, UID, groupID): t1 = time() m = self.group.hash(title) b0 = usk['b0'] b3 = usk['b3'] b4 = usk['b4'] b5 = usk['b5'] r4 = self.group.random(ZR) r3 = self.group.random(ZR) k = self.group.random(ZR) c0 = b0 * b3 ** m * b4 ** r4 * (pk['u0'] * pk['u1'] ** GID * pk[ 'u2'] ** UID * pk['u3'] ** m * pk['u4'] ** r4) ** r3 c5 = b5 * pk['g'] ** r3 c6 = pk['u2'] ** UID * pk['u4'] ** r4 e1 = pk['g'] ** k e2 = (pk['u0'] * pk['u1'] ** GID) ** k e3 = pk['n'] ** UID * pair(pk['h1'], pk['g2']) ** k f = pk['u0'] * pk['u1'] ** GID gp = pair(pk['h1'], pk['g2']) k1 = self.group.random(ZR) k2 = self.group.random(ZR) k3 = self.group.random(ZR) r1 = pk['u2'] ** k1 * pk['u4'] ** k2 r2 = pk['g'] ** k3 r3 = f ** k3 t4 = pk['n'] ** k1 * gp ** k3 hashstr = str(r1) + str(r2) + str(r3) + str(t4) c = self.group.hash(hashstr) s1 = k1 + c * UID s2 = k2 + c * r4 s3 = k3 + c * k signature = {'c0': c0, 'c5': c5, 'c6': c6, 'e1': e1, 'e2': e2, 'e3': e3, 'c': c, 's1': s1, 's2': s2, 's3': s3} t2 = time() with open('gssigntime.txt', 'a') as f: f.write(str(t2 - t1)) f.write('\n') print('gs time', t2 - t1) return signature def open(self, okliststr, L, k): t1 = time() oklist = [] for ok in okliststr: oklist.append({'ok1': self.group.fromstr(ok['ok1'], 10, GT), 'ok2': self.group.fromstr(ok['ok2'], 10, GT)}) ok1 = self.group.gen1_0(1) ok2 = self.group.gen1_0(1) for i in range(k): ok1 = ok1 * oklist[i]['ok1'] ** L[i] ok2 = ok2 * oklist[i]['ok2'] ** L[i] t2 = time() with open('opentime.txt', 'a') as f: f.write(str(t2 - t1)) f.write('\n') print('open time', t2 - t1) return ok1 / ok2 <mask token> def get_lam(sig): okliststr = [] i = 0 for client in clientlist: okstr = client.get_ok(str(sig['e1']), str(sig['e2'])) print(okstr) okliststr.append(okstr) i = i + 1 if i < k: print('the number of ok is not enough\n') return lam = group_signature.open(okliststr, L, k) return lam def tx_build_broad(op, steemd_instance, wallet_instance, account): tx = TransactionBuilder(steemd_instance=steemd_instance, wallet_instance=wallet_instance, no_broadcast=False) tx.appendOps(op) tx.appendSigner(account, 'posting') tx.sign() re = tx.broadcast() return re <mask token> def annoy_commit(account, usk, pk, GID, UID, title='paper_title', body= 'paper_body', groupID='computer'): annoy_author = 'nya' sig = group_signature.sign(title, usk, pk, GID, UID, groupID) permlink = ''.join(random.choices(string.digits, k=7)) print('permlink is ' + permlink) op = operations.CommitPaper(**{'account': account, 'author': annoy_author, 'permlink': permlink, 'title': title, 'body': body, 'json_metadata': '', 'c0': str(sig['c0']), 'c5': str(sig['c5']), 'c6': str(sig['c6']), 'e1': str(sig['e1']), 'e2': str(sig['e2']), 'e3': str(sig['e3']), 'c': str(sig['c']), 's1': str(sig['s1']), 's2': str(sig['s2']), 's3': str(sig['s3'])}) print('commitop', op) return op, sig, permlink <mask token> def annoy_commit_tx(account, usk, pk, GID, UID, steemd_instance, wallet_instance, title='paper_title', body='paper_body'): commitop, ssig, permlink = annoy_commit(account, usk, pk, GID, UID, title='paper_title', body='paper_body', groupID='computer') re = tx_build_broad(commitop, steemd_instance, wallet_instance, account) print('commit-re', re) return ssig, permlink <mask token> def one_mul_annoy_tx(account, usk, pk, UID, steemd, wallet): ssiglistone = [] permlinklistone = [] threads = [] for i in range(nodeTX): t = MyThread(annoy_commit_tx, args=(account, usk, pk, GID, UID, steemd, wallet)) threads.append(t) for t in threads: t.start() for t in threads: t.join() for t in threads: ssig, permlink = t.get_result() ssiglistone.append(ssig) permlinklistone.append(permlink) return ssiglistone, permlinklistone def one_mul_open_tx(account, ssiglistone, userID, permlinklistone, steemd, wallet): threads = [] for i in range(nodeTX): t = MyThread(open_tx, args=(account, ssiglistone[i], userID, permlinklistone[i], steemd, wallet)) threads.append(t) for t in threads: t.start() for t in threads: t.join() def mul_annoy_tx(usk, pk, UID): ssiglist = [] permlinklist = [] threads = [] for i in range(n): t = MyThread(one_mul_annoy_tx, args=(accountlist[i], usk, pk, UID, clientlist[i].steemd, clientlist[i].wallet)) threads.append(t) for t in threads: t.start() for t in threads: t.join() for t in threads: ssig, permlink = t.get_result() ssiglist.append(ssig) permlinklist.append(permlink) return ssiglist, permlinklist def mul_open_tx(ssiglist, permlinklist, userID): threads = [] for i in range(n): t = MyThread(one_mul_open_tx, args=(accountlist[i], ssiglist[i], userID, permlinklist[i], clientlist[i].steemd, clientlist[i]. wallet)) threads.append(t) for t in threads: t.start() for t in threads: t.join() def creat_commit_tx(account, usk, pk, GID, UID, steemd_instance, wallet_instance, title='paper_title', body='paper_body'): commitop, ssig, permlink = annoy_commit(account, usk, pk, GID, UID, title, body, groupID='computer') commit_tx = tx_build(commitop, steemd_instance, wallet_instance, account) return ssig, permlink, commit_tx def creat_num_commit_tx(num, account, usk, pk, GID, UID, steemd_instance, wallet_instance, ttitle='paper_title', tbody='paper_body'): ssiglist = [] permlinklist = [] txlist = [] threads = [] for i in range(num): t = MyThread(creat_commit_tx, args=(account, usk, pk, GID, UID, steemd_instance, wallet_instance, ttitle, tbody)) threads.append(t) for t in threads: t.start() for t in threads: t.join() for t in threads: ssig, permlink, commit_tx = t.get_result() ssiglist.append(ssig) permlinklist.append(permlink) txlist.append(commit_tx) return ssiglist, permlinklist, txlist def creat_open_tx(account, ssig, userID, permlink, steemd_instance, wallet_instance): openop = open_op(account, ssig, userID, permlink) open_tx = tx_build(openop, steemd_instance, wallet_instance, account) return open_tx def creat_num_open_tx(num, account, ssiglist, userID, permlinklist, steemd_instance, wallet_instance): opentxlist = [] threads = [] for i in range(num): t = MyThread(creat_open_tx, args=(account, ssiglist[i], userID, permlinklist[i], steemd_instance, wallet_instance)) threads.append(t) for t in threads: t.start() for t in threads: t.join() for t in threads: opentx = t.get_result() opentxlist.append(opentx) return opentxlist def tx_broad(tx): tx.broadcast() def mul_tx_broad(txlist): threads = [] for tx in txlist: t = MyThread(tx_broad, args=(tx,)) threads.append(t) for t in threads: t.start() for t in threads: t.join() <mask token>
<mask token> class GroupSignature: def __init__(self, groupObj): global util, group util = SecretUtil(groupObj, debug) self.group = groupObj def pkGen(self, h1str): gstr = ( '[6172776968119684165170291368128433652817636448173749093457023424948260385279837018774774149930982188956916913145008943931711059687988096415181819433817738, 8687587692191287108886119971783525001480020593934954052605681527814232399216375005546606067382536684351686344089456732201641997200939472924879001214689004]' ) g2str = ( '[7648994551207171188393784904797547917038803147671542540175090956205316897431443264058433935237605598252399113847934759009659621851760599508222321653067284, 922489308494109901795721463782161260386164061515796674638135394871842997698175772871045949554746517321480649326465484116060959631197509151923296896589720]' ) u0str = ( '[180015966842918451436547451263180245588308971597733548673037049536176684754209695288737508087729924028686259002375511049961436438196866049956546630518033, 1295050197915669955783867959538729894307963685491173858450359845766785488725907727220684060845012524740394664162328817669422178637925195059862486690053923]' ) u1str = ( '[2555472719769037960206282327195096320915753855199743796256065902544200822503613205017219993060986152240852358189992579821797745072366030183800897743028220, 7573705235093543416041007636313631591000596820214067724084077929638801811700093589294454562385664531190678890366928407286293582994146887505184778221562373]' ) u2str = ( '[6876276970903121931083294698771200898345396507892092532649392211995185517437159402176975528760594250374462299539306423347676182899798006533425047523984724, 5323739238507219125881988073888745575030677585404965990610324901624530474522642705344792075909082041735695801098770187248023797265998906693745587936574078]' ) u3str = ( '[6628726193389375981104409894060310698729022957801238449570622103067828518416602275957863668289683360250722835022304456841105526036470008237775051984811323, 862537748555943361001122447731987661405436458862545177179548603003392540530328380518694788420155531238391922289886044667763424887444361610972254938158280]' ) u4str = ( '[8157254219580822599577995921928211211847392705248772673869189421041858895589817404931780741226510985762564598862965174380020566416411083236239871342674775, 4736677719200783513058679582227494204159737596114643136852532046080608159561620208171676599501713934575216178076006396924589443776642926902969084668055006]' ) hstr = ( '[6248393417805371388321299785844751688345516419281230263497475615452026459314582553252281068616984105757749673095320346188725995701858182333525688832492249, 351368339412205819108519989143352052898751906937356995136442397753142226531384069336237369861919799955237545207977716196031001184146017796598836939617335]' ) nstr = ( '[75201312764006187596691102237923705656296213254701583615255122742135170369075831428394751330697143847448434841509551532135632624530360013837581615049543, 3886258599652934715331576083899336629981754505948456216299528998628273512432828729344158706718479567056972375128622026273382126529171409058157562418608963]' ) g = self.group.fromstr(gstr, 10, G1) g2 = self.group.fromstr(g2str, 10, G2) u0 = self.group.fromstr(u0str, 10, G2) u1 = self.group.fromstr(u1str, 10, G2) u2 = self.group.fromstr(u2str, 10, G2) u3 = self.group.fromstr(u3str, 10, G2) u4 = self.group.fromstr(u4str, 10, G2) h = self.group.fromstr(hstr, 10, G1) n = self.group.fromstr(nstr, 10, GT) h1 = self.group.fromstr(h1str, 10, G1) pk = {'g': g, 'g2': g2, 'u0': u0, 'u1': u1, 'u2': u2, 'u3': u3, 'u4': u4, 'h': h, 'n': n, 'h1': h1} return pk def uskGen(self, usklist, pk, GID, UID, L, k): t1 = time() b0 = self.group.gen1_0(1) b3 = self.group.gen1_0(1) b4 = self.group.gen1_0(1) b5 = self.group.gen1_0(1) r2 = self.group.random(ZR) for i in range(k): b0 = b0 * usklist[i]['b0'] ** L[i] b3 = b3 * usklist[i]['b3'] ** L[i] b4 = b4 * usklist[i]['b4'] ** L[i] b5 = b5 * usklist[i]['b5'] ** L[i] b0 = b0 * (pk['u0'] * pk['u1'] ** GID * pk['u2'] ** UID) ** r2 b3 = b3 * pk['u3'] ** r2 b4 = b4 * pk['u4'] ** r2 b5 = b5 * pk['g'] ** r2 usk = {'b0': b0, 'b3': b3, 'b4': b4, 'b5': b5} t2 = time() with open('extracttime.txt', 'a') as f: f.write(str(t2 - t1)) f.write('\n') return usk def LGen(self, n, k): L = [] I = self.group.random(ZR) J = self.group.random(ZR) for i in range(n): L.append(self.group.random(ZR)) L[i].set(1) I.set(i + 1) for j in range(1, k + 1): print(j) J.set(j) if i + 1 != j: L[i] = L[i] * (J / (J - I)) return L def verifyUsk(self, usk, vk, pk, GID, UID): g = pk['g'] g2 = pk['g2'] u0 = pk['u0'] u1 = pk['u1'] u2 = pk['u2'] u3 = pk['u3'] u4 = pk['u4'] b0 = usk['b0'] b5 = usk['b5'] b3 = usk['b3'] b4 = usk['b4'] return pair(g, b0) == pair(vk, g2) * pair(b5, u0) * pair(b5, u1 ** GID ) * pair(b5, u2 ** UID) and pair(g, b3) == pair(b5, u3) and pair(g, b4) == pair(b5, u4) def sign(self, title, usk, pk, GID, UID, groupID): t1 = time() m = self.group.hash(title) b0 = usk['b0'] b3 = usk['b3'] b4 = usk['b4'] b5 = usk['b5'] r4 = self.group.random(ZR) r3 = self.group.random(ZR) k = self.group.random(ZR) c0 = b0 * b3 ** m * b4 ** r4 * (pk['u0'] * pk['u1'] ** GID * pk[ 'u2'] ** UID * pk['u3'] ** m * pk['u4'] ** r4) ** r3 c5 = b5 * pk['g'] ** r3 c6 = pk['u2'] ** UID * pk['u4'] ** r4 e1 = pk['g'] ** k e2 = (pk['u0'] * pk['u1'] ** GID) ** k e3 = pk['n'] ** UID * pair(pk['h1'], pk['g2']) ** k f = pk['u0'] * pk['u1'] ** GID gp = pair(pk['h1'], pk['g2']) k1 = self.group.random(ZR) k2 = self.group.random(ZR) k3 = self.group.random(ZR) r1 = pk['u2'] ** k1 * pk['u4'] ** k2 r2 = pk['g'] ** k3 r3 = f ** k3 t4 = pk['n'] ** k1 * gp ** k3 hashstr = str(r1) + str(r2) + str(r3) + str(t4) c = self.group.hash(hashstr) s1 = k1 + c * UID s2 = k2 + c * r4 s3 = k3 + c * k signature = {'c0': c0, 'c5': c5, 'c6': c6, 'e1': e1, 'e2': e2, 'e3': e3, 'c': c, 's1': s1, 's2': s2, 's3': s3} t2 = time() with open('gssigntime.txt', 'a') as f: f.write(str(t2 - t1)) f.write('\n') print('gs time', t2 - t1) return signature def open(self, okliststr, L, k): t1 = time() oklist = [] for ok in okliststr: oklist.append({'ok1': self.group.fromstr(ok['ok1'], 10, GT), 'ok2': self.group.fromstr(ok['ok2'], 10, GT)}) ok1 = self.group.gen1_0(1) ok2 = self.group.gen1_0(1) for i in range(k): ok1 = ok1 * oklist[i]['ok1'] ** L[i] ok2 = ok2 * oklist[i]['ok2'] ** L[i] t2 = time() with open('opentime.txt', 'a') as f: f.write(str(t2 - t1)) f.write('\n') print('open time', t2 - t1) return ok1 / ok2 def get_usk(userID, GID, UID, h1str='', count=0): pk = {} for i in range(n): vkliststr.append(clientlist[i].get_vk()['vk']) vklist.append(group_signature.group.fromstr(vkliststr[i], 10, G1)) uskliststr.append(clientlist[i].user_extract(userID)) usklist.append({}) usklist[i]['b0'] = group_signature.group.fromstr(uskliststr[i]['b0' ], 10, G2) usklist[i]['b3'] = group_signature.group.fromstr(uskliststr[i]['b3' ], 10, G2) usklist[i]['b4'] = group_signature.group.fromstr(uskliststr[i]['b4' ], 10, G2) usklist[i]['b5'] = group_signature.group.fromstr(uskliststr[i]['b5' ], 10, G1) print(usklist[i]) if h1str == '' or h1str == '0' or h1str == 0: h1str = clientlist[i].get_pk()['pk'] print('h1str', h1str) pk = group_signature.pkGen(h1str) print('pk---------------\n', pk) if group_signature.verifyUsk(usklist[i], vklist[i], pk, GID, UID): count = count + 1 else: print('key is invalide\n\n') usk = group_signature.uskGen(usklist, pk, GID, UID, L, k) print('usk---------------\n', usk) return pk, usk def get_lam(sig): okliststr = [] i = 0 for client in clientlist: okstr = client.get_ok(str(sig['e1']), str(sig['e2'])) print(okstr) okliststr.append(okstr) i = i + 1 if i < k: print('the number of ok is not enough\n') return lam = group_signature.open(okliststr, L, k) return lam def tx_build_broad(op, steemd_instance, wallet_instance, account): tx = TransactionBuilder(steemd_instance=steemd_instance, wallet_instance=wallet_instance, no_broadcast=False) tx.appendOps(op) tx.appendSigner(account, 'posting') tx.sign() re = tx.broadcast() return re <mask token> def annoy_commit(account, usk, pk, GID, UID, title='paper_title', body= 'paper_body', groupID='computer'): annoy_author = 'nya' sig = group_signature.sign(title, usk, pk, GID, UID, groupID) permlink = ''.join(random.choices(string.digits, k=7)) print('permlink is ' + permlink) op = operations.CommitPaper(**{'account': account, 'author': annoy_author, 'permlink': permlink, 'title': title, 'body': body, 'json_metadata': '', 'c0': str(sig['c0']), 'c5': str(sig['c5']), 'c6': str(sig['c6']), 'e1': str(sig['e1']), 'e2': str(sig['e2']), 'e3': str(sig['e3']), 'c': str(sig['c']), 's1': str(sig['s1']), 's2': str(sig['s2']), 's3': str(sig['s3'])}) print('commitop', op) return op, sig, permlink def open_op(account, sig, userID, permlink): lam = get_lam(sig) op = operations.ApplyOpen(**{'account': account, 'author': userID, 'lambda': str(lam), 'permlink': permlink, 'json_metadata': ''}) return op def annoy_commit_tx(account, usk, pk, GID, UID, steemd_instance, wallet_instance, title='paper_title', body='paper_body'): commitop, ssig, permlink = annoy_commit(account, usk, pk, GID, UID, title='paper_title', body='paper_body', groupID='computer') re = tx_build_broad(commitop, steemd_instance, wallet_instance, account) print('commit-re', re) return ssig, permlink def open_tx(account, ssig, userID, permlink, steemd_instance, wallet_instance): openop = open_op(account, ssig, userID, permlink) re = tx_build_broad(openop, steemd_instance, wallet_instance, account) print('open-re', re) def one_mul_annoy_tx(account, usk, pk, UID, steemd, wallet): ssiglistone = [] permlinklistone = [] threads = [] for i in range(nodeTX): t = MyThread(annoy_commit_tx, args=(account, usk, pk, GID, UID, steemd, wallet)) threads.append(t) for t in threads: t.start() for t in threads: t.join() for t in threads: ssig, permlink = t.get_result() ssiglistone.append(ssig) permlinklistone.append(permlink) return ssiglistone, permlinklistone def one_mul_open_tx(account, ssiglistone, userID, permlinklistone, steemd, wallet): threads = [] for i in range(nodeTX): t = MyThread(open_tx, args=(account, ssiglistone[i], userID, permlinklistone[i], steemd, wallet)) threads.append(t) for t in threads: t.start() for t in threads: t.join() def mul_annoy_tx(usk, pk, UID): ssiglist = [] permlinklist = [] threads = [] for i in range(n): t = MyThread(one_mul_annoy_tx, args=(accountlist[i], usk, pk, UID, clientlist[i].steemd, clientlist[i].wallet)) threads.append(t) for t in threads: t.start() for t in threads: t.join() for t in threads: ssig, permlink = t.get_result() ssiglist.append(ssig) permlinklist.append(permlink) return ssiglist, permlinklist def mul_open_tx(ssiglist, permlinklist, userID): threads = [] for i in range(n): t = MyThread(one_mul_open_tx, args=(accountlist[i], ssiglist[i], userID, permlinklist[i], clientlist[i].steemd, clientlist[i]. wallet)) threads.append(t) for t in threads: t.start() for t in threads: t.join() def creat_commit_tx(account, usk, pk, GID, UID, steemd_instance, wallet_instance, title='paper_title', body='paper_body'): commitop, ssig, permlink = annoy_commit(account, usk, pk, GID, UID, title, body, groupID='computer') commit_tx = tx_build(commitop, steemd_instance, wallet_instance, account) return ssig, permlink, commit_tx def creat_num_commit_tx(num, account, usk, pk, GID, UID, steemd_instance, wallet_instance, ttitle='paper_title', tbody='paper_body'): ssiglist = [] permlinklist = [] txlist = [] threads = [] for i in range(num): t = MyThread(creat_commit_tx, args=(account, usk, pk, GID, UID, steemd_instance, wallet_instance, ttitle, tbody)) threads.append(t) for t in threads: t.start() for t in threads: t.join() for t in threads: ssig, permlink, commit_tx = t.get_result() ssiglist.append(ssig) permlinklist.append(permlink) txlist.append(commit_tx) return ssiglist, permlinklist, txlist def creat_open_tx(account, ssig, userID, permlink, steemd_instance, wallet_instance): openop = open_op(account, ssig, userID, permlink) open_tx = tx_build(openop, steemd_instance, wallet_instance, account) return open_tx def creat_num_open_tx(num, account, ssiglist, userID, permlinklist, steemd_instance, wallet_instance): opentxlist = [] threads = [] for i in range(num): t = MyThread(creat_open_tx, args=(account, ssiglist[i], userID, permlinklist[i], steemd_instance, wallet_instance)) threads.append(t) for t in threads: t.start() for t in threads: t.join() for t in threads: opentx = t.get_result() opentxlist.append(opentx) return opentxlist def tx_broad(tx): tx.broadcast() def mul_tx_broad(txlist): threads = [] for tx in txlist: t = MyThread(tx_broad, args=(tx,)) threads.append(t) for t in threads: t.start() for t in threads: t.join() <mask token> def main(): userID = 'zhou' UID = group_signature.group.hash(userID) print('uid', UID) pk, usk = get_usk(userID, GID, UID) ssig, permlink = annoy_commit_tx(accountlist[0], usk, pk, GID, UID, clientlist[0].steemd, clientlist[0].wallet, title='paper_title', body='paper_body') sleep(3) open_tx(accountlist[0], ssig, userID, permlink, clientlist[0].steemd, clientlist[0].wallet) return <mask token>
<mask token> class GroupSignature: def __init__(self, groupObj): global util, group util = SecretUtil(groupObj, debug) self.group = groupObj def pkGen(self, h1str): gstr = ( '[6172776968119684165170291368128433652817636448173749093457023424948260385279837018774774149930982188956916913145008943931711059687988096415181819433817738, 8687587692191287108886119971783525001480020593934954052605681527814232399216375005546606067382536684351686344089456732201641997200939472924879001214689004]' ) g2str = ( '[7648994551207171188393784904797547917038803147671542540175090956205316897431443264058433935237605598252399113847934759009659621851760599508222321653067284, 922489308494109901795721463782161260386164061515796674638135394871842997698175772871045949554746517321480649326465484116060959631197509151923296896589720]' ) u0str = ( '[180015966842918451436547451263180245588308971597733548673037049536176684754209695288737508087729924028686259002375511049961436438196866049956546630518033, 1295050197915669955783867959538729894307963685491173858450359845766785488725907727220684060845012524740394664162328817669422178637925195059862486690053923]' ) u1str = ( '[2555472719769037960206282327195096320915753855199743796256065902544200822503613205017219993060986152240852358189992579821797745072366030183800897743028220, 7573705235093543416041007636313631591000596820214067724084077929638801811700093589294454562385664531190678890366928407286293582994146887505184778221562373]' ) u2str = ( '[6876276970903121931083294698771200898345396507892092532649392211995185517437159402176975528760594250374462299539306423347676182899798006533425047523984724, 5323739238507219125881988073888745575030677585404965990610324901624530474522642705344792075909082041735695801098770187248023797265998906693745587936574078]' ) u3str = ( '[6628726193389375981104409894060310698729022957801238449570622103067828518416602275957863668289683360250722835022304456841105526036470008237775051984811323, 862537748555943361001122447731987661405436458862545177179548603003392540530328380518694788420155531238391922289886044667763424887444361610972254938158280]' ) u4str = ( '[8157254219580822599577995921928211211847392705248772673869189421041858895589817404931780741226510985762564598862965174380020566416411083236239871342674775, 4736677719200783513058679582227494204159737596114643136852532046080608159561620208171676599501713934575216178076006396924589443776642926902969084668055006]' ) hstr = ( '[6248393417805371388321299785844751688345516419281230263497475615452026459314582553252281068616984105757749673095320346188725995701858182333525688832492249, 351368339412205819108519989143352052898751906937356995136442397753142226531384069336237369861919799955237545207977716196031001184146017796598836939617335]' ) nstr = ( '[75201312764006187596691102237923705656296213254701583615255122742135170369075831428394751330697143847448434841509551532135632624530360013837581615049543, 3886258599652934715331576083899336629981754505948456216299528998628273512432828729344158706718479567056972375128622026273382126529171409058157562418608963]' ) g = self.group.fromstr(gstr, 10, G1) g2 = self.group.fromstr(g2str, 10, G2) u0 = self.group.fromstr(u0str, 10, G2) u1 = self.group.fromstr(u1str, 10, G2) u2 = self.group.fromstr(u2str, 10, G2) u3 = self.group.fromstr(u3str, 10, G2) u4 = self.group.fromstr(u4str, 10, G2) h = self.group.fromstr(hstr, 10, G1) n = self.group.fromstr(nstr, 10, GT) h1 = self.group.fromstr(h1str, 10, G1) pk = {'g': g, 'g2': g2, 'u0': u0, 'u1': u1, 'u2': u2, 'u3': u3, 'u4': u4, 'h': h, 'n': n, 'h1': h1} return pk def uskGen(self, usklist, pk, GID, UID, L, k): t1 = time() b0 = self.group.gen1_0(1) b3 = self.group.gen1_0(1) b4 = self.group.gen1_0(1) b5 = self.group.gen1_0(1) r2 = self.group.random(ZR) for i in range(k): b0 = b0 * usklist[i]['b0'] ** L[i] b3 = b3 * usklist[i]['b3'] ** L[i] b4 = b4 * usklist[i]['b4'] ** L[i] b5 = b5 * usklist[i]['b5'] ** L[i] b0 = b0 * (pk['u0'] * pk['u1'] ** GID * pk['u2'] ** UID) ** r2 b3 = b3 * pk['u3'] ** r2 b4 = b4 * pk['u4'] ** r2 b5 = b5 * pk['g'] ** r2 usk = {'b0': b0, 'b3': b3, 'b4': b4, 'b5': b5} t2 = time() with open('extracttime.txt', 'a') as f: f.write(str(t2 - t1)) f.write('\n') return usk def LGen(self, n, k): L = [] I = self.group.random(ZR) J = self.group.random(ZR) for i in range(n): L.append(self.group.random(ZR)) L[i].set(1) I.set(i + 1) for j in range(1, k + 1): print(j) J.set(j) if i + 1 != j: L[i] = L[i] * (J / (J - I)) return L def verifyUsk(self, usk, vk, pk, GID, UID): g = pk['g'] g2 = pk['g2'] u0 = pk['u0'] u1 = pk['u1'] u2 = pk['u2'] u3 = pk['u3'] u4 = pk['u4'] b0 = usk['b0'] b5 = usk['b5'] b3 = usk['b3'] b4 = usk['b4'] return pair(g, b0) == pair(vk, g2) * pair(b5, u0) * pair(b5, u1 ** GID ) * pair(b5, u2 ** UID) and pair(g, b3) == pair(b5, u3) and pair(g, b4) == pair(b5, u4) def sign(self, title, usk, pk, GID, UID, groupID): t1 = time() m = self.group.hash(title) b0 = usk['b0'] b3 = usk['b3'] b4 = usk['b4'] b5 = usk['b5'] r4 = self.group.random(ZR) r3 = self.group.random(ZR) k = self.group.random(ZR) c0 = b0 * b3 ** m * b4 ** r4 * (pk['u0'] * pk['u1'] ** GID * pk[ 'u2'] ** UID * pk['u3'] ** m * pk['u4'] ** r4) ** r3 c5 = b5 * pk['g'] ** r3 c6 = pk['u2'] ** UID * pk['u4'] ** r4 e1 = pk['g'] ** k e2 = (pk['u0'] * pk['u1'] ** GID) ** k e3 = pk['n'] ** UID * pair(pk['h1'], pk['g2']) ** k f = pk['u0'] * pk['u1'] ** GID gp = pair(pk['h1'], pk['g2']) k1 = self.group.random(ZR) k2 = self.group.random(ZR) k3 = self.group.random(ZR) r1 = pk['u2'] ** k1 * pk['u4'] ** k2 r2 = pk['g'] ** k3 r3 = f ** k3 t4 = pk['n'] ** k1 * gp ** k3 hashstr = str(r1) + str(r2) + str(r3) + str(t4) c = self.group.hash(hashstr) s1 = k1 + c * UID s2 = k2 + c * r4 s3 = k3 + c * k signature = {'c0': c0, 'c5': c5, 'c6': c6, 'e1': e1, 'e2': e2, 'e3': e3, 'c': c, 's1': s1, 's2': s2, 's3': s3} t2 = time() with open('gssigntime.txt', 'a') as f: f.write(str(t2 - t1)) f.write('\n') print('gs time', t2 - t1) return signature def open(self, okliststr, L, k): t1 = time() oklist = [] for ok in okliststr: oklist.append({'ok1': self.group.fromstr(ok['ok1'], 10, GT), 'ok2': self.group.fromstr(ok['ok2'], 10, GT)}) ok1 = self.group.gen1_0(1) ok2 = self.group.gen1_0(1) for i in range(k): ok1 = ok1 * oklist[i]['ok1'] ** L[i] ok2 = ok2 * oklist[i]['ok2'] ** L[i] t2 = time() with open('opentime.txt', 'a') as f: f.write(str(t2 - t1)) f.write('\n') print('open time', t2 - t1) return ok1 / ok2 def get_usk(userID, GID, UID, h1str='', count=0): pk = {} for i in range(n): vkliststr.append(clientlist[i].get_vk()['vk']) vklist.append(group_signature.group.fromstr(vkliststr[i], 10, G1)) uskliststr.append(clientlist[i].user_extract(userID)) usklist.append({}) usklist[i]['b0'] = group_signature.group.fromstr(uskliststr[i]['b0' ], 10, G2) usklist[i]['b3'] = group_signature.group.fromstr(uskliststr[i]['b3' ], 10, G2) usklist[i]['b4'] = group_signature.group.fromstr(uskliststr[i]['b4' ], 10, G2) usklist[i]['b5'] = group_signature.group.fromstr(uskliststr[i]['b5' ], 10, G1) print(usklist[i]) if h1str == '' or h1str == '0' or h1str == 0: h1str = clientlist[i].get_pk()['pk'] print('h1str', h1str) pk = group_signature.pkGen(h1str) print('pk---------------\n', pk) if group_signature.verifyUsk(usklist[i], vklist[i], pk, GID, UID): count = count + 1 else: print('key is invalide\n\n') usk = group_signature.uskGen(usklist, pk, GID, UID, L, k) print('usk---------------\n', usk) return pk, usk def get_lam(sig): okliststr = [] i = 0 for client in clientlist: okstr = client.get_ok(str(sig['e1']), str(sig['e2'])) print(okstr) okliststr.append(okstr) i = i + 1 if i < k: print('the number of ok is not enough\n') return lam = group_signature.open(okliststr, L, k) return lam def tx_build_broad(op, steemd_instance, wallet_instance, account): tx = TransactionBuilder(steemd_instance=steemd_instance, wallet_instance=wallet_instance, no_broadcast=False) tx.appendOps(op) tx.appendSigner(account, 'posting') tx.sign() re = tx.broadcast() return re def tx_build(op, steemd_instance, wallet_instance, account): tx = TransactionBuilder(steemd_instance=steemd_instance, wallet_instance=wallet_instance, no_broadcast=False) tx.appendOps(op) tx.appendSigner(account, 'posting') tx.sign() return tx def annoy_commit(account, usk, pk, GID, UID, title='paper_title', body= 'paper_body', groupID='computer'): annoy_author = 'nya' sig = group_signature.sign(title, usk, pk, GID, UID, groupID) permlink = ''.join(random.choices(string.digits, k=7)) print('permlink is ' + permlink) op = operations.CommitPaper(**{'account': account, 'author': annoy_author, 'permlink': permlink, 'title': title, 'body': body, 'json_metadata': '', 'c0': str(sig['c0']), 'c5': str(sig['c5']), 'c6': str(sig['c6']), 'e1': str(sig['e1']), 'e2': str(sig['e2']), 'e3': str(sig['e3']), 'c': str(sig['c']), 's1': str(sig['s1']), 's2': str(sig['s2']), 's3': str(sig['s3'])}) print('commitop', op) return op, sig, permlink def open_op(account, sig, userID, permlink): lam = get_lam(sig) op = operations.ApplyOpen(**{'account': account, 'author': userID, 'lambda': str(lam), 'permlink': permlink, 'json_metadata': ''}) return op def annoy_commit_tx(account, usk, pk, GID, UID, steemd_instance, wallet_instance, title='paper_title', body='paper_body'): commitop, ssig, permlink = annoy_commit(account, usk, pk, GID, UID, title='paper_title', body='paper_body', groupID='computer') re = tx_build_broad(commitop, steemd_instance, wallet_instance, account) print('commit-re', re) return ssig, permlink def open_tx(account, ssig, userID, permlink, steemd_instance, wallet_instance): openop = open_op(account, ssig, userID, permlink) re = tx_build_broad(openop, steemd_instance, wallet_instance, account) print('open-re', re) def one_mul_annoy_tx(account, usk, pk, UID, steemd, wallet): ssiglistone = [] permlinklistone = [] threads = [] for i in range(nodeTX): t = MyThread(annoy_commit_tx, args=(account, usk, pk, GID, UID, steemd, wallet)) threads.append(t) for t in threads: t.start() for t in threads: t.join() for t in threads: ssig, permlink = t.get_result() ssiglistone.append(ssig) permlinklistone.append(permlink) return ssiglistone, permlinklistone def one_mul_open_tx(account, ssiglistone, userID, permlinklistone, steemd, wallet): threads = [] for i in range(nodeTX): t = MyThread(open_tx, args=(account, ssiglistone[i], userID, permlinklistone[i], steemd, wallet)) threads.append(t) for t in threads: t.start() for t in threads: t.join() def mul_annoy_tx(usk, pk, UID): ssiglist = [] permlinklist = [] threads = [] for i in range(n): t = MyThread(one_mul_annoy_tx, args=(accountlist[i], usk, pk, UID, clientlist[i].steemd, clientlist[i].wallet)) threads.append(t) for t in threads: t.start() for t in threads: t.join() for t in threads: ssig, permlink = t.get_result() ssiglist.append(ssig) permlinklist.append(permlink) return ssiglist, permlinklist def mul_open_tx(ssiglist, permlinklist, userID): threads = [] for i in range(n): t = MyThread(one_mul_open_tx, args=(accountlist[i], ssiglist[i], userID, permlinklist[i], clientlist[i].steemd, clientlist[i]. wallet)) threads.append(t) for t in threads: t.start() for t in threads: t.join() def creat_commit_tx(account, usk, pk, GID, UID, steemd_instance, wallet_instance, title='paper_title', body='paper_body'): commitop, ssig, permlink = annoy_commit(account, usk, pk, GID, UID, title, body, groupID='computer') commit_tx = tx_build(commitop, steemd_instance, wallet_instance, account) return ssig, permlink, commit_tx def creat_num_commit_tx(num, account, usk, pk, GID, UID, steemd_instance, wallet_instance, ttitle='paper_title', tbody='paper_body'): ssiglist = [] permlinklist = [] txlist = [] threads = [] for i in range(num): t = MyThread(creat_commit_tx, args=(account, usk, pk, GID, UID, steemd_instance, wallet_instance, ttitle, tbody)) threads.append(t) for t in threads: t.start() for t in threads: t.join() for t in threads: ssig, permlink, commit_tx = t.get_result() ssiglist.append(ssig) permlinklist.append(permlink) txlist.append(commit_tx) return ssiglist, permlinklist, txlist def creat_open_tx(account, ssig, userID, permlink, steemd_instance, wallet_instance): openop = open_op(account, ssig, userID, permlink) open_tx = tx_build(openop, steemd_instance, wallet_instance, account) return open_tx def creat_num_open_tx(num, account, ssiglist, userID, permlinklist, steemd_instance, wallet_instance): opentxlist = [] threads = [] for i in range(num): t = MyThread(creat_open_tx, args=(account, ssiglist[i], userID, permlinklist[i], steemd_instance, wallet_instance)) threads.append(t) for t in threads: t.start() for t in threads: t.join() for t in threads: opentx = t.get_result() opentxlist.append(opentx) return opentxlist def tx_broad(tx): tx.broadcast() def mul_tx_broad(txlist): threads = [] for tx in txlist: t = MyThread(tx_broad, args=(tx,)) threads.append(t) for t in threads: t.start() for t in threads: t.join() <mask token> for i in range(n): clientlist.append(steem.Steem(nodes=[nodelist[i]], keys=keylist[i])) <mask token> def main(): userID = 'zhou' UID = group_signature.group.hash(userID) print('uid', UID) pk, usk = get_usk(userID, GID, UID) ssig, permlink = annoy_commit_tx(accountlist[0], usk, pk, GID, UID, clientlist[0].steemd, clientlist[0].wallet, title='paper_title', body='paper_body') sleep(3) open_tx(accountlist[0], ssig, userID, permlink, clientlist[0].steemd, clientlist[0].wallet) return if __name__ == '__main__': main() print('end')
import random import string import steembase import struct import steem from time import sleep from time import time from steem.transactionbuilder import TransactionBuilder from steembase import operations from steembase.transactions import SignedTransaction from resultthread import MyThread from charm.toolbox.pairinggroup import PairingGroup, ZR, G1, G2, GT, pair from charm.toolbox.secretutil import SecretUtil class GroupSignature: def __init__(self, groupObj): global util, group util = SecretUtil(groupObj, debug) self.group = groupObj def pkGen(self, h1str): gstr = ( '[6172776968119684165170291368128433652817636448173749093457023424948260385279837018774774149930982188956916913145008943931711059687988096415181819433817738, 8687587692191287108886119971783525001480020593934954052605681527814232399216375005546606067382536684351686344089456732201641997200939472924879001214689004]' ) g2str = ( '[7648994551207171188393784904797547917038803147671542540175090956205316897431443264058433935237605598252399113847934759009659621851760599508222321653067284, 922489308494109901795721463782161260386164061515796674638135394871842997698175772871045949554746517321480649326465484116060959631197509151923296896589720]' ) u0str = ( '[180015966842918451436547451263180245588308971597733548673037049536176684754209695288737508087729924028686259002375511049961436438196866049956546630518033, 1295050197915669955783867959538729894307963685491173858450359845766785488725907727220684060845012524740394664162328817669422178637925195059862486690053923]' ) u1str = ( '[2555472719769037960206282327195096320915753855199743796256065902544200822503613205017219993060986152240852358189992579821797745072366030183800897743028220, 7573705235093543416041007636313631591000596820214067724084077929638801811700093589294454562385664531190678890366928407286293582994146887505184778221562373]' ) u2str = ( '[6876276970903121931083294698771200898345396507892092532649392211995185517437159402176975528760594250374462299539306423347676182899798006533425047523984724, 5323739238507219125881988073888745575030677585404965990610324901624530474522642705344792075909082041735695801098770187248023797265998906693745587936574078]' ) u3str = ( '[6628726193389375981104409894060310698729022957801238449570622103067828518416602275957863668289683360250722835022304456841105526036470008237775051984811323, 862537748555943361001122447731987661405436458862545177179548603003392540530328380518694788420155531238391922289886044667763424887444361610972254938158280]' ) u4str = ( '[8157254219580822599577995921928211211847392705248772673869189421041858895589817404931780741226510985762564598862965174380020566416411083236239871342674775, 4736677719200783513058679582227494204159737596114643136852532046080608159561620208171676599501713934575216178076006396924589443776642926902969084668055006]' ) hstr = ( '[6248393417805371388321299785844751688345516419281230263497475615452026459314582553252281068616984105757749673095320346188725995701858182333525688832492249, 351368339412205819108519989143352052898751906937356995136442397753142226531384069336237369861919799955237545207977716196031001184146017796598836939617335]' ) nstr = ( '[75201312764006187596691102237923705656296213254701583615255122742135170369075831428394751330697143847448434841509551532135632624530360013837581615049543, 3886258599652934715331576083899336629981754505948456216299528998628273512432828729344158706718479567056972375128622026273382126529171409058157562418608963]' ) g = self.group.fromstr(gstr, 10, G1) g2 = self.group.fromstr(g2str, 10, G2) u0 = self.group.fromstr(u0str, 10, G2) u1 = self.group.fromstr(u1str, 10, G2) u2 = self.group.fromstr(u2str, 10, G2) u3 = self.group.fromstr(u3str, 10, G2) u4 = self.group.fromstr(u4str, 10, G2) h = self.group.fromstr(hstr, 10, G1) n = self.group.fromstr(nstr, 10, GT) h1 = self.group.fromstr(h1str, 10, G1) pk = {'g': g, 'g2': g2, 'u0': u0, 'u1': u1, 'u2': u2, 'u3': u3, 'u4': u4, 'h': h, 'n': n, 'h1': h1} return pk def uskGen(self, usklist, pk, GID, UID, L, k): t1 = time() b0 = self.group.gen1_0(1) b3 = self.group.gen1_0(1) b4 = self.group.gen1_0(1) b5 = self.group.gen1_0(1) r2 = self.group.random(ZR) for i in range(k): b0 = b0 * usklist[i]['b0'] ** L[i] b3 = b3 * usklist[i]['b3'] ** L[i] b4 = b4 * usklist[i]['b4'] ** L[i] b5 = b5 * usklist[i]['b5'] ** L[i] b0 = b0 * (pk['u0'] * pk['u1'] ** GID * pk['u2'] ** UID) ** r2 b3 = b3 * pk['u3'] ** r2 b4 = b4 * pk['u4'] ** r2 b5 = b5 * pk['g'] ** r2 usk = {'b0': b0, 'b3': b3, 'b4': b4, 'b5': b5} t2 = time() with open('extracttime.txt', 'a') as f: f.write(str(t2 - t1)) f.write('\n') return usk def LGen(self, n, k): L = [] I = self.group.random(ZR) J = self.group.random(ZR) for i in range(n): L.append(self.group.random(ZR)) L[i].set(1) I.set(i + 1) for j in range(1, k + 1): print(j) J.set(j) if i + 1 != j: L[i] = L[i] * (J / (J - I)) return L def verifyUsk(self, usk, vk, pk, GID, UID): g = pk['g'] g2 = pk['g2'] u0 = pk['u0'] u1 = pk['u1'] u2 = pk['u2'] u3 = pk['u3'] u4 = pk['u4'] b0 = usk['b0'] b5 = usk['b5'] b3 = usk['b3'] b4 = usk['b4'] return pair(g, b0) == pair(vk, g2) * pair(b5, u0) * pair(b5, u1 ** GID ) * pair(b5, u2 ** UID) and pair(g, b3) == pair(b5, u3) and pair(g, b4) == pair(b5, u4) def sign(self, title, usk, pk, GID, UID, groupID): t1 = time() m = self.group.hash(title) b0 = usk['b0'] b3 = usk['b3'] b4 = usk['b4'] b5 = usk['b5'] r4 = self.group.random(ZR) r3 = self.group.random(ZR) k = self.group.random(ZR) c0 = b0 * b3 ** m * b4 ** r4 * (pk['u0'] * pk['u1'] ** GID * pk[ 'u2'] ** UID * pk['u3'] ** m * pk['u4'] ** r4) ** r3 c5 = b5 * pk['g'] ** r3 c6 = pk['u2'] ** UID * pk['u4'] ** r4 e1 = pk['g'] ** k e2 = (pk['u0'] * pk['u1'] ** GID) ** k e3 = pk['n'] ** UID * pair(pk['h1'], pk['g2']) ** k f = pk['u0'] * pk['u1'] ** GID gp = pair(pk['h1'], pk['g2']) k1 = self.group.random(ZR) k2 = self.group.random(ZR) k3 = self.group.random(ZR) r1 = pk['u2'] ** k1 * pk['u4'] ** k2 r2 = pk['g'] ** k3 r3 = f ** k3 t4 = pk['n'] ** k1 * gp ** k3 hashstr = str(r1) + str(r2) + str(r3) + str(t4) c = self.group.hash(hashstr) s1 = k1 + c * UID s2 = k2 + c * r4 s3 = k3 + c * k signature = {'c0': c0, 'c5': c5, 'c6': c6, 'e1': e1, 'e2': e2, 'e3': e3, 'c': c, 's1': s1, 's2': s2, 's3': s3} t2 = time() with open('gssigntime.txt', 'a') as f: f.write(str(t2 - t1)) f.write('\n') print('gs time', t2 - t1) return signature def open(self, okliststr, L, k): t1 = time() oklist = [] for ok in okliststr: oklist.append({'ok1': self.group.fromstr(ok['ok1'], 10, GT), 'ok2': self.group.fromstr(ok['ok2'], 10, GT)}) ok1 = self.group.gen1_0(1) ok2 = self.group.gen1_0(1) for i in range(k): ok1 = ok1 * oklist[i]['ok1'] ** L[i] ok2 = ok2 * oklist[i]['ok2'] ** L[i] t2 = time() with open('opentime.txt', 'a') as f: f.write(str(t2 - t1)) f.write('\n') print('open time', t2 - t1) return ok1 / ok2 def get_usk(userID, GID, UID, h1str='', count=0): pk = {} for i in range(n): vkliststr.append(clientlist[i].get_vk()['vk']) vklist.append(group_signature.group.fromstr(vkliststr[i], 10, G1)) uskliststr.append(clientlist[i].user_extract(userID)) usklist.append({}) usklist[i]['b0'] = group_signature.group.fromstr(uskliststr[i]['b0' ], 10, G2) usklist[i]['b3'] = group_signature.group.fromstr(uskliststr[i]['b3' ], 10, G2) usklist[i]['b4'] = group_signature.group.fromstr(uskliststr[i]['b4' ], 10, G2) usklist[i]['b5'] = group_signature.group.fromstr(uskliststr[i]['b5' ], 10, G1) print(usklist[i]) if h1str == '' or h1str == '0' or h1str == 0: h1str = clientlist[i].get_pk()['pk'] print('h1str', h1str) pk = group_signature.pkGen(h1str) print('pk---------------\n', pk) if group_signature.verifyUsk(usklist[i], vklist[i], pk, GID, UID): count = count + 1 else: print('key is invalide\n\n') usk = group_signature.uskGen(usklist, pk, GID, UID, L, k) print('usk---------------\n', usk) return pk, usk def get_lam(sig): okliststr = [] i = 0 for client in clientlist: okstr = client.get_ok(str(sig['e1']), str(sig['e2'])) print(okstr) okliststr.append(okstr) i = i + 1 if i < k: print('the number of ok is not enough\n') return lam = group_signature.open(okliststr, L, k) return lam def tx_build_broad(op, steemd_instance, wallet_instance, account): tx = TransactionBuilder(steemd_instance=steemd_instance, wallet_instance=wallet_instance, no_broadcast=False) tx.appendOps(op) tx.appendSigner(account, 'posting') tx.sign() re = tx.broadcast() return re def tx_build(op, steemd_instance, wallet_instance, account): tx = TransactionBuilder(steemd_instance=steemd_instance, wallet_instance=wallet_instance, no_broadcast=False) tx.appendOps(op) tx.appendSigner(account, 'posting') tx.sign() return tx def annoy_commit(account, usk, pk, GID, UID, title='paper_title', body= 'paper_body', groupID='computer'): annoy_author = 'nya' sig = group_signature.sign(title, usk, pk, GID, UID, groupID) permlink = ''.join(random.choices(string.digits, k=7)) print('permlink is ' + permlink) op = operations.CommitPaper(**{'account': account, 'author': annoy_author, 'permlink': permlink, 'title': title, 'body': body, 'json_metadata': '', 'c0': str(sig['c0']), 'c5': str(sig['c5']), 'c6': str(sig['c6']), 'e1': str(sig['e1']), 'e2': str(sig['e2']), 'e3': str(sig['e3']), 'c': str(sig['c']), 's1': str(sig['s1']), 's2': str(sig['s2']), 's3': str(sig['s3'])}) print('commitop', op) return op, sig, permlink def open_op(account, sig, userID, permlink): lam = get_lam(sig) op = operations.ApplyOpen(**{'account': account, 'author': userID, 'lambda': str(lam), 'permlink': permlink, 'json_metadata': ''}) return op def annoy_commit_tx(account, usk, pk, GID, UID, steemd_instance, wallet_instance, title='paper_title', body='paper_body'): commitop, ssig, permlink = annoy_commit(account, usk, pk, GID, UID, title='paper_title', body='paper_body', groupID='computer') re = tx_build_broad(commitop, steemd_instance, wallet_instance, account) print('commit-re', re) return ssig, permlink def open_tx(account, ssig, userID, permlink, steemd_instance, wallet_instance): openop = open_op(account, ssig, userID, permlink) re = tx_build_broad(openop, steemd_instance, wallet_instance, account) print('open-re', re) def one_mul_annoy_tx(account, usk, pk, UID, steemd, wallet): ssiglistone = [] permlinklistone = [] threads = [] for i in range(nodeTX): t = MyThread(annoy_commit_tx, args=(account, usk, pk, GID, UID, steemd, wallet)) threads.append(t) for t in threads: t.start() for t in threads: t.join() for t in threads: ssig, permlink = t.get_result() ssiglistone.append(ssig) permlinklistone.append(permlink) return ssiglistone, permlinklistone def one_mul_open_tx(account, ssiglistone, userID, permlinklistone, steemd, wallet): threads = [] for i in range(nodeTX): t = MyThread(open_tx, args=(account, ssiglistone[i], userID, permlinklistone[i], steemd, wallet)) threads.append(t) for t in threads: t.start() for t in threads: t.join() def mul_annoy_tx(usk, pk, UID): ssiglist = [] permlinklist = [] threads = [] for i in range(n): t = MyThread(one_mul_annoy_tx, args=(accountlist[i], usk, pk, UID, clientlist[i].steemd, clientlist[i].wallet)) threads.append(t) for t in threads: t.start() for t in threads: t.join() for t in threads: ssig, permlink = t.get_result() ssiglist.append(ssig) permlinklist.append(permlink) return ssiglist, permlinklist def mul_open_tx(ssiglist, permlinklist, userID): threads = [] for i in range(n): t = MyThread(one_mul_open_tx, args=(accountlist[i], ssiglist[i], userID, permlinklist[i], clientlist[i].steemd, clientlist[i]. wallet)) threads.append(t) for t in threads: t.start() for t in threads: t.join() def creat_commit_tx(account, usk, pk, GID, UID, steemd_instance, wallet_instance, title='paper_title', body='paper_body'): commitop, ssig, permlink = annoy_commit(account, usk, pk, GID, UID, title, body, groupID='computer') commit_tx = tx_build(commitop, steemd_instance, wallet_instance, account) return ssig, permlink, commit_tx def creat_num_commit_tx(num, account, usk, pk, GID, UID, steemd_instance, wallet_instance, ttitle='paper_title', tbody='paper_body'): ssiglist = [] permlinklist = [] txlist = [] threads = [] for i in range(num): t = MyThread(creat_commit_tx, args=(account, usk, pk, GID, UID, steemd_instance, wallet_instance, ttitle, tbody)) threads.append(t) for t in threads: t.start() for t in threads: t.join() for t in threads: ssig, permlink, commit_tx = t.get_result() ssiglist.append(ssig) permlinklist.append(permlink) txlist.append(commit_tx) return ssiglist, permlinklist, txlist def creat_open_tx(account, ssig, userID, permlink, steemd_instance, wallet_instance): openop = open_op(account, ssig, userID, permlink) open_tx = tx_build(openop, steemd_instance, wallet_instance, account) return open_tx def creat_num_open_tx(num, account, ssiglist, userID, permlinklist, steemd_instance, wallet_instance): opentxlist = [] threads = [] for i in range(num): t = MyThread(creat_open_tx, args=(account, ssiglist[i], userID, permlinklist[i], steemd_instance, wallet_instance)) threads.append(t) for t in threads: t.start() for t in threads: t.join() for t in threads: opentx = t.get_result() opentxlist.append(opentx) return opentxlist def tx_broad(tx): tx.broadcast() def mul_tx_broad(txlist): threads = [] for tx in txlist: t = MyThread(tx_broad, args=(tx,)) threads.append(t) for t in threads: t.start() for t in threads: t.join() nodeTX = 5 k = 2 n = 3 nodelist = ['http://101.76.208.83:8090', 'http://101.76.208.83:8094', 'http://101.76.208.83:8098'] accountlist = ['initminer2', 'zy1', 'zy2', 'zy3', 'zy4', 'zy5', 'zy6', 'zy7', 'zy8', 'zy9', 'zy10', 'zy11', 'zy12', 'zy13', 'zy14', 'zy15', 'zy16', 'zy17', 'zy18', 'zy19', 'zy20'] keylist = ['5J3yMruND2TADZ7cZc6Cnp4VePrnehei2wvGdnLgf3aEj2nDGhc', '5Hs4jcm5X4sanCnUKNFCjrq2irN8sH1Krzsb13Qd6DHqutZbhqu', '5KPLLsQ3MuWgKvNYqAFRjziWZenBqefDhSe4K1uYuj8hT3zQoKv'] debug = True groupobj = PairingGroup('SS512') group_signature = GroupSignature(groupobj) L = group_signature.LGen(n, k) clientlist = [] for i in range(n): clientlist.append(steem.Steem(nodes=[nodelist[i]], keys=keylist[i])) vkliststr = [] uskliststr = [] vklist = [] usklist = [] steembase.chains.known_chains['TEST'] = {'chain_id': '18dcf0a285365fc58b71f18b3d3fec954aa0c141c44e4e5cb4cf777b9eab274e', 'prefix': 'TST', 'steem_symbol': 'TESTS', 'sbd_symbol': 'TBD', 'vests_symbol': 'VESTS'} groupID = 'computer' GID = group_signature.group.hash(groupID) def main(): userID = 'zhou' UID = group_signature.group.hash(userID) print('uid', UID) pk, usk = get_usk(userID, GID, UID) ssig, permlink = annoy_commit_tx(accountlist[0], usk, pk, GID, UID, clientlist[0].steemd, clientlist[0].wallet, title='paper_title', body='paper_body') sleep(3) open_tx(accountlist[0], ssig, userID, permlink, clientlist[0].steemd, clientlist[0].wallet) return if __name__ == '__main__': main() print('end')
import random import string import steembase import struct import steem from time import sleep from time import time from steem.transactionbuilder import TransactionBuilder from steembase import operations from steembase.transactions import SignedTransaction from resultthread import MyThread from charm.toolbox.pairinggroup import PairingGroup, ZR, G1, G2, GT, pair from charm.toolbox.secretutil import SecretUtil class GroupSignature(): def __init__(self, groupObj): global util, group util = SecretUtil(groupObj, debug) self.group = groupObj def pkGen(self, h1str): gstr = "[6172776968119684165170291368128433652817636448173749093457023424948260385279837018774774149930982188956916913145008943931711059687988096415181819433817738, 8687587692191287108886119971783525001480020593934954052605681527814232399216375005546606067382536684351686344089456732201641997200939472924879001214689004]" g2str = "[7648994551207171188393784904797547917038803147671542540175090956205316897431443264058433935237605598252399113847934759009659621851760599508222321653067284, 922489308494109901795721463782161260386164061515796674638135394871842997698175772871045949554746517321480649326465484116060959631197509151923296896589720]" u0str = "[180015966842918451436547451263180245588308971597733548673037049536176684754209695288737508087729924028686259002375511049961436438196866049956546630518033, 1295050197915669955783867959538729894307963685491173858450359845766785488725907727220684060845012524740394664162328817669422178637925195059862486690053923]" u1str = "[2555472719769037960206282327195096320915753855199743796256065902544200822503613205017219993060986152240852358189992579821797745072366030183800897743028220, 7573705235093543416041007636313631591000596820214067724084077929638801811700093589294454562385664531190678890366928407286293582994146887505184778221562373]" u2str = "[6876276970903121931083294698771200898345396507892092532649392211995185517437159402176975528760594250374462299539306423347676182899798006533425047523984724, 5323739238507219125881988073888745575030677585404965990610324901624530474522642705344792075909082041735695801098770187248023797265998906693745587936574078]" u3str = "[6628726193389375981104409894060310698729022957801238449570622103067828518416602275957863668289683360250722835022304456841105526036470008237775051984811323, 862537748555943361001122447731987661405436458862545177179548603003392540530328380518694788420155531238391922289886044667763424887444361610972254938158280]" u4str = "[8157254219580822599577995921928211211847392705248772673869189421041858895589817404931780741226510985762564598862965174380020566416411083236239871342674775, 4736677719200783513058679582227494204159737596114643136852532046080608159561620208171676599501713934575216178076006396924589443776642926902969084668055006]" hstr = "[6248393417805371388321299785844751688345516419281230263497475615452026459314582553252281068616984105757749673095320346188725995701858182333525688832492249, 351368339412205819108519989143352052898751906937356995136442397753142226531384069336237369861919799955237545207977716196031001184146017796598836939617335]" nstr = "[75201312764006187596691102237923705656296213254701583615255122742135170369075831428394751330697143847448434841509551532135632624530360013837581615049543, 3886258599652934715331576083899336629981754505948456216299528998628273512432828729344158706718479567056972375128622026273382126529171409058157562418608963]" g = self.group.fromstr(gstr, 10, G1) g2 = self.group.fromstr(g2str, 10, G2) u0 = self.group.fromstr(u0str, 10, G2) u1 = self.group.fromstr(u1str, 10, G2) u2 = self.group.fromstr(u2str, 10, G2) u3 = self.group.fromstr(u3str, 10, G2) u4 = self.group.fromstr(u4str, 10, G2) h = self.group.fromstr(hstr, 10, G1) n = self.group.fromstr(nstr, 10, GT) h1 = self.group.fromstr(h1str, 10, G1) pk = {'g': g, 'g2': g2, 'u0': u0, 'u1': u1, 'u2': u2, 'u3': u3, 'u4': u4, 'h': h, 'n': n, 'h1': h1} return pk def uskGen(self, usklist, pk, GID, UID, L, k): t1 = time() b0 = self.group.gen1_0(1) b3 = self.group.gen1_0(1) b4 = self.group.gen1_0(1) b5 = self.group.gen1_0(1) r2 = self.group.random(ZR) for i in range(k): b0 = b0 * (usklist[i]['b0'] ** L[i]) b3 = b3 * (usklist[i]['b3'] ** L[i]) b4 = b4 * (usklist[i]['b4'] ** L[i]) b5 = b5 * (usklist[i]['b5'] ** L[i]) b0 = b0 * (pk['u0'] * (pk['u1'] ** GID) * (pk['u2'] ** UID)) ** r2 b3 = b3 * (pk['u3'] ** r2) b4 = b4 * (pk['u4'] ** r2) b5 = b5 * (pk['g'] ** r2) usk = {'b0': b0, 'b3': b3, 'b4': b4, 'b5': b5} t2 = time() with open("extracttime.txt", 'a') as f: f.write(str(t2 - t1)) f.write('\n') return usk def LGen(self, n, k): L = [] I = self.group.random(ZR) J = self.group.random(ZR) for i in range(n): L.append(self.group.random(ZR)) L[i].set(1) I.set(i + 1) for j in range(1, k + 1): print(j) J.set(j) if (i + 1) != j: L[i] = L[i] * ((J) / (J - I)) return L def verifyUsk(self, usk, vk, pk, GID, UID): g = pk['g'] g2 = pk['g2'] u0 = pk['u0'] u1 = pk['u1'] u2 = pk['u2'] u3 = pk['u3'] u4 = pk['u4'] b0 = usk['b0'] b5 = usk['b5'] b3 = usk['b3'] b4 = usk['b4'] return pair(g, b0) == (pair(vk, g2) * pair(b5, u0) * pair(b5, u1 ** GID) * pair(b5, u2 ** UID)) and pair(g, b3) == pair( b5, u3) and pair(g, b4) == pair(b5, u4) def sign(self, title, usk, pk, GID, UID, groupID): t1 = time() m = self.group.hash(title) b0 = usk['b0'] b3 = usk['b3'] b4 = usk['b4'] b5 = usk['b5'] r4 = self.group.random(ZR) r3 = self.group.random(ZR) k = self.group.random(ZR) c0 = b0 * (b3 ** m) * (b4 ** r4) * ( (pk['u0'] * (pk['u1'] ** GID) * (pk['u2'] ** UID) * (pk['u3'] ** m) * (pk['u4'] ** r4)) ** r3) c5 = b5 * (pk['g'] ** r3) c6 = (pk['u2'] ** UID) * (pk['u4'] ** r4) e1 = pk['g'] ** k e2 = (pk['u0'] * (pk['u1'] ** GID)) ** k e3 = (pk['n'] ** UID) * (pair(pk['h1'], pk['g2']) ** k) # 产生pok f = pk['u0'] * (pk['u1'] ** GID) gp = pair(pk['h1'], pk['g2']) k1 = self.group.random(ZR) k2 = self.group.random(ZR) k3 = self.group.random(ZR) r1 = (pk['u2'] ** k1) * (pk['u4'] ** k2) r2 = pk['g'] ** k3 r3 = f ** k3 t4 = (pk['n'] ** k1) * (gp ** k3) hashstr = str(r1) + str(r2) + str(r3) + str(t4) c = self.group.hash(hashstr) s1 = k1 + c * UID s2 = k2 + c * r4 s3 = k3 + c * k signature = {'c0': c0, 'c5': c5, 'c6': c6, 'e1': e1, 'e2': e2, 'e3': e3, 'c': c, 's1': s1, 's2': s2, 's3': s3} t2 = time() with open("gssigntime.txt", 'a') as f: f.write(str(t2 - t1)) f.write('\n') print("gs time", t2 - t1) return signature def open(self, okliststr, L, k): t1 = time() oklist = [] for ok in okliststr: oklist.append({'ok1': self.group.fromstr(ok['ok1'], 10, GT), 'ok2': self.group.fromstr(ok['ok2'], 10, GT)}) ok1 = self.group.gen1_0(1) ok2 = self.group.gen1_0(1) for i in range(k): ok1 = ok1 * (oklist[i]['ok1'] ** L[i]) ok2 = ok2 * (oklist[i]['ok2'] ** L[i]) t2 = time() with open("opentime.txt", 'a') as f: f.write(str(t2 - t1)) f.write('\n') print("open time", t2 - t1) return ok1 / ok2 def get_usk(userID, GID, UID, h1str="", count=0): pk = {} for i in range(n): vkliststr.append(clientlist[i].get_vk()['vk']) vklist.append(group_signature.group.fromstr(vkliststr[i], 10, G1)) uskliststr.append(clientlist[i].user_extract(userID)) usklist.append({}) usklist[i]['b0'] = group_signature.group.fromstr(uskliststr[i]['b0'], 10, G2) usklist[i]['b3'] = group_signature.group.fromstr(uskliststr[i]['b3'], 10, G2) usklist[i]['b4'] = group_signature.group.fromstr(uskliststr[i]['b4'], 10, G2) usklist[i]['b5'] = group_signature.group.fromstr(uskliststr[i]['b5'], 10, G1) print(usklist[i]) if h1str == "" or h1str == "0" or h1str == 0: h1str = clientlist[i].get_pk()['pk'] print("h1str", h1str) pk = group_signature.pkGen(h1str) print("pk---------------\n", pk) if (group_signature.verifyUsk(usklist[i], vklist[i], pk, GID, UID)): count = count + 1 else: print("key is invalide\n\n") usk = group_signature.uskGen(usklist, pk, GID, UID, L, k) print("usk---------------\n", usk) return pk, usk def get_lam(sig): okliststr = [] i = 0 for client in clientlist: okstr = client.get_ok(str(sig['e1']), str(sig['e2'])) print(okstr) okliststr.append(okstr) i = i + 1 if i < k: print("the number of ok is not enough\n") return lam = group_signature.open(okliststr, L, k) return lam def tx_build_broad(op, steemd_instance, wallet_instance, account): tx = TransactionBuilder(steemd_instance=steemd_instance, wallet_instance=wallet_instance, no_broadcast=False) tx.appendOps(op) tx.appendSigner(account, 'posting') tx.sign() # print("txsign",tx) re = tx.broadcast() return re def tx_build(op, steemd_instance, wallet_instance, account): tx = TransactionBuilder(steemd_instance=steemd_instance, wallet_instance=wallet_instance, no_broadcast=False) tx.appendOps(op) tx.appendSigner(account, 'posting') tx.sign() # print("txsign",tx) # re = tx.broadcast() return tx def annoy_commit(account, usk, pk, GID, UID, title="paper_title", body="paper_body", groupID="computer"): annoy_author = 'nya' # group signature ------title 必须 这里面是对title进行hash 然后使用usk对hash进行签名 sig = group_signature.sign(title, usk, pk, GID, UID, groupID) permlink = ''.join(random.choices(string.digits, k=7)) print("permlink is " + permlink) op = operations.CommitPaper( **{ "account": account, "author": annoy_author, "permlink": permlink, "title": title, "body": body, "json_metadata": "", "c0": str(sig['c0']), "c5": str(sig['c5']), "c6": str(sig['c6']), "e1": str(sig['e1']), "e2": str(sig['e2']), "e3": str(sig['e3']), "c": str(sig['c']), "s1": str(sig['s1']), "s2": str(sig['s2']), "s3": str(sig['s3']) } ) print("commitop", op) return op, sig, permlink def open_op(account, sig, userID, permlink): lam = get_lam(sig) # E = (pk['n'] ** UID) * lam #计算出e3 即签名的e3 判断是否相等 op = operations.ApplyOpen( **{ 'account': account, 'author': userID, 'lambda': str(lam), 'permlink': permlink, 'json_metadata': "" } ) return op def annoy_commit_tx(account, usk, pk, GID, UID, steemd_instance, wallet_instance, title="paper_title", body="paper_body"): commitop, ssig, permlink = annoy_commit(account, usk, pk, GID, UID, title="paper_title", body="paper_body", groupID="computer") re = tx_build_broad(commitop, steemd_instance, wallet_instance, account) print("commit-re", re) return ssig, permlink def open_tx(account, ssig, userID, permlink, steemd_instance, wallet_instance): openop = open_op(account, ssig, userID, permlink) re = tx_build_broad(openop, steemd_instance, wallet_instance, account) print("open-re", re) # 一个节点的 并发产生交易 def one_mul_annoy_tx(account, usk, pk, UID, steemd, wallet): ssiglistone = [] permlinklistone = [] threads = [] for i in range(nodeTX): t = MyThread(annoy_commit_tx, args=(account, usk, pk, GID, UID, steemd, wallet)) threads.append(t) for t in threads: t.start() for t in threads: t.join() for t in threads: ssig, permlink = t.get_result() ssiglistone.append(ssig) permlinklistone.append(permlink) return ssiglistone, permlinklistone def one_mul_open_tx(account, ssiglistone, userID, permlinklistone, steemd, wallet): threads = [] for i in range(nodeTX): t = MyThread(open_tx, args=(account, ssiglistone[i], userID, permlinklistone[i], steemd, wallet)) threads.append(t) for t in threads: t.start() for t in threads: t.join() def mul_annoy_tx(usk, pk, UID): ssiglist = [] permlinklist = [] threads = [] for i in range(n): # t = MyThread(annoy_commit_tx, args=(accountlist[i], usk, pk, GID, UID, clientlist[i].steemd, clientlist[i].wallet)) t = MyThread(one_mul_annoy_tx, args=(accountlist[i], usk, pk, UID, clientlist[i].steemd, clientlist[i].wallet)) threads.append(t) for t in threads: t.start() for t in threads: t.join() for t in threads: ssig, permlink = t.get_result() ssiglist.append(ssig) permlinklist.append(permlink) return ssiglist, permlinklist # 多个节点, 每个节点并发 def mul_open_tx(ssiglist, permlinklist, userID): threads = [] for i in range(n): # t = MyThread(open_tx, # args=(accountlist[i], ssiglist[i], userID, permlinklist[i], clientlist[i].steemd, clientlist[i].wallet)) t = MyThread(one_mul_open_tx, args=( accountlist[i], ssiglist[i], userID, permlinklist[i], clientlist[i].steemd, clientlist[i].wallet)) threads.append(t) for t in threads: t.start() for t in threads: t.join() # for t in threads: # t.get_result() # 仅创造tx 不广播 def creat_commit_tx(account, usk, pk, GID, UID, steemd_instance, wallet_instance, title="paper_title", body="paper_body"): commitop, ssig, permlink = annoy_commit(account, usk, pk, GID, UID, title, body, groupID="computer") commit_tx = tx_build(commitop, steemd_instance, wallet_instance, account) return ssig, permlink, commit_tx def creat_num_commit_tx(num, account, usk, pk, GID, UID, steemd_instance, wallet_instance, ttitle="paper_title", tbody="paper_body"): ssiglist = [] permlinklist = [] txlist = [] threads = [] for i in range(num): t = MyThread(creat_commit_tx, args=(account, usk, pk, GID, UID, steemd_instance, wallet_instance, ttitle, tbody)) threads.append(t) for t in threads: t.start() for t in threads: t.join() for t in threads: ssig, permlink, commit_tx = t.get_result() ssiglist.append(ssig) permlinklist.append(permlink) txlist.append(commit_tx) return ssiglist, permlinklist, txlist def creat_open_tx(account, ssig, userID, permlink, steemd_instance, wallet_instance): openop = open_op(account, ssig, userID, permlink) open_tx = tx_build(openop, steemd_instance, wallet_instance, account) return open_tx def creat_num_open_tx(num, account, ssiglist, userID, permlinklist, steemd_instance, wallet_instance): opentxlist = [] threads = [] for i in range(num): t = MyThread(creat_open_tx, args=(account, ssiglist[i], userID, permlinklist[i], steemd_instance, wallet_instance)) threads.append(t) for t in threads: t.start() for t in threads: t.join() for t in threads: opentx = t.get_result() opentxlist.append(opentx) return opentxlist def tx_broad(tx): tx.broadcast() def mul_tx_broad(txlist): threads = [] for tx in txlist: t = MyThread(tx_broad, args=(tx,)) threads.append(t) for t in threads: t.start() for t in threads: t.join() # public parma nodeTX = 5 k = 2 n = 3 # (k,n) # 节点地址 nodelist = [ 'http://101.76.208.83:8090', 'http://101.76.208.83:8094', 'http://101.76.208.83:8098' ] accountlist = ["initminer2", "zy1", "zy2", "zy3", "zy4", "zy5", "zy6", "zy7", "zy8", "zy9", "zy10", "zy11", "zy12", "zy13", "zy14", "zy15", "zy16", "zy17", "zy18", "zy19", "zy20"] # 除了第一个 其他的都是posting key 5Hs4jcm5X4sanCnUKNFCjrq2irN8sH1Krzsb13Qd6DHqutZbhqu keylist = ['5J3yMruND2TADZ7cZc6Cnp4VePrnehei2wvGdnLgf3aEj2nDGhc', '5Hs4jcm5X4sanCnUKNFCjrq2irN8sH1Krzsb13Qd6DHqutZbhqu', "5KPLLsQ3MuWgKvNYqAFRjziWZenBqefDhSe4K1uYuj8hT3zQoKv"] debug = True # 群签名相关 groupobj = PairingGroup('SS512') group_signature = GroupSignature(groupobj) L = group_signature.LGen(n, k) # 密钥相关 clientlist = [] for i in range(n): clientlist.append(steem.Steem(nodes=[nodelist[i]], keys=keylist[i])) vkliststr = [] uskliststr = [] vklist = [] usklist = [] # steem testchain信息 steembase.chains.known_chains['TEST'] = { 'chain_id': '18dcf0a285365fc58b71f18b3d3fec954aa0c141c44e4e5cb4cf777b9eab274e', 'prefix': 'TST', 'steem_symbol': 'TESTS', 'sbd_symbol': 'TBD', 'vests_symbol': 'VESTS' } groupID = "computer" GID = group_signature.group.hash(groupID) def main(): # 假设不存在不可用节点(无法判断节点状态) userID = "zhou" UID = group_signature.group.hash(userID) print("uid", UID) # 获取usk pk, usk = get_usk(userID, GID, UID) ssig, permlink = annoy_commit_tx(accountlist[0], usk, pk, GID, UID, clientlist[0].steemd, clientlist[0].wallet, title="paper_title", body="paper_body") sleep(3) open_tx(accountlist[0], ssig, userID, permlink, clientlist[0].steemd, clientlist[0].wallet) return if __name__ == "__main__": main() print("end")
[ 22, 26, 28, 30, 31 ]
291
ee80169afd4741854eff8619822a857bbf757575
<mask token> class Test(unittest.TestCase): def test_take(self): x = np.linspace(0, 100) idx = np.random.random_integers(0, 50, 20) result = indexing.take(x, idx) expected = np.take(x, idx) np.testing.assert_array_equal(expected, result) def test_take_comparison(self): x = np.arange(1000000.0) idx = np.random.random_integers(0, 100000.0, 1000000.0) indexing.take(x, idx) np.take(x, idx) with Timer('numba') as nbtimer: indexing.take(x, idx) with Timer('numpy') as nptimer: np.take(x, idx) ratio = nbtimer.interval / nptimer.interval print('numba version of take took %0.2f as long as numpy' % ratio) def test_square_take(self): X = np.random.random_integers(0, 50, 25).reshape(5, 5) idx = np.arange(0, 4, 2) result = np.empty((idx.shape[0], idx.shape[0])) indexing.square_take_to_out(X, idx, result) print(result) expected = X.take(idx, axis=0).take(idx, axis=1) print(expected) np.testing.assert_array_equal(expected, result) def test_square_take_to_out(self): X = np.arange(25).reshape(5, 5) idx = np.arange(0, 4, 2) result = np.empty((idx.shape[0], idx.shape[0])) indexing.square_take_to_out(X, idx, result) print(result) expected = X.take(idx, axis=0).take(idx, axis=1) print(expected) np.testing.assert_array_equal(expected, result) <mask token> <mask token> def test_get_resample_indices(self): raw_index = np.arange(10) resampled_index = np.arange(1, 10, 2) result = indexing.get_resample_indices(raw_index, resampled_index) expected = np.arange(0, 10, 2) np.testing.assert_array_equal(expected, result) <mask token> <mask token>
<mask token> class Test(unittest.TestCase): def test_take(self): x = np.linspace(0, 100) idx = np.random.random_integers(0, 50, 20) result = indexing.take(x, idx) expected = np.take(x, idx) np.testing.assert_array_equal(expected, result) def test_take_comparison(self): x = np.arange(1000000.0) idx = np.random.random_integers(0, 100000.0, 1000000.0) indexing.take(x, idx) np.take(x, idx) with Timer('numba') as nbtimer: indexing.take(x, idx) with Timer('numpy') as nptimer: np.take(x, idx) ratio = nbtimer.interval / nptimer.interval print('numba version of take took %0.2f as long as numpy' % ratio) def test_square_take(self): X = np.random.random_integers(0, 50, 25).reshape(5, 5) idx = np.arange(0, 4, 2) result = np.empty((idx.shape[0], idx.shape[0])) indexing.square_take_to_out(X, idx, result) print(result) expected = X.take(idx, axis=0).take(idx, axis=1) print(expected) np.testing.assert_array_equal(expected, result) def test_square_take_to_out(self): X = np.arange(25).reshape(5, 5) idx = np.arange(0, 4, 2) result = np.empty((idx.shape[0], idx.shape[0])) indexing.square_take_to_out(X, idx, result) print(result) expected = X.take(idx, axis=0).take(idx, axis=1) print(expected) np.testing.assert_array_equal(expected, result) <mask token> <mask token> def test_get_resample_indices(self): raw_index = np.arange(10) resampled_index = np.arange(1, 10, 2) result = indexing.get_resample_indices(raw_index, resampled_index) expected = np.arange(0, 10, 2) np.testing.assert_array_equal(expected, result) def test_take_upper_off_diagonal(self): X = np.array([[1, 2, 3], [np.nan, 5, 6], [np.nan, np.nan, 9]]) idx = np.array([0, 1]) expected = np.array([2]) actual = indexing.take_upper_off_diagonal(X, idx) np.testing.assert_array_equal(actual, expected) idx = np.array([1, 2]) expected = np.array([6]) actual = indexing.take_upper_off_diagonal(X, idx) np.testing.assert_array_equal(actual, expected) idx = np.array([0, 2]) expected = np.array([3]) actual = indexing.take_upper_off_diagonal(X, idx) np.testing.assert_array_equal(actual, expected) idx = np.array([0, 1, 2]) expected = np.array([2, 3, 6]) actual = indexing.take_upper_off_diagonal(X, idx) np.testing.assert_array_equal(actual, expected) <mask token>
<mask token> class Test(unittest.TestCase): def test_take(self): x = np.linspace(0, 100) idx = np.random.random_integers(0, 50, 20) result = indexing.take(x, idx) expected = np.take(x, idx) np.testing.assert_array_equal(expected, result) def test_take_comparison(self): x = np.arange(1000000.0) idx = np.random.random_integers(0, 100000.0, 1000000.0) indexing.take(x, idx) np.take(x, idx) with Timer('numba') as nbtimer: indexing.take(x, idx) with Timer('numpy') as nptimer: np.take(x, idx) ratio = nbtimer.interval / nptimer.interval print('numba version of take took %0.2f as long as numpy' % ratio) def test_square_take(self): X = np.random.random_integers(0, 50, 25).reshape(5, 5) idx = np.arange(0, 4, 2) result = np.empty((idx.shape[0], idx.shape[0])) indexing.square_take_to_out(X, idx, result) print(result) expected = X.take(idx, axis=0).take(idx, axis=1) print(expected) np.testing.assert_array_equal(expected, result) def test_square_take_to_out(self): X = np.arange(25).reshape(5, 5) idx = np.arange(0, 4, 2) result = np.empty((idx.shape[0], idx.shape[0])) indexing.square_take_to_out(X, idx, result) print(result) expected = X.take(idx, axis=0).take(idx, axis=1) print(expected) np.testing.assert_array_equal(expected, result) def test_square_take_performance(self): X = np.arange(25).reshape(5, 5) idx = np.arange(0, 4, 2) result = np.empty((idx.shape[0], idx.shape[0])) indexing.square_take_to_out(X, idx, result) result2 = indexing.square_take(X, idx) np.testing.assert_array_equal(result, result2) num_tests = 1000 nbts = [] nbts2 = [] npts = [] ms = 10, 20, 40, 80, 160 for m in ms: X = np.arange(m * m).reshape(m, m) idx = np.random.random_integers(0, m - 1, m // 2) result = np.empty((idx.shape[0], idx.shape[0])) with Timer('numba') as nbt: for _ in range(num_tests): indexing.square_take_to_out(X, idx, result) nbts.append(nbt.interval) with Timer('numba2') as nbt: for _ in range(num_tests): r = indexing.square_take(X, idx) nbts2.append(nbt.interval) with Timer('numpy') as npt: for _ in range(num_tests): X.take(idx, axis=0).take(idx, axis=1) npts.append(npt.interval) plt.plot(ms, nbts, label='nb to out') plt.plot(ms, nbts2, label='nb new result') plt.plot(ms, npts, label='np') plt.title('square_take_to_out performance test') plt.legend(loc='center left', bbox_to_anchor=(1, 0.5)) plt.show() <mask token> def test_get_resample_indices(self): raw_index = np.arange(10) resampled_index = np.arange(1, 10, 2) result = indexing.get_resample_indices(raw_index, resampled_index) expected = np.arange(0, 10, 2) np.testing.assert_array_equal(expected, result) def test_take_upper_off_diagonal(self): X = np.array([[1, 2, 3], [np.nan, 5, 6], [np.nan, np.nan, 9]]) idx = np.array([0, 1]) expected = np.array([2]) actual = indexing.take_upper_off_diagonal(X, idx) np.testing.assert_array_equal(actual, expected) idx = np.array([1, 2]) expected = np.array([6]) actual = indexing.take_upper_off_diagonal(X, idx) np.testing.assert_array_equal(actual, expected) idx = np.array([0, 2]) expected = np.array([3]) actual = indexing.take_upper_off_diagonal(X, idx) np.testing.assert_array_equal(actual, expected) idx = np.array([0, 1, 2]) expected = np.array([2, 3, 6]) actual = indexing.take_upper_off_diagonal(X, idx) np.testing.assert_array_equal(actual, expected) <mask token>
<mask token> import matplotlib.pyplot as plt from numerical_functions import Timer import numerical_functions.numba_funcs.indexing as indexing import numpy as np import unittest class Test(unittest.TestCase): def test_take(self): x = np.linspace(0, 100) idx = np.random.random_integers(0, 50, 20) result = indexing.take(x, idx) expected = np.take(x, idx) np.testing.assert_array_equal(expected, result) def test_take_comparison(self): x = np.arange(1000000.0) idx = np.random.random_integers(0, 100000.0, 1000000.0) indexing.take(x, idx) np.take(x, idx) with Timer('numba') as nbtimer: indexing.take(x, idx) with Timer('numpy') as nptimer: np.take(x, idx) ratio = nbtimer.interval / nptimer.interval print('numba version of take took %0.2f as long as numpy' % ratio) def test_square_take(self): X = np.random.random_integers(0, 50, 25).reshape(5, 5) idx = np.arange(0, 4, 2) result = np.empty((idx.shape[0], idx.shape[0])) indexing.square_take_to_out(X, idx, result) print(result) expected = X.take(idx, axis=0).take(idx, axis=1) print(expected) np.testing.assert_array_equal(expected, result) def test_square_take_to_out(self): X = np.arange(25).reshape(5, 5) idx = np.arange(0, 4, 2) result = np.empty((idx.shape[0], idx.shape[0])) indexing.square_take_to_out(X, idx, result) print(result) expected = X.take(idx, axis=0).take(idx, axis=1) print(expected) np.testing.assert_array_equal(expected, result) def test_square_take_performance(self): X = np.arange(25).reshape(5, 5) idx = np.arange(0, 4, 2) result = np.empty((idx.shape[0], idx.shape[0])) indexing.square_take_to_out(X, idx, result) result2 = indexing.square_take(X, idx) np.testing.assert_array_equal(result, result2) num_tests = 1000 nbts = [] nbts2 = [] npts = [] ms = 10, 20, 40, 80, 160 for m in ms: X = np.arange(m * m).reshape(m, m) idx = np.random.random_integers(0, m - 1, m // 2) result = np.empty((idx.shape[0], idx.shape[0])) with Timer('numba') as nbt: for _ in range(num_tests): indexing.square_take_to_out(X, idx, result) nbts.append(nbt.interval) with Timer('numba2') as nbt: for _ in range(num_tests): r = indexing.square_take(X, idx) nbts2.append(nbt.interval) with Timer('numpy') as npt: for _ in range(num_tests): X.take(idx, axis=0).take(idx, axis=1) npts.append(npt.interval) plt.plot(ms, nbts, label='nb to out') plt.plot(ms, nbts2, label='nb new result') plt.plot(ms, npts, label='np') plt.title('square_take_to_out performance test') plt.legend(loc='center left', bbox_to_anchor=(1, 0.5)) plt.show() def test_square_and_rect_take_to_out(self): X = np.arange(100).reshape((10, 10)) idx0 = np.arange(0, 4, 2) idx1 = np.arange(4, 6) result = np.empty((idx0.shape[0], idx0.shape[0] + idx1.shape[0])) indexing.square_and_rect_take_to_out(X, idx0, idx1, result) np.testing.assert_array_equal(result[:, :2], indexing.square_take(X, idx0)) r2 = np.array([[4, 5], [24, 25]]) np.testing.assert_array_equal(r2, result[:, 2:]) def test_get_resample_indices(self): raw_index = np.arange(10) resampled_index = np.arange(1, 10, 2) result = indexing.get_resample_indices(raw_index, resampled_index) expected = np.arange(0, 10, 2) np.testing.assert_array_equal(expected, result) def test_take_upper_off_diagonal(self): X = np.array([[1, 2, 3], [np.nan, 5, 6], [np.nan, np.nan, 9]]) idx = np.array([0, 1]) expected = np.array([2]) actual = indexing.take_upper_off_diagonal(X, idx) np.testing.assert_array_equal(actual, expected) idx = np.array([1, 2]) expected = np.array([6]) actual = indexing.take_upper_off_diagonal(X, idx) np.testing.assert_array_equal(actual, expected) idx = np.array([0, 2]) expected = np.array([3]) actual = indexing.take_upper_off_diagonal(X, idx) np.testing.assert_array_equal(actual, expected) idx = np.array([0, 1, 2]) expected = np.array([2, 3, 6]) actual = indexing.take_upper_off_diagonal(X, idx) np.testing.assert_array_equal(actual, expected) if __name__ == '__main__': unittest.main()
''' Created on 27 Mar 2015 @author: Jon ''' import matplotlib.pyplot as plt from numerical_functions import Timer import numerical_functions.numba_funcs.indexing as indexing import numpy as np import unittest class Test(unittest.TestCase): def test_take(self): x = np.linspace( 0, 100 ) idx = np.random.random_integers( 0, 50, 20 ) result = indexing.take( x, idx ) expected = np.take( x, idx ) np.testing.assert_array_equal( expected, result ) def test_take_comparison(self): x = np.arange( 1e6 ) idx = np.random.random_integers( 0, 1e5, 1e6 ) indexing.take( x, idx ) np.take( x, idx ) with Timer( 'numba' ) as nbtimer: indexing.take( x, idx ) with Timer( 'numpy' ) as nptimer: np.take( x, idx ) ratio = nbtimer.interval / nptimer.interval print( 'numba version of take took %0.2f as long as numpy'%ratio) def test_square_take(self): X = np.random.random_integers( 0, 50, 25 ).reshape( 5, 5 ) idx = np.arange( 0, 4, 2 ) result = np.empty( ( idx.shape[0], idx.shape[0] ) ) indexing.square_take_to_out( X, idx, result ) print( result ) expected = X.take( idx, axis=0 ).take( idx, axis=1 ) print( expected ) np.testing.assert_array_equal( expected, result ) def test_square_take_to_out(self): X = np.arange(25).reshape(5,5) idx = np.arange( 0, 4, 2 ) result = np.empty( ( idx.shape[0], idx.shape[0] ) ) indexing.square_take_to_out( X, idx, result ) print( result ) expected = X.take( idx, axis=0 ).take( idx, axis=1 ) print( expected ) np.testing.assert_array_equal( expected, result ) def test_square_take_performance(self): X = np.arange(25).reshape(5,5) idx = np.arange( 0, 4, 2 ) result = np.empty( ( idx.shape[0], idx.shape[0] ) ) indexing.square_take_to_out( X, idx, result ) result2 = indexing.square_take( X, idx ) np.testing.assert_array_equal( result, result2 ) num_tests = 1000 nbts = [] nbts2 = [] npts = [] ms = ( 10, 20, 40, 80, 160 )#, 320, 640 ) for m in ms: X = np.arange(m*m).reshape(m,m) idx = np.random.random_integers( 0, m-1, m//2 ) result = np.empty( ( idx.shape[0], idx.shape[0] ) ) with Timer( 'numba' ) as nbt: for _ in range( num_tests ): indexing.square_take_to_out( X, idx, result ) nbts.append( nbt.interval ) with Timer( 'numba2' ) as nbt: for _ in range( num_tests ): r=indexing.square_take( X, idx ) nbts2.append( nbt.interval ) with Timer( 'numpy') as npt: for _ in range(num_tests): X.take( idx, axis=0 ).take( idx, axis=1 ) npts.append( npt.interval ) plt.plot( ms, nbts, label='nb to out' ) plt.plot( ms, nbts2, label='nb new result') plt.plot( ms, npts, label='np' ) plt.title( 'square_take_to_out performance test') plt.legend(loc='center left', bbox_to_anchor=(1, 0.5)) plt.show() def test_square_and_rect_take_to_out(self): X = np.arange( 100 ).reshape( (10, 10 ) ) idx0 = np.arange( 0, 4, 2 ) idx1 = np.arange( 4, 6 ) result = np.empty( ( idx0.shape[0], idx0.shape[0]+idx1.shape[0] ) ) indexing.square_and_rect_take_to_out( X, idx0, idx1, result ) np.testing.assert_array_equal( result[:,:2], indexing.square_take( X, idx0 ) ) r2 = np.array( [ [ 4, 5 ], [24, 25 ] ] ) np.testing.assert_array_equal( r2, result[:,2:]) def test_get_resample_indices(self): raw_index = np.arange( 10 ) resampled_index = np.arange( 1, 10, 2 ) result = indexing.get_resample_indices(raw_index, resampled_index) expected = np.arange( 0, 10, 2 ) np.testing.assert_array_equal( expected, result ) def test_take_upper_off_diagonal(self): X = np.array( [[ 1, 2, 3], [ np.nan, 5, 6], [ np.nan, np.nan, 9]]) idx = np.array( [ 0, 1 ] ) expected = np.array( [ 2 ] ) actual = indexing.take_upper_off_diagonal( X, idx ) np.testing.assert_array_equal( actual, expected ) idx = np.array( [ 1, 2 ] ) expected = np.array( [ 6 ] ) actual = indexing.take_upper_off_diagonal( X, idx ) np.testing.assert_array_equal( actual, expected ) idx = np.array( [ 0, 2 ] ) expected = np.array( [ 3 ] ) actual = indexing.take_upper_off_diagonal( X, idx ) np.testing.assert_array_equal( actual, expected ) idx = np.array( [ 0, 1, 2 ] ) expected = np.array( [ 2, 3, 6 ] ) actual = indexing.take_upper_off_diagonal( X, idx ) np.testing.assert_array_equal( actual, expected ) if __name__ == "__main__": #import sys;sys.argv = ['', 'Test.testName'] unittest.main()
[ 6, 7, 8, 11, 12 ]
292
ce6dba2f682b091249f3bbf362bead4b95fee1f4
<mask token>
<mask token> from .book import book from . import style, to, read, dist
""" .. currentmodule:: jotting .. automodule:: jotting.book :members: .. automodule:: jotting.to :members: .. automodule:: jotting.read :members: .. automodule:: jotting.style :members: """ from .book import book from . import style, to, read, dist
null
null
[ 0, 1, 2 ]
293
99c839eddcbe985c81e709878d03c59e3be3c909
#coding=utf-8 ######################################### # dbscan: # 用法说明:读取文件 # 生成路径文件及簇文件,输出分类准确率 ######################################### from matplotlib.pyplot import * import matplotlib.pyplot as plt from collections import defaultdict import random from math import * import numpy import datetime from dateutil.parser import parse import datetime import time def dataset(filename): #读取原始文件 lines = open(filename,'r').readlines() l = len(lines) all_points = [] for i in range(l): if lines[i].strip(): line = lines[i].split() time = line[0] +' '+ line[1] lat = float(line[4]) lon = float(line[6]) all_points.append([lat,lon,time]) return all_points def datarevise(all_points): #数据平滑处理 point_new = [] all_points1 = np.array(all_points) l = len(all_points) for i in range(2,l-3): lat_lon = np.array(all_points1[i-2:i+3,:-1],dtype = float).mean(0) point_new.append([lat_lon[0],lat_lon[1],all_points1[i][-1]]) return point_new def dist(p1, p2): #计算亮点之间的距离 a = cos(p1[0])*cos(p2[0]) b = sin(p1[0])*sin(p2[0])*cos(p2[1]-p1[1]) if a+b >=1: return 0 return acos(float(a+b))*6371*pi/180 def find_core(all_points,E,minPts): #查找核心点 #输出:核心点,要绘制的点,非核心点 other_points =[] core_points=[] plotted_points=[] for point in all_points: point.append(0) # 初始点标号为0 total = 0 #计数:对每个点周围大于给定距离的点的个数 for otherPoint in all_points: distance = dist(otherPoint,point) if distance <= E: total += 1 if total > minPts: core_points.append(point) plotted_points.append(point) else: other_points.append(point) return core_points,plotted_points,other_points def find_border(core_points,plotted_points,other_points,E): #在非核心点查找边界点 #输出:边界点,要绘制的点 border_points=[] for core in core_points: for other in other_points: if dist(core,other) <= E:#边界点的与核心点的距离小于E border_points.append(other) plotted_points.append(other) return border_points,plotted_points def algorithm(all_points,core_points,border_points,plotted_points,E): # 返回簇,噪声点 #将所有的核心点分成不同的簇 cluster_label = 0 for point in core_points: if point[-1] == 0: cluster_label += 1 point[-1] = cluster_label for point2 in plotted_points: distance = dist(point2,point) if point2[-1] ==0 and distance <= E: point2[-1] =point[-1] #将点集标号类型写成字典格式 cluster_dict = {} for point in plotted_points: if cluster_dict.get(point[-1]) is None: cluster_dict[point[-1]] = [point[0:-1]] else: cluster_dict[point[-1]].append(point[0:-1]) #将簇中各个点按时间排序 cluster_dict_sort = {} for lable in cluster_dict: cluster_dict_sort.setdefault(lable,[]) cl = np.array(cluster_dict[lable]) cl_sort = cl[cl[:,-1].argsort()] cluster_dict_sort[lable] = cl_sort #噪声点,既不在边界点也不在核心点中 noise_points=[] for point in all_points: if point not in core_points and point not in border_points: noise_points.append(point[0:-1]) return cluster_dict_sort,noise_points def durtime(noise_points,difftime): # 输入:噪声点,时间间隔 # 功能:分成不同的路径 # 输出:路径点[[],[]] no = np.array(noise_points) no_sort = no[no[:,-1].argsort()] l = len(no_sort) k = [0] for i in range(l-1): diff_time = (no_sort[i+1][-1] - no_sort[i][-1]).seconds if diff_time > difftime: k.append(i+1) k.append(l) no_split = [] for i in range(len(k)-1): no_split.append(no_sort[k[i]:k[i+1]]) return no_split def matplotshow(cluster_dict,no_split,name): #画出各个簇 markers = ['or', 'ob', 'og', 'ok', '^r', '+r', 'sr', 'dr', '<r', 'pr'] i=0 for lable in cluster_dict: for j in cluster_dict[lable]: plot(j[0], j[1],markers[i]) i += 1 i = i%10 print i #画出路径 markers = ['r', 'b', 'g', 'k', 'c', 'y', 'm',] l =len(no_split) for i in range(l): path = np.array(no_split[i]) plt.plot(path[:,0],path[:,1],markers[i%7]) print i title(" clusters created with E ="+str(E)+" Min Points="+str(minPts)+" total points="+str(len(all_points))+" noise Points = "+ str(len(noise_points))) savefig(name) show() def datewrite(no_split,filename,mark): f = open(filename,'w+') for path in no_split: f.write( str(mark) +'\n') for no_path in path: f.write(str(list(no_path))+'\n') f.close() def datewrite1(no_split,filename,mark): f = open(filename,'w+') for path in no_split: for no_path in path: f.write( str(mark) +'\n') for j in no_path: f.write(str(list(j))+'\n') f.close() if __name__ == '__main__': filename = 'D:/sensor_data/sensor/gps/location_zh0710.txt' all_points_old = dataset(filename) all_points = datarevise(all_points_old) E,minPts = 0.1,10 core_points,plotted_points,other_points = find_core(all_points,E,minPts) border_points,plotted_points = find_border(core_points,plotted_points,other_points,E) cluster_dict,noise_points = algorithm(all_points,border_points,core_points,plotted_points,E) difftime = 1200 no_split = durtime(noise_points,difftime) matplotshow(cluster_dict,no_split,"location_zh0710.png") filename = 'D:/sensor_data/sensor/gps/location_zh0710_no_split.txt' datewrite(no_split,filename,'path') filename = 'D:/sensor_data/sensor/gps/location_zh0710_cluster.txt' datewrite(cluster_dict.values(),filename,'lable')
null
null
null
null
[ 0 ]
294
bf8bbeb408cb75af314ef9f3907456036e731c0b
<mask token>
def solution(S): log_sep = ',' num_sep = '-' time_sep = ':' from collections import defaultdict bill = defaultdict(int) total = defaultdict(int) calls = S.splitlines() maximal = 0 free_number = 0 for call in calls: hhmmss, number = call.split(log_sep) hh, mm, ss = hhmmss.split(time_sep) hh, mm, ss = int(hh), int(mm), int(ss) number = int(number.replace(num_sep, '')) minutes = mm + hh * 60 seconds = ss + minutes * 60 total[number] += seconds if total[number] > maximal: maximal = total[number] free_number = number elif total[number] == maximal: free_number = min(number, free_number) if minutes < 5: bill[number] += seconds * 3 else: if ss > 0: started = 1 else: started = 0 bill[number] += (minutes + started) * 150 bill[free_number] = 0 return sum(bill.values())
def solution(S): # write your code in Python 3.6 # Definitions log_sep = ',' num_sep = '-' time_sep = ':' # Initialization from collections import defaultdict # defaultdict initialize missing key to default value -> 0 bill = defaultdict(int) total = defaultdict(int) calls = S.splitlines() maximal = 0 free_number = 0 for call in calls: # Parsing values hhmmss, number = call.split(log_sep) hh, mm, ss = hhmmss.split(time_sep) hh, mm, ss = int(hh), int(mm), int(ss) number = int(number.replace(num_sep,'')) # Call duration calculations minutes = mm + hh * 60 seconds = ss + minutes * 60 # Free number Rule total[number] += seconds if total[number] > maximal: # new maximal maximal = total[number] free_number = number elif total[number] == maximal: # in case of a tie... free_number = min(number,free_number) # Billing Rule if minutes < 5: bill[number] += seconds * 3 else: if ss > 0: started = 1 else: started = 0 bill[number] += (minutes + started) * 150 # Free number Rule enforcement bill[free_number] = 0 return sum(bill.values())
null
null
[ 0, 1, 2 ]
295
35ae9c86594b50bbe4a67d2cc6b20efc6f6fdc64
<mask token>
<mask token> sys.path.append(dir_path) os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'gulishop.settings') <mask token> django.setup() <mask token> for lev1 in row_data: cat1 = GoodsCategory() cat1.name = lev1['name'] cat1.code = lev1['code'] if lev1['code'] else '' cat1.category_type = 1 cat1.save() for lev2 in lev1['sub_categorys']: cat2 = GoodsCategory() cat2.name = lev2['name'] cat2.code = lev2['code'] if lev2['code'] else '' cat2.category_type = 2 cat2.parent_category = cat1 cat2.save() for lev3 in lev2['sub_categorys']: cat3 = GoodsCategory() cat3.name = lev3['name'] cat3.code = lev3['code'] if lev3['code'] else '' cat3.category_type = 3 cat3.parent_category = cat2 cat3.save()
<mask token> file_path = os.path.abspath(__file__) dir_path = os.path.dirname(file_path) sys.path.append(dir_path) os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'gulishop.settings') <mask token> django.setup() <mask token> for lev1 in row_data: cat1 = GoodsCategory() cat1.name = lev1['name'] cat1.code = lev1['code'] if lev1['code'] else '' cat1.category_type = 1 cat1.save() for lev2 in lev1['sub_categorys']: cat2 = GoodsCategory() cat2.name = lev2['name'] cat2.code = lev2['code'] if lev2['code'] else '' cat2.category_type = 2 cat2.parent_category = cat1 cat2.save() for lev3 in lev2['sub_categorys']: cat3 = GoodsCategory() cat3.name = lev3['name'] cat3.code = lev3['code'] if lev3['code'] else '' cat3.category_type = 3 cat3.parent_category = cat2 cat3.save()
import os, sys file_path = os.path.abspath(__file__) dir_path = os.path.dirname(file_path) sys.path.append(dir_path) os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'gulishop.settings') import django django.setup() from goods.models import GoodsCategory from db_tools.data.category_data import row_data for lev1 in row_data: cat1 = GoodsCategory() cat1.name = lev1['name'] cat1.code = lev1['code'] if lev1['code'] else '' cat1.category_type = 1 cat1.save() for lev2 in lev1['sub_categorys']: cat2 = GoodsCategory() cat2.name = lev2['name'] cat2.code = lev2['code'] if lev2['code'] else '' cat2.category_type = 2 cat2.parent_category = cat1 cat2.save() for lev3 in lev2['sub_categorys']: cat3 = GoodsCategory() cat3.name = lev3['name'] cat3.code = lev3['code'] if lev3['code'] else '' cat3.category_type = 3 cat3.parent_category = cat2 cat3.save()
#配置我们文件所在目录的搜寻环境 import os,sys #第一步先拿到当前文件的路径 file_path = os.path.abspath(__file__) #第二步 根据这个路径去拿到这个文件所在目录的路径 dir_path = os.path.dirname(file_path) #第三步:讲这个目录的路径添加到我们的搜寻环境当中 sys.path.append(dir_path) #第四步,动态设置我们的setting文件 os.environ.setdefault("DJANGO_SETTINGS_MODULE", "gulishop.settings") #第五步,让设置好的环境初始化生效 import django django.setup() #这一行,不能放在上面 from goods.models import GoodsCategory from db_tools.data.category_data import row_data for lev1 in row_data: cat1 = GoodsCategory() cat1.name = lev1['name'] cat1.code = lev1['code'] if lev1['code'] else '' cat1.category_type = 1 cat1.save() for lev2 in lev1['sub_categorys']: cat2 = GoodsCategory() cat2.name = lev2['name'] cat2.code = lev2['code'] if lev2['code'] else '' cat2.category_type = 2 cat2.parent_category = cat1 cat2.save() for lev3 in lev2['sub_categorys']: cat3 = GoodsCategory() cat3.name = lev3['name'] cat3.code = lev3['code'] if lev3['code'] else '' cat3.category_type = 3 cat3.parent_category = cat2 cat3.save()
[ 0, 1, 2, 3, 4 ]
296
d34159536e860719094a36cfc30ffb5fcae72a9a
<mask token>
<mask token> print('Retriving', url) <mask token> print('Retrived', len(data), 'characters') <mask token> print(json.dumps(js, indent=4)) print('Place id', js['results'][0]['place_id']) <mask token>
<mask token> target = 'http://py4e-data.dr-chuck.net/json?' local = input('Enter location: ') url = target + urllib.parse.urlencode({'address': local, 'key': 42}) print('Retriving', url) data = urllib.request.urlopen(url).read() print('Retrived', len(data), 'characters') js = json.loads(data) print(json.dumps(js, indent=4)) print('Place id', js['results'][0]['place_id']) <mask token>
import urllib.error, urllib.request, urllib.parse import json target = 'http://py4e-data.dr-chuck.net/json?' local = input('Enter location: ') url = target + urllib.parse.urlencode({'address': local, 'key': 42}) print('Retriving', url) data = urllib.request.urlopen(url).read() print('Retrived', len(data), 'characters') js = json.loads(data) print(json.dumps(js, indent=4)) print('Place id', js['results'][0]['place_id']) <mask token>
#API End Points by Mitul import urllib.error, urllib.request, urllib.parse import json target = 'http://py4e-data.dr-chuck.net/json?' local = input('Enter location: ') url = target + urllib.parse.urlencode({'address': local, 'key' : 42}) print('Retriving', url) data = urllib.request.urlopen(url).read() print('Retrived', len(data), 'characters') js = json.loads(data) print(json.dumps(js, indent = 4)) print('Place id', js['results'][0]['place_id']) '''Output: Enter location: >? UIUC Retriving http://py4e-data.dr-chuck.net/json?address=UIUC&key=42 Retrived 1720 characters { "results": [ { "access_points": [], "address_components": [ { "long_name": "Champaign", "short_name": "Champaign", "types": [ "locality", "political" ] }, { "long_name": "Champaign County", "short_name": "Champaign County", "types": [ "administrative_area_level_2", "political" ] }, { "long_name": "Illinois", "short_name": "IL", "types": [ "administrative_area_level_1", "political" ] }, { "long_name": "United States", "short_name": "US", "types": [ "country", "political" ] } ], "formatted_address": "Champaign, IL, USA", "geometry": { "location": { "lat": 40.1019523, "lng": -88.2271615 }, "location_type": "GEOMETRIC_CENTER", "viewport": { "northeast": { "lat": 40.1033012802915, "lng": -88.22581251970848 }, "southwest": { "lat": 40.1006033197085, "lng": -88.2285104802915 } } }, "place_id": "ChIJ6VUmqSTXDIgR-iZoBCUFPKU", "plus_code": { "compound_code": "4Q2F+Q4 Champaign, Champaign City Township, IL, United States", "global_code": "86GH4Q2F+Q4" }, "types": [ "establishment", "point_of_interest", "university" ] } ], "status": "OK" } Place id ChIJ6VUmqSTXDIgR-iZoBCUFPKU '''
[ 0, 1, 2, 3, 4 ]
297
c382b298cce8d7045d6ce8a84f90b3800dba7717
<mask token>
<mask token> class Migration(migrations.Migration): <mask token> <mask token>
<mask token> class Migration(migrations.Migration): dependencies = [('products', '0003_auto_20200615_1225')] operations = [migrations.AlterField(model_name='product', name= 'harmonizacao', field=models.TextField(null=True)), migrations. AlterField(model_name='product', name='history', field=models. TextField(null=True)), migrations.AlterField(model_name='product', name='premios', field=models.TextField(null=True))]
from django.db import migrations, models class Migration(migrations.Migration): dependencies = [('products', '0003_auto_20200615_1225')] operations = [migrations.AlterField(model_name='product', name= 'harmonizacao', field=models.TextField(null=True)), migrations. AlterField(model_name='product', name='history', field=models. TextField(null=True)), migrations.AlterField(model_name='product', name='premios', field=models.TextField(null=True))]
# Generated by Django 3.0.7 on 2020-06-15 15:26 from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('products', '0003_auto_20200615_1225'), ] operations = [ migrations.AlterField( model_name='product', name='harmonizacao', field=models.TextField(null=True), ), migrations.AlterField( model_name='product', name='history', field=models.TextField(null=True), ), migrations.AlterField( model_name='product', name='premios', field=models.TextField(null=True), ), ]
[ 0, 1, 2, 3, 4 ]
298
3372d98ff91d90558a87293d4032820b1662d60b
<mask token>
<mask token> urlpatterns = patterns('', url('appmanagement', views.appmanagement, name= 'appmanagement'), url('^.*', views.index, name='index'))
from django.conf.urls import patterns, url from riskDashboard2 import views urlpatterns = patterns('', url('appmanagement', views.appmanagement, name= 'appmanagement'), url('^.*', views.index, name='index'))
from django.conf.urls import patterns, url from riskDashboard2 import views urlpatterns = patterns('', #url(r'getdata', views.vulnData, name='getdata'), url(r'appmanagement', views.appmanagement, name='appmanagement'), url(r'^.*', views.index, name='index'), )
null
[ 0, 1, 2, 3 ]
299
0465e33d65c2ce47ebffeec38db6908826bf4934
<mask token>
<mask token> if people < cats: print('Too many cats') elif people > cats: print('Not many cats') else: print('we cannnot decide')
people = 20 cats = 30 dogs = 15 if people < cats: print('Too many cats') elif people > cats: print('Not many cats') else: print('we cannnot decide')
people = 20 cats = 30 dogs = 15 if people < cats: print("Too many cats") elif people > cats: print("Not many cats") else: print("we cannnot decide")
null
[ 0, 1, 2, 3 ]