content
stringlengths 7
1.05M
| fixed_cases
stringlengths 1
1.28M
|
|---|---|
class Solution:
def binary_to_decimal(self, n):
return int(n, 2)
def grayCode(self, A):
num_till_now = [0, 1]
if A == 1:
return num_till_now
results = []
for i in range(1, A):
rev = num_till_now.copy()
rev.reverse()
num_till_now = num_till_now + rev
lent = len(num_till_now)
for j in range(len(num_till_now)):
if j >= lent//2:
num_till_now[j] = "1" + str(num_till_now[j])
else:
num_till_now[j] = "0" + str(num_till_now[j])
for i in num_till_now:
results.append(self.binary_to_decimal(i))
return results
number = 16
s = Solution()
ss = s.grayCode(number)
print(ss)
|
class Solution:
def binary_to_decimal(self, n):
return int(n, 2)
def gray_code(self, A):
num_till_now = [0, 1]
if A == 1:
return num_till_now
results = []
for i in range(1, A):
rev = num_till_now.copy()
rev.reverse()
num_till_now = num_till_now + rev
lent = len(num_till_now)
for j in range(len(num_till_now)):
if j >= lent // 2:
num_till_now[j] = '1' + str(num_till_now[j])
else:
num_till_now[j] = '0' + str(num_till_now[j])
for i in num_till_now:
results.append(self.binary_to_decimal(i))
return results
number = 16
s = solution()
ss = s.grayCode(number)
print(ss)
|
def include_in_html(content_to_include, input_includename, html_filepath):
with open(html_filepath, "r") as f:
line_list = f.readlines()
res = []
includename = None
initial_spaces = 0
for line in line_list:
line = line.strip("\n")
if line.strip(" ")[:14] == "<!-- #include " or line.strip(" ")[:13] == "<!--#include " :
if includename != None:
print("Error, includename != None in new '<!-- #include ' section.")
res.append(line)
initial_spaces = line.split("<!-- #include")[0].count(" ")
includename = line.split("#include ")[-1]
includename = includename.split("-->")[0].strip(" ")
if includename != input_includename:
includename = None
continue
elif line.strip(" ")[:9] == "<!-- #end":
if includename == input_includename:
lines_to_append = content_to_include.split("\n")
for el in lines_to_append:
if el == "":
continue
res.append(" "*(2+initial_spaces) + el)
#res.append(content_to_include)
includename = None
if includename == None:
res.append(line)
with open(html_filepath, "w") as f:
print("\n".join(res), file=f, end="")
|
def include_in_html(content_to_include, input_includename, html_filepath):
with open(html_filepath, 'r') as f:
line_list = f.readlines()
res = []
includename = None
initial_spaces = 0
for line in line_list:
line = line.strip('\n')
if line.strip(' ')[:14] == '<!-- #include ' or line.strip(' ')[:13] == '<!--#include ':
if includename != None:
print("Error, includename != None in new '<!-- #include ' section.")
res.append(line)
initial_spaces = line.split('<!-- #include')[0].count(' ')
includename = line.split('#include ')[-1]
includename = includename.split('-->')[0].strip(' ')
if includename != input_includename:
includename = None
continue
elif line.strip(' ')[:9] == '<!-- #end':
if includename == input_includename:
lines_to_append = content_to_include.split('\n')
for el in lines_to_append:
if el == '':
continue
res.append(' ' * (2 + initial_spaces) + el)
includename = None
if includename == None:
res.append(line)
with open(html_filepath, 'w') as f:
print('\n'.join(res), file=f, end='')
|
# Copyright 2017 The Bazel Authors. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"Defaults for rules_typescript repository not meant to be used downstream"
load(
"@build_bazel_rules_typescript//:defs.bzl",
_karma_web_test = "karma_web_test",
_karma_web_test_suite = "karma_web_test_suite",
_ts_library = "ts_library",
_ts_web_test = "ts_web_test",
_ts_web_test_suite = "ts_web_test_suite",
)
# We can't use the defaults for ts_library compiler and ts_web_test_suite karma
# internally because the defaults are .js dependencies on the npm packages that are
# published and internally we are building the things themselves to publish to npm
INTERNAL_TS_LIBRARY_COMPILER = "@build_bazel_rules_typescript//internal:tsc_wrapped_bin"
INTERNAL_KARMA_BIN = "@build_bazel_rules_typescript//internal/karma:karma_bin"
def karma_web_test(karma = INTERNAL_KARMA_BIN, **kwargs):
_karma_web_test(karma = karma, **kwargs)
def karma_web_test_suite(karma = INTERNAL_KARMA_BIN, **kwargs):
_karma_web_test_suite(karma = karma, **kwargs)
def ts_library(compiler = INTERNAL_TS_LIBRARY_COMPILER, **kwargs):
_ts_library(compiler = compiler, **kwargs)
def ts_web_test(karma = INTERNAL_KARMA_BIN, **kwargs):
_ts_web_test(karma = karma, **kwargs)
def ts_web_test_suite(karma = INTERNAL_KARMA_BIN, **kwargs):
_ts_web_test_suite(karma = karma, **kwargs)
|
"""Defaults for rules_typescript repository not meant to be used downstream"""
load('@build_bazel_rules_typescript//:defs.bzl', _karma_web_test='karma_web_test', _karma_web_test_suite='karma_web_test_suite', _ts_library='ts_library', _ts_web_test='ts_web_test', _ts_web_test_suite='ts_web_test_suite')
internal_ts_library_compiler = '@build_bazel_rules_typescript//internal:tsc_wrapped_bin'
internal_karma_bin = '@build_bazel_rules_typescript//internal/karma:karma_bin'
def karma_web_test(karma=INTERNAL_KARMA_BIN, **kwargs):
_karma_web_test(karma=karma, **kwargs)
def karma_web_test_suite(karma=INTERNAL_KARMA_BIN, **kwargs):
_karma_web_test_suite(karma=karma, **kwargs)
def ts_library(compiler=INTERNAL_TS_LIBRARY_COMPILER, **kwargs):
_ts_library(compiler=compiler, **kwargs)
def ts_web_test(karma=INTERNAL_KARMA_BIN, **kwargs):
_ts_web_test(karma=karma, **kwargs)
def ts_web_test_suite(karma=INTERNAL_KARMA_BIN, **kwargs):
_ts_web_test_suite(karma=karma, **kwargs)
|
class Simple(object):
def __init__(self, x):
self.x = x
self.y = 6
def get_x(self):
return self.x
class WithCollection(object):
def __init__(self):
self.l = list()
self.d = dict()
def get_l(self):
return self.l
|
class Simple(object):
def __init__(self, x):
self.x = x
self.y = 6
def get_x(self):
return self.x
class Withcollection(object):
def __init__(self):
self.l = list()
self.d = dict()
def get_l(self):
return self.l
|
""" Once in the "ready" state, Huntsman has been initialized successfully and it is safe. The goal
of the ready state is to decide which of the following states to enter next:
- parking
- coarse_focusing
- scheduling
- twilight_flat_fielding
"""
def on_enter(event_data):
"""
"""
pocs = event_data.model
# Check if we need to focus.
if pocs.is_dark(horizon='focus') and pocs.observatory.coarse_focus_required:
pocs.say("Going to coarse focus the cameras.")
pocs.next_state = 'coarse_focusing'
# Check if we should go straight to observing
elif pocs.is_dark(horizon='observe'):
pocs.say("It's already dark so going straight to scheduling.")
pocs.next_state = 'scheduling'
# Don't need to focus, not dark enough to observe
else:
if pocs.observatory.is_past_midnight:
if pocs.is_dark(horizon="twilight_max"):
pocs.say("Going to take morning flats.")
pocs.next_state = 'twilight_flat_fielding'
else:
# Too bright for morning flats, go to parking
pocs.say("Too bright for morning flats, going to park.")
pocs.next_state = 'parking'
else:
if pocs.is_dark(horizon='focus'):
# Evening, don't need to focus but too dark for twilight flats
pocs.say("Too dark for evening flats, going to scheduling.")
pocs.next_state = 'scheduling'
else:
pocs.say("Going to take evening flats.")
pocs.next_state = 'twilight_flat_fielding'
|
""" Once in the "ready" state, Huntsman has been initialized successfully and it is safe. The goal
of the ready state is to decide which of the following states to enter next:
- parking
- coarse_focusing
- scheduling
- twilight_flat_fielding
"""
def on_enter(event_data):
"""
"""
pocs = event_data.model
if pocs.is_dark(horizon='focus') and pocs.observatory.coarse_focus_required:
pocs.say('Going to coarse focus the cameras.')
pocs.next_state = 'coarse_focusing'
elif pocs.is_dark(horizon='observe'):
pocs.say("It's already dark so going straight to scheduling.")
pocs.next_state = 'scheduling'
elif pocs.observatory.is_past_midnight:
if pocs.is_dark(horizon='twilight_max'):
pocs.say('Going to take morning flats.')
pocs.next_state = 'twilight_flat_fielding'
else:
pocs.say('Too bright for morning flats, going to park.')
pocs.next_state = 'parking'
elif pocs.is_dark(horizon='focus'):
pocs.say('Too dark for evening flats, going to scheduling.')
pocs.next_state = 'scheduling'
else:
pocs.say('Going to take evening flats.')
pocs.next_state = 'twilight_flat_fielding'
|
s = open('input.txt','r').read()
s = [k for k in s.split("\n")]
aller = {}
count = {}
for line in s:
allergens = line.split("contains ")[1].split(", ")
allergens[-1] = allergens[-1][:-1]
ing = line.split(" (")[0].split(" ")
for i in ing:
count[i] = 1 if i not in count else count[i] + 1
for allergen in allergens:
if allergen not in aller:
aller[allergen] = set(ing)
else:
aller[allergen] = aller[allergen].intersection(set(ing))
used = set()
while True:
found = False
for allergen in aller:
aller[allergen] = aller[allergen].difference(used)
if len(aller[allergen]) == 1:
used.add(list(aller[allergen])[0])
found = True
break
if not found:break
ans = 0
for x in count:
if x not in used:
ans += count[x]
#print(x,count[x])
print(ans)
|
s = open('input.txt', 'r').read()
s = [k for k in s.split('\n')]
aller = {}
count = {}
for line in s:
allergens = line.split('contains ')[1].split(', ')
allergens[-1] = allergens[-1][:-1]
ing = line.split(' (')[0].split(' ')
for i in ing:
count[i] = 1 if i not in count else count[i] + 1
for allergen in allergens:
if allergen not in aller:
aller[allergen] = set(ing)
else:
aller[allergen] = aller[allergen].intersection(set(ing))
used = set()
while True:
found = False
for allergen in aller:
aller[allergen] = aller[allergen].difference(used)
if len(aller[allergen]) == 1:
used.add(list(aller[allergen])[0])
found = True
break
if not found:
break
ans = 0
for x in count:
if x not in used:
ans += count[x]
print(ans)
|
t = int(input())
for i in range(t):
n = input()
rev_n = int(n[::-1])
print(rev_n)
|
t = int(input())
for i in range(t):
n = input()
rev_n = int(n[::-1])
print(rev_n)
|
courses={}
while True:
command=input()
if command!="end":
command=command.split(" : ")
doesCourseExist=False
for j in courses:
if j==command[0]:
doesCourseExist=True
break
if doesCourseExist==False:
courses[command[0]]=[command[1]]
else:
courses[command[0]].append(command[1])
else:
for j in courses:
print(f"{j}: {len(courses[j])}")
for k in range(0,len(courses[j])):
print(f"-- {courses[j][k]}")
break
|
courses = {}
while True:
command = input()
if command != 'end':
command = command.split(' : ')
does_course_exist = False
for j in courses:
if j == command[0]:
does_course_exist = True
break
if doesCourseExist == False:
courses[command[0]] = [command[1]]
else:
courses[command[0]].append(command[1])
else:
for j in courses:
print(f'{j}: {len(courses[j])}')
for k in range(0, len(courses[j])):
print(f'-- {courses[j][k]}')
break
|
#! /usr/bin/env python
# encoding: utf-8
class TimeOutError(Exception):
pass
class MaxRetryError(Exception):
pass
class GodError(Exception):
"""
custom exception msg class
"""
def __init__(self, msg="Intern Error", code=500):
self.msg = msg
self.code = code
def __str__(self):
return self.msg
|
class Timeouterror(Exception):
pass
class Maxretryerror(Exception):
pass
class Goderror(Exception):
"""
custom exception msg class
"""
def __init__(self, msg='Intern Error', code=500):
self.msg = msg
self.code = code
def __str__(self):
return self.msg
|
def main():
object_a_mass = float(input("Object A mass: "))
object_b_mass = float(input("Object B mass: "))
distance = float(input("Distance between both: "))
G = 6.67408 * (10**11)
print(G*(object_a_mass*object_b_mass)/ (distance ** 2))
if __name__ == '__main__':
main()
|
def main():
object_a_mass = float(input('Object A mass: '))
object_b_mass = float(input('Object B mass: '))
distance = float(input('Distance between both: '))
g = 6.67408 * 10 ** 11
print(G * (object_a_mass * object_b_mass) / distance ** 2)
if __name__ == '__main__':
main()
|
PB_PACKAGE = __package__
NODE_TAG = 'p_baker_node'
MATERIAL_TAG = 'p_baker_material'
MATERIAL_TAG_VERTEX = 'p_baker_material_vertex'
NODE_INPUTS = [
'Color',
'Subsurface',
'Subsurface Color',
'Metallic',
'Specular',
'Specular Tint',
'Roughness',
'Anisotropic',
'Anisotropic Rotation',
'Sheen',
'Sheen Tint',
'Clearcoat',
'Clearcoat Roughness',
'IOR',
'Transmission',
'Transmission Roughness',
'Emission',
'Alpha',
'Normal',
'Clearcoat Normal',
'Tangent'
]
# for new material to have images nicely sorted
NODE_INPUTS_SORTED = [
'Color',
'Ambient Occlusion',
'Subsurface',
'Subsurface Radius',
'Subsurface Color',
'Metallic',
'Specular',
'Specular Tint',
'Roughness',
'Glossiness',
'Anisotropic',
'Anisotropic Rotation',
'Sheen',
'Sheen Tint',
'Clearcoat',
'Clearcoat Roughness',
'IOR',
'Transmission',
'Transmission Roughness',
'Emission',
'Alpha',
'Normal',
'Clearcoat Normal',
'Tangent',
'Bump',
'Displacement',
'Diffuse',
'Wireframe',
'Material ID'
]
NORMAL_INPUTS = {'Normal', 'Clearcoat Normal', 'Tangent'}
ALPHA_NODES = {
# "Alpha":'BSDF_TRANSPARENT',
"Translucent_Alpha": 'BSDF_TRANSLUCENT',
"Glass_Alpha": 'BSDF_GLASS'
}
BSDF_NODES = {
'BSDF_PRINCIPLED',
'BSDF_DIFFUSE',
'BSDF_TOON',
'BSDF_VELVET',
'BSDF_GLOSSY',
'BSDF_TRANSPARENT',
'BSDF_TRANSLUCENT',
'BSDF_GLASS'
}
IMAGE_FILE_FORMAT_ENDINGS = {
"BMP": "bmp",
"PNG": "png",
"JPEG": "jpg",
"TIFF": "tif",
"TARGA": "tga",
"OPEN_EXR": "exr",
}
# signs not allowed in file names or paths
NOT_ALLOWED_SIGNS = ['\\', '/', ':', '*', '?', '"', '<', '>', '|']
|
pb_package = __package__
node_tag = 'p_baker_node'
material_tag = 'p_baker_material'
material_tag_vertex = 'p_baker_material_vertex'
node_inputs = ['Color', 'Subsurface', 'Subsurface Color', 'Metallic', 'Specular', 'Specular Tint', 'Roughness', 'Anisotropic', 'Anisotropic Rotation', 'Sheen', 'Sheen Tint', 'Clearcoat', 'Clearcoat Roughness', 'IOR', 'Transmission', 'Transmission Roughness', 'Emission', 'Alpha', 'Normal', 'Clearcoat Normal', 'Tangent']
node_inputs_sorted = ['Color', 'Ambient Occlusion', 'Subsurface', 'Subsurface Radius', 'Subsurface Color', 'Metallic', 'Specular', 'Specular Tint', 'Roughness', 'Glossiness', 'Anisotropic', 'Anisotropic Rotation', 'Sheen', 'Sheen Tint', 'Clearcoat', 'Clearcoat Roughness', 'IOR', 'Transmission', 'Transmission Roughness', 'Emission', 'Alpha', 'Normal', 'Clearcoat Normal', 'Tangent', 'Bump', 'Displacement', 'Diffuse', 'Wireframe', 'Material ID']
normal_inputs = {'Normal', 'Clearcoat Normal', 'Tangent'}
alpha_nodes = {'Translucent_Alpha': 'BSDF_TRANSLUCENT', 'Glass_Alpha': 'BSDF_GLASS'}
bsdf_nodes = {'BSDF_PRINCIPLED', 'BSDF_DIFFUSE', 'BSDF_TOON', 'BSDF_VELVET', 'BSDF_GLOSSY', 'BSDF_TRANSPARENT', 'BSDF_TRANSLUCENT', 'BSDF_GLASS'}
image_file_format_endings = {'BMP': 'bmp', 'PNG': 'png', 'JPEG': 'jpg', 'TIFF': 'tif', 'TARGA': 'tga', 'OPEN_EXR': 'exr'}
not_allowed_signs = ['\\', '/', ':', '*', '?', '"', '<', '>', '|']
|
def nrange(start, stop, step=1):
while start < stop:
yield start
start += step
@profile
def ncall():
for i in nrange(1,1000000):
pass
if __name__ == "__main__":
ncall()
|
def nrange(start, stop, step=1):
while start < stop:
yield start
start += step
@profile
def ncall():
for i in nrange(1, 1000000):
pass
if __name__ == '__main__':
ncall()
|
string = "abcdefgabc"
string_list = []
for letter in string:
string_list.append(letter)
print(string_list)
string_list_no_duplicate = set(string_list)
string_list_no_duplicate = list(string_list_no_duplicate)
string_list_no_duplicate.sort()
print(string_list_no_duplicate)
for letters in string_list_no_duplicate:
string_count = string_list.count(letters)
print(f'{letters}, {string_count}')
# Suggested Solution
# dict = {}
# for s in string:
# dict[s] = dict.get(s,0)+1
#
# print('\n'.join.[f'{k}, {v}' for k, v in dict.items()])
#
|
string = 'abcdefgabc'
string_list = []
for letter in string:
string_list.append(letter)
print(string_list)
string_list_no_duplicate = set(string_list)
string_list_no_duplicate = list(string_list_no_duplicate)
string_list_no_duplicate.sort()
print(string_list_no_duplicate)
for letters in string_list_no_duplicate:
string_count = string_list.count(letters)
print(f'{letters}, {string_count}')
|
# Created by sarathkaul on 14/11/19
def remove_duplicates(sentence: str) -> str:
"""
Reomove duplicates from sentence
>>> remove_duplicates("Python is great and Java is also great")
'Java Python also and great is'
"""
sen_list = sentence.split(" ")
check = set()
for a_word in sen_list:
check.add(a_word)
return " ".join(sorted(check))
if __name__ == "__main__":
print(remove_duplicates("INPUT_SENTENCE"))
|
def remove_duplicates(sentence: str) -> str:
"""
Reomove duplicates from sentence
>>> remove_duplicates("Python is great and Java is also great")
'Java Python also and great is'
"""
sen_list = sentence.split(' ')
check = set()
for a_word in sen_list:
check.add(a_word)
return ' '.join(sorted(check))
if __name__ == '__main__':
print(remove_duplicates('INPUT_SENTENCE'))
|
def load(task_id, file_id, cmds):
global responses
code = reverse_upload(task_id, file_id)
name = cmds
if agent.get_Encryption_key() == "":
dynfs[name] = code
else:
dynfs[name] = encrypt_code(code)
response = {
'task_id': task_id,
"user_output": "Module successfully added",
'commands': [
{
"action": "add",
"cmd": name
}
],
'completed': True
}
responses.append(response)
print("\t- Load Done")
return
|
def load(task_id, file_id, cmds):
global responses
code = reverse_upload(task_id, file_id)
name = cmds
if agent.get_Encryption_key() == '':
dynfs[name] = code
else:
dynfs[name] = encrypt_code(code)
response = {'task_id': task_id, 'user_output': 'Module successfully added', 'commands': [{'action': 'add', 'cmd': name}], 'completed': True}
responses.append(response)
print('\t- Load Done')
return
|
for _ in range(int(input())):
n = int(input())
r = [int(i) for i in input().split()]
o = max(r)
if r.count(o)==len(r):
print(-1)
continue
kq = -1
for i in range(1,len(r)):
if r[i]==o and (r[i]>r[i-1]):
kq = i+1
for i in range(len(r)-1):
if r[i]==o and(r[i]>r[i+1]):
kq = i+1
print(kq)
|
for _ in range(int(input())):
n = int(input())
r = [int(i) for i in input().split()]
o = max(r)
if r.count(o) == len(r):
print(-1)
continue
kq = -1
for i in range(1, len(r)):
if r[i] == o and r[i] > r[i - 1]:
kq = i + 1
for i in range(len(r) - 1):
if r[i] == o and r[i] > r[i + 1]:
kq = i + 1
print(kq)
|
WIDTH = 128
HEIGHT = 128
# Must be more than ALIEN_SIZE, used to pad alien rows and columns
ALIEN_BLOCK_SIZE = 8
# Alien constants are global as their spacing is used to separate them
ALIENS_PER_ROW = int(WIDTH / ALIEN_BLOCK_SIZE) - 6
ALIEN_ROWS = int(HEIGHT / (2 * ALIEN_BLOCK_SIZE))
# How often to move the aliens intially, how much to step the alien time down with each shift
ALIEN_START_TIME = 4
ALIEN_TIME_STEP = 0.2
ALIEN_MINIMUM_TIME = 1
# How likely an alien is to fire in a time step
ALIEN_START_FIRE_PROBABILITY = 0.01
ALIEN_FIRE_PROBABILITY_STEP = 0.005
ALIEN_MAXIMUM_FIRE_PROBABILITY = 0.03
# Bunker constants
NUMBER_OF_BUNKERS = 4
BUNKER_WIDTH = 8
BUNKER_HEIGHT = 8
BUNKER_MAP = [
[1, 1, 1, 1, 1, 1, 1, 1],
[1, 1, 1, 1, 1, 1, 1, 1],
[1, 1, 1, 1, 1, 1, 1, 1],
[1, 1, 1, 0, 0, 1, 1, 1],
[1, 1, 0, 0, 0, 0, 1, 1],
[1, 1, 0, 0, 0, 0, 1, 1],
[1, 1, 0, 0, 0, 0, 1, 1],
[1, 1, 0, 0, 0, 0, 1, 1],
]
|
width = 128
height = 128
alien_block_size = 8
aliens_per_row = int(WIDTH / ALIEN_BLOCK_SIZE) - 6
alien_rows = int(HEIGHT / (2 * ALIEN_BLOCK_SIZE))
alien_start_time = 4
alien_time_step = 0.2
alien_minimum_time = 1
alien_start_fire_probability = 0.01
alien_fire_probability_step = 0.005
alien_maximum_fire_probability = 0.03
number_of_bunkers = 4
bunker_width = 8
bunker_height = 8
bunker_map = [[1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 0, 0, 1, 1, 1], [1, 1, 0, 0, 0, 0, 1, 1], [1, 1, 0, 0, 0, 0, 1, 1], [1, 1, 0, 0, 0, 0, 1, 1], [1, 1, 0, 0, 0, 0, 1, 1]]
|
fp = open('abcd.txt', 'r')
line_offset = []
offset = 0
for line in fp:
line_offset.append(offset)
offset += len(line)
print(line_offset)
for each in line_offset:
fp.seek(each)
print(fp.readline()[:-1])
|
fp = open('abcd.txt', 'r')
line_offset = []
offset = 0
for line in fp:
line_offset.append(offset)
offset += len(line)
print(line_offset)
for each in line_offset:
fp.seek(each)
print(fp.readline()[:-1])
|
# ----------------------------------------------------------------------------
# Copyright 2019-2022 Diligent Graphics LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# In no event and under no legal theory, whether in tort (including negligence),
# contract, or otherwise, unless required by applicable law (such as deliberate
# and grossly negligent acts) or agreed to in writing, shall any Contributor be
# liable for any damages, including any direct, indirect, special, incidental,
# or consequential damages of any character arising as a result of this License or
# out of the use or inability to use the software (including but not limited to damages
# for loss of goodwill, work stoppage, computer failure or malfunction, or any and
# all other commercial damages or losses), even if such Contributor has been advised
# of the possibility of such damages.
# ----------------------------------------------------------------------------
CXX_REGISTERED_STRUCT = {
"Version",
"RenderTargetBlendDesc",
"BlendStateDesc",
"StencilOpDesc",
"DepthStencilStateDesc",
"RasterizerStateDesc",
"InputLayoutDesc",
"LayoutElement",
"SampleDesc",
"ShaderResourceVariableDesc",
"PipelineResourceDesc",
"PipelineResourceSignatureDesc",
"SamplerDesc",
"ImmutableSamplerDesc",
"PipelineResourceLayoutDesc",
"PipelineStateDesc",
"GraphicsPipelineDesc",
"RayTracingPipelineDesc",
"TilePipelineDesc",
"RenderPassAttachmentDesc",
"AttachmentReference",
"ShadingRateAttachment",
"SubpassDesc",
"SubpassDependencyDesc",
"RenderPassDesc",
"ShaderDesc",
"ShaderMacro",
"ShaderResourceDesc",
"ShaderCreateInfo",
"RenderDeviceInfo",
"GraphicsAdapterInfo",
"DeviceFeatures",
"AdapterMemoryInfo",
"RayTracingProperties",
"WaveOpProperties",
"BufferProperties",
"TextureProperties",
"SamplerProperties",
"MeshShaderProperties",
"ShadingRateProperties",
"ComputeShaderProperties",
"DrawCommandProperties",
"SparseResourceProperties",
"ShadingRateMode",
"CommandQueueInfo",
"NDCAttribs",
"SerializationDeviceD3D11Info",
"SerializationDeviceD3D12Info",
"SerializationDeviceVkInfo",
"SerializationDeviceMtlInfo",
"SerializationDeviceCreateInfo",
}
CXX_REGISTERD_BASE_STRUCT = {
"DeviceObjectAttribs" : {"name": "Name", 'type': "const char *", "meta": "string"}
}
CXX_REGISTERED_ENUM = {
"BLEND_FACTOR",
"BLEND_OPERATION",
"COLOR_MASK",
"LOGIC_OPERATION",
"COLOR_MASK",
"STENCIL_OP",
"COMPARISON_FUNCTION",
"FILL_MODE",
"CULL_MODE",
"INPUT_ELEMENT_FREQUENCY",
"VALUE_TYPE",
"TEXTURE_FORMAT",
"PRIMITIVE_TOPOLOGY",
"RESOURCE_STATE",
"ACCESS_FLAGS",
"ATTACHMENT_LOAD_OP",
"ATTACHMENT_STORE_OP",
"PIPELINE_TYPE",
"PIPELINE_STAGE_FLAGS",
"PIPELINE_SHADING_RATE_FLAGS",
"PIPELINE_RESOURCE_FLAGS",
"PSO_CREATE_FLAGS",
"SAMPLER_FLAGS",
"FILTER_TYPE",
"TEXTURE_ADDRESS_MODE",
"SHADER_TYPE",
"SHADER_SOURCE_LANGUAGE",
"SHADER_COMPILER",
"SHADER_RESOURCE_TYPE",
"SHADER_RESOURCE_VARIABLE_TYPE",
"SHADER_RESOURCE_VARIABLE_TYPE_FLAGS",
"SHADER_VARIABLE_FLAGS",
"ADAPTER_TYPE",
"ADAPTER_VENDOR",
"BIND_FLAGS",
"CPU_ACCESS_FLAGS",
"WAVE_FEATURE",
"RAY_TRACING_CAP_FLAGS",
"COMMAND_QUEUE_TYPE",
"SPARSE_RESOURCE_CAP_FLAGS",
"DRAW_COMMAND_CAP_FLAGS",
"SHADING_RATE_CAP_FLAGS",
"SHADING_RATE_COMBINER",
"SHADING_RATE_TEXTURE_ACCESS",
"SHADING_RATE_FORMAT",
"RENDER_DEVICE_TYPE",
"DEVICE_FEATURE_STATE",
"SHADING_RATE",
"SAMPLE_COUNT"
}
CXX_SUFFIX_FILE = "Parser"
CXX_EXTENSION_FILE = "hpp"
CXX_LICENCE = '''/*
* Copyright 2019-2022 Diligent Graphics LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* In no event and under no legal theory, whether in tort (including negligence),
* contract, or otherwise, unless required by applicable law (such as deliberate
* and grossly negligent acts) or agreed to in writing, shall any Contributor be
* liable for any damages, including any direct, indirect, special, incidental,
* or consequential damages of any character arising as a result of this License or
* out of the use or inability to use the software (including but not limited to damages
* for loss of goodwill, work stoppage, computer failure or malfunction, or any and
* all other commercial damages or losses), even if such Contributor has been advised
* of the possibility of such damages.
*/
'''
|
cxx_registered_struct = {'Version', 'RenderTargetBlendDesc', 'BlendStateDesc', 'StencilOpDesc', 'DepthStencilStateDesc', 'RasterizerStateDesc', 'InputLayoutDesc', 'LayoutElement', 'SampleDesc', 'ShaderResourceVariableDesc', 'PipelineResourceDesc', 'PipelineResourceSignatureDesc', 'SamplerDesc', 'ImmutableSamplerDesc', 'PipelineResourceLayoutDesc', 'PipelineStateDesc', 'GraphicsPipelineDesc', 'RayTracingPipelineDesc', 'TilePipelineDesc', 'RenderPassAttachmentDesc', 'AttachmentReference', 'ShadingRateAttachment', 'SubpassDesc', 'SubpassDependencyDesc', 'RenderPassDesc', 'ShaderDesc', 'ShaderMacro', 'ShaderResourceDesc', 'ShaderCreateInfo', 'RenderDeviceInfo', 'GraphicsAdapterInfo', 'DeviceFeatures', 'AdapterMemoryInfo', 'RayTracingProperties', 'WaveOpProperties', 'BufferProperties', 'TextureProperties', 'SamplerProperties', 'MeshShaderProperties', 'ShadingRateProperties', 'ComputeShaderProperties', 'DrawCommandProperties', 'SparseResourceProperties', 'ShadingRateMode', 'CommandQueueInfo', 'NDCAttribs', 'SerializationDeviceD3D11Info', 'SerializationDeviceD3D12Info', 'SerializationDeviceVkInfo', 'SerializationDeviceMtlInfo', 'SerializationDeviceCreateInfo'}
cxx_registerd_base_struct = {'DeviceObjectAttribs': {'name': 'Name', 'type': 'const char *', 'meta': 'string'}}
cxx_registered_enum = {'BLEND_FACTOR', 'BLEND_OPERATION', 'COLOR_MASK', 'LOGIC_OPERATION', 'COLOR_MASK', 'STENCIL_OP', 'COMPARISON_FUNCTION', 'FILL_MODE', 'CULL_MODE', 'INPUT_ELEMENT_FREQUENCY', 'VALUE_TYPE', 'TEXTURE_FORMAT', 'PRIMITIVE_TOPOLOGY', 'RESOURCE_STATE', 'ACCESS_FLAGS', 'ATTACHMENT_LOAD_OP', 'ATTACHMENT_STORE_OP', 'PIPELINE_TYPE', 'PIPELINE_STAGE_FLAGS', 'PIPELINE_SHADING_RATE_FLAGS', 'PIPELINE_RESOURCE_FLAGS', 'PSO_CREATE_FLAGS', 'SAMPLER_FLAGS', 'FILTER_TYPE', 'TEXTURE_ADDRESS_MODE', 'SHADER_TYPE', 'SHADER_SOURCE_LANGUAGE', 'SHADER_COMPILER', 'SHADER_RESOURCE_TYPE', 'SHADER_RESOURCE_VARIABLE_TYPE', 'SHADER_RESOURCE_VARIABLE_TYPE_FLAGS', 'SHADER_VARIABLE_FLAGS', 'ADAPTER_TYPE', 'ADAPTER_VENDOR', 'BIND_FLAGS', 'CPU_ACCESS_FLAGS', 'WAVE_FEATURE', 'RAY_TRACING_CAP_FLAGS', 'COMMAND_QUEUE_TYPE', 'SPARSE_RESOURCE_CAP_FLAGS', 'DRAW_COMMAND_CAP_FLAGS', 'SHADING_RATE_CAP_FLAGS', 'SHADING_RATE_COMBINER', 'SHADING_RATE_TEXTURE_ACCESS', 'SHADING_RATE_FORMAT', 'RENDER_DEVICE_TYPE', 'DEVICE_FEATURE_STATE', 'SHADING_RATE', 'SAMPLE_COUNT'}
cxx_suffix_file = 'Parser'
cxx_extension_file = 'hpp'
cxx_licence = '/*\n * Copyright 2019-2022 Diligent Graphics LLC\n * \n * Licensed under the Apache License, Version 2.0 (the "License");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n * \n * http://www.apache.org/licenses/LICENSE-2.0\n * \n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an "AS IS" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n *\n * In no event and under no legal theory, whether in tort (including negligence), \n * contract, or otherwise, unless required by applicable law (such as deliberate \n * and grossly negligent acts) or agreed to in writing, shall any Contributor be\n * liable for any damages, including any direct, indirect, special, incidental, \n * or consequential damages of any character arising as a result of this License or \n * out of the use or inability to use the software (including but not limited to damages \n * for loss of goodwill, work stoppage, computer failure or malfunction, or any and \n * all other commercial damages or losses), even if such Contributor has been advised \n * of the possibility of such damages.\n */\n'
|
#
# PySNMP MIB module Cajun-ROOT (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/Cajun-ROOT
# Produced by pysmi-0.3.4 at Mon Apr 29 17:08:17 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
Integer, ObjectIdentifier, OctetString = mibBuilder.importSymbols("ASN1", "Integer", "ObjectIdentifier", "OctetString")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ValueRangeConstraint, ConstraintsIntersection, SingleValueConstraint, ConstraintsUnion, ValueSizeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ValueRangeConstraint", "ConstraintsIntersection", "SingleValueConstraint", "ConstraintsUnion", "ValueSizeConstraint")
ModuleCompliance, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup")
ModuleIdentity, Bits, Counter32, NotificationType, TimeTicks, MibScalar, MibTable, MibTableRow, MibTableColumn, MibIdentifier, ObjectIdentity, Unsigned32, iso, Counter64, enterprises, IpAddress, Integer32, Gauge32 = mibBuilder.importSymbols("SNMPv2-SMI", "ModuleIdentity", "Bits", "Counter32", "NotificationType", "TimeTicks", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "MibIdentifier", "ObjectIdentity", "Unsigned32", "iso", "Counter64", "enterprises", "IpAddress", "Integer32", "Gauge32")
DisplayString, TextualConvention = mibBuilder.importSymbols("SNMPv2-TC", "DisplayString", "TextualConvention")
lucent = MibIdentifier((1, 3, 6, 1, 4, 1, 1751))
products = MibIdentifier((1, 3, 6, 1, 4, 1, 1751, 1))
mibs = MibIdentifier((1, 3, 6, 1, 4, 1, 1751, 2))
cajunRtrProduct = MibIdentifier((1, 3, 6, 1, 4, 1, 1751, 1, 43))
cajunRtr = ModuleIdentity((1, 3, 6, 1, 4, 1, 1751, 2, 43))
if mibBuilder.loadTexts: cajunRtr.setLastUpdated('9904220000Z')
if mibBuilder.loadTexts: cajunRtr.setOrganization("Lucent's Concord Technology Center (CTC) ")
cjnSystem = MibIdentifier((1, 3, 6, 1, 4, 1, 1751, 2, 43, 1))
cjnProtocol = MibIdentifier((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2))
cjnMgmt = MibIdentifier((1, 3, 6, 1, 4, 1, 1751, 2, 43, 3))
cjnCli = MibIdentifier((1, 3, 6, 1, 4, 1, 1751, 2, 43, 1, 1))
cjnDload = MibIdentifier((1, 3, 6, 1, 4, 1, 1751, 2, 43, 1, 2))
cjnIpv4 = MibIdentifier((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 1))
cjnIpv6 = MibIdentifier((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 2))
cjnIpx = MibIdentifier((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 3))
cjnAtalk = MibIdentifier((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 4))
cjnIpv4Serv = MibIdentifier((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 5))
cjnIpv6Serv = MibIdentifier((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 6))
cjnIpxServ = MibIdentifier((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 7))
cjnAtalkServ = MibIdentifier((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 8))
cjnOspf = MibIdentifier((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9))
cjnRip = MibIdentifier((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 10))
cjnIgmp = MibIdentifier((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 11))
cjnRtm = MibIdentifier((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 12))
cjnDvmrp = MibIdentifier((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 13))
cjnPimSm = MibIdentifier((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 14))
cjnPimDm = MibIdentifier((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 15))
cjnRsvp = MibIdentifier((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 16))
cjnSnmp = MibIdentifier((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 17))
cjnBgp = MibIdentifier((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 18))
cjnLrrp = MibIdentifier((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 19))
cjnIpxRip = MibIdentifier((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 20))
cjnIpxSap = MibIdentifier((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 21))
cjnIpIfMgmt = MibIdentifier((1, 3, 6, 1, 4, 1, 1751, 2, 43, 3, 1))
cjnIpxIfMgmt = MibIdentifier((1, 3, 6, 1, 4, 1, 1751, 2, 43, 3, 2))
cjnAtalkIfMgmt = MibIdentifier((1, 3, 6, 1, 4, 1, 1751, 2, 43, 3, 3))
cjnResourceMgr = MibIdentifier((1, 3, 6, 1, 4, 1, 1751, 2, 43, 3, 4))
cjnIpAListMgmt = MibIdentifier((1, 3, 6, 1, 4, 1, 1751, 2, 43, 3, 5))
cjnIpForwardCtlMgt = MibIdentifier((1, 3, 6, 1, 4, 1, 1751, 2, 43, 3, 6))
cjnIpFwdMgmt = MibIdentifier((1, 3, 6, 1, 4, 1, 1751, 2, 43, 3, 7))
mibBuilder.exportSymbols("Cajun-ROOT", cjnIpForwardCtlMgt=cjnIpForwardCtlMgt, cjnSnmp=cjnSnmp, cjnIpv6=cjnIpv6, cjnAtalkServ=cjnAtalkServ, mibs=mibs, cjnIpIfMgmt=cjnIpIfMgmt, cjnDvmrp=cjnDvmrp, PYSNMP_MODULE_ID=cajunRtr, products=products, cjnRsvp=cjnRsvp, cjnIpv6Serv=cjnIpv6Serv, cjnResourceMgr=cjnResourceMgr, cjnIgmp=cjnIgmp, cjnOspf=cjnOspf, cjnBgp=cjnBgp, cjnIpxIfMgmt=cjnIpxIfMgmt, cjnAtalkIfMgmt=cjnAtalkIfMgmt, cjnMgmt=cjnMgmt, cjnRtm=cjnRtm, cajunRtr=cajunRtr, cjnPimSm=cjnPimSm, cjnIpFwdMgmt=cjnIpFwdMgmt, cjnLrrp=cjnLrrp, cjnIpxRip=cjnIpxRip, cjnAtalk=cjnAtalk, cjnIpAListMgmt=cjnIpAListMgmt, cajunRtrProduct=cajunRtrProduct, cjnCli=cjnCli, cjnIpv4Serv=cjnIpv4Serv, cjnPimDm=cjnPimDm, cjnIpxServ=cjnIpxServ, cjnRip=cjnRip, cjnDload=cjnDload, cjnIpx=cjnIpx, cjnProtocol=cjnProtocol, lucent=lucent, cjnIpv4=cjnIpv4, cjnSystem=cjnSystem, cjnIpxSap=cjnIpxSap)
|
(integer, object_identifier, octet_string) = mibBuilder.importSymbols('ASN1', 'Integer', 'ObjectIdentifier', 'OctetString')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(value_range_constraint, constraints_intersection, single_value_constraint, constraints_union, value_size_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ValueRangeConstraint', 'ConstraintsIntersection', 'SingleValueConstraint', 'ConstraintsUnion', 'ValueSizeConstraint')
(module_compliance, notification_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ModuleCompliance', 'NotificationGroup')
(module_identity, bits, counter32, notification_type, time_ticks, mib_scalar, mib_table, mib_table_row, mib_table_column, mib_identifier, object_identity, unsigned32, iso, counter64, enterprises, ip_address, integer32, gauge32) = mibBuilder.importSymbols('SNMPv2-SMI', 'ModuleIdentity', 'Bits', 'Counter32', 'NotificationType', 'TimeTicks', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'MibIdentifier', 'ObjectIdentity', 'Unsigned32', 'iso', 'Counter64', 'enterprises', 'IpAddress', 'Integer32', 'Gauge32')
(display_string, textual_convention) = mibBuilder.importSymbols('SNMPv2-TC', 'DisplayString', 'TextualConvention')
lucent = mib_identifier((1, 3, 6, 1, 4, 1, 1751))
products = mib_identifier((1, 3, 6, 1, 4, 1, 1751, 1))
mibs = mib_identifier((1, 3, 6, 1, 4, 1, 1751, 2))
cajun_rtr_product = mib_identifier((1, 3, 6, 1, 4, 1, 1751, 1, 43))
cajun_rtr = module_identity((1, 3, 6, 1, 4, 1, 1751, 2, 43))
if mibBuilder.loadTexts:
cajunRtr.setLastUpdated('9904220000Z')
if mibBuilder.loadTexts:
cajunRtr.setOrganization("Lucent's Concord Technology Center (CTC) ")
cjn_system = mib_identifier((1, 3, 6, 1, 4, 1, 1751, 2, 43, 1))
cjn_protocol = mib_identifier((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2))
cjn_mgmt = mib_identifier((1, 3, 6, 1, 4, 1, 1751, 2, 43, 3))
cjn_cli = mib_identifier((1, 3, 6, 1, 4, 1, 1751, 2, 43, 1, 1))
cjn_dload = mib_identifier((1, 3, 6, 1, 4, 1, 1751, 2, 43, 1, 2))
cjn_ipv4 = mib_identifier((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 1))
cjn_ipv6 = mib_identifier((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 2))
cjn_ipx = mib_identifier((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 3))
cjn_atalk = mib_identifier((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 4))
cjn_ipv4_serv = mib_identifier((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 5))
cjn_ipv6_serv = mib_identifier((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 6))
cjn_ipx_serv = mib_identifier((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 7))
cjn_atalk_serv = mib_identifier((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 8))
cjn_ospf = mib_identifier((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9))
cjn_rip = mib_identifier((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 10))
cjn_igmp = mib_identifier((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 11))
cjn_rtm = mib_identifier((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 12))
cjn_dvmrp = mib_identifier((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 13))
cjn_pim_sm = mib_identifier((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 14))
cjn_pim_dm = mib_identifier((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 15))
cjn_rsvp = mib_identifier((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 16))
cjn_snmp = mib_identifier((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 17))
cjn_bgp = mib_identifier((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 18))
cjn_lrrp = mib_identifier((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 19))
cjn_ipx_rip = mib_identifier((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 20))
cjn_ipx_sap = mib_identifier((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 21))
cjn_ip_if_mgmt = mib_identifier((1, 3, 6, 1, 4, 1, 1751, 2, 43, 3, 1))
cjn_ipx_if_mgmt = mib_identifier((1, 3, 6, 1, 4, 1, 1751, 2, 43, 3, 2))
cjn_atalk_if_mgmt = mib_identifier((1, 3, 6, 1, 4, 1, 1751, 2, 43, 3, 3))
cjn_resource_mgr = mib_identifier((1, 3, 6, 1, 4, 1, 1751, 2, 43, 3, 4))
cjn_ip_a_list_mgmt = mib_identifier((1, 3, 6, 1, 4, 1, 1751, 2, 43, 3, 5))
cjn_ip_forward_ctl_mgt = mib_identifier((1, 3, 6, 1, 4, 1, 1751, 2, 43, 3, 6))
cjn_ip_fwd_mgmt = mib_identifier((1, 3, 6, 1, 4, 1, 1751, 2, 43, 3, 7))
mibBuilder.exportSymbols('Cajun-ROOT', cjnIpForwardCtlMgt=cjnIpForwardCtlMgt, cjnSnmp=cjnSnmp, cjnIpv6=cjnIpv6, cjnAtalkServ=cjnAtalkServ, mibs=mibs, cjnIpIfMgmt=cjnIpIfMgmt, cjnDvmrp=cjnDvmrp, PYSNMP_MODULE_ID=cajunRtr, products=products, cjnRsvp=cjnRsvp, cjnIpv6Serv=cjnIpv6Serv, cjnResourceMgr=cjnResourceMgr, cjnIgmp=cjnIgmp, cjnOspf=cjnOspf, cjnBgp=cjnBgp, cjnIpxIfMgmt=cjnIpxIfMgmt, cjnAtalkIfMgmt=cjnAtalkIfMgmt, cjnMgmt=cjnMgmt, cjnRtm=cjnRtm, cajunRtr=cajunRtr, cjnPimSm=cjnPimSm, cjnIpFwdMgmt=cjnIpFwdMgmt, cjnLrrp=cjnLrrp, cjnIpxRip=cjnIpxRip, cjnAtalk=cjnAtalk, cjnIpAListMgmt=cjnIpAListMgmt, cajunRtrProduct=cajunRtrProduct, cjnCli=cjnCli, cjnIpv4Serv=cjnIpv4Serv, cjnPimDm=cjnPimDm, cjnIpxServ=cjnIpxServ, cjnRip=cjnRip, cjnDload=cjnDload, cjnIpx=cjnIpx, cjnProtocol=cjnProtocol, lucent=lucent, cjnIpv4=cjnIpv4, cjnSystem=cjnSystem, cjnIpxSap=cjnIpxSap)
|
# Add 5 to number
add5 = lambda n : n + 5
print(add5(2))
print(add5(7))
print()
# Square number
sqr = lambda n : n * n
print(sqr(2))
print(sqr(7))
print()
# Next integer
nextInt = lambda n : int(n) + 1
print(nextInt(2.7))
print(nextInt(7.2))
print()
# Previous integer of half
prevInt = lambda n : int(n // 2)
print(prevInt(2.7))
print(prevInt(7.2))
print()
# Division lambda
div = lambda dvsr : lambda dvdn : dvdn / dvsr
print(div(5)(10))
print(div(3)(27))
|
add5 = lambda n: n + 5
print(add5(2))
print(add5(7))
print()
sqr = lambda n: n * n
print(sqr(2))
print(sqr(7))
print()
next_int = lambda n: int(n) + 1
print(next_int(2.7))
print(next_int(7.2))
print()
prev_int = lambda n: int(n // 2)
print(prev_int(2.7))
print(prev_int(7.2))
print()
div = lambda dvsr: lambda dvdn: dvdn / dvsr
print(div(5)(10))
print(div(3)(27))
|
class Solution(object):
def preorder(self, root):
"""
:type root: Node
:rtype: List[int]
"""
if not root:
return []
values = []
self.visit(root, values)
return values
def visit(self, root, values):
values.append(root.val)
for child in root.children:
self.visit(child, values)
|
class Solution(object):
def preorder(self, root):
"""
:type root: Node
:rtype: List[int]
"""
if not root:
return []
values = []
self.visit(root, values)
return values
def visit(self, root, values):
values.append(root.val)
for child in root.children:
self.visit(child, values)
|
files = {
"server.py":"""#Import all your routes here
from {}.routes import router
from fastapi import FastAPI
app = FastAPI()
app.include_router(router)
""",
"settings.py": """#configuration for database""",
"test.py":"""#implement your test here""",
"models.py": """#implement your models here
from pydantic import BaseModel""",
"views.py":"""#implement your views here
async def homeView():
return {"Welcome":"To HomePage"}
#You can also create your method withou async keyword
# def homeView():
# return {"Welcome":"To HomePage"}
""",
"routes.py":"""#implement here your routes
from fastapi import APIRouter
from {}.views import homeView
router = APIRouter()
@router.get("/")
async def homePage():
return await homeView()
#You can also create your method withou async keywork then you can call your method withou await
# @router.get("/")
# def homePage():
# return homeView()"""
}
app_files = {
"server.py ":" ",
"settings.py":" ",
"models.py": """#implement your models here from pydantic import BaseModel""",
"views.py":"""#implement your views here""",
"routes.py":"""#implement your routes here""",
"test.py":"""#implement your test here""",
}
|
files = {'server.py': '#Import all your routes here\n\nfrom {}.routes import router\nfrom fastapi import FastAPI\n\napp = FastAPI()\n\napp.include_router(router)\n', 'settings.py': '#configuration for database', 'test.py': '#implement your test here', 'models.py': '#implement your models here\nfrom pydantic import BaseModel', 'views.py': '#implement your views here\n\nasync def homeView():\n return {"Welcome":"To HomePage"}\n\n#You can also create your method withou async keyword\n# def homeView():\n# return {"Welcome":"To HomePage"}\n \n', 'routes.py': '#implement here your routes\n\nfrom fastapi import APIRouter\nfrom {}.views import homeView\n\nrouter = APIRouter()\n\n@router.get("/")\nasync def homePage():\n return await homeView()\n\n#You can also create your method withou async keywork then you can call your method withou await\n# @router.get("/")\n# def homePage():\n# return homeView()'}
app_files = {'server.py ': ' ', 'settings.py': ' ', 'models.py': '#implement your models here from pydantic import BaseModel', 'views.py': '#implement your views here', 'routes.py': '#implement your routes here', 'test.py': '#implement your test here'}
|
state = '10011111011011001'
disk_length = 35651584
def mutate(a):
b = ''.join(['1' if x == '0' else '0' for x in reversed(a)])
return a + '0' + b
def checksum(a):
result = ''
i = 0
while i < len(a) - 1:
if a[i] == a[i+1]:
result += '1'
else:
result += '0'
i += 2
if len(result) % 2 != 1:
result = checksum(result)
return result
while len(state) < disk_length:
state = mutate(state)
state = state[:disk_length]
print(checksum(state))
|
state = '10011111011011001'
disk_length = 35651584
def mutate(a):
b = ''.join(['1' if x == '0' else '0' for x in reversed(a)])
return a + '0' + b
def checksum(a):
result = ''
i = 0
while i < len(a) - 1:
if a[i] == a[i + 1]:
result += '1'
else:
result += '0'
i += 2
if len(result) % 2 != 1:
result = checksum(result)
return result
while len(state) < disk_length:
state = mutate(state)
state = state[:disk_length]
print(checksum(state))
|
x = 1
while x < 10:
y = 1
while y < 10:
print("%4d" % (x*y), end="")
y += 1
print()
x += 1
|
x = 1
while x < 10:
y = 1
while y < 10:
print('%4d' % (x * y), end='')
y += 1
print()
x += 1
|
# vim: tabstop=4 shiftwidth=4 softtabstop=4
#
# Copyright 2011 Cisco Systems, Inc. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
#
# @author: Ying Liu, Cisco Systems, Inc.
#
def get_view_builder(req):
base_url = req.application_url
return ViewBuilder(base_url)
class ViewBuilder(object):
"""ViewBuilder for Credential, derived from quantum.views.networks."""
def __init__(self, base_url):
"""Initialize builder.
:param base_url: url of the root wsgi application
"""
self.base_url = base_url
def build(self, credential_data, is_detail=False):
"""Generic method used to generate a credential entity."""
if is_detail:
credential = self._build_detail(credential_data)
else:
credential = self._build_simple(credential_data)
return credential
def _build_simple(self, credential_data):
"""Return a simple description of credential."""
return dict(credential=dict(id=credential_data['credential_id']))
def _build_detail(self, credential_data):
"""Return a detailed description of credential."""
return dict(credential=dict(id=credential_data['credential_id'],
name=credential_data['user_name'],
password=credential_data['password']))
|
def get_view_builder(req):
base_url = req.application_url
return view_builder(base_url)
class Viewbuilder(object):
"""ViewBuilder for Credential, derived from quantum.views.networks."""
def __init__(self, base_url):
"""Initialize builder.
:param base_url: url of the root wsgi application
"""
self.base_url = base_url
def build(self, credential_data, is_detail=False):
"""Generic method used to generate a credential entity."""
if is_detail:
credential = self._build_detail(credential_data)
else:
credential = self._build_simple(credential_data)
return credential
def _build_simple(self, credential_data):
"""Return a simple description of credential."""
return dict(credential=dict(id=credential_data['credential_id']))
def _build_detail(self, credential_data):
"""Return a detailed description of credential."""
return dict(credential=dict(id=credential_data['credential_id'], name=credential_data['user_name'], password=credential_data['password']))
|
def saisie_liste():
cest_un_nombre=True
premier_nombre = input("Entrer un nombre : ")
somme=int(premier_nombre)
min=int(premier_nombre)
max=int(premier_nombre)
nombre_int = 0
n=0
moyenne = 0
while cest_un_nombre==True:
n += 1
nombre=input("Entrer un nombre : ")
if nombre=="":
print("Ce n'est pas un nombre")
cest_un_nombre=False
else:
nombre_int = int(nombre)
somme += nombre_int
moyenne = int(somme / n)
if(min>nombre_int):
min = nombre_int
elif(max<nombre_int):
max = nombre_int
else:
pass
print("Moyenne actuelle : "+ str(moyenne))
print("Min : "+str(min))
print("Max : "+str(max))
saisie_liste()
|
def saisie_liste():
cest_un_nombre = True
premier_nombre = input('Entrer un nombre : ')
somme = int(premier_nombre)
min = int(premier_nombre)
max = int(premier_nombre)
nombre_int = 0
n = 0
moyenne = 0
while cest_un_nombre == True:
n += 1
nombre = input('Entrer un nombre : ')
if nombre == '':
print("Ce n'est pas un nombre")
cest_un_nombre = False
else:
nombre_int = int(nombre)
somme += nombre_int
moyenne = int(somme / n)
if min > nombre_int:
min = nombre_int
elif max < nombre_int:
max = nombre_int
else:
pass
print('Moyenne actuelle : ' + str(moyenne))
print('Min : ' + str(min))
print('Max : ' + str(max))
saisie_liste()
|
AF_INET = 2
AF_INET6 = 10
IPPROTO_IP = 0
IPPROTO_TCP = 6
IPPROTO_UDP = 17
IP_ADD_MEMBERSHIP = 3
SOCK_DGRAM = 2
SOCK_RAW = 3
SOCK_STREAM = 1
SOL_SOCKET = 4095
SO_REUSEADDR = 4
def getaddrinfo():
pass
def socket():
pass
|
af_inet = 2
af_inet6 = 10
ipproto_ip = 0
ipproto_tcp = 6
ipproto_udp = 17
ip_add_membership = 3
sock_dgram = 2
sock_raw = 3
sock_stream = 1
sol_socket = 4095
so_reuseaddr = 4
def getaddrinfo():
pass
def socket():
pass
|
fixed_rows = []
with open('runs/expert/baseline_pass_full_doc_rerank', 'r') as fi:
for line in fi:
line = line.strip().split()
if line:
fixed_score = -float(line[4])
line[4] = str(fixed_score)
fixed_rows.append('\t'.join(line))
with open('runs/expert/baseline_pass_full_doc_rerank', 'w') as fo:
for row in fixed_rows:
fo.write(row + '\n')
|
fixed_rows = []
with open('runs/expert/baseline_pass_full_doc_rerank', 'r') as fi:
for line in fi:
line = line.strip().split()
if line:
fixed_score = -float(line[4])
line[4] = str(fixed_score)
fixed_rows.append('\t'.join(line))
with open('runs/expert/baseline_pass_full_doc_rerank', 'w') as fo:
for row in fixed_rows:
fo.write(row + '\n')
|
def insertion_sort(l):
for i in range(1, len(l)):
j = i-1
key = l[i]
while (l[j] > key) and (j >= 0):
l[j+1] = l[j]
j -= 1
l[j+1] = key
numbers = [10, 9, 8, 7, 6, 5, 4, 3, 2, 1]
insertion_sort(numbers)
print(numbers)
|
def insertion_sort(l):
for i in range(1, len(l)):
j = i - 1
key = l[i]
while l[j] > key and j >= 0:
l[j + 1] = l[j]
j -= 1
l[j + 1] = key
numbers = [10, 9, 8, 7, 6, 5, 4, 3, 2, 1]
insertion_sort(numbers)
print(numbers)
|
# Question: https://projecteuler.net/problem=120
# The coefficients of a^(odd) cancel out, so there might be a pattern ...
# n | X_n = (a-1)^n + (a+1)^n | mod a^2
#-----|----------------------------|--------
# 1 | 2a | 2a
# 2 | 2a^2 + 2 | 2
# 3 | 2a^3 + 6a | 6a
# 4 | 2a^4 + 6a^2 + 2 | 2
# 5 | 2a^5 + 20a^3 + 10a | 10a
# 6 | 2a^6 + 30a^4 + 30a^2 + 2 | 2
# 7 | 2a^7 + 42a^5 + 70a^3 + 14a | 14a
# So, if n is even, X^n = 2 (mod a^2)
# if n is odd, X^n = 2na (mod a^2)
# For a given 'a', what is the maximum x such that 2na = x (mod a^2) where n is an abitrary positive integer?
# We know that 2na is even, so if a if odd, the highest possible value of x is a^2 - 1
# if a is even, the highest possible value of x is a^2 - 2
# If a is even, then there exists k such that a = 2k. pick n = k, we have 2na = 2ka = a^2 = 0 (mod a^2)
# n = k - 1, we have 2na = a^2 - 2a (mod a^2)
# n = k - 2, we have 2na = a^2 - 4a (mod a^2)
# ...
# n = k - k, we have 2na = a^2 - 2ka = a^2 - a^2 = 0 (mod a^2)
# so the modulo group is {0, a^2 - 2ka}
# If a is odd, then there exists k such that a = 2k + 1. Pick n = 2k+1, then 2na = 2(2k+1)a = 2a^2 = 0 (mod a^2)
# ...
# n = k+2, then 2na = 2(k+2)a = (2k+1)a + 3a = a^2 + 3a = 3a = a^2 - a^2 + 3a = a^2 - (2k-2)a (mod a^2)
# n = k+1, then 2na = 2(k+1)a = (2k+1)a + a = a^2 + a = a = a^2 - (2k)a (mod a^2)
# start here -> n = k, then 2na = 2ka = (2k+1)a - a = a^2 - a (mod a^2)
# n = k-1, then 2na = 2(k-1)a = (2k+1)a - 3a = a^2 - 3a (mod a^2)
# n = k-2, then 2na = 2(k-2)a = (2k+1)a - 5a = a^2 - 5a (mod a^2)
# ...
# n = k-k, then 2na = 0 (mod a^2)
# so the modulo group is {0, a^2 - ka}
# So, if 'a' is odd, r_max = max(2, a^2 - a). Since a >= 3, r_max = a^2 - a
# if 'a' is even, r_max = max(2, a^2 - 2a). Since a >= 3, r_max = a^2 - 2a
# So, sum_{3,n}(r_max) = [sum_{1,n}(a^2-a)] - [sum_{3<=a<=n, 'a' even} (a)] - {a=1}(a^2-a) - {a=2}(a^2-a)
# = [sum_{1,n}(a^2-a)] - (2*[sum_{1<=i<=floor(n/2)} (i)] - 2) - {a=1}(a^2-a) - {a=2}(a^2-a)
# = 1/6 * n * (n+1) * (2n+1) - 1/2 * n * (n+1) - (2*n/2*(n/2+1) - 2) - 0 - 2
# = 1/3 * (n-1) * n * (n+1) - 1/4*n*(n+2)
N = 1000
result = (N-1)*N*(N+1) // 3 - N * (N+2)//4
print(result)
|
n = 1000
result = (N - 1) * N * (N + 1) // 3 - N * (N + 2) // 4
print(result)
|
n = int(input().strip())
for i in range(0,n):
for y in range(0,n):
if(y<n-i-1):
print(' ', end='')
elif(y>=n-i-1 and y!=n-1):
print('#',end='')
else:
print('#')
|
n = int(input().strip())
for i in range(0, n):
for y in range(0, n):
if y < n - i - 1:
print(' ', end='')
elif y >= n - i - 1 and y != n - 1:
print('#', end='')
else:
print('#')
|
class Node:
def __init__(self, value):
self.value = value
self.next = None
class Stack:
def __init__(self):
self.top = None
def push(self, value):
node = Node(value)
if self.top:
node.next = self.top
self.top = node
else:
self.top = node
def pop(self):
try:
deleted_value = self.top.value
temp = self.top.next
self.top = temp
temp.next = None
return deleted_value
except:
return "This is empty stack"
def peek(self):
try:
return self.top.value
except:
return "This is empty stack"
def isEmpty(self):
if self.top == None:
return False
else:
return True
class Queue:
def __init__(self):
self.front = None
self.rear = None
def enqueue(self, value):
node = Node(value)
if self.front == None:
self.front = node
self.rear = node
else:
self.rear.next = node
self.rear = node
def dequeue(self):
try:
removed = self.front
self.front = self.front.next
self.size -= 1
return removed.value
except:
return "The Queue is empty"
def peek(self):
try:
return self.front.value
except:
return "This is Empty queue"
def isEmpty(self):
if self.front == None and self.rear == None:
return True
else:
return False
def length(self):
length = 0
while self.front:
length += 1
self.front = self.front.next
return length
# if __name__=="__main__" :
# pass
# q = Queue()
# q.enqueue(4)
# q.enqueue(4)
# print(q.dequeue())
|
class Node:
def __init__(self, value):
self.value = value
self.next = None
class Stack:
def __init__(self):
self.top = None
def push(self, value):
node = node(value)
if self.top:
node.next = self.top
self.top = node
else:
self.top = node
def pop(self):
try:
deleted_value = self.top.value
temp = self.top.next
self.top = temp
temp.next = None
return deleted_value
except:
return 'This is empty stack'
def peek(self):
try:
return self.top.value
except:
return 'This is empty stack'
def is_empty(self):
if self.top == None:
return False
else:
return True
class Queue:
def __init__(self):
self.front = None
self.rear = None
def enqueue(self, value):
node = node(value)
if self.front == None:
self.front = node
self.rear = node
else:
self.rear.next = node
self.rear = node
def dequeue(self):
try:
removed = self.front
self.front = self.front.next
self.size -= 1
return removed.value
except:
return 'The Queue is empty'
def peek(self):
try:
return self.front.value
except:
return 'This is Empty queue'
def is_empty(self):
if self.front == None and self.rear == None:
return True
else:
return False
def length(self):
length = 0
while self.front:
length += 1
self.front = self.front.next
return length
|
def scorify_library(library):
"""
The aim is to give the libraries a score, that will enable to order them later on
"""
NB = library[0]
BD = library[2]
SB = library_total_book_score(library)
DR = library[1]
library_scoring = (D - DR) * BD * (SB/NB)
return library_scoring
def library_total_book_score(library):
book_ids = library[3]
total_library_book_score = 0
for id in book_ids:
total_library_book_score += BL[id]
return total_library_book_score
def compute_available_days():
available_libraries = []
availability_day = 0
while len(scores)>0:
library_id_score = scores.pop()
library_id = library_id_score[0]
DR = LL[library_id][1]
availability_day += DR
if availability_day > D:
continue
else:
entry = (library_id,availability_day)
available_libraries.append(entry)
return available_libraries
|
def scorify_library(library):
"""
The aim is to give the libraries a score, that will enable to order them later on
"""
nb = library[0]
bd = library[2]
sb = library_total_book_score(library)
dr = library[1]
library_scoring = (D - DR) * BD * (SB / NB)
return library_scoring
def library_total_book_score(library):
book_ids = library[3]
total_library_book_score = 0
for id in book_ids:
total_library_book_score += BL[id]
return total_library_book_score
def compute_available_days():
available_libraries = []
availability_day = 0
while len(scores) > 0:
library_id_score = scores.pop()
library_id = library_id_score[0]
dr = LL[library_id][1]
availability_day += DR
if availability_day > D:
continue
else:
entry = (library_id, availability_day)
available_libraries.append(entry)
return available_libraries
|
class Node:
def __init__(self, condition, body):
self.condition = condition
self.body = body
def visit(self, context):
rvalue = None
while self.condition.visit(context):
rvalue = self.body.visit(context)
return rvalue
|
class Node:
def __init__(self, condition, body):
self.condition = condition
self.body = body
def visit(self, context):
rvalue = None
while self.condition.visit(context):
rvalue = self.body.visit(context)
return rvalue
|
""" Quiz: Enumerate
Use enumerate to modify the cast list so that each element contains the name followed by the character's corresponding height. For example, the first element of cast should change from "Barney Stinson" to "Barney Stinson 72".
"""
cast = [
"Barney Stinson",
"Robin Scherbatsky",
"Ted Mosby",
"Lily Aldrin",
"Marshall Eriksen",
]
heights = [72, 68, 72, 66, 76]
# write your for loop here
for i, height in enumerate(heights):
cast[i] += " {}".format(height)
print(cast)
""" Solution """
# for i, character in enumerate(cast):
# cast[i] = character + " " + str(heights[i])
# print(cast)
|
""" Quiz: Enumerate
Use enumerate to modify the cast list so that each element contains the name followed by the character's corresponding height. For example, the first element of cast should change from "Barney Stinson" to "Barney Stinson 72".
"""
cast = ['Barney Stinson', 'Robin Scherbatsky', 'Ted Mosby', 'Lily Aldrin', 'Marshall Eriksen']
heights = [72, 68, 72, 66, 76]
for (i, height) in enumerate(heights):
cast[i] += ' {}'.format(height)
print(cast)
' Solution '
|
__all__ = [
'arch_blocks',
'get_mask',
'get_param_groups',
'logger',
'losses',
'lr_schedulers',
'optimizers_L1L2',
'tensorflow_logger',
]
|
__all__ = ['arch_blocks', 'get_mask', 'get_param_groups', 'logger', 'losses', 'lr_schedulers', 'optimizers_L1L2', 'tensorflow_logger']
|
class Solution:
def solve(self, courses):
n = len(courses)
def helper(start):
visited[start] = 1
for v in courses[start]:
if visited[v]==1:
return True
elif visited[v]==0:
if helper(v):
return True
visited[start] = 2
return False
visited = [0]*n
for i in range(n):
# print(visited)
if visited[i]==0 and helper(i):
# print(visited)
return False
return True
|
class Solution:
def solve(self, courses):
n = len(courses)
def helper(start):
visited[start] = 1
for v in courses[start]:
if visited[v] == 1:
return True
elif visited[v] == 0:
if helper(v):
return True
visited[start] = 2
return False
visited = [0] * n
for i in range(n):
if visited[i] == 0 and helper(i):
return False
return True
|
chipper = input('Input Message: ')
plain = ''
for alphabet in chipper:
temp = ord(alphabet)-1
plain += chr(temp)
print(plain)
|
chipper = input('Input Message: ')
plain = ''
for alphabet in chipper:
temp = ord(alphabet) - 1
plain += chr(temp)
print(plain)
|
"""
[2016-09-26] Challenge #285 [Easy] Cross Platform/Language Data Encoding part 1
https://www.reddit.com/r/dailyprogrammer/comments/54lu54/20160926_challenge_285_easy_cross/
We will make a binary byte oriented encoding of data that is self describing and extensible, and aims to solve the
following problems:
* portability between 32 and 64 (and any other) bit systems, and languages, and endian-ness.
* type system independent of underlying language.
* Allow heterogeneous arrays (differing types of array elements) where the underlying language has poor support for
them.
* leverage power of homogeneous arrays in a language.
* support records regardless of underlying language (array of records is homogeneous, even though a record is a
heterogeneous list of fields)
* Allow ragged arrays (a table where each row is a list, but the rows do not have a uniform size (or shape))
* Provide basic in memory compression. Allow deferred decoding of partial data.
# 1. base64 encoding (used in later challenges)
To read and write binary data on reddit, we will use base64 encoding,
https://www.reddit.com/r/dailyprogrammer/comments/4xy6i1/20160816_challenge_279_easy_uuencoding/
# 2. Extendible byte base.
Any size integer can be coded into a variable byte array by using the maximum byte value as a marker to add the next
byte value to decode the total.
This is useful for coding numbers that you think can be limited to around 255 or close to it, without being "hard
constrained" by that limit. "256 possible op codes (or characters) ought to be enough for everyone forever thinking"
**unsigned byte input**
12
255
256
510
512 44 1024
last input is a list of 3 integers to encode
**sample outputs**
12
255 0
255 1
255 255 0
255 255 2 44 255 255 255 255 4
every element that is not 255 marks the end of "that integer" in a list. You should also write a decoder that
transforms output into input.
# 3. multibyte and variable byte encodings
Instead of a single byte target encoding, 2,4,8 and variable defined byte sizes are also desirable to cover integers
with larger ranges. An account balance might have a 40 bit practical limit, but you might not guarantee it forever.
64 bits might not be enough for Zimbabwe currency balances for example.
For compressing a list of numbers, often it is useful to set the whole list to one "byte size". Other choices include,
* setting an enum/table of possible byte size codings of 1 2 4 8 sizes, and then encoding, the number of elements, the
table/enum size and definition, and then 2 lists (enum key, data items)
* interleave bytesize, data
The latter will often be longer for long lists, but does not encode the table so is simpler to encode/decode.
**Encoding format for table definition:**
1. 4 bytes: first 30 bits - length of list. last 2 bits: key into 1 2 4 8. If first 30 bits are max value, then
following 4 bytes are added to count until a non-max value is taken. Similar to challenge #2.
2. list of byte lengths defined by key in 1. If last 2 bits of 1 are 3 (signifies up to 8 distinct integer sizes),
then this list has 8 items. If there only 6 distinct integer size codings, then the last 2 items in this list would be
ignored and set to 0. Values over 255 are encoded as in challenge 2.
3. list of ordered data encodings in boolean form, if there are more than 1. 1 bit for 2, 2 bits for 4, 3 bits for 8.
4. list of data elements.
**challenges**
encode list of integers from 0 to 1025 using 8 or 16 bit variable encoding. With the shortest encoding that will
contain the number. Just print the sum of all the bytes as result for output brevity.
**solution**
1. first 4 bytes are (1025 * 4) + 1 (leading 0 bytes for smaller than "full size" numbers)
2. 2 byte list: 1 2
3. 0 for first 256 bits, 1 for remaining bits (total 1032 bits long with padding)
4. 256 + (769 * 2) bytes long encoding of the numbers.
# 4. balanced signed numbers
Some numbers are negative. The common computer encoding for signed number ranges is to subtract half the max power of
2 from the value. A signed byte has range -128 to 127, where a 0 value corresponds to -128 (in our encoding).
For numbers outside this range encoded in a single byte, the process is to take the first byte to determine the sign,
and then following bytes add or subtract up to 255 per byte until a non 255 value is reached.
# 5. unbalanced signed numbers
Instead of the midpoint marking 0, a byte can encode a value within any defined range.
Another important application is to use "negative" numbers as codes of some sort. These include:
* An expectation that negative numbers are less frequent and smaller relative to 0
* coding special values such as null, infinity, undeterminable (0/0)
* Using codes to hint at extended byte encodings and sign of the number, or even data type
**sample 0 index codes** (for 16 reserved codes) (new paragraph for multiline explained codes)
Null
Infinity
Negative Infinity
Negative 1 byte
Negative 2 bytes
Negative 4 bytes
Negative 8 bytes
Negative custom byte length (value is encoded into 2 numbers. First is byte length (in 255 terminated bytes, followed
by that number of bytes to represent the number)
Positive 1 byte (first number indicates range of 468 to 723). 467 could have been encoded as 255 254 without this
special code.
Positive 2 byte
Positive 4 byte
Positive 8 byte
Positive 16 byte
Positive 64 byte
Positive custom byte length (3 to 262 excluding other defined lengths)
Positive custom 2 byte length (16 bit unsigned number defines byte length of number, followed by encoded number)
**sample inputs**
10
123123
-55
Null
**sample output**
26
9 123123
3 54 (minimum range value is -1)
0
**challenge input**
192387198237192837192837192387123817239182737 _44 981237123
array of 3 numbers (_44 is -44) to be encoded
"""
def main():
pass
if __name__ == "__main__":
main()
|
"""
[2016-09-26] Challenge #285 [Easy] Cross Platform/Language Data Encoding part 1
https://www.reddit.com/r/dailyprogrammer/comments/54lu54/20160926_challenge_285_easy_cross/
We will make a binary byte oriented encoding of data that is self describing and extensible, and aims to solve the
following problems:
* portability between 32 and 64 (and any other) bit systems, and languages, and endian-ness.
* type system independent of underlying language.
* Allow heterogeneous arrays (differing types of array elements) where the underlying language has poor support for
them.
* leverage power of homogeneous arrays in a language.
* support records regardless of underlying language (array of records is homogeneous, even though a record is a
heterogeneous list of fields)
* Allow ragged arrays (a table where each row is a list, but the rows do not have a uniform size (or shape))
* Provide basic in memory compression. Allow deferred decoding of partial data.
# 1. base64 encoding (used in later challenges)
To read and write binary data on reddit, we will use base64 encoding,
https://www.reddit.com/r/dailyprogrammer/comments/4xy6i1/20160816_challenge_279_easy_uuencoding/
# 2. Extendible byte base.
Any size integer can be coded into a variable byte array by using the maximum byte value as a marker to add the next
byte value to decode the total.
This is useful for coding numbers that you think can be limited to around 255 or close to it, without being "hard
constrained" by that limit. "256 possible op codes (or characters) ought to be enough for everyone forever thinking"
**unsigned byte input**
12
255
256
510
512 44 1024
last input is a list of 3 integers to encode
**sample outputs**
12
255 0
255 1
255 255 0
255 255 2 44 255 255 255 255 4
every element that is not 255 marks the end of "that integer" in a list. You should also write a decoder that
transforms output into input.
# 3. multibyte and variable byte encodings
Instead of a single byte target encoding, 2,4,8 and variable defined byte sizes are also desirable to cover integers
with larger ranges. An account balance might have a 40 bit practical limit, but you might not guarantee it forever.
64 bits might not be enough for Zimbabwe currency balances for example.
For compressing a list of numbers, often it is useful to set the whole list to one "byte size". Other choices include,
* setting an enum/table of possible byte size codings of 1 2 4 8 sizes, and then encoding, the number of elements, the
table/enum size and definition, and then 2 lists (enum key, data items)
* interleave bytesize, data
The latter will often be longer for long lists, but does not encode the table so is simpler to encode/decode.
**Encoding format for table definition:**
1. 4 bytes: first 30 bits - length of list. last 2 bits: key into 1 2 4 8. If first 30 bits are max value, then
following 4 bytes are added to count until a non-max value is taken. Similar to challenge #2.
2. list of byte lengths defined by key in 1. If last 2 bits of 1 are 3 (signifies up to 8 distinct integer sizes),
then this list has 8 items. If there only 6 distinct integer size codings, then the last 2 items in this list would be
ignored and set to 0. Values over 255 are encoded as in challenge 2.
3. list of ordered data encodings in boolean form, if there are more than 1. 1 bit for 2, 2 bits for 4, 3 bits for 8.
4. list of data elements.
**challenges**
encode list of integers from 0 to 1025 using 8 or 16 bit variable encoding. With the shortest encoding that will
contain the number. Just print the sum of all the bytes as result for output brevity.
**solution**
1. first 4 bytes are (1025 * 4) + 1 (leading 0 bytes for smaller than "full size" numbers)
2. 2 byte list: 1 2
3. 0 for first 256 bits, 1 for remaining bits (total 1032 bits long with padding)
4. 256 + (769 * 2) bytes long encoding of the numbers.
# 4. balanced signed numbers
Some numbers are negative. The common computer encoding for signed number ranges is to subtract half the max power of
2 from the value. A signed byte has range -128 to 127, where a 0 value corresponds to -128 (in our encoding).
For numbers outside this range encoded in a single byte, the process is to take the first byte to determine the sign,
and then following bytes add or subtract up to 255 per byte until a non 255 value is reached.
# 5. unbalanced signed numbers
Instead of the midpoint marking 0, a byte can encode a value within any defined range.
Another important application is to use "negative" numbers as codes of some sort. These include:
* An expectation that negative numbers are less frequent and smaller relative to 0
* coding special values such as null, infinity, undeterminable (0/0)
* Using codes to hint at extended byte encodings and sign of the number, or even data type
**sample 0 index codes** (for 16 reserved codes) (new paragraph for multiline explained codes)
Null
Infinity
Negative Infinity
Negative 1 byte
Negative 2 bytes
Negative 4 bytes
Negative 8 bytes
Negative custom byte length (value is encoded into 2 numbers. First is byte length (in 255 terminated bytes, followed
by that number of bytes to represent the number)
Positive 1 byte (first number indicates range of 468 to 723). 467 could have been encoded as 255 254 without this
special code.
Positive 2 byte
Positive 4 byte
Positive 8 byte
Positive 16 byte
Positive 64 byte
Positive custom byte length (3 to 262 excluding other defined lengths)
Positive custom 2 byte length (16 bit unsigned number defines byte length of number, followed by encoded number)
**sample inputs**
10
123123
-55
Null
**sample output**
26
9 123123
3 54 (minimum range value is -1)
0
**challenge input**
192387198237192837192837192387123817239182737 _44 981237123
array of 3 numbers (_44 is -44) to be encoded
"""
def main():
pass
if __name__ == '__main__':
main()
|
def dec1(def1):
def exec():
print("Executing now")
def1()
print("Executed")
return exec
@dec1
def who_is_sandy():
print("Sandy is good programmer")
#who_is_sandy = dec1(who_is_sandy) #Decorative function is dec1 another term is @dec1
who_is_sandy()
|
def dec1(def1):
def exec():
print('Executing now')
def1()
print('Executed')
return exec
@dec1
def who_is_sandy():
print('Sandy is good programmer')
who_is_sandy()
|
"""Aiohwenergy errors."""
class AiohwenergyException(Exception):
"""Base error for aiohwenergy."""
class RequestError(AiohwenergyException):
"""Unable to fulfill request.
Raised when host or API cannot be reached.
"""
class InvalidStateError(AiohwenergyException):
"""Raised when the device is not in the correct state."""
class UnsupportedError(AiohwenergyException):
"""Raised when the device is not supported from this library."""
class DisabledError(AiohwenergyException):
"""Raised when device API is disabled. User has to enable API in app."""
|
"""Aiohwenergy errors."""
class Aiohwenergyexception(Exception):
"""Base error for aiohwenergy."""
class Requesterror(AiohwenergyException):
"""Unable to fulfill request.
Raised when host or API cannot be reached.
"""
class Invalidstateerror(AiohwenergyException):
"""Raised when the device is not in the correct state."""
class Unsupportederror(AiohwenergyException):
"""Raised when the device is not supported from this library."""
class Disablederror(AiohwenergyException):
"""Raised when device API is disabled. User has to enable API in app."""
|
# container with most water
# https://leetcode.com/problems/container-with-most-water/
# the function maxArea -> take in a list of integers and return an integer
# 3 variables to keep track of the current max area, left and right pointers
# left pointer initialized to the first elements of the list
# right pointer initialized to the last elements of the list
# current max area initialized to 0
# height will be the lower of the two elements at the left and right pointers
# width will be the difference between the right pointer and left pointer
# compute the area between the 2 pointer and compare result with current max area, if result is greater than current max area, update current max area to result
# compare the height of the 2 pointer and shift the pointer that is shorter
# [to compensate for the reduction in width, we want to move the pointer that is shorter to a taller line]
# recompute current max area
class Solution:
def maxArea(self, height: list[int]) -> int:
current_max_area = 0
left = 0
right = len(height)-1
while (left < right):
area = (right - left) * min(height[left], height[right])
if area > current_max_area:
current_max_area = area
if height[left] < height[right]:
left += 1
else:
right -= 1
return current_max_area
a = [1,8,6,2,5,4,8,3,7]
sol = Solution()
print(sol.maxArea(a))
|
class Solution:
def max_area(self, height: list[int]) -> int:
current_max_area = 0
left = 0
right = len(height) - 1
while left < right:
area = (right - left) * min(height[left], height[right])
if area > current_max_area:
current_max_area = area
if height[left] < height[right]:
left += 1
else:
right -= 1
return current_max_area
a = [1, 8, 6, 2, 5, 4, 8, 3, 7]
sol = solution()
print(sol.maxArea(a))
|
"""
Copyright (c) Contributors to the Open 3D Engine Project.
For complete copyright and license terms please see the LICENSE at the root of this distribution.
SPDX-License-Identifier: Apache-2.0 OR MIT
Settings file for the TestRailImporter tool.
"""
TESTRAIL_STATUS_IDS = { # For more info see http://docs.gurock.com/testrail-api2/reference-statuses
'pass_id': 1,
'block_id': 2,
'untested_id': 3,
'retest_id': 4,
'fail_id': 5,
'na_id': 6,
'pass_issues_id': 7,
'failed_nonblocker_id': 8,
'punted_id': 9,
}
|
"""
Copyright (c) Contributors to the Open 3D Engine Project.
For complete copyright and license terms please see the LICENSE at the root of this distribution.
SPDX-License-Identifier: Apache-2.0 OR MIT
Settings file for the TestRailImporter tool.
"""
testrail_status_ids = {'pass_id': 1, 'block_id': 2, 'untested_id': 3, 'retest_id': 4, 'fail_id': 5, 'na_id': 6, 'pass_issues_id': 7, 'failed_nonblocker_id': 8, 'punted_id': 9}
|
print("------------------------------------")
print("********* Woorden switchen *********")
print("------------------------------------")
# Input temperatuur in Celsius
woord1 = input("Woord 1: ")
woord2 = input("Woord 2: ")
# Output
print()
print("Woord 1: " + woord1.upper())
print("Woord 2: " + woord2.upper())
print()
# Switchen van woorden
woord1, woord2 = woord2, woord1
# Output
print()
print("Woord 1: " + woord1.upper())
print("Woord 2: " + woord2.upper())
print()
# Workaround wachten tot enter
input("Druk op Enter om door te gaan...")
|
print('------------------------------------')
print('********* Woorden switchen *********')
print('------------------------------------')
woord1 = input('Woord 1: ')
woord2 = input('Woord 2: ')
print()
print('Woord 1: ' + woord1.upper())
print('Woord 2: ' + woord2.upper())
print()
(woord1, woord2) = (woord2, woord1)
print()
print('Woord 1: ' + woord1.upper())
print('Woord 2: ' + woord2.upper())
print()
input('Druk op Enter om door te gaan...')
|
# * =======================
# *
# * Author: Matthew Moccaro
# * File: Network_Programming.py
# * Type: Python Source File
# *
# * Creation Date: 1/2/19
# *
# * Description: Python
# * source file for the
# * network programming
# * project.
# *
# * ======================
print("Network Programming For Python")
|
print('Network Programming For Python')
|
__author__ = 'mstipanov'
class ApiRequestErrorDetails(object):
messageId = ""
text = ""
variables = ""
additionalDescription = ""
def __init__(self, text=""):
self.text = text
def __str__(self):
return "ApiRequestErrorDetails: {" \
"messageId = \"" + str(self.messageId) + "\", " \
"text = \"" + str(self.text) + "\", " \
"variables = \"" + str(
self.variables) + "\", " \
"additionalDescription = \"" + str(self.additionalDescription) + "\"" \
"}"
class ApiRequestError(object):
clientCorrelator = ""
serviceException = ApiRequestErrorDetails()
def __init__(self, clientCorrelator="", serviceException=ApiRequestErrorDetails()):
self.clientCorrelator = clientCorrelator
self.serviceException = serviceException
def __str__(self):
return "ApiRequestError: {" \
"clientCorrelator = \"" + str(self.clientCorrelator) + "\", " \
"serviceException = " + str(
self.serviceException) + "" \
"}"
class ApiException(Exception):
requestError = ApiRequestError()
def __init__(self, requestError=ApiRequestError()):
self.requestError = requestError
def __str__(self):
return "ApiException: {" \
"requestError = " + str(self.requestError) + "" \
"}"
|
__author__ = 'mstipanov'
class Apirequesterrordetails(object):
message_id = ''
text = ''
variables = ''
additional_description = ''
def __init__(self, text=''):
self.text = text
def __str__(self):
return 'ApiRequestErrorDetails: {messageId = "' + str(self.messageId) + '", text = "' + str(self.text) + '", variables = "' + str(self.variables) + '", additionalDescription = "' + str(self.additionalDescription) + '"}'
class Apirequesterror(object):
client_correlator = ''
service_exception = api_request_error_details()
def __init__(self, clientCorrelator='', serviceException=api_request_error_details()):
self.clientCorrelator = clientCorrelator
self.serviceException = serviceException
def __str__(self):
return 'ApiRequestError: {clientCorrelator = "' + str(self.clientCorrelator) + '", serviceException = ' + str(self.serviceException) + '}'
class Apiexception(Exception):
request_error = api_request_error()
def __init__(self, requestError=api_request_error()):
self.requestError = requestError
def __str__(self):
return 'ApiException: {requestError = ' + str(self.requestError) + '}'
|
"""
Aim: Given an undirected graph and an integer M. The task is to determine if
the graph can be colored with at most M colors such that no two adjacent
vertices of the graph are colored with the same color.
Intuition: We consider all the different combinations of the colors for the
given graph using backtacking.
"""
def isSafe(graph, v, n, temp, color):
# This checks whether if it safe to color the given node with temp color i.e checking if the adjacent nodes are different from temp
for i in range(v):
if graph[n][i] == 1 and color[i] == temp:
return False
return True
def check(graph, m, v, n, color):
# This function iteratively checks different combinations.
if n == v: # base case : if all the nodes are traversed return
return True
for i in range(1, m + 1):
if isSafe(graph, v, n, i, color): # checking if it is safe to color
color[n] = i
if check(graph, m, v, n + 1, color):
return True
color[n] = 0
return False
def graphcoloring(graph, M, V):
color = [0] * (V + 1) # assigning colors to different nodes
return check(graph, M, V, 0, color)
# ------------------------DRIVER CODE ------------------------
def main():
for _ in range(int(input())):
V = int(input())
M = int(input())
E = int(input())
list = [int(x) for x in input().strip().split()]
graph = [[0 for i in range(V)] for j in range(V)]
cnt = 0
for i in range(E):
graph[list[cnt] - 1][list[cnt + 1] - 1] = 1
graph[list[cnt + 1] - 1][list[cnt] - 1] = 1
cnt += 2
if graphcoloring(graph, M, V) == True:
print(1)
else:
print(0)
if __name__ == "__main__":
main()
"""
Sample Input:
2
4
3
5
1 2 2 3 3 4 4 1 1 3
3
2
3
1 2 2 3 1 3
Sample Output:
1
0
"""
|
"""
Aim: Given an undirected graph and an integer M. The task is to determine if
the graph can be colored with at most M colors such that no two adjacent
vertices of the graph are colored with the same color.
Intuition: We consider all the different combinations of the colors for the
given graph using backtacking.
"""
def is_safe(graph, v, n, temp, color):
for i in range(v):
if graph[n][i] == 1 and color[i] == temp:
return False
return True
def check(graph, m, v, n, color):
if n == v:
return True
for i in range(1, m + 1):
if is_safe(graph, v, n, i, color):
color[n] = i
if check(graph, m, v, n + 1, color):
return True
color[n] = 0
return False
def graphcoloring(graph, M, V):
color = [0] * (V + 1)
return check(graph, M, V, 0, color)
def main():
for _ in range(int(input())):
v = int(input())
m = int(input())
e = int(input())
list = [int(x) for x in input().strip().split()]
graph = [[0 for i in range(V)] for j in range(V)]
cnt = 0
for i in range(E):
graph[list[cnt] - 1][list[cnt + 1] - 1] = 1
graph[list[cnt + 1] - 1][list[cnt] - 1] = 1
cnt += 2
if graphcoloring(graph, M, V) == True:
print(1)
else:
print(0)
if __name__ == '__main__':
main()
'\nSample Input:\n2\n4\n3\n5\n1 2 2 3 3 4 4 1 1 3\n3\n2\n3\n1 2 2 3 1 3\n\nSample Output:\n1\n0\n\n'
|
# -*- coding: utf-8 -*-
# Jupyter Extension points
def _jupyter_nbextension_paths():
return [
dict(
section="notebook",
# the path is relative to the `my_fancy_module` directory
src="resources/nbextension",
# directory in the `nbextension/` namespace
dest="nbsafety",
# _also_ in the `nbextension/` namespace
require="nbsafety/index",
)
]
def load_jupyter_server_extension(nbapp):
pass
|
def _jupyter_nbextension_paths():
return [dict(section='notebook', src='resources/nbextension', dest='nbsafety', require='nbsafety/index')]
def load_jupyter_server_extension(nbapp):
pass
|
class BatteryAndInverter:
name = "battery and inverter"
params = [
{
"key": "capacity_dc_kwh",
"label": "",
"units": "kwh",
"private": False,
"value": 4000,
"confidence": 0,
"notes": "",
"source": "FAKE"
},
{
"key": "capacity_dc_kw",
"label": "",
"units": "kw",
"private": False,
"value": 4000,
"confidence": 0,
"notes": "",
"source": "FAKE"
},
{
"key": "roundtrip_efficiency",
"label": "",
"units": "decimal percent",
"private": False,
"value": 0.95,
"confidence": 0,
"notes": "",
"source": "FAKE"
},
{
"key": "wh_per_kg",
"label": "",
"units": "Wh/kg",
"private": False,
"value": 200,
"confidence": 0,
"notes": "",
"source": "FAKE"
},
{
"key": "m3_per_kwh",
"label": "",
"units": "m3/kWh",
"private": False,
"value": 0.0001,
"confidence": 0,
"notes": "",
"source": "FAKE"
}
]
states = [
{
"key": "available_dc_kwh",
"label": "",
"units": "kwh",
"private": False,
"value": 4000,
"confidence": 0,
"notes": "",
"source": ""
},
{
"key": "generated_dc_kwh",
"label": "",
"units": "kwh",
"private": False,
"value": 0,
"confidence": 0,
"notes": "The is the way that generators send kwh to battery",
"source": ""
},
{
"key": "mass",
"label": "",
"units": "kg",
"private": True,
"value": 0,
"confidence": 0,
"notes": "",
"source": ""
},
{
"key": "volume",
"label": "",
"units": "m3",
"private": True,
"value": 0,
"confidence": 0,
"notes": "",
"source": ""
}
]
@staticmethod
def run_step(states, params, utils):
if states.mass == 0:
inverter_mass = 0 # TODO: Incorporate inverter mass
states.mass = 1 / ( params.wh_per_kg / 1000) * params.capacity_dc_kwh + inverter_mass
states.volume = params.m3_per_kwh * params.capacity_dc_kwh
if states.available_dc_kwh < 0:
utils.terminate_sim_with_error("available_dc_kwh was negative")
if states.available_dc_kwh == 0:
utils.log_warning("Available AC kWh is zero!")
# Due to current limitations in modeling setup
# Apply the full round trip battery efficiency for
# energy added to the battery instead of part when added in
# and part when added out
states.available_dc_kwh += states.generated_dc_kwh * params.roundtrip_efficiency
# TODO: Check whether this shoudl be ac or dc
if states.available_dc_kwh > params.capacity_dc_kwh:
states.available_dc_kwh = params.capacity_dc_kwh
# Reset the input DC bus so PV etc can be added in next sim tick
states.generated_dc_kwh = 0
# Hack for clipping by max available power
states.available_dc_kwh = min(states.available_dc_kwh, params.capacity_dc_kw)
|
class Batteryandinverter:
name = 'battery and inverter'
params = [{'key': 'capacity_dc_kwh', 'label': '', 'units': 'kwh', 'private': False, 'value': 4000, 'confidence': 0, 'notes': '', 'source': 'FAKE'}, {'key': 'capacity_dc_kw', 'label': '', 'units': 'kw', 'private': False, 'value': 4000, 'confidence': 0, 'notes': '', 'source': 'FAKE'}, {'key': 'roundtrip_efficiency', 'label': '', 'units': 'decimal percent', 'private': False, 'value': 0.95, 'confidence': 0, 'notes': '', 'source': 'FAKE'}, {'key': 'wh_per_kg', 'label': '', 'units': 'Wh/kg', 'private': False, 'value': 200, 'confidence': 0, 'notes': '', 'source': 'FAKE'}, {'key': 'm3_per_kwh', 'label': '', 'units': 'm3/kWh', 'private': False, 'value': 0.0001, 'confidence': 0, 'notes': '', 'source': 'FAKE'}]
states = [{'key': 'available_dc_kwh', 'label': '', 'units': 'kwh', 'private': False, 'value': 4000, 'confidence': 0, 'notes': '', 'source': ''}, {'key': 'generated_dc_kwh', 'label': '', 'units': 'kwh', 'private': False, 'value': 0, 'confidence': 0, 'notes': 'The is the way that generators send kwh to battery', 'source': ''}, {'key': 'mass', 'label': '', 'units': 'kg', 'private': True, 'value': 0, 'confidence': 0, 'notes': '', 'source': ''}, {'key': 'volume', 'label': '', 'units': 'm3', 'private': True, 'value': 0, 'confidence': 0, 'notes': '', 'source': ''}]
@staticmethod
def run_step(states, params, utils):
if states.mass == 0:
inverter_mass = 0
states.mass = 1 / (params.wh_per_kg / 1000) * params.capacity_dc_kwh + inverter_mass
states.volume = params.m3_per_kwh * params.capacity_dc_kwh
if states.available_dc_kwh < 0:
utils.terminate_sim_with_error('available_dc_kwh was negative')
if states.available_dc_kwh == 0:
utils.log_warning('Available AC kWh is zero!')
states.available_dc_kwh += states.generated_dc_kwh * params.roundtrip_efficiency
if states.available_dc_kwh > params.capacity_dc_kwh:
states.available_dc_kwh = params.capacity_dc_kwh
states.generated_dc_kwh = 0
states.available_dc_kwh = min(states.available_dc_kwh, params.capacity_dc_kw)
|
# Generate a mask for the upper triangle
mask = np.zeros_like(corr, dtype=np.bool)
mask[np.triu_indices_from(mask)] = True
# Set up the matplotlib figure
f, ax = plt.subplots(figsize=(20, 18))
# Draw the heatmap with the mask and correct aspect ratio
sns.heatmap(corr, mask=mask, cmap="YlGnBu", vmax=.30, center=0,
square=True, linewidths=.5, cbar_kws={"shrink": .5})
|
mask = np.zeros_like(corr, dtype=np.bool)
mask[np.triu_indices_from(mask)] = True
(f, ax) = plt.subplots(figsize=(20, 18))
sns.heatmap(corr, mask=mask, cmap='YlGnBu', vmax=0.3, center=0, square=True, linewidths=0.5, cbar_kws={'shrink': 0.5})
|
# -*- coding: utf-8 -*-
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
class LbaasToBigIP(object):
def __init__(self, benchmark, benchmark_filter):
self.benchmark_name = None
self.benchmark = None
self.benchmark_filter = None
self.benchmark_projects = None
self.subject_name = None
self.subject = None
self.subject_filter = None
self.subject_projects = None
self.validate_subject(benchmark)
self.init_benchmark(benchmark, benchmark_filter)
def compare_to(self, subject, subject_filter):
self.validate_subject(subject)
self.init_subject(subject, subject_filter)
def validate_subject(self, subject):
if not isinstance(subject, dict):
raise Exception("Comparator must be a dcit type")
if len(subject) != 1:
raise Exception("Only one Comparator should be "
"provided at a time")
def init_subject(self, subject, subject_filter):
self.subject_name = subject.keys()[0]
self.subject = subject.values()[0]
self.subject_filter = subject_filter
projects = self.subject.get_projects_on_device()
self.subject_projects = self.subject_filter.get_ids(
projects
)
def init_benchmark(self, benchmark, benchmark_filter):
self.benchmark_name = benchmark.keys()[0]
self.benchmark = benchmark.values()[0]
self.benchmark_filter = benchmark_filter
projects = \
self.benchmark.get_projects_on_device()
self.benchmark_projects = set(projects)
def get_common_resources_diff(self, bm_resources,
sub_method,
resource_type=None):
sub_resources = []
bm_res = self.benchmark_filter.get_resources(
bm_resources)
bm_ids = set(bm_res.keys())
for project in self.subject_projects:
sub_resources += sub_method(
project
)
sub_ids = self.subject_filter.get_ids(
sub_resources)
diff = bm_ids - sub_ids
result = self.benchmark_filter.convert_common_resources(
diff, bm_res, resource_type=resource_type
)
return result
def get_missing_projects(self):
res = self.benchmark_projects - self.subject_projects
diff = self.benchmark_filter.convert_projects(
res
)
return diff
def get_missing_loadbalancers(self):
lb_resources = []
sub_resources = []
missing = []
converted_lb = {}
for project in self.benchmark_projects:
lb_resources += self.benchmark.get_agent_project_loadbalancers(
project
)
for project in self.subject_projects:
sub_resources += self.subject.get_project_loadbalancers(
project
)
bigip_lbs = self.subject_filter.filter_loadbalancers(sub_resources)
for lb in lb_resources:
if lb.id not in bigip_lbs:
converted_lb = self.benchmark_filter.convert_loadbalancers(
lb, ""
)
missing.append(converted_lb)
else:
bigip_ip = bigip_lbs[lb.id]
if lb.vip_address != bigip_ip:
converted_lb = self.benchmark_filter.convert_loadbalancers(
lb, bigip_ip
)
missing.append(converted_lb)
return missing
def get_missing_listeners(self):
lb_resources = []
for project in self.benchmark_projects:
lb_resources += self.benchmark.get_agent_project_loadbalancers(
project
)
ls_resources = []
lb_ids = [lb.id for lb in lb_resources]
ls_resources += self.benchmark.get_listeners_by_lb_ids(lb_ids)
sub_method = self.subject.get_project_listeners
diff = self.get_common_resources_diff(
ls_resources, sub_method, "listener"
)
return diff
def get_missing_pools(self):
lb_resources = []
for project in self.benchmark_projects:
lb_resources += self.benchmark.get_agent_project_loadbalancers(
project
)
pl_resources = []
lb_ids = [lb.id for lb in lb_resources]
pl_resources += self.benchmark.get_pools_by_lb_ids(lb_ids)
sub_method = self.subject.get_project_pools
diff = self.get_common_resources_diff(
pl_resources, sub_method, "pool"
)
return diff
def get_missing_members(self):
bm_lbs = []
bm_pools = []
sub_pools = []
missing_mb = []
for project in self.benchmark_projects:
bm_lbs += self.benchmark.get_agent_project_loadbalancers(
project
)
lb_ids = [lb.id for lb in bm_lbs]
bm_pools += self.benchmark.get_pools_by_lb_ids(lb_ids)
bm_mbs = self.benchmark_filter.filter_pool_members(bm_pools)
for project in self.subject_projects:
sub_pools += self.subject.get_project_pools(
project
)
sub_mbs = self.subject_filter.filter_pool_members(sub_pools)
for pool_id, members in bm_mbs.items():
if pool_id not in sub_mbs:
if members:
missing_mb += self.benchmark_filter.convert_members(
pool_id, members)
continue
for mb in members:
if not mb["address_port"] in sub_mbs[pool_id]:
mb['bigip_ips'] = sub_mbs[pool_id]
missing_mb += self.benchmark_filter.convert_members(
pool_id, [mb])
return missing_mb
|
class Lbaastobigip(object):
def __init__(self, benchmark, benchmark_filter):
self.benchmark_name = None
self.benchmark = None
self.benchmark_filter = None
self.benchmark_projects = None
self.subject_name = None
self.subject = None
self.subject_filter = None
self.subject_projects = None
self.validate_subject(benchmark)
self.init_benchmark(benchmark, benchmark_filter)
def compare_to(self, subject, subject_filter):
self.validate_subject(subject)
self.init_subject(subject, subject_filter)
def validate_subject(self, subject):
if not isinstance(subject, dict):
raise exception('Comparator must be a dcit type')
if len(subject) != 1:
raise exception('Only one Comparator should be provided at a time')
def init_subject(self, subject, subject_filter):
self.subject_name = subject.keys()[0]
self.subject = subject.values()[0]
self.subject_filter = subject_filter
projects = self.subject.get_projects_on_device()
self.subject_projects = self.subject_filter.get_ids(projects)
def init_benchmark(self, benchmark, benchmark_filter):
self.benchmark_name = benchmark.keys()[0]
self.benchmark = benchmark.values()[0]
self.benchmark_filter = benchmark_filter
projects = self.benchmark.get_projects_on_device()
self.benchmark_projects = set(projects)
def get_common_resources_diff(self, bm_resources, sub_method, resource_type=None):
sub_resources = []
bm_res = self.benchmark_filter.get_resources(bm_resources)
bm_ids = set(bm_res.keys())
for project in self.subject_projects:
sub_resources += sub_method(project)
sub_ids = self.subject_filter.get_ids(sub_resources)
diff = bm_ids - sub_ids
result = self.benchmark_filter.convert_common_resources(diff, bm_res, resource_type=resource_type)
return result
def get_missing_projects(self):
res = self.benchmark_projects - self.subject_projects
diff = self.benchmark_filter.convert_projects(res)
return diff
def get_missing_loadbalancers(self):
lb_resources = []
sub_resources = []
missing = []
converted_lb = {}
for project in self.benchmark_projects:
lb_resources += self.benchmark.get_agent_project_loadbalancers(project)
for project in self.subject_projects:
sub_resources += self.subject.get_project_loadbalancers(project)
bigip_lbs = self.subject_filter.filter_loadbalancers(sub_resources)
for lb in lb_resources:
if lb.id not in bigip_lbs:
converted_lb = self.benchmark_filter.convert_loadbalancers(lb, '')
missing.append(converted_lb)
else:
bigip_ip = bigip_lbs[lb.id]
if lb.vip_address != bigip_ip:
converted_lb = self.benchmark_filter.convert_loadbalancers(lb, bigip_ip)
missing.append(converted_lb)
return missing
def get_missing_listeners(self):
lb_resources = []
for project in self.benchmark_projects:
lb_resources += self.benchmark.get_agent_project_loadbalancers(project)
ls_resources = []
lb_ids = [lb.id for lb in lb_resources]
ls_resources += self.benchmark.get_listeners_by_lb_ids(lb_ids)
sub_method = self.subject.get_project_listeners
diff = self.get_common_resources_diff(ls_resources, sub_method, 'listener')
return diff
def get_missing_pools(self):
lb_resources = []
for project in self.benchmark_projects:
lb_resources += self.benchmark.get_agent_project_loadbalancers(project)
pl_resources = []
lb_ids = [lb.id for lb in lb_resources]
pl_resources += self.benchmark.get_pools_by_lb_ids(lb_ids)
sub_method = self.subject.get_project_pools
diff = self.get_common_resources_diff(pl_resources, sub_method, 'pool')
return diff
def get_missing_members(self):
bm_lbs = []
bm_pools = []
sub_pools = []
missing_mb = []
for project in self.benchmark_projects:
bm_lbs += self.benchmark.get_agent_project_loadbalancers(project)
lb_ids = [lb.id for lb in bm_lbs]
bm_pools += self.benchmark.get_pools_by_lb_ids(lb_ids)
bm_mbs = self.benchmark_filter.filter_pool_members(bm_pools)
for project in self.subject_projects:
sub_pools += self.subject.get_project_pools(project)
sub_mbs = self.subject_filter.filter_pool_members(sub_pools)
for (pool_id, members) in bm_mbs.items():
if pool_id not in sub_mbs:
if members:
missing_mb += self.benchmark_filter.convert_members(pool_id, members)
continue
for mb in members:
if not mb['address_port'] in sub_mbs[pool_id]:
mb['bigip_ips'] = sub_mbs[pool_id]
missing_mb += self.benchmark_filter.convert_members(pool_id, [mb])
return missing_mb
|
# -*- coding: utf-8 -*-
# API - cs
# FileName: default.py
# Version: 1.0.0
# Create: 2018-10-24
# Modify: 2018-10-27
"""
Default settings and values
"""
"""global"""
BUCKET_NAME = 'BUCKET_NAME'
CODING = 'utf-8'
DOMAIN = 'DOMAIN'
INTERNAL_DOMAIN = 'oss-cn-beijing-internal.aliyuncs.com'
PREFIX = 'mosdb/user/{0}/data/app/cs/'
RESERVE_CHAR = ','
RESERVE_CHAR_REPLACE = (RESERVE_CHAR, str())
"""auth"""
AK_ID = str()
AK_SECRET = str()
"""upload"""
UPLOAD_URL_EXPIRES = 60
FILE_ID_LEN = 32
FOLDER_ID_LEN = 8
FOLDER_RECORD_MAX_LEN = 16384
"""download"""
DOWNLOAD_URL_EXPIRES_RANGE = (0, 7200)
|
"""
Default settings and values
"""
'global'
bucket_name = 'BUCKET_NAME'
coding = 'utf-8'
domain = 'DOMAIN'
internal_domain = 'oss-cn-beijing-internal.aliyuncs.com'
prefix = 'mosdb/user/{0}/data/app/cs/'
reserve_char = ','
reserve_char_replace = (RESERVE_CHAR, str())
'auth'
ak_id = str()
ak_secret = str()
'upload'
upload_url_expires = 60
file_id_len = 32
folder_id_len = 8
folder_record_max_len = 16384
'download'
download_url_expires_range = (0, 7200)
|
# Declaring the gotopt2 dependencies
load("@bazel_gazelle//:deps.bzl", "gazelle_dependencies", "go_repository")
load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository")
load("@bazel_bats//:deps.bzl", "bazel_bats_dependencies")
# Include this into any dependencies that want to compile gotopt2 from source.
# This declaration must be updated every time the dependencies in the workspace
# change.
def gotopt2_dependencies():
go_repository(
name = "com_github_golang_glog",
commit = "23def4e6c14b",
importpath = "github.com/golang/glog",
)
go_repository(
name = "com_github_google_go_cmp",
importpath = "github.com/google/go-cmp",
tag = "v0.2.0",
)
go_repository(
name = "in_gopkg_check_v1",
commit = "20d25e280405",
importpath = "gopkg.in/check.v1",
)
go_repository(
name = "in_gopkg_yaml_v2",
importpath = "gopkg.in/yaml.v2",
tag = "v2.2.2",
)
git_repository(
name = "bazel_bats",
remote = "https://github.com/filmil/bazel-bats",
commit = "78da0822ea339bd0292b5cc0b5de6930d91b3254",
shallow_since = "1569564445 -0700",
)
bazel_bats_dependencies()
|
load('@bazel_gazelle//:deps.bzl', 'gazelle_dependencies', 'go_repository')
load('@bazel_tools//tools/build_defs/repo:git.bzl', 'git_repository')
load('@bazel_bats//:deps.bzl', 'bazel_bats_dependencies')
def gotopt2_dependencies():
go_repository(name='com_github_golang_glog', commit='23def4e6c14b', importpath='github.com/golang/glog')
go_repository(name='com_github_google_go_cmp', importpath='github.com/google/go-cmp', tag='v0.2.0')
go_repository(name='in_gopkg_check_v1', commit='20d25e280405', importpath='gopkg.in/check.v1')
go_repository(name='in_gopkg_yaml_v2', importpath='gopkg.in/yaml.v2', tag='v2.2.2')
git_repository(name='bazel_bats', remote='https://github.com/filmil/bazel-bats', commit='78da0822ea339bd0292b5cc0b5de6930d91b3254', shallow_since='1569564445 -0700')
bazel_bats_dependencies()
|
# -*- coding: utf-8 -*-
"""
Created on 2018/5/20
@author: susmote
"""
kv_dict = {}
with open('../right_code.txt') as f:
for value in f:
value = value.strip()
for i in value:
kv_dict.setdefault(i, 0)
kv_dict[i] += 1
print(kv_dict.keys())
print(len(kv_dict))
|
"""
Created on 2018/5/20
@author: susmote
"""
kv_dict = {}
with open('../right_code.txt') as f:
for value in f:
value = value.strip()
for i in value:
kv_dict.setdefault(i, 0)
kv_dict[i] += 1
print(kv_dict.keys())
print(len(kv_dict))
|
A = []
B = []
for i in range (10):
A.append(int(input()))
U = int(input())
for j in range (len(A)):
if A[j] == U:
B.append(j)
print(B)
|
a = []
b = []
for i in range(10):
A.append(int(input()))
u = int(input())
for j in range(len(A)):
if A[j] == U:
B.append(j)
print(B)
|
def differentSymbolsNaive(s):
diffArray = []
for i in range(len(list(s))):
if list(s)[i] not in diffArray:
diffArray.append(list(s)[i])
return len(diffArray)
|
def different_symbols_naive(s):
diff_array = []
for i in range(len(list(s))):
if list(s)[i] not in diffArray:
diffArray.append(list(s)[i])
return len(diffArray)
|
s = input()
s = s.upper()
c = 0
for i in ("ABCDEFGHIJKLMNOPQRSTUVWXYZ"):
for j in s:
if(i!=j):
c = 0
else:
c = 1
break
if(c==0):
break
if c==1:
print("Pangram exists")
else:
print("Pangram doesn't exists")
|
s = input()
s = s.upper()
c = 0
for i in 'ABCDEFGHIJKLMNOPQRSTUVWXYZ':
for j in s:
if i != j:
c = 0
else:
c = 1
break
if c == 0:
break
if c == 1:
print('Pangram exists')
else:
print("Pangram doesn't exists")
|
string_variable = "Nicolas"
int_variable = 24
print(string_variable)
print(int_variable)
|
string_variable = 'Nicolas'
int_variable = 24
print(string_variable)
print(int_variable)
|
name = input("Please enter your name: ")
print("{0}, Please guess a number between 0 and 10: ".format(name))
guess = int(input())
if guess != 5:
if guess < 5 :
print("Please guess higher")
else:
print("Please guess lower")
guess = int(input())
if guess == 5:
print("Well done, {0}. You guessed it ".format(name))
else:
print("Sorry, {0} you have not guessed correctly.".format(name))
else:
print("Great job! {0}, you got it first time".format(name))
print("This game has ended. Please try again later")
|
name = input('Please enter your name: ')
print('{0}, Please guess a number between 0 and 10: '.format(name))
guess = int(input())
if guess != 5:
if guess < 5:
print('Please guess higher')
else:
print('Please guess lower')
guess = int(input())
if guess == 5:
print('Well done, {0}. You guessed it '.format(name))
else:
print('Sorry, {0} you have not guessed correctly.'.format(name))
else:
print('Great job! {0}, you got it first time'.format(name))
print('This game has ended. Please try again later')
|
"""
time: c*26 + p
space: 26 + 26 (1)
"""
class Solution:
def findAnagrams(self, s: str, p: str) -> List[int]:
cntP = collections.Counter(p)
cntS = collections.Counter()
P = len(p)
S = len(s)
if P > S:
return []
ans = []
for i, c in enumerate(s):
cntS[c] += 1
if i >= P:
if cntS[s[i-P]] > 1:
cntS[s[i-P]] -= 1
else:
del cntS[s[i-P]]
if cntS == cntP:
ans.append(i-(P-1))
return ans
|
"""
time: c*26 + p
space: 26 + 26 (1)
"""
class Solution:
def find_anagrams(self, s: str, p: str) -> List[int]:
cnt_p = collections.Counter(p)
cnt_s = collections.Counter()
p = len(p)
s = len(s)
if P > S:
return []
ans = []
for (i, c) in enumerate(s):
cntS[c] += 1
if i >= P:
if cntS[s[i - P]] > 1:
cntS[s[i - P]] -= 1
else:
del cntS[s[i - P]]
if cntS == cntP:
ans.append(i - (P - 1))
return ans
|
def do_the_thing():
with open("input.txt", "r") as f:
nums = list(map(int, f.readlines()))
if len(nums) < 3:
return 0
count = 0
for i in range(len(nums)-3):
if nums[i] < nums[i+3]:
count += 1
return count
#
# window_size = 0
# prev = 0
# count = 0
# for line in f:
# num = int(line)
#
# if window_size < 3:
# prev += num
# window_size += 1
#
# elif
#
#
# if prev and prev < num:
# count+=1
# prev = num
#
# print(count)
if __name__ == "__main__":
answer = do_the_thing()
print(answer)
|
def do_the_thing():
with open('input.txt', 'r') as f:
nums = list(map(int, f.readlines()))
if len(nums) < 3:
return 0
count = 0
for i in range(len(nums) - 3):
if nums[i] < nums[i + 3]:
count += 1
return count
if __name__ == '__main__':
answer = do_the_thing()
print(answer)
|
_base_ = [
'../_base_/models/mask_rcnn_red50_neck_fpn_head.py',
'../_base_/datasets/coco_instance.py',
'../_base_/schedules/schedule_1x_warmup.py', '../_base_/default_runtime.py'
]
optimizer_config = dict(grad_clip(dict(_delete_=True, max_norm=5, norm_type=2)))
|
_base_ = ['../_base_/models/mask_rcnn_red50_neck_fpn_head.py', '../_base_/datasets/coco_instance.py', '../_base_/schedules/schedule_1x_warmup.py', '../_base_/default_runtime.py']
optimizer_config = dict(grad_clip(dict(_delete_=True, max_norm=5, norm_type=2)))
|
def maxSumUsingMid(a, first, last, mid):
max_left = -99999
sum1 = 0
for i in range(mid, first - 1, -1):
sum1 += a[i]
if sum1 > max_left:
max_left = sum1
max_right = -99999
sum1 = 0
for i in range(mid + 1, last + 1):
sum1 += a[i]
if sum1 > max_right:
max_right = sum1
return max_left + max_right
def maxSubArraySum(a, first, last):
if first == last:
return a[first]
mid = (first + last)//2
return max(maxSubArraySum(a, first, mid), maxSubArraySum(a, mid+1, last),
maxSumUsingMid(a, first, last, mid))
arr = [-11, -5, 9, 2, 3, -2, 4, 5, 7]
n = len(arr)
max_sum = maxSubArraySum(arr, 0, n-1)
print("Maximum contiguous sum is ", max_sum)
|
def max_sum_using_mid(a, first, last, mid):
max_left = -99999
sum1 = 0
for i in range(mid, first - 1, -1):
sum1 += a[i]
if sum1 > max_left:
max_left = sum1
max_right = -99999
sum1 = 0
for i in range(mid + 1, last + 1):
sum1 += a[i]
if sum1 > max_right:
max_right = sum1
return max_left + max_right
def max_sub_array_sum(a, first, last):
if first == last:
return a[first]
mid = (first + last) // 2
return max(max_sub_array_sum(a, first, mid), max_sub_array_sum(a, mid + 1, last), max_sum_using_mid(a, first, last, mid))
arr = [-11, -5, 9, 2, 3, -2, 4, 5, 7]
n = len(arr)
max_sum = max_sub_array_sum(arr, 0, n - 1)
print('Maximum contiguous sum is ', max_sum)
|
'''
This module exists purely to check how to import test cases in the test suite
'''
def ex_function():
return True
|
"""
This module exists purely to check how to import test cases in the test suite
"""
def ex_function():
return True
|
## Command format
COMMAND_SIZE_TOTAL = 14 ## Cammand size total
COMMAND_SIZE_HEADER = 4 ## Cammand header size
COMMAND_SIZE_CHECKSUM = 4 ## Cammand checksum size
COMMAND_SIZE_OVERHEAD = 8 ## COMMAND_SIZE_HEADER + COMMAND_SIZE_CHECKSUM
COMMAND_START_MARK = 0xF5 ## Command start marking
COMMAND_INDEX_COMMAND = 1 ## Cammand index
COMMAND_INDEX_DATA = 2 ## Cammand payload data
## setup commands
COMMAND_SET_INTEGRATION_TIME_3D = 0x00 ## Command to set the integration time for 3D operation
COMMAND_SET_INTEGRATION_TIME_GRAYSCALE = 0x01 ## Command to set the integration time for grayscale
COMMAND_SET_ROI = 0x02 ## Command to set the region of interest
COMMAND_SET_BINNING = 0x03 ## Command to set the binning
COMMAND_SET_MODE = 0x04 ## Command to set the mode
COMMAND_SET_MODULATION_FREQUENCY = 0x05 ## Command to set the modulation frequency
COMMAND_SET_DLL_STEP = 0x06 ## Command to set the DLL step
COMMAND_SET_FILTER = 0x07 ## Command to set the filter parameters
COMMAND_SET_OFFSET = 0x08 ## Command to set the offset
COMMAND_SET_MINIMAL_AMPLITUDE = 0x09 ## Command to set th minimal amplitude
COMMAND_SET_DCS_FILTER = 0x0A ## Command to set the DCS filter
COMMAND_SET_GAUSSIAN_FILTER = 0x0B ## Command to set the Gaussian filter
COMMAND_SET_FRAME_RATE = 0x0C ## Command to set/limit the frame rate
COMMAND_SET_HDR = 0x0D
COMMAND_SET_MODULATION_CHANNEL = 0x0E ## Command to set the modulation channel
COMMAND_SET_FILTER_SINGLE_SPOT = 0x0F ## Command to set the temporal filter for the single spot
## acquisition commands
COMMAND_GET_DISTANCE = 0x20 ## Command to request distance data
COMMAND_GET_AMPLITUDE = 0x21 ## Command to request amplitude data
COMMAND_GET_DISTANCE_AMPLITUDE = 0x22 ## Command to request distance and amplitude data
COMMAND_GET_DCS_DISTANCE_AMPLITUDE = 0x23 ## Command to request distance, amplitude and DCS data at once
COMMAND_GET_GRAYSCALE = 0x24 ## Command to request grayscale data
COMMAND_GET_DCS = 0x25 ## Command to request DCS data
COMMAND_SET_AUTO_ACQUISITION = 0x26 ## Command to enable/disable the auto acquisition
COMMAND_GET_INTEGRATION_TIME_3D = 0x27 ## Command to read the integration time. Important when using automatic mode
COMMAND_STOP_STREAM = 0x28 ## Command to stop the stream
COMMAND_GET_DISTANCE_GRAYSCALE = 0x29 ## Command to request distance and grayscale
COMMAND_GET_IDENTIFICATION = 0x47 ## Command to identification
COMMAND_GET_CHIP_INFORMATION = 0x48 ## Command to read the chip information
COMMAND_GET_FIRMWARE_RELEASE = 0x49 ## Command to read the firmware release
COMMAND_GET_PRODUCTION_INFO = 0x50 ## Command to get the production info
## MODULATION
COMMAND_SET_MODULATION_FREQUENCY = 0x05
VALUE_10MHZ = 0 ## Value for 10MHz for command "COMMAND_SET_MODULATION_FREQUENCY"
VALUE_20MHZ = 1 ## Value for 20MHz for command "COMMAND_SET_MODULATION_FREQUENCY"
## 635 op mode
MODE_BEAM_A = 0 ## Normal operation with illumination beam A
MODE_BEAM_B_MANUAL = 1 ## Normal operation with illumination beam B (all settings by user, same as)
MODE_BEAM_B_RESULT = 2 ## Beam B with calibrated ROI, only one distance as result
MODE_BEAM_B_RESULT_DATA = 3 ## Beam B with calibrated ROI, one distance and the pixels as result
MODE_BEAM_AB_RESULT = 4 ## Beam A and B operating with calibrated ROI and only one distance as result
MODE_BEAM_AB_AUTO_RESULT = 5 ## Beam A and B with automatic selection
MODE_BEAM_AB_INTERLEAVED_DATA = 6 ## Beam A and B interleaved output
## Stream mode
SINGLE = 0 ## Single frame mode
AUTO_REPEAT = 1 ## Auto repeat frame using same parameters
STREAM = 3 ## Stream mode
## HDR
HDR_OFF = 0 ## HDR off
HDR_SPATIAL = 1 ## Spatial HDR
HDR_TEMPORAL = 2 ## Temporal HDR
## IntegrationTime
INDEX_INDEX_3D = 2 ## Index of the integration time 3d index
INDEX_INTEGRATION_TIME_3D = 3 ## Index of the integration time 3d
## AMPLITUDE
INDEX_INDEX_AMPLITUDE = 2 ## Index of the index
INDEX_AMPLITUDE = 3 ## Index of the minimal amplitude
## ROI
INDEX_ROI_X_MIN = 2 ## Index of ROI X MIN
INDEX_ROI_Y_MIN = 4 ## Index of ROI Y MIN
INDEX_ROI_X_MAX = 6 ## Index of ROI X MAX
INDEX_ROI_Y_MAX = 8 ## Index of ROI Y MAX
## Data format
DATA_START_MARK = 0xFA ## Data start marking
DATA_INDEX_LENGTH = 2 ## Data length
DATA_INDEX_TYPE = 1 ## Data type
## firmware returned data type
DATA_ACK = 0x00 ## Acknowledge from sensor to host
DATA_NACK = 0x01 ## Not acknowledge from sensor to host
DATA_IDENTIFICATION = 0x02 ## Identification to identify the device
DATA_DISTANCE = 0x03 ## Distance information
DATA_AMPLITUDE = 0x04 ## Amplitude information
DATA_DISTANCE_AMPLITUDE = 0x05 ## Distance and amplitude information
DATA_GRAYSCALE = 0x06 ## Grayscale information
DATA_DCS = 0x07 ## DCS data
DATA_DCS_DISTANCE_AMPLITUDE = 0x08 ## DCS, distance and amplitude all together
DATA_INTEGRATION_TIME = 0x09 ## Integration time, answer to COMMAND_GET_INTEGRATION_TIME_3D
DATA_DISTANCE_GRAYSCALE = 0x0A ## Distance and grayscale data
DATA_LENS_CALIBRATION_DATA = 0xF7 ## Lens calibration data
DATA_TRACE = 0xF8 ## Trace data
DATA_PRODUCTION_INFO = 0xF9 ## Production info
DATA_CALIBRATION_DATA = 0xFA ## Calibration data
DATA_REGISTER = 0xFB ## Register data
DATA_TEMPERATURE = 0xFC ## Temperature data
DATA_CHIP_INFORMATION = 0xFD ## Chip information data
DATA_FIRMWARE_RELEASE = 0xFE ## Firmware release
DATA_ERROR = 0xFF ## Error number
## CHIP
MASK_CHIP_TYPE_DEVICE = 0x00FFFF00 ## Chip information mask
SHIFT_CHIP_TYPE_DEVICE = 8 ## Chip information shift
CHIP_INFORMATION_DATA_SIZE = 4 ## Chip information data size
## IDENTITY
DATA_IDENTIFICATION = 0x02
DATA_FIRMWARE_RELEASE = 0xFE
IDENTIFICATION_DATA_SIZE = 4 ## Chip information data size
INDEX_WAFER_ID = 6
INDEX_CHIP_ID = 4
## Firmware release
FIRMWARE_RELEASE_DATA_SIZE = 4 ## Chip information data size
MASK_VERSION = 0x000000FF
SHIFT_VERSION = 0
## TOF 635 image
TOF_635_IMAGE_HEADER_SIZE = 80 ## 635 IMAGE HEADER SIZE
|
command_size_total = 14
command_size_header = 4
command_size_checksum = 4
command_size_overhead = 8
command_start_mark = 245
command_index_command = 1
command_index_data = 2
command_set_integration_time_3_d = 0
command_set_integration_time_grayscale = 1
command_set_roi = 2
command_set_binning = 3
command_set_mode = 4
command_set_modulation_frequency = 5
command_set_dll_step = 6
command_set_filter = 7
command_set_offset = 8
command_set_minimal_amplitude = 9
command_set_dcs_filter = 10
command_set_gaussian_filter = 11
command_set_frame_rate = 12
command_set_hdr = 13
command_set_modulation_channel = 14
command_set_filter_single_spot = 15
command_get_distance = 32
command_get_amplitude = 33
command_get_distance_amplitude = 34
command_get_dcs_distance_amplitude = 35
command_get_grayscale = 36
command_get_dcs = 37
command_set_auto_acquisition = 38
command_get_integration_time_3_d = 39
command_stop_stream = 40
command_get_distance_grayscale = 41
command_get_identification = 71
command_get_chip_information = 72
command_get_firmware_release = 73
command_get_production_info = 80
command_set_modulation_frequency = 5
value_10_mhz = 0
value_20_mhz = 1
mode_beam_a = 0
mode_beam_b_manual = 1
mode_beam_b_result = 2
mode_beam_b_result_data = 3
mode_beam_ab_result = 4
mode_beam_ab_auto_result = 5
mode_beam_ab_interleaved_data = 6
single = 0
auto_repeat = 1
stream = 3
hdr_off = 0
hdr_spatial = 1
hdr_temporal = 2
index_index_3_d = 2
index_integration_time_3_d = 3
index_index_amplitude = 2
index_amplitude = 3
index_roi_x_min = 2
index_roi_y_min = 4
index_roi_x_max = 6
index_roi_y_max = 8
data_start_mark = 250
data_index_length = 2
data_index_type = 1
data_ack = 0
data_nack = 1
data_identification = 2
data_distance = 3
data_amplitude = 4
data_distance_amplitude = 5
data_grayscale = 6
data_dcs = 7
data_dcs_distance_amplitude = 8
data_integration_time = 9
data_distance_grayscale = 10
data_lens_calibration_data = 247
data_trace = 248
data_production_info = 249
data_calibration_data = 250
data_register = 251
data_temperature = 252
data_chip_information = 253
data_firmware_release = 254
data_error = 255
mask_chip_type_device = 16776960
shift_chip_type_device = 8
chip_information_data_size = 4
data_identification = 2
data_firmware_release = 254
identification_data_size = 4
index_wafer_id = 6
index_chip_id = 4
firmware_release_data_size = 4
mask_version = 255
shift_version = 0
tof_635_image_header_size = 80
|
class SessionEncryption:
"""Session Encryption types."""
NONE = 'none'
TLS = 'tls'
|
class Sessionencryption:
"""Session Encryption types."""
none = 'none'
tls = 'tls'
|
def MinNumberInsertionAndDel(a, b, x, y):
dp = [[None for _ in range(y + 1)] for _ in range(x + 1)]
for i in range(x + 1):
for j in range(y + 1):
if i == 0 or j == 0:
dp[i][j] = 0
elif a[i - 1] == b[j - 1]:
dp[i][j] = 1 + dp[i - 1][j - 1]
else:
dp[i][j] = max(dp[i - 1][j], dp[i][j - 1])
lcs = dp[x][y]
return (len(a) - lcs) + (len(b) - lcs)
def main():
for _ in range(int(input())):
x, y = map(int, input().split())
a, b = map(str, input().split())
print(MinNumberInsertionAndDel(a, b, x, y))
if __name__ == "__main__":
main()
|
def min_number_insertion_and_del(a, b, x, y):
dp = [[None for _ in range(y + 1)] for _ in range(x + 1)]
for i in range(x + 1):
for j in range(y + 1):
if i == 0 or j == 0:
dp[i][j] = 0
elif a[i - 1] == b[j - 1]:
dp[i][j] = 1 + dp[i - 1][j - 1]
else:
dp[i][j] = max(dp[i - 1][j], dp[i][j - 1])
lcs = dp[x][y]
return len(a) - lcs + (len(b) - lcs)
def main():
for _ in range(int(input())):
(x, y) = map(int, input().split())
(a, b) = map(str, input().split())
print(min_number_insertion_and_del(a, b, x, y))
if __name__ == '__main__':
main()
|
'''
WRITTEN BY Ramon Rossi
PURPOSE
Two strings are anagrams if you can make one from the other
by rearranging the letters. The function named is_anagram takes
two strings as its parameters, returning True if the strings are
anagrams and False otherwise.
EXAMPLE
The call is_anagram("typhoon", "opython") should return True
while the call is_anagram("Alice", "Bob") should return False.
'''
def str_to_sorted_list(temp_str):
# convert str to list of letters
temp_list = list(temp_str)
# sort list in alphabetical order
temp_list.sort()
return temp_list
def is_anagram(str1, str2):
# print the original strings
print('First string: {}'.format(str1))
print('Second string: {}'.format(str2))
# convert each string into a list of letters, then sort the
# list alphabetically
str1_sorted_list = str_to_sorted_list(str1)
str2_sorted_list = str_to_sorted_list(str2)
# compare whether the sorted lists of letters are the same
if str1_sorted_list == str2_sorted_list:
print('They are anagrams')
return True
else:
print('They are not anagrams')
return False
def run_test(str1,str2,should_anagram_be_true):
whether_anagram = is_anagram(str1, str2)
if whether_anagram == should_anagram_be_true:
print('Test passed\n')
else:
print('Test failed\n')
# test 1
str1 = "typhoon"
str2 = "opython"
run_test(str1,str2,True)
# test 2
str1 = "Alice"
str2 = "Bob"
run_test(str1,str2,False)
|
"""
WRITTEN BY Ramon Rossi
PURPOSE
Two strings are anagrams if you can make one from the other
by rearranging the letters. The function named is_anagram takes
two strings as its parameters, returning True if the strings are
anagrams and False otherwise.
EXAMPLE
The call is_anagram("typhoon", "opython") should return True
while the call is_anagram("Alice", "Bob") should return False.
"""
def str_to_sorted_list(temp_str):
temp_list = list(temp_str)
temp_list.sort()
return temp_list
def is_anagram(str1, str2):
print('First string: {}'.format(str1))
print('Second string: {}'.format(str2))
str1_sorted_list = str_to_sorted_list(str1)
str2_sorted_list = str_to_sorted_list(str2)
if str1_sorted_list == str2_sorted_list:
print('They are anagrams')
return True
else:
print('They are not anagrams')
return False
def run_test(str1, str2, should_anagram_be_true):
whether_anagram = is_anagram(str1, str2)
if whether_anagram == should_anagram_be_true:
print('Test passed\n')
else:
print('Test failed\n')
str1 = 'typhoon'
str2 = 'opython'
run_test(str1, str2, True)
str1 = 'Alice'
str2 = 'Bob'
run_test(str1, str2, False)
|
class VSBaseModel:
IGNORED_DICT_PROPS = [
'ignored_dict_props',
'plugin',
'plugins',
'host',
'hosts',
'finding',
'findings',
'service',
'services',
'vulnerability',
'vulnerabilities'
]
def __init__(self):
self.id = ''
self.ignored_dict_props = self.IGNORED_DICT_PROPS.copy()
def to_dict(self):
return {k: getattr(self, k) for k in dir(self) if not k.startswith('_') and not callable(getattr(self, k))}
def to_serializable_dict(self):
# res = {}
# for k, v in self.to_dict().items():
# if isinstance(v, VSBaseModel):
# continue
# elif isinstance(v, (list, tuple, set)):
# try:
# elm = next(iter(v))
# if isinstance(elm, VSBaseModel):
# continue
# except StopIteration:
# pass
# res[k] = v
# return res
return {k: v for k, v in self.to_dict().items() if k.lower() not in self.ignored_dict_props}
|
class Vsbasemodel:
ignored_dict_props = ['ignored_dict_props', 'plugin', 'plugins', 'host', 'hosts', 'finding', 'findings', 'service', 'services', 'vulnerability', 'vulnerabilities']
def __init__(self):
self.id = ''
self.ignored_dict_props = self.IGNORED_DICT_PROPS.copy()
def to_dict(self):
return {k: getattr(self, k) for k in dir(self) if not k.startswith('_') and (not callable(getattr(self, k)))}
def to_serializable_dict(self):
return {k: v for (k, v) in self.to_dict().items() if k.lower() not in self.ignored_dict_props}
|
program = []
with open("input.txt", "r") as file:
for line in file.readlines():
program.append(line.split())
def execute(op, arg, ic, acc):
# return ic change, acc change
if op == "nop":
return ic+1, acc
if op == "jmp":
return ic+int(arg), acc
if op == "acc":
return ic+1, acc+int(arg)
raise ValueError(f"No operation: {op}")
def find_loop(program):
ic = 0
acc = 0
executed = set()
while ic < len(program):
executed.add(ic)
op, arg = program[ic]
new_ic, new_acc = execute(op, arg, ic, acc)
if new_ic in executed:
#Found loop
return (ic, acc)
ic, acc = new_ic, new_acc
return (ic, acc)
def part2(program):
for i in range(len(program)):
original = program[i][0]
if program[i][0] == "jmp":
program[i][0] = "nop"
elif program[i][0] == "nop":
program[i][0] == "jmp"
else:
continue
ic, acc = find_loop(program)
if ic>=len(program):
return acc
else:
program[i][0] = original
print(f"Part 1: {find_loop(program)[1]}")
print(f"Part 2: {part2(program)}")
|
program = []
with open('input.txt', 'r') as file:
for line in file.readlines():
program.append(line.split())
def execute(op, arg, ic, acc):
if op == 'nop':
return (ic + 1, acc)
if op == 'jmp':
return (ic + int(arg), acc)
if op == 'acc':
return (ic + 1, acc + int(arg))
raise value_error(f'No operation: {op}')
def find_loop(program):
ic = 0
acc = 0
executed = set()
while ic < len(program):
executed.add(ic)
(op, arg) = program[ic]
(new_ic, new_acc) = execute(op, arg, ic, acc)
if new_ic in executed:
return (ic, acc)
(ic, acc) = (new_ic, new_acc)
return (ic, acc)
def part2(program):
for i in range(len(program)):
original = program[i][0]
if program[i][0] == 'jmp':
program[i][0] = 'nop'
elif program[i][0] == 'nop':
program[i][0] == 'jmp'
else:
continue
(ic, acc) = find_loop(program)
if ic >= len(program):
return acc
else:
program[i][0] = original
print(f'Part 1: {find_loop(program)[1]}')
print(f'Part 2: {part2(program)}')
|
"""
[Weekly #19] Looking forward into 2015 - Predictions.
https://www.reddit.com/r/dailyprogrammer/comments/2rfexe/weekly_19_looking_forward_into_2015_predictions/
As we enter the new year - What are some trends/predictions you see in computer science, software engineering,
programming or related fields forth coming or happening for this new year?
"""
def main():
pass
if __name__ == "__main__":
main()
|
"""
[Weekly #19] Looking forward into 2015 - Predictions.
https://www.reddit.com/r/dailyprogrammer/comments/2rfexe/weekly_19_looking_forward_into_2015_predictions/
As we enter the new year - What are some trends/predictions you see in computer science, software engineering,
programming or related fields forth coming or happening for this new year?
"""
def main():
pass
if __name__ == '__main__':
main()
|
# https://leetcode.com/problems/diameter-of-binary-tree/
# Given the root of a binary tree, return the length of the diameter of the tree.
# The diameter of a binary tree is the length of the longest path between any two
# nodes in a tree. This path may or may not pass through the root.
# The length of a path between two nodes is represented by the number of edges
# between them.
################################################################################
# longest path must be leaf-to-leaf
# -> sum of longest left and right branches
# -> divide and conquer
# Definition for a binary tree node.
# class TreeNode:
# def __init__(self, val=0, left=None, right=None):
# self.val = val
# self.left = left
# self.right = right
class Solution:
def diameterOfBinaryTree(self, root: TreeNode) -> int:
self.ans = 0
self.longest_path(root)
return self.ans
def longest_path(self, node):
if not node: return 0
left_longest = self.longest_path(node.left)
right_longest = self.longest_path(node.right)
self.ans = max(self.ans, left_longest + right_longest)
return max(left_longest, right_longest) + 1
|
class Solution:
def diameter_of_binary_tree(self, root: TreeNode) -> int:
self.ans = 0
self.longest_path(root)
return self.ans
def longest_path(self, node):
if not node:
return 0
left_longest = self.longest_path(node.left)
right_longest = self.longest_path(node.right)
self.ans = max(self.ans, left_longest + right_longest)
return max(left_longest, right_longest) + 1
|
class Group:
def __init__(self, group_name, group_level, protocols=None):
if protocols is None:
protocols = {}
self.name = group_name
self.level = group_level
self.protocols = protocols
self.group_contains = set()
def __contains__(self, protocol):
flag = protocol in self.protocols
if not flag:
for group in self.group_contains:
if protocol in group:
flag = True
break
return flag
def __getitem__(self, protocol_name):
if protocol_name in self.protocols:
return self.protocols[protocol_name]
for group in self.group_contains:
protocol = group[protocol_name]
if protocol:
return protocol
return None
def contain_group(self, group):
self.group_contains.add(group)
def add_protocol(self, name, protocol):
self.protocols[name] = protocol
|
class Group:
def __init__(self, group_name, group_level, protocols=None):
if protocols is None:
protocols = {}
self.name = group_name
self.level = group_level
self.protocols = protocols
self.group_contains = set()
def __contains__(self, protocol):
flag = protocol in self.protocols
if not flag:
for group in self.group_contains:
if protocol in group:
flag = True
break
return flag
def __getitem__(self, protocol_name):
if protocol_name in self.protocols:
return self.protocols[protocol_name]
for group in self.group_contains:
protocol = group[protocol_name]
if protocol:
return protocol
return None
def contain_group(self, group):
self.group_contains.add(group)
def add_protocol(self, name, protocol):
self.protocols[name] = protocol
|
"""Calculate correlation coefficient."""
def find_corr_x_y(x, y):
"""Calculate the correlation between x and y."""
n = len(x)
prod = []
for xi, yi in zip(x, y):
prod.append(xi * yi)
sum_prod_x_y = sum(prod)
sum_x = sum(x)
sum_y = sum(y)
squared_sum_x = sum_x**2
squared_sum_y = sum_y**2
x_square = []
for xi in x:
x_square.append(xi**2)
x_square_sum = sum(x_square)
y_square = []
for yi in y:
y_square.append(yi**2)
y_square_sum = sum(y_square)
numerator = n * sum_prod_x_y - sum_x * sum_y
denominator_term1 = n * x_square_sum - squared_sum_x
denominator_term2 = n * y_square_sum - squared_sum_y
denominator = (denominator_term1 * denominator_term2)**0.5
correlation = numerator / denominator
return correlation
|
"""Calculate correlation coefficient."""
def find_corr_x_y(x, y):
"""Calculate the correlation between x and y."""
n = len(x)
prod = []
for (xi, yi) in zip(x, y):
prod.append(xi * yi)
sum_prod_x_y = sum(prod)
sum_x = sum(x)
sum_y = sum(y)
squared_sum_x = sum_x ** 2
squared_sum_y = sum_y ** 2
x_square = []
for xi in x:
x_square.append(xi ** 2)
x_square_sum = sum(x_square)
y_square = []
for yi in y:
y_square.append(yi ** 2)
y_square_sum = sum(y_square)
numerator = n * sum_prod_x_y - sum_x * sum_y
denominator_term1 = n * x_square_sum - squared_sum_x
denominator_term2 = n * y_square_sum - squared_sum_y
denominator = (denominator_term1 * denominator_term2) ** 0.5
correlation = numerator / denominator
return correlation
|
VARS = {
'CLIENT_SECRET_PATH': 'res/client_secret.json',
'SCOPES': 'https://www.googleapis.com/auth/spreadsheets',
'APPLICATION_NAME': 'Google Sheets API Python Quickstart',
'DISCOVERY_URL': 'https://sheets.googleapis.com/$discovery/rest?version=v4'
}
CONSTANTS = {
'CREDENTIALS_FILENAME': 'sheets.googleapis.com-python-quickstart.json',
'LOCALE': 'it',
'SPREADSHEET_ID': '1UU0fr7jpVrW6d5YQWLOwfYgtim5AN090Tjhfp9lljPs'
}
SERVER = {
'HOSTNAME': 'localhost',
'PORT': 8080
}
|
vars = {'CLIENT_SECRET_PATH': 'res/client_secret.json', 'SCOPES': 'https://www.googleapis.com/auth/spreadsheets', 'APPLICATION_NAME': 'Google Sheets API Python Quickstart', 'DISCOVERY_URL': 'https://sheets.googleapis.com/$discovery/rest?version=v4'}
constants = {'CREDENTIALS_FILENAME': 'sheets.googleapis.com-python-quickstart.json', 'LOCALE': 'it', 'SPREADSHEET_ID': '1UU0fr7jpVrW6d5YQWLOwfYgtim5AN090Tjhfp9lljPs'}
server = {'HOSTNAME': 'localhost', 'PORT': 8080}
|
def sanitize_pg_array(pg_array):
"""
convert a array-string to a python list
PG <9.0 used comma-aperated strings as array datatype. this function
will convert those to list. if pg_array is not a tring, it will not
be modified
"""
if not type(pg_array) in (str,unicode):
return pg_array
# only for one-dimesional arrays
return map(str.strip, pg_array.strip("{}").split(","))
|
def sanitize_pg_array(pg_array):
"""
convert a array-string to a python list
PG <9.0 used comma-aperated strings as array datatype. this function
will convert those to list. if pg_array is not a tring, it will not
be modified
"""
if not type(pg_array) in (str, unicode):
return pg_array
return map(str.strip, pg_array.strip('{}').split(','))
|
def expandX1(m):
c = [1]
for i in range(m):
c.append(c[-1] * -(m-i) / (i+1))
return c[::-1]
def isPrime(m):
if m < 2: return False
c = expandX1(m)
c[0] += 1
return not any(mul % m for mul in c[0:-1])
#----DRIVER PROGRAM----
print('\n# [for small primes]AKS TEST GAVE THE FOLLOWING AS PRIMES')
print([m for m in range(1000) if isPrime(m)])
|
def expand_x1(m):
c = [1]
for i in range(m):
c.append(c[-1] * -(m - i) / (i + 1))
return c[::-1]
def is_prime(m):
if m < 2:
return False
c = expand_x1(m)
c[0] += 1
return not any((mul % m for mul in c[0:-1]))
print('\n# [for small primes]AKS TEST GAVE THE FOLLOWING AS PRIMES')
print([m for m in range(1000) if is_prime(m)])
|
class NodeofList(object):
def __init__(self, value):
self.value = value
self.next = None
def setElement(self, value):
self.value = value
def getElement(self):
return self.value
def setNext(self, next):
self.next = next
def getNext(self):
return self.next
class linkedList(object):
def __init__(self, head = None):
self.head = head
self.count = 0
def getCount(self):
return self.count
def elementInsertion(self, data):
newElement = NodeofList(data)
newElement.setNext(self.head)
self.head = newElement
self.count += 1
def searchElement(self, value):
element = self.head
while(element != None):
if element.getElement() == value:
return element
else:
element = element.getNext()
return None
def deleteElement(self, index):
if index > self.count-1:
return
if index == 0:
self.head = self.head.getNext()
else:
temp = 0
node = self.head
while(temp < index-1):
node = node.getNext()
temp += 1
node.setNext(node.getNext().getNext())
self -=1
def endList(self):
temp = self.head
while(temp != None):
print(temp.getElement())
temp = temp.getNext()
#Testing
element = linkedList()
element.elementInsertion(15)
element.elementInsertion(16)
element.elementInsertion(17)
element.elementInsertion(18)
element.elementInsertion(19)
print("Total Elements in List = ", element.getCount())
print("Finding Element in the list = ", element.searchElement(16))
|
class Nodeoflist(object):
def __init__(self, value):
self.value = value
self.next = None
def set_element(self, value):
self.value = value
def get_element(self):
return self.value
def set_next(self, next):
self.next = next
def get_next(self):
return self.next
class Linkedlist(object):
def __init__(self, head=None):
self.head = head
self.count = 0
def get_count(self):
return self.count
def element_insertion(self, data):
new_element = nodeof_list(data)
newElement.setNext(self.head)
self.head = newElement
self.count += 1
def search_element(self, value):
element = self.head
while element != None:
if element.getElement() == value:
return element
else:
element = element.getNext()
return None
def delete_element(self, index):
if index > self.count - 1:
return
if index == 0:
self.head = self.head.getNext()
else:
temp = 0
node = self.head
while temp < index - 1:
node = node.getNext()
temp += 1
node.setNext(node.getNext().getNext())
self -= 1
def end_list(self):
temp = self.head
while temp != None:
print(temp.getElement())
temp = temp.getNext()
element = linked_list()
element.elementInsertion(15)
element.elementInsertion(16)
element.elementInsertion(17)
element.elementInsertion(18)
element.elementInsertion(19)
print('Total Elements in List = ', element.getCount())
print('Finding Element in the list = ', element.searchElement(16))
|
# V0
# V1
# https://zhuanlan.zhihu.com/p/50564246
# IDEA : TWO POINTER
class Solution:
def isLongPressedName(self, name, typed):
"""
:type name: str
:type typed: str
:rtype: bool
"""
# name's index : idx
# typed's index : i
idx = 0
for i in range(len(typed)):
if idx < len(name) and name[idx] == typed[i]:
idx += 1
elif i == 0 or typed[i] != typed[i-1]:
return False
return idx == len(name)
# V2
# Time: O(n)
# Space: O(1)
class Solution(object):
def isLongPressedName(self, name, typed):
"""
:type name: str
:type typed: str
:rtype: bool
"""
i = 0
for j in range(len(typed)):
if i < len(name) and name[i] == typed[j]:
i += 1
elif j == 0 or typed[j] != typed[j-1]:
return False
return i == len(name)
|
class Solution:
def is_long_pressed_name(self, name, typed):
"""
:type name: str
:type typed: str
:rtype: bool
"""
idx = 0
for i in range(len(typed)):
if idx < len(name) and name[idx] == typed[i]:
idx += 1
elif i == 0 or typed[i] != typed[i - 1]:
return False
return idx == len(name)
class Solution(object):
def is_long_pressed_name(self, name, typed):
"""
:type name: str
:type typed: str
:rtype: bool
"""
i = 0
for j in range(len(typed)):
if i < len(name) and name[i] == typed[j]:
i += 1
elif j == 0 or typed[j] != typed[j - 1]:
return False
return i == len(name)
|
class writeDataClass():
def writeData(self,dataFiles):
fileData=open("plt.dat","w")
for f in range(0,len(dataFiles)):
fileData.write("%s\n" % dataFiles[f])
fileData.close()
|
class Writedataclass:
def write_data(self, dataFiles):
file_data = open('plt.dat', 'w')
for f in range(0, len(dataFiles)):
fileData.write('%s\n' % dataFiles[f])
fileData.close()
|
"""
Write a function that takes in an array of integers and returns a sorted array of the three largest integers
in the input array. Note that the function should return duplicate integers if necessary;
for example, it should return [10, 10, 12] for an input array of [10, 5, 9, 10, 12].
Sample input: [141, 1, 17, -7, -17, -27, 18, 541, 8, 7, 7]
Sample output: [18, 141, 541]
"""
def findThreeLargestNumbers(array):
# Write your code here.
# put the highest three in a array
highest_three = [float('-inf'), float('-inf'), float('-inf')]
# loop through each num in array
for i, num in enumerate(array):
# if num is higher then any in highest three, swap it into highest three
current_low = min(highest_three)
if current_low < num:
current_low_i = highest_three.index(current_low)
highest_three[current_low_i] = num
# return the highest three
return sorted(highest_three)
|
"""
Write a function that takes in an array of integers and returns a sorted array of the three largest integers
in the input array. Note that the function should return duplicate integers if necessary;
for example, it should return [10, 10, 12] for an input array of [10, 5, 9, 10, 12].
Sample input: [141, 1, 17, -7, -17, -27, 18, 541, 8, 7, 7]
Sample output: [18, 141, 541]
"""
def find_three_largest_numbers(array):
highest_three = [float('-inf'), float('-inf'), float('-inf')]
for (i, num) in enumerate(array):
current_low = min(highest_three)
if current_low < num:
current_low_i = highest_three.index(current_low)
highest_three[current_low_i] = num
return sorted(highest_three)
|
discounts = [1.0, 1.0, 0.95, 0.90, 0.80, 0.75]
def add(list, element, index):
if len(list) < index + 1:
list.append([])
if element not in list[index]:
list[index].append(element)
else:
add(list, element, index + 1)
def price(l):
a = []
total_price = 0
for book in l:
add(a, book, 0)
for cart in a:
total_price += len(cart) * 8 * discounts[len(cart)]
return total_price
|
discounts = [1.0, 1.0, 0.95, 0.9, 0.8, 0.75]
def add(list, element, index):
if len(list) < index + 1:
list.append([])
if element not in list[index]:
list[index].append(element)
else:
add(list, element, index + 1)
def price(l):
a = []
total_price = 0
for book in l:
add(a, book, 0)
for cart in a:
total_price += len(cart) * 8 * discounts[len(cart)]
return total_price
|
# print("Please insert a number")
# a = int(input("> "))
# print("Please insert another number")
# b = int(input("> "))
# print("Please insert yet another number")
# c = int(input("> "))
a = 4
b = 5
c = 10
if a > b:
if a > c:
print(a)
else:
print(c)
else:
if b > c:
print(b)
else:
print(c)
|
a = 4
b = 5
c = 10
if a > b:
if a > c:
print(a)
else:
print(c)
elif b > c:
print(b)
else:
print(c)
|
# raider.io api configuration
RIO_MAX_PAGE = 5
# need to update in templates/stats_table.html
# need to update in templates/compositions.html
# need to update in templates/navbar.html
RIO_SEASON = "season-sl-2"
WCL_SEASON = 2
WCL_PARTITION = 1
# config
RAID_NAME = "Sanctum of Domination"
# late in the season, set this at 16
# early in the seaseon, set this at 10
MIN_KEY_LEVEL = 16
# to generate a tier list based on heroic week data
MAX_RAID_DIFFICULTY = "Mythic"
|
rio_max_page = 5
rio_season = 'season-sl-2'
wcl_season = 2
wcl_partition = 1
raid_name = 'Sanctum of Domination'
min_key_level = 16
max_raid_difficulty = 'Mythic'
|
def cipher(text, shift, encrypt=True):
"""
1. Description:
The Caesar cipher is one of the simplest and most widely known encryption techniques. In short, each letter is replaced by a letter some fixed number of positions down the alphabet. Apparently, Julius Caesar used it in his private correspondence.
2. Explanation:
The first input is a string that you want to decipher
The second input is the amount of shift for each letters in that string
The output will be the outcome of the orginal string after a certain shifting.
3. Example:
If you put "gdkkn" and 1 in the cipher function like this: cipher("gdkkn", 1),
you will get "hello"
"""
alphabet = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'
new_text = ''
for c in text:
index = alphabet.find(c)
if index == -1:
new_text += c
else:
new_index = index + shift if encrypt == True else index - shift
new_index %= len(alphabet)
new_text += alphabet[new_index:new_index+1]
return new_text
|
def cipher(text, shift, encrypt=True):
"""
1. Description:
The Caesar cipher is one of the simplest and most widely known encryption techniques. In short, each letter is replaced by a letter some fixed number of positions down the alphabet. Apparently, Julius Caesar used it in his private correspondence.
2. Explanation:
The first input is a string that you want to decipher
The second input is the amount of shift for each letters in that string
The output will be the outcome of the orginal string after a certain shifting.
3. Example:
If you put "gdkkn" and 1 in the cipher function like this: cipher("gdkkn", 1),
you will get "hello"
"""
alphabet = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'
new_text = ''
for c in text:
index = alphabet.find(c)
if index == -1:
new_text += c
else:
new_index = index + shift if encrypt == True else index - shift
new_index %= len(alphabet)
new_text += alphabet[new_index:new_index + 1]
return new_text
|
################################################################################
#
#
#
#===============================================================================
class CustomDict( dict ):
#---------------------------------------------------------------------------
defaultValue = 'THIS ITEM NOT AVAILABLE'
#---------------------------------------------------------------------------
def __getitem__( self, name ):
try:
return super( CustomDict, self ).__getitem__( name )
except KeyError:
return self.defaultValue
#---------------------------------------------------------------------------
def __contains__( self, name ):
return True
#---------------------------------------------------------------------------
def has_key( self, name ):
return True
################################################################################
#
#
#
#===============================================================================
class X( object ):
#---------------------------------------------------------------------------
def __init__( self ):
self._dict = CustomDict( foo = 'bar' )
#---------------------------------------------------------------------------
@property
def __dict__( self ):
#print 'X.__dict__ ( get() )'
return self._dict
#---------------------------------------------------------------------------
def __getattr__( self, name ):
return self.__dict__[ name ]
#---------------------------------------------------------------------------
def __setattr__( self, name, value ):
if name == '_dict':
return super( X, self ).__setattr__( name, value )
self._dict[ name ] = value
################################################################################
#
#
#
#===============================================================================
if __name__ == '__main__':
x = X()
print(x.__dict__[ 'foo' ])
print(x.__dict__[ 'bar' ])
print(x.foo)
print(x.bar)
print(x.__dict__)
x.oops = 42
print(x.__dict__)
# Output:
# bar
# THIS ITEM NOT AVAILABLE
# bar
# THIS ITEM NOT AVAILABLE
# {'foo': 'bar'}
# {'foo': 'bar', 'oops': 42}
|
class Customdict(dict):
default_value = 'THIS ITEM NOT AVAILABLE'
def __getitem__(self, name):
try:
return super(CustomDict, self).__getitem__(name)
except KeyError:
return self.defaultValue
def __contains__(self, name):
return True
def has_key(self, name):
return True
class X(object):
def __init__(self):
self._dict = custom_dict(foo='bar')
@property
def __dict__(self):
return self._dict
def __getattr__(self, name):
return self.__dict__[name]
def __setattr__(self, name, value):
if name == '_dict':
return super(X, self).__setattr__(name, value)
self._dict[name] = value
if __name__ == '__main__':
x = x()
print(x.__dict__['foo'])
print(x.__dict__['bar'])
print(x.foo)
print(x.bar)
print(x.__dict__)
x.oops = 42
print(x.__dict__)
|
"""
Grocery List
Create a program that prompts the
user to continuously enter items for a grocery
list. Stop asking them for items
when the user enters 'quit'.
Print the grocery list in a numbered format.
Ask the user to enter prices for each
item in the grocery list in order.
Finally, ask the user how many of
each item they bought. Based on their
input, calculate the total grocery bill
and display it. (Bonus points if you
can format the money so that it displays
2 decimals.)
Demo: https://youtu.be/BmMj16Ox5iA
"""
item = ""
items = [] # stores grocery items
# continuously ask user for grocery items
# and store them in a list
while item != "quit":
item = input("Enter a grocery item, or 'quit': ")
if item != "quit":
items.append(item)
# print items in numbered format
for i in range(0, len(items)):
print(str(i + 1) + ". " + items[i])
print()
# ask user to enter prices for
# each grocery item
prices = []
for i in range(0, len(items)):
price = float(input("Enter price for " + items[i] + ": $"))
prices.append(price)
print()
# ask user for quantity of each
# item in the grocery list
quantities = []
for i in range(0, len(items)):
quantity = int(input("Enter quantity bought for " + items[i] + ": "))
quantities.append(quantity)
print()
# calculate total grocery bill
total = 0
for i in range(0, len(items)):
total += prices[i] * quantities[i]
# print total, formatted to 2 decimals
# because it's money
print("Total: $%.2f" % total)
|
"""
Grocery List
Create a program that prompts the
user to continuously enter items for a grocery
list. Stop asking them for items
when the user enters 'quit'.
Print the grocery list in a numbered format.
Ask the user to enter prices for each
item in the grocery list in order.
Finally, ask the user how many of
each item they bought. Based on their
input, calculate the total grocery bill
and display it. (Bonus points if you
can format the money so that it displays
2 decimals.)
Demo: https://youtu.be/BmMj16Ox5iA
"""
item = ''
items = []
while item != 'quit':
item = input("Enter a grocery item, or 'quit': ")
if item != 'quit':
items.append(item)
for i in range(0, len(items)):
print(str(i + 1) + '. ' + items[i])
print()
prices = []
for i in range(0, len(items)):
price = float(input('Enter price for ' + items[i] + ': $'))
prices.append(price)
print()
quantities = []
for i in range(0, len(items)):
quantity = int(input('Enter quantity bought for ' + items[i] + ': '))
quantities.append(quantity)
print()
total = 0
for i in range(0, len(items)):
total += prices[i] * quantities[i]
print('Total: $%.2f' % total)
|
MIDDLEWARES = (
'middlewares.middle_a',
'middlewares.middle_b',
'middlewares.middle_c',
'middlewares.middle_d'
)
|
middlewares = ('middlewares.middle_a', 'middlewares.middle_b', 'middlewares.middle_c', 'middlewares.middle_d')
|
y=200
deadtime=0
def setup():
global xs
xs=[]
size(400,400)
stroke(0)
def draw():
global xs, deadtime, y
strokeWeight(5)
background(169)
if keyPressed and key == " " and deadtime <=0:
xs.append(0)
deadtime=10
deadtime -= 1
if keyPressed and key== 'w' :
y= y+10
if keyPressed and key== 's' :
y=y-10
for i in range(len(xs)):
x=xs[i]
line(x,y,x+20,y)
x=x+10
xs[i]=x
if len(xs) > 0 and xs[0] > width:
xs.pop(0)
print(xs)
|
y = 200
deadtime = 0
def setup():
global xs
xs = []
size(400, 400)
stroke(0)
def draw():
global xs, deadtime, y
stroke_weight(5)
background(169)
if keyPressed and key == ' ' and (deadtime <= 0):
xs.append(0)
deadtime = 10
deadtime -= 1
if keyPressed and key == 'w':
y = y + 10
if keyPressed and key == 's':
y = y - 10
for i in range(len(xs)):
x = xs[i]
line(x, y, x + 20, y)
x = x + 10
xs[i] = x
if len(xs) > 0 and xs[0] > width:
xs.pop(0)
print(xs)
|
def checkcolor():
return [255, 240, 255]
def newcolor(a, b):
return 255
|
def checkcolor():
return [255, 240, 255]
def newcolor(a, b):
return 255
|
roles = [
{
'name': 'GK',
'description': 'Goalkeeper'
},
{
'name': 'LD',
'description': 'Left Defender'
},
{
'name': 'CD',
'description': 'Central Defender'
},
{
'name': 'RD',
'description': 'Right Defender'
},
{
'name': 'LM',
'description': 'Left Midfielder'
},
{
'name': 'CM',
'description': 'Central Midfielder'
},
{
'name': 'RM',
'description': 'Right Midfielder'
},
{
'name': 'LS',
'description': 'Left Striker(Wing)'
},
{
'name': 'CS',
'description': 'Central Striker'
},
{
'name': 'RS',
'description': 'Right Striker(Wing)'
}
]
|
roles = [{'name': 'GK', 'description': 'Goalkeeper'}, {'name': 'LD', 'description': 'Left Defender'}, {'name': 'CD', 'description': 'Central Defender'}, {'name': 'RD', 'description': 'Right Defender'}, {'name': 'LM', 'description': 'Left Midfielder'}, {'name': 'CM', 'description': 'Central Midfielder'}, {'name': 'RM', 'description': 'Right Midfielder'}, {'name': 'LS', 'description': 'Left Striker(Wing)'}, {'name': 'CS', 'description': 'Central Striker'}, {'name': 'RS', 'description': 'Right Striker(Wing)'}]
|
class A:
pass
var = object()
if isinstance(var, A) and var:
pass
|
class A:
pass
var = object()
if isinstance(var, A) and var:
pass
|
# cifar10 #####################
ci7 = {'stages': 3, 'depth': 22, 'branch': 3, 'rock': 'U', 'kldloss': False,
'layers': (3, 3, 3), 'blocks': ('D', 'D', 'S'), 'slink': ('A', 'A', 'A'),
'growth': (0, 0, 0), 'classify': (0, 0, 0), 'expand': (1 * 22, 2 * 22),
'dfunc': ('O', 'O'), 'dstyle': 'maxpool', 'fcboost': 'none', 'nclass': 10,
'last_branch': 1, 'last_down': False, 'last_dfuc': 'D', 'last_expand': 32,
'summer': 'split', 'afisok': False, 'version': 2} # 1M 35L 0.22s 88fc
# NET Width
ao1 = {'stages': 1, 'depth': 64, 'branch': 3, 'rock': 'U', 'kldloss': False,
'layers': (10,), 'blocks': ('D',), 'slink': ('A',),
'growth': (0,), 'classify': (0,), 'expand': (), 'dfunc': (),
'fcboost': 'none', 'nclass': 10, 'summer': 'split',
'last_branch': 1, 'last_down': False, 'last_dfuc': 'D', 'last_expand': 36,
'afisok': False, 'version': 2} # 2.06M 0.96G 44L 0.05s 94.57% => ax16@titan but-only-lastfc
ao2 = {'stages': 1, 'depth': 56, 'branch': 3, 'rock': 'U', 'kldloss': False,
'layers': (10,), 'blocks': ('D',), 'slink': ('A',),
'growth': (0,), 'classify': (0,), 'expand': (), 'dfunc': (),
'fcboost': 'none', 'nclass': 10, 'summer': 'split',
'last_branch': 1, 'last_down': False, 'last_dfuc': 'D', 'last_expand': 36,
'afisok': False, 'version': 2} # 1.57M 0.74G 44L 0.05s
ao3 = {'stages': 1, 'depth': 48, 'branch': 3, 'rock': 'U', 'kldloss': False,
'layers': (10,), 'blocks': ('D',), 'slink': ('A',),
'growth': (0,), 'classify': (0,), 'expand': (), 'dfunc': (),
'fcboost': 'none', 'nclass': 10, 'summer': 'split',
'last_branch': 1, 'last_down': False, 'last_dfuc': 'D', 'last_expand': 36,
'afisok': False, 'version': 2} # 1.16M 0.54G 44L 0.05s
ao4 = {'stages': 1, 'depth': 40, 'branch': 3, 'rock': 'U', 'kldloss': False,
'layers': (10,), 'blocks': ('D',), 'slink': ('A',),
'growth': (0,), 'classify': (0,), 'expand': (), 'dfunc': (),
'fcboost': 'none', 'nclass': 10, 'summer': 'split',
'last_branch': 1, 'last_down': False, 'last_dfuc': 'D', 'last_expand': 36,
'afisok': False, 'version': 2} # 0.81M 0.38G 44L 0.04s
ao5 = {'stages': 1, 'depth': 36, 'branch': 3, 'rock': 'U', 'kldloss': False,
'layers': (10,), 'blocks': ('D',), 'slink': ('A',),
'growth': (0,), 'classify': (0,), 'expand': (), 'dfunc': (),
'fcboost': 'none', 'nclass': 10, 'summer': 'split',
'last_branch': 1, 'last_down': False, 'last_dfuc': 'D', 'last_expand': 36,
'afisok': False, 'version': 2} # 0.65M 0.30G 44L 0.03s
# cifar100 #####################
# NET WIDTH
bo1 = {'stages': 1, 'depth': 100, 'branch': 1, 'rock': 'U', 'kldloss': False,
'layers': (10,), 'blocks': ('D',), 'slink': ('A',),
'growth': (0,), 'classify': (0,), 'expand': (), 'dfunc': (),
'fcboost': 'none', 'nclass': 100, 'summer': 'split',
'last_branch': 1, 'last_down': False, 'last_dfuc': 'D', 'last_expand': 36,
'afisok': False, 'version': 3} # 3.62M 1.44G 42L 0.22s
bo2 = {'stages': 1, 'depth': 90, 'branch': 1, 'rock': 'U', 'kldloss': False,
'layers': (10,), 'blocks': ('D',), 'slink': ('A',),
'growth': (0,), 'classify': (0,), 'expand': (), 'dfunc': (),
'fcboost': 'none', 'nclass': 100, 'summer': 'split',
'last_branch': 1, 'last_down': False, 'last_dfuc': 'D', 'last_expand': 36,
'afisok': False, 'version': 3} # 2.93M 1.18G 42L 0.22s
bo3 = {'stages': 1, 'depth': 80, 'branch': 1, 'rock': 'U', 'kldloss': False,
'layers': (10,), 'blocks': ('D',), 'slink': ('A',),
'growth': (0,), 'classify': (0,), 'expand': (), 'dfunc': (),
'fcboost': 'none', 'nclass': 100, 'summer': 'split',
'last_branch': 1, 'last_down': False, 'last_dfuc': 'D', 'last_expand': 36,
'afisok': False, 'version': 3} # 2.32M 0.93G 42L 0.22s
bo4 = {'stages': 1, 'depth': 70, 'branch': 1, 'rock': 'U', 'kldloss': False,
'layers': (10,), 'blocks': ('D',), 'slink': ('A',),
'growth': (0,), 'classify': (0,), 'expand': (), 'dfunc': (),
'fcboost': 'none', 'nclass': 100, 'summer': 'split',
'last_branch': 1, 'last_down': False, 'last_dfuc': 'D', 'last_expand': 36,
'afisok': False, 'version': 3} # 1.78M 0.71G 42L 0.17s
bo5 = {'stages': 1, 'depth': 60, 'branch': 1, 'rock': 'U', 'kldloss': False,
'layers': (10,), 'blocks': ('D',), 'slink': ('A',),
'growth': (0,), 'classify': (0,), 'expand': (), 'dfunc': (),
'fcboost': 'none', 'nclass': 100, 'summer': 'split',
'last_branch': 1, 'last_down': False, 'last_dfuc': 'D', 'last_expand': 36,
'afisok': False, 'version': 3} # 1.30M 0.52G 42L 0.17s
|
ci7 = {'stages': 3, 'depth': 22, 'branch': 3, 'rock': 'U', 'kldloss': False, 'layers': (3, 3, 3), 'blocks': ('D', 'D', 'S'), 'slink': ('A', 'A', 'A'), 'growth': (0, 0, 0), 'classify': (0, 0, 0), 'expand': (1 * 22, 2 * 22), 'dfunc': ('O', 'O'), 'dstyle': 'maxpool', 'fcboost': 'none', 'nclass': 10, 'last_branch': 1, 'last_down': False, 'last_dfuc': 'D', 'last_expand': 32, 'summer': 'split', 'afisok': False, 'version': 2}
ao1 = {'stages': 1, 'depth': 64, 'branch': 3, 'rock': 'U', 'kldloss': False, 'layers': (10,), 'blocks': ('D',), 'slink': ('A',), 'growth': (0,), 'classify': (0,), 'expand': (), 'dfunc': (), 'fcboost': 'none', 'nclass': 10, 'summer': 'split', 'last_branch': 1, 'last_down': False, 'last_dfuc': 'D', 'last_expand': 36, 'afisok': False, 'version': 2}
ao2 = {'stages': 1, 'depth': 56, 'branch': 3, 'rock': 'U', 'kldloss': False, 'layers': (10,), 'blocks': ('D',), 'slink': ('A',), 'growth': (0,), 'classify': (0,), 'expand': (), 'dfunc': (), 'fcboost': 'none', 'nclass': 10, 'summer': 'split', 'last_branch': 1, 'last_down': False, 'last_dfuc': 'D', 'last_expand': 36, 'afisok': False, 'version': 2}
ao3 = {'stages': 1, 'depth': 48, 'branch': 3, 'rock': 'U', 'kldloss': False, 'layers': (10,), 'blocks': ('D',), 'slink': ('A',), 'growth': (0,), 'classify': (0,), 'expand': (), 'dfunc': (), 'fcboost': 'none', 'nclass': 10, 'summer': 'split', 'last_branch': 1, 'last_down': False, 'last_dfuc': 'D', 'last_expand': 36, 'afisok': False, 'version': 2}
ao4 = {'stages': 1, 'depth': 40, 'branch': 3, 'rock': 'U', 'kldloss': False, 'layers': (10,), 'blocks': ('D',), 'slink': ('A',), 'growth': (0,), 'classify': (0,), 'expand': (), 'dfunc': (), 'fcboost': 'none', 'nclass': 10, 'summer': 'split', 'last_branch': 1, 'last_down': False, 'last_dfuc': 'D', 'last_expand': 36, 'afisok': False, 'version': 2}
ao5 = {'stages': 1, 'depth': 36, 'branch': 3, 'rock': 'U', 'kldloss': False, 'layers': (10,), 'blocks': ('D',), 'slink': ('A',), 'growth': (0,), 'classify': (0,), 'expand': (), 'dfunc': (), 'fcboost': 'none', 'nclass': 10, 'summer': 'split', 'last_branch': 1, 'last_down': False, 'last_dfuc': 'D', 'last_expand': 36, 'afisok': False, 'version': 2}
bo1 = {'stages': 1, 'depth': 100, 'branch': 1, 'rock': 'U', 'kldloss': False, 'layers': (10,), 'blocks': ('D',), 'slink': ('A',), 'growth': (0,), 'classify': (0,), 'expand': (), 'dfunc': (), 'fcboost': 'none', 'nclass': 100, 'summer': 'split', 'last_branch': 1, 'last_down': False, 'last_dfuc': 'D', 'last_expand': 36, 'afisok': False, 'version': 3}
bo2 = {'stages': 1, 'depth': 90, 'branch': 1, 'rock': 'U', 'kldloss': False, 'layers': (10,), 'blocks': ('D',), 'slink': ('A',), 'growth': (0,), 'classify': (0,), 'expand': (), 'dfunc': (), 'fcboost': 'none', 'nclass': 100, 'summer': 'split', 'last_branch': 1, 'last_down': False, 'last_dfuc': 'D', 'last_expand': 36, 'afisok': False, 'version': 3}
bo3 = {'stages': 1, 'depth': 80, 'branch': 1, 'rock': 'U', 'kldloss': False, 'layers': (10,), 'blocks': ('D',), 'slink': ('A',), 'growth': (0,), 'classify': (0,), 'expand': (), 'dfunc': (), 'fcboost': 'none', 'nclass': 100, 'summer': 'split', 'last_branch': 1, 'last_down': False, 'last_dfuc': 'D', 'last_expand': 36, 'afisok': False, 'version': 3}
bo4 = {'stages': 1, 'depth': 70, 'branch': 1, 'rock': 'U', 'kldloss': False, 'layers': (10,), 'blocks': ('D',), 'slink': ('A',), 'growth': (0,), 'classify': (0,), 'expand': (), 'dfunc': (), 'fcboost': 'none', 'nclass': 100, 'summer': 'split', 'last_branch': 1, 'last_down': False, 'last_dfuc': 'D', 'last_expand': 36, 'afisok': False, 'version': 3}
bo5 = {'stages': 1, 'depth': 60, 'branch': 1, 'rock': 'U', 'kldloss': False, 'layers': (10,), 'blocks': ('D',), 'slink': ('A',), 'growth': (0,), 'classify': (0,), 'expand': (), 'dfunc': (), 'fcboost': 'none', 'nclass': 100, 'summer': 'split', 'last_branch': 1, 'last_down': False, 'last_dfuc': 'D', 'last_expand': 36, 'afisok': False, 'version': 3}
|
# -*- coding: utf-8 -*-
# XEP-0072: Server Version
class Version:
"""
process and format a version query
"""
def __init__(self):
# init all necessary variables
self.software_version = None
self.target, self.opt_arg = None, None
def format_result(self):
# list of all possible opt_arg
possible_opt_args = ["version", "os", "name"]
name = self.software_version['name']
version = self.software_version['version']
os = self.software_version['os']
# if opt_arg is given member of possible_opt_args list return that element
if self.opt_arg in possible_opt_args:
text = "%s: %s" % (self.opt_arg, self.software_version[self.opt_arg])
# otherwise return full version string
else:
text = "%s is running %s version %s on %s" % (self.target, name, version, os)
return text
def format(self, query, target, opt_arg):
self.software_version = query['software_version']
self.target = target
self.opt_arg = opt_arg
reply = self.format_result()
return reply
|
class Version:
"""
process and format a version query
"""
def __init__(self):
self.software_version = None
(self.target, self.opt_arg) = (None, None)
def format_result(self):
possible_opt_args = ['version', 'os', 'name']
name = self.software_version['name']
version = self.software_version['version']
os = self.software_version['os']
if self.opt_arg in possible_opt_args:
text = '%s: %s' % (self.opt_arg, self.software_version[self.opt_arg])
else:
text = '%s is running %s version %s on %s' % (self.target, name, version, os)
return text
def format(self, query, target, opt_arg):
self.software_version = query['software_version']
self.target = target
self.opt_arg = opt_arg
reply = self.format_result()
return reply
|
# https://adventofcode.com/2020/day/9
infile = open('input.txt', 'r')
lines = infile.readlines()
infile.close()
def is_valid(a: list[int], n: int):
"""
Check if given list has any 2 numbers which add up to the given number
:param a: the list of numbers
:param n: the number we search for
:return: True if the list has any 2 numbers add up to the given number; False otherwise
"""
for a_i in range(len(a) - 1):
for a_j in range(a_i + 1, len(a)):
if a[a_i] + a[a_j] == n:
return True
return False
preamble_size = 25
window = []
for i in range(len(lines)):
number = int(lines[i])
if i < preamble_size:
# fill sliding window
window.append(number)
continue
if not is_valid(window, number):
print(number)
exit(0)
# slide window by 1
window.pop(0)
window.append(number)
exit(-1)
|
infile = open('input.txt', 'r')
lines = infile.readlines()
infile.close()
def is_valid(a: list[int], n: int):
"""
Check if given list has any 2 numbers which add up to the given number
:param a: the list of numbers
:param n: the number we search for
:return: True if the list has any 2 numbers add up to the given number; False otherwise
"""
for a_i in range(len(a) - 1):
for a_j in range(a_i + 1, len(a)):
if a[a_i] + a[a_j] == n:
return True
return False
preamble_size = 25
window = []
for i in range(len(lines)):
number = int(lines[i])
if i < preamble_size:
window.append(number)
continue
if not is_valid(window, number):
print(number)
exit(0)
window.pop(0)
window.append(number)
exit(-1)
|
#!/usr/bin/env python
__version__ = '0.0.1'
__author__ = 'Fernandes Macedo'
__email__ = 'masedos@gmail.com'
fruits = ["Apple", "Peach", "Pear"]
for fruit in fruits:
print(fruit)
print(fruit + " Pie")
print(fruits)
|
__version__ = '0.0.1'
__author__ = 'Fernandes Macedo'
__email__ = 'masedos@gmail.com'
fruits = ['Apple', 'Peach', 'Pear']
for fruit in fruits:
print(fruit)
print(fruit + ' Pie')
print(fruits)
|
wt5_3_7 = {'192.168.122.110': [5.7199, 8.4411, 8.0381, 7.3759, 7.1777, 6.9974, 6.816, 6.7848, 6.811, 6.8666, 6.7605, 7.1659, 7.1058, 7.117, 7.4091, 7.3653, 7.602, 7.5046, 7.5051, 7.4195, 7.3659, 7.2974, 7.2932, 7.4615, 7.6061, 7.7395, 7.7409, 7.699, 7.6546, 7.631, 7.5707, 7.562, 7.5218, 7.4742, 7.6148, 7.5669, 7.5131, 7.4565, 7.5446, 7.4987, 7.4847, 7.469, 7.455, 7.4362, 7.3925, 7.3703, 7.3292, 7.2921, 7.2536, 7.2169, 7.2086, 7.1715, 7.1411, 7.2064, 7.1991, 7.1839, 7.2477, 7.2161, 7.1854, 7.2516, 7.2309, 7.2014, 7.1876, 7.1603, 7.1456, 7.1199, 7.1144, 7.1117, 7.0925, 7.1097, 7.0892, 7.0843, 7.0802, 7.0686, 7.0576, 7.1146, 7.0925, 7.1456, 7.1249, 7.1094, 7.1615, 7.1413, 7.1328, 7.1263, 7.1173, 7.0967, 7.0823, 7.0844, 7.0699, 7.0684, 7.0536, 7.0364, 7.0224, 7.0092, 6.9916, 7.0371, 7.022, 7.034, 7.0179, 7.0132, 7.0539, 7.0557, 7.0478, 7.0415, 7.0298, 7.0144, 7.0508, 7.0598, 7.0598, 7.045, 7.0393, 7.025, 7.0613, 7.0544, 7.0981, 7.1295, 7.125, 7.1609, 7.1487, 7.1351, 7.167, 7.1551, 7.144, 7.1356, 7.1228, 7.1115, 7.0986, 7.0956, 7.0849, 7.0873, 7.0759, 7.0657, 7.1389, 7.1669, 7.1615, 7.1502, 7.1496, 7.1461, 7.1349, 7.128, 7.1166, 7.1035, 7.1017, 7.0924, 7.0807, 7.0907, 7.0797, 7.087, 7.1103, 7.1043, 7.0988, 7.0925, 7.081, 7.0861, 7.0744, 7.0664, 7.0682, 7.0653, 7.0572, 7.0468, 7.0369, 7.0261, 7.0227, 7.0141, 7.0102, 7.0079, 7.0045, 6.9978, 6.9899, 7.0137, 7.0415, 7.0339, 7.0542, 7.0484, 7.0391, 7.0322, 7.0252, 7.0232, 7.0215, 7.016, 7.0126, 7.0046, 7.0024, 6.9977, 7.0017, 7.0237, 7.0439, 7.043, 7.0357, 7.0297, 7.0276, 7.0209, 7.0192, 7.0439, 7.0585, 7.0511, 7.0521, 7.0485, 7.0627, 7.0841, 7.0762, 7.073, 7.0723, 7.0649, 7.0661, 7.0579, 7.0799, 7.0756, 7.0681, 7.0889, 7.0812, 7.0805, 7.0731, 7.097, 7.0953, 7.0871, 7.0793, 7.0981, 7.1166, 7.1088, 7.1109, 7.1036, 7.1212, 7.1238, 7.1225, 7.1187, 7.1114, 7.1036, 7.1207, 7.1157, 7.1078, 7.1245, 7.2723, 7.2693, 7.2658, 7.2614, 7.2774, 7.2931, 7.2884, 7.306, 7.3014, 7.3174, 7.3184, 7.3108, 7.3048, 7.3256, 7.3223, 7.3164, 7.3139, 7.3063, 7.3235, 7.3188, 7.3179, 7.3122, 7.3048, 7.3402, 7.3334, 7.3303, 7.3311, 7.3247, 7.3197, 7.3169, 7.2936, 7.2879, 7.2825, 7.2777, 7.2937, 7.288, 7.2812, 7.2752, 7.2701, 7.2635, 7.2567, 7.2705, 7.2667, 7.2604, 7.2672, 7.273, 7.2941, 7.2878, 7.3024, 7.2964, 7.2918, 7.2921, 7.2884, 7.2857, 7.279, 7.2748, 7.276, 7.2702, 7.2686, 7.2699, 7.2631, 7.2622, 7.2556, 7.2507, 7.2461, 7.2448, 7.2402, 7.2419, 7.2393, 7.2401, 7.2347, 7.2302, 7.2238, 7.2192, 7.2329, 7.2451, 7.2404, 7.2369, 7.2335, 7.2277, 7.2389, 7.2514, 7.2469, 7.2435, 7.2425, 7.2537, 7.2487, 7.2428, 7.2561, 7.2518, 7.2497, 7.2623, 7.2577, 7.2559, 7.2547, 7.2536, 7.2501, 7.2609, 7.2551, 7.25, 7.248, 7.2475, 7.2443, 7.2388, 7.2493, 7.244, 7.2414, 7.2411, 7.239, 7.2521, 7.2482, 7.2457, 7.241, 7.2363, 7.2304, 7.2279, 7.24, 7.2346, 7.2347, 7.2166, 7.2594, 7.2537, 7.265, 7.2599, 7.2696, 7.265, 7.2602, 7.3208, 7.3167, 7.3302, 7.3272, 7.3426, 7.3436, 7.344, 7.3382, 7.3369, 7.3351, 7.3347, 7.3451, 7.3408, 7.3361, 7.3313, 7.3259, 7.3236, 7.3188, 7.3147, 7.3093, 7.3193, 7.3285, 7.3266, 7.3256, 7.32, 7.3177, 7.3186, 7.3151, 7.3611, 7.384, 7.3812, 7.3776, 7.3861, 7.3819, 7.3767, 7.3749, 7.37, 7.3675, 7.3627, 7.3702, 7.3789, 7.3743, 7.369, 7.3679, 7.3628, 7.3604, 7.3591, 7.355, 7.3576, 7.3549, 7.3505, 7.3458, 7.3414, 7.3412, 7.3515, 7.3474, 7.3432, 7.3388, 7.3485, 7.3441, 7.3433, 7.3385, 7.3376, 7.3466, 7.342, 7.3406, 7.3357, 7.331, 7.3267, 7.3239, 7.3323, 7.3301, 7.3283, 7.3264, 7.3361, 7.3462, 7.3419, 7.3421, 7.3394, 7.3387, 7.3348, 7.3328, 7.3283, 7.3287, 7.3246, 7.323, 7.3206, 7.3165, 7.3159, 7.3123, 7.3084, 7.3067, 7.3059, 7.3029, 7.3019, 7.2979, 7.2967, 7.2933, 7.2901, 7.2898, 7.287, 7.284, 7.2832, 7.2921, 7.2898, 7.286, 7.2893, 7.3164, 7.3159, 7.3118, 7.3131, 7.31, 7.318, 7.3136, 7.3098, 7.3082, 7.3054, 7.3019, 7.2981, 7.2956, 7.3034, 7.3124, 7.3211, 7.3173, 7.3135, 7.31, 7.3063, 7.3041, 7.3, 7.2972, 7.3076, 7.3047, 7.3131, 7.3328, 7.3289, 7.3263, 7.3446, 7.3427, 7.3398, 7.3363, 7.3332, 7.3317, 7.3514, 7.3573, 7.3543, 7.3533, 7.3747, 7.3718, 7.3793, 7.3753, 7.3741, 7.3702, 7.3664, 7.3635, 7.3625, 7.359, 7.3558, 7.3571, 7.3559, 7.3543, 7.352, 7.3495, 7.3519, 7.3479, 7.3469, 7.3457, 7.3422, 7.3495, 7.3472, 7.3538, 7.3509, 7.3492, 7.3642, 7.3607, 7.3599, 7.3775, 7.3738, 7.3712, 7.3685, 7.3649, 7.3635, 7.3603, 7.3568, 7.3752, 7.3811, 7.3798, 7.3763, 7.3757, 7.3723, 7.3686, 7.3672, 7.3649, 7.3613, 7.3581, 7.3477, 7.3382, 7.3358, 7.3345, 7.3309, 7.3278, 7.325, 7.3322, 7.3297, 7.3278, 7.3408, 7.3473, 7.3443, 7.3479, 7.3448, 7.3572, 7.3543, 7.3513, 7.3569, 7.3563, 7.3556, 7.357, 7.3637, 7.3617, 7.3584, 7.3549, 7.3518, 7.3495, 7.347, 7.3529, 7.3517, 7.3481, 7.3452, 7.3423, 7.339, 7.3451, 7.3433, 7.3489, 7.3645, 7.3705, 7.3768, 7.3762, 7.3739, 7.3718, 7.3704, 7.3674, 7.3735, 7.3708, 7.3686, 7.3665, 7.3643, 7.3705, 7.3689, 7.3658, 7.372, 7.3688, 7.3675, 7.3641, 7.3641, 7.3633, 7.3687, 7.3749, 7.3717, 7.3685, 7.3651, 7.3642, 7.3747, 7.3803, 7.4141, 7.4136, 7.4115, 7.4097, 7.4067, 7.4161, 7.4131, 7.4051, 7.4029, 7.4005, 7.406, 7.4049, 7.4043, 7.4268, 7.4248, 7.4409, 7.4395, 7.437, 7.4357, 7.4413, 7.448, 7.4488, 7.4459, 7.4448, 7.4522, 7.4578, 7.4553, 7.4519, 7.4568, 7.4552, 7.4528, 7.4497, 7.4465, 7.4518, 7.4488, 7.4467, 7.4516, 7.4811, 7.4782, 7.4835, 7.4905, 7.4884, 7.4877, 7.4897, 7.4949, 7.4924, 7.4973, 7.4942, 7.5004, 7.4977, 7.4955, 7.4929, 7.4895, 7.4869, 7.4849, 7.4823, 7.4797, 7.4769, 7.4826, 7.4797, 7.4812, 7.4797, 7.4777, 7.4749, 7.4727, 7.478, 7.4764, 7.4737, 7.4793, 7.4766, 7.4738, 7.4719, 7.4692, 7.4673, 7.4648, 7.4711, 7.4762, 7.4797, 7.4853, 7.4838, 7.4834, 7.482, 7.4791, 7.4763, 7.4752, 7.473, 7.4786, 7.4765, 7.4751, 7.4726, 7.4708, 7.4688, 7.4667, 7.4637, 7.4624, 7.4598, 7.4589, 7.45, 7.4553, 7.4537, 7.4513, 7.4483, 7.4473, 7.4443, 7.4417, 7.4478, 7.4452, 7.4482, 7.4546, 7.4699, 7.4674, 7.4652, 7.4702, 7.4673, 7.4656, 7.4706, 7.4701, 7.4749, 7.4721, 7.4774, 7.4817, 7.4867, 7.4919, 7.4915, 7.4889, 7.4873, 7.4861, 7.4851, 7.4822, 7.4811, 7.4797, 7.4783, 7.4774, 7.4762, 7.4737, 7.4782, 7.4772, 7.4819, 7.4805, 7.4798, 7.4798, 7.4785, 7.4771, 7.4749, 7.4799, 7.4772, 7.4748, 7.4724, 7.4697, 7.4676, 7.4663, 7.4646, 7.4635, 7.4627, 7.46, 7.458, 7.4554, 7.4529, 7.4534, 7.4522, 7.4509, 7.4499, 7.4541, 7.4539, 7.4511, 7.4491, 7.447, 7.4454, 7.4445, 7.4421, 7.4397, 7.4478, 7.4456, 7.4501, 7.448, 7.4534, 7.4513, 7.4505, 7.456, 7.4564, 7.4548, 7.4521, 7.4496, 7.4538, 7.4581, 7.4562, 7.4555, 7.4601, 7.4577, 7.4624, 7.4611, 7.4589, 7.4635, 7.4615, 7.459, 7.4568, 7.4614, 7.4601, 7.4579, 7.4565, 7.4544, 7.4521, 7.4498, 7.4557, 7.4616, 7.4595, 7.4588, 7.4565, 7.463, 7.4629, 7.4628, 7.467, 7.4669, 7.4647, 7.4623, 7.4667, 7.4661, 7.4643, 7.4635, 7.47, 7.4678, 7.466, 7.4639, 7.4699, 7.4673, 7.4712, 7.4696, 7.4737, 7.4713, 7.4694, 7.4681, 7.467, 7.4655, 7.4694, 7.4671, 7.4648, 7.4624, 7.4599, 7.4584, 7.4574, 7.4562, 7.4599, 7.4648, 7.4625, 7.4607, 7.4604, 7.4586, 7.463, 7.4671, 7.4713, 7.4749, 7.4744, 7.4738, 7.4716, 7.4691, 7.4727, 7.4765, 7.4769, 7.4761, 7.4737, 7.4779, 7.476, 7.4738, 7.4845, 7.4838, 7.4819, 7.48, 7.4835, 7.4813, 7.4808, 7.4787, 7.4826, 7.4803, 7.4782, 7.482, 7.4802, 7.478, 7.4759, 7.474, 7.4717, 7.4701, 7.468, 7.4657, 7.4644, 7.4643, 7.4629, 7.463, 7.4679, 7.4668, 7.4646, 7.4624, 7.4604, 7.4583, 7.4624, 7.4664, 7.4657, 7.47, 7.4687, 7.4681, 7.4665, 7.4649, 7.4626, 7.4663, 7.4645, 7.4624, 7.4603, 7.4586, 7.4577, 7.4611, 7.4595, 7.4573, 7.4551, 7.4591, 7.458, 7.4565, 7.4565, 7.4794, 7.4828, 7.4806, 7.4788, 7.4779, 7.4766, 7.4754, 7.475, 7.4732, 7.4709, 7.4687, 7.4667, 7.465, 7.4643, 7.4651, 7.4656, 7.4643, 7.4629, 7.4662, 7.4655, 7.4637, 7.4623, 7.4621, 7.4605, 7.4585, 7.4567, 7.4556, 7.4536, 7.4515, 7.455, 7.4548, 7.4526, 7.4513, 7.449, 7.4527, 7.4518, 7.45, 7.4486, 7.4489, 7.4468, 7.4505, 7.4484, 7.4462, 7.4499, 7.448, 7.4516, 7.451, 7.4497, 7.4621, 7.4711, 7.4766, 7.4748, 7.4732, 7.4725, 7.4763, 7.4742, 7.4732, 7.4717, 7.4704, 7.4695, 7.4691, 7.4725, 7.4716, 7.4697, 7.4676, 7.4654, 7.4646, 7.4625, 7.4617, 7.4648, 7.4629, 7.4611, 7.4602, 7.46, 7.4581, 7.4568, 7.4546, 7.4583, 7.4562, 7.4547, 7.4538, 7.4543, 7.4523, 7.4505, 7.449, 7.4529, 7.4518, 7.4501, 7.4482, 7.4484, 7.4478, 7.4469, 7.4452, 7.444, 7.4425, 7.4514, 7.4668, 7.4648, 7.4629, 7.461, 7.4595, 7.4576, 7.4559, 7.4543, 7.4531, 7.4522, 7.4506, 7.4545, 7.4534, 7.4514, 7.4511, 7.4496, 7.4526, 7.4557, 7.4539, 7.453, 7.4628, 7.4613, 7.4654, 7.4737, 7.4723, 7.4664, 7.4651, 7.463, 7.4629, 7.4612, 7.4595, 7.4547, 7.4527, 7.4519, 7.455, 7.4542, 7.4522, 7.4503, 7.4508, 7.449, 7.4481, 7.4463, 7.4443, 7.4433, 7.4467, 7.4454, 7.4436, 7.4423, 7.4406, 7.4438, 7.4426, 7.4417, 7.44, 7.443, 7.4411, 7.4446, 7.4452, 7.444, 7.4427, 7.4417, 7.44, 7.4392, 7.4427, 7.4418, 7.4408, 7.4402, 7.4445, 7.4435, 7.4426, 7.4461, 7.445, 7.4495, 7.4495, 7.4534, 7.4515, 7.4552, 7.4537, 7.4531, 7.4525, 7.4515, 7.4497, 7.448, 7.447, 7.4459, 7.4454, 7.4441, 7.4435, 7.4417, 7.4426, 7.4456, 7.4437, 7.4424, 7.4411, 7.44, 7.4389, 7.4373, 7.4369, 7.4404, 7.4387, 7.4369, 7.4363, 7.4357, 7.4344, 7.4338, 7.4322, 7.4309, 7.4344, 7.433, 7.4316, 7.4304, 7.4297, 7.4282, 7.4268, 7.4262, 7.425, 7.4236, 7.4269, 7.4255, 7.4243, 7.4188, 7.4173, 7.4175, 7.4183, 7.4167, 7.4165, 7.4148, 7.4143, 7.4131, 7.4115, 7.415, 7.4132, 7.4123, 7.4107, 7.4089, 7.4072, 7.4057, 7.4087, 7.4074, 7.4057, 7.4044, 7.4026, 7.4009, 7.3992, 7.3975, 7.3969, 7.4006, 7.4012, 7.4009, 7.4042, 7.4025, 7.4009, 7.3997, 7.3995, 7.3978, 7.397, 7.3953, 7.3987, 7.3979, 7.3963, 7.3993, 7.3983, 7.398, 7.4012, 7.4005, 7.4006, 7.4005, 7.3995, 7.3978, 7.3968, 7.3955, 7.3941, 7.3929, 7.3914, 7.3959, 7.3956, 7.3941, 7.3935, 7.3921, 7.3921, 7.3914, 7.3901, 7.3889, 7.3843, 7.3868, 7.39, 7.3884, 7.3868, 7.3851, 7.3834, 7.3824, 7.3853, 7.3836, 7.3866, 7.3868, 7.3852, 7.3836, 7.3838, 7.3872, 7.3876, 7.3885, 7.388, 7.3873, 7.3857, 7.3844, 7.3829, 7.3813, 7.38, 7.3787, 7.3788, 7.3779, 7.3763, 7.3809, 7.3806, 7.3823, 7.3821, 7.385, 7.3836, 7.3825, 7.3809, 7.3836, 7.3827, 7.383, 7.3831, 7.382, 7.3856, 7.3862, 7.3847, 7.3831, 7.382, 7.3826, 7.382, 7.3803, 7.3798, 7.3786, 7.3813, 7.3797, 7.3783, 7.3771, 7.3804, 7.3789, 7.3814, 7.3926, 7.4068, 7.4087, 7.409, 7.4078, 7.4065, 7.4051, 7.4052, 7.4042, 7.4027, 7.4014, 7.4003, 7.3992, 7.3981, 7.3982, 7.3974, 7.3965, 7.3954, 7.3946, 7.3944, 7.3978, 7.4011, 7.3996, 7.3983, 7.3969, 7.3957, 7.3955, 7.3961, 7.3945, 7.3942, 7.3932, 7.3919, 7.3995, 7.3984, 7.398, 7.3971, 7.3963, 7.3947, 7.3936, 7.3921, 7.3907, 7.3897, 7.3886, 7.3873, 7.3872, 7.3899, 7.3975, 7.3961, 7.3955, 7.3942, 7.3971, 7.3967, 7.3968, 7.3955, 7.3948, 7.3934, 7.3928, 7.392, 7.3905, 7.3893, 7.3883, 7.3868, 7.3853, 7.3881, 7.3875, 7.3868, 7.3853, 7.3841, 7.3825, 7.3817, 7.3803, 7.3792, 7.3777, 7.3803, 7.3801, 7.3826, 7.3817, 7.3803, 7.379, 7.3783, 7.3779, 7.3775, 7.376, 7.3749, 7.3746, 7.3734, 7.3731, 7.3721, 7.3767, 7.3807, 7.3793, 7.3779, 7.377, 7.3755, 7.3742, 7.3728, 7.3714, 7.37, 7.3694, 7.3718, 7.3709, 7.3698, 7.3723, 7.371, 7.3736, 7.3737, 7.3723, 7.375, 7.3736, 7.373, 7.3719, 7.3711, 7.3704, 7.3691, 7.3677, 7.3666, 7.3659, 7.3652, 7.3637, 7.3631, 7.3624, 7.3744, 7.3729, 7.3755, 7.3782, 7.3771, 7.3758, 7.3747, 7.3734, 7.3771, 7.3761, 7.3763, 7.3749, 7.3778, 7.3806, 7.3796, 7.3793, 7.3784, 7.3807, 7.3834, 7.3862, 7.3861, 7.3854, 7.3848, 7.3842, 7.3831, 7.386, 7.3848, 7.3835, 7.3822, 7.381, 7.3834, 7.3822, 7.3809, 7.3835, 7.3821, 7.3847, 7.387, 7.3858, 7.3845, 7.3834, 7.3822, 7.3808, 7.3863, 7.3851, 7.3887, 7.3914, 7.3899, 7.3886, 7.3913, 7.3942, 7.3932, 7.3924, 7.3909, 7.39, 7.3886, 7.3881, 7.3874, 7.3895, 7.3883, 7.3908, 7.3897, 7.3883, 7.387, 7.3894, 7.3889, 7.3893, 7.3897, 7.3883, 7.3879, 7.3868, 7.3862, 7.3851, 7.3836, 7.3851, 7.3838, 7.3867, 7.3865, 7.3854, 7.3851, 7.3885, 7.3882, 7.3872, 7.387, 7.3862, 7.3858, 7.3889, 7.3876, 7.3866, 7.3892, 7.3879, 7.391, 7.3901, 7.3893, 7.3879, 7.387, 7.3856, 7.388, 7.391, 7.3896, 7.3946, 7.3986, 7.3981, 7.3976, 7.4008, 7.3998, 7.3986, 7.3989, 7.3979, 7.3986, 7.3982, 7.397, 7.3964, 7.3954, 7.3943, 7.397, 7.3969, 7.3994, 7.3987, 7.3988, 7.4011, 7.4001, 7.3989, 7.3978, 7.3971, 7.3959, 7.3946, 7.3938, 7.3937, 7.3933, 7.3927, 7.3953, 7.3929, 7.3927, 7.3923, 7.3911, 7.3935, 7.3923, 7.3917, 7.3906, 7.3896, 7.3922, 7.3945, 7.3941, 7.3942, 7.3931, 7.3953, 7.3949, 7.3974, 7.3998, 7.3998, 7.3986, 7.3974, 7.396, 7.3951, 7.3943, 7.3938, 7.3927, 7.3926, 7.3921, 7.3911, 7.3902, 7.39, 7.3886, 7.3884, 7.3843, 7.3832, 7.3826, 7.3851, 7.3844, 7.3832, 7.382, 7.3816, 7.3805, 7.3802, 7.3794, 7.3781, 7.377, 7.3761, 7.376, 7.3785, 7.3778, 7.377, 7.3759, 7.3748, 7.3736, 7.3724, 7.3716, 7.3704, 7.3692, 7.3679, 7.367, 7.369, 7.3679, 7.3674, 7.3663, 7.3698, 7.3687, 7.3713, 7.3708, 7.3698, 7.3686, 7.368, 7.3706, 7.3702, 7.3694, 7.3702, 7.3663, 7.3687, 7.3711, 7.3706, 7.3701, 7.369, 7.3715, 7.3707, 7.3711, 7.3704, 7.3694, 7.372, 7.3712, 7.3736, 7.3729, 7.3758, 7.3747, 7.3738, 7.37, 7.3694, 7.3693, 7.3683, 7.3672, 7.367, 7.3661, 7.3653, 7.3642, 7.3638, 7.363, 7.3623, 7.3611, 7.3599, 7.3587, 7.3586, 7.3574, 7.3575, 7.3565, 7.3555, 7.355, 7.3541, 7.3531, 7.3519, 7.3514, 7.3503, 7.3492, 7.3484, 7.3482, 7.3477, 7.3503, 7.3496, 7.3489, 7.3486, 7.3509, 7.3515, 7.3509, 7.3497, 7.3491, 7.3486, 7.3485, 7.3513, 7.3537, 7.3533, 7.3522, 7.3512, 7.351, 7.35, 7.3489, 7.3494, 7.3486, 7.348, 7.3474, 7.3494, 7.3486, 7.3474, 7.3498, 7.3486, 7.3482, 7.3475, 7.3496, 7.3503, 7.3495, 7.3491, 7.3517, 7.3585, 7.3583, 7.3615, 7.3642, 7.3638, 7.3633, 7.3625, 7.3615, 7.361, 7.3604, 7.3594, 7.3589, 7.358, 7.3577, 7.3569, 7.3558, 7.3586, 7.3611, 7.3605, 7.3595, 7.3588, 7.361, 7.3629, 7.3679, 7.3698, 7.3758, 7.3748, 7.3773, 7.3799, 7.3787, 7.3777, 7.3766, 7.3765, 7.3753, 7.375, 7.3773, 7.3762, 7.3751, 7.3742, 7.3737, 7.3727, 7.3753, 7.3741, 7.3761, 7.3758, 7.3777, 7.3767, 7.379, 7.3811, 7.3833, 7.3821, 7.3812, 7.3862, 7.3853, 7.382, 7.3816, 7.3818, 7.3814, 7.3804, 7.3792, 7.378, 7.3772, 7.3764, 7.379, 7.3791, 7.3783, 7.3773, 7.3764, 7.3754, 7.3778, 7.3771, 7.3762, 7.3756, 7.3776, 7.3765, 7.3755, 7.3744, 7.3768, 7.3772, 7.3794, 7.3818, 7.3808, 7.383, 7.3824, 7.3816, 7.3815, 7.3814, 7.3843, 7.3853, 7.3846, 7.3843, 7.3838, 7.3829, 7.3848, 7.3844, 7.3835, 7.3827, 7.3817, 7.3813, 7.3809, 7.38, 7.379, 7.381, 7.38, 7.3796, 7.3792, 7.3785, 7.378, 7.3774, 7.3771, 7.3825, 7.3819, 7.3841, 7.3861, 7.3851, 7.3852, 7.3847, 7.3865, 7.3854, 7.3876, 7.3865, 7.3854, 7.3851, 7.384, 7.3835, 7.3824, 7.382, 7.3809, 7.3802, 7.3823, 7.3815, 7.384, 7.3829, 7.3827, 7.3822, 7.3859, 7.3851, 7.3847, 7.3845, 7.3837, 7.3873, 7.3865, 7.3861, 7.3851, 7.3844, 7.3835, 7.383, 7.3821, 7.381, 7.3833, 7.3827, 7.3847, 7.3864, 7.3853, 7.3842, 7.3831, 7.382, 7.3812, 7.3807, 7.3796, 7.3846, 7.3836, 7.3827, 7.3817, 7.3837, 7.3803, 7.3824, 7.3846, 7.3874, 7.3864, 7.3889, 7.3885, 7.3881, 7.3878, 7.3868, 7.3863, 7.3852, 7.3844, 7.3836, 7.3833, 7.3825, 7.3817, 7.3812, 7.3802, 7.3821, 7.3812, 7.381, 7.3805, 7.38, 7.3801, 7.3818, 7.3786, 7.3753, 7.3753, 7.3771, 7.376, 7.3752, 7.377, 7.376, 7.375, 7.3739, 7.373, 7.3719, 7.3769, 7.3789, 7.3783, 7.3806, 7.3825, 7.3821, 7.3813, 7.3804, 7.382, 7.3811, 7.3811, 7.3806, 7.3795, 7.379, 7.3839, 7.3831, 7.3822, 7.3818, 7.3837, 7.3856, 7.3846, 7.3844, 7.3834, 7.3826, 7.3818, 7.3813, 7.3804, 7.3825, 7.3817, 7.3815, 7.3806, 7.3798, 7.3816, 7.3807, 7.3822, 7.3814, 7.381, 7.3834, 7.3803, 7.38, 7.3798, 7.3793, 7.3791, 7.3781, 7.3776, 7.3778, 7.3773, 7.3771, 7.3766, 7.3761, 7.3755, 7.375, 7.3743, 7.3735, 7.3755, 7.3744, 7.3735, 7.3727, 7.3723, 7.374, 7.3757, 7.3779, 7.3796, 7.3825, 7.3818, 7.3807, 7.3799, 7.3845, 7.3897, 7.3888, 7.3882, 7.3874, 7.4006, 7.4, 7.399, 7.4008, 7.3998, 7.3988, 7.3978, 7.3975, 7.3966, 7.3957, 7.3947, 7.3944, 7.3947, 7.394, 7.3933, 7.3928, 7.3927, 7.3918, 7.3937, 7.3929, 7.392, 7.3917, 7.3911, 7.3903, 7.3894, 7.3914, 7.3904, 7.3902, 7.3892, 7.3911, 7.3901, 7.3919, 7.3909, 7.3901, 7.3895, 7.3887, 7.3887, 7.3883, 7.3881, 7.3871, 7.3893, 7.3884, 7.3874, 7.3895, 7.3899, 7.3895, 7.3889, 7.388, 7.3877, 7.3875, 7.3866, 7.3855, 7.3848, 7.384, 7.3841, 7.3836, 7.3838, 7.3833, 7.3829, 7.3831, 7.3829, 7.3854, 7.3847, 7.3837, 7.3832, 7.3823, 7.382, 7.3819, 7.3811, 7.3804, 7.3795, 7.3787, 7.3805, 7.3796, 7.3786, 7.3776, 7.3768, 7.3764, 7.3761, 7.3754, 7.3752, 7.3747, 7.3746, 7.3764, 7.3754, 7.3747, 7.3766, 7.3762, 7.3757, 7.3752, 7.3746, 7.3741, 7.3758, 7.3748, 7.3738, 7.3759, 7.3751, 7.3744, 7.3737, 7.3731, 7.3722, 7.3713, 7.3703, 7.3722, 7.3715, 7.3707, 7.3701, 7.3695, 7.3714, 7.3732, 7.3727, 7.3723, 7.374, 7.3737, 7.3732, 7.3727, 7.3725, 7.3717, 7.371, 7.371, 7.37, 7.3696, 7.3686, 7.3682, 7.3672, 7.3694, 7.371, 7.3727, 7.3718, 7.3716, 7.3742, 7.3734, 7.3731, 7.3733, 7.3724, 7.3714, 7.373, 7.3747, 7.3747, 7.3742, 7.3733, 7.3728, 7.3726, 7.3716, 7.3712, 7.3704, 7.3724, 7.3721, 7.3712, 7.3708, 7.3698, 7.3715, 7.3712, 7.3706, 7.37, 7.3697, 7.3742, 7.3736, 7.373, 7.3748, 7.3743, 7.376, 7.3763, 7.3781, 7.3775, 7.3767, 7.3834, 7.3852, 7.3869, 7.3867, 7.3862, 7.3873, 7.3864, 7.3856, 7.3865, 7.3837, 7.3819, 7.3867, 7.3883, 7.3898, 7.3893, 7.3894, 7.3891, 7.389, 7.3883, 7.3877, 7.3872, 7.3892, 7.3884, 7.3878, 7.3883, 7.3904, 7.3924, 7.3915, 7.3915, 7.3912, 7.393, 7.3924, 7.3945, 7.3946, 7.3945, 7.3937, 7.3932, 7.3928, 7.3929, 7.3921, 7.3914, 7.3904, 7.3894, 7.391, 7.3904, 7.39, 7.3893, 7.3893, 7.3909, 7.3884, 7.3879, 7.3877, 7.3871, 7.3888, 7.3879, 7.3871, 7.3862, 7.3879, 7.3873, 7.3867, 7.3874, 7.3867, 7.3861, 7.3879, 7.3871, 7.3896, 7.3906, 7.3897, 7.3892, 7.3883, 7.3876, 7.3895, 7.3911, 7.3906, 7.3898, 7.392, 7.3913, 7.3904, 7.3901, 7.3922, 7.3915, 7.3906, 7.3897, 7.3893, 7.3909, 7.3902, 7.3893, 7.3889, 7.3883, 7.3873, 7.3871, 7.3867, 7.3859, 7.3851, 7.3844, 7.3837, 7.3828, 7.382, 7.3817, 7.3815, 7.3831, 7.3806, 7.3797, 7.3813, 7.3834, 7.3832, 7.3823, 7.3824, 7.3816, 7.3808, 7.3824, 7.3822, 7.3838, 7.3828, 7.3825, 7.3823, 7.3819, 7.3845, 7.3842, 7.3843, 7.3862, 7.3855, 7.3852, 7.3847, 7.3839, 7.3831, 7.3823, 7.3843, 7.3839, 7.383, 7.3826, 7.3822, 7.3813, 7.3806, 7.3797, 7.3813, 7.3804, 7.3798, 7.3824, 7.382, 7.3836, 7.3829, 7.3828, 7.3819, 7.3811, 7.3828, 7.3819, 7.3814, 7.3832, 7.3824, 7.3838, 7.3831, 7.3828, 7.382, 7.3819, 7.3848, 7.3846, 7.384, 7.3832, 7.3828, 7.3829, 7.3834, 7.383, 7.3849, 7.3871, 7.3874, 7.3868, 7.3861, 7.3854, 7.385, 7.3842, 7.3839, 7.3854, 7.3847, 7.3844, 7.3836, 7.3831, 7.3836, 7.386, 7.386, 7.3853, 7.3845, 7.3836, 7.3807, 7.3805, 7.3799, 7.379, 7.3806, 7.3797, 7.3811, 7.3803, 7.3796, 7.38, 7.3799, 7.3799, 7.3832, 7.383, 7.3826, 7.3842, 7.384, 7.3856, 7.3848, 7.3846, 7.3839, 7.3832, 7.3823, 7.3841, 7.3832, 7.383, 7.3823, 7.3816, 7.3807, 7.3804, 7.3795, 7.3788, 7.3807, 7.3826, 7.3818, 7.3815, 7.3807, 7.3801, 7.3797, 7.3794, 7.3788, 7.3783, 7.3777, 7.3769, 7.3761, 7.3754, 7.3749, 7.3747, 7.3747, 7.3744, 7.3736, 7.3749, 7.3767, 7.376, 7.3754, 7.3755, 7.3754, 7.3755, 7.375, 7.3767, 7.3764, 7.3756, 7.3749, 7.3765, 7.3784, 7.3776, 7.3772, 7.3765, 7.376, 7.3753, 7.3747, 7.374, 7.3753, 7.3768, 7.3782, 7.3774, 7.3766, 7.376, 7.3754, 7.373, 7.3747, 7.374, 7.3756, 7.3749, 7.3765, 7.3739, 7.376, 7.3755, 7.3748, 7.3742, 7.3738, 7.3736, 7.373, 7.3723, 7.3722, 7.3737, 7.3733, 7.3748, 7.3745, 7.3744, 7.3757, 7.375, 7.3764, 7.378, 7.3794, 7.3809, 7.3802, 7.3798, 7.3791, 7.3783, 7.3775, 7.3767, 7.3783, 7.3777, 7.3771, 7.3769, 7.3768, 7.3761, 7.3753, 7.3745, 7.374, 7.3735, 7.3726, 7.3741, 7.3733, 7.3726, 7.372, 7.3717, 7.3712, 7.3705, 7.3697, 7.3698, 7.3694, 7.371, 7.3704, 7.3685, 7.3678, 7.3702, 7.3716, 7.3714, 7.3717, 7.3709, 7.3725, 7.3721, 7.3713, 7.3706, 7.3721, 7.3714, 7.3706, 7.3703, 7.3722, 7.3715, 7.3709, 7.3704, 7.3699, 7.3696, 7.3691, 7.3686, 7.3688, 7.3706, 7.3721, 7.3717, 7.3709, 7.3704, 7.3697, 7.369, 7.3683, 7.37, 7.3693, 7.3709, 7.3701, 7.3678, 7.3672, 7.3668, 7.3661, 7.3653, 7.3645, 7.3658, 7.365, 7.3643, 7.3636, 7.3629, 7.3626, 7.3629, 7.3643, 7.3641, 7.3656, 7.3663, 7.3656, 7.3649, 7.3725, 7.3738, 7.3731, 7.3726, 7.3724, 7.3734, 7.3726, 7.3699, 7.3692, 7.3691, 7.3684, 7.3681, 7.3678, 7.3671, 7.3666, 7.366, 7.3653, 7.3648, 7.364, 7.3632, 7.3645, 7.3644, 7.3643, 7.3681, 7.3673, 7.367, 7.3686, 7.3679, 7.3676, 7.3669, 7.3683, 7.3677, 7.3674, 7.3666, 7.3681, 7.3693, 7.3686, 7.3699, 7.3712, 7.3704, 7.3701, 7.3714, 7.371, 7.3708, 7.3701, 7.3693, 7.3688, 7.3687, 7.3702, 7.3703, 7.3699, 7.3677, 7.3682, 7.3674, 7.3687, 7.3681, 7.3683, 7.3677, 7.3669, 7.3674, 7.3668, 7.366, 7.3654, 7.3651, 7.3647, 7.3645, 7.3641, 7.3639, 7.365, 7.3648, 7.3663, 7.3664, 7.3657, 7.3652, 7.3667, 7.3663, 7.3659, 7.3659, 7.3652, 7.3648, 7.3642, 7.3643, 7.364, 7.3635, 7.3635, 7.3628, 7.3622, 7.3616, 7.364, 7.3636, 7.3631, 7.3637, 7.3631, 7.3646, 7.364, 7.3637, 7.3633, 7.363, 7.3623, 7.3615, 7.3607, 7.3602, 7.3617, 7.363, 7.3644, 7.3638, 7.3636, 7.3631, 7.3628, 7.3625, 7.3617, 7.3615, 7.3612, 7.3627, 7.3642, 7.3642, 7.3627, 7.3619, 7.3612, 7.3608, 7.3604, 7.3599, 7.3603, 7.3601, 7.3614, 7.3609, 7.3606, 7.3599, 7.3591, 7.3585, 7.3599, 7.3596, 7.3589, 7.3583, 7.3598, 7.3596, 7.3589, 7.3582, 7.3574, 7.357, 7.3567, 7.3563, 7.3557, 7.356, 7.3555, 7.3556, 7.355, 7.3566, 7.3564, 7.3558, 7.3553, 7.3547, 7.3562, 7.3597, 7.3591, 7.359, 7.3591, 7.3584, 7.3582, 7.3576, 7.3586, 7.3579, 7.3573, 7.3568, 7.3561, 7.3554, 7.3549, 7.3545, 7.3557, 7.355, 7.3547, 7.3543, 7.3556, 7.3549, 7.3542, 7.3535, 7.3528, 7.3524, 7.3522, 7.3559, 7.3552, 7.3529, 7.3521, 7.3521, 7.3534, 7.3534, 7.3527, 7.352, 7.3518, 7.3511, 7.3508, 7.3501, 7.3499, 7.3493, 7.3491, 7.3504, 7.3498, 7.3491, 7.3487, 7.3481, 7.3473, 7.3471, 7.3485, 7.3499, 7.3492, 7.3503, 7.3496, 7.3492, 7.3506, 7.35, 7.3516, 7.3531, 7.3546, 7.3544, 7.3542, 7.3542, 7.3536, 7.3528, 7.3528, 7.352, 7.3523, 7.3516, 7.3509, 7.3524, 7.3518, 7.3512, 7.3506, 7.3499, 7.3493, 7.3508, 7.3501, 7.3494, 7.3488, 7.3486, 7.348, 7.3479, 7.3471, 7.3464, 7.3457, 7.3455, 7.3448, 7.3462, 7.3445, 7.3422, 7.3421, 7.3439, 7.3432, 7.3428, 7.3441, 7.3436, 7.3429, 7.3424, 7.3437, 7.3435, 7.3447, 7.3445, 7.3438, 7.3431, 7.3428, 7.3421, 7.3416, 7.3409, 7.3402, 7.3395, 7.3393, 7.339, 7.3383, 7.3376, 7.3372, 7.3407, 7.3402, 7.3398, 7.3391, 7.3424, 7.3417, 7.3411, 7.3409, 7.3407, 7.3421, 7.3416, 7.3414, 7.3411, 7.3407, 7.34, 7.3393, 7.3389, 7.3387, 7.3381, 7.3376, 7.3371, 7.3368, 7.3366, 7.3365, 7.3381, 7.3394, 7.3391, 7.3405, 7.3398, 7.3391, 7.339, 7.3388, 7.3386, 7.3379, 7.3372, 7.3374, 7.3378, 7.339, 7.3383, 7.3395, 7.3407, 7.3406, 7.341, 7.3403, 7.3397, 7.3392, 7.3386, 7.3382, 7.3382, 7.3376, 7.3369, 7.3364, 7.3357, 7.3357, 7.335, 7.3349, 7.3343, 7.3358, 7.3351, 7.3353, 7.335, 7.3351, 7.3347, 7.334, 7.3336, 7.3336, 7.3331, 7.3324, 7.3317, 7.33, 7.3293, 7.3286, 7.3279, 7.3294, 7.3309, 7.3306, 7.33, 7.3297, 7.3291, 7.3285, 7.3282, 7.3276, 7.3304, 7.3301, 7.3298, 7.3292, 7.3288, 7.3283, 7.3298, 7.3312, 7.3312, 7.3307, 7.3301, 7.3295, 7.3295, 7.329, 7.3285, 7.3299, 7.3295, 7.3294, 7.329, 7.3285, 7.3285, 7.3288, 7.3281, 7.3274, 7.327, 7.3264, 7.3273, 7.3319, 7.332, 7.3342, 7.3342, 7.3338, 7.3332, 7.3328, 7.3321, 7.3317, 7.3315, 7.3311, 7.3327, 7.3324, 7.3321, 7.3315, 7.3309, 7.3302, 7.3299, 7.3311, 7.3308, 7.332, 7.3332, 7.3328, 7.3321, 7.3314, 7.3307, 7.3301, 7.3296, 7.329, 7.3284, 7.328, 7.3277, 7.3271, 7.3265, 7.3277, 7.3274, 7.3289, 7.3283, 7.3278, 7.3275, 7.3319, 7.3384, 7.3396, 7.3408, 7.3419, 7.3416, 7.3414, 7.3408, 7.3404, 7.3417, 7.341, 7.3407, 7.3401, 7.3415, 7.3409, 7.3403, 7.3399, 7.3392, 7.339, 7.3384, 7.3378, 7.3373, 7.3386, 7.3398, 7.3392, 7.3389, 7.3382, 7.3376, 7.3389, 7.3388, 7.3382, 7.3377, 7.339, 7.3386, 7.3387, 7.34, 7.3413, 7.3425, 7.3436, 7.3433, 7.3432, 7.3426, 7.3419, 7.3431, 7.3485, 7.3485, 7.3485, 7.3479, 7.3472, 7.3485, 7.3488, 7.3482, 7.3479, 7.3489, 7.3485, 7.3478, 7.3471, 7.345, 7.3453, 7.3465, 7.3461, 7.3457, 7.3451, 7.3463, 7.3477, 7.3475, 7.3469, 7.3464, 7.3476, 7.3474, 7.3469, 7.3464, 7.3476, 7.3469, 7.3465, 7.3466, 7.3481, 7.3537, 7.3532, 7.3538, 7.3534, 7.3529, 7.3541, 7.3536, 7.353, 7.3524, 7.3522, 7.3517, 7.3515, 7.351, 7.3506, 7.35, 7.3495, 7.3489, 7.3488, 7.3501, 7.3497, 7.3496, 7.349, 7.3485, 7.3479, 7.3475, 7.3474, 7.3487, 7.348, 7.3477, 7.3472, 7.3471, 7.3472, 7.3468, 7.3462, 7.3458, 7.3452, 7.3446, 7.3443, 7.3439, 7.3451, 7.3464, 7.3459, 7.3453, 7.3448, 7.3442, 7.3438, 7.3434, 7.343, 7.3426, 7.3436, 7.3431, 7.343, 7.3452, 7.3446, 7.3489, 7.3485, 7.3478, 7.3472, 7.3468, 7.3465, 7.3479, 7.348, 7.3475, 7.3472, 7.3471, 7.3506, 7.3521, 7.3517, 7.3514, 7.3512, 7.3505, 7.3501, 7.3503, 7.3496, 7.3492, 7.3489, 7.3485, 7.3479, 7.3475, 7.3473, 7.3473, 7.3471, 7.3469, 7.3463, 7.3458, 7.3453, 7.3466, 7.346, 7.3454, 7.3449, 7.3444, 7.3442, 7.3441, 7.3436, 7.3434, 7.343, 7.3425, 7.3422, 7.3416, 7.341, 7.3405, 7.34, 7.3397, 7.3393, 7.3388, 7.3382, 7.3394, 7.339, 7.3385, 7.3378, 7.3392, 7.3406, 7.3402, 7.3396, 7.3391, 7.3389, 7.3401, 7.3395, 7.3408, 7.3403, 7.3398, 7.3397, 7.3392, 7.3387, 7.3382, 7.3375, 7.337, 7.3383, 7.3395, 7.3389, 7.3402, 7.3413, 7.3408, 7.3403, 7.3397, 7.3391, 7.3385, 7.3379, 7.3376, 7.337, 7.3364, 7.3361, 7.3361, 7.3359, 7.3358, 7.337, 7.3367, 7.3363, 7.336, 7.3355, 7.3366, 7.336, 7.3356, 7.335, 7.3344, 7.3342, 7.3336, 7.3332, 7.3326, 7.332, 7.3331, 7.3331, 7.3326, 7.3305, 7.3302, 7.3296, 7.3291, 7.3285, 7.3282, 7.328, 7.3291, 7.3285, 7.3279, 7.3273, 7.3271, 7.3266, 7.326, 7.3256, 7.325, 7.3248, 7.326, 7.3254, 7.3251, 7.3262, 7.3256, 7.325, 7.3247, 7.3259, 7.3258, 7.3271, 7.3266, 7.3278, 7.329, 7.3285, 7.328, 7.3279, 7.3277, 7.3271, 7.3266, 7.3265, 7.3261, 7.3296, 7.3294, 7.3293, 7.3305, 7.33, 7.3296, 7.3291, 7.331, 7.3307, 7.3297, 7.3294, 7.3291, 7.3285, 7.3285, 7.3287, 7.3308, 7.3303, 7.3301, 7.3299, 7.3294, 7.329, 7.3286, 7.328, 7.3279, 7.3278, 7.3272, 7.3269, 7.3267, 7.3262, 7.3258, 7.327, 7.3264, 7.3259, 7.3256, 7.3254, 7.3249, 7.3243, 7.3239, 7.3237, 7.3232, 7.323, 7.3227, 7.3225, 7.3221, 7.3233, 7.3231, 7.3226, 7.3222, 7.3219, 7.3213, 7.3226, 7.3222, 7.3218, 7.3212, 7.3209, 7.322, 7.3216, 7.3211, 7.3205, 7.3206, 7.3201, 7.3181, 7.3175, 7.3187, 7.3187, 7.3188, 7.3198, 7.3194, 7.319, 7.3217, 7.3211, 7.3206, 7.3206, 7.3202, 7.3201, 7.3199, 7.3214, 7.3226, 7.324, 7.3235, 7.3229, 7.3239, 7.3251, 7.3245, 7.3239, 7.337, 7.3365, 7.336, 7.3354, 7.3349, 7.3344, 7.3339, 7.3366, 7.3365, 7.3377, 7.3389, 7.3385, 7.3382, 7.338, 7.3374, 7.3369, 7.337, 7.3365, 7.3366, 7.3364, 7.336, 7.3359, 7.3353, 7.3337, 7.3334, 7.3329, 7.3323, 7.3318, 7.3312, 7.3306, 7.3301, 7.3295, 7.3289, 7.3283, 7.3293, 7.329, 7.3284, 7.3284, 7.328, 7.3277, 7.3272, 7.3282, 7.3279, 7.329, 7.3289, 7.3285, 7.3279, 7.3274, 7.3269, 7.3264, 7.3259, 7.3286, 7.3301, 7.3299, 7.331, 7.3321, 7.3316, 7.3328, 7.3322, 7.3336, 7.3331, 7.3343, 7.3338, 7.3336, 7.3347, 7.3342, 7.3339, 7.3335, 7.333, 7.3341, 7.3337, 7.3334, 7.3331, 7.3326, 7.3328, 7.3329, 7.3324, 7.3322, 7.3321, 7.332, 7.3315, 7.331, 7.3307, 7.332, 7.3314, 7.3314, 7.3312, 7.3306, 7.3303, 7.3298, 7.3301, 7.3299, 7.3294, 7.329, 7.3285, 7.3295, 7.3292, 7.329, 7.33, 7.33, 7.3298, 7.3292, 7.3303, 7.3298, 7.3308, 7.3304, 7.33, 7.3311, 7.3306, 7.33, 7.3297, 7.3296, 7.329, 7.33, 7.33, 7.3294, 7.3295, 7.3311, 7.3312, 7.331, 7.3306, 7.3308, 7.3306, 7.3309, 7.3306, 7.3336, 7.3339, 7.3379, 7.338, 7.3375, 7.3369, 7.3364, 7.3359, 7.3359, 7.3354, 7.3366, 7.336, 7.3355, 7.3349, 7.3346, 7.3356, 7.3352, 7.3346, 7.3327, 7.3321, 7.3315, 7.3312, 7.3306, 7.3301, 7.3297, 7.3291, 7.3322, 7.3317, 7.3305, 7.3325, 7.3341, 7.3351, 7.3346, 7.3346, 7.3344, 7.3356, 7.337, 7.3369, 7.3412, 7.3407, 7.3402, 7.3397, 7.3414, 7.3412, 7.3407, 7.342, 7.3402, 7.3398, 7.3393, 7.3389, 7.3388, 7.3414, 7.3425, 7.342, 7.3416, 7.3413, 7.3411, 7.3412, 7.3409, 7.3404, 7.3403, 7.3398, 7.3393, 7.3389, 7.3401, 7.3412, 7.3411, 7.3406, 7.3405, 7.3418, 7.343, 7.3442, 7.3456, 7.3452, 7.345, 7.3446, 7.3441, 7.3435, 7.3429, 7.3459, 7.3457, 7.3452, 7.3447, 7.3446, 7.3444, 7.3444, 7.3441, 7.3442, 7.3441, 7.3439, 7.3437, 7.3432, 7.3428, 7.3426, 7.3421, 7.3416, 7.3416, 7.3411, 7.3406, 7.34, 7.3404, 7.3415, 7.3413, 7.3409, 7.3406, 7.3401, 7.3396, 7.3398, 7.3407, 7.3402, 7.3398, 7.3394, 7.3404, 7.34, 7.3411, 7.3423, 7.3433, 7.3429, 7.3426, 7.3421, 7.3442, 7.344, 7.3436, 7.3434, 7.3431, 7.3426, 7.3421, 7.3421, 7.3437, 7.3435, 7.3446, 7.3441, 7.3436, 7.3434, 7.3429, 7.3426, 7.343, 7.3426, 7.342, 7.3419, 7.3415, 7.3416, 7.341, 7.3409, 7.3406, 7.3401, 7.3412, 7.3422, 7.3417, 7.3412, 7.3409, 7.3404, 7.34, 7.3397, 7.3394, 7.339, 7.3386, 7.3383, 7.338, 7.3378, 7.3375, 7.3372, 7.3367, 7.3364, 7.3359, 7.3357, 7.3353, 7.3354, 7.3349, 7.3344, 7.3354, 7.3354, 7.3353, 7.3348, 7.3358, 7.3355, 7.3354, 7.3409, 7.3406, 7.3404, 7.3403, 7.3398, 7.3408, 7.3404, 7.3399, 7.3394, 7.339, 7.3389, 7.3383, 7.3378, 7.3373, 7.3372, 7.3367, 7.3364, 7.3366, 7.3362, 7.3373, 7.3373, 7.3383, 7.3379, 7.3389, 7.3386, 7.3383, 7.338, 7.3378, 7.3388, 7.3383, 7.3378, 7.3376, 7.3371, 7.3366, 7.3365, 7.3366, 7.3364, 7.3361, 7.3372, 7.3367, 7.3363, 7.3358, 7.3356, 7.3352, 7.3363, 7.3365, 7.3362, 7.336, 7.3355, 7.3384, 7.338, 7.3374, 7.337, 7.337, 7.3366, 7.3362, 7.336, 7.3388, 7.3386, 7.3386, 7.3414, 7.3431, 7.3427, 7.3422, 7.3435, 7.343, 7.3427, 7.3428, 7.3426, 7.3421, 7.3465, 7.346, 7.3471, 7.3467, 7.3466, 7.3462, 7.3461, 7.3456, 7.3453, 7.3448, 7.3444, 7.344, 7.3435, 7.3433, 7.3437, 7.3433, 7.3429, 7.3426, 7.3426, 7.347, 7.3466, 7.3464, 7.3474, 7.3485, 7.3496, 7.3495, 7.3491, 7.3488, 7.3483, 7.3496, 7.3492, 7.3501, 7.3501, 7.3498, 7.3493, 7.3489, 7.3484, 7.3481, 7.3475, 7.3472, 7.347, 7.3468, 7.3468, 7.3464, 7.3476, 7.3487, 7.3483, 7.3479, 7.3475, 7.3475, 7.349, 7.3485, 7.3528, 7.3524, 7.352, 7.3561, 7.3557, 7.3557, 7.3567, 7.3562, 7.356, 7.3557, 7.3552, 7.3548, 7.3543, 7.3539, 7.3534, 7.3531, 7.3541, 7.3536, 7.3531, 7.3541, 7.3552, 7.3562, 7.3558, 7.3556, 7.3554, 7.3552, 7.3563, 7.356, 7.3557, 7.3566, 7.3561, 7.357, 7.358, 7.3589, 7.3585, 7.3585, 7.358, 7.3576, 7.3572, 7.3572, 7.3583, 7.3595, 7.3589, 7.3584, 7.3581, 7.3576, 7.3585, 7.358, 7.3581, 7.3578, 7.3575, 7.357, 7.3566, 7.3561, 7.3557, 7.3554, 7.355, 7.3545, 7.354, 7.3535, 7.3532, 7.3527, 7.3525, 7.3521, 7.3521, 7.3531, 7.3542, 7.3537, 7.3532, 7.353, 7.3525, 7.3521, 7.3516, 7.3539, 7.355, 7.3549, 7.3546, 7.3544, 7.3544, 7.3539, 7.3535, 7.3534, 7.3546, 7.3544, 7.3544, 7.3555, 7.355, 7.3549, 7.3558, 7.3555, 7.3567, 7.3562, 7.3561, 7.3559, 7.3555, 7.355, 7.3548, 7.3557, 7.3552, 7.3549, 7.3552, 7.3575, 7.3572, 7.3568, 7.3568, 7.3563, 7.3565, 7.3563, 7.3558, 7.3558, 7.3556, 7.3554, 7.3549, 7.3546, 7.3546, 7.3549, 7.3544, 7.3556, 7.3552, 7.3548, 7.3547, 7.3544, 7.3546, 7.3542, 7.3554, 7.3552, 7.3548, 7.3542, 7.3543, 7.3542, 7.3537, 7.3534, 7.3531, 7.3526, 7.3522, 7.3531, 7.3528, 7.3539, 7.3537, 7.3535, 7.3532, 7.3528, 7.3525, 7.3524, 7.352, 7.3524, 7.3519, 7.3516, 7.3525, 7.3522, 7.3521, 7.3517, 7.3514, 7.3527, 7.3526, 7.3523, 7.3562, 7.3571, 7.3568, 7.3563, 7.3576, 7.3572, 7.3568, 7.3563, 7.3573, 7.3568, 7.3567, 7.3564, 7.3559, 7.3556, 7.3551, 7.3546, 7.3542, 7.3539, 7.3535, 7.353, 7.3525, 7.3525, 7.3536, 7.3531, 7.3526, 7.3523, 7.3518, 7.3513, 7.3508, 7.3505, 7.3504, 7.351, 7.3508, 7.3517, 7.3515, 7.351, 7.3519, 7.3515, 7.3525, 7.3534, 7.3558, 7.3573, 7.357, 7.3568, 7.3567, 7.3576, 7.3575, 7.3571, 7.357, 7.3579, 7.3574, 7.3583, 7.358, 7.3575, 7.3572, 7.3567, 7.3567, 7.3578, 7.3577, 7.3576, 7.3573, 7.3568, 7.3563, 7.3548, 7.3545, 7.354, 7.3537, 7.3555, 7.3552, 7.3562, 7.3557, 7.3555, 7.3564, 7.356, 7.3556, 7.3551, 7.355, 7.3547, 7.3547, 7.3558, 7.3554, 7.3553, 7.3566, 7.3563, 7.356, 7.3555, 7.3553, 7.3549, 7.3548, 7.3543, 7.3551, 7.3547, 7.3544, 7.3554, 7.3552, 7.355, 7.3546, 7.3542, 7.3538, 7.3537, 7.3533, 7.3533, 7.3546, 7.3542, 7.3537, 7.3532, 7.3528, 7.3539, 7.354, 7.3536, 7.3534, 7.353, 7.3526, 7.3524, 7.3541, 7.3537, 7.3534, 7.3531, 7.3542, 7.3553, 7.3552, 7.356, 7.357, 7.3569, 7.3565, 7.3576, 7.3571, 7.3572, 7.357, 7.3571, 7.3569, 7.3565, 7.3561, 7.3559, 7.3554, 7.3551, 7.3566, 7.3561, 7.357, 7.3569, 7.3568, 7.3563, 7.356, 7.3561, 7.3556, 7.3542, 7.3542, 7.3538, 7.3541, 7.3549, 7.3548, 7.3545, 7.3542, 7.3551, 7.3548, 7.3545, 7.354, 7.3541, 7.3536, 7.3545, 7.354, 7.3538, 7.3537, 7.3546, 7.3546, 7.3541, 7.3542, 7.3537, 7.3536, 7.3545, 7.3544, 7.3542, 7.3552, 7.3549, 7.3558, 7.3554, 7.3551, 7.356, 7.3569, 7.358, 7.3577, 7.3573, 7.357, 7.3567, 7.3568, 7.3573, 7.3569, 7.3571, 7.3569, 7.3577, 7.3574, 7.3571, 7.3568, 7.3564, 7.3563, 7.3558, 7.3553, 7.3548, 7.3546, 7.3555, 7.3551, 7.3561, 7.3556, 7.3551, 7.3547, 7.3556, 7.3552, 7.3548, 7.3547, 7.3545, 7.3541, 7.3537, 7.3535, 7.3546, 7.3542, 7.3538, 7.3536, 7.3531, 7.3542, 7.3553, 7.3549, 7.3545, 7.3543, 7.3539, 7.3542, 7.3601, 7.3598, 7.3594, 7.3595, 7.3595, 7.3592, 7.3592, 7.3588, 7.3598, 7.3595, 7.359, 7.36, 7.3599, 7.3602, 7.364, 7.3625, 7.3611, 7.3597, 7.3593, 7.3589, 7.3588, 7.359, 7.3587, 7.3583, 7.3581, 7.359, 7.3601, 7.3597, 7.3592, 7.3589, 7.3586, 7.3581, 7.3579, 7.3575, 7.3572, 7.3569, 7.3566, 7.355, 7.3545, 7.3541, 7.3539, 7.3534, 7.3544, 7.3542, 7.354, 7.3535, 7.3532, 7.3532, 7.3534, 7.353, 7.354, 7.3541, 7.3542, 7.3542, 7.3541, 7.3544, 7.354, 7.3538, 7.3537, 7.3537, 7.3546, 7.3542, 7.3539, 7.3548, 7.3558, 7.3567, 7.3576, 7.3572, 7.3568, 7.3567, 7.3564, 7.3593, 7.359, 7.3587, 7.3583, 7.3579, 7.3578, 7.3586, 7.3582, 7.3577, 7.3586, 7.3581, 7.3589, 7.3585, 7.3581, 7.3577, 7.3573, 7.3575, 7.3572, 7.3572, 7.3582, 7.3577, 7.3572, 7.3571, 7.3569, 7.3564, 7.3559, 7.3555, 7.3553, 7.3552, 7.355, 7.3546, 7.3533, 7.3542, 7.3538, 7.3536, 7.3531, 7.3527, 7.3527, 7.3537, 7.3524, 7.3524, 7.3521, 7.353, 7.354, 7.3536, 7.3533, 7.3529, 7.3527, 7.3522, 7.3528, 7.3523, 7.3519, 7.3531, 7.3616, 7.3611, 7.361, 7.3606, 7.3601, 7.3599, 7.3596, 7.3592, 7.3587, 7.3584, 7.3579, 7.3574, 7.3581, 7.3592, 7.3587, 7.3598, 7.3595, 7.3591, 7.3589, 7.3587, 7.3583, 7.3578, 7.3575, 7.357, 7.3579, 7.3578, 7.3576, 7.3583, 7.358, 7.3577, 7.3595, 7.3607, 7.3602, 7.3598, 7.3607, 7.3605, 7.3601, 7.3597, 7.3596, 7.3592, 7.3589, 7.3589, 7.3589, 7.3585, 7.3583, 7.358, 7.358, 7.3575, 7.3571, 7.3595, 7.3593, 7.3589, 7.3585, 7.358, 7.3577, 7.3575, 7.357, 7.3566, 7.3561, 7.3569, 7.3566, 7.3563, 7.3574, 7.3572, 7.3567, 7.3563, 7.3562, 7.3558, 7.3554, 7.3566, 7.3564, 7.356, 7.3556, 7.3552, 7.3547, 7.355, 7.3549, 7.3545, 7.3553, 7.355, 7.3536, 7.3559, 7.3556, 7.3564, 7.3561, 7.3557, 7.3555, 7.3566, 7.3576, 7.3575, 7.3571, 7.357, 7.3581, 7.3579, 7.3576, 7.3574, 7.3573, 7.3569, 7.3567, 7.3563, 7.3614, 7.361, 7.3606, 7.3604, 7.3613, 7.3609, 7.3606, 7.3602, 7.3612, 7.3609, 7.3605, 7.3601, 7.3598, 7.3599, 7.3598, 7.3594, 7.3595, 7.3591, 7.3589, 7.3635, 7.3636, 7.3632, 7.363, 7.3628, 7.3625, 7.3624, 7.3646, 7.3645, 7.3644, 7.363, 7.3627, 7.3636, 7.3634, 7.362, 7.3605, 7.3602, 7.3601, 7.3601, 7.3598, 7.3608, 7.3609, 7.3618, 7.3614, 7.3615, 7.3615, 7.3612, 7.3598, 7.3597, 7.3593, 7.359, 7.3587, 7.3575, 7.3572, 7.3568, 7.3565, 7.3561, 7.3559, 7.3556, 7.3565, 7.3561, 7.3559, 7.3556, 7.3551, 7.3562, 7.3559, 7.3573, 7.3569, 7.3555, 7.3554, 7.3549, 7.3546, 7.3541, 7.3543, 7.3541, 7.354, 7.3548, 7.3547, 7.3551, 7.3567, 7.3578, 7.3575, 7.3571, 7.3579, 7.3578, 7.3574, 7.3582, 7.3578, 7.3574, 7.357, 7.3565, 7.355, 7.3545, 7.3545, 7.3543, 7.3543, 7.3552, 7.3548, 7.3544, 7.354, 7.355, 7.3547, 7.3543, 7.3539, 7.3535, 7.3533, 7.3529, 7.3537, 7.3535, 7.3531, 7.3532, 7.3534, 7.353, 7.3527, 7.3536, 7.3533, 7.3533, 7.3531, 7.3527, 7.3523, 7.3519, 7.3515, 7.3513, 7.3512, 7.3508, 7.3507, 7.3515, 7.3512, 7.3499, 7.3498, 7.3537, 7.3534, 7.3533, 7.353, 7.3528, 7.3526, 7.3536, 7.3546, 7.3542, 7.3539, 7.3537, 7.3533, 7.3541, 7.355, 7.3547, 7.3545, 7.354, 7.354, 7.3538, 7.3534, 7.3543, 7.3552, 7.356, 7.3563, 7.3565, 7.3567, 7.357, 7.357, 7.3581, 7.3591, 7.3591, 7.3587, 7.3586, 7.3582, 7.3579, 7.3576, 7.3574, 7.357, 7.3567, 7.3563, 7.3561, 7.356, 7.3569, 7.3565, 7.3563, 7.3559, 7.3555, 7.3554, 7.3552, 7.356, 7.3568, 7.3567, 7.3564, 7.3567, 7.3554, 7.355, 7.3549, 7.3571, 7.3568, 7.3583, 7.3581, 7.358, 7.3577, 7.3564, 7.356, 7.3557, 7.3553, 7.3561, 7.3557, 7.3553, 7.3551, 7.3547, 7.3554, 7.3549, 7.3556, 7.3553, 7.3549, 7.3547, 7.3543, 7.3541, 7.3541, 7.3549, 7.3546, 7.3555, 7.3564, 7.3561, 7.3559, 7.3557, 7.3553, 7.3561, 7.3559, 7.3568, 7.3565, 7.3564, 7.3572, 7.3571, 7.357, 7.3579, 7.3578, 7.3577, 7.3572, 7.3571, 7.3569, 7.3566, 7.3562, 7.3562, 7.3575, 7.3583, 7.3582, 7.3577, 7.3573, 7.3582, 7.359, 7.359, 7.359, 7.3598, 7.3649, 7.3645, 7.3653, 7.3661, 7.366, 7.3658, 7.3667, 7.3663, 7.3662, 7.3661, 7.3658, 7.3655, 7.3653, 7.3652, 7.3652, 7.3651, 7.365, 7.3658, 7.3646, 7.3646, 7.3642, 7.3639, 7.3635, 7.3636, 7.3633, 7.3632, 7.3631, 7.3627, 7.3623, 7.3621, 7.3616, 7.3623, 7.3623, 7.3621, 7.3607, 7.3605, 7.3601, 7.3609, 7.3618, 7.3627, 7.3623, 7.3621, 7.3608, 7.3617, 7.3614, 7.3637, 7.3634, 7.3633, 7.3641, 7.364, 7.3655, 7.3651, 7.3649, 7.3647, 7.3646, 7.3653, 7.3661, 7.3657, 7.3653, 7.3662, 7.3683, 7.3691, 7.3688, 7.3696, 7.3705, 7.3731, 7.373, 7.3728, 7.3725, 7.3729, 7.3726, 7.3725, 7.3733, 7.3732, 7.373, 7.373, 7.3728, 7.3727, 7.3723, 7.3723, 7.3721, 7.3717, 7.3714, 7.3713, 7.3709, 7.3718, 7.3716, 7.3713, 7.371, 7.371, 7.372, 7.3736, 7.3746, 7.3744, 7.374, 7.3737, 7.3735, 7.3731, 7.3728, 7.3726, 7.3723, 7.3718, 7.3726, 7.3723, 7.3731, 7.3726, 7.3726, 7.3726, 7.3733, 7.3728, 7.3724, 7.3723, 7.372, 7.3716, 7.3714, 7.3711, 7.3718, 7.3725, 7.3725, 7.3722, 7.3722, 7.3719, 7.3715, 7.3701, 7.3698, 7.3707, 7.3705, 7.3703, 7.3702, 7.3698, 7.3694, 7.3692, 7.3688, 7.3676, 7.3676, 7.3673, 7.3673, 7.3671, 7.3669, 7.3672, 7.3679, 7.3677, 7.3676, 7.3675, 7.3684, 7.3692, 7.3689, 7.3689, 7.3686, 7.3685, 7.3693, 7.369, 7.3686, 7.3682, 7.3679, 7.3676, 7.3674, 7.3672, 7.367, 7.3667, 7.3676, 7.3675, 7.3673, 7.3683, 7.369, 7.3687, 7.3687, 7.3686, 7.3675, 7.3675, 7.3684, 7.3692, 7.369, 7.3685, 7.3681, 7.3677, 7.3673, 7.367, 7.3678, 7.3686, 7.3685, 7.3681, 7.3677, 7.3676, 7.3672, 7.3668, 7.3664, 7.366, 7.3658, 7.3657, 7.3643, 7.3641, 7.3646, 7.3643, 7.3639, 7.3646, 7.3642, 7.3638, 7.3626, 7.3634, 7.363, 7.3639, 7.3636, 7.3633, 7.3629, 7.364, 7.3636, 7.3632, 7.3629, 7.3638, 7.3636, 7.3624, 7.3623, 7.3621, 7.3628, 7.3623, 7.3619, 7.3615, 7.3613, 7.3601, 7.3609, 7.3605, 7.3601, 7.3608, 7.3607, 7.3616, 7.3612, 7.3608, 7.3604, 7.3614, 7.3612, 7.3614, 7.3613, 7.3609, 7.3609, 7.3607, 7.3604, 7.3604, 7.3602, 7.3599, 7.3595, 7.3593, 7.36, 7.3596, 7.3594, 7.3594, 7.3581, 7.3581, 7.3597, 7.3606, 7.3606, 7.3603, 7.36, 7.3599, 7.3596, 7.3605, 7.3615, 7.3614, 7.3613, 7.3622, 7.3621, 7.3618, 7.3615, 7.3612, 7.3608, 7.3637, 7.3637, 7.3634, 7.3632, 7.3644, 7.364, 7.3637, 7.3636, 7.3633, 7.3631, 7.363, 7.3627, 7.3624, 7.3633, 7.3631, 7.3627, 7.3625, 7.3636, 7.3637, 7.3636, 7.3634, 7.363, 7.3628, 7.3624, 7.3621, 7.3628, 7.3624, 7.3633, 7.363, 7.364, 7.3636, 7.3636, 7.3635, 7.3633, 7.3631, 7.364, 7.3637, 7.3633, 7.3642, 7.3639, 7.3638, 7.3634, 7.3641, 7.3648, 7.3648, 7.3646, 7.3644, 7.3641, 7.363, 7.3659, 7.3668, 7.3681, 7.3679, 7.3675, 7.3673, 7.3669, 7.3665, 7.3662, 7.3658, 7.3658, 7.3659, 7.3656, 7.3653, 7.3652, 7.366, 7.366, 7.3658, 7.3655, 7.3664, 7.3662, 7.366, 7.3666, 7.3662, 7.367, 7.3666, 7.3674, 7.3671, 7.367, 7.3678, 7.3665, 7.3662, 7.3662, 7.366, 7.3656, 7.3699, 7.3717, 7.3713, 7.3709, 7.3705, 7.3703, 7.3701, 7.3699, 7.3697, 7.3684, 7.368, 7.3687, 7.3683, 7.3682, 7.3679, 7.3686, 7.3682, 7.3678, 7.3676, 7.3674, 7.3673, 7.3672, 7.3669, 7.3677, 7.3676, 7.3675, 7.3684, 7.3692, 7.369, 7.3689, 7.3689, 7.3686, 7.3685, 7.3686, 7.3684, 7.3681, 7.3677, 7.3673, 7.3669, 7.3667, 7.3663, 7.3673, 7.367, 7.3666, 7.3664, 7.366, 7.3656, 7.3652, 7.3648, 7.3663, 7.3697, 7.3715, 7.3722, 7.372, 7.3719, 7.3715, 7.3716, 7.3735, 7.3753, 7.376, 7.3757, 7.3747, 7.3743, 7.3751, 7.3759, 7.3769, 7.3765, 7.3815, 7.3823, 7.382, 7.3817, 7.3814, 7.3811, 7.381, 7.3817, 7.3813, 7.382, 7.3818, 7.3817, 7.3814, 7.3822, 7.3821, 7.3828, 7.3826, 7.3822, 7.3819, 7.3818, 7.3828, 7.3845, 7.3842, 7.3849, 7.3846, 7.3843, 7.3841, 7.3837, 7.3833, 7.383, 7.3838, 7.3844, 7.3852, 7.386, 7.3857, 7.3853, 7.3849, 7.3856, 7.3853, 7.3861, 7.3858, 7.3854, 7.3868, 7.3871, 7.3868, 7.3866, 7.3865, 7.3861, 7.3857, 7.3864, 7.3868, 7.3855, 7.3851, 7.3858, 7.3855, 7.3852, 7.3859, 7.3855, 7.3862, 7.3858, 7.3855, 7.3852, 7.385, 7.3847, 7.3847, 7.3847, 7.3836, 7.3832, 7.3841, 7.3839, 7.3843, 7.384, 7.3847, 7.3844, 7.3845, 7.3841, 7.3838, 7.3835, 7.3841, 7.3849, 7.3847, 7.3844, 7.3852, 7.3853, 7.3849, 7.3845, 7.3844, 7.3843, 7.385, 7.3847, 7.3844, 7.3842, 7.3848, 7.3845, 7.3842, 7.384, 7.3851, 7.3847, 7.3844, 7.384, 7.3842, 7.384, 7.3848, 7.3846, 7.3842, 7.3838, 7.3842, 7.3845, 7.3841, 7.3838, 7.3835, 7.3824, 7.3821, 7.3827, 7.3834, 7.383, 7.3829, 7.3838, 7.3836, 7.3843, 7.384, 7.3846, 7.3844, 7.3842, 7.3838, 7.3846, 7.3844, 7.3843, 7.384, 7.3837, 7.3835, 7.3836, 7.3834, 7.383, 7.3829, 7.3831, 7.3838, 7.3839, 7.3835, 7.3843, 7.3851, 7.3847, 7.3846, 7.3844, 7.3843, 7.3841, 7.384, 7.3838, 7.3846, 7.3842, 7.3841, 7.3848, 7.3844, 7.3842, 7.3842, 7.3838, 7.3835, 7.3831, 7.3828, 7.3825, 7.3833, 7.383, 7.3827, 7.3823, 7.3819, 7.3817, 7.3815, 7.3822, 7.3821, 7.3818, 7.3817, 7.3815, 7.3814, 7.3812, 7.3817, 7.3815, 7.3812, 7.381, 7.3809, 7.3818, 7.3815, 7.3812, 7.3809, 7.3817, 7.382, 7.3819, 7.3816, 7.3815, 7.3813, 7.3809, 7.3809, 7.3818, 7.3814, 7.3813, 7.3825, 7.3822, 7.383, 7.3827, 7.3823, 7.3831, 7.3828, 7.3825, 7.3821, 7.3818, 7.3815, 7.3813, 7.381, 7.3809, 7.3827, 7.3824, 7.3814, 7.3824, 7.3821, 7.3822, 7.3823, 7.382, 7.3828, 7.3837, 7.3835, 7.3844, 7.3845, 7.3841, 7.3838, 7.3835, 7.3832, 7.383, 7.3826, 7.3826, 7.3825, 7.3824, 7.3824, 7.3831, 7.3829, 7.3836, 7.3833, 7.3842, 7.3839, 7.3835, 7.3842, 7.384, 7.3837, 7.3834, 7.3831, 7.3828, 7.3828, 7.3835, 7.3832, 7.3829, 7.3826, 7.3825, 7.3823, 7.3819, 7.3826, 7.3824, 7.3822, 7.383, 7.3828, 7.3827, 7.3826, 7.3822, 7.3819, 7.3828, 7.3827, 7.3827, 7.3827, 7.3824, 7.382, 7.3818, 7.3815, 7.3811, 7.3799, 7.3789, 7.3804, 7.3801, 7.3807, 7.3804, 7.3806, 7.3797, 7.3794, 7.3791, 7.3791, 7.3787, 7.3786, 7.3783, 7.3781, 7.3788, 7.3785, 7.3783, 7.3782, 7.3779, 7.3788, 7.3785, 7.3783, 7.378, 7.3777, 7.3774, 7.377, 7.3767, 7.3766, 7.3763, 7.376, 7.3757, 7.3764, 7.3797, 7.3794, 7.3793, 7.3801, 7.3797, 7.3793, 7.3807, 7.3803, 7.3799, 7.3803, 7.38, 7.3797, 7.3804, 7.3801, 7.38, 7.3808, 7.3825, 7.3822, 7.3828, 7.3827, 7.3823, 7.3819, 7.3816, 7.3814, 7.3812, 7.382, 7.3828, 7.3824, 7.3821, 7.382, 7.3827, 7.3815, 7.3821, 7.3818, 7.3819, 7.3825, 7.3824, 7.3822, 7.3821, 7.3817, 7.3814, 7.3821, 7.3822, 7.3819, 7.3817, 7.3814, 7.3811, 7.3808, 7.3805, 7.3804, 7.38, 7.3789, 7.3785, 7.3781, 7.3777, 7.3774, 7.3772, 7.3769, 7.3766, 7.3775, 7.3765, 7.3753, 7.3743, 7.3748, 7.3756, 7.3744, 7.3742, 7.374, 7.3747, 7.3743, 7.3742, 7.3742, 7.3739, 7.3738, 7.3736, 7.3743, 7.3751, 7.375, 7.3748, 7.3744, 7.3742, 7.3758, 7.3758, 7.3754, 7.3752, 7.3749, 7.3747, 7.3753, 7.3786, 7.3782, 7.3778, 7.3776, 7.3773, 7.3771, 7.3768, 7.3767, 7.3764, 7.3761, 7.3761, 7.3759, 7.3765, 7.3761, 7.3758, 7.3755, 7.3751, 7.3748, 7.3755, 7.376, 7.3757, 7.3756, 7.3753, 7.376, 7.3758, 7.3758, 7.3754, 7.3753, 7.375, 7.3756, 7.3752, 7.3759, 7.3805, 7.3806, 7.3805, 7.3802, 7.38, 7.3799, 7.3797, 7.3803, 7.3802, 7.3801, 7.3797, 7.3798, 7.3807, 7.3804, 7.38, 7.3806, 7.3805, 7.3803, 7.38, 7.3796, 7.3793, 7.3799, 7.3796, 7.3803, 7.3801, 7.3801, 7.38, 7.3797, 7.3795, 7.3794, 7.3791, 7.3798, 7.3794, 7.3793, 7.3791, 7.3801, 7.3808, 7.3805, 7.3802, 7.38, 7.3797, 7.3795, 7.3792, 7.3789, 7.3777, 7.3784, 7.379, 7.3787, 7.3785, 7.3801, 7.3791, 7.3789, 7.3786, 7.3784, 7.3782, 7.3772, 7.3779, 7.3786, 7.379, 7.3797, 7.3813, 7.3811, 7.3809, 7.3806, 7.3803, 7.38, 7.3797, 7.3794, 7.3794, 7.3792, 7.3789, 7.3785, 7.3781, 7.3798, 7.3796, 7.3792, 7.3789, 7.3779, 7.3779, 7.3776, 7.3766, 7.3755, 7.3762, 7.3762, 7.3759, 7.3756, 7.3765, 7.3767, 7.3756, 7.3753, 7.3749, 7.3746, 7.3745, 7.3742, 7.3739, 7.3738, 7.3735, 7.3731, 7.3731, 7.3728, 7.3729, 7.3727, 7.3723, 7.3723, 7.372, 7.3717, 7.3724, 7.3721, 7.3718, 7.3716, 7.3713, 7.3713, 7.371, 7.3717, 7.3714, 7.3712, 7.3709, 7.3705, 7.3704, 7.3703, 7.3696, 7.3696, 7.3693, 7.369, 7.3687, 7.3684, 7.369, 7.3687, 7.3694, 7.369, 7.369, 7.3686, 7.3685, 7.3683, 7.3681, 7.369, 7.3686, 7.3692, 7.3695, 7.3692, 7.3689, 7.3685, 7.3694, 7.369, 7.3679, 7.3676, 7.3693, 7.3689, 7.3685, 7.3684, 7.3682, 7.3678, 7.3684, 7.368, 7.368, 7.3676, 7.3683, 7.3689, 7.3687, 7.3684, 7.3683, 7.3682, 7.3683, 7.3691, 7.3681, 7.3671, 7.3669, 7.3671, 7.3668, 7.3665, 7.3662, 7.3661, 7.365, 7.3649, 7.3649, 7.3646, 7.3644, 7.364, 7.3657, 7.3663, 7.3708, 7.3706, 7.3703, 7.3706, 7.3712, 7.3719, 7.3717, 7.3714, 7.3711, 7.3701, 7.3698, 7.3695, 7.3692, 7.369, 7.3693, 7.3692, 7.3688, 7.3686, 7.3684, 7.3681, 7.3677, 7.3685, 7.3683, 7.3682, 7.3679, 7.3676, 7.3673, 7.3674, 7.3671, 7.367, 7.3669, 7.3666, 7.3672, 7.3678, 7.3677, 7.3684, 7.368, 7.3676, 7.3674, 7.368, 7.3686, 7.3682, 7.3679, 7.3676, 7.3683, 7.368, 7.3678, 7.3674, 7.3671, 7.3672, 7.3678, 7.3677, 7.3683, 7.37, 7.3689, 7.3696, 7.3693, 7.3699, 7.37, 7.3699, 7.3698, 7.3696, 7.3695, 7.3702, 7.37, 7.3697, 7.3703, 7.3701, 7.3698, 7.3699, 7.3697, 7.3694, 7.37, 7.3697, 7.3704, 7.37, 7.3699, 7.3696, 7.3703, 7.371, 7.3707, 7.3714, 7.3711, 7.3708, 7.3705, 7.3704, 7.3705, 7.3701, 7.3698, 7.3696, 7.3697, 7.3694, 7.3694, 7.3701, 7.3698, 7.37, 7.3698, 7.3695, 7.3713, 7.3712, 7.3719, 7.3725, 7.3728, 7.3724, 7.3722, 7.3719, 7.3718, 7.3716, 7.3713, 7.3711, 7.3717, 7.3723, 7.3721, 7.3719, 7.3718, 7.3716, 7.3713, 7.3711, 7.3708, 7.3714, 7.3712, 7.3709, 7.3707, 7.3713, 7.371, 7.3708, 7.3707, 7.3704, 7.3711, 7.3708, 7.3704, 7.3702, 7.3708, 7.3706, 7.3703, 7.3699, 7.3705, 7.3702, 7.3717, 7.3727, 7.3725, 7.3733, 7.3739, 7.3744, 7.3743, 7.374, 7.3739, 7.3738, 7.3734, 7.3741, 7.3737, 7.3754, 7.3752, 7.3751, 7.3777, 7.3775, 7.3774, 7.3773, 7.3808, 7.3805, 7.3803, 7.3799, 7.3796, 7.3793, 7.3791, 7.3789, 7.3787, 7.3784, 7.3782, 7.378, 7.3777, 7.3774, 7.378, 7.3778, 7.3777, 7.3774, 7.3771, 7.3768, 7.3764, 7.377, 7.3768, 7.3767, 7.3773, 7.3772, 7.3778, 7.3778, 7.3776, 7.3773, 7.3771, 7.377, 7.3767, 7.3766, 7.3774, 7.3771, 7.377, 7.3777, 7.3784, 7.3783, 7.3789, 7.3791, 7.3788, 7.3795, 7.3793, 7.3791, 7.3788, 7.3785, 7.3784, 7.3781, 7.3778, 7.3794, 7.3803, 7.3821, 7.3831, 7.3831, 7.3827, 7.3824, 7.3831, 7.3829, 7.3834, 7.384, 7.3847, 7.3853, 7.3851, 7.3851, 7.3848, 7.3848, 7.3849, 7.3855, 7.3852, 7.3859, 7.3858, 7.3855, 7.3853, 7.3852, 7.385, 7.3848, 7.3845, 7.386, 7.3858, 7.3865, 7.3862, 7.3862, 7.3859, 7.3866, 7.3865, 7.3862, 7.3868, 7.3865, 7.3862, 7.386, 7.3856, 7.3854, 7.3853, 7.3853, 7.385, 7.3847, 7.3844, 7.3851, 7.3857, 7.3863, 7.386, 7.3861, 7.3868, 7.3867, 7.3866, 7.3863, 7.386, 7.3866, 7.3873, 7.3872, 7.3869, 7.3866, 7.3863, 7.3862, 7.3861, 7.3861, 7.386, 7.3858, 7.3856, 7.3853, 7.3851, 7.385, 7.3848, 7.3846, 7.3842, 7.3838, 7.3843, 7.3839, 7.3836, 7.3834, 7.3839, 7.3835, 7.3832, 7.3847, 7.3846, 7.3843, 7.3851, 7.3859, 7.3856, 7.3854, 7.3851, 7.385, 7.3848, 7.3847, 7.3854, 7.3851, 7.3848, 7.3846, 7.3853, 7.3852, 7.385, 7.3849, 7.3847, 7.3845, 7.3844, 7.3843, 7.3849, 7.3846, 7.3845, 7.3841, 7.3838, 7.3835, 7.3833, 7.3831, 7.383, 7.3827, 7.3833, 7.3829, 7.3826, 7.3832, 7.3829, 7.3834, 7.3831, 7.3828, 7.3824, 7.3824, 7.3821, 7.3821, 7.3819, 7.3829, 7.3826, 7.3836, 7.3836, 7.3843, 7.3849, 7.3855, 7.3853, 7.385, 7.3856, 7.3862, 7.3859, 7.3856, 7.3872, 7.3879, 7.3878, 7.3876, 7.3873, 7.387, 7.387, 7.3869, 7.3866, 7.3863, 7.3872, 7.3871, 7.3871, 7.3877, 7.3877, 7.3875, 7.3873, 7.3871, 7.3868, 7.3867, 7.3864, 7.387, 7.3867, 7.3864, 7.3861, 7.386, 7.3857, 7.3862, 7.3858, 7.3855, 7.3853, 7.385, 7.3849, 7.3849, 7.3852, 7.3849, 7.3847, 7.3844, 7.3851, 7.3851, 7.385, 7.3848, 7.3848, 7.3845, 7.3852, 7.3849, 7.3846, 7.3843, 7.3841, 7.3842, 7.384, 7.3839, 7.3836, 7.3842, 7.384, 7.3838, 7.3837, 7.384, 7.3839, 7.3836, 7.3834, 7.3832, 7.3829, 7.3827, 7.3823, 7.3822, 7.3819, 7.3817, 7.3815, 7.3822, 7.3822, 7.382, 7.3817, 7.3815, 7.3812, 7.3811, 7.3817, 7.3824, 7.3823, 7.3825, 7.3831, 7.3828, 7.3824, 7.3822, 7.382, 7.3854, 7.3851, 7.3848, 7.3847, 7.3846, 7.3843, 7.3849, 7.3846, 7.3843, 7.384, 7.3836, 7.3833, 7.3839, 7.3845, 7.3842, 7.3839, 7.3838, 7.3835, 7.3832, 7.3828, 7.3826, 7.3832, 7.383, 7.3827, 7.3833, 7.3832, 7.383, 7.3829, 7.3826, 7.3823, 7.382, 7.3817, 7.3815, 7.3812, 7.381, 7.3807, 7.3806, 7.3803, 7.38, 7.38, 7.3797, 7.3794, 7.3792, 7.3792, 7.3789, 7.3785, 7.3791, 7.3789, 7.3786, 7.3784, 7.3783, 7.3781, 7.3778, 7.3784, 7.378, 7.378, 7.3787, 7.3793, 7.3799, 7.3796, 7.3793, 7.379, 7.3789, 7.3787, 7.3784, 7.3782, 7.3779, 7.3815, 7.3812, 7.3809, 7.3806, 7.3803, 7.3808, 7.3805, 7.3803, 7.38, 7.3797, 7.3803, 7.3811, 7.3817, 7.3814, 7.3813, 7.3819, 7.3817, 7.3814, 7.3813, 7.3813, 7.3811, 7.381, 7.3819, 7.3838, 7.3836, 7.3834, 7.3841, 7.384, 7.3838, 7.3836, 7.3834, 7.3833, 7.3833, 7.3835, 7.3835, 7.3832, 7.3839, 7.3837, 7.3837, 7.3835, 7.384, 7.3846, 7.3843, 7.385, 7.3846, 7.3845, 7.3842, 7.3839, 7.3845, 7.385, 7.3856, 7.3862, 7.3859, 7.3862], '192.168.122.111': [12.8591, 9.6321, 8.4709, 7.7046, 7.2502, 7.1512, 7.1076, 6.9708, 6.8312, 6.7373, 6.6969, 6.5837, 6.5682, 6.493, 6.8074, 6.7252, 6.6819, 6.6436, 6.6111, 6.5545, 6.5628, 6.5383, 6.5481, 6.4984, 6.4812, 6.4362, 6.599, 6.8248, 6.97, 6.9293, 6.9054, 6.9004, 6.8544, 6.9723, 7.0869, 7.0812, 7.0523, 7.0334, 7.0091, 6.9806, 6.9656, 6.9545, 6.9349, 6.9103, 6.8951, 6.8632, 6.8416, 6.8207, 6.8142, 6.8069, 6.789, 6.7633, 6.8421, 6.8299, 6.8255, 6.803, 6.791, 6.8685, 6.843, 6.8185, 6.7967, 6.796, 6.7823, 6.7835, 6.7681, 6.7627, 6.7439, 6.7292, 6.7175, 6.6975, 6.6787, 6.7396, 6.7224, 6.7193, 6.7063, 6.6936, 6.6828, 6.7344, 6.7191, 6.7138, 6.7083, 6.7693, 6.7571, 6.7644, 6.7512, 6.7514, 6.7396, 6.7289, 6.7183, 6.7119, 6.7025, 6.6876, 6.7355, 6.7202, 6.7055, 6.6964, 6.6816, 6.7248, 6.765, 6.7583, 6.7454, 6.7337, 6.7212, 6.7189, 6.7137, 6.7006, 6.6974, 6.687, 6.6931, 6.8695, 6.86, 6.846, 6.838, 6.8328, 6.8252, 6.9776, 6.9731, 7.0441, 7.0751, 7.0653, 7.0549, 7.0428, 7.0287, 7.0167, 7.0508, 7.0382, 7.0702, 7.0592, 7.0488, 7.0412, 7.0284, 7.0165, 7.004, 6.9969, 6.9894, 6.9831, 6.9446, 6.972, 6.9654, 6.9605, 6.9574, 6.9692, 6.9656, 6.966600000000001, 6.967600000000001, 6.968600000000001, 6.9629, 6.9598, 6.9519, 6.9457, 6.9367, 6.9666, 6.9949, 6.9908, 7.0207, 7.0121, 7.0408, 7.0395, 7.033, 7.0321, 7.0639, 7.0601, 7.0548, 7.0282, 7.034, 7.0275, 7.0828, 7.1131, 7.1113, 7.1364, 7.1281, 7.125, 7.1182, 7.18, 7.2003, 7.2202, 7.215, 7.2129, 7.2094, 7.2324, 7.2277, 7.2201, 7.243, 7.2378, 7.2271, 7.2194, 7.2148, 7.214, 7.2036, 7.1998, 7.1897, 7.182, 7.2023, 7.1951, 7.1958, 7.1874, 7.1827, 7.1797, 7.1732, 7.1657, 7.1866, 7.1834, 7.2028, 7.2211, 7.2132, 7.2076, 7.2022, 7.2243, 7.216, 7.2357, 7.2285, 7.2239, 7.2229, 7.216, 7.2335, 7.2504, 7.2674, 7.2847, 7.3012, 7.2966, 7.2883, 7.2818, 7.3249, 7.317, 7.3314, 7.3478, 7.3426, 7.3576, 7.3581, 7.3741, 7.3653, 7.4306, 7.4545, 7.4911, 7.5058, 7.4964, 7.4883, 7.5028, 7.5202, 7.4958, 7.4907, 7.4866, 7.5022, 7.4938, 7.4899, 7.5018, 7.4948, 7.49, 7.5033, 7.497, 7.4919, 7.4879, 7.483, 7.4783, 7.4738, 7.469, 7.482, 7.4758, 7.4719, 7.4639, 7.4802, 7.4747, 7.4906, 7.5064, 7.5019, 7.5171, 7.5136, 7.5103, 7.5074, 7.501, 7.4947, 7.5068, 7.5013, 7.5173, 7.5333, 7.5269, 7.5194, 7.5116, 7.5254, 7.5194, 7.5132, 7.526, 7.5257, 7.5178, 7.5164, 7.5106, 7.5047, 7.4984, 7.492, 7.4842, 7.4787, 7.4751, 7.4693, 7.4684, 7.4629, 7.4589, 7.456, 7.4903, 7.4845, 7.4774, 7.471, 7.4642, 7.4575, 7.4504, 7.4441, 7.4391, 7.4341, 7.4274, 7.4229, 7.4364, 7.4349, 7.4302, 7.4254, 7.4203, 7.4135, 7.4254, 7.4206, 7.4337, 7.4316, 7.429, 7.4405, 7.4517, 7.4636, 7.4573, 7.4528, 7.465, 7.4617, 7.4606, 7.4714, 7.465, 7.4622, 7.4722, 7.4679, 7.466, 7.4604, 7.4546, 7.4493, 7.4434, 7.4496, 7.4449, 7.4574, 7.4517, 7.4473, 7.4296, 7.4408, 7.4349, 7.4298, 7.4256, 7.4343, 7.429, 7.4231, 7.4175, 7.4121, 7.4062, 7.4024, 7.3968, 7.393, 7.3909, 7.3886, 7.3863, 7.3974, 7.3939, 7.3901, 7.3876, 7.3835, 7.3819, 7.379, 7.3776, 7.3733, 7.3709, 7.367, 7.3825, 7.393, 7.3879, 7.3978, 7.3973, 7.3942, 7.392, 7.3872, 7.3826, 7.384, 7.3823, 7.392, 7.389, 7.3889, 7.3989, 7.3952, 7.3912, 7.3857, 7.3807, 7.3755, 7.3863, 7.381, 7.3797, 7.3765, 7.3717, 7.3833, 7.3801, 7.3888, 7.3852, 7.3799, 7.3774, 7.3725, 7.3677, 7.3629, 7.3604, 7.3562, 7.3538, 7.3505, 7.3528, 7.3481, 7.3449, 7.3405, 7.3494, 7.3455, 7.3431, 7.3757, 7.3716, 7.3684, 7.3682, 7.378, 7.3735, 7.3718, 7.3674, 7.3633, 7.3588, 7.3661, 7.363, 7.3582, 7.3671, 7.3766, 7.3757, 7.3716, 7.3809, 7.3776, 7.373, 7.3715, 7.3675, 7.365, 7.3623, 7.3604, 7.3571, 7.3528, 7.3608, 7.3577, 7.3533, 7.349, 7.345, 7.3408, 7.3377, 7.3402, 7.3382, 7.3365, 7.3325, 7.3291, 7.3368, 7.3445, 7.3405, 7.3367, 7.3335, 7.3289, 7.3247, 7.3324, 7.3516, 7.3484, 7.3456, 7.3415, 7.3506, 7.3531, 7.3726, 7.3695, 7.3675, 7.3641, 7.3622, 7.3579, 7.3549, 7.3743, 7.3715, 7.3797, 7.3761, 7.3829, 7.3786, 7.3865, 7.3845, 7.3812, 7.3794, 7.3754, 7.3741, 7.3812, 7.3769, 7.3734, 7.3727, 7.3693, 7.3763, 7.3738, 7.3727, 7.3704, 7.3675, 7.366, 7.3648, 7.3725, 7.3808, 7.377, 7.385, 7.382, 7.3792, 7.3762, 7.3754, 7.3727, 7.3694, 7.3672, 7.3764, 7.3856, 7.383, 7.38, 7.3876, 7.386, 7.385, 7.3815, 7.3824, 7.3896, 7.3882, 7.3854, 7.3818, 7.3891, 7.3869, 7.383, 7.379, 7.3801, 7.377, 7.3741, 7.3808, 7.3779, 7.3754, 7.374, 7.3737, 7.3745, 7.3708, 7.3672, 7.3653, 7.3618, 7.3682, 7.3656, 7.3625, 7.3588, 7.3553, 7.3539, 7.3506, 7.348, 7.3457, 7.3533, 7.3497, 7.3485, 7.3455, 7.3425, 7.3495, 7.3462, 7.3428, 7.3392, 7.3381, 7.335, 7.3602, 7.3569, 7.3551, 7.361, 7.3587, 7.3551, 7.379, 7.3768, 7.3732, 7.3705, 7.3759, 7.3742, 7.3727, 7.3746, 7.3727, 7.3702, 7.3681, 7.3659, 7.3726, 7.3706, 7.3682, 7.3741, 7.3707, 7.3695, 7.3752, 7.3722, 7.3703, 7.3681, 7.3644, 7.3616, 7.3595, 7.3576, 7.3546, 7.3525, 7.3498, 7.3469, 7.3435, 7.3516, 7.3487, 7.346, 7.3525, 7.3587, 7.3651, 7.3632, 7.3606, 7.3576, 7.3576, 7.3549, 7.3963, 7.3942, 7.3911, 7.3888, 7.3857, 7.3834, 7.38, 7.3853, 7.3825, 7.4156, 7.4207, 7.4183, 7.4149, 7.4198, 7.4176, 7.4226, 7.4135, 7.4042, 7.4021, 7.3991, 7.396, 7.3934, 7.3916, 7.3887, 7.3862, 7.384, 7.3812, 7.3784, 7.384, 7.3806, 7.3783, 7.3753, 7.3732, 7.3703, 7.3674, 7.3651, 7.3635, 7.3608, 7.3662, 7.3647, 7.3632, 7.3687, 7.3738, 7.3721, 7.3704, 7.3676, 7.3661, 7.3645, 7.3619, 7.3671, 7.3645, 7.3629, 7.36, 7.3653, 7.3628, 7.3859, 7.3833, 7.3736, 7.3829, 7.3766, 7.3764, 7.3737, 7.3717, 7.3691, 7.3667, 7.3641, 7.3613, 7.3584, 7.3577, 7.3633, 7.3628, 7.368, 7.3658, 7.3714, 7.3701, 7.3687, 7.3672, 7.3642, 7.3627, 7.3615, 7.3622, 7.3596, 7.3568, 7.3551, 7.355, 7.353, 7.3503, 7.3502, 7.3483, 7.3546, 7.3538, 7.3514, 7.357, 7.3555, 7.3534, 7.3507, 7.3562, 7.3565, 7.3619, 7.3595, 7.3575, 7.3623, 7.3614, 7.3617, 7.3601, 7.3654, 7.3713, 7.3721, 7.3745, 7.3733, 7.3707, 7.3684, 7.366, 7.3638, 7.3616, 7.359, 7.3564, 7.3546, 7.3536, 7.3583, 7.3567, 7.355, 7.3534, 7.351, 7.3492, 7.3533, 7.3531, 7.3509, 7.3429, 7.3403, 7.3457, 7.3443, 7.3353, 7.3401, 7.3383, 7.3361, 7.335, 7.333, 7.3309, 7.3361, 7.3347, 7.3408, 7.3387, 7.3369, 7.3354, 7.3332, 7.3313, 7.3293, 7.3274, 7.3339, 7.3318, 7.33, 7.3351, 7.3394, 7.3372, 7.3345, 7.3401, 7.3378, 7.3378, 7.3362, 7.3346, 7.3323, 7.3444, 7.3497, 7.3582, 7.3562, 7.3485, 7.354, 7.3529, 7.351, 7.3485, 7.3528, 7.3575, 7.3626, 7.3609, 7.3586, 7.3564, 7.3609, 7.3547, 7.353, 7.3512, 7.3489, 7.3483, 7.3474, 7.3453, 7.343, 7.3426, 7.3366, 7.3353, 7.3348, 7.3389, 7.3368, 7.3357, 7.3336, 7.3381, 7.3363, 7.3346, 7.3324, 7.3299, 7.3277, 7.3258, 7.3256, 7.3236, 7.3281, 7.3259, 7.3239, 7.3215, 7.3203, 7.318, 7.3156, 7.3085, 7.3063, 7.3041, 7.3021, 7.3067, 7.3044, 7.3027, 7.3004, 7.2983, 7.3029, 7.3017, 7.3009, 7.2994, 7.2992, 7.297, 7.2953, 7.2997, 7.2978, 7.2957, 7.2935, 7.2914, 7.2894, 7.288, 7.2925, 7.2904, 7.2948, 7.2934, 7.2919, 7.2902, 7.2893, 7.2881, 7.2925, 7.2919, 7.2898, 7.2945, 7.2926, 7.2907, 7.2888, 7.2934, 7.2918, 7.2899, 7.2882, 7.2861, 7.2841, 7.2828, 7.2815, 7.28, 7.2782, 7.2765, 7.2747, 7.2792, 7.2787, 7.2775, 7.2766, 7.2759, 7.2753, 7.2746, 7.2731, 7.2712, 7.2691, 7.2672, 7.2657, 7.2637, 7.2563, 7.2548, 7.2535, 7.2518, 7.2503, 7.2483, 7.2471, 7.2452, 7.2431, 7.2416, 7.2401, 7.2442, 7.2423, 7.2411, 7.2394, 7.2378, 7.2368, 7.2349, 7.2394, 7.2377, 7.236, 7.2366, 7.2407, 7.2395, 7.2378, 7.236, 7.2349, 7.2334, 7.2315, 7.2299, 7.2344, 7.2347, 7.2358, 7.2345, 7.2329, 7.232, 7.2365, 7.2354, 7.2367, 7.2408, 7.2459, 7.2444, 7.2425, 7.2414, 7.2406, 7.2399, 7.2389, 7.2368, 7.2363, 7.2346, 7.2331, 7.2331, 7.2321, 7.2308, 7.2289, 7.227, 7.226, 7.2302, 7.2286, 7.2275, 7.2257, 7.2242, 7.2224, 7.2214, 7.2199, 7.2234, 7.2283, 7.2273, 7.226, 7.2249, 7.2246, 7.224, 7.2226, 7.2271, 7.2257, 7.2244, 7.2294, 7.2278, 7.2329, 7.2318, 7.2307, 7.2399, 7.2386, 7.2384, 7.237, 7.2352, 7.234, 7.2387, 7.2369, 7.2354, 7.2342, 7.2384, 7.2421, 7.2405, 7.2623, 7.2604, 7.2585, 7.257, 7.255, 7.2544, 7.2526, 7.2514, 7.2498, 7.2487, 7.2499, 7.2483, 7.2607, 7.2594, 7.2587, 7.2594, 7.2588, 7.2582, 7.2581, 7.2573, 7.2563, 7.2564, 7.2553, 7.2594, 7.2578, 7.2563, 7.2557, 7.2544, 7.2526, 7.2507, 7.2491, 7.2479, 7.2518, 7.2501, 7.2541, 7.2524, 7.2508, 7.2495, 7.2493, 7.2486, 7.2529, 7.2511, 7.2502, 7.2483, 7.2473, 7.2418, 7.2462, 7.2452, 7.2436, 7.2417, 7.24, 7.2382, 7.2366, 7.235, 7.2388, 7.2375, 7.2359, 7.2344, 7.2333, 7.2322, 7.2307, 7.2289, 7.2282, 7.2269, 7.2259, 7.2296, 7.2278, 7.2319, 7.2303, 7.2337, 7.2328, 7.2363, 7.2401, 7.2387, 7.237, 7.2371, 7.2359, 7.2451, 7.2439, 7.2422, 7.2408, 7.2392, 7.2378, 7.236, 7.2347, 7.233, 7.2312, 7.2334, 7.2327, 7.2314, 7.23, 7.2341, 7.2379, 7.2419, 7.2456, 7.2447, 7.244, 7.2439, 7.2425, 7.2411, 7.2394, 7.2386, 7.2371, 7.2366, 7.2358, 7.2345, 7.2382, 7.2417, 7.2405, 7.2387, 7.2381, 7.2365, 7.2348, 7.2334, 7.2369, 7.2406, 7.2391, 7.239, 7.2391, 7.2377, 7.241, 7.2392, 7.2387, 7.2373, 7.2358, 7.235, 7.2333, 7.2365, 7.2349, 7.2336, 7.2319, 7.2302, 7.2251, 7.2239, 7.2227, 7.2211, 7.2196, 7.2184, 7.2216, 7.2199, 7.2184, 7.2168, 7.2151, 7.2134, 7.2168, 7.2198, 7.2181, 7.225, 7.2282, 7.227, 7.2256, 7.2332, 7.2324, 7.236, 7.2353, 7.2386, 7.2369, 7.2356, 7.2387, 7.2374, 7.2416, 7.2503, 7.2536, 7.248, 7.247, 7.2454, 7.2438, 7.2422, 7.2408, 7.244, 7.2423, 7.2407, 7.2441, 7.2426, 7.2419, 7.241, 7.2398, 7.2386, 7.2374, 7.2362, 7.2348, 7.2334, 7.233, 7.2371, 7.236, 7.2353, 7.2339, 7.2326, 7.2309, 7.2341, 7.2374, 7.2361, 7.2355, 7.2391, 7.2393, 7.2426, 7.241, 7.2459, 7.2443, 7.2521, 7.251, 7.2542, 7.2531, 7.252, 7.2503, 7.2488, 7.2478, 7.251, 7.2543, 7.2528, 7.2511, 7.25, 7.249, 7.2479, 7.2605, 7.2595, 7.2583, 7.2614, 7.2603, 7.2586, 7.2615, 7.26, 7.2591, 7.2574, 7.2558, 7.2546, 7.253, 7.2514, 7.2501, 7.2491, 7.252, 7.2504, 7.2492, 7.2485, 7.2472, 7.2467, 7.2454, 7.2444, 7.2433, 7.2423, 7.2412, 7.2444, 7.2473, 7.2505, 7.2488, 7.248, 7.2465, 7.245, 7.245, 7.2483, 7.2477, 7.2471, 7.246, 7.2444, 7.2472, 7.2458, 7.2445, 7.2437, 7.2428, 7.2506, 7.2496, 7.248, 7.2473, 7.2459, 7.245, 7.248, 7.2467, 7.2452, 7.2444, 7.2448, 7.2432, 7.2436, 7.2424, 7.2413, 7.2405, 7.2403, 7.2399, 7.2383, 7.2368, 7.2357, 7.2349, 7.2337, 7.2336, 7.2365, 7.2395, 7.2344, 7.2333, 7.2329, 7.2324, 7.231, 7.2344, 7.2342, 7.2328, 7.2331, 7.2329, 7.2318, 7.2321, 7.2317, 7.2305, 7.2297, 7.2284, 7.227, 7.2261, 7.2295, 7.2287, 7.2275, 7.2261, 7.2254, 7.224, 7.2274, 7.2265, 7.2253, 7.2281, 7.2267, 7.2296, 7.2284, 7.2271, 7.2267, 7.2252, 7.2238, 7.2231, 7.2223, 7.2254, 7.228, 7.2271, 7.2297, 7.2324, 7.2318, 7.2308, 7.234, 7.2331, 7.2331, 7.2316, 7.2348, 7.2337, 7.2326, 7.2313, 7.2303, 7.2289, 7.2278, 7.231, 7.2345, 7.2332, 7.2336, 7.2371, 7.2331, 7.2317, 7.2309, 7.2342, 7.2331, 7.2373, 7.2371, 7.2366, 7.2363, 7.2351, 7.2347, 7.2333, 7.2321, 7.2307, 7.2295, 7.2285, 7.2277, 7.2308, 7.2296, 7.2315, 7.2303, 7.2289, 7.2275, 7.2307, 7.2335, 7.2324, 7.2313, 7.2303, 7.2292, 7.2319, 7.2311, 7.2338, 7.2324, 7.2319, 7.2313, 7.234, 7.233, 7.2316, 7.2303, 7.2292, 7.2253, 7.224, 7.2227, 7.2226, 7.2221, 7.2247, 7.2235, 7.2226, 7.2217, 7.221, 7.2236, 7.2224, 7.2217, 7.2204, 7.2193, 7.2182, 7.2173, 7.2169, 7.2178, 7.2213, 7.2202, 7.2191, 7.2183, 7.2171, 7.216, 7.2146, 7.2132, 7.2118, 7.2104, 7.209, 7.2079, 7.2107, 7.2133, 7.2166, 7.2161, 7.2148, 7.2139, 7.2129, 7.2127, 7.2123, 7.2111, 7.2106, 7.213, 7.2137, 7.2133, 7.214300000000001, 7.215300000000001, 7.2178, 7.2215, 7.2241, 7.2268, 7.2295, 7.2282, 7.2273, 7.226, 7.227, 7.2265, 7.2252, 7.2241, 7.2267, 7.2254, 7.2247, 7.2236, 7.2265, 7.2265, 7.2294, 7.2281, 7.227, 7.2261, 7.2259, 7.2247, 7.2241, 7.2233, 7.2223, 7.2212, 7.2206, 7.2198, 7.2189, 7.2176, 7.2204, 7.223, 7.2263, 7.225, 7.2238, 7.2228, 7.2253, 7.2248, 7.2277, 7.2307, 7.23, 7.2289, 7.2315, 7.2306, 7.2299, 7.2327, 7.2321, 7.2309, 7.2297, 7.2294, 7.2283, 7.2312, 7.2301, 7.2288, 7.2279, 7.2237, 7.223, 7.2219, 7.2225, 7.2213, 7.2171, 7.2163, 7.219, 7.2182, 7.2211, 7.2203, 7.2227, 7.2215, 7.2207, 7.2198, 7.2188, 7.2182, 7.218, 7.2172, 7.2167, 7.216, 7.2154, 7.2182, 7.2172, 7.2166, 7.216, 7.2153, 7.2141, 7.2137, 7.213, 7.2125, 7.213500000000001, 7.2128, 7.2122, 7.2113, 7.2106, 7.2095, 7.2119, 7.2112, 7.2108, 7.2135, 7.2129, 7.2117, 7.2108, 7.2096, 7.2119, 7.2107, 7.2127, 7.2156, 7.2143, 7.2134, 7.2125, 7.2117, 7.212700000000001, 7.213700000000001, 7.2147000000000014, 7.2134, 7.2128, 7.2152, 7.2141, 7.2165, 7.2153, 7.2144, 7.2143, 7.2136, 7.2161, 7.2186, 7.2182, 7.2169, 7.2192, 7.218, 7.2175, 7.2162, 7.2153, 7.2144, 7.2138, 7.2133, 7.2167, 7.217700000000001, 7.2169, 7.2161, 7.2153, 7.2143, 7.2134, 7.2121, 7.2126, 7.215, 7.2146, 7.2135, 7.216, 7.2151, 7.2176, 7.2166, 7.2154, 7.2142, 7.2132, 7.213, 7.2121, 7.2111, 7.2101, 7.2126, 7.2126, 7.2117, 7.2112, 7.2101, 7.2091, 7.2079, 7.2073, 7.2099, 7.2094, 7.2119, 7.2108, 7.21, 7.2088, 7.2079, 7.2104, 7.2095, 7.2096, 7.2092, 7.2091, 7.2097, 7.2089, 7.2085, 7.2109, 7.2102, 7.2092, 7.2116, 7.2106, 7.2094, 7.2085, 7.2154, 7.2143, 7.2133, 7.2129, 7.213900000000001, 7.2162, 7.2157, 7.2152, 7.2174, 7.2297, 7.2286, 7.2274, 7.2266, 7.2255, 7.225, 7.2246, 7.2235, 7.2226, 7.2217, 7.2208, 7.2198, 7.2193, 7.2191, 7.218, 7.2179, 7.2168, 7.2161, 7.2149, 7.217, 7.218, 7.2204, 7.2193, 7.2185, 7.2178, 7.2201, 7.2161, 7.2171, 7.216, 7.2153, 7.2148, 7.2136, 7.2137, 7.213, 7.2124, 7.2114, 7.2137, 7.2128, 7.2124, 7.2113, 7.2108, 7.2111, 7.2101, 7.2105, 7.2099, 7.2124, 7.2113, 7.2104, 7.2094, 7.2085, 7.2077, 7.2067, 7.2058, 7.2049, 7.204, 7.2065, 7.2061, 7.212, 7.2111, 7.2169, 7.2194, 7.2215, 7.2212, 7.2236, 7.2226, 7.2249, 7.2238, 7.2262, 7.2252, 7.2242, 7.2234, 7.2226, 7.2246, 7.2267, 7.2262, 7.2256, 7.225, 7.2272, 7.2264, 7.2285, 7.2274, 7.2265, 7.2285, 7.2308, 7.23, 7.2291, 7.2281, 7.2276, 7.2265, 7.2256, 7.2248, 7.2237, 7.2226, 7.2235, 7.2262, 7.2251, 7.2245, 7.2267, 7.226, 7.225, 7.2243, 7.2273, 7.227, 7.2262, 7.2255, 7.225, 7.2245, 7.2271, 7.2262, 7.2255, 7.2246, 7.2235, 7.2229, 7.2218, 7.221, 7.2198, 7.2198, 7.2194, 7.220400000000001, 7.221400000000001, 7.2238, 7.2267, 7.2263, 7.2257, 7.2253, 7.2249, 7.2242, 7.2236, 7.224600000000001, 7.2271, 7.2262, 7.2251, 7.2245, 7.2246, 7.2238, 7.2233, 7.2262, 7.2257, 7.2261, 7.2253, 7.2245, 7.2267, 7.226, 7.2257, 7.2248, 7.2247, 7.2247, 7.2267, 7.229, 7.2281, 7.2306, 7.2296, 7.2288, 7.2312, 7.2308, 7.2297, 7.232, 7.2318, 7.2338, 7.2361, 7.2358, 7.2347, 7.2339, 7.2357, 7.235, 7.2342, 7.2339, 7.2333, 7.2323, 7.2312, 7.2301, 7.2323, 7.2314, 7.2305, 7.2297, 7.2318, 7.2308, 7.2297, 7.2291, 7.2282, 7.2274, 7.2268, 7.2266, 7.226, 7.2251, 7.2249, 7.2238, 7.223, 7.2225, 7.2218, 7.2209, 7.2202, 7.2226, 7.2217, 7.2208, 7.2201, 7.221100000000001, 7.2203, 7.2224, 7.2251, 7.2245, 7.2239, 7.223, 7.2221, 7.2212, 7.2235, 7.2257, 7.225, 7.225, 7.2269, 7.2263, 7.2255, 7.2254, 7.2246, 7.2239, 7.2329, 7.2382, 7.2375, 7.2367, 7.2358, 7.2348, 7.2339, 7.2329, 7.2352, 7.2343, 7.2367, 7.236, 7.2352, 7.2371, 7.2389, 7.2378, 7.2401, 7.2393, 7.2386, 7.2351, 7.2347, 7.2339, 7.2329, 7.2323, 7.2374, 7.2365, 7.2372, 7.2367, 7.2357, 7.2354, 7.2344, 7.2335, 7.2326, 7.2316, 7.2313, 7.2309, 7.2299, 7.2323, 7.2345, 7.2337, 7.2334, 7.2331, 7.2326, 7.2317, 7.2308, 7.2307, 7.2297, 7.2294, 7.2313, 7.2331, 7.2322, 7.2316, 7.2309, 7.23, 7.2292, 7.2283, 7.2278, 7.2268, 7.226, 7.2251, 7.2217, 7.2214, 7.2208, 7.22, 7.2192, 7.2214, 7.2209, 7.2211, 7.2233, 7.2229, 7.2223, 7.2216, 7.2238, 7.223, 7.2223, 7.2215, 7.2206, 7.2201, 7.2191, 7.2183, 7.2174, 7.2167, 7.2166, 7.2156, 7.2151, 7.214, 7.2129, 7.2122, 7.2113, 7.2163, 7.2152, 7.2145, 7.2155000000000005, 7.2177, 7.2142, 7.2133, 7.2214, 7.2263, 7.2268, 7.229, 7.2282, 7.2276, 7.227, 7.2261, 7.2282, 7.228, 7.2305, 7.2299, 7.2295, 7.2289, 7.2287, 7.2287, 7.2279, 7.2274, 7.2265, 7.2286, 7.2306, 7.2297, 7.2296, 7.2263, 7.2286, 7.2279, 7.2276, 7.227, 7.2269, 7.2261, 7.2252, 7.2242, 7.2262, 7.2283, 7.2303, 7.2301, 7.2295, 7.2289, 7.2307, 7.2298, 7.2293, 7.231, 7.2305, 7.2298, 7.2292, 7.2282, 7.2273, 7.2266, 7.2257, 7.2275, 7.2269, 7.2259, 7.2253, 7.2244, 7.2235, 7.2233, 7.2233, 7.2232, 7.2254, 7.2273, 7.2273, 7.2295, 7.2288, 7.2376, 7.2412, 7.2439, 7.2432, 7.2422, 7.2414, 7.244, 7.2438, 7.2432, 7.2449, 7.2443, 7.2438, 7.2436, 7.2431, 7.2422, 7.2414, 7.2438, 7.2434, 7.2427, 7.2454, 7.245, 7.2441, 7.2431, 7.2451, 7.2443, 7.2463, 7.2458, 7.2453, 7.2445, 7.2462, 7.2481, 7.2476, 7.247, 7.2461, 7.2456, 7.2449, 7.2455, 7.2447, 7.2447, 7.2438, 7.2433, 7.2455, 7.2446, 7.2441, 7.2437, 7.2429, 7.2446, 7.2442, 7.2463, 7.2483, 7.2505, 7.2496, 7.2488, 7.251, 7.2505, 7.2499, 7.2496, 7.2492, 7.2486, 7.2481, 7.2471, 7.2462, 7.2466, 7.2489, 7.2488, 7.2485, 7.2481, 7.2476, 7.2496, 7.2471, 7.2466, 7.2458, 7.2476, 7.2468, 7.246, 7.2457, 7.2478, 7.2476, 7.2471, 7.2466, 7.2459, 7.2478, 7.2471, 7.2467, 7.2458, 7.2478, 7.247, 7.2468, 7.2459, 7.2451, 7.2443, 7.2436, 7.2453, 7.2445, 7.2437, 7.243, 7.2422, 7.2414, 7.2411, 7.2404, 7.2397, 7.2389, 7.2383, 7.2375, 7.2368, 7.2361, 7.2358, 7.2353, 7.2345, 7.2338, 7.2331, 7.2324, 7.2317, 7.2309, 7.2325, 7.2342, 7.2336, 7.2331, 7.2325, 7.232, 7.2318, 7.2311, 7.2303, 7.2297, 7.2291, 7.2308, 7.2325, 7.2316, 7.2308, 7.235, 7.2341, 7.2336, 7.2417, 7.2408, 7.2425, 7.2418, 7.2409, 7.2403, 7.242, 7.2414, 7.2407, 7.2423, 7.2419, 7.2413, 7.2422, 7.2417, 7.2446, 7.2446, 7.2439, 7.2432, 7.245, 7.2469, 7.2488, 7.2514, 7.2513, 7.2505, 7.2498, 7.2491, 7.2487, 7.2509, 7.2506, 7.2504, 7.2495, 7.2487, 7.2478, 7.2474, 7.2493, 7.2486, 7.2482, 7.2474, 7.2465, 7.2459, 7.2503, 7.2548, 7.2548, 7.2543, 7.2541, 7.2533, 7.2531, 7.2527, 7.2518, 7.2536, 7.2552, 7.2545, 7.2589, 7.2583, 7.2601, 7.2594, 7.2611, 7.2604, 7.2621, 7.2617, 7.2634, 7.265, 7.2641, 7.2657, 7.2652, 7.2645, 7.2662, 7.2654, 7.2648, 7.2644, 7.2638, 7.2631, 7.2624, 7.2615, 7.2612, 7.2605, 7.2601, 7.2593, 7.2584, 7.26, 7.2591, 7.2582, 7.2576, 7.2606, 7.2606, 7.2598, 7.2592, 7.2588, 7.2583, 7.2577, 7.2569, 7.2566, 7.256, 7.2551, 7.2542, 7.2534, 7.2526, 7.2522, 7.2537, 7.2553, 7.2554, 7.258, 7.2573, 7.2566, 7.2559, 7.2552, 7.2572, 7.2568, 7.2586, 7.2581, 7.258, 7.2573, 7.2564, 7.2558, 7.2574, 7.2593, 7.2588, 7.258, 7.2594, 7.2608, 7.2604, 7.2604, 7.2597, 7.2593, 7.2596, 7.2591, 7.2584, 7.2575, 7.2571, 7.2564, 7.256, 7.2575, 7.2569, 7.2564, 7.2583, 7.2577, 7.2574, 7.2566, 7.2608, 7.26, 7.2593, 7.2586, 7.2558, 7.2551, 7.2543, 7.2542, 7.2534, 7.2533, 7.2527, 7.2525, 7.2526, 7.2523, 7.2515, 7.2508, 7.2502, 7.2498, 7.2492, 7.2507, 7.25, 7.2494, 7.249, 7.2482, 7.2475, 7.2467, 7.2459, 7.2477, 7.2469, 7.2464, 7.2458, 7.245, 7.2446, 7.2487, 7.2481, 7.2472, 7.2464, 7.2456, 7.2473, 7.2489, 7.2514, 7.2508, 7.2502, 7.2494, 7.2487, 7.2483, 7.2506, 7.2499, 7.2497, 7.2489, 7.2481, 7.2473, 7.2465, 7.2459, 7.2452, 7.2445, 7.2437, 7.243, 7.2425, 7.2442, 7.2434, 7.2451, 7.2444, 7.2437, 7.2431, 7.2426, 7.2419, 7.2436, 7.2456, 7.2449, 7.2464, 7.246, 7.2476, 7.2468, 7.2462, 7.2456, 7.2448, 7.2447, 7.2461, 7.2452, 7.2443, 7.2435, 7.2453, 7.2447, 7.244, 7.2436, 7.2428, 7.2424, 7.2424, 7.2421, 7.2415, 7.2434, 7.2434, 7.2426, 7.242, 7.2414, 7.2408, 7.2426, 7.242, 7.2412, 7.2404, 7.2405, 7.2423, 7.2417, 7.241, 7.2426, 7.2442, 7.2458, 7.2473, 7.2465, 7.246, 7.2452, 7.2447, 7.2509, 7.2504, 7.2496, 7.2491, 7.2482, 7.2476, 7.2492, 7.2514, 7.2506, 7.2503, 7.2495, 7.2494, 7.2488, 7.2482, 7.2475, 7.2496, 7.2489, 7.2482, 7.2499, 7.2492, 7.2487, 7.2503, 7.2499, 7.2495, 7.251, 7.2507, 7.2502, 7.2495, 7.2489, 7.2482, 7.2476, 7.2492, 7.2486, 7.2478, 7.247, 7.2485, 7.2477, 7.2493, 7.2485, 7.2479, 7.2473, 7.2468, 7.2461, 7.2456, 7.2448, 7.2445, 7.244, 7.2435, 7.2453, 7.2495, 7.249, 7.2495, 7.2514, 7.251, 7.2503, 7.2502, 7.2497, 7.249, 7.2482, 7.2497, 7.2492, 7.2486, 7.2479, 7.2473, 7.2468, 7.247, 7.247, 7.2465, 7.246, 7.2452, 7.2444, 7.246, 7.2456, 7.2451, 7.2456, 7.2455, 7.247, 7.2465, 7.2461, 7.2476, 7.2468, 7.2461, 7.2475, 7.247, 7.2486, 7.2486, 7.2483, 7.2478, 7.2472, 7.2464, 7.2458, 7.2472, 7.2489, 7.2481, 7.2497, 7.2489, 7.2504, 7.2499, 7.2491, 7.2484, 7.2479, 7.2494, 7.2488, 7.248, 7.2494, 7.2487, 7.2479, 7.2471, 7.2465, 7.2462, 7.2456, 7.2456, 7.2452, 7.2446, 7.2441, 7.2436, 7.2432, 7.2425, 7.2423, 7.2416, 7.2412, 7.2405, 7.2399, 7.2395, 7.2372, 7.2366, 7.238, 7.2372, 7.2386, 7.2378, 7.2371, 7.2366, 7.2382, 7.2356, 7.2352, 7.2428, 7.2421, 7.2465, 7.2464, 7.246, 7.2453, 7.2471, 7.2464, 7.248, 7.2494, 7.2487, 7.2483, 7.2476, 7.247, 7.2468, 7.2462, 7.2477, 7.2475, 7.2469, 7.2463, 7.2456, 7.2452, 7.2448, 7.2441, 7.2439, 7.2438, 7.2435, 7.2428, 7.2427, 7.244, 7.2433, 7.2435, 7.245, 7.2467, 7.2463, 7.2459, 7.2471, 7.2468, 7.2486, 7.248, 7.2474, 7.2468, 7.2462, 7.246, 7.2455, 7.2451, 7.2444, 7.25, 7.2494, 7.2486, 7.2535, 7.2555, 7.255, 7.2543, 7.2536, 7.2533, 7.253, 7.2544, 7.2537, 7.2532, 7.2573, 7.2588, 7.2581, 7.2578, 7.2577, 7.2582, 7.2575, 7.2568, 7.2564, 7.2559, 7.2561, 7.2576, 7.2576, 7.257, 7.2564, 7.2557, 7.2532, 7.2526, 7.2521, 7.2519, 7.2513, 7.2528, 7.2522, 7.2515, 7.2511, 7.2509, 7.2506, 7.2506, 7.2502, 7.2497, 7.2495, 7.2489, 7.2483, 7.2477, 7.247, 7.2464, 7.248, 7.2474, 7.2466, 7.2459, 7.2453, 7.2447, 7.2444, 7.2458, 7.2434, 7.2428, 7.2445, 7.2438, 7.2431, 7.2427, 7.2422, 7.2419, 7.2413, 7.2407, 7.24, 7.2393, 7.2389, 7.2385, 7.2398, 7.2395, 7.2409, 7.2425, 7.2417, 7.241, 7.2403, 7.2396, 7.2391, 7.2385, 7.2399, 7.2393, 7.2388, 7.2382, 7.2375, 7.2369, 7.2364, 7.2358, 7.2352, 7.2348, 7.2361, 7.2374, 7.2367, 7.2363, 7.2356, 7.2349, 7.2348, 7.2344, 7.2361, 7.2355, 7.2349, 7.2345, 7.2339, 7.2333, 7.2334, 7.2329, 7.2324, 7.2321, 7.2317, 7.2311, 7.2304, 7.2326, 7.2323, 7.2325, 7.2319, 7.2314, 7.2308, 7.2304, 7.2298, 7.2293, 7.2292, 7.229, 7.2284, 7.228, 7.2276, 7.2272, 7.2285, 7.2298, 7.2291, 7.2287, 7.2282, 7.2276, 7.2269, 7.2284, 7.228, 7.2273, 7.2267, 7.2261, 7.2277, 7.227, 7.2264, 7.2258, 7.2254, 7.2248, 7.2263, 7.2259, 7.2253, 7.2268, 7.2265, 7.226, 7.2253, 7.2247, 7.2242, 7.2238, 7.2254, 7.2247, 7.2241, 7.2237, 7.223, 7.2225, 7.224, 7.2233, 7.2229, 7.2222, 7.2216, 7.2212, 7.2207, 7.2201, 7.221100000000001, 7.2223, 7.2218, 7.2213, 7.2206, 7.22, 7.2195, 7.219, 7.2188, 7.2185, 7.2183, 7.2199, 7.2196, 7.2191, 7.2206, 7.2205, 7.2213, 7.2226, 7.222, 7.2215, 7.2208, 7.2208, 7.2204, 7.2201, 7.2198, 7.221, 7.2203, 7.2199, 7.2214, 7.2234, 7.2229, 7.2228, 7.2223, 7.2219, 7.2234, 7.2231, 7.2228, 7.2223, 7.2218, 7.2213, 7.2229, 7.2241, 7.2236, 7.2231, 7.2248, 7.2263, 7.2276, 7.2271, 7.2264, 7.2266, 7.2261, 7.2256, 7.2249, 7.2264, 7.2261, 7.2273, 7.227, 7.2266, 7.2265, 7.2259, 7.2276, 7.227, 7.2283, 7.2278, 7.2273, 7.2268, 7.2263, 7.2262, 7.2256, 7.2255, 7.225, 7.2243, 7.2241, 7.224, 7.2236, 7.224600000000001, 7.2244, 7.2241, 7.2236, 7.2232, 7.2244, 7.2239, 7.2236, 7.2231, 7.2246, 7.2244, 7.2237, 7.2231, 7.2227, 7.2241, 7.2236, 7.2232, 7.221, 7.2223, 7.2216, 7.2213, 7.2207, 7.2203, 7.2197, 7.2195, 7.2191, 7.2192, 7.2187, 7.2182, 7.2179, 7.2176, 7.2173, 7.2166, 7.216, 7.2156, 7.215, 7.2146, 7.2143, 7.2159, 7.2173, 7.2169, 7.2179, 7.2189000000000005, 7.2184, 7.2178, 7.2172, 7.2182, 7.2179, 7.2173, 7.2167, 7.2161, 7.2156, 7.217, 7.2164, 7.2162, 7.2158, 7.2171, 7.2168, 7.2164, 7.2158, 7.2153, 7.2167, 7.2163, 7.2157, 7.2152, 7.2149, 7.2143, 7.2167, 7.218, 7.2176, 7.217, 7.2163, 7.2157, 7.2171, 7.2166, 7.2159, 7.216900000000001, 7.2181, 7.2176, 7.219, 7.2183, 7.2195, 7.2207, 7.2201, 7.2196, 7.2192, 7.2206, 7.2201, 7.2197, 7.2193, 7.2187, 7.2188, 7.2205, 7.22, 7.2279, 7.2273, 7.227, 7.2264, 7.2258, 7.2252, 7.2266, 7.226, 7.2257, 7.2252, 7.2247, 7.224, 7.2235, 7.2248, 7.226, 7.2256, 7.225, 7.2247, 7.2241, 7.2236, 7.2231, 7.2225, 7.2222, 7.2216, 7.2229, 7.2225, 7.2219, 7.2229, 7.2246, 7.2242, 7.2238, 7.2234, 7.223, 7.2246, 7.2262, 7.2258, 7.2254, 7.2251, 7.2265, 7.2277, 7.2271, 7.2265, 7.226, 7.2254, 7.2249, 7.2246, 7.224, 7.2235, 7.2236, 7.2231, 7.2233, 7.2228, 7.2222, 7.2216, 7.2211, 7.2209, 7.2207, 7.2205, 7.2201, 7.2213, 7.2228, 7.2225, 7.222, 7.2214, 7.2208, 7.2219, 7.2213, 7.2217, 7.2211, 7.2241, 7.2254, 7.2249, 7.225, 7.225, 7.226, 7.2273, 7.2267, 7.2267, 7.2263, 7.2257, 7.2255, 7.2269, 7.2264, 7.2277, 7.2291, 7.2285, 7.2298, 7.2294, 7.2291, 7.2303, 7.23, 7.2298, 7.2291, 7.2286, 7.228, 7.2274, 7.2273, 7.2267, 7.2281, 7.228, 7.2292, 7.2288, 7.2285, 7.2283, 7.2277, 7.2272, 7.2287, 7.2299, 7.2294, 7.2288, 7.2285, 7.2279, 7.2274, 7.2268, 7.2265, 7.226, 7.2257, 7.2254, 7.2248, 7.2246, 7.2259, 7.2274, 7.2268, 7.2266, 7.2263, 7.226, 7.2254, 7.2267, 7.2263, 7.226, 7.226, 7.2255, 7.2251, 7.2246, 7.2294, 7.2289, 7.2283, 7.2294, 7.2289, 7.2283, 7.2296, 7.2292, 7.2289, 7.2285, 7.2279, 7.2276, 7.227, 7.2265, 7.2261, 7.226, 7.2258, 7.2253, 7.225, 7.2245, 7.2239, 7.2251, 7.2246, 7.224, 7.2236, 7.2233, 7.2228, 7.224, 7.2254, 7.2252, 7.2264, 7.2276, 7.2272, 7.2273, 7.2267, 7.2263, 7.2259, 7.2273, 7.2267, 7.2262, 7.226, 7.2258, 7.2253, 7.2247, 7.2244, 7.2241, 7.2237, 7.2234, 7.2228, 7.2224, 7.2219, 7.2216, 7.221, 7.2205, 7.22, 7.2199, 7.2194, 7.219, 7.2203, 7.2216, 7.221, 7.2204, 7.2215, 7.2209, 7.2203, 7.2198, 7.221, 7.2208, 7.2202, 7.2198, 7.2192, 7.2187, 7.2181, 7.2186, 7.2185, 7.2182, 7.2177, 7.2175, 7.2177, 7.2176, 7.2173, 7.2167, 7.2165, 7.2163, 7.2158, 7.2153, 7.2156, 7.2151, 7.2167, 7.218, 7.2192, 7.2205, 7.2203, 7.2198, 7.2194, 7.2189, 7.2183, 7.2177, 7.2172, 7.2169, 7.2165, 7.2159, 7.2155, 7.2168, 7.2167, 7.218, 7.2177, 7.2172, 7.2167, 7.218, 7.2192, 7.2189, 7.2184, 7.2181, 7.2178, 7.2172, 7.2167, 7.2164, 7.2159, 7.2172, 7.2169, 7.2165, 7.216, 7.2156, 7.2151, 7.2161, 7.2156, 7.2159, 7.2155, 7.2149, 7.2144, 7.2158, 7.2154, 7.2167, 7.2178, 7.2177, 7.2174, 7.2169, 7.2163, 7.216, 7.2157, 7.2152, 7.2165, 7.2162, 7.2157, 7.2153, 7.2148, 7.2143, 7.213, 7.2127, 7.2125, 7.2121, 7.2117, 7.2111, 7.2107, 7.2103, 7.2115, 7.211, 7.2108, 7.2104, 7.2099, 7.2095, 7.209, 7.2088, 7.2082, 7.2097, 7.2077, 7.2089, 7.2101, 7.2114, 7.2108, 7.2103, 7.2115, 7.2111, 7.2114, 7.212400000000001, 7.213400000000001, 7.2131, 7.2127, 7.2138, 7.2141, 7.2138, 7.2154, 7.2153, 7.2148, 7.2142, 7.2136, 7.2131, 7.2126, 7.2158, 7.2155, 7.2166, 7.2161, 7.2171, 7.215, 7.2162, 7.2158, 7.2153, 7.2165, 7.2161, 7.2172, 7.2169, 7.2181, 7.2193, 7.2203, 7.2198, 7.2195, 7.219, 7.2187, 7.2185, 7.2181, 7.218, 7.2176, 7.2171, 7.2167, 7.2163, 7.2159, 7.2154, 7.215, 7.215, 7.2145, 7.2139, 7.2149, 7.2159, 7.216900000000001, 7.218, 7.2175, 7.2186, 7.2182, 7.2184, 7.2179, 7.2175, 7.2169, 7.2181, 7.2177, 7.2188, 7.2198, 7.2181, 7.2175, 7.2171, 7.2165, 7.2159, 7.216900000000001, 7.2165, 7.2176, 7.217, 7.2181, 7.2179, 7.2173, 7.217, 7.2166, 7.2177, 7.2171, 7.2165, 7.2161, 7.2172, 7.2166, 7.2178, 7.2175, 7.2169, 7.2163, 7.2175, 7.217, 7.217, 7.2165, 7.2162, 7.2158, 7.2154, 7.2149, 7.2144, 7.2138, 7.2149, 7.2144, 7.2138, 7.2134, 7.2129, 7.2123, 7.2117, 7.2113, 7.2109, 7.2103, 7.2098, 7.2113, 7.2132, 7.215, 7.2138, 7.2148, 7.2144, 7.2139, 7.2136, 7.2135, 7.2132, 7.2127, 7.2122, 7.212, 7.213, 7.2125, 7.2122, 7.212, 7.2116, 7.2113, 7.2107, 7.2104, 7.2102, 7.2101, 7.2099, 7.2097, 7.2109, 7.2108, 7.2121, 7.2116, 7.2112, 7.2123, 7.2118, 7.2115, 7.2113, 7.211, 7.2108, 7.212, 7.2133, 7.2129, 7.2124, 7.212, 7.2116, 7.2113, 7.2123, 7.2117, 7.2111, 7.2122, 7.2117, 7.2112, 7.2107, 7.2105, 7.2103, 7.2098, 7.211, 7.2106, 7.2101, 7.2113, 7.2109, 7.2119, 7.2115, 7.2109, 7.2104, 7.2114, 7.211, 7.2105, 7.2117, 7.2112, 7.2123, 7.2118, 7.2113, 7.2109, 7.2104, 7.21, 7.2114, 7.2108, 7.2121, 7.2117, 7.2128, 7.2124, 7.2151, 7.2148, 7.2142, 7.2155, 7.2152, 7.2163, 7.216, 7.2154, 7.215, 7.2146, 7.2143, 7.2155, 7.2165, 7.216, 7.2155, 7.215, 7.2162, 7.2174, 7.2172, 7.2187, 7.2184, 7.2195, 7.2191, 7.2186, 7.2183, 7.2181, 7.2178, 7.2173, 7.217, 7.2197, 7.2193, 7.2215, 7.2227, 7.2223, 7.2232, 7.2231, 7.23, 7.2296, 7.2293, 7.2288, 7.2283, 7.2278, 7.229, 7.2287, 7.2302, 7.2298, 7.2311, 7.2307, 7.2302, 7.2297, 7.2293, 7.2289, 7.2286, 7.2296, 7.2307, 7.2302, 7.2301, 7.2298, 7.2293, 7.2295, 7.2292, 7.2288, 7.2284, 7.2283, 7.2282, 7.2293, 7.2288, 7.2284, 7.2281, 7.2292, 7.2288, 7.2299, 7.2297, 7.2293, 7.2289, 7.2285, 7.2282, 7.2293, 7.2306, 7.2319, 7.2315, 7.2311, 7.2306, 7.2315, 7.2311, 7.2305, 7.2316, 7.2312, 7.2308, 7.2292, 7.2287, 7.2282, 7.2281, 7.2291, 7.2288, 7.2283, 7.2278, 7.2275, 7.2271, 7.2266, 7.2263, 7.2258, 7.2253, 7.225, 7.2249, 7.2248, 7.2259, 7.2256, 7.2253, 7.2248, 7.2251, 7.225, 7.2247, 7.2242, 7.2254, 7.2251, 7.2253, 7.2253, 7.2248, 7.226, 7.2256, 7.2253, 7.2249, 7.2245, 7.2242, 7.2239, 7.2234, 7.2245, 7.2257, 7.2256, 7.2251, 7.2246, 7.2243, 7.2254, 7.2249, 7.2246, 7.2274, 7.2287, 7.2284, 7.2283, 7.2278, 7.229, 7.2286, 7.2282, 7.2276, 7.2274, 7.227, 7.2268, 7.2265, 7.2265, 7.226, 7.2255, 7.2252, 7.2247, 7.2243, 7.2239, 7.2237, 7.2233, 7.223, 7.2226, 7.2238, 7.2233, 7.223, 7.2242, 7.2237, 7.2235, 7.2247, 7.2244, 7.2241, 7.2237, 7.2239, 7.2235, 7.223, 7.2225, 7.2221, 7.2221, 7.2217, 7.223, 7.2226, 7.2224, 7.222, 7.2217, 7.2213, 7.2213, 7.2208, 7.2203, 7.2198, 7.2196, 7.2194, 7.2205, 7.2203, 7.2199, 7.2194, 7.220400000000001, 7.22, 7.2199, 7.2196, 7.22, 7.2198, 7.2209, 7.2208, 7.2207, 7.2203, 7.2201, 7.2185, 7.2198, 7.2208, 7.2204, 7.22, 7.2199, 7.2202, 7.2201, 7.2213, 7.2208, 7.2208, 7.2205, 7.2203, 7.2198, 7.2194, 7.2189, 7.2184, 7.2185, 7.2181, 7.2177, 7.2172, 7.2169, 7.2166, 7.2163, 7.2158, 7.2154, 7.215, 7.2148, 7.2159, 7.2155, 7.2154, 7.2149, 7.2159, 7.2201, 7.2196, 7.2208, 7.2204, 7.2199, 7.2211, 7.2208, 7.2218, 7.2229, 7.2224, 7.2221, 7.2219, 7.223, 7.2226, 7.2208, 7.2218, 7.2214, 7.221, 7.222, 7.2219, 7.2216, 7.2211, 7.2223, 7.2218, 7.2215, 7.2211, 7.2211, 7.2208, 7.2219, 7.2215, 7.2212, 7.2209, 7.2204, 7.22, 7.2196, 7.2192, 7.219, 7.2185, 7.2183, 7.2189, 7.2185, 7.22, 7.2196, 7.2192, 7.2188, 7.2188, 7.2184, 7.2181, 7.2176, 7.2172, 7.2167, 7.2162, 7.2158, 7.2154, 7.215, 7.2173, 7.2169, 7.2167, 7.2178, 7.2175, 7.2216, 7.2213, 7.221, 7.2205, 7.2203, 7.2214, 7.2239, 7.225, 7.2259, 7.2256, 7.2271, 7.2267, 7.2262, 7.2245, 7.2242, 7.224, 7.2237, 7.2232, 7.2232, 7.2216, 7.2211, 7.2207, 7.2218, 7.2214, 7.2225, 7.2221, 7.222, 7.2215, 7.2212, 7.2222, 7.2218, 7.2214, 7.2225, 7.222, 7.2216, 7.2214, 7.2209, 7.2212, 7.2208, 7.2204, 7.2202, 7.2198, 7.2196, 7.2194, 7.2192, 7.2192, 7.2187, 7.2199, 7.2195, 7.2205, 7.2201, 7.2198, 7.2196, 7.2192, 7.2188, 7.2198, 7.2197, 7.2192, 7.219, 7.2187, 7.2198, 7.2207, 7.2203, 7.2201, 7.2196, 7.2191, 7.219, 7.2185, 7.2168, 7.2178, 7.2173, 7.2169, 7.2165, 7.216, 7.2162, 7.2158, 7.2169, 7.2165, 7.216, 7.2169, 7.2167, 7.2163, 7.2173, 7.2171, 7.2168, 7.2165, 7.2163, 7.2159, 7.2156, 7.2151, 7.2146, 7.2142, 7.2151, 7.2152, 7.2167, 7.2177, 7.2172, 7.2168, 7.2166, 7.2176, 7.2171, 7.2168, 7.2163, 7.2173, 7.217, 7.2166, 7.2161, 7.2157, 7.2168, 7.2178, 7.2176, 7.2173, 7.2168, 7.2178, 7.2178, 7.2174, 7.217, 7.218, 7.219, 7.2186, 7.2183, 7.2179, 7.2192, 7.2188, 7.2186, 7.2181, 7.2178, 7.2176, 7.2172, 7.2182, 7.2178, 7.2177, 7.2173, 7.2169, 7.2169, 7.2168, 7.2164, 7.2175, 7.2171, 7.2182, 7.218, 7.2178, 7.2174, 7.2169, 7.2166, 7.2162, 7.2158, 7.2155, 7.215, 7.2161, 7.2157, 7.2156, 7.2153, 7.2163, 7.217300000000001, 7.2169, 7.2164, 7.2159, 7.216900000000001, 7.2166, 7.2167, 7.2165, 7.2162, 7.2157, 7.2152, 7.216200000000001, 7.2172, 7.217, 7.217, 7.2168, 7.2165, 7.2162, 7.2159, 7.2155, 7.2165, 7.2162, 7.2163, 7.2158, 7.216, 7.2173, 7.2169, 7.2225, 7.2221, 7.223, 7.2226, 7.2222, 7.2219, 7.2217, 7.2229, 7.224, 7.2239, 7.2235, 7.2244, 7.2253, 7.2278, 7.2295, 7.2291, 7.2293, 7.2291, 7.2288, 7.2283, 7.2279, 7.2276, 7.2272, 7.227, 7.2267, 7.2276, 7.2272, 7.2269, 7.2278, 7.2273, 7.227, 7.2265, 7.226, 7.2257, 7.2267, 7.2269, 7.2266, 7.2262, 7.2257, 7.2253, 7.225, 7.2246, 7.2256, 7.2253, 7.2249, 7.2246, 7.2241, 7.2236, 7.2232, 7.2243, 7.2253, 7.2249, 7.226, 7.227, 7.2266, 7.2264, 7.226, 7.2256, 7.2252, 7.2247, 7.2244, 7.224, 7.2237, 7.2246, 7.2243, 7.2242, 7.2238, 7.2235, 7.223, 7.2228, 7.2236, 7.2233, 7.223, 7.2239, 7.2248, 7.2245, 7.2241, 7.2236, 7.2259, 7.2269, 7.2264, 7.2259, 7.2269, 7.2269, 7.2264, 7.2261, 7.2258, 7.2254, 7.225, 7.2261, 7.2256, 7.2251, 7.225, 7.2247, 7.2244, 7.224, 7.2236, 7.2235, 7.2235, 7.2219, 7.2214, 7.2212, 7.2209, 7.2204, 7.2203, 7.2199, 7.2208, 7.2205, 7.22, 7.2196, 7.2205, 7.2201, 7.2186, 7.2182, 7.2178, 7.2176, 7.2172, 7.2183, 7.218, 7.2178, 7.2178, 7.2175, 7.2171, 7.2169, 7.2165, 7.216, 7.2159, 7.2158, 7.2155, 7.2153, 7.2149, 7.2158, 7.2154, 7.2149, 7.2146, 7.2155, 7.2152, 7.2147, 7.2144, 7.2141, 7.2137, 7.2137, 7.2134, 7.2135, 7.2132, 7.2127, 7.2127, 7.2136, 7.2136, 7.2146, 7.2143, 7.2148, 7.2145, 7.214, 7.2136, 7.2146, 7.2156, 7.2152, 7.2149, 7.2145, 7.2142, 7.2141, 7.2137, 7.2132, 7.2142, 7.2137, 7.2134, 7.2131, 7.2128, 7.2126, 7.2125, 7.2122, 7.2117, 7.2114, 7.2125, 7.2122, 7.2118, 7.2114, 7.211, 7.2119, 7.2129, 7.2153, 7.2139, 7.2136, 7.2133, 7.2131, 7.2141, 7.2151, 7.2147, 7.2143, 7.214, 7.2136, 7.2145, 7.2154, 7.2149, 7.2148, 7.2143, 7.2154, 7.2149, 7.2159, 7.2168, 7.2178, 7.2189, 7.2201, 7.2198, 7.2198, 7.2194, 7.2193, 7.2191, 7.2186, 7.2173, 7.216, 7.2184, 7.2182, 7.2178, 7.2175, 7.2173, 7.2171, 7.2169, 7.2164, 7.2159, 7.2154, 7.2154, 7.2162, 7.2173, 7.2172, 7.2158, 7.2156, 7.2165, 7.2164, 7.216, 7.2155, 7.2165, 7.2162, 7.2159, 7.2168, 7.2164, 7.216, 7.2156, 7.2152, 7.2148, 7.2147, 7.2144, 7.2142, 7.214, 7.2135, 7.2132, 7.2128, 7.2127, 7.2137, 7.2146, 7.2143, 7.2139, 7.2149, 7.2159, 7.2154, 7.2151, 7.2154, 7.2163, 7.216, 7.2156, 7.2152, 7.2149, 7.2147, 7.2157, 7.2167, 7.2175, 7.2185, 7.2181, 7.2178, 7.2174, 7.2169, 7.217, 7.2165, 7.2161, 7.217, 7.2169, 7.2165, 7.2166, 7.2163, 7.2161, 7.2157, 7.2153, 7.2151, 7.2148, 7.2143, 7.2139, 7.2138, 7.2135, 7.2121, 7.2106, 7.2093, 7.2102, 7.2098, 7.2107, 7.2104, 7.2099, 7.2095, 7.2091, 7.2088, 7.2085, 7.2069, 7.2065, 7.2061, 7.2047, 7.2056, 7.2053, 7.2063, 7.2061, 7.2058, 7.2045, 7.2047, 7.2044, 7.2041, 7.2047, 7.2033, 7.2019, 7.2016, 7.2013, 7.2022, 7.2007, 7.1992, 7.199, 7.1989, 7.1986, 7.1985, 7.1995, 7.1992, 7.2001, 7.2011, 7.2022, 7.202, 7.2016, 7.2012, 7.2011, 7.2008, 7.2007, 7.2017, 7.2014, 7.201, 7.2008, 7.2018, 7.2014, 7.2012, 7.2021, 7.2019, 7.2015, 7.2012, 7.2008, 7.2006, 7.2006, 7.2003, 7.2002, 7.2012, 7.2011, 7.2021, 7.203, 7.2025, 7.2023, 7.2022, 7.2019, 7.2017, 7.2013, 7.2023, 7.2021, 7.203, 7.2027, 7.2026, 7.2025, 7.2027, 7.2035, 7.2046, 7.2056, 7.2052, 7.2049, 7.2058, 7.2043, 7.204, 7.204, 7.2038, 7.2036, 7.2034, 7.2069, 7.2066, 7.2061, 7.2069, 7.2067, 7.2065, 7.2061, 7.2058, 7.2057, 7.2055, 7.2051, 7.2046, 7.2043, 7.2052, 7.2061, 7.207, 7.2068, 7.2079, 7.2076, 7.2086, 7.2083, 7.2095, 7.2094, 7.2091, 7.2088, 7.2086, 7.2083, 7.2093, 7.2092, 7.2102, 7.2098, 7.210800000000001, 7.2105, 7.2103, 7.2124, 7.2142, 7.2151, 7.2149, 7.2146, 7.2147, 7.2155, 7.2151, 7.2148, 7.2145, 7.2144, 7.2144, 7.214, 7.2136, 7.2157, 7.2153, 7.2162, 7.216, 7.2156, 7.2152, 7.2149, 7.2148, 7.2144, 7.2153, 7.2151, 7.216, 7.2147, 7.2144, 7.214, 7.2137, 7.2133, 7.2129, 7.2126, 7.2135, 7.2132, 7.213, 7.2126, 7.2123, 7.2121, 7.2118, 7.2116, 7.2113, 7.2099, 7.2097, 7.2094, 7.209, 7.2086, 7.2085, 7.2094, 7.209, 7.2076, 7.2074, 7.2072, 7.2068, 7.2066, 7.2075, 7.2071, 7.2067, 7.2063, 7.2071, 7.2067, 7.2063, 7.2059, 7.2056, 7.2052, 7.2048, 7.2044, 7.2041, 7.2037, 7.2034, 7.202, 7.2017, 7.2013, 7.2011, 7.2019, 7.2028, 7.2028, 7.2025, 7.2021, 7.2019, 7.2018, 7.2015, 7.2014, 7.2012, 7.201, 7.2008, 7.2004, 7.2001, 7.1999, 7.1995, 7.1991, 7.1988, 7.1986, 7.1985, 7.1981, 7.1979, 7.1989, 7.1986, 7.1981, 7.1977, 7.1986, 7.1983, 7.1981, 7.1978, 7.1974, 7.197, 7.1967, 7.1975, 7.1971, 7.1967, 7.1977, 7.1973, 7.1973, 7.197, 7.1966, 7.1962, 7.1951, 7.1948, 7.1945, 7.1944, 7.1941, 7.1951, 7.1947, 7.1946, 7.1943, 7.194, 7.1952, 7.195, 7.1947, 7.1958, 7.1968, 7.1967, 7.1965, 7.197500000000001, 7.198500000000001, 7.1988, 7.1987, 7.1983, 7.198, 7.1977, 7.1976, 7.198600000000001, 7.1986, 7.1983, 7.1993, 7.2003, 7.2, 7.2029, 7.2026, 7.2017, 7.2002, 7.2, 7.1998, 7.2008, 7.2004, 7.2014, 7.2022, 7.203200000000001, 7.2029, 7.2038, 7.2074, 7.2084, 7.2105, 7.2122, 7.212, 7.2119, 7.2117, 7.2114, 7.2113, 7.2111, 7.211, 7.2132, 7.212, 7.212, 7.2118, 7.2126, 7.2135, 7.2133, 7.2129, 7.2129, 7.2151, 7.2162, 7.2159, 7.2156, 7.2153, 7.2162, 7.2158, 7.2156, 7.2164, 7.2163, 7.2161, 7.2157, 7.2153, 7.2152, 7.2161, 7.2157, 7.2153, 7.2149, 7.2147, 7.2143, 7.2152, 7.2148, 7.2157, 7.2156, 7.2152, 7.216, 7.2156, 7.2152, 7.215, 7.2148, 7.2145, 7.2153, 7.215, 7.2148, 7.2144, 7.2143, 7.2139, 7.2136, 7.2132, 7.2129, 7.2127, 7.2124, 7.2133, 7.2129, 7.2126, 7.2122, 7.2118, 7.2115, 7.2111, 7.212, 7.2122, 7.2118, 7.2126, 7.2123, 7.2119, 7.2115, 7.2115, 7.2115, 7.2123, 7.212, 7.2116, 7.2113, 7.2118, 7.2115, 7.2114, 7.2112, 7.2108, 7.2108, 7.2105, 7.2103, 7.2101, 7.2125, 7.2122, 7.2122, 7.2123, 7.2125, 7.2135, 7.2144, 7.2141, 7.2151, 7.2161, 7.2162, 7.2158, 7.2167, 7.2178, 7.2174, 7.2171, 7.2167, 7.2166, 7.2165, 7.2162, 7.2158, 7.2157, 7.2154, 7.2151, 7.215, 7.2147, 7.2145, 7.2141, 7.2161, 7.2157, 7.2153, 7.2142, 7.2145, 7.2142, 7.2138, 7.2136, 7.2122, 7.2146, 7.2145, 7.2154, 7.2153, 7.215, 7.2138, 7.2137, 7.2136, 7.2124, 7.2135, 7.2131, 7.2128, 7.2129, 7.2127, 7.2115, 7.2111, 7.2119, 7.2117, 7.2125, 7.2123, 7.212, 7.2128, 7.2137, 7.2135, 7.2143, 7.2139, 7.2135, 7.2135, 7.2143, 7.2141, 7.214, 7.2138, 7.2136, 7.2134, 7.213, 7.2138, 7.2136, 7.2132, 7.213, 7.2138, 7.2136, 7.2133, 7.2129, 7.2125, 7.2122, 7.2121, 7.2119, 7.2118, 7.2117, 7.2118, 7.2131, 7.2128, 7.2137, 7.2134, 7.2133, 7.2129, 7.2126, 7.2123, 7.2121, 7.2129, 7.2126, 7.2134, 7.2132, 7.2128, 7.2124, 7.2133, 7.213, 7.2128, 7.2125, 7.2149, 7.2146, 7.2142, 7.2138, 7.2135, 7.2131, 7.214, 7.2137, 7.2135, 7.2131, 7.2129, 7.2128, 7.2124, 7.2122, 7.2118, 7.2116, 7.2123, 7.2119, 7.2117, 7.2113, 7.2111, 7.2134, 7.2142, 7.2139, 7.2147, 7.2145, 7.2143, 7.2139, 7.2136, 7.2132, 7.214, 7.2137, 7.2133, 7.213, 7.2138, 7.2135, 7.2133, 7.2129, 7.2127, 7.2136, 7.2132, 7.2131, 7.2128, 7.2125, 7.2126, 7.2123, 7.213, 7.2126, 7.2113, 7.211, 7.2107, 7.2104, 7.2102, 7.2112, 7.2109, 7.2116, 7.2115, 7.2101, 7.2087, 7.2074, 7.207, 7.2068, 7.2066, 7.2075, 7.2072, 7.2073, 7.2083, 7.2079, 7.2075, 7.2083, 7.2081, 7.2077, 7.2073, 7.2071, 7.2067, 7.2065, 7.2063, 7.2059, 7.2058, 7.2056, 7.2052, 7.205, 7.2049, 7.2048, 7.2048, 7.2037, 7.2034, 7.2032, 7.2041, 7.2037, 7.2034, 7.2032, 7.2031, 7.2027, 7.2025, 7.2021, 7.2029, 7.2026, 7.2023, 7.2032, 7.202, 7.2018, 7.2017, 7.2014, 7.2013, 7.2009, 7.2005, 7.2001, 7.1998, 7.1995, 7.1991, 7.2, 7.1997, 7.1993, 7.1993, 7.2006, 7.2007, 7.2004, 7.199, 7.1987, 7.2011, 7.2007, 7.2053, 7.2065, 7.2062, 7.207, 7.2079, 7.2086, 7.2084, 7.2083, 7.2079, 7.2076, 7.2073, 7.2081, 7.209, 7.2088, 7.2085, 7.2084, 7.2083, 7.2091, 7.2079, 7.2076, 7.2073, 7.2062, 7.2058, 7.2054, 7.2064, 7.2072, 7.2069, 7.2066, 7.2063, 7.2061, 7.2059, 7.2055, 7.2063, 7.2071, 7.2067, 7.2064, 7.2063, 7.205, 7.2037, 7.2036, 7.2034, 7.2031, 7.2027, 7.2014, 7.201, 7.2008, 7.2018, 7.2014, 7.2012, 7.201, 7.2007, 7.2019, 7.2017, 7.2015, 7.2035, 7.2032, 7.2046, 7.2042, 7.2049, 7.2047, 7.2055, 7.2065, 7.2064, 7.2063, 7.2059, 7.2057, 7.2057, 7.2065, 7.2053, 7.2062, 7.2058, 7.2066, 7.2074, 7.2071, 7.207, 7.2067, 7.2064, 7.2073, 7.2071, 7.2067, 7.2076, 7.2075, 7.2072, 7.208, 7.2077, 7.2073, 7.2081, 7.2078, 7.2074, 7.2073, 7.207, 7.2069, 7.2067, 7.2065, 7.2062, 7.2069, 7.2076, 7.2074, 7.2073, 7.207, 7.2068, 7.2065, 7.2061, 7.2058, 7.2055, 7.2063, 7.2071, 7.208, 7.2089, 7.2087, 7.2083, 7.209, 7.2088, 7.2085, 7.2084, 7.2081, 7.2078, 7.2075, 7.2071, 7.2071, 7.2069, 7.2067, 7.2067, 7.2074, 7.2072, 7.2069, 7.2068, 7.2067, 7.2067, 7.2075, 7.2074, 7.2082, 7.2082, 7.2079, 7.2078, 7.2075, 7.2073, 7.2071, 7.2068, 7.2065, 7.2062, 7.2082, 7.2089, 7.2086, 7.2084, 7.2081, 7.2078, 7.2074, 7.2071, 7.2067, 7.2064, 7.2083, 7.208, 7.2077, 7.2076, 7.2072, 7.2079, 7.2076, 7.2072, 7.2071, 7.2068, 7.2065, 7.2061, 7.2059, 7.2067, 7.2063, 7.206, 7.2067, 7.2074, 7.2071, 7.207, 7.2068, 7.2064, 7.2061, 7.2067, 7.2063, 7.2076, 7.2073, 7.208, 7.2077, 7.2077, 7.2075, 7.2079, 7.2076, 7.2075, 7.2072, 7.2072, 7.2079, 7.2076, 7.2073, 7.2078, 7.2074, 7.2071, 7.2068, 7.2068, 7.2076, 7.2076, 7.2073, 7.2104, 7.2101, 7.2109, 7.2107, 7.2114, 7.2123, 7.212, 7.2118, 7.2114, 7.2111, 7.2108, 7.2105, 7.2105, 7.2103, 7.2101, 7.2098, 7.2096, 7.2083, 7.208, 7.209, 7.2086, 7.2093, 7.2091, 7.209, 7.2077, 7.2073, 7.207, 7.2069, 7.2068, 7.2064, 7.206, 7.2058, 7.2057, 7.2065, 7.2063, 7.2061, 7.2059, 7.2057, 7.2055, 7.2054, 7.2052, 7.205, 7.2046, 7.2045, 7.2043, 7.2041, 7.2029, 7.2026, 7.2024, 7.2022, 7.202, 7.2018, 7.2027, 7.2024, 7.2022, 7.2019, 7.2015, 7.2024, 7.2021, 7.202, 7.2029, 7.2026, 7.2023, 7.202, 7.204, 7.204, 7.2036, 7.2044, 7.204, 7.2037, 7.2035, 7.2031, 7.2038, 7.2036, 7.2033, 7.203, 7.2018, 7.2016, 7.2013, 7.2011, 7.1998, 7.1995, 7.1993, 7.1981, 7.1969, 7.1972, 7.196, 7.1957, 7.196700000000001, 7.1965, 7.1973, 7.197, 7.1967, 7.1966, 7.1975, 7.1973, 7.197, 7.1968, 7.1966, 7.1964, 7.1962, 7.196, 7.196, 7.1958, 7.1956, 7.1953, 7.195, 7.1947, 7.1943, 7.1984, 7.1982, 7.198, 7.1978, 7.1974, 7.1971, 7.1969, 7.1966, 7.1974, 7.1971, 7.1968, 7.1965, 7.1973, 7.197, 7.1977, 7.1976, 7.1983, 7.1981, 7.1978, 7.1978, 7.1975, 7.1963, 7.1952, 7.1941, 7.193, 7.1922, 7.1918, 7.1925, 7.1924, 7.1921, 7.1918, 7.1915, 7.1914, 7.1911, 7.1909, 7.1906, 7.1895, 7.1892, 7.1891, 7.1888, 7.1887, 7.1895, 7.1893, 7.1892, 7.1902, 7.1899, 7.1897, 7.1895, 7.1894, 7.1892, 7.1902, 7.1902, 7.1901, 7.19, 7.1897, 7.1895, 7.1904, 7.1892, 7.1888, 7.1886, 7.1895, 7.1893, 7.19, 7.1898, 7.1896, 7.1896, 7.1896, 7.1892, 7.189, 7.1897, 7.1894, 7.1893, 7.1891, 7.1901, 7.1898, 7.1896, 7.1894, 7.1891, 7.1888, 7.1886, 7.1884, 7.1892, 7.1889, 7.1886, 7.1883, 7.1882, 7.188, 7.1882, 7.1892000000000005, 7.189, 7.1888, 7.1896, 7.1894, 7.1892, 7.1901, 7.1899, 7.1896, 7.1894, 7.192, 7.1918, 7.1907, 7.1895, 7.1893, 7.190300000000001, 7.1901, 7.1944, 7.1945, 7.1945, 7.1942, 7.1939, 7.1928, 7.1924, 7.1932, 7.1941, 7.1949, 7.1947, 7.1944, 7.1952, 7.1949, 7.1957, 7.1954, 7.1952, 7.196, 7.1959, 7.1958, 7.1978, 7.1975, 7.1974, 7.197, 7.197, 7.1967, 7.1964, 7.1963, 7.1963, 7.1971, 7.1968, 7.1967, 7.1963, 7.196, 7.1956, 7.1954, 7.1952, 7.195, 7.1948, 7.1947, 7.1947, 7.1948, 7.1937, 7.1934, 7.1931, 7.1928, 7.1926, 7.1933, 7.194, 7.1937, 7.1935, 7.1942, 7.1939, 7.1928, 7.1927, 7.1924, 7.1921, 7.1929, 7.1928, 7.1925, 7.1923, 7.1921, 7.1919, 7.1916, 7.1913, 7.191, 7.1908, 7.1904, 7.1913, 7.1911, 7.1907, 7.1905, 7.1901, 7.1901, 7.1908, 7.1907, 7.1914, 7.1921, 7.1928, 7.1925, 7.1934, 7.1932, 7.1939, 7.1937, 7.1935, 7.1934, 7.1931, 7.1939, 7.1936, 7.1932, 7.1929, 7.1926, 7.1925, 7.1922, 7.192, 7.1917, 7.1915, 7.1915, 7.1912, 7.1909, 7.1918, 7.1915, 7.1923, 7.1931, 7.1927, 7.1925, 7.1933, 7.193, 7.1929, 7.1933, 7.1931, 7.1938, 7.1935, 7.1933, 7.1929, 7.1926, 7.1925, 7.1931, 7.1919, 7.1916, 7.1921, 7.1921, 7.1918, 7.1916, 7.1913, 7.1911, 7.1907, 7.1915, 7.1923, 7.192, 7.1918, 7.1914, 7.1904, 7.1902, 7.1899, 7.1897, 7.1896, 7.1893, 7.19, 7.1897, 7.1894, 7.1892, 7.1889, 7.1886, 7.1883, 7.189, 7.1897, 7.1905, 7.1902, 7.1901, 7.1898, 7.1905, 7.1924, 7.1922, 7.192, 7.1918, 7.1917, 7.1925, 7.1935, 7.1932, 7.1939, 7.1937, 7.1935, 7.1933, 7.1932, 7.193, 7.1939, 7.1939, 7.194, 7.1939, 7.1936, 7.1946, 7.1944, 7.1942, 7.1939, 7.1938, 7.1936, 7.1935, 7.1932, 7.193, 7.1928, 7.1925, 7.1921, 7.1918, 7.1917, 7.1924, 7.1922, 7.1929, 7.1928, 7.1916, 7.1913, 7.191, 7.1907, 7.1907, 7.1905, 7.1903, 7.1902, 7.189, 7.1887, 7.1885, 7.1882, 7.1879, 7.1889, 7.189900000000001, 7.1898, 7.1895, 7.1893, 7.1891, 7.1889, 7.1886, 7.1874, 7.1872, 7.1869, 7.1867, 7.1874, 7.1882, 7.188, 7.1877, 7.1875, 7.1873, 7.187, 7.1867, 7.1875, 7.1872, 7.1881, 7.1878, 7.1875, 7.1873, 7.1861, 7.1859, 7.1856, 7.1854, 7.1853, 7.185, 7.1846, 7.1843, 7.184, 7.1837, 7.1837, 7.1844, 7.1844, 7.1841, 7.1838, 7.1836, 7.1834, 7.1831, 7.1829, 7.1826, 7.1826, 7.1827, 7.1827, 7.1824, 7.1822, 7.1829, 7.1827, 7.1823, 7.182, 7.1827, 7.1833, 7.183, 7.1829, 7.1827, 7.1825, 7.1823, 7.1812, 7.1809, 7.1807, 7.1816, 7.1813, 7.1811, 7.1809, 7.1807, 7.1795, 7.1794, 7.1792, 7.179, 7.1797, 7.1794, 7.1791, 7.178, 7.178, 7.1777, 7.1774, 7.1772, 7.177, 7.1768, 7.1766, 7.1769, 7.1767, 7.1765, 7.1763, 7.177, 7.1768, 7.1765, 7.1763, 7.1752, 7.1749, 7.1748, 7.1745, 7.1743, 7.174, 7.1737, 7.1747000000000005, 7.1745, 7.1752, 7.1751, 7.175, 7.1748, 7.1745, 7.1752, 7.1749, 7.1738, 7.1736, 7.1743, 7.1742, 7.1741, 7.1739, 7.1746, 7.1748, 7.1745, 7.1744, 7.1751, 7.1749, 7.1747, 7.1747, 7.1744, 7.175, 7.1749, 7.1747, 7.1747, 7.1744, 7.1743, 7.1742, 7.174, 7.1755, 7.1761, 7.1769, 7.1766, 7.1774, 7.1772, 7.177, 7.1771, 7.178100000000001, 7.179100000000001, 7.1799, 7.1798, 7.1796, 7.1795, 7.1793, 7.1791, 7.1791, 7.1789, 7.1788, 7.1785, 7.1783, 7.1782, 7.1779, 7.1779, 7.1776, 7.1775, 7.1774, 7.1771, 7.1779, 7.1776, 7.1775, 7.1772, 7.1771, 7.177, 7.1777, 7.1775, 7.1773, 7.1781, 7.1791, 7.1811, 7.1808, 7.1818, 7.1827, 7.1837, 7.1847, 7.1854, 7.1852, 7.1849, 7.1848, 7.1845, 7.1857, 7.1857, 7.1857, 7.1863, 7.1869, 7.1867, 7.1864, 7.1872, 7.187, 7.1869, 7.1866, 7.1864, 7.1863, 7.1861, 7.1859, 7.1857, 7.1856, 7.1856, 7.1854, 7.1854, 7.1862, 7.1859, 7.1858, 7.1865, 7.1862, 7.1859, 7.1856, 7.1873, 7.1879, 7.1876, 7.1893, 7.1894, 7.1891, 7.1888, 7.1885, 7.1882, 7.1881, 7.1881, 7.187, 7.1868, 7.1865, 7.1862, 7.1869, 7.187, 7.1868, 7.1876, 7.1874, 7.1881, 7.1888, 7.1885, 7.1892, 7.1889, 7.1887, 7.1876, 7.1886, 7.1884, 7.1881, 7.1879, 7.1877, 7.1914, 7.1911, 7.191, 7.1908, 7.1916, 7.1916, 7.1914, 7.1912, 7.1909, 7.1899, 7.1896, 7.1903, 7.19, 7.1898, 7.1895, 7.1893, 7.189, 7.1887, 7.1885, 7.1882, 7.188, 7.1887, 7.1886, 7.1884, 7.1892, 7.1889, 7.1886, 7.1886, 7.1883, 7.1883, 7.188, 7.1877, 7.1883, 7.188, 7.1879, 7.1879, 7.1877, 7.1884, 7.1884, 7.1881, 7.1879, 7.1876, 7.1899, 7.1899, 7.19, 7.1897, 7.1904, 7.1902, 7.19, 7.1897, 7.1887, 7.1885, 7.1882, 7.188, 7.1886, 7.1892, 7.189, 7.1888, 7.1885, 7.1883, 7.188, 7.1878, 7.1885, 7.1883, 7.1891, 7.1888, 7.1886, 7.1883, 7.189, 7.1887, 7.1885, 7.1882, 7.1879, 7.1878, 7.1875, 7.1872, 7.1869, 7.1866, 7.1873, 7.187, 7.1867, 7.1866, 7.1874, 7.1874, 7.1871, 7.1869, 7.1867, 7.1865, 7.1864, 7.1861, 7.1858, 7.1855, 7.1862, 7.186, 7.1858, 7.1855, 7.1862, 7.1869, 7.1868, 7.1865, 7.1863, 7.1862, 7.1859, 7.1869000000000005, 7.1867, 7.1866, 7.1864, 7.1871, 7.1869, 7.1875, 7.1872, 7.1872, 7.1878, 7.1876, 7.1873, 7.1872, 7.1869, 7.1867, 7.1873, 7.187, 7.1868, 7.1865, 7.1864, 7.1861, 7.1858, 7.1925, 7.1924, 7.1923, 7.193, 7.193, 7.1929, 7.1926, 7.1924, 7.1921, 7.192, 7.1930000000000005, 7.1927, 7.1933, 7.1931, 7.1928, 7.1935, 7.1932, 7.1931, 7.1937, 7.1934, 7.1943, 7.1941, 7.194, 7.1939, 7.1938, 7.1944, 7.1943, 7.1953000000000005, 7.195, 7.196000000000001, 7.1957, 7.1966, 7.1966, 7.1964, 7.1961, 7.1967, 7.1966, 7.1973, 7.197, 7.1959, 7.1966, 7.1965, 7.1964, 7.1962, 7.196, 7.196, 7.1961, 7.196, 7.1968, 7.1986, 7.1984, 7.1981, 7.199, 7.1987, 7.1993, 7.1999, 7.2007, 7.2004, 7.2001, 7.1998, 7.1997, 7.1994, 7.1992, 7.2001, 7.2007, 7.2006, 7.2003, 7.2001, 7.1999, 7.1996, 7.1993, 7.1991, 7.1989, 7.1986, 7.1986, 7.1993, 7.1992, 7.1989, 7.1986, 7.1983, 7.199, 7.1987, 7.1994, 7.2, 7.1999, 7.1996, 7.1993, 7.1983, 7.1982, 7.2004, 7.2004, 7.2011, 7.2027, 7.2025, 7.2023, 7.203, 7.2027, 7.2029, 7.2037, 7.2028, 7.2035, 7.2035, 7.2032, 7.2033, 7.203, 7.2027, 7.2025, 7.2022, 7.202, 7.2018, 7.2046, 7.2056, 7.2053, 7.2069, 7.2076, 7.2103, 7.21, 7.2097, 7.2103, 7.21, 7.2097, 7.2103, 7.2102, 7.21, 7.2097, 7.2094, 7.2101, 7.211, 7.2117, 7.2116, 7.2113, 7.2115, 7.2112, 7.2137, 7.2138, 7.2139, 7.215, 7.2148, 7.2155, 7.2154, 7.216, 7.2158, 7.2156, 7.2155, 7.2153, 7.215, 7.215, 7.2148, 7.2145, 7.2152, 7.2159, 7.2158, 7.2156, 7.2156, 7.2156, 7.2153, 7.2151, 7.2158, 7.2155, 7.2154, 7.2151, 7.215, 7.2147, 7.2145, 7.2143, 7.2141, 7.2139, 7.2137, 7.2135, 7.2133, 7.2131, 7.2139, 7.2136, 7.2135, 7.2134, 7.2132, 7.2142, 7.214, 7.2139, 7.2136, 7.2133, 7.2132, 7.213, 7.2137, 7.2136, 7.2133, 7.2139, 7.2136, 7.2135, 7.2134, 7.2133, 7.2131, 7.2129, 7.2128, 7.2126, 7.2124, 7.2124, 7.2121, 7.2146, 7.2144, 7.2143, 7.2142, 7.2142, 7.214, 7.2138, 7.2135, 7.2143, 7.215, 7.2149, 7.2147, 7.2144, 7.2144, 7.2143, 7.2141, 7.2138, 7.2144, 7.2143, 7.215, 7.2148, 7.2147, 7.2145, 7.2151, 7.2148, 7.2155, 7.2154, 7.2153, 7.2151, 7.2149, 7.2146, 7.2153, 7.2151, 7.2158, 7.2165, 7.2162, 7.2159, 7.2166, 7.2166, 7.2173, 7.2171, 7.217, 7.2168, 7.2175, 7.2174, 7.2181, 7.2178, 7.2176, 7.2174, 7.2181, 7.2178, 7.2176, 7.2174, 7.2172, 7.2179, 7.218, 7.2177, 7.2175, 7.2165, 7.2166, 7.2166, 7.2163, 7.216, 7.2157, 7.2155, 7.2162, 7.216, 7.2157, 7.2155, 7.2153, 7.2155, 7.2153, 7.2143, 7.2132, 7.2121, 7.2128, 7.2127, 7.2124, 7.2122, 7.2119, 7.2117, 7.2116, 7.2114, 7.2112, 7.211, 7.2107, 7.2107, 7.2108, 7.2097, 7.2094, 7.2093, 7.2092, 7.2099, 7.2098, 7.2105, 7.2102, 7.2108, 7.2106, 7.2104, 7.2103, 7.2102, 7.2099, 7.2097, 7.2107, 7.2105, 7.2131, 7.2132, 7.2129, 7.2127, 7.2127, 7.2129, 7.2146, 7.2144, 7.2141, 7.2147, 7.2146, 7.2145, 7.2143, 7.214, 7.2138, 7.2136, 7.2143, 7.214, 7.2145, 7.2143, 7.2143, 7.2143, 7.2142, 7.2142, 7.214, 7.2137, 7.2134, 7.2132, 7.2129, 7.2126, 7.2124, 7.2121, 7.2119, 7.2116, 7.2122, 7.2119, 7.2117, 7.2114, 7.2104, 7.2104, 7.2101, 7.21, 7.2097, 7.2094, 7.2092, 7.2089, 7.2087, 7.2093, 7.2091, 7.2089, 7.2096, 7.2093, 7.21, 7.2099, 7.2096, 7.2093, 7.209, 7.2088, 7.2095, 7.2086, 7.2084, 7.2082, 7.208, 7.2077, 7.2074, 7.2071, 7.207, 7.2061, 7.205, 7.2041, 7.2032, 7.2024, 7.2021, 7.2019, 7.201, 7.2016, 7.2015, 7.2012, 7.2012, 7.2009, 7.2008, 7.2014, 7.2011, 7.2012, 7.2036, 7.2042, 7.2039, 7.2036, 7.2033, 7.203, 7.2029, 7.2026, 7.2033, 7.2031, 7.2028, 7.2026, 7.2023, 7.2023, 7.2021, 7.202, 7.2017, 7.2015, 7.2014, 7.2012, 7.201, 7.2007, 7.2007, 7.2006, 7.2005, 7.2003, 7.2011, 7.2026, 7.2016, 7.2013, 7.2011, 7.2009, 7.2007, 7.2005, 7.2003, 7.2001, 7.1999, 7.1996, 7.1993, 7.1992, 7.1989, 7.199, 7.1995, 7.1993, 7.1993, 7.199, 7.1988, 7.1985, 7.1984, 7.1985, 7.1993, 7.1984, 7.199, 7.1989, 7.1986, 7.1985, 7.1984, 7.1991, 7.1997, 7.1995, 7.1992, 7.1993, 7.1992, 7.1991, 7.199, 7.1988, 7.1986, 7.1985, 7.1983, 7.1991, 7.1989, 7.1986, 7.1984, 7.1982, 7.198, 7.199000000000001, 7.1988, 7.1986, 7.1987, 7.1985, 7.1983, 7.1982, 7.199, 7.1997, 7.1999, 7.2, 7.2006, 7.2013, 7.2019, 7.2035, 7.2032, 7.2029, 7.2039, 7.2036, 7.2035, 7.2043, 7.204, 7.2038, 7.2036, 7.2035, 7.2034, 7.2024, 7.2021, 7.2019, 7.2016, 7.2014, 7.2011, 7.2001, 7.1998, 7.1996, 7.1993, 7.1992, 7.2009, 7.2026, 7.2024, 7.2023, 7.2044, 7.2042, 7.204, 7.2037, 7.2034, 7.2031, 7.2029, 7.2028, 7.2025, 7.2022, 7.2019, 7.2016, 7.2015, 7.2012, 7.2018, 7.2016, 7.2014, 7.2012, 7.2018, 7.2015, 7.2004, 7.1994, 7.1992, 7.1998, 7.1997, 7.1996, 7.2002, 7.1997, 7.1988, 7.1979, 7.1969, 7.1967, 7.1966, 7.1965, 7.1972, 7.1969, 7.1968, 7.1975, 7.1982, 7.1979, 7.1986, 7.1986, 7.1984, 7.199, 7.1988, 7.1994, 7.1991, 7.1988, 7.1986, 7.1992, 7.1998, 7.2005, 7.2002, 7.2002, 7.2, 7.1999, 7.1999, 7.1998, 7.1995, 7.1994, 7.1991, 7.1988, 7.1988, 7.1978, 7.1975, 7.1972, 7.1969, 7.197900000000001, 7.1976, 7.1967, 7.1972, 7.197, 7.1967, 7.1958, 7.1955, 7.1952, 7.1959, 7.1956, 7.1953, 7.1952, 7.1951, 7.1958, 7.1966, 7.1964, 7.1962, 7.196, 7.1957, 7.1957, 7.1963, 7.1961, 7.1959, 7.1956, 7.1963, 7.1962, 7.196, 7.1966, 7.1966, 7.1966, 7.1964, 7.1962, 7.196, 7.1957, 7.1955, 7.1952, 7.1951, 7.1949, 7.1947, 7.1953, 7.195, 7.1949, 7.1947, 7.1954, 7.1961, 7.1951, 7.1949, 7.1947, 7.1945, 7.1937, 7.1927, 7.1925, 7.1922, 7.192, 7.1918, 7.1916, 7.1915, 7.1905, 7.1912, 7.1909, 7.1906, 7.1898, 7.1904, 7.1901, 7.1899, 7.1906, 7.1904, 7.1902, 7.1902, 7.19, 7.1898, 7.1895, 7.1894, 7.1891, 7.1895, 7.1893, 7.189, 7.1887, 7.1884, 7.1883, 7.1882, 7.188, 7.189, 7.1888, 7.1898, 7.1908, 7.1907, 7.1905, 7.1911, 7.1923, 7.1925, 7.1924, 7.1922, 7.1933, 7.1943, 7.1942, 7.1941, 7.1939, 7.1963, 7.197, 7.1986, 7.1983, 7.1989, 7.1987, 7.1992, 7.1989, 7.1987, 7.1984, 7.1981, 7.1981, 7.198, 7.1978, 7.1976, 7.1975, 7.1973, 7.1974, 7.198, 7.1978, 7.1985, 7.1982, 7.198, 7.1986, 7.1986, 7.1976, 7.1982, 7.1982, 7.1979, 7.1977, 7.1983, 7.198, 7.1977, 7.1975, 7.1973, 7.1979, 7.1977, 7.1975, 7.1974, 7.198, 7.1979, 7.1977, 7.1975, 7.1981, 7.1978, 7.1976, 7.1973, 7.197, 7.1967, 7.1965, 7.1962, 7.196, 7.1966, 7.1964, 7.1969, 7.1968, 7.1967, 7.1973, 7.1971, 7.1977, 7.1976, 7.1976, 7.1974, 7.198, 7.1979, 7.1977, 7.1983, 7.1983, 7.1981, 7.1979, 7.1977, 7.1974, 7.1972, 7.197, 7.1976, 7.1974, 7.1973, 7.197, 7.1969, 7.1967, 7.1972, 7.197, 7.1976, 7.1973, 7.197, 7.1976, 7.1974, 7.1971, 7.197, 7.1967, 7.1965, 7.1972, 7.1978, 7.1984, 7.1982, 7.1979, 7.1978, 7.1978, 7.1977, 7.1975, 7.1981, 7.1979, 7.1976, 7.1973, 7.1971, 7.1969, 7.1968, 7.1966, 7.1971, 7.1968, 7.1967, 7.1964, 7.1969, 7.1966, 7.1963, 7.1969, 7.1966, 7.1965, 7.1962, 7.196, 7.1966, 7.1965, 7.1962, 7.1959, 7.1965, 7.1962, 7.1968, 7.1965, 7.1963, 7.196, 7.1957, 7.1963, 7.1961, 7.1958, 7.1956, 7.1954, 7.1951, 7.1965, 7.1962, 7.196, 7.1958, 7.1956, 7.1955, 7.1953, 7.195, 7.1947, 7.1946, 7.1944, 7.1942, 7.1948, 7.1945, 7.1943, 7.194, 7.1937, 7.1934, 7.1933, 7.1931, 7.1953, 7.1952, 7.195, 7.1951, 7.1977, 7.1978, 7.1981, 7.1982, 7.1992, 7.1997, 7.1995, 7.1996, 7.1993, 7.1991, 7.1989, 7.2003, 7.2001, 7.2, 7.1998, 7.1997, 7.2011, 7.2018, 7.2016, 7.2013, 7.2011, 7.2017, 7.2016, 7.2014, 7.2021, 7.2028, 7.2027, 7.2025, 7.2031, 7.2032, 7.2031, 7.2037, 7.2052, 7.2049, 7.2047, 7.2055, 7.2061, 7.2059, 7.2074, 7.2073, 7.2065, 7.2064, 7.2063, 7.2061, 7.2067, 7.2066, 7.2065, 7.211, 7.2145, 7.2143, 7.2142, 7.2148, 7.2154, 7.2152, 7.2149, 7.2146, 7.2152, 7.2149, 7.2155, 7.2153, 7.2151, 7.2149, 7.2155, 7.2153, 7.215, 7.2149, 7.2156, 7.2153, 7.215, 7.2147, 7.2153, 7.2159, 7.2158, 7.2157, 7.2156, 7.2166, 7.2181, 7.2179, 7.2176, 7.2182, 7.2189, 7.2189, 7.2188, 7.2186, 7.2184, 7.2181, 7.218, 7.2186, 7.2184, 7.2181, 7.2187, 7.2184, 7.2181, 7.2179, 7.2184, 7.2183, 7.2181, 7.2179, 7.2176, 7.2173, 7.2171, 7.2169, 7.2174, 7.218, 7.2177, 7.2177, 7.2174, 7.2173, 7.2171, 7.2171, 7.2168, 7.2165, 7.2171, 7.2169, 7.2175, 7.2173, 7.217, 7.2167, 7.2165, 7.2163, 7.2161, 7.2167, 7.2164, 7.2163, 7.2161, 7.2158, 7.2155, 7.2161, 7.2159, 7.2157, 7.2163, 7.2185, 7.2182, 7.2188, 7.2186, 7.22, 7.2197, 7.2196, 7.2194, 7.2199, 7.2217, 7.2214, 7.2213, 7.221, 7.2207, 7.2228, 7.2226, 7.2224, 7.223, 7.2228, 7.2233, 7.2246, 7.2245, 7.2243, 7.2242, 7.224, 7.2239, 7.2244, 7.2241, 7.2246, 7.2251, 7.2257, 7.2256, 7.2261, 7.2275, 7.2272, 7.2271, 7.2269, 7.2268, 7.2266, 7.2264, 7.2264, 7.2262, 7.2269, 7.2267, 7.2265, 7.2271, 7.227, 7.2276, 7.2275, 7.2272, 7.2278, 7.2276, 7.2274, 7.2272, 7.2272, 7.2278, 7.2284, 7.2289, 7.2287, 7.2287, 7.2284, 7.2282, 7.2319, 7.2316, 7.2316, 7.2307, 7.2308, 7.2306, 7.2304, 7.231, 7.2311, 7.2308, 7.2306, 7.2305, 7.2303, 7.2301, 7.2314, 7.2328, 7.2333, 7.2331, 7.2337, 7.2335, 7.2332, 7.233, 7.2327, 7.2325, 7.2323, 7.2322, 7.2319, 7.2317, 7.2315, 7.2313, 7.2319, 7.2317, 7.2315, 7.2313, 7.2323, 7.2322, 7.2329, 7.2328, 7.2327, 7.2325, 7.2348, 7.2346, 7.2346, 7.2345, 7.2337, 7.2339, 7.2337, 7.2329, 7.2335, 7.2333, 7.2333, 7.234, 7.2356, 7.2353, 7.2351, 7.2356, 7.2353, 7.2351, 7.2348, 7.2357, 7.2355, 7.236, 7.2357, 7.2356, 7.2353, 7.2352, 7.235, 7.235, 7.2347, 7.2344, 7.2341, 7.2338, 7.2335, 7.2332, 7.2329, 7.2334, 7.2331, 7.233, 7.2331, 7.2336, 7.2334, 7.2331, 7.2329, 7.2335, 7.2333, 7.2349, 7.2346, 7.2343, 7.2341, 7.2346, 7.2343, 7.234, 7.2338, 7.2335, 7.2333, 7.2341, 7.2349, 7.2347, 7.2348, 7.2346, 7.2343, 7.2341, 7.2365, 7.237, 7.2367, 7.2366, 7.2365, 7.2362, 7.236, 7.2357, 7.2362, 7.2367, 7.2367, 7.2372, 7.2377, 7.2375, 7.2373, 7.2371, 7.2368, 7.2365, 7.2362, 7.2367, 7.2364, 7.2361, 7.2359, 7.2357, 7.2363, 7.2361, 7.2361, 7.236, 7.2359, 7.2358, 7.2356, 7.2353, 7.235, 7.2348, 7.2347, 7.2345, 7.2343, 7.2349, 7.2355, 7.2353, 7.2352, 7.235, 7.2348, 7.2346, 7.2345, 7.2344, 7.2341, 7.2338, 7.2336, 7.2334, 7.2332, 7.233, 7.2328, 7.2325, 7.2325, 7.2323, 7.2322, 7.2319, 7.2324, 7.2322, 7.2319, 7.2316, 7.2314, 7.2319, 7.2325, 7.2323, 7.2331, 7.2328, 7.2334, 7.2333, 7.2341, 7.2341, 7.2339, 7.2337, 7.2343, 7.2341, 7.2339, 7.2337, 7.2335, 7.2333, 7.2331, 7.2328, 7.2334, 7.2332, 7.2338, 7.2336, 7.2342], '192.168.122.112': [10.3512, 10.5099, 8.9685, 8.5216, 8.0372, 7.649, 7.3723, 7.8898, 7.6171, 7.5333, 7.4328, 7.2926, 7.2379, 7.1381, 7.0644, 6.989, 6.9769, 6.9304, 6.915, 6.8952, 6.8467, 6.7972, 6.7457, 6.8056, 6.7979, 6.779, 6.7527, 6.7013, 6.724, 6.6991, 7.0212, 7.0223, 6.9715, 6.9457, 7.0555, 7.0345, 6.9879, 7.2579, 7.3748, 7.3362, 7.2881, 7.3705, 7.3243, 7.2945, 7.324, 7.3237, 7.3204, 7.3101, 7.2778, 7.2932, 7.3019, 7.3976, 7.379, 7.3692, 7.4266, 7.4062, 7.3703, 7.3378, 7.3056, 7.2225, 7.3745, 7.473, 7.4399, 7.4145, 7.4021, 7.3914, 7.3614, 7.3356, 7.3913, 7.3642, 7.3743, 7.3574, 7.3385, 7.3162, 7.3083, 7.2887, 7.3356, 7.3228, 7.3015, 7.2803, 7.2607, 7.247, 7.2266, 7.2069, 7.1854, 7.1648, 7.1433, 7.1227, 7.1628, 7.1468, 7.1304, 7.1167, 7.1002, 7.086, 7.0729, 7.0625, 7.0516, 7.0343, 7.0215, 7.068, 7.0629, 7.0569, 6.9989, 6.9844, 6.9708, 6.9697, 6.9641, 6.9584, 6.9482, 6.9404, 6.935, 6.9241, 6.9106, 6.9445, 6.9298, 6.9224, 6.9095, 6.9062, 6.9034, 6.9335, 6.9214, 6.9141, 7.1295, 7.1166, 7.1464, 7.1343, 7.1233, 7.1083, 7.0959, 7.1222, 7.1145, 7.101, 7.0994, 7.1316, 7.1213, 7.1146, 7.1018, 7.0901, 7.0802, 7.0706, 7.0595, 7.0555, 7.0845, 7.075, 7.0668, 7.0554, 7.0811, 7.1066, 7.0969, 7.0882, 7.0804, 7.0745, 7.0706, 7.0633, 7.0585, 7.0822, 7.1057, 7.1273, 7.1211, 7.1116, 7.1016, 7.1289, 7.1207, 7.1119, 7.109, 7.1324, 7.1212, 7.1435, 7.1695, 7.1585, 7.1475, 7.1395, 7.1317, 7.1251, 7.1456, 7.1671, 7.163, 7.1564, 7.152, 7.1443, 7.1754, 7.1672, 7.1628, 7.1866, 7.2084, 7.2292, 7.2214, 7.2125, 7.2036, 7.1993, 7.1985, 7.1894, 7.1844, 7.1782, 7.1727, 7.1653, 7.2097, 7.2279, 7.2273, 7.2199, 7.2454, 7.2362, 7.2278, 7.275, 7.2692, 7.2675, 7.2619, 7.3453, 7.3392, 7.3361, 7.3267, 7.3476, 7.3763, 7.3708, 7.3658, 7.359, 7.3505, 7.3454, 7.3431, 7.3357, 7.352, 7.3459, 7.3378, 7.3292, 7.3462, 7.3394, 7.3575, 7.3497, 7.3815, 7.3755, 7.3679, 7.3592, 7.3512, 7.3437, 7.3418, 7.3355, 7.3126, 7.3064, 7.3003, 7.3071, 7.3038, 7.3286, 7.3273, 7.3206, 7.3155, 7.3077, 7.2855, 7.2787, 7.2746, 7.27, 7.2682, 7.2866, 7.2793, 7.2728, 7.2698, 7.2622, 7.2581, 7.2607, 7.2561, 7.2727, 7.2671, 7.2837, 7.2772, 7.2912, 7.2846, 7.2796, 7.297, 7.2978, 7.2943, 7.2948, 7.2897, 7.3048, 7.3002, 7.3153, 7.3093, 7.3038, 7.298, 7.3135, 7.3119, 7.3048, 7.2995, 7.2939, 7.2887, 7.2837, 7.2782, 7.2731, 7.2694, 7.2821, 7.2969, 7.2918, 7.2863, 7.2812, 7.2759, 7.271, 7.2678, 7.2651, 7.2624, 7.2572, 7.2542, 7.2668, 7.2816, 7.2762, 7.2729, 7.2841, 7.2794, 7.2774, 7.2755, 7.2708, 7.2649, 7.2604, 7.2689, 7.2647, 7.261, 7.2783, 7.2718, 7.2832, 7.2785, 7.2721, 7.2674, 7.2632, 7.2602, 7.2714, 7.2653, 7.2634, 7.3262, 7.3375, 7.3321, 7.3289, 7.3243, 7.3362, 7.3466, 7.3404, 7.3368, 7.3312, 7.327, 7.3395, 7.3356, 7.348, 7.3423, 7.337, 7.3315, 7.3279, 7.3226, 7.3201, 7.3179, 7.3123, 7.3084, 7.3186, 7.3127, 7.3087, 7.3195, 7.3153, 7.3098, 7.3044, 7.2987, 7.2808, 7.2906, 7.287, 7.2817, 7.292, 7.3025, 7.3014, 7.297, 7.2956, 7.3069, 7.3032, 7.3, 7.2963, 7.2915, 7.2881, 7.2875, 7.2824, 7.278, 7.2743, 7.2734, 7.2751, 7.2721, 7.2682, 7.2641, 7.2635, 7.274, 7.2723, 7.2813, 7.3044, 7.3042, 7.3025, 7.3112, 7.3213, 7.3452, 7.3398, 7.3238, 7.3213, 7.3183, 7.328, 7.3256, 7.3341, 7.3293, 7.3399, 7.3349, 7.3444, 7.3419, 7.3372, 7.3457, 7.3863, 7.3827, 7.3788, 7.3741, 7.3737, 7.3717, 7.3677, 7.3654, 7.3742, 7.3702, 7.3667, 7.365, 7.3603, 7.3697, 7.3786, 7.3757, 7.3841, 7.3799, 7.3753, 7.3723, 7.3697, 7.3653, 7.3607, 7.3578, 7.3553, 7.3536, 7.3619, 7.36, 7.3601, 7.3579, 7.3542, 7.3503, 7.3716, 7.3809, 7.376, 7.3857, 7.3839, 7.3802, 7.3766, 7.3843, 7.3806, 7.3769, 7.374, 7.3831, 7.3783, 7.3757, 7.3834, 7.3801, 7.3784, 7.3742, 7.3826, 7.3819, 7.3803, 7.3796, 7.3753, 7.3713, 7.399, 7.3959, 7.4033, 7.4103, 7.406, 7.4167, 7.4244, 7.4213, 7.4168, 7.4133, 7.41, 7.4075, 7.4143, 7.4129, 7.4207, 7.4549, 7.4508, 7.4465, 7.4449, 7.4523, 7.4479, 7.4553, 7.4563, 7.4527, 7.4525, 7.4502, 7.4503, 7.4481, 7.4448, 7.4522, 7.4532, 7.4613, 7.4521, 7.4482, 7.4681, 7.469, 7.476, 7.4734, 7.4767, 7.4736, 7.4695, 7.4699, 7.5003, 7.5079, 7.504, 7.5116, 7.5081, 7.5184, 7.5172, 7.5154, 7.5115, 7.5104, 7.5075, 7.5211, 7.5182, 7.5154, 7.5112, 7.5073, 7.516, 7.5147, 7.5124, 7.5092, 7.5059, 7.5068, 7.5071, 7.5061, 7.5027, 7.5003, 7.4973, 7.494, 7.4904, 7.5001, 7.4975, 7.4942, 7.4912, 7.4874, 7.4834, 7.4904, 7.4864, 7.4932, 7.4902, 7.4879, 7.4856, 7.4816, 7.4893, 7.4958, 7.4925, 7.489, 7.4886, 7.485, 7.4826, 7.4787, 7.4844, 7.4902, 7.4975, 7.4942, 7.5014, 7.5083, 7.507, 7.5033, 7.4995, 7.4962, 7.4925, 7.4888, 7.4861, 7.4933, 7.4907, 7.487, 7.4847, 7.491, 7.4878, 7.4848, 7.4814, 7.4821, 7.4791, 7.4758, 7.4721, 7.4787, 7.4752, 7.4715, 7.4706, 7.4669, 7.4633, 7.4697, 7.4672, 7.4637, 7.4608, 7.4574, 7.4542, 7.4511, 7.4474, 7.4453, 7.4435, 7.4416, 7.4399, 7.4371, 7.4339, 7.4312, 7.4366, 7.4336, 7.4481, 7.4464, 7.4436, 7.4417, 7.4391, 7.437, 7.4339, 7.4325, 7.431, 7.4288, 7.426, 7.4315, 7.428, 7.4339, 7.4307, 7.4294, 7.4354, 7.434, 7.4307, 7.4279, 7.4255, 7.4228, 7.428, 7.426, 7.4226, 7.4191, 7.4165, 7.4215, 7.412, 7.4026, 7.3995, 7.3972, 7.3943, 7.3916, 7.3898, 7.3889, 7.4041, 7.4014, 7.3986, 7.404, 7.4013, 7.3983, 7.4224, 7.4305, 7.4287, 7.4256, 7.4224, 7.4197, 7.4253, 7.4231, 7.4201, 7.417, 7.4228, 7.4219, 7.4203, 7.4191, 7.4182, 7.4155, 7.4258, 7.4243, 7.4295, 7.4264, 7.4235, 7.4218, 7.4272, 7.4255, 7.4241, 7.4294, 7.4264, 7.4239, 7.4284, 7.4262, 7.4318, 7.4295, 7.4272, 7.4359, 7.434, 7.4387, 7.4362, 7.434, 7.4315, 7.4306, 7.4277, 7.4248, 7.4223, 7.4276, 7.4331, 7.4384, 7.4375, 7.435, 7.4318, 7.429, 7.4284, 7.4336, 7.4333, 7.4304, 7.4288, 7.4341, 7.4392, 7.4559, 7.453, 7.4508, 7.4491, 7.4665, 7.4712, 7.4689, 7.4684, 7.4661, 7.4642, 7.4614, 7.4598, 7.4646, 7.4619, 7.4677, 7.4659, 7.4639, 7.4616, 7.4596, 7.4642, 7.4953, 7.4938, 7.4923, 7.4911, 7.4888, 7.4865, 7.4777, 7.4758, 7.4807, 7.4849, 7.4985, 7.496, 7.4943, 7.4917, 7.4894, 7.4871, 7.4853, 7.4825, 7.48, 7.4784, 7.476, 7.4734, 7.4779, 7.4754, 7.4731, 7.4703, 7.4751, 7.4723, 7.4773, 7.4751, 7.4724, 7.4719, 7.4711, 7.4693, 7.4672, 7.4664, 7.4644, 7.4623, 7.46, 7.4663, 7.4667, 7.4647, 7.4627, 7.4787, 7.4764, 7.4737, 7.4711, 7.4696, 7.4669, 7.4661, 7.4635, 7.4621, 7.4629, 7.4612, 7.4589, 7.4565, 7.4612, 7.4597, 7.4575, 7.4697, 7.4685, 7.4673, 7.4654, 7.4786, 7.4717, 7.4698, 7.4888, 7.5005, 7.4978, 7.4953, 7.4936, 7.4986, 7.5031, 7.5009, 7.5007, 7.5055, 7.5038, 7.503, 7.5072, 7.5064, 7.5036, 7.5015, 7.4988, 7.4962, 7.4934, 7.4973, 7.4952, 7.4995, 7.497, 7.4943, 7.4939, 7.4912, 7.4884, 7.4863, 7.4838, 7.4878, 7.4919, 7.4902, 7.4878, 7.4865, 7.4846, 7.4823, 7.4804, 7.4846, 7.4824, 7.4863, 7.4898, 7.4873, 7.4858, 7.485, 7.4833, 7.4808, 7.479, 7.478, 7.4771, 7.4762, 7.4742, 7.4722, 7.4722, 7.4707, 7.463, 7.4614, 7.4596, 7.4573, 7.4557, 7.4539, 7.4587, 7.4626, 7.4609, 7.4654, 7.4697, 7.4676, 7.4667, 7.4651, 7.4692, 7.468, 7.4666, 7.4657, 7.4634, 7.4613, 7.4606, 7.4649, 7.4695, 7.467, 7.4645, 7.4626, 7.4613, 7.4649, 7.4628, 7.4607, 7.4585, 7.4562, 7.4537, 7.4578, 7.4566, 7.4556, 7.4545, 7.4589, 7.4571, 7.4617, 7.4653, 7.4639, 7.4686, 7.4662, 7.4637, 7.4625, 7.4604, 7.4592, 7.457, 7.4548, 7.4587, 7.4636, 7.467, 7.4651, 7.4626, 7.4613, 7.4629, 7.4571, 7.4553, 7.4541, 7.4577, 7.4614, 7.4656, 7.4646, 7.4695, 7.4679, 7.4669, 7.4645, 7.4626, 7.4619, 7.4613, 7.4596, 7.4655, 7.4634, 7.4628, 7.462, 7.4601, 7.4644, 7.4685, 7.4677, 7.4656, 7.4643, 7.4622, 7.46, 7.4638, 7.4618, 7.4607, 7.4592, 7.4585, 7.4625, 7.4612, 7.4592, 7.4572, 7.4552, 7.4537, 7.4516, 7.4495, 7.4537, 7.4524, 7.4503, 7.449, 7.4475, 7.4455, 7.4445, 7.4483, 7.4463, 7.4441, 7.444, 7.4428, 7.4409, 7.439, 7.4373, 7.4361, 7.4342, 7.4327, 7.4374, 7.4364, 7.4412, 7.4399, 7.4384, 7.4432, 7.4416, 7.4399, 7.4383, 7.4366, 7.4354, 7.4337, 7.432, 7.4298, 7.4285, 7.428, 7.4266, 7.4309, 7.4297, 7.4286, 7.4272, 7.4262, 7.4249, 7.4235, 7.4276, 7.4258, 7.4301, 7.4286, 7.4279, 7.4271, 7.4264, 7.4243, 7.4226, 7.4264, 7.4258, 7.4237, 7.4224, 7.421, 7.4195, 7.4192, 7.4186, 7.4166, 7.4254, 7.4248, 7.424, 7.4224, 7.4209, 7.419, 7.417, 7.4154, 7.4197, 7.4182, 7.4174, 7.4158, 7.4137, 7.4127, 7.4114, 7.4153, 7.4142, 7.4129, 7.4167, 7.4155, 7.4199, 7.4188, 7.4172, 7.421, 7.4189, 7.4173, 7.4224, 7.4263, 7.4294, 7.4335, 7.4325, 7.4313, 7.4349, 7.4329, 7.431, 7.4292, 7.4279, 7.4315, 7.4296, 7.4329, 7.4313, 7.4293, 7.4283, 7.4277, 7.4259, 7.4239, 7.4219, 7.4205, 7.4198, 7.4183, 7.4178, 7.4211, 7.4193, 7.4177, 7.417, 7.416, 7.42, 7.418, 7.4162, 7.4145, 7.4129, 7.4113, 7.4098, 7.4084, 7.4067, 7.406, 7.4042, 7.4028, 7.4076, 7.4063, 7.4044, 7.4026, 7.4006, 7.4039, 7.4033, 7.4067, 7.4099, 7.4083, 7.4064, 7.4062, 7.4049, 7.4044, 7.4025, 7.4061, 7.4063, 7.405, 7.4042, 7.4028, 7.4013, 7.3996, 7.3986, 7.3973, 7.3964, 7.3947, 7.3934, 7.3915, 7.3951, 7.3937, 7.392, 7.391, 7.3945, 7.3926, 7.3911, 7.3913, 7.3903, 7.3895, 7.388, 7.3863, 7.3848, 7.3829, 7.3834, 7.3816, 7.3797, 7.3796, 7.378, 7.3763, 7.3748, 7.3735, 7.3826, 7.3814, 7.3801, 7.3787, 7.377, 7.3756, 7.3741, 7.3771, 7.3758, 7.3753, 7.3736, 7.3879, 7.3865, 7.3847, 7.383, 7.3822, 7.3805, 7.3837, 7.3821, 7.3854, 7.3836, 7.3821, 7.4004, 7.3988, 7.4017, 7.4002, 7.3984, 7.3926, 7.3911, 7.3892, 7.3922, 7.3953, 7.3946, 7.3929, 7.3911, 7.3905, 7.39, 7.389, 7.3881, 7.3868, 7.386, 7.3892, 7.3875, 7.3906, 7.3895, 7.388, 7.3865, 7.3851, 7.3834, 7.3822, 7.3808, 7.3792, 7.3779, 7.3764, 7.3746, 7.3735, 7.3719, 7.3747, 7.3734, 7.3718, 7.3709, 7.3738, 7.3721, 7.3703, 7.3695, 7.3686, 7.367, 7.3656, 7.3687, 7.367, 7.3661, 7.3688, 7.3717, 7.3701, 7.3702, 7.3689, 7.3676, 7.3662, 7.3648, 7.3641, 7.3628, 7.3625, 7.3615, 7.3599, 7.3595, 7.3588, 7.3575, 7.3564, 7.3644, 7.3587, 7.358, 7.3609, 7.3601, 7.3595, 7.3587, 7.3569, 7.3606, 7.3594, 7.3581, 7.3568, 7.3559, 7.3547, 7.3534, 7.3579, 7.3567, 7.3552, 7.3537, 7.3524, 7.3552, 7.359, 7.358, 7.3563, 7.3592, 7.3618, 7.3601, 7.3587, 7.3578, 7.3611, 7.3602, 7.359, 7.3575, 7.3564, 7.3551, 7.3534, 7.3524, 7.3519, 7.3506, 7.3493, 7.3525, 7.3512, 7.3497, 7.3484, 7.3471, 7.3456, 7.3448, 7.3439, 7.3429, 7.3418, 7.3408, 7.3395, 7.3385, 7.3375, 7.339, 7.3488, 7.3565, 7.355, 7.3581, 7.3575, 7.3565, 7.3577, 7.3614, 7.3603, 7.3611, 7.3655, 7.3655, 7.3651, 7.3644, 7.3632, 7.3624, 7.3612, 7.3595, 7.3585, 7.358, 7.3564, 7.3555, 7.354, 7.3526, 7.3511, 7.35, 7.3491, 7.3484, 7.3521, 7.3512, 7.3539, 7.3536, 7.3483, 7.3474, 7.3465, 7.3461, 7.3451, 7.3442, 7.3469, 7.3496, 7.3487, 7.3481, 7.347, 7.3457, 7.3443, 7.3432, 7.3424, 7.3421, 7.3449, 7.3435, 7.3467, 7.3456, 7.3453, 7.3482, 7.3467, 7.3459, 7.3445, 7.3436, 7.3464, 7.3458, 7.3448, 7.3437, 7.3424, 7.3415, 7.3411, 7.34, 7.3385, 7.3373, 7.3399, 7.339, 7.3375, 7.3363, 7.3351, 7.3337, 7.3328, 7.3314, 7.3304, 7.33, 7.3289, 7.3281, 7.327, 7.3302, 7.3295, 7.3287, 7.3316, 7.3341, 7.3368, 7.3353, 7.3341, 7.3334, 7.332, 7.3347, 7.3341, 7.3334, 7.3322, 7.3309, 7.3333, 7.3325, 7.3317, 7.3313, 7.3339, 7.3325, 7.3311, 7.3297, 7.3331, 7.332, 7.3306, 7.3333, 7.332, 7.3308, 7.3301, 7.3286, 7.3286, 7.3271, 7.3257, 7.3243, 7.3233, 7.3226, 7.3218, 7.3204, 7.3195, 7.3192, 7.3216, 7.3209, 7.3234, 7.3259, 7.3258, 7.3252, 7.3237, 7.3229, 7.3214, 7.321, 7.3236, 7.3221, 7.3206, 7.3194, 7.318, 7.3166, 7.3164, 7.3155, 7.318, 7.3166, 7.3152, 7.3145, 7.3136, 7.3124, 7.3146, 7.3139, 7.3125, 7.3111, 7.31, 7.3087, 7.3073, 7.314, 7.3126, 7.3129, 7.3124, 7.3192, 7.3182, 7.3168, 7.3156, 7.3143, 7.317, 7.3166, 7.3197, 7.3203, 7.3213, 7.3257, 7.3286, 7.3278, 7.3267, 7.3333, 7.3334, 7.3325, 7.3312, 7.3336, 7.3334, 7.333, 7.3319, 7.3321, 7.331, 7.3297, 7.3323, 7.3314, 7.3342, 7.3336, 7.3322, 7.3308, 7.3303, 7.3295, 7.3284, 7.3314, 7.3304, 7.3332, 7.3324, 7.3316, 7.3435, 7.3434, 7.3421, 7.3413, 7.3403, 7.3392, 7.3381, 7.3373, 7.3361, 7.3385, 7.3381, 7.346, 7.3525, 7.3518, 7.3505, 7.3507, 7.3531, 7.3555, 7.3548, 7.3538, 7.3533, 7.356, 7.3549, 7.3538, 7.3532, 7.3529, 7.3522, 7.351, 7.3503, 7.3531, 7.3519, 7.3505, 7.3496, 7.3484, 7.3475, 7.3464, 7.3459, 7.3453, 7.3478, 7.3467, 7.3462, 7.3449, 7.3437, 7.3433, 7.3497, 7.349, 7.3494, 7.3482, 7.3474, 7.3476, 7.3463, 7.3456, 7.3442, 7.3436, 7.3427, 7.3419, 7.3409, 7.3405, 7.3395, 7.342, 7.3413, 7.3436, 7.3423, 7.342, 7.3437, 7.3428, 7.3415, 7.3405, 7.3394, 7.3385, 7.3374, 7.3368, 7.336, 7.3348, 7.3371, 7.3394, 7.3381, 7.3368, 7.3361, 7.3387, 7.3375, 7.3362, 7.3349, 7.3371, 7.3358, 7.3346, 7.3332, 7.3352, 7.3349, 7.3373, 7.3361, 7.3348, 7.3337, 7.3331, 7.3325, 7.3315, 7.3308, 7.3295, 7.3283, 7.3281, 7.3276, 7.3274, 7.3265, 7.3287, 7.3282, 7.3276, 7.3269, 7.3261, 7.3249, 7.3243, 7.3231, 7.3225, 7.3213, 7.3203, 7.3191, 7.3185, 7.3208, 7.3202, 7.3189, 7.3183, 7.3172, 7.3163, 7.3152, 7.3139, 7.3129, 7.3167, 7.3244, 7.327, 7.3295, 7.332, 7.3309, 7.3296, 7.3312, 7.3302, 7.3301, 7.3292, 7.328, 7.3267, 7.3262, 7.3249, 7.3269, 7.3258, 7.325, 7.3273, 7.3262, 7.3284, 7.3276, 7.3297, 7.3285, 7.3281, 7.3286, 7.3274, 7.3264, 7.3255, 7.3244, 7.3232, 7.3219, 7.321, 7.3202, 7.3195, 7.3219, 7.3218, 7.3206, 7.3197, 7.3189, 7.3183, 7.3242, 7.3238, 7.323, 7.3226, 7.3214, 7.3207, 7.3201, 7.3191, 7.3194, 7.3188, 7.3184, 7.3174, 7.3165, 7.3193, 7.3184, 7.3173, 7.3167, 7.3193, 7.316, 7.3151, 7.3175, 7.3165, 7.316, 7.3154, 7.3147, 7.3139, 7.3139, 7.3129, 7.312, 7.3116, 7.314, 7.3128, 7.3159, 7.3146, 7.3167, 7.3158, 7.3183, 7.3177, 7.3198, 7.319, 7.3178, 7.3173, 7.3161, 7.3183, 7.3171, 7.3167, 7.3155, 7.3146, 7.3167, 7.3157, 7.3145, 7.3133, 7.312, 7.3107, 7.3102, 7.309, 7.3084, 7.3078, 7.3065, 7.3081, 7.307, 7.3061, 7.3048, 7.304, 7.3017, 7.3037, 7.3107, 7.3107, 7.3097, 7.3097, 7.3088, 7.3108, 7.3102, 7.3096, 7.3084, 7.3077, 7.3069, 7.3087, 7.3111, 7.3102, 7.3092, 7.3085, 7.3104, 7.3092, 7.3081, 7.3069, 7.3061, 7.3054, 7.3042, 7.3033, 7.3025, 7.3017, 7.301, 7.3005, 7.2996, 7.2986, 7.3013, 7.304, 7.3032, 7.3058, 7.305, 7.3046, 7.3038, 7.303, 7.3052, 7.3042, 7.3031, 7.3019, 7.3011, 7.3001, 7.2991, 7.298, 7.2973, 7.2966, 7.2956, 7.2944, 7.297, 7.2962, 7.2983, 7.2973, 7.2963, 7.2954, 7.2943, 7.2962, 7.2952, 7.2976, 7.2968, 7.2959, 7.2948, 7.2939, 7.2931, 7.292, 7.291, 7.2929, 7.2949, 7.2971, 7.296, 7.2982, 7.2971, 7.2961, 7.2949, 7.294, 7.2935, 7.2928, 7.2923, 7.2915, 7.2933, 7.2954, 7.2966, 7.296, 7.2952, 7.2943, 7.2933, 7.2951, 7.2951, 7.2943, 7.2964, 7.2955, 7.2946, 7.2938, 7.2932, 7.2925, 7.2925, 7.2919, 7.2908, 7.2906, 7.2898, 7.2891, 7.2881, 7.2875, 7.2866, 7.2866, 7.2887, 7.2881, 7.2872, 7.2893, 7.2882, 7.2873, 7.2867, 7.2889, 7.2908, 7.2899, 7.289, 7.2879, 7.287, 7.2861, 7.2884, 7.2873, 7.2867, 7.2862, 7.2853, 7.2843, 7.2833, 7.2823, 7.2814, 7.2803, 7.2828, 7.2847, 7.2845, 7.2838, 7.2829, 7.2851, 7.2842, 7.2836, 7.2827, 7.2823, 7.2823, 7.2812, 7.2803, 7.2793, 7.2787, 7.2779, 7.2771, 7.2763, 7.2757, 7.2755, 7.275, 7.2745, 7.2735, 7.2758, 7.2754, 7.2743, 7.2733, 7.2725, 7.2718, 7.2715, 7.2706, 7.2698, 7.275, 7.2747, 7.2738, 7.273, 7.2723, 7.2722, 7.2717, 7.2742, 7.2764, 7.2757, 7.2747, 7.2739, 7.273, 7.2721, 7.2714, 7.2703, 7.2698, 7.2689, 7.268, 7.2671, 7.2669, 7.2665, 7.2656, 7.2651, 7.2644, 7.2635, 7.2638, 7.2659, 7.2652, 7.2645, 7.2635, 7.2631, 7.2628, 7.2646, 7.2643, 7.2636, 7.2655, 7.2651, 7.2646, 7.2636, 7.2628, 7.2618, 7.2608, 7.2599, 7.2592, 7.2615, 7.2605, 7.2625, 7.2617, 7.2608, 7.2598, 7.2591, 7.2585, 7.2608, 7.26, 7.2594, 7.2585, 7.261, 7.2632, 7.2627, 7.2618, 7.2612, 7.2632, 7.2624, 7.2622, 7.2614, 7.2607, 7.2598, 7.2591, 7.2584, 7.2582, 7.2573, 7.2567, 7.2568, 7.2561, 7.2553, 7.2548, 7.2543, 7.2537, 7.2533, 7.2523, 7.2514, 7.2533, 7.2559, 7.2549, 7.2541, 7.2534, 7.2525, 7.2516, 7.2506, 7.2529, 7.2523, 7.2516, 7.2535, 7.2526, 7.2547, 7.2513, 7.2506, 7.2497, 7.2489, 7.2482, 7.2488, 7.2479, 7.247, 7.2462, 7.2461, 7.2458, 7.2453, 7.2449, 7.2441, 7.2437, 7.2432, 7.2424, 7.2444, 7.2436, 7.2429, 7.2422, 7.2415, 7.2414, 7.2405, 7.2398, 7.239, 7.2381, 7.2373, 7.2371, 7.2373, 7.2364, 7.2383, 7.2389, 7.2383, 7.2378, 7.2377, 7.2371, 7.2365, 7.2359, 7.2355, 7.2348, 7.2367, 7.2358, 7.235, 7.236000000000001, 7.2387, 7.2407, 7.2399, 7.239, 7.2407, 7.2402, 7.2393, 7.2387, 7.2379, 7.2373, 7.2364, 7.2354, 7.2352, 7.2344, 7.2392, 7.2386, 7.2378, 7.2374, 7.2432, 7.2497, 7.2493, 7.2513, 7.2504, 7.2497, 7.2492, 7.2486, 7.2479, 7.2476, 7.2471, 7.2464, 7.2457, 7.2453, 7.2473, 7.2469, 7.2464, 7.2461, 7.2471000000000005, 7.248100000000001, 7.2541, 7.254, 7.2585, 7.2579, 7.2571, 7.2592, 7.2584, 7.2575, 7.2566, 7.2585, 7.2577, 7.2597, 7.2589, 7.2584, 7.2575, 7.2566, 7.2557, 7.255, 7.2542, 7.2536, 7.2531, 7.2525, 7.2518, 7.2511, 7.2482, 7.2604, 7.2602, 7.2595, 7.2587, 7.2603, 7.2594, 7.2586, 7.2581, 7.2573, 7.2564, 7.2558, 7.2549, 7.254, 7.2536, 7.2529, 7.2522, 7.2513, 7.2506, 7.2526, 7.2519, 7.251, 7.2529, 7.2522, 7.2519, 7.2514, 7.251, 7.2503, 7.2494, 7.2486, 7.2484, 7.2478, 7.2452, 7.2447, 7.2438, 7.2433, 7.2429, 7.2421, 7.2427, 7.2422, 7.2417, 7.241, 7.2401, 7.2421, 7.2417, 7.2409, 7.2404, 7.2396, 7.2392, 7.2384, 7.2376, 7.2371, 7.2365, 7.2356, 7.2354, 7.235, 7.2346, 7.2338, 7.2329, 7.2324, 7.2315, 7.2306, 7.2308, 7.2302, 7.2295, 7.2312, 7.2309, 7.2329, 7.2349, 7.2346, 7.2339, 7.2336, 7.2329, 7.2323, 7.2343, 7.2401, 7.2394, 7.2387, 7.2385, 7.2381, 7.2401, 7.2393, 7.2385, 7.2379, 7.2373, 7.2347, 7.2341, 7.2353, 7.2372, 7.237, 7.2387, 7.2404, 7.2397, 7.2391, 7.2383, 7.24, 7.2396, 7.239, 7.2381, 7.2372, 7.239, 7.2382, 7.2375, 7.2367, 7.2361, 7.2377, 7.2394, 7.2386, 7.2386, 7.238, 7.2373, 7.2364, 7.2355, 7.2348, 7.2341, 7.2335, 7.2332, 7.2334, 7.2327, 7.2324, 7.2341, 7.2333, 7.2325, 7.2324, 7.2317, 7.2333, 7.2332, 7.2328, 7.2327, 7.2319, 7.2313, 7.2328, 7.2319, 7.2313, 7.2312, 7.232200000000001, 7.2315, 7.2309, 7.2342, 7.2336, 7.2329, 7.2322, 7.2314, 7.2405, 7.2413, 7.2414, 7.2406, 7.2401, 7.2397, 7.2413, 7.2429, 7.2422, 7.2441, 7.246, 7.2457, 7.2453, 7.2446, 7.2442, 7.2437, 7.2429, 7.2445, 7.2436, 7.2427, 7.2421, 7.2412, 7.2413, 7.2408, 7.2402, 7.2394, 7.2387, 7.2383, 7.2386, 7.2379, 7.2372, 7.237, 7.2367, 7.2362, 7.2356, 7.2363, 7.2358, 7.2351, 7.2327, 7.2338, 7.2332, 7.2312, 7.2305, 7.23, 7.2315, 7.2311, 7.2304, 7.2297, 7.2364, 7.2383, 7.2375, 7.2372, 7.2364, 7.2358, 7.2353, 7.2351, 7.2344, 7.234, 7.2339, 7.2335, 7.2329, 7.2332, 7.2323, 7.2317, 7.2314, 7.231, 7.2325, 7.2317, 7.2314, 7.2332, 7.2327, 7.2326, 7.2323, 7.2316, 7.2309, 7.2329, 7.2321, 7.2313, 7.2328, 7.23, 7.2292, 7.2284, 7.2301, 7.2295, 7.2305, 7.2297, 7.2293, 7.2309, 7.2326, 7.2322, 7.2318, 7.2333, 7.2328, 7.2333, 7.2325, 7.2366, 7.2384, 7.2385, 7.238, 7.2376, 7.2373, 7.2366, 7.2363, 7.2391, 7.2385, 7.2378, 7.2417, 7.241, 7.2404, 7.242, 7.2436, 7.2428, 7.2423, 7.2415, 7.2409, 7.2406, 7.2398, 7.2415, 7.2406, 7.2401, 7.2394, 7.2434, 7.2427, 7.242, 7.2411, 7.2408, 7.2409, 7.241, 7.2457, 7.2449, 7.2443, 7.2445, 7.2441, 7.2433, 7.2429, 7.2422, 7.2397, 7.2389, 7.2408, 7.2402, 7.2394, 7.239, 7.2385, 7.2376, 7.237, 7.2367, 7.2381, 7.2374, 7.2388, 7.2385, 7.2381, 7.2376, 7.2373, 7.2389, 7.2385, 7.2382, 7.2379, 7.2371, 7.2388, 7.2382, 7.2374, 7.2392, 7.2391, 7.2383, 7.2402, 7.2432, 7.2427, 7.2419, 7.242, 7.2467, 7.2465, 7.2481, 7.2481, 7.2479, 7.2473, 7.249, 7.2506, 7.2502, 7.2527, 7.2524, 7.2516, 7.2535, 7.2539, 7.2535, 7.2528, 7.2522, 7.2541, 7.2538, 7.2517, 7.2509, 7.2504, 7.2497, 7.2512, 7.2504, 7.2499, 7.2492, 7.2487, 7.2479, 7.2472, 7.2467, 7.2459, 7.2477, 7.2471, 7.2486, 7.2484, 7.2479, 7.2471, 7.2463, 7.2455, 7.2449, 7.2443, 7.2507, 7.2501, 7.2499, 7.2493, 7.2488, 7.2483, 7.2481, 7.2473, 7.2469, 7.2468, 7.2463, 7.2459, 7.2451, 7.2449, 7.2446, 7.2448, 7.2464, 7.2462, 7.2457, 7.2449, 7.2443, 7.2437, 7.2431, 7.2425, 7.242, 7.2412, 7.2405, 7.2399, 7.2393, 7.2393, 7.2386, 7.238, 7.2397, 7.239, 7.2404, 7.24, 7.2392, 7.2388, 7.238, 7.2379, 7.2393, 7.2386, 7.24, 7.2395, 7.2389, 7.2382, 7.2377, 7.2377, 7.237, 7.2365, 7.2364, 7.236, 7.2354, 7.2355, 7.2373, 7.2367, 7.2362, 7.2354, 7.2369, 7.2365, 7.2359, 7.2351, 7.2345, 7.2319, 7.232900000000001, 7.2327, 7.2341, 7.235, 7.2347, 7.2362, 7.2355, 7.2347, 7.2346, 7.2342, 7.2338, 7.2332, 7.233, 7.2322, 7.2318, 7.2314, 7.2311, 7.2305, 7.2308, 7.2304, 7.2297, 7.2292, 7.2285, 7.2279, 7.2272, 7.2268, 7.2261, 7.2275, 7.2273, 7.2265, 7.2258, 7.2254, 7.2247, 7.2242, 7.2236, 7.2255, 7.2248, 7.2241, 7.2238, 7.2231, 7.2227, 7.2222, 7.2218, 7.2213, 7.2211, 7.2206, 7.2203, 7.2201, 7.2228, 7.2223, 7.2219, 7.2213, 7.2206, 7.22, 7.2195, 7.2211, 7.2204, 7.2201, 7.2196, 7.2192, 7.2186, 7.2181, 7.2196, 7.2191, 7.2186, 7.218, 7.2172, 7.2167, 7.2161, 7.2156, 7.2172, 7.2165, 7.2157, 7.215, 7.2146, 7.2144, 7.2141, 7.2166, 7.2159, 7.2157, 7.2151, 7.2167, 7.2162, 7.2158, 7.2152, 7.2167, 7.2161, 7.2177, 7.2171, 7.218100000000001, 7.2173, 7.2187, 7.218, 7.2175, 7.2171, 7.2165, 7.2163, 7.2157, 7.215, 7.2145, 7.214, 7.214, 7.2138, 7.2135, 7.2138, 7.2133, 7.2151, 7.2147, 7.2139, 7.2133, 7.2127, 7.212, 7.2116, 7.2112, 7.2111, 7.2126, 7.214, 7.2156, 7.2152, 7.2145, 7.2141, 7.2135, 7.2129, 7.2124, 7.2117, 7.2111, 7.2107, 7.212, 7.2116, 7.2113, 7.2128, 7.2124, 7.2119, 7.2133, 7.2131, 7.2145, 7.216, 7.2154, 7.2149, 7.2146, 7.2145, 7.214, 7.2134, 7.2148, 7.2189, 7.2204, 7.2216, 7.221, 7.2207, 7.2203, 7.22, 7.2194, 7.2208, 7.2203, 7.2217, 7.2213, 7.2208, 7.2201, 7.2195, 7.2191, 7.2185, 7.2201, 7.2195, 7.2213, 7.222300000000001, 7.2221, 7.2218, 7.2233, 7.2228, 7.2246, 7.2256, 7.2272, 7.2269, 7.2279, 7.2294, 7.2296, 7.229, 7.2283, 7.2276, 7.2276, 7.2271, 7.2284, 7.2297, 7.2292, 7.2307, 7.2301, 7.2313, 7.2308, 7.2307, 7.2301, 7.2294, 7.2289, 7.2283, 7.2297, 7.2315, 7.2309, 7.2303, 7.2297, 7.2313, 7.2308, 7.2302, 7.2299, 7.2293, 7.2308, 7.2303, 7.2296, 7.229, 7.2305, 7.2321, 7.2316, 7.2312, 7.2328, 7.2323, 7.232, 7.234, 7.2335, 7.235, 7.2368, 7.2364, 7.2361, 7.2355, 7.2348, 7.2364, 7.2377, 7.2393, 7.2387, 7.2384, 7.2383, 7.2379, 7.2373, 7.2366, 7.2365, 7.2359, 7.2357, 7.2373, 7.2373, 7.2371, 7.2366, 7.2362, 7.2377, 7.2373, 7.2369, 7.2364, 7.2377, 7.2371, 7.2371, 7.2364, 7.2361, 7.2373, 7.237, 7.2384, 7.2379, 7.2376, 7.2372, 7.2367, 7.2372, 7.2389, 7.2384, 7.2426, 7.2419, 7.2416, 7.2463, 7.2459, 7.2455, 7.2454, 7.2453, 7.2448, 7.2442, 7.2439, 7.2434, 7.2435, 7.2432, 7.2428, 7.2423, 7.242, 7.2414, 7.2414, 7.2407, 7.2402, 7.2399, 7.2394, 7.2391, 7.2406, 7.242, 7.2417, 7.2431, 7.2425, 7.242, 7.2413, 7.2415, 7.2452, 7.2448, 7.2443, 7.2459, 7.2473, 7.2469, 7.2486, 7.2482, 7.2476, 7.2472, 7.2468, 7.2461, 7.2475, 7.2469, 7.2462, 7.2441, 7.2435, 7.2428, 7.2422, 7.2417, 7.2411, 7.241, 7.2404, 7.2417, 7.241, 7.2404, 7.2399, 7.2395, 7.2389, 7.2388, 7.2401, 7.2396, 7.2412, 7.2407, 7.2404, 7.2405, 7.2399, 7.2392, 7.2389, 7.2386, 7.2381, 7.2374, 7.2371, 7.2366, 7.2362, 7.236, 7.2354, 7.2367, 7.2365, 7.2378, 7.2371, 7.2365, 7.236, 7.2354, 7.2366, 7.2381, 7.2377, 7.2374, 7.2369, 7.2364, 7.2357, 7.2352, 7.2348, 7.2342, 7.2336, 7.2329, 7.2322, 7.2328, 7.2334, 7.2328, 7.2323, 7.2336, 7.2332, 7.2329, 7.2326, 7.2324, 7.2324, 7.2318, 7.2312, 7.231, 7.2307, 7.2301, 7.2298, 7.2293, 7.2288, 7.2285, 7.2299, 7.2293, 7.2291, 7.2304, 7.2298, 7.2295, 7.229, 7.2284, 7.2278, 7.2271, 7.2269, 7.2263, 7.2259, 7.2255, 7.2249, 7.2247, 7.2243, 7.2238, 7.2275, 7.2288, 7.2291, 7.2291, 7.2285, 7.2282, 7.2262, 7.2257, 7.2252, 7.2247, 7.2242, 7.2235, 7.2249, 7.225, 7.2245, 7.2243, 7.2237, 7.2235, 7.2249, 7.2263, 7.2257, 7.2269, 7.2265, 7.2258, 7.2253, 7.225, 7.2247, 7.2241, 7.2236, 7.2229, 7.2228, 7.223800000000001, 7.2237, 7.2273, 7.2288, 7.2287, 7.2283, 7.2277, 7.2274, 7.2271, 7.2285, 7.2279, 7.2275, 7.2273, 7.2267, 7.2262, 7.226, 7.2254, 7.2249, 7.2247, 7.2246, 7.2241, 7.2237, 7.2232, 7.2243, 7.2239, 7.2234, 7.2229, 7.2231, 7.2232, 7.223, 7.2244, 7.2239, 7.2238, 7.2233, 7.2228, 7.2221, 7.2216, 7.2209, 7.2203, 7.2198, 7.2208000000000006, 7.2221, 7.2234, 7.2231, 7.2245, 7.224, 7.2252, 7.2249, 7.2243, 7.2256, 7.2269, 7.2264, 7.2257, 7.2252, 7.2248, 7.2245, 7.2257, 7.2263, 7.2258, 7.2255, 7.2272, 7.2277, 7.2271, 7.2265, 7.2262, 7.2259, 7.2253, 7.2248, 7.2241, 7.2253, 7.2251, 7.2246, 7.224, 7.2253, 7.2249, 7.2247, 7.2244, 7.224, 7.2235, 7.223, 7.2228, 7.2224, 7.223400000000001, 7.2248, 7.2242, 7.2238, 7.2233, 7.2227, 7.2222, 7.2219, 7.2215, 7.2208, 7.2203, 7.2213, 7.2226, 7.2223, 7.222, 7.2233, 7.2227, 7.2223, 7.2219, 7.2232, 7.224200000000001, 7.2239, 7.2234, 7.2229, 7.2224, 7.2246, 7.2251, 7.2264, 7.2277, 7.2272, 7.2269, 7.2268, 7.2262, 7.2256, 7.2271, 7.2265, 7.226, 7.2255, 7.2267, 7.2264, 7.2277, 7.229, 7.229, 7.2284, 7.2281, 7.2293, 7.2293, 7.2288, 7.2286, 7.2299, 7.2297, 7.2309, 7.2306, 7.2302, 7.2315, 7.2295, 7.2294, 7.2288, 7.2284, 7.2278, 7.2273, 7.2267, 7.2265, 7.2277, 7.229, 7.2287, 7.2282, 7.2261, 7.2272, 7.2265, 7.226, 7.2254, 7.225, 7.2244, 7.2242, 7.224, 7.2235, 7.2232, 7.2226, 7.2238, 7.225, 7.2246, 7.2243, 7.2237, 7.2234, 7.2249, 7.2245, 7.2241, 7.2235, 7.2245, 7.224, 7.2235, 7.223, 7.2242, 7.2236, 7.2233, 7.2227, 7.2224, 7.222, 7.2214, 7.2208, 7.2202, 7.22, 7.2213, 7.2207, 7.2203, 7.22, 7.2195, 7.2208, 7.2203, 7.2197, 7.221, 7.2206, 7.2202, 7.2197, 7.2193, 7.219, 7.2185, 7.2197, 7.2209, 7.2203, 7.22, 7.2195, 7.2192, 7.2188, 7.2188, 7.2183, 7.2179, 7.2173, 7.2171, 7.2166, 7.2184, 7.2196, 7.2192, 7.2187, 7.2184, 7.2179, 7.2192, 7.2188, 7.2187, 7.2182, 7.2177, 7.2174, 7.2168, 7.2162, 7.2158, 7.2153, 7.217, 7.217, 7.2183, 7.2182, 7.2179, 7.2175, 7.2171, 7.2167, 7.2181, 7.2181, 7.2193, 7.2187, 7.2183, 7.2182, 7.218, 7.2177, 7.2177, 7.2172, 7.2168, 7.2166, 7.2161, 7.2182, 7.2195, 7.2175, 7.2169, 7.2163, 7.2177, 7.2172, 7.2166, 7.2163, 7.2191, 7.227, 7.2273, 7.2286, 7.2285, 7.2347, 7.2342, 7.237, 7.2382, 7.2394, 7.2376, 7.2358, 7.234, 7.2338, 7.2385, 7.2379, 7.2406, 7.2418, 7.2432, 7.2428, 7.2422, 7.2419, 7.2413, 7.2409, 7.2404, 7.2402, 7.2396, 7.2393, 7.2388, 7.2393, 7.2422, 7.2416, 7.2412, 7.2408, 7.2404, 7.2401, 7.2397, 7.2393, 7.239, 7.2404, 7.2398, 7.2393, 7.2407, 7.2419, 7.2416, 7.2416, 7.2419, 7.2431, 7.2426, 7.2437, 7.2448, 7.2449, 7.2446, 7.2444, 7.2457, 7.2453, 7.2449, 7.2446, 7.2441, 7.2437, 7.2431, 7.2431, 7.2426, 7.2406, 7.2401, 7.2398, 7.2409, 7.2404, 7.2399, 7.2409, 7.2438, 7.2436, 7.2433, 7.2427, 7.2422, 7.2417, 7.2412, 7.2424, 7.2419, 7.2413, 7.2425, 7.2419, 7.2414, 7.2425, 7.2421, 7.2418, 7.2415, 7.2409, 7.2419, 7.2416, 7.2427, 7.2424, 7.2439, 7.2435, 7.2432, 7.2433, 7.243, 7.2427, 7.2425, 7.2423, 7.2421, 7.2415, 7.2409, 7.2404, 7.2398, 7.2394, 7.239, 7.2384, 7.2395, 7.2389, 7.2385, 7.2381, 7.2378, 7.239, 7.2386, 7.2381, 7.2376, 7.2376, 7.237, 7.2365, 7.2359, 7.2359, 7.2357, 7.2352, 7.2346, 7.2342, 7.2338, 7.2335, 7.2348, 7.2346, 7.2342, 7.2339, 7.2335, 7.2333, 7.2346, 7.2342, 7.234, 7.234, 7.2335, 7.2348, 7.2356, 7.2367, 7.2362, 7.2373, 7.2367, 7.2373, 7.237, 7.2366, 7.2377, 7.2388, 7.2383, 7.2395, 7.2408, 7.2421, 7.2416, 7.2413, 7.2412, 7.2408, 7.2405, 7.2401, 7.2413, 7.2441, 7.2435, 7.2432, 7.243, 7.2426, 7.2424, 7.2421, 7.2426, 7.2421, 7.242, 7.243, 7.2425, 7.2422, 7.2417, 7.2413, 7.2425, 7.2421, 7.2418, 7.2414, 7.2411, 7.2406, 7.24, 7.2394, 7.2389, 7.2401, 7.2399, 7.2394, 7.2391, 7.2386, 7.2384, 7.238, 7.2375, 7.2371, 7.2368, 7.2366, 7.2362, 7.2359, 7.2354, 7.2353, 7.2349, 7.2344, 7.2355, 7.2354, 7.2352, 7.2363, 7.236, 7.2359, 7.2356, 7.2352, 7.2347, 7.2356, 7.2353, 7.2348, 7.2343, 7.2339, 7.2334, 7.2344, 7.2357, 7.2351, 7.2346, 7.2342, 7.2338, 7.2335, 7.2333, 7.2344, 7.2342, 7.2353, 7.2365, 7.2362, 7.2359, 7.2373, 7.2399, 7.2395, 7.2392, 7.2387, 7.2382, 7.2377, 7.2372, 7.2366, 7.2361, 7.2371, 7.2367, 7.2363, 7.2359, 7.2353, 7.2348, 7.2342, 7.234, 7.2338, 7.2365, 7.2376, 7.2372, 7.2414, 7.241, 7.2408, 7.2402, 7.2397, 7.2392, 7.2389, 7.2384, 7.2393, 7.2394, 7.2391, 7.239, 7.2393, 7.2391, 7.2416, 7.2415, 7.2427, 7.2457, 7.2472, 7.2467, 7.2481, 7.2477, 7.2473, 7.2468, 7.2463, 7.2459, 7.2444, 7.2448, 7.2443, 7.2439, 7.2435, 7.2448, 7.2447, 7.2447, 7.2447, 7.2459, 7.2456, 7.2457, 7.2452, 7.2447, 7.2442, 7.2454, 7.2453, 7.2448, 7.2446, 7.2443, 7.2443, 7.2455, 7.2452, 7.2448, 7.2459, 7.2456, 7.2453, 7.2454, 7.245, 7.2446, 7.2458, 7.2454, 7.2466, 7.2464, 7.2445, 7.244, 7.2435, 7.2431, 7.2426, 7.2426, 7.2423, 7.2433, 7.2429, 7.2439, 7.2434, 7.2431, 7.2428, 7.2424, 7.2419, 7.2414, 7.2409, 7.242, 7.2431, 7.2428, 7.244, 7.2442, 7.2437, 7.2435, 7.2433, 7.2429, 7.2482, 7.2479, 7.2476, 7.2472, 7.2483, 7.248, 7.2478, 7.2474, 7.2469, 7.2469, 7.2465, 7.2479, 7.2477, 7.2472, 7.2484, 7.2496, 7.2508, 7.2518, 7.2515, 7.251, 7.2505, 7.25, 7.2495, 7.2491, 7.2488, 7.2486, 7.2485, 7.2481, 7.2477, 7.2474, 7.2474, 7.247, 7.2466, 7.246, 7.2458, 7.2453, 7.245, 7.2447, 7.2444, 7.2442, 7.2455, 7.245, 7.2446, 7.2442, 7.2454, 7.245, 7.2461, 7.2456, 7.2452, 7.2447, 7.2443, 7.2441, 7.2441, 7.2438, 7.2437, 7.2433, 7.2431, 7.2428, 7.2426, 7.2439, 7.2455, 7.2455, 7.2485, 7.2516, 7.2512, 7.2511, 7.2506, 7.2504, 7.2514, 7.251, 7.2508, 7.2504, 7.25, 7.2494, 7.249, 7.2487, 7.2482, 7.2493, 7.2491, 7.2485, 7.248, 7.2491, 7.2502, 7.2498, 7.2493, 7.2489, 7.2499, 7.2495, 7.249, 7.2488, 7.2482, 7.248, 7.2476, 7.2503, 7.2514, 7.2509, 7.2584, 7.2579, 7.2589, 7.259, 7.2592, 7.2589, 7.2599, 7.2593, 7.2589, 7.26, 7.2613, 7.2623, 7.2633, 7.263, 7.2641, 7.2639, 7.2636, 7.2631, 7.2626, 7.2622, 7.2618, 7.2616, 7.2627, 7.2624, 7.262, 7.2618, 7.2617, 7.2646, 7.2643, 7.264, 7.2635, 7.2631, 7.2626, 7.2636, 7.2631, 7.2626, 7.2621, 7.2616, 7.2611, 7.2608, 7.2619, 7.2616, 7.2611, 7.2606, 7.2602, 7.2599, 7.2594, 7.2592, 7.2587, 7.2582, 7.2578, 7.2588, 7.2597, 7.2594, 7.2591, 7.2587, 7.2598, 7.2608, 7.2617, 7.2612, 7.2608, 7.2603, 7.2609, 7.2606, 7.2617, 7.2612, 7.2622, 7.2618, 7.2627, 7.2624, 7.262, 7.267, 7.2665, 7.266, 7.2655, 7.2666, 7.2664, 7.2661, 7.2672, 7.2668, 7.2665, 7.266, 7.2656, 7.2667, 7.2662, 7.2672, 7.2667, 7.2663, 7.2674, 7.2685, 7.2711, 7.2722, 7.272, 7.2715, 7.2713, 7.2709, 7.2707, 7.2703, 7.27, 7.2714, 7.2725, 7.2721, 7.2733, 7.2745, 7.2741, 7.2739, 7.2735, 7.2731, 7.2743, 7.274, 7.275, 7.2746, 7.2743, 7.2744, 7.2742, 7.2739, 7.2736, 7.2731, 7.2729, 7.273, 7.2726, 7.2724, 7.2719, 7.2715, 7.2725, 7.2721, 7.2717, 7.2712, 7.2709, 7.2719, 7.2714, 7.274, 7.2749, 7.2744, 7.274, 7.2735, 7.274, 7.2741, 7.2738, 7.2737, 7.2732, 7.2733, 7.2731, 7.2727, 7.2737, 7.2732, 7.2742, 7.2738, 7.2749, 7.2745, 7.274, 7.2736, 7.2734, 7.2744, 7.2739, 7.2734, 7.2729, 7.2725, 7.272, 7.2715, 7.2712, 7.2708, 7.2704, 7.2703, 7.2699, 7.2695, 7.269, 7.2687, 7.274, 7.2735, 7.2733, 7.2729, 7.2727, 7.2725, 7.2721, 7.2732, 7.2727, 7.2725, 7.2721, 7.2731, 7.2728, 7.2725, 7.2735, 7.2731, 7.2715, 7.2712, 7.2707, 7.2705, 7.2701, 7.2696, 7.2693, 7.2691, 7.2689, 7.2687, 7.2682, 7.2678, 7.2675, 7.269, 7.2688, 7.2685, 7.2686, 7.2684, 7.268, 7.2675, 7.2674, 7.2672, 7.2669, 7.2666, 7.2664, 7.2664, 7.2662, 7.2661, 7.2658, 7.2653, 7.2666, 7.2679, 7.2675, 7.2685, 7.2682, 7.2682, 7.2682, 7.268, 7.2677, 7.2676, 7.2676, 7.2673, 7.2669, 7.2665, 7.2663, 7.2674, 7.2686, 7.2684, 7.2693, 7.2689, 7.2728, 7.2772, 7.2768, 7.2764, 7.2775, 7.2773, 7.2769, 7.2783, 7.2784, 7.2795, 7.279, 7.2788, 7.2787, 7.2788, 7.2785, 7.278, 7.279, 7.2789, 7.2784, 7.2782, 7.2795, 7.2792, 7.2788, 7.2788, 7.2786, 7.2771, 7.2766, 7.2765, 7.2763, 7.2759, 7.2755, 7.2751, 7.2746, 7.2742, 7.2751, 7.2761, 7.277, 7.2765, 7.2775, 7.277, 7.2765, 7.276, 7.2769, 7.2766, 7.2761, 7.2756, 7.2752, 7.2763, 7.2759, 7.2755, 7.275, 7.2746, 7.2741, 7.2737, 7.2752, 7.2747, 7.2771, 7.2767, 7.2763, 7.2772, 7.2767, 7.2766, 7.2761, 7.2776, 7.2761, 7.2759, 7.2757, 7.2756, 7.2753, 7.2762, 7.276, 7.2755, 7.2752, 7.275, 7.2746, 7.2741, 7.2752, 7.2747, 7.2742, 7.2739, 7.2734, 7.2729, 7.2725, 7.2721, 7.2736, 7.2734, 7.2731, 7.2728, 7.2725, 7.272, 7.2715, 7.2724, 7.2732, 7.2727, 7.2725, 7.2734, 7.2729, 7.2725, 7.272, 7.2717, 7.2726, 7.2723, 7.272, 7.2716, 7.27, 7.2696, 7.2707, 7.2703, 7.2701, 7.271, 7.2707, 7.2702, 7.2698, 7.2695, 7.2692, 7.2703, 7.2698, 7.2698, 7.2696, 7.2693, 7.2703, 7.2714, 7.271, 7.2706, 7.2704, 7.2702, 7.2698, 7.2693, 7.2688, 7.2698, 7.2695, 7.2691, 7.2686, 7.2681, 7.2678, 7.2676, 7.2674, 7.2673, 7.2669, 7.2706, 7.2705, 7.2701, 7.2711, 7.2707, 7.2707, 7.2704, 7.2701, 7.2698, 7.2706, 7.2703, 7.2702, 7.2697, 7.2693, 7.269, 7.2686, 7.2683, 7.268, 7.2704, 7.27, 7.2695, 7.2692, 7.2688, 7.2683, 7.2669, 7.2666, 7.2663, 7.2658, 7.2666, 7.2662, 7.2659, 7.2656, 7.2651, 7.266, 7.2656, 7.266, 7.2657, 7.2655, 7.2669, 7.2679, 7.2675, 7.267, 7.2666, 7.2661, 7.2658, 7.2654, 7.2649, 7.2644, 7.2641, 7.2638, 7.264, 7.265, 7.2646, 7.2641, 7.265, 7.2645, 7.2644, 7.2644, 7.2643, 7.2653, 7.2649, 7.2645, 7.2668, 7.2679, 7.2691, 7.269, 7.2676, 7.2662, 7.2671, 7.2667, 7.2664, 7.2662, 7.2657, 7.2653, 7.269, 7.2686, 7.2684, 7.2683, 7.269, 7.2685, 7.2681, 7.2711, 7.2711, 7.2707, 7.2707, 7.2702, 7.2714, 7.2711, 7.272, 7.2715, 7.271, 7.2705, 7.27, 7.2697, 7.2693, 7.2702, 7.2699, 7.2695, 7.2691, 7.2689, 7.2685, 7.268, 7.2678, 7.2676, 7.2672, 7.2658, 7.2655, 7.2651, 7.2651, 7.2647, 7.2658, 7.2653, 7.2664, 7.2661, 7.2659, 7.2655, 7.2652, 7.2647, 7.2642, 7.2652, 7.2648, 7.2657, 7.2655, 7.265, 7.2647, 7.2643, 7.2639, 7.2635, 7.263, 7.2626, 7.2621, 7.2619, 7.2617, 7.2614, 7.2622, 7.262, 7.2618, 7.2615, 7.2612, 7.261, 7.2607, 7.2592, 7.2585, 7.2581, 7.2576, 7.2573, 7.2588, 7.2585, 7.2581, 7.2576, 7.2584, 7.2582, 7.2578, 7.2575, 7.2572, 7.2558, 7.2554, 7.2552, 7.2548, 7.255, 7.255, 7.2572, 7.2568, 7.2566, 7.2562, 7.2558, 7.2555, 7.2541, 7.2528, 7.2526, 7.2522, 7.2518, 7.2502, 7.2489, 7.25, 7.2497, 7.2496, 7.2493, 7.2502, 7.2497, 7.2493, 7.2489, 7.2486, 7.2486, 7.2489, 7.25, 7.2509, 7.2507, 7.2505, 7.2501, 7.2498, 7.2494, 7.2505, 7.2503, 7.2526, 7.2524, 7.2521, 7.2519, 7.2517, 7.2513, 7.2509, 7.2519, 7.2515, 7.2513, 7.2509, 7.2518, 7.2505, 7.2516, 7.2514, 7.2513, 7.2509, 7.2504, 7.2515, 7.254, 7.2548, 7.2547, 7.255, 7.257, 7.2578, 7.2575, 7.2574, 7.2572, 7.2577, 7.2585, 7.2581, 7.2566, 7.2561, 7.2573, 7.2569, 7.2565, 7.2573, 7.2568, 7.2564, 7.2559, 7.2556, 7.2565, 7.2586, 7.2595, 7.2591, 7.2589, 7.2587, 7.2597, 7.2592, 7.2589, 7.2588, 7.2585, 7.2596, 7.2593, 7.259, 7.2587, 7.2585, 7.2582, 7.2582, 7.2578, 7.2576, 7.2572, 7.2581, 7.2577, 7.2586, 7.2585, 7.2582, 7.2581, 7.259, 7.2586, 7.2582, 7.2584, 7.258, 7.2577, 7.2586, 7.2584, 7.2579, 7.2575, 7.2575, 7.2573, 7.2583, 7.2582, 7.2592, 7.2588, 7.2575, 7.2562, 7.2559, 7.2557, 7.2553, 7.2551, 7.2549, 7.2545, 7.2533, 7.2532, 7.2529, 7.2525, 7.2534, 7.253, 7.2527, 7.2524, 7.2524, 7.2519, 7.2516, 7.2525, 7.2521, 7.2519, 7.2516, 7.2511, 7.2507, 7.2502, 7.2511, 7.2508, 7.2505, 7.2501, 7.2497, 7.2494, 7.249, 7.2486, 7.2482, 7.248, 7.2489, 7.2486, 7.2482, 7.2478, 7.2475, 7.2474, 7.247, 7.2467, 7.2463, 7.2462, 7.2459, 7.2458, 7.2455, 7.2452, 7.2439, 7.2435, 7.2434, 7.2442, 7.2439, 7.2435, 7.2431, 7.2427, 7.2424, 7.242, 7.2417, 7.2413, 7.2421, 7.2419, 7.2416, 7.2414, 7.2412, 7.2408, 7.2406, 7.2402, 7.2398, 7.2395, 7.2391, 7.2388, 7.2384, 7.2393, 7.2389, 7.2386, 7.2382, 7.2379, 7.2388, 7.2424, 7.242, 7.2416, 7.2413, 7.2409, 7.2407, 7.2403, 7.2399, 7.2399, 7.2395, 7.2394, 7.239, 7.2388, 7.2385, 7.2383, 7.2392, 7.2391, 7.2389, 7.2387, 7.2383, 7.2379, 7.2388, 7.2373, 7.2383, 7.2393, 7.239, 7.2389, 7.2386, 7.2415, 7.2411, 7.2411, 7.2408, 7.2405, 7.2402, 7.2399, 7.2395, 7.2392, 7.239, 7.2402, 7.2399, 7.2399, 7.2395, 7.2393, 7.2389, 7.2387, 7.2384, 7.2381, 7.2391, 7.2387, 7.2398, 7.2394, 7.2391, 7.2388, 7.2385, 7.2422, 7.242, 7.2421, 7.2418, 7.2427, 7.2423, 7.2452, 7.2451, 7.2449, 7.2446, 7.2444, 7.2447, 7.2445, 7.2454, 7.245, 7.2446, 7.2443, 7.2439, 7.2437, 7.2433, 7.2442, 7.2438, 7.2438, 7.2437, 7.2433, 7.243, 7.2429, 7.2427, 7.2423, 7.2421, 7.2417, 7.2416, 7.2425, 7.2445, 7.2441, 7.245, 7.2446, 7.2444, 7.2441, 7.2437, 7.2445, 7.2441, 7.2438, 7.2425, 7.2434, 7.2434, 7.2433, 7.2429, 7.2429, 7.2426, 7.2423, 7.2419, 7.2417, 7.2413, 7.2402, 7.24, 7.2397, 7.2395, 7.2403, 7.2402, 7.2398, 7.2398, 7.2397, 7.2394, 7.2394, 7.2402, 7.2411, 7.2407, 7.2404, 7.2402, 7.2399, 7.2408, 7.2404, 7.2403, 7.2399, 7.241, 7.2407, 7.2405, 7.2402, 7.24, 7.2398, 7.2396, 7.2392, 7.2389, 7.2386, 7.2383, 7.2381, 7.239, 7.2398, 7.2398, 7.2407, 7.2404, 7.2402, 7.241, 7.2408, 7.2404, 7.2413, 7.241, 7.2419, 7.2418, 7.2414, 7.2423, 7.242, 7.2421, 7.2419, 7.2415, 7.2412, 7.2422, 7.2421, 7.2418, 7.2432, 7.2449, 7.2446, 7.2456, 7.2452, 7.245, 7.245, 7.247, 7.2481, 7.2478, 7.2483, 7.2481, 7.2489, 7.2486, 7.2482, 7.2481, 7.248, 7.2479, 7.2477, 7.2487, 7.2495, 7.2505, 7.2505, 7.2502, 7.2488, 7.2485, 7.2495, 7.2502, 7.2498, 7.2507, 7.2494, 7.2492, 7.2491, 7.2487, 7.2485, 7.2481, 7.2477, 7.2477, 7.2475, 7.2484, 7.2482, 7.2493, 7.2489, 7.2476, 7.2487, 7.2483, 7.2479, 7.2475, 7.2471, 7.2479, 7.2501, 7.2497, 7.2508, 7.2506, 7.2514, 7.251, 7.2518, 7.2516, 7.2514, 7.2512, 7.2508, 7.2519, 7.2538, 7.2536, 7.2524, 7.2521, 7.2519, 7.2518, 7.2514, 7.2511, 7.2508, 7.2504, 7.2501, 7.2498, 7.2495, 7.2495, 7.2492, 7.2492, 7.249, 7.2499, 7.2509, 7.2508, 7.2505, 7.2512, 7.2508, 7.2504, 7.2501, 7.2498, 7.2505, 7.2501, 7.2499, 7.2507, 7.2504, 7.25, 7.2498, 7.2506, 7.2504, 7.25, 7.2497, 7.2493, 7.2501, 7.2498, 7.2494, 7.2494, 7.2492, 7.249, 7.2487, 7.2484, 7.248, 7.2489, 7.2497, 7.2494, 7.2492, 7.2488, 7.2489, 7.2486, 7.2484, 7.2505, 7.2502, 7.2499, 7.2496, 7.2494, 7.2494, 7.2504, 7.2502, 7.2499, 7.2509, 7.2505, 7.2514, 7.2528, 7.2527, 7.2527, 7.2524, 7.2521, 7.2518, 7.2515, 7.2524, 7.2523, 7.252, 7.2517, 7.2514, 7.25, 7.2486, 7.2473, 7.2469, 7.2468, 7.2478, 7.2476, 7.2484, 7.248, 7.2476, 7.2474, 7.247, 7.2468, 7.2466, 7.2464, 7.2462, 7.2459, 7.2457, 7.2453, 7.2462, 7.2459, 7.2457, 7.2465, 7.2462, 7.246, 7.2456, 7.2442, 7.2451, 7.2448, 7.2434, 7.2431, 7.2428, 7.2426, 7.2435, 7.2432, 7.2429, 7.2438, 7.2447, 7.2456, 7.2464, 7.2461, 7.2458, 7.2455, 7.2464, 7.2461, 7.2447, 7.2443, 7.245, 7.2457, 7.2458, 7.2456, 7.2453, 7.2461, 7.246, 7.246, 7.2457, 7.2465, 7.2463, 7.2461, 7.2457, 7.2465, 7.2461, 7.2447, 7.2445, 7.2442, 7.244, 7.2437, 7.2434, 7.2431, 7.2427, 7.2425, 7.2422, 7.2419, 7.2427, 7.2434, 7.2454, 7.2452, 7.2449, 7.2459, 7.2456, 7.2452, 7.246, 7.2458, 7.2466, 7.2462, 7.2449, 7.2446, 7.2443, 7.2451, 7.2447, 7.2443, 7.2451, 7.2449, 7.2447, 7.2444, 7.2432, 7.2428, 7.2425, 7.2449, 7.2458, 7.2454, 7.2451, 7.2448, 7.2456, 7.2448, 7.2436, 7.2433, 7.2441, 7.245, 7.2446, 7.2434, 7.243, 7.2438, 7.2446, 7.2454, 7.2462, 7.247, 7.2467, 7.2464, 7.246, 7.2457, 7.2453, 7.2461, 7.2469, 7.2476, 7.2472, 7.2468, 7.2479, 7.2476, 7.2476, 7.2475, 7.2478, 7.2476, 7.2484, 7.2491, 7.2487, 7.2486, 7.2493, 7.249, 7.2488, 7.2485, 7.2482, 7.2513, 7.2511, 7.251, 7.2507, 7.2504, 7.25, 7.2498, 7.2494, 7.2492, 7.2489, 7.2486, 7.2484, 7.2481, 7.2478, 7.2474, 7.2471, 7.2469, 7.2477, 7.2474, 7.2472, 7.2469, 7.2468, 7.2467, 7.2464, 7.2461, 7.2458, 7.2466, 7.2464, 7.2461, 7.246, 7.2469, 7.2465, 7.2473, 7.2482, 7.248, 7.2477, 7.2474, 7.2483, 7.248, 7.2487, 7.2485, 7.2481, 7.2478, 7.2475, 7.2472, 7.2469, 7.2465, 7.2473, 7.2469, 7.2466, 7.2474, 7.2471, 7.2468, 7.2465, 7.2462, 7.2458, 7.2454, 7.2441, 7.2439, 7.2436, 7.2434, 7.243, 7.2427, 7.2437, 7.2436, 7.2436, 7.2433, 7.2429, 7.2426, 7.2434, 7.243, 7.2426, 7.2423, 7.242, 7.2418, 7.2415, 7.2413, 7.2421, 7.2417, 7.2416, 7.2414, 7.2411, 7.2409, 7.2407, 7.2406, 7.2407, 7.2404, 7.2401, 7.2399, 7.2397, 7.2394, 7.239, 7.2398, 7.2406, 7.2404, 7.2413, 7.2422, 7.2419, 7.2416, 7.2413, 7.2414, 7.2421, 7.2418, 7.2417, 7.2425, 7.2438, 7.2445, 7.2442, 7.244, 7.2442, 7.2439, 7.2436, 7.2445, 7.2453, 7.245, 7.2458, 7.2455, 7.2463, 7.2461, 7.2457, 7.2456, 7.2454, 7.2464, 7.2473, 7.2471, 7.247, 7.2467, 7.2466, 7.2474, 7.2471, 7.2467, 7.2464, 7.2461, 7.2459, 7.2459, 7.2455, 7.2452, 7.245, 7.2457, 7.2455, 7.2444, 7.2442, 7.2441, 7.2437, 7.2433, 7.2429, 7.2438, 7.2436, 7.2433, 7.2445, 7.2454, 7.245, 7.2447, 7.2443, 7.2442, 7.244, 7.2436, 7.2423, 7.241, 7.2408, 7.2419, 7.2407, 7.2403, 7.2412, 7.2419, 7.2426, 7.2435, 7.2432, 7.2429, 7.2436, 7.2445, 7.2433, 7.2448, 7.2445, 7.2452, 7.2449, 7.2448, 7.2445, 7.2453, 7.245, 7.2458, 7.2455, 7.2452, 7.2449, 7.2449, 7.2445, 7.2442, 7.2444, 7.2442, 7.2431, 7.2438, 7.2446, 7.2442, 7.243, 7.2446, 7.2443, 7.2442, 7.2439, 7.2437, 7.2433, 7.2421, 7.241, 7.2407, 7.2394, 7.239, 7.239, 7.2387, 7.2388, 7.2386, 7.2382, 7.238, 7.2378, 7.238, 7.2378, 7.2386, 7.2383, 7.2381, 7.2378, 7.2387, 7.2384, 7.2383, 7.2382, 7.2379, 7.2377, 7.2373, 7.238, 7.2392, 7.2401, 7.2398, 7.2395, 7.2393, 7.2389, 7.2387, 7.2383, 7.238, 7.2378, 7.2375, 7.2371, 7.2368, 7.2386, 7.2383, 7.238, 7.238, 7.2377, 7.2373, 7.2373, 7.2376, 7.2364, 7.2352, 7.2341, 7.2328, 7.2325, 7.2322, 7.2319, 7.2317, 7.2314, 7.2318, 7.2315, 7.2315, 7.2312, 7.2309, 7.2317, 7.2314, 7.2311, 7.2308, 7.2304, 7.2302, 7.2302, 7.231, 7.2317, 7.2324, 7.2321, 7.2317, 7.2315, 7.2312, 7.2308, 7.2307, 7.2304, 7.2302, 7.2309, 7.2306, 7.2304, 7.2303, 7.231, 7.2306, 7.2304, 7.2303, 7.2311, 7.231, 7.2306, 7.2303, 7.2299, 7.2295, 7.2302, 7.23, 7.2298, 7.2294, 7.229, 7.2289, 7.2286, 7.2283, 7.2281, 7.2277, 7.2283, 7.2291, 7.2298, 7.2294, 7.2291, 7.2288, 7.2284, 7.2283, 7.2281, 7.2278, 7.2274, 7.2271, 7.2268, 7.2266, 7.2265, 7.2265, 7.2262, 7.2258, 7.2266, 7.2264, 7.2261, 7.225, 7.2238, 7.2226, 7.2234, 7.2241, 7.2238, 7.2235, 7.2232, 7.2229, 7.2226, 7.2225, 7.2213, 7.2211, 7.2219, 7.2221, 7.2219, 7.2229, 7.2238, 7.2238, 7.2235, 7.2234, 7.2231, 7.2235, 7.2234, 7.2242, 7.2239, 7.2247, 7.2243, 7.224, 7.2238, 7.2236, 7.2245, 7.2253, 7.225, 7.2257, 7.2264, 7.2263, 7.2261, 7.2271, 7.2269, 7.2266, 7.2274, 7.2273, 7.2269, 7.2259, 7.2294, 7.2336, 7.2324, 7.2327, 7.2334, 7.2341, 7.2348, 7.2347, 7.2346, 7.2344, 7.2342, 7.233, 7.2327, 7.2324, 7.2321, 7.233, 7.2339, 7.2338, 7.2336, 7.2333, 7.233, 7.2327, 7.2324, 7.2321, 7.2318, 7.2326, 7.2323, 7.232, 7.2319, 7.2326, 7.2325, 7.2322, 7.2321, 7.2319, 7.2317, 7.2315, 7.2312, 7.2309, 7.2306, 7.2314, 7.2312, 7.231, 7.2317, 7.2314, 7.2311, 7.2309, 7.2306, 7.2303, 7.23, 7.2297, 7.2296, 7.2293, 7.2289, 7.2277, 7.2276, 7.2269, 7.2266, 7.2273, 7.2281, 7.2277, 7.2273, 7.228, 7.2277, 7.2274, 7.227, 7.2269, 7.2265, 7.2263, 7.2271, 7.2261, 7.2259, 7.2256, 7.2254, 7.2253, 7.225, 7.2248, 7.2245, 7.2252, 7.224, 7.2237, 7.2234, 7.2231, 7.2228, 7.2225, 7.2222, 7.2218, 7.2216, 7.2213, 7.2219, 7.2219, 7.2216, 7.2203, 7.2199, 7.2195, 7.2192, 7.2189, 7.2187, 7.2183, 7.2182, 7.2181, 7.2179, 7.2176, 7.2173, 7.217, 7.2167, 7.2165, 7.2162, 7.2162, 7.217, 7.2168, 7.2166, 7.2164, 7.2161, 7.217, 7.2169, 7.2166, 7.2174, 7.2172, 7.2168, 7.2165, 7.2166, 7.2162, 7.217, 7.2167, 7.2164, 7.216, 7.2156, 7.2153, 7.2152, 7.216, 7.2157, 7.2156, 7.2154, 7.2151, 7.2159, 7.2157, 7.2155, 7.2164, 7.216, 7.2158, 7.2155, 7.2163, 7.2161, 7.2158, 7.2156, 7.2172, 7.2179, 7.2177, 7.2177, 7.2174, 7.2171, 7.2167, 7.2165, 7.2162, 7.2179, 7.2177, 7.2174, 7.2171, 7.2159, 7.2156, 7.2163, 7.216, 7.2159, 7.2155, 7.2152, 7.2151, 7.2149, 7.2138, 7.2135, 7.2133, 7.213, 7.2127, 7.2125, 7.2123, 7.2121, 7.2119, 7.2116, 7.2114, 7.2122, 7.2119, 7.2116, 7.2114, 7.2111, 7.2109, 7.2117, 7.2105, 7.2103, 7.2101, 7.2109, 7.2106, 7.2104, 7.2101, 7.2098, 7.2096, 7.2094, 7.2091, 7.2089, 7.2079, 7.2093, 7.2089, 7.2088, 7.2087, 7.2084, 7.2081, 7.2071, 7.2059, 7.2056, 7.2063, 7.2061, 7.2063, 7.206, 7.2056, 7.2064, 7.2061, 7.2058, 7.2057, 7.2054, 7.2052, 7.205, 7.2049, 7.2049, 7.2039, 7.2047, 7.2055, 7.2053, 7.2051, 7.2068, 7.2056, 7.2053, 7.2061, 7.2069, 7.2066, 7.2064, 7.2071, 7.206, 7.2059, 7.2067, 7.2064, 7.2061, 7.2059, 7.2057, 7.2066, 7.2063, 7.206, 7.2058, 7.2055, 7.2051, 7.2049, 7.2037, 7.2036, 7.2033, 7.204, 7.2037, 7.2037, 7.2034, 7.2043, 7.2049, 7.2058, 7.2056, 7.2063, 7.2052, 7.205, 7.2047, 7.2054, 7.2062, 7.2058, 7.2056, 7.2054, 7.2051, 7.2048, 7.2038, 7.2037, 7.2035, 7.2042, 7.204, 7.2037, 7.2033, 7.2031, 7.2028, 7.2027, 7.2024, 7.2059, 7.2058, 7.2057, 7.2055, 7.2055, 7.2064, 7.2061, 7.2058, 7.2057, 7.2055, 7.2053, 7.2051, 7.206, 7.2057, 7.2055, 7.2053, 7.2066, 7.2068, 7.2064, 7.2062, 7.206, 7.2058, 7.2055, 7.2063, 7.206, 7.2058, 7.2055, 7.2053, 7.2051, 7.205, 7.2057, 7.2056, 7.2053, 7.2051, 7.2048, 7.2055, 7.2052, 7.2052, 7.2049, 7.2046, 7.2054, 7.2052, 7.2064, 7.2062, 7.2059, 7.2057, 7.2065, 7.2073, 7.2081, 7.2079, 7.2075, 7.2073, 7.2071, 7.2071, 7.2068, 7.2077, 7.2084, 7.2081, 7.2078, 7.2077, 7.208, 7.2079, 7.2078, 7.2076, 7.2083, 7.2081, 7.2079, 7.2077, 7.2085, 7.2082, 7.2081, 7.2081, 7.2089, 7.2086, 7.2083, 7.2084, 7.2082, 7.2079, 7.2077, 7.2084, 7.2083, 7.2079, 7.2076, 7.2074, 7.2073, 7.207, 7.2068, 7.2066, 7.2063, 7.206, 7.2057, 7.2054, 7.2054, 7.2061, 7.2068, 7.2067, 7.2064, 7.2062, 7.2059, 7.2048, 7.2045, 7.2043, 7.2042, 7.2039, 7.2037, 7.2037, 7.2026, 7.2025, 7.2023, 7.202, 7.2017, 7.2025, 7.2033, 7.204, 7.2037, 7.2034, 7.2031, 7.2038, 7.2035, 7.2041, 7.2038, 7.2046, 7.2053, 7.2057, 7.2057, 7.2073, 7.2072, 7.2071, 7.2071, 7.2068, 7.2069, 7.2068, 7.2065, 7.2065, 7.2067, 7.2065, 7.2063, 7.2062, 7.206, 7.2058, 7.2055, 7.2063, 7.206, 7.2057, 7.2066, 7.2073, 7.207, 7.2067, 7.2064, 7.2061, 7.2051, 7.2044, 7.2041, 7.2047, 7.2044, 7.2043, 7.2051, 7.2049, 7.2046, 7.2053, 7.205, 7.2047, 7.2044, 7.2041, 7.2038, 7.2035, 7.2032, 7.2031, 7.2061, 7.2068, 7.2067, 7.2064, 7.207, 7.2068, 7.2065, 7.2062, 7.206, 7.2057, 7.2064, 7.2079, 7.2088, 7.2085, 7.2082, 7.2088, 7.2085, 7.2103, 7.2111, 7.2109, 7.211, 7.2109, 7.2115, 7.2112, 7.2109, 7.2107, 7.2104, 7.2102, 7.2108, 7.2115, 7.2112, 7.2113, 7.2113, 7.2122, 7.212, 7.2117, 7.2114, 7.2125, 7.2123, 7.212, 7.2118, 7.2115, 7.2112, 7.2111, 7.2118, 7.2115, 7.2114, 7.2112, 7.2109, 7.2107, 7.2104, 7.2092, 7.2091, 7.209, 7.2087, 7.2084, 7.2081, 7.208, 7.2086, 7.2086, 7.2083, 7.208, 7.2077, 7.2074, 7.2073, 7.2079, 7.2076, 7.2083, 7.208, 7.2078, 7.2075, 7.2073, 7.207, 7.2068, 7.2074, 7.2071, 7.2069, 7.2066, 7.2063, 7.2061, 7.2077, 7.2074, 7.2071, 7.2068, 7.2067, 7.2057, 7.2055, 7.2053, 7.2051, 7.2048, 7.2047, 7.2055, 7.2054, 7.2052, 7.2051, 7.2058, 7.2056, 7.2074, 7.2086, 7.2092, 7.2091, 7.2089, 7.2087, 7.2085, 7.2085, 7.2091, 7.2097, 7.2094, 7.2091, 7.2088, 7.2086, 7.2082, 7.208, 7.2087, 7.2086, 7.2103, 7.2102, 7.21, 7.2097, 7.2094, 7.2085, 7.2082, 7.2081, 7.2079, 7.2076, 7.2073, 7.207, 7.2067, 7.2064, 7.2061, 7.2068, 7.2057, 7.2046, 7.2053, 7.205, 7.2047, 7.2046, 7.2053, 7.2052, 7.2049, 7.2046, 7.2052, 7.2067, 7.2065, 7.2063, 7.2061, 7.2059, 7.2058, 7.2056, 7.2063, 7.206, 7.2057, 7.2054, 7.2052, 7.2049, 7.2047, 7.2045, 7.2042, 7.2039, 7.2028, 7.2038, 7.2037, 7.204700000000001, 7.2046, 7.2052, 7.205, 7.2048, 7.2047, 7.2046, 7.2043, 7.2041, 7.2038, 7.2035, 7.2033, 7.203, 7.2028, 7.2038, 7.2048000000000005, 7.2046, 7.2043, 7.204, 7.2037, 7.2045, 7.2042, 7.2039, 7.2045, 7.2043, 7.2042, 7.2039, 7.2036, 7.2062, 7.2069, 7.2077, 7.2093, 7.209, 7.2098, 7.2098, 7.2095, 7.2094, 7.2091, 7.2088, 7.2085, 7.2085, 7.2112, 7.211, 7.2107, 7.2104, 7.2111, 7.2109, 7.2107, 7.2108, 7.2126, 7.2126, 7.2123, 7.2122, 7.212, 7.2128, 7.2136, 7.2134, 7.2132, 7.213, 7.2129, 7.2127, 7.2125, 7.2122, 7.2121, 7.2119, 7.2118, 7.2116, 7.2116, 7.2124, 7.2122, 7.2121, 7.2129, 7.2127, 7.2129, 7.2126, 7.2124, 7.2114, 7.2114, 7.2111, 7.211, 7.2108, 7.2106, 7.2104, 7.2101, 7.2099, 7.2097, 7.2095, 7.2095, 7.2094, 7.2092, 7.21, 7.2097, 7.2095, 7.2093, 7.2102, 7.2102, 7.21, 7.2097, 7.2106, 7.2107, 7.2105, 7.2102, 7.2099, 7.2096, 7.2107, 7.2114, 7.2105, 7.2103, 7.21, 7.21, 7.2102, 7.2109, 7.2116, 7.2113, 7.2112, 7.212, 7.2128, 7.2125, 7.2132, 7.2131, 7.2137, 7.2144, 7.2142, 7.214, 7.2138, 7.2144, 7.2152, 7.215, 7.2157, 7.2164, 7.2171, 7.2169, 7.2177, 7.2184, 7.2182, 7.2181, 7.2181, 7.2181, 7.2181, 7.2178, 7.2176, 7.2173, 7.2171, 7.217, 7.2168, 7.2166, 7.2165, 7.2162, 7.2159, 7.2156, 7.2153, 7.2143, 7.2132, 7.2122, 7.212, 7.2118, 7.2116, 7.2114, 7.2114, 7.2111, 7.2112, 7.211, 7.2117, 7.2115, 7.2114, 7.2112, 7.2112, 7.2119, 7.2117, 7.2123, 7.2122, 7.2119, 7.2117, 7.2115, 7.2113, 7.2113, 7.2111, 7.2108, 7.2108, 7.2115, 7.2113, 7.2111, 7.2117, 7.2115, 7.2106, 7.2153, 7.2152, 7.215, 7.2148, 7.2147, 7.2148, 7.2149, 7.2146, 7.2144, 7.2143, 7.214, 7.2138, 7.2137, 7.2134, 7.2131, 7.2128, 7.2125, 7.2123, 7.2121, 7.2119, 7.2117, 7.2114, 7.2113, 7.2111, 7.2109, 7.2108, 7.2105, 7.2102, 7.21, 7.2106, 7.2104, 7.2094, 7.2092, 7.2089, 7.2087, 7.2093, 7.2092, 7.2092, 7.2091, 7.2098, 7.2095, 7.2093, 7.209, 7.2087, 7.2093, 7.2091, 7.208, 7.2077, 7.2076, 7.2082, 7.2079, 7.2081, 7.2079, 7.2077, 7.2075, 7.2073, 7.2071, 7.2069, 7.2059, 7.2048, 7.2038, 7.2027, 7.2017, 7.2014, 7.2012, 7.2018, 7.2015, 7.2012, 7.201, 7.2017, 7.2014, 7.2013, 7.202, 7.2026, 7.2023, 7.2029, 7.2027, 7.2025, 7.2024, 7.2022, 7.2023, 7.202, 7.2017, 7.2016, 7.2013, 7.201, 7.2008, 7.2013, 7.2023, 7.2021, 7.2019, 7.2016, 7.2015, 7.2012, 7.2009, 7.2008, 7.2006, 7.2006, 7.2006, 7.2004, 7.201, 7.2007, 7.2005, 7.2003, 7.2001, 7.1999, 7.1997, 7.1996, 7.1993, 7.201, 7.2007, 7.1998, 7.2004, 7.2002, 7.2, 7.1997, 7.1994, 7.1992, 7.1999, 7.1996, 7.1993, 7.199, 7.1988, 7.1985, 7.1983, 7.1974, 7.1972, 7.1971, 7.197, 7.1969, 7.1977, 7.1975, 7.1973, 7.1972, 7.197, 7.1977, 7.1974, 7.1972, 7.1978, 7.1985, 7.1984, 7.1982, 7.198, 7.1987, 7.1985, 7.1985, 7.1995000000000005, 7.1993, 7.2008, 7.2032, 7.2039, 7.2047, 7.2046, 7.2053, 7.2051, 7.2048, 7.2045, 7.2044, 7.2042, 7.204, 7.2038, 7.2038, 7.2046, 7.2052, 7.2051, 7.2049, 7.2047, 7.2045, 7.2047, 7.2054, 7.2051, 7.2048, 7.2045, 7.2045, 7.2051, 7.2048, 7.2046, 7.2045, 7.2044, 7.2056, 7.2053, 7.206, 7.2059, 7.2065, 7.2071, 7.2068, 7.2066, 7.2063, 7.206, 7.2057, 7.2055, 7.2061, 7.2077, 7.2084, 7.2082, 7.2079, 7.208, 7.2078, 7.2086, 7.2078, 7.2078, 7.2076, 7.2076, 7.2073, 7.208, 7.207, 7.206, 7.2051, 7.2058, 7.2056, 7.2054, 7.2063, 7.2054, 7.2052, 7.2049, 7.2046, 7.2043, 7.205, 7.2047, 7.2044, 7.2044, 7.2042, 7.2049, 7.2048, 7.2045, 7.2051, 7.2049, 7.2046, 7.2046, 7.2061, 7.206, 7.2057, 7.2056, 7.2053, 7.2051, 7.2057, 7.2055, 7.2054, 7.2044, 7.2041, 7.2038, 7.2037, 7.2037, 7.2027, 7.2025, 7.2027, 7.2026, 7.2023, 7.2013, 7.2022, 7.2019, 7.2016, 7.2014, 7.2013, 7.201, 7.2007, 7.2006, 7.2004, 7.2002, 7.2001, 7.1999, 7.1998, 7.1997, 7.1995, 7.1994, 7.1992, 7.1984, 7.1974, 7.1972, 7.1979, 7.1976, 7.1982, 7.1988, 7.1985, 7.1983, 7.1981, 7.1978, 7.1976, 7.1974, 7.1965, 7.1971, 7.1969, 7.1977, 7.1968, 7.1968, 7.1967, 7.1967, 7.1958, 7.1956, 7.1953, 7.1951, 7.1958, 7.1956, 7.1954, 7.1944, 7.1943, 7.194, 7.194, 7.1939, 7.1938, 7.1944, 7.1941, 7.1941, 7.1948, 7.1947, 7.1954, 7.1961, 7.1959, 7.1966, 7.1965, 7.1956, 7.1955, 7.1954, 7.1954, 7.1951, 7.1951, 7.1958, 7.1991, 7.1999, 7.2001, 7.2007, 7.2005, 7.2012, 7.2009, 7.2008, 7.2006, 7.2004, 7.2003, 7.2009, 7.2008, 7.2006, 7.2005, 7.2003, 7.2008, 7.2014, 7.2012, 7.201, 7.2016, 7.2014, 7.202, 7.2018, 7.2024, 7.2023, 7.2029, 7.2026, 7.2033, 7.2031, 7.2029, 7.2026, 7.2032, 7.203, 7.2028, 7.2018, 7.2016, 7.2005, 7.2004, 7.2003, 7.2, 7.1998, 7.1995, 7.1994, 7.1991, 7.1989, 7.1986, 7.1984, 7.1982, 7.1979, 7.1977, 7.1974, 7.1973, 7.197, 7.1968, 7.1967, 7.1965, 7.1962, 7.196, 7.1957, 7.1959, 7.1957, 7.1964, 7.1962, 7.1959, 7.1956, 7.1957, 7.1964, 7.1964, 7.1978, 7.1975, 7.1973, 7.197, 7.1968, 7.1966, 7.1965, 7.1963, 7.1961, 7.1959, 7.1958, 7.1956, 7.1963, 7.1969, 7.1975, 7.1981, 7.1979, 7.1984, 7.1983, 7.198, 7.1977, 7.1974, 7.1973, 7.1972, 7.1969, 7.1967, 7.1965, 7.1962, 7.1959, 7.1957, 7.1954, 7.1951, 7.1948, 7.1946, 7.1945, 7.1944, 7.1942, 7.194, 7.1946, 7.1943, 7.1942, 7.194, 7.1937, 7.194, 7.1938, 7.1938, 7.1936, 7.1942, 7.1948, 7.1946, 7.1944, 7.1942, 7.1942, 7.1941, 7.1939, 7.1947, 7.1944, 7.1942, 7.194, 7.194, 7.1938, 7.1951, 7.1958, 7.1975, 7.1982, 7.1976, 7.1988, 7.1986, 7.1987, 7.1997, 7.2004, 7.201, 7.2007, 7.2004, 7.2002, 7.1999, 7.2005, 7.2005, 7.2002, 7.1999, 7.1998, 7.1997, 7.1997, 7.1994, 7.1992, 7.1989, 7.1986, 7.1984, 7.1982, 7.1979, 7.1978, 7.1976, 7.1975, 7.198, 7.1978, 7.1976, 7.1973, 7.197, 7.1975, 7.1973, 7.1979, 7.1977, 7.1976, 7.1975, 7.1973, 7.197, 7.1967, 7.1965, 7.1971, 7.1968, 7.1965, 7.1963, 7.1961, 7.1967, 7.1964, 7.1965, 7.1962, 7.1963, 7.1962, 7.1959, 7.1957, 7.1955, 7.1954, 7.1961, 7.1967, 7.1965, 7.1972, 7.197, 7.1969, 7.1968, 7.1966, 7.1964, 7.197, 7.1969, 7.1968, 7.1967, 7.1965, 7.1963, 7.197, 7.1969, 7.1967, 7.1967, 7.1964, 7.1961, 7.1959, 7.1957, 7.1954, 7.1952, 7.1949, 7.1955, 7.1953, 7.1952, 7.1949, 7.1948, 7.1946, 7.1944, 7.1943, 7.194, 7.1939, 7.1937, 7.1934, 7.1933, 7.193, 7.1927, 7.1933, 7.1931, 7.1928, 7.1925, 7.1925, 7.1922, 7.1921, 7.1918, 7.1917, 7.1923, 7.192, 7.1918, 7.1915, 7.1921, 7.1927, 7.1934, 7.194, 7.1937, 7.1935, 7.1941, 7.1938, 7.1935, 7.1933, 7.194, 7.1938, 7.1937, 7.1935, 7.1934, 7.1934, 7.1932, 7.1929, 7.1928, 7.1934, 7.1932, 7.1938, 7.1937, 7.1943, 7.1941, 7.1941, 7.1938, 7.1935, 7.1938, 7.1935, 7.1932, 7.1929, 7.1927, 7.1926, 7.1932, 7.1932, 7.193, 7.1928, 7.1927, 7.1925, 7.1926, 7.1926, 7.1925, 7.1923, 7.1921, 7.193, 7.1943, 7.1941, 7.194, 7.1938, 7.1944, 7.1942, 7.1949, 7.1949, 7.1947, 7.1945, 7.1943, 7.1941, 7.1939, 7.1937, 7.1936, 7.1933, 7.1931, 7.1931, 7.1929, 7.1935, 7.1934, 7.1932, 7.1925, 7.1923, 7.1921, 7.1928, 7.1934, 7.1946, 7.1944, 7.1942, 7.194, 7.1946, 7.1943, 7.1942, 7.1951, 7.1949, 7.1955, 7.1958, 7.1956, 7.1962, 7.196, 7.196, 7.1969, 7.1967, 7.1964, 7.197, 7.1967, 7.1964, 7.1987, 7.1984, 7.199, 7.1996, 7.1995, 7.1992, 7.199, 7.1996, 7.2026, 7.2032, 7.2045, 7.2042, 7.204, 7.2037, 7.2042, 7.204, 7.2038, 7.2035, 7.2032, 7.2029, 7.2034, 7.2031, 7.2028, 7.2025, 7.2023, 7.2036, 7.2042, 7.2039, 7.2044, 7.2046, 7.2048, 7.2046, 7.2046, 7.2045, 7.2043, 7.2041, 7.2038, 7.2036, 7.2034, 7.2032, 7.203, 7.2028, 7.2027, 7.2026, 7.2023, 7.202, 7.202, 7.2019, 7.2016, 7.2014, 7.2011, 7.2009, 7.2001, 7.1999, 7.201, 7.2008, 7.2006, 7.2004, 7.2001, 7.2008, 7.2006, 7.2007, 7.2004, 7.1997, 7.2003, 7.2009, 7.2024, 7.2021, 7.2019, 7.2017, 7.2014, 7.2012, 7.201, 7.2007, 7.1997, 7.2003, 7.2, 7.1997, 7.1995, 7.1993, 7.1998, 7.2005, 7.2004, 7.2009, 7.2025, 7.2022, 7.2028, 7.2033, 7.2039, 7.2039, 7.2049, 7.2047, 7.2053, 7.2052, 7.2058, 7.2055, 7.2065, 7.2063, 7.2068, 7.2065, 7.2063, 7.2061, 7.206, 7.2058, 7.2055, 7.2053, 7.2058, 7.2056, 7.2054, 7.2052, 7.2057, 7.2063, 7.2061, 7.2066, 7.2064, 7.2062, 7.2059, 7.2057, 7.2055, 7.206, 7.2065, 7.2056, 7.2053, 7.205, 7.2047, 7.2052, 7.2049, 7.2046, 7.2051, 7.2056, 7.2053, 7.205, 7.2048, 7.2046, 7.2044, 7.2042, 7.2047, 7.2044, 7.2042, 7.204, 7.2045, 7.2043, 7.2049, 7.2048, 7.2045, 7.2043, 7.204, 7.2039, 7.2036, 7.2033, 7.2039, 7.2036, 7.2042, 7.204, 7.2039, 7.2045, 7.2051, 7.2048, 7.2061, 7.2066, 7.2064, 7.207, 7.2075, 7.2073, 7.2071, 7.2069, 7.2066, 7.2064, 7.2062, 7.2092, 7.2089, 7.2095, 7.2097, 7.2094, 7.2092, 7.2114, 7.212, 7.2118, 7.2117, 7.2114, 7.2114, 7.2121, 7.2119, 7.2124, 7.2122, 7.2131, 7.2123, 7.2129, 7.2128, 7.2126, 7.2124, 7.2124, 7.2132, 7.2151, 7.2157, 7.2155, 7.2153, 7.215, 7.2148, 7.2147, 7.2165, 7.2165, 7.217, 7.2168, 7.2166, 7.2164, 7.217, 7.2176, 7.22, 7.2192, 7.2189], '192.168.122.113': [5.6195, 5.4783, 5.5253, 5.5977, 5.5827, 6.5141, 6.4418, 6.4432, 6.9594, 7.4582, 7.3164, 7.1822, 7.1415, 7.3162, 7.2297, 7.1628, 7.0961, 6.9994, 6.9561, 6.9104, 6.8447, 6.7863, 6.7342, 6.7358, 6.7597, 7.158, 7.0944, 7.0366, 7.0083, 6.981, 6.9465, 6.9447, 7.4037, 7.6664, 7.7659, 7.7283, 7.6816, 7.6543, 7.6056, 7.7844, 7.7372, 7.7163, 7.6631, 7.6138, 7.5745, 7.6394, 7.6038, 7.6744, 7.6475, 7.6036, 7.5838, 7.5517, 7.5101, 7.3811, 7.4372, 7.4116, 7.3869, 7.3795, 7.3571, 7.3293, 7.3863, 7.3577, 7.3308, 7.3091, 7.2792, 7.2682, 7.2496, 7.3042, 7.3555, 7.3252, 7.3014, 7.279, 7.3354, 7.3186, 7.3089, 7.308, 7.2245, 7.2109, 7.2028, 7.2589, 7.2418, 7.2208, 7.2104, 7.188, 7.1773, 7.1637, 7.1487, 7.1341, 7.1145, 7.0988, 7.0798, 7.0604, 7.0564, 7.0473, 7.0365, 7.0203, 7.0091, 6.9957, 6.9795, 6.9649, 7.0012, 7.0401, 7.0861, 7.0847, 7.1215, 7.1553, 7.1377, 7.1225, 7.1057, 7.1119, 7.0954, 7.1295, 7.1239, 7.1071, 7.1087, 7.0963, 7.0828, 7.0676, 7.0552, 7.0441, 7.0322, 7.0699, 7.0614, 7.0468, 7.0878, 7.0769, 7.0685, 7.1004, 7.0949, 7.0898, 7.0756, 7.0689, 7.0938, 7.0898, 7.076, 7.0699, 7.0599, 7.0883, 7.0779, 7.0709, 7.0725, 7.0624, 7.0577, 7.0829, 7.0806, 7.0709, 7.0618, 7.0513, 7.0486, 7.0465, 7.0393, 7.0343, 7.0597, 7.0574, 7.061, 7.0516, 7.0403, 7.036, 7.0302, 7.0222, 7.0451, 7.0132, 7.0198, 7.009, 6.9982, 6.9878, 7.0128, 7.0057, 7.0307, 7.0238, 7.014, 7.0376, 7.1053, 7.1262, 7.1158, 7.1061, 7.0962, 7.0922, 7.0846, 7.0785, 7.0793, 7.073, 7.0636, 7.0543, 7.0522, 7.1103, 7.1014, 7.0993, 7.1202, 7.1409, 7.1376, 7.1308, 7.1511, 7.1432, 7.1381, 7.1593, 7.1538, 7.1739, 7.1699, 7.1896, 7.1815, 7.2032, 7.1947, 7.1894, 7.1839, 7.1789, 7.1771, 7.1777, 7.1715, 7.1656, 7.1585, 7.1554, 7.1501, 7.1426, 7.1388, 7.1318, 7.1279, 7.1254, 7.1436, 7.1361, 7.1318, 7.1306, 7.1229, 7.1419, 7.1367, 7.1299, 7.1226, 7.1156, 7.1108, 7.1073, 7.1057, 7.0991, 7.0941, 7.112, 7.113, 7.1264, 7.1239, 7.1162, 7.1122, 7.1484, 7.1406, 7.1387, 7.1361, 7.1514, 7.1459, 7.139, 7.1334, 7.1337, 7.1313, 7.1254, 7.1443, 7.159, 7.1569, 7.1501, 7.1508, 7.1514, 7.1482, 7.1637, 7.1619, 7.1576, 7.1746, 7.1697, 7.187, 7.1818, 7.1829, 7.1801, 7.196, 7.1909, 7.1901, 7.1854, 7.1783, 7.1731, 7.1703, 7.169, 7.1646, 7.161, 7.1585, 7.1537, 7.1488, 7.1465, 7.1438, 7.1214, 7.117, 7.112, 7.1058, 7.1012, 7.0988, 7.0935, 7.0885, 7.0845, 7.0962, 7.0901, 7.0853, 7.0994, 7.0949, 7.1107, 7.1097, 7.1078, 7.1028, 7.0966, 7.0916, 7.089, 7.0834, 7.0808, 7.0782, 7.0757, 7.0748, 7.0752, 7.0877, 7.0856, 7.082, 7.0791, 7.078, 7.0757, 7.0912, 7.0885, 7.0874, 7.0838, 7.0798, 7.0834, 7.098, 7.1006, 7.1186, 7.1337, 7.1471, 7.1419, 7.1373, 7.1343, 7.1304, 7.128, 7.1243, 7.1358, 7.1302, 7.1254, 7.1234, 7.1178, 7.114, 7.1089, 7.1234, 7.1202, 7.1161, 7.1151, 7.1097, 7.1078, 7.12, 7.1172, 7.1166, 7.112, 7.1112, 7.1062, 7.1054, 7.1007, 7.0991, 7.0943, 7.0899, 7.0848, 7.0827, 7.0817, 7.0791, 7.0753, 7.0793, 7.0788, 7.079, 7.0764, 7.0881, 7.0836, 7.0791, 7.0769, 7.0779000000000005, 7.106, 7.1018, 7.0997, 7.098, 7.0933, 7.0883, 7.0849, 7.0834, 7.0809, 7.0674, 7.0631, 7.0609, 7.0574, 7.0529, 7.0483, 7.0456, 7.0432, 7.0448, 7.0411, 7.0424, 7.0801, 7.0761, 7.0721, 7.0698, 7.0674, 7.1485, 7.1442, 7.14, 7.1373, 7.135, 7.1442, 7.1398, 7.1496, 7.1595, 7.1435, 7.141, 7.1371, 7.1389, 7.1393, 7.1354, 7.1318, 7.1316, 7.1294, 7.1248, 7.1349, 7.1324, 7.1285, 7.1257, 7.1245, 7.1206, 7.1186, 7.1148, 7.1116, 7.1223, 7.1198, 7.1217, 7.1188, 7.1155, 7.1164, 7.1302, 7.1393, 7.167, 7.1629, 7.1597, 7.1597, 7.1572, 7.1538, 7.1633, 7.1679, 7.164, 7.1611, 7.1597, 7.1572, 7.1546, 7.1519, 7.1482, 7.1707, 7.1942, 7.1833, 7.183, 7.1788, 7.1757, 7.1846, 7.1939, 7.1906, 7.187, 7.2038, 7.204, 7.2009, 7.1987, 7.1974, 7.1944, 7.1911, 7.187, 7.1836, 7.1806, 7.1776, 7.1784, 7.1752, 7.1715, 7.1692, 7.1673, 7.1753, 7.172, 7.1683, 7.1648, 7.173, 7.1808, 7.1772, 7.1872, 7.2115, 7.2082, 7.2157, 7.213, 7.2114, 7.2091, 7.2058, 7.2024, 7.2009, 7.1988, 7.195, 7.193, 7.19, 7.1867, 7.1828, 7.181, 7.1773, 7.1847, 7.1808, 7.1774, 7.1752, 7.1739, 7.1712, 7.1691, 7.1654, 7.1627, 7.1604, 7.158, 7.1559, 7.1537, 7.1612, 7.159, 7.1589, 7.1571, 7.1544, 7.1522, 7.152, 7.1489, 7.1489, 7.1474, 7.1486, 7.1575, 7.1552, 7.1535, 7.1617, 7.159, 7.1666, 7.166, 7.1631, 7.1607, 7.1584, 7.1653, 7.1654, 7.1621, 7.1586, 7.1587, 7.157, 7.1543, 7.1517, 7.1498, 7.158, 7.1549, 7.1559, 7.1527, 7.1608, 7.1578, 7.1569, 7.1552, 7.1526, 7.1504, 7.1471, 7.1438, 7.1419, 7.1385, 7.1364, 7.1359, 7.1328, 7.1295, 7.1264, 7.1337, 7.1311, 7.129, 7.1259, 7.1361, 7.1432, 7.1429, 7.1398, 7.1391, 7.1465, 7.146, 7.1435, 7.1409, 7.1483, 7.1466, 7.1527, 7.1514, 7.148, 7.1543, 7.1512, 7.1572, 7.1549, 7.1615, 7.1602, 7.1569, 7.1548, 7.1608, 7.1589, 7.1573, 7.1568, 7.1538, 7.16, 7.1578, 7.1549, 7.153, 7.1517, 7.1501, 7.1477, 7.145, 7.1464, 7.1451, 7.1445, 7.1427, 7.1402, 7.1373, 7.1544, 7.1515, 7.1498, 7.1567, 7.1558, 7.1539, 7.1509, 7.1494, 7.1466, 7.1454, 7.1509, 7.1498, 7.1469, 7.1439, 7.1511, 7.1499, 7.1394, 7.1499, 7.147, 7.1459, 7.1429, 7.1345, 7.125, 7.1306, 7.1295, 7.1267, 7.1252, 7.1256, 7.1149, 7.1129, 7.1357, 7.1336, 7.139, 7.145, 7.1428, 7.1398, 7.1456, 7.151, 7.1486, 7.1459, 7.1439, 7.141, 7.1466, 7.1527, 7.1507, 7.1479, 7.1453, 7.1428, 7.1403, 7.1388, 7.144, 7.1414, 7.1392, 7.1446, 7.1422, 7.14, 7.1389, 7.1366, 7.1348, 7.133, 7.1307, 7.1288, 7.1342, 7.1318, 7.1292, 7.1352, 7.1343, 7.1325, 7.1311, 7.1294, 7.1276, 7.1262, 7.1245, 7.122, 7.12, 7.1188, 7.1167, 7.1145, 7.1409, 7.1459, 7.1434, 7.1424, 7.14, 7.1378, 7.1432, 7.1489, 7.1466, 7.1446, 7.1427, 7.1405, 7.1379, 7.1432, 7.1486, 7.1545, 7.1524, 7.1508, 7.1486, 7.1477, 7.1454, 7.1433, 7.1489, 7.1476, 7.1545, 7.1528, 7.1502, 7.1732, 7.1708, 7.1682, 7.1734, 7.1792, 7.1775, 7.1756, 7.1808, 7.1796, 7.1777, 7.1829, 7.1807, 7.1781, 7.1779, 7.1767, 7.1825, 7.1799, 7.1861, 7.1839, 7.1823, 7.1804, 7.1791, 7.177, 7.1758, 7.1777, 7.1764, 7.1925, 7.1918, 7.1897, 7.1825, 7.1811, 7.1861, 7.1881, 7.1873, 7.1946, 7.1922, 7.1904, 7.1884, 7.1864, 7.1841, 7.1891, 7.1869, 7.1858, 7.1847, 7.1894, 7.1875, 7.1854, 7.1837, 7.1817, 7.1794, 7.1776, 7.1756, 7.1811, 7.1796, 7.1848, 7.1839, 7.1816, 7.1805, 7.1882, 7.1862, 7.1849, 7.184, 7.1817, 7.1861, 7.1845, 7.189, 7.1868, 7.1844, 7.1834, 7.1814, 7.1807, 7.1787, 7.1835, 7.1814, 7.1798, 7.1847, 7.1825, 7.187, 7.185, 7.1854, 7.184, 7.1887, 7.1867, 7.1845, 7.1825, 7.1802, 7.1781, 7.1825, 7.1936, 7.1979, 7.197, 7.1951, 7.1931, 7.1975, 7.1966, 7.1949, 7.193, 7.1906, 7.1882, 7.1932, 7.1911, 7.1893, 7.1885, 7.1884, 7.1968, 7.195, 7.1881, 7.1864, 7.191, 7.1888, 7.1866, 7.1843, 7.1826, 7.1803, 7.1848, 7.1872, 7.1915, 7.1905, 7.1889, 7.1874, 7.1864, 7.1848, 7.1831, 7.1815, 7.1811, 7.1809, 7.1792, 7.1771, 7.1762, 7.1741, 7.1793, 7.1788, 7.177, 7.1751, 7.174, 7.1786, 7.1834, 7.1879, 7.1863, 7.1852, 7.183, 7.1809, 7.1799, 7.1847, 7.1843, 7.1825, 7.1804, 7.1797, 7.1778, 7.1829, 7.1821, 7.193, 7.1911, 7.1905, 7.19, 7.1952, 7.1938, 7.1921, 7.1906, 7.1887, 7.1874, 7.1924, 7.197, 7.2017, 7.2058, 7.2039, 7.2091, 7.21, 7.2083, 7.2126, 7.2112, 7.209, 7.2069, 7.2048, 7.2096, 7.2084, 7.2071, 7.2049, 7.2029, 7.2012, 7.1997, 7.1975, 7.1953, 7.1943, 7.1925, 7.1915, 7.1905, 7.1896, 7.1875, 7.1853, 7.1833, 7.183, 7.1811, 7.182, 7.1804, 7.1853, 7.1839, 7.1881, 7.1876, 7.1917, 7.1897, 7.1876, 7.1805, 7.1789, 7.178, 7.1768, 7.1755, 7.1736, 7.1717, 7.1705, 7.1692, 7.1675, 7.1663, 7.1647, 7.1687, 7.1672, 7.166, 7.1644, 7.1646, 7.1695, 7.1798, 7.1797, 7.19, 7.1895, 7.1891, 7.1878, 7.1869, 7.1852, 7.1849, 7.1842, 7.1825, 7.1807, 7.1817, 7.18, 7.1792, 7.1802, 7.1812000000000005, 7.1793, 7.184, 7.1825, 7.1816, 7.1806, 7.1796, 7.1836, 7.182, 7.1802, 7.1792, 7.1776, 7.1762, 7.175, 7.1749, 7.1745, 7.1739, 7.172, 7.1766, 7.1755, 7.1803, 7.1813, 7.18, 7.1787, 7.1833, 7.1819, 7.1859, 7.1844, 7.1838, 7.1828, 7.182, 7.1803, 7.1793, 7.1782, 7.1764, 7.1762, 7.1745, 7.173, 7.1714, 7.1751, 7.1789, 7.1771, 7.1761, 7.1748, 7.1761, 7.1744, 7.1726, 7.1764, 7.1753, 7.1739, 7.1721, 7.173100000000001, 7.1715, 7.1703, 7.1656, 7.1697, 7.1678, 7.1674, 7.1655, 7.1639, 7.162, 7.1653, 7.1647, 7.1637, 7.1627, 7.1613, 7.1596, 7.1586, 7.157, 7.163, 7.1705, 7.1689, 7.1674, 7.1677, 7.1713, 7.1701, 7.1696, 7.1678, 7.1668, 7.1659, 7.1644, 7.1729, 7.173900000000001, 7.1726, 7.1709, 7.1697, 7.176, 7.1796, 7.1782, 7.1763, 7.1752, 7.1691, 7.1675, 7.1713, 7.1697, 7.1682, 7.1667, 7.1657, 7.169, 7.1725, 7.172, 7.1704, 7.1695, 7.1685, 7.1668, 7.1667, 7.1655, 7.1656, 7.1691, 7.1676, 7.1713, 7.1711, 7.1699, 7.169, 7.1729, 7.1716, 7.1754, 7.1797, 7.1834, 7.1827, 7.1812, 7.1852, 7.1836, 7.1822, 7.1853, 7.1849, 7.1847, 7.1834, 7.1819, 7.1858, 7.1893, 7.193, 7.1973, 7.1969, 7.1953, 7.1989, 7.1978, 7.1961, 7.1948, 7.1938, 7.1976, 7.1971, 7.1966, 7.1955, 7.199, 7.1983, 7.1975, 7.1963, 7.1949, 7.1933, 7.1969, 7.1955, 7.1941, 7.1926, 7.1912, 7.1898, 7.1891, 7.1876, 7.1907, 7.2029, 7.2022, 7.2016, 7.21, 7.2085, 7.2075, 7.2059, 7.1999, 7.1983, 7.198, 7.2015, 7.2004, 7.1997, 7.1983, 7.1967, 7.1952, 7.1941, 7.1951, 7.1961, 7.1945, 7.1985, 7.198, 7.1967, 7.1955, 7.1965, 7.1948, 7.1933, 7.1927, 7.1922, 7.191, 7.19, 7.189, 7.1879, 7.1868, 7.1851, 7.1837, 7.1821, 7.1852, 7.1836, 7.1827, 7.186, 7.1846, 7.183, 7.1815, 7.1802, 7.1796, 7.179, 7.180000000000001, 7.1834, 7.1844, 7.1831, 7.1816, 7.181, 7.1795, 7.1779, 7.1809, 7.1841, 7.1836, 7.1832, 7.1828, 7.186, 7.1812, 7.1844, 7.1881, 7.1888, 7.1876, 7.1859, 7.1845, 7.1842, 7.1835, 7.1823, 7.1811, 7.1942, 7.193, 7.1916, 7.1902, 7.1898, 7.1933, 7.1922, 7.1905, 7.189, 7.188, 7.1873, 7.1859, 7.1849, 7.1836, 7.1821, 7.1831000000000005, 7.1817, 7.18, 7.1788, 7.1776, 7.1813, 7.1798, 7.18, 7.1786, 7.178, 7.1769, 7.1755, 7.1742, 7.1727, 7.1728, 7.1715, 7.1725, 7.1721, 7.171, 7.1698, 7.1683, 7.1716, 7.1704, 7.1691, 7.1722, 7.1714, 7.1703, 7.1693, 7.1678, 7.1676, 7.1664, 7.1707, 7.1705, 7.1689, 7.1676, 7.1665, 7.1654, 7.1643, 7.1676, 7.1668, 7.1652, 7.1639, 7.1676, 7.1686, 7.1676, 7.1686000000000005, 7.169600000000001, 7.170600000000001, 7.1702, 7.1739, 7.1727, 7.1711, 7.1701, 7.1739, 7.1725, 7.1711, 7.174, 7.173, 7.1724, 7.1713, 7.1707, 7.1694, 7.168, 7.1711, 7.1702, 7.1692, 7.1721, 7.1712, 7.1708, 7.1694, 7.1726, 7.1755, 7.1742, 7.1774, 7.1767, 7.18, 7.1747, 7.1735, 7.1723, 7.1709, 7.1695, 7.1682, 7.1713, 7.1705, 7.1693, 7.1732, 7.1726, 7.1716, 7.1709, 7.17, 7.1687, 7.1673, 7.1702, 7.1691, 7.1679, 7.1682, 7.1676, 7.1715, 7.17, 7.1692, 7.1681, 7.1667, 7.1657, 7.1646, 7.1635, 7.1621, 7.1627, 7.1617, 7.161, 7.1595, 7.1623, 7.1658, 7.1651, 7.1638, 7.1624, 7.1611, 7.1602, 7.1589, 7.1618, 7.1608, 7.1594, 7.1591, 7.1578, 7.1609, 7.1604, 7.159, 7.1641, 7.1634, 7.1665, 7.1652, 7.1649, 7.164, 7.1628, 7.1662, 7.1656, 7.165, 7.1685, 7.1721, 7.1756, 7.1792, 7.1802, 7.1812000000000005, 7.1804, 7.1791, 7.182, 7.181, 7.1802, 7.1792, 7.1784, 7.1775, 7.1841, 7.1836, 7.187, 7.1858, 7.1888, 7.1919, 7.192900000000001, 7.1918, 7.1916, 7.2054, 7.2042, 7.2072, 7.2062, 7.2059, 7.2052, 7.2091, 7.2083, 7.2091, 7.2088, 7.2119, 7.2115, 7.2164, 7.216, 7.2148, 7.2173, 7.2166, 7.2157, 7.2181, 7.2168, 7.2158, 7.2185, 7.2179, 7.2177, 7.2171, 7.2161, 7.2187, 7.2214, 7.2204, 7.223, 7.2222, 7.2251, 7.2241, 7.2251, 7.226100000000001, 7.2249, 7.2294, 7.2319, 7.2348, 7.2335, 7.2323, 7.2318, 7.2305, 7.2303, 7.237, 7.2359, 7.2347, 7.2345, 7.2332, 7.236, 7.2358, 7.2347, 7.2336, 7.2324, 7.2349, 7.2337, 7.2332, 7.232, 7.24, 7.2427, 7.2414, 7.24, 7.24, 7.2389, 7.2413, 7.2411, 7.2399, 7.239, 7.2384, 7.2381, 7.2407, 7.24, 7.2387, 7.2373, 7.2362, 7.2351, 7.2343, 7.2332, 7.2324, 7.2317, 7.2304, 7.2292, 7.2287, 7.2327, 7.2315, 7.2341, 7.2332, 7.2322, 7.231, 7.2299, 7.2288, 7.2275, 7.2261, 7.2249, 7.2239, 7.2262, 7.2249, 7.2239, 7.2226, 7.2223, 7.2214, 7.2207, 7.2197, 7.2192, 7.2181, 7.2169, 7.2163, 7.2154, 7.2179, 7.2167, 7.2159, 7.216900000000001, 7.2128, 7.2122, 7.2112, 7.2107, 7.2097, 7.2123, 7.2147, 7.2135, 7.2134, 7.2121, 7.2182, 7.2174, 7.2168, 7.2193, 7.2194, 7.2184, 7.2209, 7.2203, 7.2192, 7.2225, 7.2219, 7.2208, 7.2197, 7.2186, 7.2176, 7.2217, 7.2214, 7.2173, 7.2198, 7.2225, 7.2218, 7.221, 7.2212, 7.2237, 7.223, 7.2259, 7.2255, 7.228, 7.2308, 7.2336, 7.2329, 7.2318, 7.2313, 7.2307, 7.2302, 7.2292, 7.2317, 7.2348, 7.2377, 7.2368, 7.2395, 7.2387, 7.2377, 7.2369, 7.2364, 7.2355, 7.2353, 7.2347, 7.2337, 7.2327, 7.2317, 7.231, 7.2338, 7.2335, 7.2323, 7.2356, 7.2349, 7.2349, 7.2336, 7.233, 7.2318, 7.2339, 7.2328, 7.2318, 7.2411, 7.2399, 7.2388, 7.2379, 7.2369, 7.2358, 7.2392, 7.2381, 7.2399, 7.2425, 7.242, 7.2445, 7.2468, 7.2456, 7.2444, 7.2435, 7.2422, 7.241, 7.2409, 7.2399, 7.2387, 7.2383, 7.2372, 7.2359, 7.235, 7.2343, 7.2337, 7.2334, 7.2329, 7.2316, 7.2305, 7.2296, 7.2293, 7.2286, 7.2275, 7.2264, 7.2256, 7.225, 7.2244, 7.2236, 7.2229, 7.2224, 7.2213, 7.2202, 7.2189, 7.2178, 7.2167, 7.2157, 7.215, 7.2138, 7.2162, 7.2151, 7.215, 7.2145, 7.2144, 7.2136, 7.2127, 7.2118, 7.2111, 7.2134, 7.2123, 7.2111, 7.21, 7.2125, 7.2114, 7.2109, 7.211, 7.2101, 7.2092, 7.208, 7.2071, 7.2066, 7.2064, 7.2053, 7.2048, 7.2073, 7.2067, 7.2056, 7.2082, 7.2128, 7.2119, 7.2129, 7.2123, 7.2115, 7.2159, 7.2151, 7.2223, 7.2247, 7.2243, 7.2235, 7.2224, 7.2244, 7.2232, 7.229, 7.2284, 7.2275, 7.2267, 7.2255, 7.2244, 7.2273, 7.23, 7.2293, 7.2282, 7.2271, 7.2264, 7.2318, 7.2307, 7.2296, 7.2291, 7.228, 7.2268, 7.2258, 7.2249, 7.224, 7.2233, 7.2257, 7.2255, 7.2248, 7.2236, 7.2225, 7.2224, 7.222, 7.221, 7.2201, 7.2191, 7.2181, 7.2174, 7.2167, 7.2162, 7.2187, 7.2181, 7.2174, 7.2169, 7.2159, 7.2148, 7.2138, 7.2134, 7.2158, 7.2148, 7.211, 7.21, 7.2141, 7.2201, 7.2189, 7.2179, 7.2179, 7.2172, 7.2167, 7.2252, 7.2244, 7.2239, 7.2298, 7.2287, 7.2289, 7.2285, 7.2282, 7.2275, 7.2265, 7.2255, 7.2244, 7.2241, 7.2255, 7.2246, 7.2247, 7.2241, 7.2239, 7.2263, 7.2253, 7.2272, 7.2296, 7.2287, 7.2276, 7.227, 7.2292, 7.2286, 7.2275, 7.2267, 7.2292, 7.2319, 7.2308, 7.23, 7.2332, 7.2361, 7.2356, 7.2355, 7.2347, 7.2348, 7.2346, 7.2338, 7.2327, 7.2356, 7.2349, 7.2342, 7.2332, 7.2323, 7.2314, 7.2341, 7.2349, 7.2339, 7.2368, 7.2369, 7.2367, 7.236, 7.2352, 7.2344, 7.2338, 7.2361, 7.2358, 7.2353, 7.2346, 7.2344, 7.2339, 7.2365, 7.2356, 7.2346, 7.2343, 7.2334, 7.2356, 7.2377, 7.2366, 7.2363, 7.2352, 7.2348, 7.234, 7.2331, 7.2328, 7.2317, 7.2339, 7.2328, 7.2324, 7.2312, 7.2304, 7.2295, 7.2285, 7.2276, 7.2269, 7.2259, 7.2254, 7.2337, 7.2327, 7.2319, 7.231, 7.2305, 7.2329, 7.2323, 7.232, 7.2316, 7.2307, 7.2296, 7.2317, 7.2309, 7.2301, 7.2311000000000005, 7.232100000000001, 7.2316, 7.2307, 7.2302, 7.2297, 7.232, 7.231, 7.2307, 7.236, 7.2351, 7.2341, 7.2336, 7.2326, 7.2317, 7.2319, 7.2314, 7.2339, 7.2336, 7.2328, 7.232, 7.2312, 7.2306, 7.2298, 7.2292, 7.2283, 7.2273, 7.2296, 7.2288, 7.2285, 7.2305, 7.2298, 7.2321, 7.2314, 7.2307, 7.23, 7.2322, 7.2316, 7.2307, 7.2299, 7.23, 7.2293, 7.2285, 7.2276, 7.2267, 7.2288, 7.2281, 7.2277, 7.2274, 7.2264, 7.2263, 7.2254, 7.2245, 7.2236, 7.2258, 7.225, 7.2247, 7.2246, 7.2247, 7.23, 7.2355, 7.2348, 7.2398, 7.239, 7.2382, 7.238, 7.2371, 7.2419, 7.2408, 7.24, 7.2419, 7.2413, 7.2403, 7.2396, 7.2389, 7.2381, 7.2372, 7.2365, 7.2362, 7.2354, 7.2346, 7.2341, 7.2331, 7.2322, 7.2317, 7.2307, 7.2298, 7.229, 7.2283, 7.2275, 7.2264, 7.2261, 7.2255, 7.2254, 7.2276, 7.2327, 7.2346, 7.2424, 7.2418, 7.2414, 7.2403, 7.2396, 7.2417, 7.2411, 7.241, 7.2406, 7.2396, 7.2396, 7.2389, 7.2385, 7.2377, 7.237, 7.2364, 7.2356, 7.2378, 7.2368, 7.236, 7.2379, 7.2369, 7.2359, 7.2384, 7.2376, 7.237, 7.2364, 7.2361, 7.2357, 7.2389, 7.238, 7.2375, 7.2367, 7.2361, 7.2352, 7.2379, 7.2371, 7.2374, 7.2372, 7.2394, 7.2386, 7.2378, 7.2401, 7.2393, 7.2391, 7.2362, 7.2359, 7.235, 7.2342, 7.2335, 7.2328, 7.232, 7.2319, 7.2298, 7.2293, 7.2299, 7.2293, 7.2287, 7.2277, 7.2275, 7.2321, 7.2319, 7.2314, 7.2304, 7.2302, 7.2349, 7.234, 7.2338, 7.2356, 7.235, 7.2341, 7.2336, 7.2327, 7.2322, 7.232, 7.2314, 7.2312, 7.2311, 7.2308, 7.2304, 7.2299, 7.2293, 7.2287, 7.228, 7.227, 7.2263, 7.2283, 7.2274, 7.2266, 7.226, 7.226, 7.2253, 7.2273, 7.2265, 7.2344, 7.2346, 7.2368, 7.2362, 7.2359, 7.2356, 7.2347, 7.2338, 7.2356, 7.2354, 7.2352, 7.2374, 7.2396, 7.2386, 7.2379, 7.2373, 7.2368, 7.236, 7.2353, 7.2347, 7.2365, 7.2358, 7.2349, 7.2369, 7.2387, 7.2382, 7.2375, 7.2366, 7.2357, 7.235, 7.2347, 7.2396, 7.2415, 7.2407, 7.2399, 7.2393, 7.2388, 7.2408, 7.243, 7.2478, 7.247, 7.2464, 7.2457, 7.2449, 7.2441, 7.2461, 7.2472, 7.2463, 7.2461, 7.2454, 7.2473, 7.2465, 7.2456, 7.2477, 7.2471, 7.2494, 7.2516, 7.2507, 7.2502, 7.2495, 7.2486, 7.2478, 7.2482, 7.2487, 7.2479, 7.2554, 7.2574, 7.2565, 7.2556, 7.2549, 7.2569, 7.2562, 7.2553, 7.2548, 7.2544, 7.2536, 7.2552, 7.2544, 7.2538, 7.253, 7.2522, 7.2513, 7.2531, 7.2522, 7.2515, 7.251, 7.2504, 7.2525, 7.2516, 7.2516, 7.2513, 7.253, 7.2525, 7.2522, 7.2516, 7.2513, 7.2504, 7.2496, 7.249, 7.2482, 7.2478, 7.247, 7.2463, 7.2455, 7.2448, 7.2465, 7.2457, 7.2472, 7.2466, 7.246, 7.2451, 7.2447, 7.2443, 7.246, 7.2454, 7.2449, 7.2441, 7.2432, 7.2423, 7.2415, 7.241, 7.2401, 7.2395, 7.2387, 7.2378, 7.2369, 7.236, 7.2352, 7.2348, 7.2365, 7.2357, 7.2348, 7.2339, 7.2331, 7.2323, 7.2314, 7.2306, 7.2299, 7.229, 7.2282, 7.2276, 7.2286, 7.2284, 7.2276, 7.2273, 7.2268, 7.2262, 7.2253, 7.225, 7.2243, 7.2285, 7.2278, 7.2271, 7.2264, 7.2274, 7.2266, 7.2264, 7.2281, 7.2276, 7.227, 7.229, 7.2284, 7.2305, 7.2326, 7.2317, 7.2315, 7.2309, 7.2303, 7.2299, 7.229, 7.2284, 7.2277, 7.227, 7.2268, 7.2263, 7.2257, 7.2277, 7.2271, 7.2263, 7.2257, 7.2252, 7.2244, 7.2262, 7.2279, 7.2297, 7.2294, 7.231, 7.2281, 7.225, 7.2242, 7.2233, 7.2229, 7.2226, 7.2242, 7.2234, 7.2227, 7.2219, 7.2216, 7.2245, 7.2255, 7.226500000000001, 7.2258, 7.225, 7.225, 7.228, 7.228, 7.2271, 7.2287, 7.2282, 7.2299, 7.2296, 7.2313, 7.2307, 7.2301, 7.2293, 7.230300000000001, 7.2318, 7.2314, 7.2306, 7.2323, 7.2316, 7.2312, 7.2304, 7.2345, 7.234, 7.2336, 7.2328, 7.232, 7.2336, 7.2327, 7.2321, 7.2341, 7.2334, 7.2327, 7.2346, 7.2339, 7.2334, 7.2331, 7.233, 7.2324, 7.232, 7.2323, 7.2315, 7.2306, 7.2298, 7.2314, 7.2307, 7.2301, 7.2299, 7.2296, 7.229, 7.2283, 7.228, 7.2274, 7.2267, 7.2261, 7.2253, 7.2245, 7.226, 7.2254, 7.2247, 7.2264, 7.226, 7.2276, 7.2293, 7.2286, 7.2284, 7.228, 7.2273, 7.2267, 7.2262, 7.2258, 7.2252, 7.2249, 7.2247, 7.2242, 7.2238, 7.2232, 7.2251, 7.2248, 7.224, 7.2237, 7.2233, 7.225, 7.2242, 7.2237, 7.2229, 7.2222, 7.2214, 7.2207, 7.2201, 7.2193, 7.2209, 7.2203, 7.2195, 7.2189, 7.2206, 7.2222, 7.2218, 7.2241, 7.2233, 7.225, 7.2242, 7.2239, 7.2236, 7.2229, 7.2221, 7.2237, 7.2234, 7.2251, 7.2247, 7.2239, 7.2253, 7.225, 7.2244, 7.2259, 7.2274, 7.2265, 7.2277, 7.2271, 7.2263, 7.2312, 7.2315, 7.2322, 7.2315, 7.2311, 7.2304, 7.2299, 7.2315, 7.2311, 7.2327, 7.2319, 7.2311, 7.2306, 7.2299, 7.2293, 7.2287, 7.2282, 7.2276, 7.2267, 7.2259, 7.2258, 7.2253, 7.2248, 7.2243, 7.2235, 7.2234, 7.225, 7.229, 7.23, 7.231000000000001, 7.232000000000001, 7.2317, 7.231, 7.2303, 7.2299, 7.2316, 7.2308, 7.2302, 7.2298, 7.229, 7.2283, 7.2279, 7.2274, 7.2275, 7.2272, 7.2269, 7.2263, 7.2264, 7.2258, 7.2254, 7.225, 7.2245, 7.2242, 7.2237, 7.2229, 7.2247, 7.2242, 7.2234, 7.2227, 7.2222, 7.2215, 7.2235, 7.2253, 7.225, 7.2245, 7.2238, 7.2232, 7.2246, 7.2262, 7.2255, 7.2282, 7.2311, 7.2353, 7.2367, 7.2359, 7.2356, 7.2349, 7.2359, 7.2355, 7.2349, 7.2341, 7.2335, 7.2327, 7.2342, 7.2335, 7.2336, 7.2331, 7.2323, 7.2339, 7.2334, 7.2348, 7.2364, 7.2361, 7.2353, 7.2345, 7.2337, 7.2352, 7.2347, 7.2341, 7.2335, 7.2329, 7.2323, 7.2317, 7.2315, 7.2309, 7.2306, 7.2303, 7.2317, 7.2314, 7.2311, 7.233, 7.2324, 7.2322, 7.2317, 7.2312, 7.2307, 7.2299, 7.2291, 7.234, 7.2335, 7.2333, 7.233, 7.2345, 7.234, 7.2334, 7.2331, 7.2331, 7.2323, 7.2339, 7.2339, 7.2331, 7.2326, 7.2321, 7.2316, 7.231, 7.2302, 7.2319, 7.232900000000001, 7.2346, 7.2341, 7.2345, 7.2339, 7.2334, 7.2328, 7.232, 7.2317, 7.2311, 7.2308, 7.2303, 7.2298, 7.2293, 7.2285, 7.2282, 7.228, 7.2279, 7.2272, 7.2288, 7.2287, 7.2279, 7.2275, 7.2272, 7.2286, 7.2282, 7.2275, 7.2269, 7.2266, 7.2259, 7.2257, 7.2254, 7.2249, 7.2264, 7.2256, 7.2251, 7.2245, 7.2261, 7.2258, 7.2274, 7.229, 7.2285, 7.228, 7.229, 7.23, 7.231000000000001, 7.2303, 7.2295, 7.2289, 7.2281, 7.2273, 7.2272, 7.2289, 7.2305, 7.2299, 7.2291, 7.2306, 7.2301, 7.2317, 7.2312, 7.2326, 7.2336, 7.2346, 7.2339, 7.2331, 7.2323, 7.2336, 7.233, 7.2326, 7.2302, 7.2317, 7.2327, 7.2319, 7.2313, 7.2356, 7.2348, 7.2364, 7.2362, 7.2355, 7.2371, 7.2384, 7.2384, 7.2379, 7.2394, 7.239, 7.2382, 7.2379, 7.2374, 7.2372, 7.2368, 7.2362, 7.2356, 7.235, 7.2343, 7.2336, 7.2329, 7.2324, 7.2318, 7.2314, 7.2311, 7.2306, 7.2305, 7.2304, 7.2297, 7.2292, 7.2287, 7.2323, 7.2316, 7.231, 7.2325, 7.2318, 7.2314, 7.2308, 7.2302, 7.2298, 7.2291, 7.2298, 7.2297, 7.229, 7.2288, 7.2281, 7.2278, 7.2273, 7.2291, 7.2285, 7.2281, 7.2295, 7.229, 7.2285, 7.2281, 7.2276, 7.2272, 7.2272, 7.2265, 7.226, 7.2263, 7.2278, 7.2276, 7.2271, 7.2267, 7.226, 7.2255, 7.225, 7.2244, 7.2292, 7.2272, 7.2266, 7.2267, 7.2262, 7.2256, 7.2251, 7.2245, 7.2238, 7.2253, 7.2249, 7.2242, 7.2239, 7.2233, 7.2247, 7.224, 7.2237, 7.2233, 7.2227, 7.222, 7.2217, 7.2214, 7.2213, 7.2209, 7.2203, 7.2196, 7.2193, 7.219, 7.2185, 7.2179, 7.2174, 7.2193, 7.2189, 7.2183, 7.2177, 7.2187, 7.2183, 7.2176, 7.2173, 7.2185, 7.2224, 7.2217, 7.2213, 7.2213, 7.2206, 7.2199, 7.2192, 7.2185, 7.218, 7.2174, 7.217, 7.2146, 7.216, 7.2154, 7.215, 7.2144, 7.2139, 7.2134, 7.213, 7.2174, 7.2173, 7.2166, 7.224, 7.2253, 7.2247, 7.2241, 7.2235, 7.2228, 7.2223, 7.2217, 7.2213, 7.2208, 7.2204, 7.2197, 7.2196, 7.2192, 7.2186, 7.2182, 7.2178, 7.2171, 7.2228, 7.2227, 7.2224, 7.2223, 7.2217, 7.225, 7.2299, 7.2295, 7.2292, 7.2307, 7.2301, 7.2298, 7.2293, 7.2318, 7.2315, 7.2419, 7.2434, 7.2431, 7.2446, 7.2444, 7.2438, 7.2431, 7.2426, 7.242, 7.2414, 7.2446, 7.2443, 7.242, 7.2454, 7.2472, 7.2468, 7.2466, 7.246, 7.2458, 7.2472, 7.2465, 7.2463, 7.2456, 7.2497, 7.2493, 7.2486, 7.2461, 7.2455, 7.2449, 7.2461, 7.2439, 7.2437, 7.2432, 7.2428, 7.2422, 7.2437, 7.2436, 7.2431, 7.2432, 7.2427, 7.2424, 7.2421, 7.2416, 7.2414, 7.2409, 7.2424, 7.2421, 7.2416, 7.2412, 7.241, 7.2406, 7.24, 7.2397, 7.2395, 7.2389, 7.2383, 7.238, 7.2395, 7.2389, 7.2386, 7.2398, 7.2391, 7.2385, 7.2379, 7.2379, 7.2388, 7.2383, 7.2378, 7.2373, 7.2366, 7.2361, 7.2375, 7.2368, 7.2384, 7.2383, 7.2397, 7.2392, 7.2388, 7.2381, 7.2375, 7.2372, 7.2386, 7.2398, 7.2391, 7.2389, 7.2386, 7.2381, 7.2378, 7.2374, 7.2371, 7.2385, 7.2378, 7.2371, 7.2364, 7.236, 7.236, 7.2353, 7.2353, 7.2347, 7.2342, 7.2339, 7.2334, 7.2331, 7.2343, 7.2342, 7.2341, 7.2337, 7.2332, 7.2328, 7.2327, 7.2325, 7.232, 7.2316, 7.2328, 7.2323, 7.2317, 7.2332, 7.233, 7.2325, 7.2323, 7.232, 7.2313, 7.2307, 7.2302, 7.2298, 7.2295, 7.2308, 7.2304, 7.2301, 7.2295, 7.2292, 7.2308, 7.2302, 7.2296, 7.2291, 7.2288, 7.2303, 7.2298, 7.2291, 7.2288, 7.2299, 7.2293, 7.229, 7.2283, 7.2276, 7.227, 7.2265, 7.2265, 7.2267, 7.2244, 7.2257, 7.2254, 7.2248, 7.2265, 7.2264, 7.226, 7.2257, 7.2252, 7.2265, 7.226, 7.2257, 7.2256, 7.2251, 7.2246, 7.224, 7.2234, 7.2247, 7.2242, 7.2237, 7.2231, 7.225, 7.2248, 7.2262, 7.2259, 7.2254, 7.2248, 7.2242, 7.2239, 7.2252, 7.2248, 7.2241, 7.2254, 7.2267, 7.2265, 7.2278, 7.2271, 7.2267, 7.2263, 7.2277, 7.2256, 7.2269, 7.2267, 7.2281, 7.2275, 7.2268, 7.2283, 7.228, 7.2277, 7.2273, 7.2271, 7.2284, 7.2297, 7.229, 7.2284, 7.2282, 7.2295, 7.229, 7.2287, 7.2282, 7.2277, 7.2278, 7.2273, 7.2267, 7.2283, 7.2295, 7.229, 7.2303, 7.2316, 7.2313, 7.2309, 7.2322, 7.2335, 7.233, 7.2324, 7.2319, 7.2333, 7.2335, 7.2329, 7.2324, 7.2338, 7.2335, 7.233, 7.2324, 7.2322, 7.2336, 7.2334, 7.2347, 7.2328, 7.2326, 7.2324, 7.2319, 7.2313, 7.2308, 7.2306, 7.2327, 7.2323, 7.2319, 7.2332, 7.2326, 7.2319, 7.2333, 7.2345, 7.2339, 7.2333, 7.2328, 7.2324, 7.2318, 7.2316, 7.2312, 7.2307, 7.2306, 7.2303, 7.2299, 7.2311, 7.2326, 7.2324, 7.2323, 7.2317, 7.2314, 7.2312, 7.229, 7.2303, 7.2298, 7.2314, 7.231, 7.2304, 7.2298, 7.2293, 7.2307, 7.2304, 7.2317, 7.2312, 7.2307, 7.2301, 7.2298, 7.2293, 7.2274, 7.2272, 7.2267, 7.2261, 7.2256, 7.225, 7.2245, 7.226, 7.2253, 7.2249, 7.2264, 7.2258, 7.2251, 7.2245, 7.2257, 7.2251, 7.2247, 7.2241, 7.2237, 7.2233, 7.2227, 7.2221, 7.2216, 7.2213, 7.2227, 7.2222, 7.2217, 7.223, 7.2228, 7.2241, 7.2236, 7.2233, 7.2229, 7.2226, 7.222, 7.2214, 7.2208, 7.2204, 7.22, 7.2194, 7.2191, 7.2185, 7.2179, 7.2182, 7.2175, 7.2187, 7.2182, 7.2194, 7.2188, 7.2202, 7.2214, 7.2212, 7.2242, 7.2239, 7.2252, 7.2297, 7.2292, 7.2289, 7.2287, 7.2282, 7.2276, 7.2274, 7.2269, 7.2263, 7.2257, 7.2252, 7.2248, 7.2242, 7.2237, 7.2236, 7.2231, 7.2227, 7.222, 7.223000000000001, 7.224000000000001, 7.2252, 7.2248, 7.2244, 7.2238, 7.2234, 7.2247, 7.2241, 7.2253, 7.2251, 7.2249, 7.2242, 7.2237, 7.2235, 7.2231, 7.2226, 7.2222, 7.2218, 7.2214, 7.2209, 7.2204, 7.22, 7.2197, 7.2192, 7.219, 7.2184, 7.2181, 7.2177, 7.2172, 7.2167, 7.2162, 7.2157, 7.2152, 7.2164, 7.2161, 7.2158, 7.2153, 7.215, 7.2144, 7.2141, 7.2154, 7.2149, 7.2143, 7.2138, 7.2149, 7.2159, 7.2172, 7.2169, 7.2165, 7.2177, 7.2174, 7.2181, 7.2177, 7.2171, 7.2169, 7.2183, 7.2205, 7.2211, 7.2223, 7.2222, 7.2218, 7.2216, 7.2213, 7.2214, 7.2211, 7.2205, 7.2199, 7.2212, 7.2207, 7.2219, 7.2213, 7.2208, 7.2203, 7.2201, 7.2195, 7.2205, 7.221500000000001, 7.2228, 7.2222, 7.2216, 7.2228, 7.2223, 7.2217, 7.2211, 7.2224, 7.2218, 7.2215, 7.2212, 7.2224, 7.2218, 7.2216, 7.2214, 7.2226, 7.2221, 7.2217, 7.2234, 7.2246, 7.2242, 7.2236, 7.223, 7.2225, 7.2237, 7.2248, 7.226, 7.2254, 7.225, 7.2245, 7.2242, 7.2238, 7.2233, 7.2228, 7.2239, 7.2252, 7.2246, 7.2242, 7.2236, 7.223, 7.2253, 7.2252, 7.2247, 7.2242, 7.2237, 7.2249, 7.2262, 7.2256, 7.2263, 7.2258, 7.2253, 7.2251, 7.225, 7.2245, 7.224, 7.2239, 7.2236, 7.2232, 7.2229, 7.2224, 7.2219, 7.2214, 7.2227, 7.2222, 7.2219, 7.2232, 7.2243, 7.2237, 7.2233, 7.2228, 7.2229, 7.223, 7.2252, 7.2248, 7.2245, 7.2257, 7.2269, 7.2282, 7.2276, 7.2289, 7.2347, 7.2359, 7.2354, 7.2351, 7.2348, 7.2345, 7.234, 7.2337, 7.2331, 7.2359, 7.2382, 7.2377, 7.2372, 7.2399, 7.2396, 7.2393, 7.2375, 7.2355, 7.2335, 7.2347, 7.2342, 7.2336, 7.2331, 7.2325, 7.2319, 7.2317, 7.2313, 7.2343, 7.234, 7.2336, 7.2335, 7.2332, 7.2326, 7.2322, 7.2316, 7.231, 7.2322, 7.2316, 7.2328, 7.2327, 7.2339, 7.2333, 7.2328, 7.2323, 7.2319, 7.2315, 7.2353, 7.2351, 7.235, 7.2345, 7.2341, 7.2339, 7.2334, 7.2333, 7.2328, 7.2323, 7.2317, 7.2328, 7.2323, 7.232, 7.23, 7.2298, 7.2292, 7.2287, 7.2285, 7.2283, 7.2281, 7.2278, 7.2274, 7.227, 7.2266, 7.2256, 7.2251, 7.2248, 7.2244, 7.2242, 7.2237, 7.2249, 7.2244, 7.2239, 7.2236, 7.223, 7.2245, 7.2242, 7.2237, 7.2233, 7.2237, 7.2233, 7.2232, 7.2229, 7.2224, 7.2234, 7.2234, 7.223, 7.2225, 7.2221, 7.2215, 7.221, 7.2209, 7.2204, 7.2201, 7.2197, 7.221, 7.2204, 7.2202, 7.2214, 7.2213, 7.2208, 7.2202, 7.2215, 7.221, 7.2204, 7.2216, 7.221, 7.2207, 7.2219, 7.2216, 7.223, 7.2228, 7.2224, 7.2235, 7.2231, 7.2225, 7.2219, 7.2213, 7.2215, 7.2228, 7.2224, 7.2218, 7.2214, 7.2195, 7.2179, 7.2176, 7.2175, 7.2171, 7.2167, 7.2161, 7.2175, 7.2172, 7.217, 7.2166, 7.2163, 7.2159, 7.2156, 7.2152, 7.215, 7.2163, 7.2162, 7.2158, 7.2154, 7.2149, 7.2145, 7.2143, 7.2142, 7.2152, 7.2146, 7.2143, 7.2138, 7.2134, 7.2131, 7.2128, 7.2126, 7.2123, 7.2122, 7.2135, 7.2131, 7.2127, 7.2123, 7.212, 7.2118, 7.2114, 7.211, 7.2109, 7.2106, 7.2101, 7.2101, 7.2107, 7.2105, 7.2103, 7.2098, 7.2112, 7.2115, 7.2126, 7.2122, 7.2117, 7.2112, 7.2108, 7.2103, 7.2113, 7.2107, 7.2103, 7.2113, 7.2108, 7.2103, 7.2098, 7.2108, 7.2117, 7.2112, 7.2123, 7.2118, 7.2114, 7.211, 7.2107, 7.2106, 7.21, 7.2112, 7.2107, 7.2102, 7.2097, 7.2091, 7.2086, 7.208, 7.2076, 7.2073, 7.207, 7.2067, 7.2066, 7.2062, 7.2058, 7.2054, 7.205, 7.2045, 7.2039, 7.2034, 7.2032, 7.204, 7.2035, 7.2045, 7.2041, 7.2039, 7.2037, 7.2034, 7.2029, 7.2025, 7.2036, 7.2031, 7.2043, 7.2055, 7.2053, 7.206300000000001, 7.2059, 7.2071, 7.2131, 7.213, 7.2127, 7.2123, 7.2121, 7.2116, 7.2111, 7.2105, 7.2103, 7.2098, 7.2094, 7.2089, 7.2084, 7.208, 7.2077, 7.2075, 7.2072, 7.2068, 7.2068, 7.2066, 7.2061, 7.207, 7.2067, 7.2068, 7.2067, 7.2067, 7.2066, 7.2076, 7.2073, 7.207, 7.2081, 7.208, 7.2076, 7.208600000000001, 7.2082, 7.2094, 7.2093, 7.2091, 7.2088, 7.2098, 7.2109, 7.2105, 7.2116, 7.2127, 7.2123, 7.2119, 7.2129, 7.2125, 7.2121, 7.213100000000001, 7.214100000000001, 7.215100000000001, 7.2146, 7.2142, 7.2158, 7.2158, 7.2143, 7.2139, 7.2134, 7.2147, 7.2158, 7.2153, 7.2151, 7.2147, 7.2143, 7.2139, 7.2136, 7.2146, 7.2156, 7.2156, 7.2166, 7.2176, 7.2173, 7.2171, 7.2168, 7.2164, 7.2162, 7.2159, 7.217, 7.2166, 7.2187, 7.2215, 7.2227, 7.2223, 7.2221, 7.2217, 7.2215, 7.221, 7.2205, 7.2202, 7.2201, 7.2197, 7.2192, 7.219, 7.2185, 7.2183, 7.2184, 7.218, 7.2183, 7.2178, 7.2181, 7.2177, 7.2172, 7.2168, 7.2162, 7.2173, 7.2173, 7.2168, 7.2179, 7.219, 7.2186, 7.2184, 7.2195, 7.2221, 7.2232, 7.2227, 7.2238, 7.2236, 7.2233, 7.2244, 7.2276, 7.2288, 7.2283, 7.2284, 7.228, 7.2277, 7.2278, 7.229, 7.2285, 7.2283, 7.2284, 7.2279, 7.2277, 7.2289, 7.2301, 7.2297, 7.2291, 7.2285, 7.2281, 7.2277, 7.2272, 7.2267, 7.2268, 7.2264, 7.2259, 7.227, 7.2265, 7.2277, 7.2288, 7.2283, 7.2279, 7.2274, 7.2269, 7.2265, 7.226, 7.2261, 7.2273, 7.2269, 7.2295, 7.2291, 7.2287, 7.2298, 7.2293, 7.2303, 7.2299, 7.2295, 7.2291, 7.2287, 7.2282, 7.2279, 7.2276, 7.2272, 7.2267, 7.2262, 7.2262, 7.2259, 7.2268, 7.2266, 7.2261, 7.226, 7.2257, 7.2251, 7.2246, 7.2243, 7.2241, 7.2236, 7.225, 7.2247, 7.2242, 7.2241, 7.2236, 7.2234, 7.2229, 7.2228, 7.2237, 7.2233, 7.2231, 7.2227, 7.2222, 7.2233, 7.2243, 7.2241, 7.2236, 7.2249, 7.2247, 7.2245, 7.2241, 7.2251, 7.2266, 7.2262, 7.2257, 7.2252, 7.2262, 7.2257, 7.2252, 7.2262, 7.2258, 7.2269, 7.2266, 7.2248, 7.2244, 7.224, 7.2235, 7.223, 7.224, 7.2235, 7.2231, 7.2228, 7.2227, 7.2224, 7.2236, 7.2231, 7.223, 7.224, 7.2235, 7.223, 7.2227, 7.2225, 7.2221, 7.2217, 7.2225, 7.2235, 7.2233, 7.2243, 7.2238, 7.2235, 7.2231, 7.2227, 7.2222, 7.2221, 7.2215, 7.2212, 7.2207, 7.222, 7.2217, 7.2212, 7.2209, 7.2204, 7.2199, 7.2194, 7.2191, 7.2188, 7.2184, 7.2181, 7.2191, 7.219, 7.2186, 7.2182, 7.2177, 7.2173, 7.2183, 7.2194, 7.2189, 7.2184, 7.2196, 7.2198, 7.2196, 7.2206, 7.2202, 7.2198, 7.2194, 7.2189, 7.2199, 7.2195, 7.2207, 7.2204, 7.2201, 7.2197, 7.2208, 7.2206, 7.2206, 7.2202, 7.2212000000000005, 7.2223, 7.2233, 7.2243, 7.2252, 7.2247, 7.2246, 7.2248, 7.2246, 7.2241, 7.2237, 7.2235, 7.2231, 7.223, 7.2226, 7.2223, 7.2219, 7.2218, 7.2227, 7.2222, 7.2218, 7.2218, 7.2215, 7.2211, 7.2222, 7.2218, 7.2213, 7.2209, 7.2206, 7.2204, 7.2201, 7.2197, 7.2207, 7.2203, 7.2198, 7.2209, 7.2208, 7.2219, 7.2228, 7.2239, 7.2249, 7.2244, 7.2242, 7.2237, 7.2232, 7.2243, 7.2241, 7.2252, 7.2248, 7.225, 7.2245, 7.2242, 7.2238, 7.2233, 7.223, 7.2225, 7.2238, 7.225, 7.2246, 7.2242, 7.2237, 7.2233, 7.223, 7.2227, 7.2236, 7.2246, 7.2244, 7.224, 7.2236, 7.2233, 7.2228, 7.2225, 7.2222, 7.2234, 7.2229, 7.2226, 7.2222, 7.222, 7.2215, 7.2215, 7.2212, 7.2208, 7.2203, 7.2187, 7.2185, 7.218, 7.2176, 7.2172, 7.2196, 7.2192, 7.2205, 7.2205, 7.2201, 7.2198, 7.2194, 7.2194, 7.2204, 7.2203, 7.2214, 7.221, 7.2206, 7.2202, 7.2197, 7.221, 7.2207, 7.2205, 7.2202, 7.2198, 7.2193, 7.2192, 7.2187, 7.2184, 7.2195, 7.2208, 7.2205, 7.2204, 7.22, 7.2225, 7.2223, 7.2221, 7.2218, 7.2215, 7.221, 7.2206, 7.2204, 7.22, 7.2199, 7.2194, 7.219, 7.2187, 7.2184, 7.2181, 7.2192, 7.2189, 7.2187, 7.2185, 7.218, 7.2179, 7.2175, 7.2171, 7.2167, 7.2163, 7.2161, 7.2157, 7.2166, 7.2162, 7.2157, 7.2153, 7.2163, 7.2159, 7.2155, 7.2166, 7.2176, 7.2187, 7.2184, 7.2195, 7.2217, 7.2215, 7.2211, 7.2206, 7.2203, 7.2201, 7.2197, 7.2193, 7.2193, 7.2207, 7.2203, 7.2201, 7.2197, 7.2192, 7.2187, 7.2183, 7.2169, 7.2165, 7.2162, 7.2157, 7.2154, 7.2152, 7.2148, 7.2156, 7.2151, 7.2147, 7.2145, 7.2142, 7.2151, 7.2161, 7.2158, 7.2169, 7.2166, 7.2162, 7.2173, 7.2159, 7.2154, 7.2152, 7.2161, 7.2156, 7.2166, 7.2162, 7.2157, 7.2153, 7.215, 7.2146, 7.2143, 7.2153, 7.2149, 7.2148, 7.2144, 7.2155, 7.215, 7.2146, 7.2156, 7.2167, 7.2164, 7.2203, 7.2199, 7.2209, 7.2205, 7.2201, 7.221, 7.2237, 7.2235, 7.2231, 7.2227, 7.2222, 7.2219, 7.2218, 7.2229, 7.2227, 7.2225, 7.222, 7.2215, 7.2211, 7.2206, 7.2201, 7.2197, 7.2206, 7.2189, 7.2185, 7.218, 7.2175, 7.2171, 7.2166, 7.2189, 7.2185, 7.2196, 7.2209, 7.2207, 7.2203, 7.22, 7.2195, 7.2191, 7.2187, 7.2184, 7.2181, 7.2177, 7.2187, 7.2196, 7.2181, 7.2179, 7.2175, 7.2187, 7.2184, 7.2168, 7.2166, 7.2164, 7.2161, 7.2157, 7.2167, 7.2178, 7.2173, 7.2158, 7.2168, 7.2166, 7.2175, 7.2172, 7.2183, 7.2181, 7.2178, 7.2175, 7.2186, 7.2183, 7.218, 7.2177, 7.2174, 7.2172, 7.217, 7.2166, 7.2163, 7.216, 7.2156, 7.2167, 7.2167, 7.2166, 7.2175, 7.217, 7.2168, 7.2166, 7.2175, 7.2173, 7.2175, 7.2171, 7.2182, 7.22, 7.2196, 7.2207, 7.2203, 7.2201, 7.2197, 7.2193, 7.2191, 7.2188, 7.2184, 7.2181, 7.2205, 7.2203, 7.2199, 7.2209, 7.2207, 7.2217, 7.2215, 7.2214, 7.2211, 7.2209, 7.2204, 7.22, 7.2196, 7.2192, 7.2215, 7.2211, 7.2208, 7.2204, 7.2199, 7.2196, 7.2192, 7.2188, 7.2187, 7.2183, 7.2182, 7.2177, 7.2174, 7.2172, 7.218, 7.2176, 7.2172, 7.217, 7.2167, 7.2162, 7.217, 7.2166, 7.2163, 7.2161, 7.216, 7.2158, 7.2153, 7.2153, 7.2163, 7.2174, 7.2172, 7.2168, 7.2165, 7.2162, 7.2158, 7.2156, 7.2154, 7.2152, 7.2136, 7.2123, 7.214, 7.215000000000001, 7.2149, 7.2158, 7.2157, 7.2154, 7.215, 7.2146, 7.2143, 7.2152, 7.2151, 7.2151, 7.2147, 7.2143, 7.214, 7.2136, 7.2134, 7.2169, 7.2167, 7.2163, 7.2162, 7.2174, 7.2173, 7.2182, 7.2193, 7.2204, 7.22, 7.2195, 7.2191, 7.2189, 7.2187, 7.2198, 7.2196, 7.2192, 7.2188, 7.2197, 7.2192, 7.2178, 7.2176, 7.2174, 7.2173, 7.2169, 7.2168, 7.2165, 7.2161, 7.2172, 7.2169, 7.2171, 7.2167, 7.2167, 7.2164, 7.2162, 7.2159, 7.2155, 7.2151, 7.216, 7.2158, 7.2167, 7.217700000000001, 7.2174, 7.2172, 7.2181, 7.2191, 7.22, 7.2196, 7.2192, 7.219, 7.2187, 7.2184, 7.2181, 7.2191, 7.2188, 7.2184, 7.2183, 7.2168, 7.2154, 7.2141, 7.2138, 7.2135, 7.2132, 7.2129, 7.214, 7.2144, 7.2141, 7.2138, 7.2177, 7.2174, 7.2174, 7.2175, 7.216, 7.2156, 7.2152, 7.215, 7.2146, 7.2146, 7.2154, 7.2152, 7.2162, 7.2158, 7.2154, 7.215, 7.2137, 7.2136, 7.2145, 7.2155, 7.2154, 7.2139, 7.2126, 7.2123, 7.2121, 7.2122, 7.2119, 7.2117, 7.2113, 7.2122, 7.2118, 7.2116, 7.2112, 7.211, 7.2119, 7.2119, 7.2118, 7.2114, 7.2111, 7.2107, 7.2117, 7.2113, 7.2111, 7.2108, 7.2104, 7.2102, 7.2098, 7.2094, 7.2092, 7.2088, 7.2099, 7.2095, 7.2107, 7.2104, 7.2101, 7.2099, 7.2099, 7.2096, 7.2093, 7.2089, 7.2087, 7.2085, 7.2083, 7.2093, 7.2091, 7.2093, 7.2107, 7.2103, 7.2099, 7.2096, 7.2082, 7.2081, 7.2079, 7.2087, 7.2085, 7.2081, 7.2088, 7.2085, 7.2094, 7.209, 7.2087, 7.2083, 7.2079, 7.2075, 7.2072, 7.2069, 7.2066, 7.2063, 7.206, 7.2059, 7.2056, 7.2065, 7.2062, 7.206, 7.2057, 7.2123, 7.212, 7.2116, 7.2113, 7.2111, 7.2112, 7.2108, 7.2106, 7.2104, 7.2112, 7.2109, 7.2105, 7.2102, 7.2098, 7.2128, 7.2126, 7.2121, 7.2131, 7.2128, 7.2125, 7.2122, 7.212, 7.2117, 7.2114, 7.2112, 7.2109, 7.2106, 7.2115, 7.2111, 7.2107, 7.2103, 7.2099, 7.2109, 7.2106, 7.211600000000001, 7.2114, 7.2113, 7.2109, 7.2117, 7.2113, 7.2109, 7.2095, 7.2083, 7.2079, 7.2077, 7.2073, 7.2069, 7.2065, 7.2061, 7.206, 7.2069, 7.2068, 7.2064, 7.2061, 7.2059, 7.2058, 7.2055, 7.2052, 7.2061, 7.2058, 7.2059, 7.2056, 7.2066, 7.2063, 7.2059, 7.2046, 7.2045, 7.2054, 7.2064, 7.2074, 7.2086, 7.2085, 7.2083, 7.2079, 7.2077, 7.2075, 7.2073, 7.2069, 7.2078, 7.2074, 7.207, 7.2079, 7.2075, 7.2061, 7.206, 7.2059, 7.2069, 7.2065, 7.2062, 7.206, 7.2079, 7.2077, 7.2085, 7.2082, 7.208, 7.2089, 7.2085, 7.2082, 7.208, 7.2077, 7.2073, 7.2069, 7.2065, 7.2062, 7.2058, 7.2054, 7.2051, 7.2059, 7.2055, 7.2054, 7.2051, 7.2048, 7.2057, 7.2055, 7.2053, 7.2051, 7.2049, 7.2072, 7.2068, 7.2065, 7.2063, 7.2059, 7.2055, 7.2055, 7.2051, 7.2049, 7.2048, 7.2048, 7.2048, 7.2045, 7.2042, 7.2079, 7.2089, 7.2086, 7.2083, 7.2079, 7.2082, 7.2081, 7.2078, 7.2075, 7.2072, 7.2082, 7.2081, 7.2083, 7.208, 7.2077, 7.2086, 7.2095, 7.2094, 7.2091, 7.2101, 7.21, 7.2097, 7.2094, 7.2091, 7.2088, 7.2085, 7.2082, 7.2081, 7.2077, 7.2074, 7.2061, 7.2058, 7.2068, 7.2065, 7.2076, 7.2074, 7.2072, 7.2081, 7.2079, 7.2076, 7.208600000000001, 7.2072, 7.2092, 7.2089, 7.2086, 7.2094, 7.2103, 7.2113000000000005, 7.211, 7.2107, 7.2104, 7.21, 7.2096, 7.2093, 7.209, 7.2099, 7.2098, 7.2095, 7.2093, 7.2101, 7.211, 7.2107, 7.2103, 7.2103, 7.2099, 7.2097, 7.2093, 7.209, 7.2087, 7.209700000000001, 7.210700000000001, 7.2103, 7.2102, 7.2099, 7.2095, 7.2092, 7.2093, 7.2089, 7.2099, 7.2108, 7.2104, 7.2103, 7.2099, 7.2096, 7.2093, 7.2089, 7.2085, 7.2094, 7.2083, 7.208, 7.2077, 7.2074, 7.2071, 7.2081, 7.2091, 7.210100000000001, 7.211100000000001, 7.2109, 7.2105, 7.2105, 7.2103, 7.21, 7.2109, 7.2107, 7.2103, 7.2099, 7.2107, 7.2103, 7.2099, 7.2096, 7.2104, 7.2102, 7.211, 7.2107, 7.2103, 7.2099, 7.2095, 7.2093, 7.2091, 7.2088, 7.2086, 7.2083, 7.2079, 7.2076, 7.2074, 7.2082, 7.2078, 7.2076, 7.2074, 7.207, 7.2066, 7.2063, 7.2073, 7.207, 7.2071, 7.2068, 7.2064, 7.2072, 7.2071, 7.2069, 7.2078, 7.2075, 7.2071, 7.208, 7.2077, 7.2074, 7.2071, 7.2069, 7.2068, 7.2067, 7.2075, 7.2072, 7.2069, 7.2066, 7.2064, 7.2073, 7.207, 7.2067, 7.2063, 7.2071, 7.2071, 7.207, 7.207, 7.207, 7.2067, 7.2064, 7.2063, 7.2061, 7.2058, 7.2055, 7.2052, 7.2062, 7.206, 7.2057, 7.2056, 7.2066, 7.2075, 7.2085, 7.2081, 7.2078, 7.2075, 7.2074, 7.2073, 7.207, 7.2066, 7.2062, 7.207, 7.2069, 7.2066, 7.2055, 7.2052, 7.2049, 7.2046, 7.2044, 7.204, 7.2036, 7.2024, 7.2035, 7.2031, 7.2027, 7.2023, 7.2021, 7.202, 7.2016, 7.2014, 7.2013, 7.201, 7.2006, 7.2004, 7.1991, 7.1987, 7.1988, 7.1985, 7.1982, 7.199, 7.1998, 7.1994, 7.1992, 7.200200000000001, 7.2023, 7.2031, 7.2027, 7.2023, 7.2031, 7.2028, 7.2024, 7.2023, 7.2021, 7.2017, 7.2025, 7.2032, 7.2029, 7.2025, 7.2021, 7.2018, 7.2014, 7.201, 7.2008, 7.2005, 7.2001, 7.2, 7.1998, 7.1997, 7.1995, 7.1992, 7.1997, 7.1994, 7.1995, 7.1994, 7.1993, 7.1991, 7.1989, 7.1986, 7.1984, 7.1992, 7.200200000000001, 7.1999, 7.1995, 7.1992, 7.2, 7.2007, 7.2005, 7.2003, 7.1999, 7.1996, 7.1993, 7.1989, 7.1986, 7.1985, 7.1983, 7.1979, 7.1975, 7.1983, 7.198, 7.1978, 7.1974, 7.1971, 7.1968, 7.1966, 7.1964, 7.1961, 7.1957, 7.1953, 7.1949, 7.1946, 7.1943, 7.194, 7.1938, 7.1936, 7.1934, 7.1931, 7.1939, 7.1935, 7.1946, 7.1955, 7.1953, 7.1951, 7.1948, 7.1944, 7.1942, 7.1942, 7.195, 7.1947, 7.1958, 7.1955, 7.1952, 7.1951, 7.1948, 7.1947, 7.1946, 7.1943, 7.1939, 7.1935, 7.1934, 7.1942, 7.1952, 7.1939, 7.1927, 7.1924, 7.1921, 7.193, 7.1927, 7.1935, 7.194500000000001, 7.1944, 7.194, 7.1938, 7.1938, 7.1934, 7.193, 7.1939, 7.1936, 7.1946, 7.195600000000001, 7.1952, 7.1961, 7.1959, 7.1956, 7.1953, 7.1961, 7.197, 7.1979, 7.1978, 7.1977, 7.1975, 7.1974, 7.1972, 7.1971, 7.196, 7.1957, 7.1957, 7.1956, 7.1954, 7.1951, 7.196, 7.1958, 7.1967, 7.1976, 7.1973, 7.197, 7.1979, 7.1976, 7.1976, 7.1963, 7.1961, 7.1958, 7.1955, 7.1952, 7.1953, 7.1949, 7.1959, 7.1969, 7.1979, 7.1976, 7.1974, 7.1971, 7.1979, 7.1986, 7.1982, 7.198, 7.1977, 7.1975, 7.1972, 7.197, 7.1966, 7.1964, 7.1961, 7.1957, 7.1954, 7.1951, 7.1949, 7.1946, 7.195600000000001, 7.1952, 7.1951, 7.1947, 7.1946, 7.1954, 7.1941, 7.1938, 7.1938, 7.1934, 7.1931, 7.1928, 7.1925, 7.1921, 7.192, 7.1917, 7.1905, 7.1902, 7.1899, 7.1895, 7.1892, 7.1902, 7.1898, 7.1896, 7.1894, 7.1891, 7.1889, 7.1889, 7.1885, 7.1881, 7.1877, 7.1875, 7.1884, 7.188, 7.1878, 7.1876, 7.1872, 7.1859, 7.1856, 7.1864, 7.186, 7.1857, 7.1845, 7.1844, 7.184, 7.185, 7.1858, 7.1855, 7.1864, 7.186, 7.1858, 7.1856, 7.1852, 7.1854, 7.1853, 7.1851, 7.1848, 7.1855, 7.1863, 7.1859, 7.1857, 7.1853, 7.185, 7.1847, 7.1845, 7.1843, 7.1839, 7.1835, 7.1831, 7.1829, 7.1825, 7.1822, 7.1819, 7.1817, 7.1814, 7.181, 7.182, 7.183000000000001, 7.184000000000001, 7.1836, 7.1825, 7.1825, 7.1832, 7.183, 7.1827, 7.1824, 7.1823, 7.182, 7.1816, 7.1825, 7.1823, 7.1821, 7.1818, 7.1826, 7.1823, 7.1821, 7.1829, 7.1838, 7.1846, 7.1842, 7.1839, 7.1847, 7.1844, 7.1841, 7.1848, 7.1846, 7.1853, 7.1861, 7.1857, 7.1856, 7.1853, 7.186, 7.1867, 7.1874, 7.1871, 7.1868, 7.1865, 7.1864, 7.1862, 7.1859, 7.1856, 7.1852, 7.1849, 7.1846, 7.1843, 7.1841, 7.1838, 7.1848, 7.1858, 7.1854, 7.1853, 7.185, 7.1846, 7.1854, 7.1852, 7.1849, 7.1846, 7.1843, 7.184, 7.1838, 7.1834, 7.1831, 7.1828, 7.1836, 7.1834, 7.1834, 7.1831, 7.1839, 7.1836, 7.1843, 7.1841, 7.1839, 7.1836, 7.1832, 7.1828, 7.1827, 7.1837, 7.1847, 7.1843, 7.184, 7.1864, 7.1862, 7.1859, 7.1889, 7.1885, 7.1883, 7.1889, 7.1887, 7.1883, 7.1879, 7.1876, 7.1872, 7.1869, 7.1876, 7.1874, 7.1872, 7.1871, 7.187, 7.1868, 7.1865, 7.1862, 7.1858, 7.1865, 7.1862, 7.187, 7.1868, 7.1866, 7.1874, 7.1871, 7.1869, 7.1866, 7.1863, 7.1888, 7.1886, 7.1895, 7.1892, 7.19, 7.1896, 7.1893, 7.1882, 7.189, 7.1897, 7.1904, 7.1901, 7.1899, 7.1899, 7.1896, 7.1943, 7.194, 7.195, 7.1983, 7.1982, 7.1989, 7.1988, 7.1987, 7.1984, 7.1983, 7.1981, 7.2002, 7.2001, 7.201, 7.2007, 7.2017, 7.2014, 7.2011, 7.2018, 7.2016, 7.2003, 7.2, 7.1997, 7.1995, 7.1995, 7.1992, 7.1989, 7.1987, 7.1976, 7.1976, 7.1985, 7.1982, 7.1978, 7.1977, 7.1966, 7.1964, 7.1954, 7.1954, 7.1954, 7.1952, 7.1948, 7.1946, 7.1942, 7.1939, 7.1938, 7.1939, 7.1927, 7.1923, 7.1921, 7.1917, 7.1904, 7.1902, 7.1902, 7.1902, 7.1898, 7.1895, 7.1892, 7.1892, 7.189, 7.19, 7.1909, 7.1906, 7.1904, 7.1903, 7.1921, 7.1932, 7.1921, 7.1919, 7.192900000000001, 7.193900000000001, 7.1936, 7.1933, 7.1941, 7.1951, 7.195, 7.1948, 7.1948, 7.1944, 7.194, 7.1938, 7.1934, 7.193, 7.1928, 7.1926, 7.1923, 7.1932, 7.194, 7.1937, 7.1934, 7.1944, 7.1954, 7.1962, 7.1963, 7.196, 7.1957, 7.1953, 7.1941, 7.1954, 7.1956, 7.1954, 7.196400000000001, 7.1961, 7.197100000000001, 7.1969, 7.1966, 7.1965, 7.1963, 7.1961, 7.1988, 7.1988, 7.1984, 7.1981, 7.1989, 7.1987, 7.1984, 7.1993, 7.1992, 7.1991, 7.1988, 7.1985, 7.1983, 7.1983, 7.1982, 7.1991, 7.1987, 7.1983, 7.198, 7.1988, 7.1985, 7.1983, 7.1981, 7.1979, 7.1976, 7.1983, 7.199, 7.1987, 7.1986, 7.1983, 7.1994, 7.1991, 7.1988, 7.1985, 7.1993, 7.1991, 7.1999, 7.1998, 7.1997, 7.1985, 7.1973, 7.1961, 7.195, 7.1957, 7.1953, 7.195, 7.1949, 7.1948, 7.1945, 7.1942, 7.1942, 7.1949, 7.1946, 7.1945, 7.1944, 7.1944, 7.1941, 7.1948, 7.1945, 7.1933, 7.193, 7.1937, 7.1934, 7.1933, 7.1932, 7.1929, 7.1927, 7.1924, 7.1931, 7.1929, 7.1926, 7.1924, 7.1925, 7.1922, 7.1929, 7.1926, 7.1933, 7.1931, 7.1929, 7.1937, 7.1935, 7.1932, 7.1931, 7.193, 7.1937, 7.1934, 7.1933, 7.1932, 7.193, 7.1928, 7.1925, 7.1923, 7.1922, 7.1931, 7.1939, 7.1945, 7.1941, 7.1937, 7.1935, 7.1931, 7.193, 7.1927, 7.1934, 7.1934, 7.1932, 7.1939, 7.1935, 7.1933, 7.193, 7.1927, 7.1924, 7.1923, 7.1911, 7.1908, 7.1907, 7.1904, 7.1902, 7.191, 7.1907, 7.1904, 7.1893, 7.1883, 7.1893, 7.189, 7.1887, 7.1884, 7.1884, 7.1894, 7.1902, 7.1903, 7.1892, 7.1889, 7.1888, 7.1887, 7.1896, 7.1898, 7.1897, 7.1907000000000005, 7.191700000000001, 7.1916, 7.1924, 7.1921, 7.1921, 7.192, 7.1917, 7.1915, 7.1912, 7.1909, 7.1908, 7.1905, 7.1903, 7.19, 7.1897, 7.1894, 7.1903, 7.191, 7.1919, 7.1927, 7.1924, 7.1934, 7.1932, 7.193, 7.1929, 7.1936, 7.1944, 7.1943, 7.1941, 7.1937, 7.1944, 7.1932, 7.1929, 7.1926, 7.1933, 7.194, 7.1937, 7.1934, 7.1932, 7.193, 7.1927, 7.1925, 7.1922, 7.192, 7.1909, 7.1906, 7.1903, 7.1901, 7.1899, 7.1897, 7.1904, 7.1904, 7.1901, 7.19, 7.1898, 7.1897, 7.1894, 7.1893, 7.189, 7.1887, 7.1885, 7.1882, 7.188, 7.1878, 7.1876, 7.1873, 7.188, 7.1877, 7.1865, 7.1863, 7.187, 7.1866, 7.1863, 7.1862, 7.1861, 7.1858, 7.186800000000001, 7.187800000000001, 7.1877, 7.1885, 7.1882, 7.1881, 7.189, 7.1891, 7.1889, 7.1891, 7.1889, 7.1902, 7.1902, 7.1898, 7.1904, 7.1902, 7.1899, 7.1896, 7.1894, 7.1892, 7.189, 7.1897, 7.1894, 7.1894, 7.1901, 7.1908, 7.1916, 7.1914, 7.1912, 7.1911, 7.191, 7.1907, 7.1895, 7.1902, 7.1912, 7.1919, 7.1916, 7.1914, 7.1911, 7.1908, 7.1923, 7.1922, 7.1929, 7.1917, 7.1916, 7.1913, 7.1912, 7.191, 7.1907, 7.1904, 7.1902, 7.19, 7.1897, 7.1904, 7.1903, 7.1949, 7.1966, 7.1954, 7.1961, 7.1958, 7.1955, 7.1954, 7.1952, 7.196, 7.1964, 7.1971, 7.197, 7.197, 7.1968, 7.1976, 7.1975, 7.1986, 7.1986, 7.1982, 7.1981, 7.1991, 7.1988, 7.1984, 7.1982, 7.198, 7.1979, 7.1978, 7.1975, 7.2008, 7.2007, 7.2006, 7.201, 7.2009, 7.2016, 7.2013, 7.2011, 7.2018, 7.2017, 7.2014, 7.201, 7.2008, 7.2006, 7.2013, 7.2021, 7.202, 7.2019, 7.2016, 7.2014, 7.2012, 7.2012, 7.2019, 7.2016, 7.2022, 7.202, 7.2026, 7.2024, 7.2032, 7.2029, 7.2036, 7.2043, 7.2053, 7.205, 7.2038, 7.2047, 7.2044, 7.2041, 7.2058, 7.2048, 7.2048, 7.2047, 7.2045, 7.2046, 7.2036, 7.2034, 7.2031, 7.2028, 7.2025, 7.2024, 7.2031, 7.2027, 7.2026, 7.2026, 7.2024, 7.2021, 7.2018, 7.2016, 7.2014, 7.2012, 7.2021, 7.202, 7.2021, 7.202, 7.2017, 7.2015, 7.2013, 7.201, 7.2007, 7.2005, 7.2005, 7.2003, 7.2001, 7.1991, 7.1989, 7.1987, 7.1984, 7.1982, 7.1989, 7.1986, 7.1985, 7.1981, 7.1981, 7.1977, 7.1974, 7.1974, 7.1981, 7.198, 7.1977, 7.1975, 7.1973, 7.1972, 7.1979, 7.1978, 7.1985, 7.1974, 7.1971, 7.1968, 7.1965, 7.1964, 7.1962, 7.1968, 7.1966, 7.1965, 7.1962, 7.1959, 7.1958, 7.1956, 7.1956, 7.1956, 7.1944, 7.1942, 7.1951, 7.195, 7.1948, 7.1947, 7.1945, 7.1946, 7.1934, 7.194, 7.1938, 7.1936, 7.1934, 7.1931, 7.1928, 7.1921, 7.1918, 7.1916, 7.1913, 7.191, 7.1907, 7.1914, 7.1913, 7.1903, 7.1903, 7.1901, 7.1898, 7.1896, 7.1895, 7.1903, 7.1905, 7.1894, 7.1891, 7.1897, 7.1895, 7.1894, 7.189, 7.1896, 7.1893, 7.1891, 7.1889, 7.1889, 7.1896, 7.1893, 7.1891, 7.1888, 7.1878, 7.1885, 7.1882, 7.1881, 7.1878, 7.1877, 7.1885, 7.1882, 7.1879, 7.1894, 7.19, 7.1898, 7.1899, 7.1905, 7.1911, 7.1909, 7.1908, 7.1915, 7.1923, 7.192, 7.1917, 7.1906, 7.1906, 7.1904, 7.1902, 7.1914, 7.1912, 7.1909, 7.193, 7.1928, 7.1926, 7.1926, 7.1925, 7.1923, 7.1921, 7.1919, 7.1917, 7.1924, 7.1922, 7.192, 7.1917, 7.1925, 7.1933, 7.1931, 7.1928, 7.1926, 7.1923, 7.192, 7.1919, 7.1928, 7.1936, 7.1933, 7.1932, 7.1929, 7.1927, 7.1926, 7.1925, 7.1923, 7.192, 7.192, 7.192, 7.1917, 7.1924, 7.1923, 7.1921, 7.1923, 7.192, 7.1919, 7.1917, 7.1919, 7.1927, 7.1934, 7.194, 7.1937, 7.1936, 7.1944, 7.1944, 7.1951, 7.1948, 7.1945, 7.1942, 7.1942, 7.1939, 7.1938, 7.1936, 7.1934, 7.1933, 7.194, 7.1937, 7.1937, 7.1936, 7.1944, 7.1941, 7.1938, 7.1935, 7.1933, 7.1933, 7.1939, 7.1938, 7.1936, 7.1933, 7.1939, 7.1937, 7.1935, 7.1925, 7.1924, 7.1923, 7.193, 7.1927, 7.1924, 7.193, 7.1927, 7.1924, 7.1921, 7.1928, 7.1925, 7.1932, 7.1931, 7.192, 7.1918, 7.1915, 7.1912, 7.192, 7.1918, 7.1958, 7.1955, 7.1959, 7.1956, 7.1963, 7.1952, 7.196, 7.1957, 7.1955, 7.1977, 7.1975, 7.1982, 7.198, 7.198, 7.1977, 7.1976, 7.1982, 7.1988, 7.1985, 7.1982, 7.1979, 7.1978, 7.1976, 7.1973, 7.1962, 7.1962, 7.1959, 7.1956, 7.1954, 7.1961, 7.1959, 7.1956, 7.1953, 7.1951, 7.1957, 7.1957, 7.1957, 7.1957, 7.1954, 7.1962, 7.1963, 7.1971, 7.1978, 7.1986, 7.1984, 7.1991, 7.1989, 7.1986, 7.1984, 7.1973, 7.197, 7.1976, 7.1976, 7.1973, 7.197, 7.1967, 7.1967, 7.1964, 7.1961, 7.1959, 7.1979, 7.1978, 7.1985, 7.1974, 7.1971, 7.1968, 7.1965, 7.1962, 7.1959, 7.1956, 7.1953, 7.1952, 7.1949, 7.1947, 7.1954, 7.1951, 7.1948, 7.1947, 7.1944, 7.1943, 7.1941, 7.1938, 7.1935, 7.1936, 7.1936, 7.1937, 7.1935, 7.1932, 7.1939, 7.1937, 7.1934, 7.1932, 7.1939, 7.1937, 7.1936, 7.1934, 7.1932, 7.1929, 7.1926, 7.1923, 7.192, 7.1917, 7.1916, 7.1924, 7.1931, 7.1929, 7.1928, 7.1926, 7.1924, 7.1922, 7.193, 7.1928, 7.1927, 7.1934, 7.1933, 7.1933, 7.1931, 7.1929, 7.1926, 7.1932, 7.194, 7.1947, 7.1953, 7.1951, 7.1957, 7.1954, 7.1962, 7.1959, 7.1957, 7.1956, 7.1954, 7.1952, 7.1959, 7.1957, 7.1956, 7.1964, 7.1962, 7.1961, 7.1958, 7.1956, 7.1962, 7.1959, 7.1956, 7.1956, 7.1974, 7.1974, 7.1972, 7.1971, 7.1977, 7.1986, 7.1986, 7.1975, 7.1972, 7.1971, 7.1968, 7.1965, 7.1964, 7.2003, 7.2001, 7.199, 7.1987, 7.1994, 7.1992, 7.1989, 7.1995, 7.1992, 7.199, 7.1979, 7.1977, 7.1975, 7.1973, 7.1972, 7.197, 7.1986, 7.1987, 7.1987, 7.1986, 7.1983, 7.199, 7.2, 7.1999, 7.1996, 7.1994, 7.1992, 7.1991, 7.1988, 7.1985, 7.1984, 7.1982, 7.1979, 7.1978, 7.1975, 7.1984, 7.1981, 7.2005, 7.2002, 7.1999, 7.1996, 7.2003, 7.2001, 7.2001, 7.2002, 7.1999, 7.1997, 7.1995, 7.1992, 7.199, 7.1987, 7.1994, 7.2009, 7.2041, 7.2051, 7.2049, 7.2055, 7.2062, 7.2059, 7.2068, 7.2067, 7.2064, 7.2061, 7.206, 7.2059, 7.2056, 7.2053, 7.2051, 7.2058, 7.2056, 7.2054, 7.2051, 7.2049, 7.2046, 7.2043, 7.205, 7.2086, 7.2083, 7.208, 7.2097, 7.2094, 7.2093, 7.209, 7.2087, 7.2087, 7.2084, 7.2084, 7.2081, 7.2078, 7.2075, 7.2072, 7.207, 7.2067, 7.2066, 7.2064, 7.2061, 7.2059, 7.2056, 7.2053, 7.205, 7.205, 7.2047, 7.2047, 7.2047, 7.2056, 7.2054, 7.206, 7.2059, 7.2056, 7.2066, 7.2064, 7.2062, 7.206, 7.2058, 7.2056, 7.2055, 7.2054, 7.2052, 7.2052, 7.2052, 7.2049, 7.2056, 7.2054, 7.2051, 7.2048, 7.2049, 7.2047, 7.2054, 7.2055, 7.2054, 7.2051, 7.2057, 7.2055, 7.2062, 7.2061, 7.2059, 7.2057, 7.2057, 7.2055, 7.2055, 7.2061, 7.2059, 7.2057, 7.2055, 7.2053, 7.2053, 7.2052, 7.2067, 7.2066, 7.2085, 7.2094, 7.2092, 7.2104, 7.2108, 7.2114, 7.2105, 7.2104, 7.2116, 7.2114, 7.2112, 7.211, 7.2109, 7.2106, 7.2105, 7.2103, 7.2111, 7.2109, 7.2117, 7.2114, 7.2112, 7.211, 7.2119, 7.2117, 7.2115, 7.2115, 7.2123, 7.2122, 7.2119, 7.2116, 7.2113, 7.2111, 7.2109, 7.2106, 7.2105, 7.2102, 7.2101, 7.2107, 7.2105, 7.2103, 7.2104, 7.2103, 7.2102, 7.2099, 7.2117, 7.2115, 7.2122, 7.212, 7.2126, 7.2124, 7.2122, 7.212, 7.2126, 7.2124, 7.2122, 7.212, 7.2127, 7.2127, 7.2126, 7.2125, 7.2122, 7.212, 7.2118, 7.2124, 7.2121, 7.212, 7.2117, 7.2116, 7.2115, 7.2112, 7.211, 7.2107, 7.2126, 7.2123, 7.2114, 7.2112, 7.2112, 7.2119, 7.2117, 7.2114, 7.2114, 7.2113, 7.2111, 7.2109, 7.2107, 7.2105, 7.2103, 7.2102, 7.2125, 7.2137, 7.2134, 7.2124, 7.2113, 7.2104, 7.2095, 7.2092, 7.209, 7.209, 7.2087, 7.2086, 7.2083, 7.2094, 7.2092, 7.2111, 7.2119, 7.2123, 7.212, 7.211, 7.2108, 7.2114, 7.2111, 7.2108, 7.2106, 7.2122, 7.212, 7.2126, 7.2123, 7.2131, 7.2128, 7.2127, 7.2132, 7.213, 7.2146, 7.2144, 7.2143, 7.2141, 7.2139, 7.2145, 7.215, 7.2147, 7.2145, 7.2143, 7.2149, 7.2148, 7.2146, 7.2147, 7.2148, 7.2145, 7.2143, 7.215, 7.2147, 7.2145, 7.2147, 7.2147, 7.2144, 7.2142, 7.2155, 7.2152, 7.2149, 7.2156, 7.2155, 7.2161, 7.2158, 7.2156, 7.2154, 7.2152, 7.215, 7.2148, 7.2147, 7.2149, 7.214, 7.2137, 7.2135, 7.2134, 7.2132, 7.2131, 7.2138, 7.2145, 7.2142, 7.2139, 7.2148, 7.2146, 7.2148, 7.2148, 7.2146, 7.2152, 7.2149, 7.2138, 7.2146, 7.2143, 7.2148, 7.2145, 7.2142, 7.214, 7.2138, 7.2143, 7.214, 7.2138, 7.2136, 7.2135, 7.2125, 7.2114, 7.2104, 7.2094, 7.2084, 7.2082, 7.2079, 7.2068, 7.2065, 7.2064, 7.2071, 7.2069, 7.2067, 7.2075, 7.2072, 7.207, 7.2076, 7.2074, 7.2072, 7.2071, 7.2072, 7.207, 7.2062, 7.2059, 7.2056, 7.2063, 7.206, 7.2057, 7.2054, 7.2053, 7.2053, 7.2051, 7.2049, 7.2046, 7.2043, 7.2041, 7.204, 7.2037, 7.2043, 7.2041, 7.2041, 7.2038, 7.2044, 7.2044, 7.2043, 7.2043, 7.2041, 7.2056, 7.2062, 7.206, 7.2094, 7.2093, 7.2092, 7.2092, 7.2089, 7.2087, 7.2086, 7.2093, 7.2099, 7.2098, 7.2095, 7.2093, 7.2091, 7.209, 7.2088, 7.2099, 7.2096, 7.2086, 7.2084, 7.2081, 7.2074, 7.2073, 7.207, 7.2061, 7.2059, 7.2058, 7.2057, 7.2055, 7.2052, 7.2058, 7.2057, 7.2056, 7.2054, 7.2061, 7.206, 7.2057, 7.2063, 7.206, 7.2058, 7.2056, 7.2055, 7.2054, 7.2053, 7.2051, 7.205, 7.2048, 7.2054, 7.2051, 7.2042, 7.2041, 7.2047, 7.2053, 7.206, 7.2058, 7.2056, 7.2056, 7.2053, 7.206, 7.2059, 7.2065, 7.2063, 7.2062, 7.206, 7.2066, 7.2057, 7.2056, 7.2055, 7.2065, 7.208, 7.2079, 7.2069, 7.2087, 7.2084, 7.2102, 7.2101, 7.2107, 7.2104, 7.2094, 7.2091, 7.2098, 7.2095, 7.2094, 7.2091, 7.2089, 7.209, 7.2087, 7.2084, 7.2082, 7.2081, 7.2078, 7.2078, 7.2084, 7.2082, 7.2079, 7.2077, 7.2085, 7.2083, 7.2083, 7.2081, 7.2093, 7.2085, 7.2092, 7.2089, 7.2086, 7.2085, 7.2091, 7.2094, 7.2085, 7.2075, 7.2065, 7.2062, 7.2066, 7.2064, 7.2061, 7.2059, 7.2057, 7.2068, 7.2073, 7.208, 7.2079, 7.2076, 7.2076, 7.2082, 7.2079, 7.2077, 7.2074, 7.208, 7.2078, 7.2068, 7.2065, 7.2065, 7.2071, 7.2077, 7.2074, 7.208, 7.2077, 7.2075, 7.2072, 7.207, 7.207, 7.2068, 7.2074, 7.2073, 7.207, 7.2076, 7.2073, 7.207, 7.206, 7.2058, 7.2057, 7.2055, 7.2054, 7.2051, 7.2057, 7.2055, 7.2061, 7.2059, 7.2065, 7.2062, 7.2061, 7.2058, 7.2055, 7.2053, 7.2051, 7.205, 7.2048, 7.2045, 7.2051, 7.2049, 7.2047, 7.2044, 7.205, 7.2047, 7.2045, 7.2052, 7.2051, 7.2049, 7.2055, 7.2052, 7.205, 7.2047, 7.2044, 7.2049, 7.2046, 7.2053, 7.2051, 7.2048, 7.2046, 7.2045, 7.2035, 7.2032, 7.2022, 7.2021, 7.2028, 7.2026, 7.2017, 7.2008, 7.2006, 7.2004, 7.2002, 7.2008, 7.2006, 7.2005, 7.1996, 7.1993, 7.1999, 7.2006, 7.1998, 7.1995, 7.1993, 7.199, 7.1996, 7.1995, 7.1992, 7.1991, 7.1989, 7.1988, 7.1986, 7.1985, 7.1984, 7.1982, 7.1973, 7.198, 7.198, 7.1986, 7.1984, 7.1982, 7.1981, 7.1979, 7.1977, 7.1975, 7.1974, 7.1972, 7.197, 7.1968, 7.1966, 7.1972, 7.1971, 7.1969, 7.1975, 7.1974, 7.198, 7.1978, 7.1977, 7.1975, 7.1972, 7.197, 7.1968, 7.1969, 7.1967, 7.1965, 7.1964, 7.1962, 7.196, 7.1958, 7.1956, 7.1957, 7.1956, 7.1954, 7.1952, 7.1951, 7.1949, 7.1947, 7.1945, 7.1943, 7.1942, 7.1939, 7.1938, 7.1936, 7.1935, 7.1934, 7.194, 7.194, 7.1945, 7.1945, 7.1942, 7.194, 7.1938, 7.1936, 7.1942, 7.1939, 7.1938, 7.1938, 7.1937, 7.1937, 7.1942, 7.1942, 7.1941, 7.1947, 7.1944, 7.1942, 7.1939, 7.1936, 7.1941, 7.1939, 7.1938, 7.1935, 7.1933, 7.1931, 7.1929, 7.1934, 7.1933, 7.1939, 7.1944, 7.1942, 7.1939, 7.1936, 7.1935, 7.1933, 7.1931, 7.1929, 7.1928, 7.1934, 7.1934, 7.1932, 7.1938, 7.1936, 7.1933, 7.1931, 7.1935, 7.1932, 7.1931, 7.1928, 7.1926, 7.1924, 7.193, 7.1928, 7.1925, 7.1922, 7.192, 7.1918, 7.1917, 7.1917, 7.1916, 7.1914, 7.1913, 7.191, 7.1909, 7.1906, 7.1904, 7.1902, 7.19, 7.1922, 7.192, 7.1917, 7.1917, 7.1915, 7.1921, 7.1927, 7.1925, 7.1922, 7.192, 7.1918, 7.1916, 7.1922, 7.1919, 7.1925, 7.1922, 7.1921, 7.192, 7.192, 7.1918, 7.1916, 7.1914, 7.1911, 7.1917, 7.1914, 7.1912, 7.191, 7.1908, 7.1905, 7.1903, 7.19, 7.1897, 7.1894, 7.1892, 7.1889, 7.1888, 7.1886, 7.1884, 7.1881, 7.1887, 7.1886, 7.1884, 7.1882, 7.1888, 7.1901, 7.1899, 7.1899, 7.1897, 7.1891, 7.1893, 7.1892, 7.1891, 7.1898, 7.1896, 7.1896, 7.19, 7.1899, 7.1904, 7.1909, 7.1906, 7.1905, 7.1911, 7.191, 7.1916, 7.1915, 7.1913, 7.1919, 7.1926, 7.1931, 7.193, 7.193, 7.1929, 7.1928, 7.1927, 7.1925, 7.1924, 7.1924, 7.1931, 7.1929, 7.1936, 7.1933, 7.1931, 7.193, 7.1928, 7.1926, 7.1932, 7.193, 7.1928, 7.1934, 7.1932, 7.1938, 7.1935, 7.1942, 7.1946, 7.1947, 7.1953, 7.1951, 7.1958, 7.1955, 7.1954, 7.1952, 7.1952, 7.195, 7.1947, 7.1946, 7.1944, 7.1942, 7.1939, 7.1938, 7.1935, 7.1941, 7.1939, 7.1936, 7.1934, 7.1932, 7.193, 7.1929, 7.1935, 7.1941, 7.194, 7.1938, 7.1945, 7.1942, 7.1948, 7.1953, 7.1961, 7.196, 7.1959, 7.1957, 7.1955, 7.1953, 7.1953, 7.1958, 7.1956, 7.1961, 7.1975, 7.1968, 7.1974, 7.1972, 7.197, 7.1969, 7.1968, 7.1965, 7.1964, 7.1963, 7.1969, 7.1967, 7.1966, 7.1972, 7.197, 7.1967, 7.1966, 7.1963, 7.1962, 7.196, 7.196, 7.1957, 7.1979, 7.1977, 7.1975, 7.1973, 7.197, 7.1969, 7.1967, 7.1966, 7.1963, 7.1961, 7.1959, 7.1957, 7.1955, 7.1953, 7.195, 7.1956, 7.1986, 7.1986, 7.1992, 7.1998, 7.1996, 7.1994, 7.1993, 7.2, 7.2001, 7.1993, 7.2011, 7.2017, 7.2051, 7.2051, 7.2049, 7.2054, 7.2052, 7.2045, 7.2069, 7.2075, 7.2075, 7.2081, 7.2082, 7.2081, 7.209, 7.2088, 7.2085, 7.2083, 7.2088, 7.2085, 7.209, 7.2087, 7.2085, 7.2083, 7.208, 7.2085, 7.2082, 7.2087, 7.2085, 7.2098, 7.2095, 7.21, 7.2098, 7.2096, 7.2095, 7.2092, 7.2089, 7.2086, 7.2083, 7.208, 7.2077, 7.2075, 7.2072, 7.2069, 7.2066, 7.2072, 7.207, 7.2068, 7.2066, 7.2063, 7.2061, 7.2058, 7.2055, 7.2053, 7.2051, 7.205, 7.2064, 7.2073, 7.2073, 7.2079, 7.2077, 7.2092, 7.2092, 7.2091, 7.2091, 7.21, 7.2114, 7.2133, 7.2131, 7.2136, 7.2149, 7.2147, 7.2152, 7.2165, 7.2164, 7.22, 7.2198, 7.2195, 7.2202, 7.2201, 7.2199, 7.2199, 7.2212, 7.2227, 7.2224, 7.2237, 7.2235, 7.2234, 7.2248, 7.2246, 7.2244, 7.2251, 7.2249, 7.2247, 7.2245, 7.2251, 7.2258, 7.2256, 7.2254, 7.2252, 7.225, 7.2247, 7.2253, 7.2254, 7.226, 7.2265, 7.2262, 7.2262, 7.2261, 7.2264, 7.2266, 7.2281, 7.228, 7.2281, 7.2279, 7.2277, 7.2275, 7.2273, 7.2279, 7.2286, 7.2284, 7.229, 7.2288, 7.2285, 7.2283, 7.2282, 7.2291, 7.2288, 7.2288, 7.2285, 7.2284, 7.2283, 7.2288, 7.2286, 7.2291, 7.2289, 7.2288, 7.2285, 7.2291, 7.2288, 7.2286, 7.2284, 7.2283, 7.228, 7.2277, 7.2275, 7.2274, 7.2271, 7.2269, 7.2267, 7.2266, 7.2264, 7.2261, 7.2259, 7.2258, 7.2264, 7.2264, 7.2262, 7.226, 7.2258, 7.2256, 7.2261, 7.2259, 7.2264, 7.2262, 7.226, 7.2259, 7.2257, 7.2255, 7.2253, 7.2258, 7.2263, 7.226, 7.2259, 7.2257, 7.2255, 7.2253, 7.2258, 7.2257, 7.2255, 7.2252, 7.225, 7.2248, 7.2254, 7.2259, 7.2265, 7.2273, 7.2272, 7.227, 7.227, 7.2286, 7.2278, 7.2276, 7.2289, 7.2303, 7.2301, 7.2306, 7.2304, 7.2303, 7.2309, 7.2308, 7.2306, 7.2319, 7.2316, 7.2313, 7.2318, 7.2323, 7.2321, 7.2319, 7.2316, 7.2315, 7.2313, 7.2323, 7.2321, 7.2318, 7.2316, 7.2322, 7.2319, 7.2317, 7.2315, 7.2313, 7.2311, 7.231, 7.2309, 7.2314, 7.2311, 7.2308, 7.2315, 7.2314, 7.2314, 7.2313, 7.2311, 7.231, 7.2308, 7.2305, 7.2302, 7.2299, 7.2304, 7.2318, 7.2319, 7.2317, 7.2323, 7.2329, 7.2327, 7.2325, 7.2323, 7.2321, 7.232, 7.2318, 7.2316, 7.2314, 7.2313, 7.2312, 7.2312, 7.231, 7.2307, 7.2306, 7.2305, 7.2307, 7.2305, 7.2303], '192.168.122.114': [5.3751, 5.5183, 5.9349, 5.8571, 5.9484, 5.8592, 6.1894, 5.5516, 5.6446, 6.1853, 6.1591, 6.2215, 6.2652, 6.3113, 6.655, 6.6232, 6.6016, 6.567, 6.5267, 6.5279, 6.487, 6.714, 6.6597, 6.6309, 6.7994, 6.7505, 6.7381, 6.719, 6.6713, 6.6567, 6.6306, 6.612, 6.6109, 6.5766, 6.7266, 6.6884, 6.7048, 6.6743, 6.7821, 6.776, 6.8883, 7.0137, 6.9821, 6.9577, 6.9308, 7.0112, 7.0295, 7.0541, 7.0355, 7.0046, 6.9092, 6.8896, 6.9667, 6.9391, 7.0119, 7.0872, 7.0676, 7.0374, 7.0147, 6.9868, 6.9799, 6.957, 7.0192, 7.0076, 6.9886, 6.9656, 6.9533, 6.9344, 6.9105, 6.8902, 6.8128, 6.8047, 6.802, 6.7868, 6.7777, 6.8335, 6.8256, 6.8747, 6.855, 6.8516, 6.8417, 6.8225, 6.8123, 6.8074, 6.7907, 6.7739, 6.7673, 6.7526, 6.7965, 6.7803, 6.7654, 6.7607, 6.8084, 6.8001, 6.8418, 6.8366, 6.8207, 6.8193, 6.8034, 6.7912, 6.7782, 6.7644, 6.7611, 6.7566, 6.7562, 6.7532, 6.74, 6.7345, 6.7249, 6.7154, 6.7324, 6.9672, 7.0783, 7.0792, 7.0688, 7.0611, 7.0533, 7.0537, 7.0414, 7.031, 7.0174, 7.0032, 6.9901, 6.9856, 6.9716, 7.0015, 6.9954, 6.9885, 6.9756, 6.9649, 6.9597, 6.9939, 6.9877, 6.976, 6.9786, 6.9673, 6.9963, 6.9902, 6.9781, 7.0093, 7.0, 6.9937, 7.0229, 7.0239, 7.0146, 7.0042, 7.007, 7.0356, 7.0247, 7.0157, 7.0131, 7.0044, 6.9973, 6.9947, 6.9868, 6.9794, 6.977, 6.9664, 6.9603, 6.9596, 6.96, 6.9857, 6.9835, 6.9805, 7.0116, 7.0057, 6.9994, 6.9937, 6.9925, 7.0147, 7.0119, 7.0041, 6.9993, 6.9955, 6.9895, 6.9905, 6.9849, 6.9764, 6.9685, 6.9695, 6.9652, 6.9574, 6.9493, 6.9419, 6.9646, 6.9569, 6.9499, 6.9431, 6.9387, 6.9368, 6.9331, 6.9297, 6.9226, 6.945, 6.9381, 6.9347, 6.9327, 6.9251, 7.0271, 7.0202, 7.0175, 7.0169, 7.0093, 7.0103, 7.035, 7.0282, 7.0298, 7.0257, 7.0183, 7.0135, 7.0059, 7.0257, 7.0206, 7.0386, 7.034, 7.0266, 7.021, 7.0387, 7.0551, 7.0731, 7.0685, 7.0842, 7.077, 7.0698, 7.0683, 7.0884, 7.065, 7.0589, 7.0373, 7.0597, 7.0943, 7.1108, 7.103, 7.1411, 7.1361, 7.1288, 7.1479, 7.1422, 7.1362, 7.1314, 7.1292, 7.1219, 7.1145, 7.108, 7.1082, 7.1055, 7.1209, 7.1394, 7.1326, 7.1309, 7.1522, 7.1451, 7.1415, 7.1766, 7.1757, 7.1804, 7.1787, 7.1738, 7.1715, 7.1659, 7.1644, 7.1598, 7.1776, 7.1756, 7.1706, 7.1673, 7.1612, 7.1736, 7.1686, 7.1632, 7.1694, 7.1647, 7.1621, 7.1783, 7.1734, 7.1752, 7.1706, 7.167, 7.1616, 7.161, 7.1556, 7.151, 7.1485, 7.1462, 7.1449, 7.1419, 7.1412, 7.1366, 7.1316, 7.1268, 7.1222, 7.1191, 7.1146, 7.1089, 7.124, 7.1181, 7.1317, 7.1267, 7.1396, 7.1525, 7.1483, 7.1469, 7.1448, 7.1645, 7.1605, 7.1607, 7.1603, 7.1592, 7.1529, 7.1487, 7.1452, 7.1438, 7.1575, 7.1735, 7.1672, 7.1651, 7.1591, 7.1547, 7.1497, 7.1466, 7.1473, 7.146, 7.1444, 7.1391, 7.1366, 7.1309, 7.1255, 7.1368, 7.1491, 7.1448, 7.1565, 7.1516, 7.1475, 7.1594, 7.1561, 7.1529, 7.1737, 7.173, 7.186, 7.198, 7.2092, 7.2049, 7.2015, 7.1992, 7.1944, 7.1893, 7.2001, 7.195, 7.193, 7.1917, 7.1872, 7.1837, 7.1796, 7.1931, 7.191, 7.2042, 7.2001, 7.1959, 7.2082, 7.2203, 7.2158, 7.2124, 7.2078, 7.204, 7.2003, 7.199, 7.211, 7.2065, 7.2038, 7.2223, 7.2323, 7.2419, 7.2386, 7.2496, 7.2455, 7.2405, 7.2378, 7.2469, 7.2443, 7.241, 7.2375, 7.2352, 7.2306, 7.2397, 7.237, 7.2354, 7.2466, 7.259, 7.2772, 7.2723, 7.2818, 7.2773, 7.2749, 7.2723, 7.2711, 7.2803, 7.2786, 7.2911, 7.2862, 7.2812, 7.2766, 7.2724, 7.2808, 7.2765, 7.2727, 7.2685, 7.2661, 7.2632, 7.2613, 7.2697, 7.2656, 7.2626, 7.2579, 7.2536, 7.2516, 7.2621, 7.26, 7.2698, 7.2654, 7.2746, 7.2701, 7.2676, 7.2661, 7.2632, 7.26, 7.2714, 7.2681, 7.2774, 7.2738, 7.2713, 7.2685, 7.2654, 7.2662, 7.2626, 7.2719, 7.271, 7.2686, 7.278, 7.2776, 7.2746, 7.2831, 7.2801, 7.288, 7.296, 7.2914, 7.2994, 7.3082, 7.3173, 7.3129, 7.3212, 7.3286, 7.3247, 7.3228, 7.3186, 7.3168, 7.3134, 7.3118, 7.3076, 7.3041, 7.3008, 7.2981, 7.2941, 7.2899, 7.2855, 7.2739, 7.2714, 7.2687, 7.2662, 7.2644, 7.2628, 7.2589, 7.2662, 7.2625, 7.2586, 7.2663, 7.2625, 7.2701, 7.2667, 7.2648, 7.2762, 7.2722, 7.2925, 7.2913, 7.2884, 7.3073, 7.3032, 7.2997, 7.3075, 7.3152, 7.3121, 7.3095, 7.3231, 7.3189, 7.3266, 7.3244, 7.3207, 7.3182, 7.3271, 7.3486, 7.3568, 7.3537, 7.3627, 7.3735, 7.3712, 7.3709, 7.3694, 7.3665, 7.3636, 7.3634, 7.3605, 7.3583, 7.356, 7.3529, 7.3731, 7.3697, 7.3692, 7.3656, 7.3632, 7.36, 7.3565, 7.3562, 7.3534, 7.3694, 7.3706, 7.3682, 7.3649, 7.3628, 7.3701, 7.3667, 7.3631, 7.3595, 7.3581, 7.356, 7.3528, 7.3524, 7.3488, 7.3454, 7.3417, 7.3396, 7.3379, 7.3445, 7.3424, 7.3402, 7.3381, 7.3351, 7.3326, 7.3292, 7.3354, 7.3321, 7.3304, 7.3269, 7.3234, 7.321, 7.3276, 7.3251, 7.3255, 7.3218, 7.3184, 7.3153, 7.3131, 7.3106, 7.3114, 7.3083, 7.305, 7.3016, 7.2982, 7.2966, 7.2938, 7.2914, 7.2878, 7.2855, 7.285, 7.2917, 7.2892, 7.2875, 7.294, 7.3014, 7.2981, 7.3046, 7.3013, 7.3018, 7.2999, 7.2971, 7.2957, 7.3027, 7.3002, 7.297, 7.2958, 7.2967, 7.3035, 7.3018, 7.3001, 7.2974, 7.2956, 7.3019, 7.3003, 7.3156, 7.3399, 7.3392, 7.3363, 7.3437, 7.3419, 7.3392, 7.3485, 7.3672, 7.38, 7.3776, 7.3751, 7.3728, 7.3703, 7.3618, 7.361, 7.3609, 7.3581, 7.356, 7.3528, 7.3505, 7.3832, 7.3836, 7.3811, 7.3881, 7.386, 7.3846, 7.3817, 7.3798, 7.3766, 7.3794, 7.3776, 7.3746, 7.3725, 7.3693, 7.3665, 7.365, 7.3703, 7.3673, 7.3652, 7.3848, 7.3834, 7.3807, 7.3783, 7.3758, 7.3736, 7.379, 7.3776, 7.3749, 7.3718, 7.3781, 7.3753, 7.3721, 7.3691, 7.3663, 7.3716, 7.3685, 7.3671, 7.3652, 7.3635, 7.361, 7.3601, 7.357, 7.3629, 7.3604, 7.3668, 7.3638, 7.3695, 7.3669, 7.364, 7.3613, 7.3595, 7.3578, 7.363, 7.3623, 7.3602, 7.3659, 7.3645, 7.3624, 7.3605, 7.3575, 7.3627, 7.3682, 7.3653, 7.3707, 7.3706, 7.3762, 7.3821, 7.3798, 7.3853, 7.3822, 7.381, 7.3853, 7.3829, 7.3813, 7.3795, 7.377, 7.3749, 7.373, 7.3995, 7.3974, 7.3945, 7.3931, 7.3983, 7.3962, 7.3942, 7.3927, 7.3911, 7.3968, 7.3944, 7.3918, 7.3901, 7.3946, 7.3925, 7.3901, 7.3883, 7.3857, 7.3915, 7.389, 7.3878, 7.4153, 7.4127, 7.4121, 7.4096, 7.4153, 7.414, 7.4114, 7.4089, 7.4073, 7.4053, 7.4048, 7.4025, 7.3996, 7.3982, 7.3955, 7.3935, 7.3921, 7.4076, 7.4053, 7.3963, 7.3948, 7.392, 7.3903, 7.3874, 7.3851, 7.3838, 7.3816, 7.3867, 7.3853, 7.3836, 7.3826, 7.381, 7.3784, 7.3775, 7.3763, 7.375, 7.3737, 7.3715, 7.3693, 7.3675, 7.3668, 7.3666, 7.3642, 7.3618, 7.3592, 7.358, 7.3552, 7.3538, 7.3526, 7.3502, 7.3494, 7.3544, 7.3528, 7.3502, 7.348, 7.3457, 7.3512, 7.349, 7.3466, 7.3444, 7.342, 7.3398, 7.3376, 7.3365, 7.3412, 7.353, 7.3577, 7.3621, 7.3602, 7.3591, 7.3653, 7.3699, 7.3701, 7.3743, 7.3857, 7.3832, 7.3806, 7.3781, 7.3822, 7.3808, 7.3789, 7.3768, 7.3743, 7.3721, 7.3707, 7.3681, 7.3663, 7.3647, 7.3621, 7.36, 7.3576, 7.3552, 7.353, 7.3511, 7.3493, 7.3474, 7.3464, 7.3503, 7.3543, 7.3525, 7.3516, 7.3496, 7.3484, 7.3469, 7.346, 7.3437, 7.3424, 7.3416, 7.3393, 7.3372, 7.3365, 7.3411, 7.3395, 7.3388, 7.3368, 7.3385, 7.3371, 7.3348, 7.3327, 7.3402, 7.338, 7.3366, 7.3409, 7.3387, 7.3366, 7.3344, 7.3327, 7.3306, 7.3294, 7.3284, 7.3284, 7.326, 7.325, 7.3174, 7.3213, 7.3309, 7.3418, 7.3399, 7.3388, 7.3373, 7.3355, 7.3342, 7.3321, 7.3299, 7.3279, 7.3267, 7.3251, 7.3227, 7.3278, 7.3262, 7.3247, 7.3233, 7.3271, 7.3257, 7.3233, 7.3211, 7.3253, 7.3267, 7.3248, 7.3225, 7.3211, 7.3249, 7.3226, 7.3204, 7.318, 7.3218, 7.3255, 7.3232, 7.3217, 7.3255, 7.3254, 7.3238, 7.3215, 7.3257, 7.3243, 7.323, 7.3212, 7.3191, 7.3182, 7.3226, 7.3211, 7.3194, 7.3179, 7.3159, 7.3208, 7.3294, 7.3381, 7.3432, 7.342, 7.3404, 7.3388, 7.343, 7.341, 7.3388, 7.3368, 7.3354, 7.3345, 7.3335, 7.3325, 7.331, 7.3291, 7.3278, 7.3258, 7.3237, 7.3219, 7.3208, 7.3198, 7.3179, 7.3179, 7.3158, 7.3138, 7.3119, 7.3101, 7.3154, 7.3202, 7.3219, 7.3172, 7.316, 7.3143, 7.3125, 7.3128, 7.3129, 7.3113, 7.3095, 7.3084, 7.3065, 7.3137, 7.3131, 7.3177, 7.3163, 7.3242, 7.3229, 7.3222, 7.3211, 7.3193, 7.3179, 7.3162, 7.3147, 7.3194, 7.3176, 7.3242, 7.3223, 7.3219, 7.3213, 7.3197, 7.3182, 7.3165, 7.3144, 7.313, 7.312, 7.3111, 7.3096, 7.3078, 7.3104, 7.3092, 7.3136, 7.3122, 7.316, 7.3153, 7.3189, 7.3169, 7.3155, 7.3139, 7.312, 7.3113, 7.3096, 7.3079, 7.3065, 7.3054, 7.3045, 7.3033, 7.3071, 7.3061, 7.3049, 7.3102, 7.3089, 7.3094, 7.3077, 7.3065, 7.3047, 7.3038, 7.3025, 7.3017, 7.3055, 7.3049, 7.3088, 7.3073, 7.3067, 7.3105, 7.3089, 7.3073, 7.3172, 7.3159, 7.3142, 7.3134, 7.3223, 7.3215, 7.3152, 7.3133, 7.3121, 7.3154, 7.3144, 7.3131, 7.3172, 7.3165, 7.3145, 7.3136, 7.3177, 7.3217, 7.3204, 7.319, 7.323, 7.3213, 7.3201, 7.3186, 7.3172, 7.3162, 7.3198, 7.3191, 7.3179, 7.3285, 7.3276, 7.3277, 7.3264, 7.3262, 7.3243, 7.3229, 7.3213, 7.3195, 7.3179, 7.3167, 7.3149, 7.3135, 7.3125, 7.3107, 7.3141, 7.3172, 7.3158, 7.3191, 7.3177, 7.3178, 7.3173, 7.3158, 7.3151, 7.3185, 7.3177, 7.3159, 7.3197, 7.3179, 7.3188, 7.3177, 7.3167, 7.3148, 7.3133, 7.3119, 7.3106, 7.3088, 7.3036, 7.3077, 7.3065, 7.3049, 7.3041, 7.3076, 7.3066, 7.3051, 7.3138, 7.312, 7.3108, 7.3089, 7.3072, 7.3055, 7.3039, 7.3031, 7.3013, 7.2995, 7.2982, 7.2967, 7.295, 7.2935, 7.2934, 7.299, 7.2976, 7.3046, 7.3132, 7.3122, 7.3107, 7.3095, 7.3081, 7.3063, 7.3058, 7.309, 7.3077, 7.3071, 7.3103, 7.3087, 7.3074, 7.3056, 7.309, 7.3082, 7.3067, 7.31, 7.3095, 7.3089, 7.3081, 7.3065, 7.3062, 7.3047, 7.3076, 7.3063, 7.3049, 7.3045, 7.3176, 7.3177, 7.3161, 7.3201, 7.3233, 7.3268, 7.3302, 7.3299, 7.3283, 7.3322, 7.3346, 7.3378, 7.3373, 7.3362, 7.3348, 7.3337, 7.3341, 7.3329, 7.3283, 7.3276, 7.3271, 7.3258, 7.3247, 7.3229, 7.3217, 7.3204, 7.3195, 7.3183, 7.3166, 7.3158, 7.3151, 7.3138, 7.3136, 7.3119, 7.3103, 7.3099, 7.3085, 7.307, 7.3063, 7.3051, 7.3083, 7.3077, 7.3063, 7.3047, 7.3031, 7.3014, 7.3049, 7.3032, 7.3058, 7.3059, 7.3047, 7.3031, 7.3061, 7.3092, 7.3077, 7.3098, 7.3083, 7.3072, 7.3099, 7.3087, 7.308, 7.3064, 7.3051, 7.304, 7.3029, 7.3013, 7.3001, 7.2988, 7.2973, 7.296, 7.2992, 7.2975, 7.2962, 7.2992, 7.298, 7.297, 7.2958, 7.2944, 7.2893, 7.2983, 7.3015, 7.301, 7.2993, 7.2982, 7.2967, 7.296, 7.2947, 7.294, 7.2969, 7.3002, 7.2991, 7.2975, 7.298, 7.2973, 7.3006, 7.2995, 7.2989, 7.2976, 7.2964, 7.2949, 7.2939, 7.2969, 7.2956, 7.2946, 7.2932, 7.2919, 7.291, 7.2901, 7.2886, 7.287, 7.2856, 7.2898, 7.289, 7.2878, 7.2869, 7.2853, 7.284, 7.2872, 7.2861, 7.2855, 7.2841, 7.2825, 7.2859, 7.2844, 7.2829, 7.2815, 7.2801, 7.2794, 7.2783, 7.2772, 7.2766, 7.2755, 7.2744, 7.2826, 7.2813, 7.2808, 7.2805, 7.2791, 7.2781, 7.2772, 7.2801, 7.2788, 7.2775, 7.2767, 7.2764, 7.2759, 7.2745, 7.2736, 7.2764, 7.2751, 7.2741, 7.2891, 7.293, 7.2928, 7.2925, 7.2916, 7.291, 7.2896, 7.2887, 7.2874, 7.2861, 7.2848, 7.2844, 7.2841, 7.2832, 7.2822, 7.281, 7.28, 7.2787, 7.2774, 7.2805, 7.2799, 7.2789, 7.2823, 7.285, 7.2839, 7.2828, 7.2814, 7.2842, 7.2834, 7.282, 7.2807, 7.2793, 7.2864, 7.2849, 7.2835, 7.2825, 7.282, 7.2813, 7.2801, 7.2829, 7.2817, 7.2848, 7.284, 7.283, 7.282, 7.2813, 7.2801, 7.2789, 7.2776, 7.2774, 7.2803, 7.2837, 7.2827, 7.2851, 7.2877, 7.2905, 7.3015, 7.3007, 7.2992, 7.2984, 7.2971, 7.2998, 7.3025, 7.3012, 7.3005, 7.2991, 7.3018, 7.3053, 7.3039, 7.3025, 7.3011, 7.2998, 7.2985, 7.2975, 7.2968, 7.2954, 7.2943, 7.2969, 7.2998, 7.3023, 7.3009, 7.2995, 7.2982, 7.2967, 7.2953, 7.298, 7.3005, 7.2994, 7.3018, 7.3045, 7.3075, 7.3036, 7.3066, 7.3056, 7.3183, 7.3176, 7.3166, 7.3154, 7.3144, 7.3167, 7.316, 7.3148, 7.3173, 7.316, 7.3148, 7.3134, 7.3133, 7.3131, 7.3122, 7.3116, 7.3103, 7.3137, 7.3128, 7.3156, 7.3147, 7.3138, 7.3127, 7.3116, 7.3103, 7.3089, 7.3124, 7.3111, 7.3144, 7.3134, 7.3159, 7.3149, 7.3135, 7.316, 7.3153, 7.3139, 7.3165, 7.3152, 7.3138, 7.3124, 7.3112, 7.3137, 7.313, 7.312, 7.3109, 7.3137, 7.3125, 7.3116, 7.3074, 7.3067, 7.3093, 7.3082, 7.3107, 7.3132, 7.3123, 7.3116, 7.3143, 7.3167, 7.3153, 7.314, 7.3132, 7.3124, 7.3112, 7.3105, 7.313, 7.3116, 7.3103, 7.3129, 7.316, 7.3184, 7.3171, 7.3209, 7.3199, 7.3226, 7.3212, 7.3204, 7.319, 7.3179, 7.3166, 7.3252, 7.3239, 7.3263, 7.3292, 7.3279, 7.327, 7.3295, 7.3286, 7.3275, 7.3303, 7.3292, 7.3279, 7.3268, 7.3256, 7.3285, 7.3278, 7.3266, 7.3259, 7.3262, 7.3261, 7.3288, 7.3281, 7.3309, 7.3299, 7.3295, 7.3322, 7.3308, 7.3301, 7.3302, 7.3295, 7.3282, 7.3271, 7.3268, 7.3293, 7.3281, 7.327, 7.3296, 7.3287, 7.3274, 7.3272, 7.3261, 7.3283, 7.3309, 7.3312, 7.3317, 7.3306, 7.3296, 7.332, 7.3306, 7.33, 7.3325, 7.3318, 7.3308, 7.3299, 7.3286, 7.3309, 7.3298, 7.3286, 7.3287, 7.3287, 7.3282, 7.328, 7.3274, 7.3272, 7.3263, 7.3253, 7.3247, 7.3235, 7.3222, 7.3212, 7.32, 7.3191, 7.3181, 7.3172, 7.316, 7.3152, 7.3141, 7.3136, 7.3124, 7.3115, 7.3138, 7.3132, 7.3124, 7.3124, 7.312, 7.3108, 7.3095, 7.3085, 7.3075, 7.3068, 7.3059, 7.3048, 7.3042, 7.3066, 7.3053, 7.3042, 7.3069, 7.3067, 7.3112, 7.3134, 7.3129, 7.3117, 7.3111, 7.3142, 7.3291, 7.3365, 7.3359, 7.3351, 7.3379, 7.3373, 7.3361, 7.3348, 7.3373, 7.336, 7.3351, 7.3341, 7.3365, 7.3356, 7.3349, 7.3375, 7.3364, 7.3355, 7.3396, 7.3385, 7.3373, 7.3436, 7.3426, 7.3416, 7.3405, 7.3397, 7.3391, 7.3383, 7.337, 7.3358, 7.3346, 7.334, 7.3364, 7.3355, 7.3346, 7.3335, 7.3336, 7.3358, 7.3345, 7.3333, 7.3323, 7.3348, 7.337, 7.3359, 7.3351, 7.3339, 7.3326, 7.3317, 7.3312, 7.327, 7.3261, 7.3253, 7.3241, 7.3234, 7.3229, 7.3229, 7.3217, 7.3209, 7.3201, 7.319, 7.3185, 7.3175, 7.3171, 7.3162, 7.3158, 7.3181, 7.3171, 7.3161, 7.3152, 7.3141, 7.3129, 7.3124, 7.3114, 7.3103, 7.3095, 7.3099, 7.3087, 7.3114, 7.311, 7.3108, 7.3101, 7.3091, 7.3116, 7.3144, 7.3131, 7.3129, 7.312, 7.3084, 7.3114, 7.3103, 7.3187, 7.3184, 7.3205, 7.3199, 7.3226, 7.3223, 7.3214, 7.3241, 7.3263, 7.3262, 7.3282, 7.327, 7.3258, 7.3246, 7.3237, 7.3228, 7.3223, 7.3215, 7.3208, 7.3196, 7.3192, 7.3183, 7.3172, 7.3168, 7.3158, 7.3148, 7.3141, 7.3137, 7.3134, 7.3165, 7.3157, 7.3176, 7.3164, 7.3157, 7.3176, 7.3167, 7.3155, 7.3143, 7.3135, 7.3153, 7.3144, 7.3132, 7.3123, 7.3116, 7.3111, 7.3102, 7.3125, 7.3117, 7.3109, 7.3101, 7.3098, 7.3096, 7.3089, 7.3112, 7.3105, 7.3133, 7.316, 7.3154, 7.3145, 7.3138, 7.313, 7.3155, 7.3187, 7.3225, 7.3219, 7.3244, 7.3267, 7.3261, 7.3253, 7.3242, 7.3233, 7.3255, 7.3279, 7.3272, 7.3265, 7.326, 7.3254, 7.325, 7.3271, 7.3262, 7.3283, 7.3274, 7.3265, 7.3253, 7.3246, 7.3267, 7.326, 7.3256, 7.3251, 7.3255, 7.3243, 7.3236, 7.3225, 7.3214, 7.321, 7.3207, 7.3206, 7.3198, 7.3193, 7.319, 7.3184, 7.3175, 7.3169, 7.316, 7.3181, 7.3203, 7.3194, 7.3214, 7.3204, 7.3201, 7.3192, 7.3187, 7.3178, 7.3201, 7.3199, 7.3189, 7.3183, 7.3177, 7.3165, 7.3129, 7.3119, 7.3142, 7.3133, 7.3122, 7.3116, 7.311, 7.3106, 7.3095, 7.3115, 7.3109, 7.31, 7.3091, 7.3085, 7.3075, 7.3098, 7.3104, 7.3094, 7.3117, 7.3108, 7.3104, 7.3127, 7.312, 7.3119, 7.3109, 7.3128, 7.3118, 7.3117, 7.3135, 7.3127, 7.3148, 7.3141, 7.3159, 7.3151, 7.3171, 7.3162, 7.3153, 7.3144, 7.3163, 7.3159, 7.3149, 7.3139, 7.3133, 7.3124, 7.3117, 7.3138, 7.3133, 7.3122, 7.3115, 7.3114, 7.3105, 7.3128, 7.3118, 7.3112, 7.3109, 7.31, 7.3094, 7.3108, 7.3109, 7.3103, 7.3097, 7.3087, 7.3079, 7.307, 7.3091, 7.3113, 7.3105, 7.3128, 7.3117, 7.3109, 7.3133, 7.3126, 7.3123, 7.3116, 7.3107, 7.3132, 7.313, 7.3123, 7.3118, 7.3109, 7.3108, 7.3109, 7.3102, 7.3101, 7.3094, 7.3115, 7.3106, 7.3097, 7.3118, 7.3109, 7.3102, 7.3095, 7.3119, 7.3136, 7.3128, 7.3117, 7.3169, 7.3164, 7.3155, 7.3157, 7.3152, 7.3142, 7.3135, 7.3128, 7.3183, 7.3174, 7.3217, 7.3209, 7.32, 7.3223, 7.3217, 7.3212, 7.3207, 7.3229, 7.325, 7.324, 7.3231, 7.3225, 7.3244, 7.3235, 7.3233, 7.3225, 7.3247, 7.3239, 7.3239, 7.326, 7.325, 7.3242, 7.3237, 7.3231, 7.3223, 7.3214, 7.3208, 7.3228, 7.3221, 7.3213, 7.3204, 7.3195, 7.3186, 7.3177, 7.3198, 7.3193, 7.3186, 7.3179, 7.3172, 7.3165, 7.3159, 7.3153, 7.315, 7.3148, 7.3142, 7.3165, 7.3158, 7.3177, 7.3177, 7.3175, 7.3169, 7.3169, 7.3162, 7.3152, 7.3174, 7.3197, 7.3192, 7.3183, 7.3175, 7.3169, 7.3161, 7.313, 7.3148, 7.3139, 7.3134, 7.3127, 7.3122, 7.3145, 7.3135, 7.3132, 7.3153, 7.3149, 7.3152, 7.3144, 7.3133, 7.3126, 7.312, 7.3113, 7.3136, 7.3126, 7.312, 7.3141, 7.3139, 7.3139, 7.313, 7.3122, 7.3118, 7.3113, 7.3111, 7.3103, 7.3101, 7.312, 7.3139, 7.3133, 7.3126, 7.3117, 7.3107, 7.3099, 7.3092, 7.3096, 7.3086, 7.3136, 7.3129, 7.3154, 7.3162, 7.3187, 7.3179, 7.3173, 7.3166, 7.3157, 7.3148, 7.312, 7.3132, 7.3124, 7.3142, 7.3136, 7.3155, 7.3177, 7.3174, 7.3167, 7.3158, 7.3157, 7.3178, 7.3176, 7.3234, 7.3227, 7.3226, 7.3224, 7.3215, 7.3207, 7.3202, 7.3194, 7.3185, 7.3184, 7.3175, 7.3165, 7.3159, 7.3152, 7.3173, 7.317, 7.3165, 7.3157, 7.3149, 7.3143, 7.3134, 7.3132, 7.3122, 7.3113, 7.3131, 7.3151, 7.3142, 7.3134, 7.3128, 7.3118, 7.3136, 7.3154, 7.3122, 7.3116, 7.3108, 7.31, 7.3096, 7.3091, 7.3109, 7.3128, 7.3119, 7.3109, 7.3099, 7.3091, 7.3087, 7.3079, 7.3071, 7.3068, 7.3063, 7.3055, 7.3046, 7.3038, 7.3032, 7.3024, 7.3042, 7.3034, 7.3027, 7.302, 7.3015, 7.3007, 7.2998, 7.299, 7.2982, 7.2972, 7.2963, 7.2953, 7.2944, 7.2935, 7.2929, 7.2947, 7.2938, 7.2928, 7.2928, 7.2947, 7.2939, 7.2931, 7.2923, 7.2914, 7.291, 7.2879, 7.2871, 7.2863, 7.2854, 7.2849, 7.284, 7.2834, 7.2827, 7.2817, 7.2809, 7.28, 7.2793, 7.2785, 7.2775, 7.2772, 7.2792, 7.2788, 7.2783, 7.2775, 7.2767, 7.276, 7.2755, 7.2756, 7.2777, 7.277, 7.2764, 7.2755, 7.2748, 7.2741, 7.2734, 7.2728, 7.2726, 7.2721, 7.2717, 7.2709, 7.2703, 7.2697, 7.2693, 7.2711, 7.2729, 7.2724, 7.2717, 7.2709, 7.2729, 7.2723, 7.2739, 7.2713, 7.271, 7.2706, 7.2699, 7.2692, 7.2683, 7.2675, 7.2693, 7.2688, 7.2707, 7.2699, 7.2691, 7.2708, 7.27, 7.27, 7.2698, 7.2715, 7.2711, 7.2706, 7.2697, 7.2693, 7.2711, 7.2704, 7.2697, 7.2719, 7.2713, 7.273, 7.2746, 7.2744, 7.2739, 7.273, 7.2746, 7.2737, 7.2755, 7.2771, 7.2767, 7.2767, 7.276, 7.2751, 7.2749, 7.2742, 7.2741, 7.2732, 7.2731, 7.2728, 7.2727, 7.2721, 7.2723, 7.2765, 7.2766, 7.285, 7.2849, 7.2841, 7.2835, 7.2852, 7.2871, 7.2889, 7.2879, 7.2872, 7.2868, 7.286, 7.2854, 7.285, 7.2869, 7.2862, 7.2853, 7.2847, 7.2865, 7.2858, 7.2851, 7.2849, 7.2844, 7.2835, 7.2829, 7.2823, 7.282, 7.2847, 7.2866, 7.2858, 7.2849, 7.2865, 7.286, 7.2859, 7.2878, 7.2871, 7.2866, 7.2865, 7.2893, 7.2889, 7.2908, 7.2901, 7.2894, 7.2886, 7.2903, 7.2899, 7.2897, 7.2891, 7.289, 7.2883, 7.2877, 7.287, 7.2864, 7.2859, 7.2851, 7.2843, 7.2842, 7.2834, 7.2832, 7.2846, 7.2861, 7.2857, 7.2851, 7.2844, 7.2863, 7.2855, 7.2852, 7.2844, 7.2837, 7.2831, 7.2827, 7.2842, 7.2839, 7.2835, 7.2833, 7.2829, 7.282, 7.2836, 7.2828, 7.2822, 7.2816, 7.2812, 7.2829, 7.2845, 7.2836, 7.2829, 7.2822, 7.2815, 7.2807, 7.2799, 7.2771, 7.2762, 7.2754, 7.2772, 7.2788, 7.2785, 7.2779, 7.2771, 7.2765, 7.2779, 7.2773, 7.2765, 7.2782, 7.2774, 7.2771, 7.2765, 7.276, 7.2776, 7.277, 7.2786, 7.2778, 7.277, 7.2762, 7.2754, 7.2745, 7.2738, 7.2754, 7.2747, 7.274, 7.2758, 7.2749, 7.2744, 7.2735, 7.2726, 7.2742, 7.2738, 7.2801, 7.282, 7.2838, 7.283, 7.2846, 7.2838, 7.2834, 7.2828, 7.2873, 7.2896, 7.2893, 7.2914, 7.2907, 7.2899, 7.294, 7.2943, 7.2937, 7.2929, 7.2925, 7.2919, 7.2911, 7.2904, 7.29, 7.2895, 7.2891, 7.2885, 7.2877, 7.287, 7.2889, 7.2882, 7.2874, 7.2867, 7.2866, 7.288, 7.288, 7.2878, 7.2921, 7.2936, 7.2934, 7.296, 7.2977, 7.2971, 7.2989, 7.2989, 7.2983, 7.2978, 7.2974, 7.2991, 7.2983, 7.3001, 7.2999, 7.2995, 7.2994, 7.3009, 7.3023, 7.3016, 7.3009, 7.3027, 7.3021, 7.3041, 7.3034, 7.3053, 7.3046, 7.3045, 7.3061, 7.3053, 7.3025, 7.3018, 7.3033, 7.3026, 7.3021, 7.3016, 7.3016, 7.3018, 7.3015, 7.301, 7.3059, 7.3051, 7.3046, 7.3038, 7.3034, 7.3031, 7.3024, 7.3038, 7.3033, 7.3025, 7.3019, 7.3011, 7.3033, 7.3049, 7.3044, 7.3062, 7.3057, 7.305, 7.3021, 7.3013, 7.3007, 7.3001, 7.2994, 7.3008, 7.3005, 7.2998, 7.2992, 7.2988, 7.298, 7.2973, 7.2966, 7.296, 7.2954, 7.2949, 7.2941, 7.2956, 7.2953, 7.2945, 7.2939, 7.2955, 7.2948, 7.2942, 7.2945, 7.2939, 7.2933, 7.293, 7.2924, 7.2926, 7.295, 7.2966, 7.2961, 7.2956, 7.2948, 7.2942, 7.2934, 7.2929, 7.2925, 7.2918, 7.2933, 7.2949, 7.2946, 7.294, 7.2934, 7.295, 7.2966, 7.2962, 7.2955, 7.295, 7.2945, 7.2945, 7.2937, 7.2973, 7.2966, 7.2982, 7.2974, 7.3031, 7.3027, 7.3023, 7.3015, 7.3007, 7.3022, 7.302, 7.3035, 7.3032, 7.3029, 7.3044, 7.3037, 7.3032, 7.3027, 7.3023, 7.3016, 7.3013, 7.3005, 7.3001, 7.3002, 7.2996, 7.2992, 7.2989, 7.2982, 7.2975, 7.2967, 7.2967, 7.296, 7.2953, 7.2948, 7.2948, 7.2941, 7.2934, 7.2957, 7.2956, 7.2976, 7.2998, 7.3014, 7.3033, 7.3025, 7.3018, 7.3057, 7.3055, 7.305, 7.3043, 7.3036, 7.3035, 7.3027, 7.304, 7.3034, 7.3027, 7.3023, 7.3021, 7.3014, 7.3032, 7.3026, 7.3019, 7.3035, 7.3029, 7.3042, 7.3036, 7.3037, 7.303, 7.3023, 7.3018, 7.301, 7.3003, 7.2997, 7.2989, 7.2982, 7.2975, 7.2989, 7.2981, 7.2976, 7.2971, 7.2966, 7.2959, 7.2951, 7.2951, 7.2945, 7.2961, 7.2958, 7.2952, 7.2968, 7.2967, 7.2962, 7.2958, 7.2956, 7.2966, 7.2981, 7.2978, 7.2971, 7.2964, 7.2957, 7.2953, 7.2993, 7.2986, 7.2982, 7.2974, 7.2967, 7.2985, 7.3002, 7.2997, 7.299, 7.2985, 7.2978, 7.2994, 7.3024, 7.302, 7.3037, 7.3031, 7.3027, 7.3027, 7.302, 7.3015, 7.3008, 7.3023, 7.3016, 7.301, 7.3004, 7.2978, 7.2971, 7.2965, 7.2941, 7.2934, 7.2928, 7.2925, 7.2924, 7.2918, 7.2913, 7.2913, 7.2905, 7.2897, 7.2933, 7.2932, 7.2926, 7.2942, 7.2935, 7.2932, 7.2925, 7.2921, 7.2913, 7.2908, 7.2903, 7.2896, 7.2909, 7.2905, 7.2902, 7.2894, 7.2888, 7.2864, 7.2878, 7.2873, 7.2888, 7.2901, 7.2914, 7.2906, 7.2899, 7.2896, 7.2982, 7.2996, 7.2989, 7.3003, 7.2996, 7.2989, 7.2983, 7.2996, 7.2993, 7.3016, 7.3031, 7.3027, 7.3023, 7.3016, 7.3013, 7.3007, 7.3002, 7.2996, 7.2995, 7.299, 7.2985, 7.298, 7.2974, 7.2989, 7.2985, 7.2978, 7.2953, 7.2948, 7.2942, 7.2943, 7.2939, 7.2935, 7.2929, 7.2921, 7.2914, 7.291, 7.2904, 7.29, 7.2898, 7.2892, 7.2868, 7.2881, 7.2883, 7.2876, 7.2869, 7.2848, 7.2841, 7.2849, 7.2844, 7.2838, 7.2853, 7.2853, 7.2848, 7.2842, 7.2839, 7.2838, 7.2835, 7.2829, 7.2847, 7.2842, 7.2858, 7.2875, 7.2872, 7.2866, 7.2863, 7.2856, 7.2981, 7.2978, 7.2972, 7.2964, 7.2959, 7.2951, 7.2944, 7.2936, 7.2929, 7.2924, 7.2942, 7.2935, 7.2932, 7.2928, 7.2921, 7.2916, 7.291, 7.2904, 7.2898, 7.2911, 7.2907, 7.2903, 7.2917, 7.291, 7.2903, 7.2898, 7.2891, 7.2884, 7.2884, 7.2899, 7.2896, 7.2891, 7.2887, 7.288, 7.2875, 7.287, 7.2867, 7.287, 7.2865, 7.2863, 7.2858, 7.2853, 7.2853, 7.2848, 7.2843, 7.2956, 7.297, 7.2965, 7.296, 7.2956, 7.296, 7.2956, 7.2951, 7.2966, 7.296, 7.2955, 7.295, 7.2947, 7.2963, 7.2957, 7.2951, 7.2947, 7.2963, 7.2977, 7.2971, 7.2967, 7.296, 7.2976, 7.2973, 7.2966, 7.2981, 7.2997, 7.2989, 7.2982, 7.2982, 7.2976, 7.297, 7.2966, 7.2963, 7.2956, 7.2969, 7.2963, 7.2956, 7.2951, 7.2945, 7.2923, 7.2917, 7.2911, 7.2948, 7.2962, 7.2957, 7.2972, 7.2968, 7.2961, 7.2955, 7.2949, 7.2943, 7.2937, 7.293, 7.2943, 7.2938, 7.2952, 7.2945, 7.2938, 7.2935, 7.2928, 7.2925, 7.2918, 7.2916, 7.2933, 7.2929, 7.294, 7.2955, 7.295, 7.2946, 7.2939, 7.2933, 7.2926, 7.2919, 7.2915, 7.293, 7.2936, 7.2933, 7.2928, 7.2922, 7.2916, 7.291, 7.2903, 7.29, 7.2914, 7.2908, 7.2903, 7.2896, 7.2889, 7.2886, 7.2882, 7.2896, 7.2889, 7.2887, 7.2882, 7.2877, 7.289, 7.2884, 7.2879, 7.2891, 7.2903, 7.2916, 7.291, 7.2904, 7.2937, 7.2932, 7.2927, 7.2921, 7.2934, 7.2967, 7.2961, 7.2956, 7.295, 7.2944, 7.2957, 7.2952, 7.2945, 7.2939, 7.2938, 7.2936, 7.2951, 7.2963, 7.2961, 7.2975, 7.2976, 7.297, 7.2966, 7.2959, 7.2953, 7.2949, 7.2947, 7.2941, 7.294, 7.2956, 7.295, 7.2946, 7.296, 7.3007, 7.3, 7.2995, 7.299, 7.2983, 7.298, 7.2973, 7.2987, 7.2981, 7.2994, 7.299, 7.2983, 7.2977, 7.2989, 7.3001, 7.2995, 7.2989, 7.2983, 7.2978, 7.2975, 7.2968, 7.2964, 7.2959, 7.2954, 7.2947, 7.294, 7.2934, 7.295, 7.2948, 7.2944, 7.2938, 7.2952, 7.2929, 7.2943, 7.2937, 7.2936, 7.295, 7.2944, 7.2938, 7.2935, 7.293, 7.2926, 7.2922, 7.2918, 7.2911, 7.2906, 7.2901, 7.2906, 7.2909, 7.2904, 7.2897, 7.2896, 7.2889, 7.2902, 7.29, 7.2896, 7.2908, 7.2907, 7.292, 7.2934, 7.2931, 7.2925, 7.2923, 7.2916, 7.2929, 7.2926, 7.2922, 7.2915, 7.291, 7.2923, 7.2918, 7.2914, 7.2908, 7.2903, 7.2897, 7.2891, 7.2918, 7.2913, 7.2911, 7.2905, 7.2898, 7.2893, 7.2887, 7.288, 7.2875, 7.2873, 7.2884, 7.2878, 7.2873, 7.2868, 7.2864, 7.2858, 7.2854, 7.2853, 7.285, 7.2851, 7.2852, 7.2846, 7.2839, 7.2833, 7.2846, 7.2919, 7.295, 7.2945, 7.2949, 7.2943, 7.2923, 7.2939, 7.2951, 7.2947, 7.3009, 7.3016, 7.3011, 7.3008, 7.3003, 7.3033, 7.3016, 7.301, 7.3022, 7.3063, 7.3058, 7.3056, 7.3051, 7.3048, 7.3047, 7.3044, 7.3041, 7.3035, 7.303, 7.3027, 7.3026, 7.3019, 7.3031, 7.3025, 7.3021, 7.3017, 7.3014, 7.3027, 7.302, 7.3033, 7.3027, 7.3027, 7.3021, 7.3035, 7.3033, 7.3027, 7.3021, 7.3021, 7.3015, 7.3012, 7.3009, 7.3005, 7.3003, 7.2998, 7.2992, 7.2993, 7.2987, 7.2982, 7.2976, 7.2988, 7.3, 7.2994, 7.2989, 7.2985, 7.2996, 7.2991, 7.2987, 7.2981, 7.2976, 7.2972, 7.2966, 7.296, 7.2955, 7.2951, 7.2947, 7.2945, 7.2939, 7.2936, 7.2932, 7.2928, 7.2921, 7.2914, 7.2925, 7.2919, 7.2914, 7.2908, 7.2903, 7.2916, 7.2929, 7.293, 7.2927, 7.2924, 7.2937, 7.2933, 7.2945, 7.2938, 7.2931, 7.2928, 7.2923, 7.2916, 7.2927, 7.2926, 7.2925, 7.3007, 7.3006, 7.3001, 7.2999, 7.2996, 7.3009, 7.3005, 7.3003, 7.3, 7.2995, 7.2989, 7.2984, 7.2978, 7.299, 7.2986, 7.2981, 7.2976, 7.297, 7.2966, 7.296, 7.2954, 7.2949, 7.2947, 7.2943, 7.2941, 7.2936, 7.2934, 7.2928, 7.2922, 7.2916, 7.2911, 7.2906, 7.2901, 7.2897, 7.2891, 7.2889, 7.2884, 7.2896, 7.2891, 7.2886, 7.2884, 7.2866, 7.286, 7.2881, 7.2881, 7.2894, 7.289, 7.2903, 7.2915, 7.2912, 7.2907, 7.2903, 7.2901, 7.2895, 7.2894, 7.2928, 7.2924, 7.2918, 7.2928, 7.2922, 7.2916, 7.2911, 7.2922, 7.2918, 7.2922, 7.2919, 7.2898, 7.291, 7.2904, 7.2902, 7.2897, 7.2891, 7.2885, 7.288, 7.2876, 7.2887, 7.2882, 7.2895, 7.289, 7.2884, 7.2878, 7.2874, 7.2871, 7.285, 7.2831, 7.281, 7.2808, 7.2802, 7.2798, 7.281, 7.282, 7.2832, 7.2844, 7.2839, 7.2836, 7.2832, 7.2827, 7.2821, 7.2817, 7.2814, 7.2812, 7.2806, 7.28, 7.2811, 7.2805, 7.2799, 7.2794, 7.279, 7.2785, 7.2781, 7.2775, 7.2769, 7.2764, 7.2758, 7.2755, 7.2751, 7.2745, 7.2743, 7.2755, 7.2751, 7.2746, 7.2744, 7.2739, 7.2734, 7.273, 7.2742, 7.274, 7.2736, 7.2718, 7.2715, 7.2729, 7.2739, 7.2751, 7.2748, 7.2761, 7.2773, 7.277, 7.2768, 7.2762, 7.2774, 7.2775, 7.2771, 7.2768, 7.2766, 7.2763, 7.2761, 7.2758, 7.2754, 7.275, 7.2744, 7.2738, 7.2749, 7.2748, 7.2743, 7.2754, 7.2751, 7.2745, 7.2757, 7.2754, 7.2748, 7.276, 7.2756, 7.2776, 7.2772, 7.2754, 7.2748, 7.2744, 7.2738, 7.2732, 7.2729, 7.2726, 7.2762, 7.2757, 7.2753, 7.2754, 7.275, 7.2745, 7.2742, 7.2738, 7.2734, 7.273, 7.274, 7.2734, 7.2749, 7.2745, 7.2755, 7.2751, 7.2747, 7.2743, 7.274, 7.2735, 7.2731, 7.2727, 7.2723, 7.2705, 7.2701, 7.2695, 7.2696, 7.2692, 7.2687, 7.2682, 7.2695, 7.269, 7.2702, 7.2697, 7.2694, 7.269, 7.2702, 7.2714, 7.271, 7.2705, 7.27, 7.2696, 7.2691, 7.2687, 7.2685, 7.268, 7.2674, 7.2672, 7.2667, 7.2678, 7.2676, 7.2683, 7.268, 7.2675, 7.267, 7.2682, 7.2694, 7.2691, 7.2703, 7.2698, 7.2699, 7.2696, 7.2693, 7.2692, 7.2688, 7.2687, 7.2684, 7.2678, 7.2672, 7.2668, 7.2663, 7.2659, 7.2655, 7.265, 7.2665, 7.2662, 7.2673, 7.2698, 7.2692, 7.2687, 7.2682, 7.2679, 7.269, 7.2685, 7.2694, 7.2691, 7.2685, 7.268, 7.2693, 7.2687, 7.2699, 7.2694, 7.2689, 7.2688, 7.2685, 7.2785, 7.2788, 7.2801, 7.2798, 7.2809, 7.2805, 7.28, 7.2798, 7.2797, 7.2798, 7.2793, 7.2788, 7.2784, 7.2779, 7.2774, 7.2788, 7.2801, 7.2798, 7.2793, 7.2791, 7.2787, 7.2781, 7.2776, 7.2788, 7.2784, 7.2781, 7.2775, 7.2769, 7.2768, 7.2768, 7.2765, 7.2778, 7.2773, 7.2772, 7.2767, 7.2765, 7.2841, 7.2836, 7.2847, 7.2842, 7.2839, 7.2835, 7.2833, 7.2828, 7.2839, 7.2834, 7.2829, 7.2823, 7.2822, 7.2821, 7.2819, 7.2815, 7.2812, 7.2806, 7.2802, 7.2796, 7.2808, 7.2804, 7.2803, 7.2815, 7.281, 7.2823, 7.2819, 7.2831, 7.2841, 7.2837, 7.2832, 7.2827, 7.2822, 7.2819, 7.2814, 7.2828, 7.2826, 7.2824, 7.282, 7.2816, 7.2812, 7.2808, 7.2803, 7.2799, 7.2801, 7.2799, 7.2794, 7.279, 7.2806, 7.2802, 7.2796, 7.2794, 7.279, 7.2786, 7.2784, 7.2798, 7.2795, 7.2806, 7.2808, 7.2803, 7.2798, 7.2796, 7.2792, 7.2787, 7.2786, 7.2782, 7.2811, 7.2807, 7.2804, 7.2805, 7.28, 7.2795, 7.279, 7.2802, 7.2797, 7.2796, 7.2792, 7.2787, 7.2799, 7.2795, 7.2794, 7.2789, 7.2786, 7.278, 7.2776, 7.2772, 7.2783, 7.2795, 7.2792, 7.2787, 7.2799, 7.2794, 7.282, 7.2819, 7.2831, 7.2844, 7.2841, 7.2839, 7.2834, 7.2829, 7.284, 7.2835, 7.2832, 7.2843, 7.284, 7.2834, 7.2831, 7.2826, 7.2821, 7.2818, 7.2813, 7.2811, 7.2806, 7.2801, 7.2802, 7.2797, 7.2793, 7.279, 7.2806, 7.2801, 7.28, 7.2795, 7.2791, 7.279, 7.2787, 7.2783, 7.2781, 7.2775, 7.277, 7.2765, 7.276, 7.2756, 7.2755, 7.2753, 7.2749, 7.2761, 7.2755, 7.2751, 7.2761, 7.2786, 7.2783, 7.2779, 7.2775, 7.2771, 7.2784, 7.2778, 7.2772, 7.2784, 7.2797, 7.2793, 7.2789, 7.2785, 7.2795, 7.2806, 7.2817, 7.2814, 7.2812, 7.2808, 7.2806, 7.2801, 7.2795, 7.2791, 7.2787, 7.2782, 7.2781, 7.2779, 7.2777, 7.276, 7.2742, 7.2753, 7.2752, 7.2749, 7.2745, 7.2741, 7.2752, 7.2748, 7.2761, 7.2755, 7.275, 7.2746, 7.274, 7.275, 7.2761, 7.2755, 7.2751, 7.2747, 7.2757, 7.2753, 7.2749, 7.2745, 7.2743, 7.2738, 7.2733, 7.2728, 7.2724, 7.2721, 7.2733, 7.2745, 7.2743, 7.2741, 7.2737, 7.2732, 7.2734, 7.2731, 7.2726, 7.2721, 7.2717, 7.2712, 7.2707, 7.2701, 7.2711, 7.2706, 7.2716, 7.2711, 7.2693, 7.2688, 7.2686, 7.2681, 7.2693, 7.2689, 7.2687, 7.2683, 7.2678, 7.2674, 7.2672, 7.2667, 7.2677, 7.2675, 7.2674, 7.2687, 7.2683, 7.268, 7.2679, 7.269, 7.2688, 7.2685, 7.268, 7.2675, 7.2671, 7.2666, 7.2663, 7.2662, 7.2659, 7.2669, 7.2664, 7.266, 7.2655, 7.2653, 7.2649, 7.2647, 7.2642, 7.2642, 7.2637, 7.2632, 7.2628, 7.2625, 7.2638, 7.2635, 7.2666, 7.2662, 7.2671, 7.2671, 7.2667, 7.2663, 7.2674, 7.267, 7.2681, 7.2692, 7.2703, 7.2698, 7.2693, 7.2705, 7.2702, 7.2699, 7.2697, 7.2692, 7.2703, 7.2699, 7.2694, 7.269, 7.2699, 7.2716, 7.2712, 7.2707, 7.2737, 7.2733, 7.2728, 7.2725, 7.2725, 7.2722, 7.2733, 7.2729, 7.2727, 7.2727, 7.2728, 7.2739, 7.2737, 7.2732, 7.2727, 7.2725, 7.272, 7.2715, 7.2715, 7.2735, 7.2735, 7.2731, 7.273, 7.2729, 7.2725, 7.2738, 7.2736, 7.2732, 7.2731, 7.273, 7.2726, 7.2724, 7.272, 7.2716, 7.2713, 7.2722, 7.272, 7.2716, 7.2711, 7.272, 7.2715, 7.2711, 7.2707, 7.2788, 7.2786, 7.2781, 7.2776, 7.2772, 7.2768, 7.2764, 7.276, 7.2755, 7.2752, 7.2747, 7.2756, 7.2751, 7.2746, 7.2741, 7.2738, 7.2733, 7.2728, 7.2738, 7.2737, 7.2747, 7.2742, 7.2737, 7.2735, 7.2733, 7.2731, 7.2728, 7.2726, 7.2722, 7.2731, 7.2728, 7.2723, 7.2721, 7.2715, 7.271, 7.2705, 7.2702, 7.2697, 7.2707, 7.2702, 7.2697, 7.2693, 7.2691, 7.2688, 7.2684, 7.268, 7.2676, 7.2671, 7.2668, 7.2664, 7.266, 7.2658, 7.2653, 7.265, 7.2645, 7.2641, 7.2638, 7.2635, 7.2633, 7.263, 7.2614, 7.2611, 7.2622, 7.2617, 7.2612, 7.2609, 7.2605, 7.26, 7.2612, 7.2607, 7.2602, 7.2597, 7.2592, 7.2602, 7.2599, 7.2611, 7.2608, 7.2605, 7.26, 7.2596, 7.2591, 7.2587, 7.2582, 7.2578, 7.2573, 7.2584, 7.2583, 7.2594, 7.2591, 7.2587, 7.2584, 7.2579, 7.259, 7.26, 7.2597, 7.2594, 7.2592, 7.2588, 7.2583, 7.2581, 7.2592, 7.2587, 7.2583, 7.2579, 7.2589, 7.2585, 7.2583, 7.2597, 7.2607, 7.2604, 7.2614, 7.2611, 7.2606, 7.2602, 7.2612, 7.2608, 7.2605, 7.2616, 7.2612, 7.2608, 7.2605, 7.26, 7.2597, 7.2607, 7.2603, 7.2599, 7.2595, 7.2591, 7.2586, 7.2581, 7.2576, 7.2575, 7.2571, 7.2566, 7.2565, 7.2564, 7.2559, 7.2555, 7.255, 7.2547, 7.2544, 7.2541, 7.2543, 7.2538, 7.2536, 7.2532, 7.253, 7.254, 7.2543, 7.254, 7.2549, 7.255, 7.2546, 7.2542, 7.2538, 7.2537, 7.2534, 7.2532, 7.2527, 7.2523, 7.2519, 7.2514, 7.2538, 7.2533, 7.2529, 7.2527, 7.2522, 7.2518, 7.2514, 7.2509, 7.2506, 7.2504, 7.2502, 7.2501, 7.2537, 7.2535, 7.253, 7.2528, 7.2525, 7.2521, 7.2517, 7.2512, 7.2509, 7.252, 7.2517, 7.2526, 7.2535, 7.2531, 7.2527, 7.2524, 7.2533, 7.2531, 7.2526, 7.2521, 7.2518, 7.2513, 7.2509, 7.2506, 7.2502, 7.2501, 7.2499, 7.2495, 7.2492, 7.2501, 7.2497, 7.2496, 7.2495, 7.2491, 7.2489, 7.2484, 7.248, 7.2475, 7.247, 7.2468, 7.2466, 7.2475, 7.2496, 7.2496, 7.2506, 7.2501, 7.2498, 7.2494, 7.2491, 7.2488, 7.2486, 7.2482, 7.2479, 7.249, 7.2499, 7.2521, 7.2517, 7.2528, 7.2525, 7.2522, 7.252, 7.2518, 7.2516, 7.2511, 7.2507, 7.2503, 7.2492, 7.2502, 7.25, 7.2499, 7.251, 7.2507, 7.2517, 7.2514, 7.2524, 7.2522, 7.2517, 7.2526, 7.2521, 7.2546, 7.2543, 7.254, 7.2536, 7.2547, 7.2542, 7.2553, 7.2561, 7.2571, 7.2568, 7.2564, 7.2562, 7.256, 7.2557, 7.2554, 7.2619, 7.2642, 7.2639, 7.2635, 7.2646, 7.2642, 7.2639, 7.2635, 7.263, 7.2629, 7.2633, 7.263, 7.2626, 7.2622, 7.262, 7.2616, 7.2613, 7.2611, 7.2608, 7.2603, 7.26, 7.2596, 7.2607, 7.2604, 7.2599, 7.2595, 7.2605, 7.2601, 7.2596, 7.2607, 7.2617, 7.2612, 7.2607, 7.2603, 7.2598, 7.2597, 7.2596, 7.2591, 7.2589, 7.2584, 7.2579, 7.2574, 7.2569, 7.2569, 7.2566, 7.2563, 7.2561, 7.2557, 7.2553, 7.255, 7.2546, 7.2542, 7.2528, 7.2514, 7.2514, 7.2509, 7.2506, 7.2505, 7.252, 7.2515, 7.2524, 7.2519, 7.2516, 7.2514, 7.251, 7.2532, 7.253, 7.2526, 7.2536, 7.2533, 7.253, 7.2528, 7.2524, 7.2525, 7.2523, 7.2534, 7.2531, 7.2526, 7.2522, 7.2521, 7.2519, 7.2515, 7.2524, 7.2521, 7.2517, 7.2513, 7.251, 7.252, 7.2515, 7.2499, 7.2496, 7.2493, 7.2488, 7.2511, 7.2507, 7.2503, 7.2503, 7.25, 7.2517, 7.2513, 7.2509, 7.2505, 7.2503, 7.2517, 7.2527, 7.2523, 7.2522, 7.2518, 7.2514, 7.2512, 7.2507, 7.2503, 7.2499, 7.2495, 7.2505, 7.2502, 7.2498, 7.2496, 7.2505, 7.2501, 7.251, 7.2508, 7.2504, 7.2503, 7.2512, 7.2512, 7.2496, 7.2485, 7.2481, 7.2477, 7.2473, 7.2468, 7.2464, 7.2473, 7.247, 7.2478, 7.2474, 7.2483, 7.2479, 7.2475, 7.246, 7.2457, 7.2466, 7.2475, 7.2474, 7.247, 7.2468, 7.2464, 7.246, 7.2456, 7.2452, 7.2462, 7.2446, 7.2431, 7.2427, 7.2424, 7.242, 7.242, 7.2406, 7.2391, 7.24, 7.2407, 7.2403, 7.2399, 7.2408, 7.2406, 7.2402, 7.2401, 7.241, 7.2408, 7.2419, 7.242, 7.2417, 7.2413, 7.2422, 7.2433, 7.243, 7.2427, 7.2424, 7.242, 7.243, 7.244, 7.2449, 7.2447, 7.2445, 7.2441, 7.2438, 7.2434, 7.2429, 7.2425, 7.2422, 7.2417, 7.2401, 7.241, 7.2408, 7.2419, 7.2415, 7.2412, 7.2421, 7.242, 7.2416, 7.2426, 7.2435, 7.243, 7.2425, 7.2423, 7.242, 7.2416, 7.2415, 7.2411, 7.2407, 7.2405, 7.239, 7.2386, 7.2381, 7.2368, 7.2364, 7.2361, 7.2356, 7.2352, 7.2348, 7.2346, 7.2343, 7.2338, 7.2336, 7.2332, 7.2329, 7.2337, 7.2348, 7.2346, 7.2345, 7.2354, 7.2419, 7.243, 7.2428, 7.2424, 7.2427, 7.2423, 7.2437, 7.2433, 7.243, 7.2427, 7.2452, 7.2448, 7.2443, 7.244, 7.2436, 7.2433, 7.2431, 7.2427, 7.2436, 7.2432, 7.243, 7.2427, 7.2423, 7.2432, 7.2429, 7.2427, 7.2425, 7.2434, 7.2431, 7.2427, 7.2425, 7.2425, 7.2426, 7.2423, 7.2432, 7.2428, 7.2428, 7.2424, 7.242, 7.2421, 7.2416, 7.2412, 7.242, 7.2417, 7.2405, 7.2404, 7.2401, 7.2397, 7.2393, 7.2389, 7.2385, 7.2383, 7.2382, 7.2405, 7.24, 7.2421, 7.2419, 7.2427, 7.2423, 7.242, 7.2416, 7.2413, 7.2409, 7.2408, 7.2404, 7.2413, 7.2408, 7.2404, 7.2412, 7.2408, 7.2403, 7.2399, 7.2409, 7.2406, 7.2403, 7.2399, 7.2396, 7.2392, 7.24, 7.241, 7.2418, 7.2416, 7.2413, 7.241, 7.2406, 7.2404, 7.2401, 7.241, 7.2397, 7.2393, 7.2392, 7.2389, 7.2397, 7.2395, 7.2391, 7.2386, 7.2384, 7.2383, 7.238, 7.2375, 7.2372, 7.2368, 7.2364, 7.2361, 7.2359, 7.2354, 7.235, 7.2359, 7.2355, 7.2353, 7.2348, 7.2344, 7.2352, 7.235, 7.24, 7.2398, 7.2394, 7.239, 7.24, 7.2396, 7.2392, 7.2388, 7.2384, 7.2392, 7.2388, 7.2389, 7.2385, 7.2383, 7.2383, 7.2382, 7.2378, 7.2376, 7.2372, 7.2371, 7.2372, 7.2382, 7.2432, 7.2443, 7.2454, 7.2451, 7.2448, 7.2445, 7.2441, 7.2438, 7.2435, 7.2432, 7.2428, 7.2424, 7.2421, 7.2417, 7.2416, 7.2414, 7.2411, 7.2418, 7.2415, 7.2413, 7.2411, 7.2421, 7.2418, 7.2414, 7.2411, 7.241, 7.2397, 7.2394, 7.2402, 7.2398, 7.2394, 7.2393, 7.2394, 7.2404, 7.24, 7.241, 7.2395, 7.2391, 7.2388, 7.2385, 7.2382, 7.2379, 7.2376, 7.2373, 7.2382, 7.2391, 7.2399, 7.2408, 7.2405, 7.2403, 7.2399, 7.2387, 7.2397, 7.2385, 7.2381, 7.2398, 7.2395, 7.2393, 7.2396, 7.2398, 7.2408, 7.2407, 7.2404, 7.2403, 7.2399, 7.2397, 7.2393, 7.2402, 7.24, 7.2398, 7.2394, 7.2391, 7.2387, 7.2385, 7.2394, 7.239, 7.2388, 7.2397, 7.2385, 7.2393, 7.239, 7.2399, 7.2408, 7.2405, 7.2401, 7.2398, 7.2394, 7.2391, 7.2387, 7.2383, 7.2392, 7.2401, 7.2399, 7.2408, 7.2407, 7.2405, 7.2403, 7.2399, 7.2398, 7.2398, 7.2383, 7.2379, 7.2387, 7.2395, 7.2391, 7.2387, 7.2386, 7.2382, 7.2389, 7.2386, 7.2384, 7.238, 7.2377, 7.2373, 7.2369, 7.2369, 7.2379, 7.2389, 7.2397, 7.2393, 7.239, 7.2386, 7.2385, 7.2381, 7.239, 7.2386, 7.2383, 7.2379, 7.2375, 7.2374, 7.2372, 7.2371, 7.2369, 7.2378, 7.2389, 7.2389, 7.2385, 7.2393, 7.2389, 7.2386, 7.2383, 7.2381, 7.2381, 7.2392, 7.2389, 7.2386, 7.2383, 7.238, 7.2377, 7.2376, 7.2377, 7.2377, 7.2376, 7.2385, 7.2382, 7.2391, 7.2387, 7.2397, 7.2395, 7.2391, 7.239, 7.2386, 7.2391, 7.2387, 7.2398, 7.2396, 7.2403, 7.2414, 7.2411, 7.2408, 7.2394, 7.2391, 7.2388, 7.2385, 7.2385, 7.2393, 7.239, 7.2377, 7.2365, 7.2364, 7.2362, 7.2358, 7.2372, 7.2369, 7.238, 7.2378, 7.2408, 7.2405, 7.2403, 7.2388, 7.2387, 7.2383, 7.2387, 7.241, 7.2407, 7.2417, 7.2406, 7.2405, 7.2401, 7.24, 7.2397, 7.2406, 7.2414, 7.2412, 7.2408, 7.2404, 7.24, 7.2399, 7.2408, 7.2418, 7.2414, 7.2421, 7.2418, 7.2416, 7.2415, 7.2412, 7.241, 7.2408, 7.2406, 7.2402, 7.24, 7.2398, 7.2407, 7.2404, 7.2402, 7.2398, 7.2395, 7.2391, 7.2377, 7.2373, 7.238, 7.2377, 7.2385, 7.2383, 7.2379, 7.2377, 7.2374, 7.237, 7.2367, 7.2377, 7.2374, 7.237, 7.237, 7.2368, 7.2366, 7.2365, 7.2365, 7.2374, 7.2371, 7.237, 7.2366, 7.2363, 7.236, 7.2357, 7.2353, 7.2351, 7.2362, 7.236, 7.2356, 7.2344, 7.2364, 7.2361, 7.2359, 7.2356, 7.2354, 7.2362, 7.236, 7.2358, 7.2367, 7.2366, 7.2366, 7.2363, 7.236, 7.2356, 7.2365, 7.2373, 7.237, 7.2369, 7.2368, 7.2365, 7.2361, 7.2359, 7.2357, 7.2365, 7.2361, 7.2369, 7.2366, 7.2376, 7.2372, 7.2359, 7.2345, 7.238, 7.2378, 7.2375, 7.2374, 7.2383, 7.2381, 7.2391, 7.24, 7.2398, 7.2406, 7.2404, 7.2402, 7.2398, 7.2394, 7.2392, 7.239, 7.239, 7.2387, 7.2397, 7.2394, 7.2391, 7.2389, 7.2375, 7.2374, 7.2371, 7.2358, 7.2355, 7.2353, 7.2352, 7.235, 7.2348, 7.2346, 7.2345, 7.2344, 7.2341, 7.234, 7.2339, 7.2336, 7.2323, 7.232, 7.2316, 7.2314, 7.2323, 7.2321, 7.2318, 7.2314, 7.2323, 7.233, 7.2326, 7.2323, 7.232, 7.2317, 7.2318, 7.2315, 7.2312, 7.231, 7.2309, 7.2316, 7.2324, 7.231, 7.2307, 7.2303, 7.2311, 7.2308, 7.2307, 7.2303, 7.23, 7.2308, 7.2306, 7.2293, 7.2289, 7.2285, 7.2281, 7.2278, 7.2277, 7.2275, 7.2276, 7.2272, 7.2263, 7.2272, 7.2275, 7.2274, 7.2272, 7.2271, 7.2279, 7.2276, 7.2274, 7.2272, 7.2268, 7.2266, 7.2275, 7.2271, 7.2268, 7.2268, 7.2266, 7.2264, 7.2272, 7.2259, 7.2255, 7.2264, 7.2261, 7.2258, 7.2244, 7.2241, 7.224, 7.2238, 7.225, 7.2248, 7.2246, 7.2243, 7.2242, 7.2239, 7.2237, 7.2234, 7.2242, 7.2239, 7.2229, 7.2249, 7.2257, 7.2255, 7.2263, 7.2271, 7.2269, 7.2267, 7.2264, 7.2265, 7.2264, 7.2262, 7.2258, 7.2266, 7.2274, 7.227, 7.2257, 7.2255, 7.2242, 7.2239, 7.2235, 7.2243, 7.2252, 7.2249, 7.2257, 7.2254, 7.2252, 7.2252, 7.2251, 7.2238, 7.2234, 7.2231, 7.223, 7.2228, 7.2225, 7.2232, 7.2228, 7.2231, 7.2229, 7.2228, 7.2227, 7.2223, 7.2229, 7.2227, 7.2228, 7.2225, 7.2234, 7.2231, 7.2228, 7.2254, 7.2243, 7.2257, 7.2268, 7.2265, 7.2267, 7.2291, 7.2292, 7.2305, 7.2307, 7.2322, 7.2319, 7.2348, 7.2355, 7.2352, 7.2349, 7.2357, 7.2353, 7.235, 7.2359, 7.2356, 7.2354, 7.2351, 7.2359, 7.2355, 7.2342, 7.234, 7.2337, 7.2333, 7.233, 7.2337, 7.2345, 7.2341, 7.2339, 7.2335, 7.2332, 7.2329, 7.2336, 7.2332, 7.233, 7.2327, 7.2323, 7.2321, 7.2318, 7.2315, 7.2313, 7.231, 7.2309, 7.2306, 7.2313, 7.231, 7.2306, 7.2303, 7.2299, 7.2296, 7.2295, 7.2292, 7.229, 7.2299, 7.2296, 7.2293, 7.2306, 7.2327, 7.2324, 7.2355, 7.2353, 7.2352, 7.2349, 7.2348, 7.2344, 7.2333, 7.2333, 7.2332, 7.2329, 7.2326, 7.2322, 7.2331, 7.2328, 7.2326, 7.2323, 7.233, 7.2328, 7.2324, 7.2321, 7.2329, 7.2326, 7.2323, 7.232, 7.2328, 7.2325, 7.2322, 7.2321, 7.2318, 7.2317, 7.2314, 7.2311, 7.231, 7.2311, 7.2309, 7.2306, 7.2303, 7.23, 7.2298, 7.2308, 7.2306, 7.2295, 7.2293, 7.2301, 7.2298, 7.2294, 7.2291, 7.229, 7.2278, 7.2275, 7.2273, 7.2281, 7.2277, 7.2273, 7.2272, 7.2268, 7.2255, 7.2251, 7.225, 7.2247, 7.2254, 7.2251, 7.2251, 7.2259, 7.2255, 7.2253, 7.2241, 7.2248, 7.225, 7.2247, 7.2234, 7.2231, 7.2238, 7.2238, 7.2236, 7.2233, 7.2231, 7.2251, 7.2251, 7.2276, 7.2273, 7.227, 7.2269, 7.2266, 7.2263, 7.226, 7.2257, 7.2256, 7.2253, 7.2252, 7.2248, 7.2244, 7.224, 7.224, 7.2238, 7.2234, 7.2233, 7.2231, 7.2229, 7.2227, 7.2223, 7.2221, 7.222, 7.2217, 7.2214, 7.2211, 7.2208, 7.2205, 7.2201, 7.2198, 7.2186, 7.2184, 7.2191, 7.2191, 7.2188, 7.2196, 7.2193, 7.2191, 7.2191, 7.219, 7.2189, 7.2185, 7.2182, 7.2179, 7.2187, 7.2183, 7.2181, 7.2179, 7.2191, 7.2187, 7.2184, 7.2192, 7.2188, 7.2186, 7.2183, 7.2179, 7.2184, 7.2192, 7.2188, 7.2185, 7.2183, 7.218, 7.2178, 7.2186, 7.2183, 7.2181, 7.2178, 7.2175, 7.2172, 7.2179, 7.2176, 7.2173, 7.217, 7.2168, 7.2175, 7.2172, 7.218, 7.2177, 7.2166, 7.2153, 7.2151, 7.2139, 7.2138, 7.2137, 7.2134, 7.2131, 7.2129, 7.2126, 7.2124, 7.2121, 7.2119, 7.2115, 7.2112, 7.212, 7.2117, 7.2114, 7.2111, 7.2122, 7.213, 7.2127, 7.2124, 7.2121, 7.213, 7.2128, 7.2125, 7.2123, 7.212, 7.2117, 7.2115, 7.2114, 7.2121, 7.2118, 7.2115, 7.2111, 7.2108, 7.2106, 7.2102, 7.2113, 7.211, 7.2109, 7.2107, 7.2104, 7.2102, 7.2102, 7.2099, 7.2096, 7.2094, 7.2102, 7.2103, 7.2101, 7.2099, 7.2097, 7.2093, 7.2091, 7.2088, 7.2086, 7.2082, 7.2078, 7.2085, 7.2083, 7.209, 7.2098, 7.2105, 7.2102, 7.21, 7.2099, 7.2096, 7.2092, 7.2089, 7.2086, 7.2083, 7.208, 7.2079, 7.2077, 7.2075, 7.2063, 7.2051, 7.2039, 7.2036, 7.2033, 7.2091, 7.2099, 7.2097, 7.2106, 7.2102, 7.2099, 7.2105, 7.2093, 7.2092, 7.2089, 7.2096, 7.2093, 7.2093, 7.2091, 7.2099, 7.2097, 7.2107, 7.2105, 7.2103, 7.2101, 7.2108, 7.2105, 7.2104, 7.2101, 7.21, 7.2097, 7.2104, 7.2102, 7.2099, 7.2096, 7.2104, 7.2101, 7.2108, 7.2105, 7.2103, 7.2111, 7.2108, 7.2117, 7.2114, 7.2102, 7.2102, 7.21, 7.2097, 7.2095, 7.2095, 7.2092, 7.2088, 7.2086, 7.2093, 7.209, 7.2087, 7.2075, 7.2072, 7.2079, 7.2087, 7.2083, 7.208, 7.2087, 7.2095, 7.2093, 7.2097, 7.2093, 7.2101, 7.2118, 7.2117, 7.2119, 7.2127, 7.2124, 7.2132, 7.2128, 7.2135, 7.2131, 7.2127, 7.2125, 7.2132, 7.2121, 7.2119, 7.2126, 7.2123, 7.2122, 7.2121, 7.2119, 7.2116, 7.2124, 7.2123, 7.212, 7.2117, 7.2114, 7.2112, 7.2109, 7.2106, 7.2113, 7.2111, 7.2109, 7.211, 7.2155, 7.2142, 7.2139, 7.2146, 7.2144, 7.2142, 7.2139, 7.2136, 7.2142, 7.2186, 7.2241, 7.2237, 7.2235, 7.2232, 7.2232, 7.2229, 7.2226, 7.2224, 7.2222, 7.2219, 7.2226, 7.2224, 7.2221, 7.2219, 7.2218, 7.2215, 7.2212, 7.2209, 7.2207, 7.2203, 7.2201, 7.2197, 7.2202, 7.2199, 7.2196, 7.2203, 7.22, 7.2196, 7.2202, 7.219, 7.2186, 7.2185, 7.2192, 7.2189, 7.2185, 7.2181, 7.2178, 7.2175, 7.2172, 7.217, 7.2167, 7.2174, 7.217, 7.2176, 7.2183, 7.2181, 7.2188, 7.2185, 7.2187, 7.2194, 7.2192, 7.2201, 7.2198, 7.2195, 7.2192, 7.2191, 7.2189, 7.2187, 7.2185, 7.2181, 7.2188, 7.2186, 7.2183, 7.218, 7.2188, 7.2185, 7.2183, 7.2181, 7.2187, 7.2184, 7.2182, 7.218, 7.2179, 7.2186, 7.2184, 7.2182, 7.2181, 7.2179, 7.2185, 7.2184, 7.2192, 7.2189, 7.2187, 7.2184, 7.2192, 7.22, 7.2198, 7.2195, 7.2184, 7.2181, 7.2188, 7.2185, 7.2183, 7.2181, 7.2178, 7.2176, 7.2183, 7.2171, 7.2178, 7.2178, 7.2175, 7.2173, 7.217, 7.2166, 7.2163, 7.217, 7.2167, 7.2167, 7.2156, 7.2153, 7.215, 7.2149, 7.2147, 7.2144, 7.2152, 7.2149, 7.2148, 7.2145, 7.2142, 7.2139, 7.2137, 7.2135, 7.2133, 7.2131, 7.2129, 7.2127, 7.2116, 7.2113, 7.211, 7.2109, 7.2107, 7.2104, 7.2101, 7.21, 7.2097, 7.2095, 7.2093, 7.2095, 7.2094, 7.2092, 7.2089, 7.2097, 7.2094, 7.2101, 7.2098, 7.2111, 7.211, 7.2107, 7.2105, 7.2102, 7.2101, 7.21, 7.2099, 7.2097, 7.2094, 7.2093, 7.209, 7.2088, 7.2086, 7.2082, 7.2089, 7.2095, 7.2092, 7.2101, 7.2099, 7.2096, 7.2104, 7.2102, 7.2099, 7.2087, 7.2104, 7.2102, 7.2099, 7.2104, 7.2115, 7.2112, 7.2114, 7.2122, 7.212, 7.2118, 7.2116, 7.2113, 7.212, 7.2109, 7.2107, 7.2104, 7.2101, 7.2098, 7.2095, 7.2093, 7.2081, 7.209, 7.209, 7.2087, 7.2094, 7.2102, 7.21, 7.2098, 7.2098, 7.2095, 7.2093, 7.2091, 7.2089, 7.2079, 7.2075, 7.2074, 7.2073, 7.2071, 7.2069, 7.2076, 7.2076, 7.2072, 7.2069, 7.2057, 7.2055, 7.2052, 7.2048, 7.2054, 7.2052, 7.2049, 7.2056, 7.2054, 7.205, 7.2079, 7.2076, 7.2074, 7.2073, 7.2061, 7.206, 7.2067, 7.2065, 7.2062, 7.2071, 7.2069, 7.2067, 7.2064, 7.2062, 7.2059, 7.2057, 7.2055, 7.2053, 7.2051, 7.2049, 7.2047, 7.2045, 7.2053, 7.2061, 7.2058, 7.2088, 7.2085, 7.2084, 7.2092, 7.2093, 7.2101, 7.2099, 7.2098, 7.2106, 7.2105, 7.2113, 7.2112, 7.2109, 7.2106, 7.2103, 7.2102, 7.2101, 7.2098, 7.2098, 7.2095, 7.2091, 7.2089, 7.2098, 7.2097, 7.2097, 7.2097, 7.2094, 7.2092, 7.209, 7.2089, 7.2079, 7.2086, 7.2075, 7.2082, 7.208, 7.2077, 7.2074, 7.2071, 7.2069, 7.2066, 7.2064, 7.2062, 7.2059, 7.2057, 7.2055, 7.2054, 7.205, 7.2058, 7.2055, 7.2052, 7.2049, 7.2046, 7.2043, 7.2041, 7.2049, 7.2047, 7.2047, 7.2048, 7.2045, 7.2046, 7.2042, 7.204, 7.2037, 7.2034, 7.2041, 7.2038, 7.2036, 7.2034, 7.2051, 7.2059, 7.2067, 7.2065, 7.2065, 7.2064, 7.2062, 7.206, 7.2057, 7.2055, 7.2063, 7.2063, 7.2061, 7.2069, 7.2066, 7.2065, 7.2063, 7.207, 7.2067, 7.2064, 7.2061, 7.2058, 7.2056, 7.2054, 7.2051, 7.2048, 7.2048, 7.2046, 7.2043, 7.2051, 7.2053, 7.2044, 7.2042, 7.2039, 7.2036, 7.2033, 7.2039, 7.2037, 7.2034, 7.2051, 7.2048, 7.2046, 7.2043, 7.2043, 7.2041, 7.204, 7.2038, 7.2037, 7.2047, 7.2055, 7.2062, 7.207, 7.2069, 7.2066, 7.2072, 7.207, 7.2067, 7.2056, 7.2053, 7.206, 7.2058, 7.2055, 7.2052, 7.2049, 7.2046, 7.2052, 7.2049, 7.2055, 7.2052, 7.205, 7.2046, 7.2062, 7.2061, 7.2068, 7.2066, 7.2073, 7.2071, 7.2078, 7.2077, 7.2074, 7.2071, 7.2067, 7.2066, 7.2073, 7.2071, 7.2069, 7.2076, 7.2075, 7.2074, 7.2071, 7.207, 7.2077, 7.2084, 7.2091, 7.2088, 7.2086, 7.2092, 7.2089, 7.2086, 7.2084, 7.2091, 7.209, 7.2089, 7.2089, 7.2096, 7.2095, 7.2106, 7.2122, 7.2129, 7.2129, 7.2127, 7.2124, 7.2121, 7.2119, 7.2141, 7.2139, 7.2137, 7.2134, 7.2131, 7.2139, 7.2137, 7.2136, 7.2133, 7.213, 7.2137, 7.2136, 7.2134, 7.2132, 7.2121, 7.2119, 7.212, 7.2116, 7.2113, 7.211, 7.2107, 7.2104, 7.2101, 7.2108, 7.2105, 7.2095, 7.2104, 7.2103, 7.2101, 7.21, 7.2097, 7.2094, 7.2093, 7.209, 7.2088, 7.2086, 7.2083, 7.2081, 7.2079, 7.2086, 7.2083, 7.208, 7.2077, 7.2074, 7.2072, 7.2069, 7.2085, 7.2091, 7.2095, 7.2092, 7.209, 7.2087, 7.2077, 7.2075, 7.2073, 7.207, 7.2077, 7.2074, 7.2072, 7.207, 7.2067, 7.2065, 7.2074, 7.2072, 7.207, 7.2078, 7.2076, 7.2074, 7.2101, 7.2099, 7.2097, 7.2095, 7.2093, 7.2119, 7.2117, 7.2124, 7.213, 7.2128, 7.2126, 7.2123, 7.212, 7.2117, 7.2114, 7.216, 7.2157, 7.2154, 7.2155, 7.2152, 7.2149, 7.2149, 7.2146, 7.2152, 7.2158, 7.2155, 7.2152, 7.215, 7.2147, 7.2144, 7.2141, 7.2151, 7.2148, 7.2145, 7.2142, 7.214, 7.214, 7.2174, 7.2202, 7.22, 7.2198, 7.2214, 7.2216, 7.2213, 7.222, 7.2219, 7.222, 7.2219, 7.2217, 7.2224, 7.223, 7.2237, 7.2244, 7.2251, 7.2249, 7.2255, 7.2254, 7.2253, 7.2251, 7.2249, 7.2247, 7.2244, 7.2243, 7.224, 7.2237, 7.2234, 7.2231, 7.2228, 7.2228, 7.2225, 7.2222, 7.2235, 7.2243, 7.224, 7.2237, 7.2237, 7.2244, 7.2241, 7.224, 7.2238, 7.2237, 7.2234, 7.2231, 7.2248, 7.2245, 7.2242, 7.224, 7.2237, 7.2236, 7.2243, 7.224, 7.2248, 7.2246, 7.2246, 7.2253, 7.225, 7.2258, 7.2256, 7.2265, 7.2264, 7.2273, 7.2271, 7.2268, 7.2268, 7.2266, 7.2263, 7.2263, 7.2262, 7.2262, 7.226, 7.2268, 7.2299, 7.2297, 7.2304, 7.2302, 7.23, 7.2298, 7.2296, 7.2293, 7.229, 7.2288, 7.2306, 7.2306, 7.2313, 7.2311, 7.2319, 7.2318, 7.2316, 7.2317, 7.2315, 7.2312, 7.231, 7.2318, 7.2316, 7.2314, 7.2313, 7.2321, 7.2319, 7.2317, 7.2315, 7.2304, 7.2312, 7.231, 7.2308, 7.2307, 7.2337, 7.2336, 7.2343, 7.2351, 7.2359, 7.2357, 7.2358, 7.2355, 7.2352, 7.2359, 7.2367, 7.2366, 7.2363, 7.2393, 7.2392, 7.2391, 7.239, 7.2387, 7.2394, 7.241, 7.2408, 7.2405, 7.2404, 7.2402, 7.2412, 7.2401, 7.2399, 7.2397, 7.2394, 7.2404, 7.2401, 7.2398, 7.2395, 7.2393, 7.2391, 7.239, 7.2397, 7.2394, 7.2391, 7.2389, 7.2387, 7.2386, 7.2384, 7.2381, 7.2378, 7.2385, 7.2384, 7.239, 7.2388, 7.2386, 7.2384, 7.2381, 7.2379, 7.2378, 7.2377, 7.2374, 7.2371, 7.2377, 7.2367, 7.2365, 7.2363, 7.237, 7.2369, 7.2367, 7.2365, 7.2363, 7.236, 7.2359, 7.2366, 7.2364, 7.2361, 7.2358, 7.2348, 7.2339, 7.2329, 7.2327, 7.2325, 7.2323, 7.2322, 7.2319, 7.2316, 7.2322, 7.2321, 7.2328, 7.2326, 7.2326, 7.2323, 7.2313, 7.2312, 7.2309, 7.2325, 7.2336, 7.2338, 7.2336, 7.2333, 7.2331, 7.2358, 7.2357, 7.2356, 7.2358, 7.2358, 7.2357, 7.2367, 7.2365, 7.2371, 7.2369, 7.2366, 7.2372, 7.2372, 7.2369, 7.2366, 7.2372, 7.2378, 7.2376, 7.2438, 7.2435, 7.2433, 7.243, 7.2427, 7.2425, 7.2425, 7.2424, 7.2421, 7.2419, 7.2417, 7.2415, 7.2421, 7.2419, 7.2418, 7.2417, 7.2414, 7.2414, 7.2411, 7.241, 7.2407, 7.2405, 7.2402, 7.2408, 7.2415, 7.2415, 7.2414, 7.2405, 7.2404, 7.2401, 7.2399, 7.2398, 7.2405, 7.2403, 7.241, 7.2408, 7.2407, 7.2404, 7.2411, 7.2409, 7.2398, 7.2405, 7.2402, 7.2399, 7.2396, 7.2405, 7.2404, 7.2401, 7.2407, 7.2407, 7.2427, 7.2424, 7.2422, 7.2419, 7.2416, 7.2414, 7.2413, 7.2403, 7.2392, 7.2382, 7.2372, 7.2362, 7.2361, 7.2362, 7.2356, 7.2353, 7.235, 7.2347, 7.2345, 7.2363, 7.236, 7.236, 7.2358, 7.2355, 7.2361, 7.2359, 7.2362, 7.2361, 7.236, 7.2358, 7.2357, 7.2354, 7.236, 7.2359, 7.2366, 7.2365, 7.2364, 7.2362, 7.237, 7.2368, 7.2367, 7.2364, 7.2362, 7.236, 7.2357, 7.2355, 7.2353, 7.2352, 7.2359, 7.2356, 7.2358, 7.2365, 7.2363, 7.236, 7.2359, 7.2359, 7.2372, 7.2369, 7.2375, 7.2381, 7.238, 7.2384, 7.2383, 7.2381, 7.2397, 7.2398, 7.2395, 7.2393, 7.2393, 7.239, 7.2388, 7.2395, 7.2402, 7.2399, 7.2389, 7.2387, 7.2385, 7.2384, 7.2382, 7.2381, 7.2372, 7.2371, 7.2369, 7.2368, 7.2367, 7.2366, 7.2367, 7.2365, 7.2371, 7.2369, 7.2366, 7.2372, 7.2378, 7.2376, 7.2382, 7.2389, 7.2386, 7.2384, 7.239, 7.2388, 7.2393, 7.2399, 7.2415, 7.2412, 7.2419, 7.2417, 7.2431, 7.243, 7.2436, 7.2443, 7.244, 7.2438, 7.2445, 7.2443, 7.244, 7.2438, 7.2436, 7.2433, 7.2431, 7.2428, 7.2426, 7.2415, 7.2412, 7.2409, 7.2407, 7.2405, 7.2402, 7.2392, 7.2393, 7.2399, 7.2406, 7.2412, 7.241, 7.2408, 7.2397, 7.2394, 7.2391, 7.24, 7.2397, 7.2395, 7.2392, 7.2392, 7.2398, 7.2395, 7.2393, 7.2392, 7.239, 7.2388, 7.2385, 7.2382, 7.2379, 7.2386, 7.2391, 7.2397, 7.2404, 7.2402, 7.2391, 7.2382, 7.2388, 7.2386, 7.2384, 7.2382, 7.2379, 7.2377, 7.2367, 7.2357, 7.2348, 7.2345, 7.2335, 7.2333, 7.2339, 7.2337, 7.2352, 7.2351, 7.2349, 7.2346, 7.2352, 7.2349, 7.2365, 7.2364, 7.2371, 7.2368, 7.2369, 7.2367, 7.2365, 7.2381, 7.2379, 7.2407, 7.2406, 7.2405, 7.2403, 7.24, 7.2416, 7.2424, 7.2432, 7.2439, 7.2436, 7.2433, 7.243, 7.2419, 7.2418, 7.2415, 7.2412, 7.2411, 7.2401, 7.2399, 7.2397, 7.2403, 7.2402, 7.2399, 7.2425, 7.2422, 7.242, 7.2419, 7.2417, 7.2414, 7.2413, 7.241, 7.2408, 7.2405, 7.2403, 7.2402, 7.2409, 7.2406, 7.2403, 7.2408, 7.2405, 7.2402, 7.241, 7.2408, 7.2406, 7.2395, 7.2392, 7.2393, 7.2415, 7.2413, 7.2407, 7.2413, 7.2412, 7.2418, 7.2417, 7.2415, 7.2412, 7.241, 7.2416, 7.2416, 7.2423, 7.2431, 7.2429, 7.2428, 7.2437, 7.2434, 7.2425, 7.2415, 7.2412, 7.2411, 7.241, 7.2407, 7.2405, 7.2403, 7.2393, 7.2391, 7.2389, 7.2388, 7.2381, 7.2387, 7.2384, 7.2383, 7.2389, 7.2396, 7.2396, 7.2395, 7.2392, 7.2391, 7.239, 7.2388, 7.2387, 7.2384, 7.2375, 7.2373, 7.238, 7.2378, 7.2376, 7.2375, 7.2373, 7.2395, 7.2393, 7.239, 7.2388, 7.2386, 7.2384, 7.2382, 7.2381, 7.238, 7.2378, 7.2375, 7.2375, 7.2373, 7.2371, 7.2369, 7.2367, 7.2367, 7.2365, 7.237, 7.2369, 7.2367, 7.2374, 7.2372, 7.237, 7.2367, 7.2365, 7.2362, 7.2359, 7.2356, 7.2355, 7.2352, 7.2351, 7.2348, 7.2346, 7.2345, 7.2344, 7.2342, 7.234, 7.2337, 7.2336, 7.2335, 7.2334, 7.2335, 7.2333, 7.2331, 7.2337, 7.2336, 7.2361, 7.2358, 7.2355, 7.2359, 7.2357, 7.2373, 7.237, 7.2367, 7.2366, 7.2364, 7.2383, 7.238, 7.2389, 7.2391, 7.2391, 7.2388, 7.2385, 7.2384, 7.2391, 7.2393, 7.2391, 7.2389, 7.2388, 7.2396, 7.2394, 7.2394, 7.2401, 7.24, 7.2397, 7.2394, 7.2391, 7.2389, 7.2387, 7.2394, 7.2392, 7.2397, 7.2394, 7.2393, 7.2398, 7.2396, 7.2394, 7.2392, 7.2398, 7.2398, 7.2397, 7.2398, 7.2409, 7.2406, 7.2404, 7.2402, 7.2401, 7.2399, 7.2398, 7.2397, 7.2396, 7.2396, 7.2402, 7.2399, 7.2396, 7.2403, 7.2401, 7.24, 7.2399, 7.2405, 7.2404, 7.2401, 7.24, 7.2398, 7.2397, 7.2394, 7.2392, 7.2389, 7.2388, 7.2385, 7.2382, 7.238, 7.2378, 7.2384, 7.2381, 7.2378, 7.2376, 7.2374, 7.2371, 7.2377, 7.2384, 7.239, 7.2387, 7.2386, 7.2392, 7.2389, 7.2387, 7.2387, 7.2384, 7.2383, 7.2389, 7.2387, 7.2384, 7.2382, 7.2379, 7.2377, 7.2376, 7.2375, 7.2373, 7.2371, 7.237, 7.2376, 7.2374, 7.2371, 7.2368, 7.2366, 7.2363, 7.2361, 7.2368, 7.2366, 7.2364, 7.2371, 7.2369, 7.2368, 7.2367, 7.2372, 7.2377, 7.2375, 7.2381, 7.2379, 7.2376, 7.2373, 7.2372, 7.2378, 7.2375, 7.2372, 7.2369, 7.2367, 7.2364, 7.2361, 7.2359, 7.2356, 7.2353, 7.2351, 7.2348, 7.2347, 7.2345, 7.2345, 7.2343, 7.2341, 7.2339, 7.2345, 7.2342, 7.234, 7.2338, 7.2336, 7.2334, 7.234, 7.2339, 7.2345, 7.2343, 7.2349, 7.2348, 7.2345, 7.2343, 7.2342, 7.2339, 7.2345, 7.2343, 7.235, 7.2349, 7.2347, 7.2344, 7.2343, 7.2349, 7.2355, 7.2352, 7.2358, 7.2356, 7.2362, 7.236, 7.2358, 7.2371, 7.2372, 7.237, 7.2368, 7.2368, 7.2367, 7.2373, 7.237, 7.2368, 7.2367, 7.2365, 7.2363, 7.2361, 7.2367, 7.2365, 7.2372, 7.2369, 7.2395, 7.2396, 7.2411, 7.2413, 7.2414, 7.242, 7.2428, 7.2427, 7.2442, 7.2441, 7.2432, 7.2431, 7.2446, 7.2444, 7.245, 7.2456, 7.2453, 7.2459, 7.2458, 7.2455, 7.2452, 7.2458, 7.2463, 7.2469, 7.2468, 7.2465, 7.2463, 7.246, 7.2457, 7.2457, 7.2455, 7.2452, 7.2449, 7.2446, 7.2444, 7.2442, 7.2441, 7.2447, 7.2446, 7.2443, 7.2441, 7.2439, 7.2437, 7.2442, 7.2447, 7.2445, 7.2443, 7.244, 7.2437, 7.2442, 7.2448, 7.2446, 7.2444, 7.2442, 7.2448, 7.2453, 7.245, 7.2497, 7.2494, 7.2492, 7.249, 7.2489, 7.2494, 7.2494, 7.2492, 7.249, 7.2495, 7.2492, 7.249, 7.2487, 7.2485, 7.2482, 7.248, 7.2479, 7.2484, 7.2483, 7.2488, 7.2487, 7.2493, 7.2507, 7.2505, 7.2511, 7.2508, 7.2506, 7.2503, 7.2501, 7.2501, 7.25, 7.2498, 7.2503, 7.2509, 7.2514, 7.2529, 7.2527, 7.2524, 7.2538, 7.2544, 7.2541, 7.2532, 7.2531, 7.2537, 7.2539, 7.2537, 7.2536, 7.2554, 7.256, 7.2566, 7.2563, 7.2577, 7.2575, 7.259, 7.2582, 7.258, 7.2596, 7.2593, 7.2591, 7.2588, 7.2586, 7.2583, 7.2582, 7.2588, 7.2585, 7.2583, 7.258, 7.2578, 7.2576, 7.2578, 7.2584, 7.2582, 7.2589, 7.2587, 7.2595, 7.2585, 7.2584, 7.2593, 7.2592, 7.2584, 7.2589, 7.2594, 7.26, 7.2597, 7.2589, 7.2598, 7.2604, 7.2601, 7.26, 7.2598, 7.2605, 7.2604, 7.2602, 7.26, 7.2606, 7.2612, 7.2609, 7.2616, 7.2613, 7.2619, 7.2617, 7.2617, 7.2614, 7.2612, 7.2609, 7.2607, 7.2604, 7.261, 7.2608, 7.2631, 7.2629, 7.2628, 7.2635, 7.2634, 7.264, 7.2646, 7.2644, 7.2643, 7.2665, 7.2664, 7.2662, 7.2661, 7.2667, 7.2674, 7.2672, 7.2679, 7.2677, 7.2676, 7.2673, 7.2671, 7.2669, 7.2668, 7.2667, 7.2666, 7.2672, 7.2672, 7.2669, 7.2675, 7.2674, 7.268, 7.2686, 7.2683, 7.2688, 7.2686, 7.2683, 7.2682, 7.2681, 7.2679, 7.2677, 7.2675, 7.2672, 7.267, 7.2676, 7.2673, 7.267, 7.2667, 7.2665, 7.2662, 7.2667, 7.2667, 7.2665, 7.2662, 7.266, 7.2666, 7.2664, 7.2669, 7.2668, 7.2666, 7.2671, 7.2668, 7.2666, 7.2664, 7.2661, 7.266, 7.2666, 7.2664, 7.2662, 7.2668, 7.2673, 7.2671, 7.267, 7.2668, 7.2674, 7.2673, 7.2679, 7.2676, 7.2682, 7.2681, 7.2678, 7.2677, 7.2676, 7.2673, 7.2678, 7.2676, 7.2675, 7.2674, 7.2674, 7.268, 7.2677, 7.2683, 7.2682, 7.2682, 7.268, 7.2679, 7.2684, 7.2682, 7.2687, 7.2684, 7.2682, 7.268, 7.2685, 7.2683, 7.268, 7.2678, 7.2676, 7.2674, 7.2673, 7.2679, 7.2684, 7.2683, 7.2681, 7.2679, 7.2677, 7.2676, 7.2682, 7.2679, 7.2684, 7.2682, 7.2681, 7.2686, 7.2683, 7.268, 7.2685, 7.2684, 7.2681, 7.2679, 7.2687, 7.27, 7.2705, 7.2704, 7.2702, 7.2707, 7.2705, 7.2702, 7.27, 7.2713, 7.2711, 7.2713, 7.2711, 7.272, 7.2725, 7.2723, 7.2723, 7.2721, 7.2719, 7.2716, 7.2715, 7.2714, 7.2715, 7.2717, 7.2715, 7.2721], '192.168.122.116': [11.6343, 9.1549, 8.628, 7.8345, 8.7598, 8.3031, 7.9929, 7.715, 7.4677, 7.8351, 8.1835, 8.4537, 8.6738, 8.5203, 8.3057, 8.1233, 8.3219, 8.1574, 8.0207, 7.9092, 7.8341, 7.7384, 7.8675, 7.7738, 7.7307, 7.8603, 7.7828, 7.7078, 7.8235, 7.9222, 7.8722, 7.808, 7.7361, 7.8237, 7.7695, 7.7173, 7.7975, 7.7536, 7.8511, 7.7899, 7.7703, 7.754, 7.6972, 7.7744, 7.7201, 7.6738, 7.7459, 7.9257, 7.88, 7.8291, 7.7887, 7.7581, 7.7296, 7.7207, 7.6848, 7.6688, 7.6292, 7.5989, 7.5663, 7.5492, 7.5316, 7.4953, 7.4687, 7.4421, 7.3393, 7.3135, 7.2866, 7.2879, 7.2728, 7.2604, 7.1658, 7.2178, 7.2704, 7.2443, 7.2318, 7.2064, 7.1888, 7.1776, 7.1597, 7.0773, 7.1287, 7.1176, 7.1094, 7.0904, 7.0901, 7.0766, 7.1261, 7.1712, 7.1595, 7.1394, 7.1317, 7.1156, 7.1544, 7.1343, 7.1146, 7.1502, 7.136, 7.1178, 7.1183, 7.1011, 7.0961, 7.1055, 7.0913, 7.0746, 7.0617, 7.1011, 7.0933, 7.1291, 7.1148, 7.1089, 7.0974, 7.0912, 7.0783, 7.0753, 7.0736, 7.067, 7.0543, 7.0915, 7.0755, 7.0617, 7.092, 7.0892, 7.0778, 7.0675, 7.0594, 7.0531, 7.0445, 7.0748, 7.0665, 7.0611, 7.049, 7.0415, 7.0311, 7.0256, 7.0157, 7.0032, 7.0316, 7.0299, 7.0203, 7.0117, 7.0046, 6.9977, 6.9892, 6.9766, 6.9774, 6.9772, 7.0054, 6.997, 6.9914, 7.0195, 7.0169, 7.0449, 7.069, 7.0579, 7.0466, 7.0381, 7.031, 7.0202, 7.0144, 7.005, 7.0293, 7.0523, 7.0765, 7.0664, 7.0567, 7.0805, 7.1054, 7.0953, 7.0919, 7.1165, 7.1093, 7.1051, 7.0993, 7.0896, 7.0841, 7.0779, 7.0712, 7.0663, 7.0587, 7.0533, 7.1096, 7.1006, 7.0958, 7.0878, 7.0777, 7.0696, 7.061, 7.0524, 7.0452, 7.0387, 7.0307, 7.0802, 7.0715, 7.0627, 7.0532, 7.0569, 7.0518, 7.0722, 7.0911, 7.0876, 7.089, 7.0812, 7.0734, 7.0643, 7.0583, 7.0549, 7.0742, 7.072, 7.0718, 7.0672, 7.0646, 7.0593, 7.0532, 7.0471, 7.0426, 7.0634, 7.0618, 7.0591, 7.054, 7.0468, 7.0416, 7.0372, 7.0389, 7.0559, 7.0485, 7.0411, 7.0348, 7.0273, 7.0217, 7.0159, 7.034, 7.0307, 7.0279, 7.0445, 7.0455000000000005, 7.0387, 7.0364, 7.0314, 7.0284, 7.0255, 7.0232, 7.0183, 7.0335, 7.03, 7.0257, 7.0237, 7.0182, 7.0132, 7.0082, 6.9882, 7.0041, 7.0029, 6.9988, 6.9978, 6.9934, 6.9927, 6.9909, 6.9885, 7.0303, 7.0238, 7.0428, 7.0439, 7.0559, 7.0597, 7.0558, 7.0535, 7.0491, 7.0448, 7.0446, 7.0425, 7.0377, 7.0515, 7.0496, 7.0671, 7.0639, 7.0604, 7.0786, 7.074, 7.0696, 7.0653, 7.081, 7.0754, 7.0791, 7.080100000000001, 7.0771, 7.0739, 7.0689, 7.0645, 7.0591, 7.0549, 7.0677, 7.063, 7.0581, 7.0574, 7.0726, 7.0841, 7.0803, 7.093, 7.0912, 7.0873, 7.0832, 7.0957, 7.1107, 7.127, 7.1222, 7.1166, 7.1283, 7.1277, 7.122, 7.1194, 7.1177, 7.1309, 7.1419, 7.1365, 7.1325, 7.1302, 7.1428, 7.1391, 7.1342, 7.1301, 7.1266, 7.125, 7.1233, 7.1188, 7.1158, 7.112, 7.1067, 7.1052, 7.1001, 7.0952, 7.0933, 7.092, 7.0872, 7.0941, 7.0913, 7.0757, 7.0936, 7.108, 7.103, 7.0992, 7.0946, 7.0903, 7.0868, 7.09, 7.075, 7.0721, 7.069, 7.0661, 7.0554, 7.051, 7.068, 7.0655, 7.0667, 7.062, 7.0742, 7.0874, 7.0839, 7.0849, 7.0815, 7.0793, 7.0742, 7.0715, 7.0672, 7.0627, 7.0753, 7.074, 7.0694, 7.0648, 7.0624, 7.0576, 7.0676, 7.0757, 7.0712, 7.0678, 7.0644, 7.0623, 7.0589, 7.0693, 7.0661, 7.0757, 7.0856, 7.0809, 7.0787, 7.077, 7.0724, 7.0825, 7.0786, 7.0766, 7.0723, 7.0937, 7.091, 7.0884, 7.0877, 7.0838, 7.0812, 7.0792, 7.0746, 7.0733, 7.0709, 7.0682, 7.078, 7.088, 7.0869, 7.0996, 7.0952, 7.0913, 7.0875, 7.0965, 7.0947, 7.0923, 7.0885, 7.0848, 7.0944, 7.104, 7.1004, 7.11, 7.1139, 7.1113, 7.0977, 7.0942, 7.0911, 7.1071, 7.1038, 7.1141, 7.1108, 7.1338, 7.1295, 7.1397, 7.1358, 7.1317, 7.1275, 7.113, 7.1217, 7.1315, 7.1275, 7.1252, 7.1333, 7.1292, 7.1334, 7.1302, 7.1388, 7.1349, 7.1426, 7.1397, 7.1404, 7.1493, 7.145, 7.1415, 7.1376, 7.1339, 7.1298, 7.1272, 7.123, 7.1196, 7.117, 7.1041, 7.1009, 7.0977, 7.106, 7.1032, 7.1026, 7.111, 7.1093, 7.106, 7.107, 7.1059, 7.1026, 7.1036, 7.1011, 7.0997, 7.0963, 7.0927, 7.0889, 7.0864, 7.0833, 7.084300000000001, 7.0828, 7.0819, 7.0821, 7.0795, 7.0812, 7.0822, 7.0821, 7.0786, 7.0753, 7.0832, 7.0813, 7.0788, 7.0755, 7.0835, 7.0845, 7.0813, 7.0788, 7.0757, 7.0736, 7.0712, 7.0796, 7.0763, 7.0742, 7.0836, 7.093, 7.0947, 7.0943, 7.0912, 7.0912, 7.0881, 7.0856, 7.0823, 7.079, 7.0767, 7.0748, 7.0729, 7.0705, 7.0683, 7.0672, 7.0666, 7.0645, 7.0627, 7.0607, 7.0626, 7.0608, 7.0578, 7.066, 7.0651, 7.0629, 7.0622, 7.0606, 7.0617, 7.0611, 7.0587, 7.0673, 7.0663, 7.0632, 7.0619, 7.0617, 7.0597, 7.0609, 7.061, 7.0582, 7.0665, 7.0737, 7.0716, 7.0689, 7.067, 7.0641, 7.0639, 7.0712, 7.07, 7.0681, 7.0749, 7.0717, 7.07, 7.0677, 7.0653, 7.063, 7.064, 7.0616, 7.0595, 7.067, 7.0791, 7.0873, 7.0855, 7.0823, 7.0848, 7.085800000000001, 7.0837, 7.0806, 7.0783, 7.0761, 7.0767, 7.0751, 7.0744, 7.0755, 7.0725, 7.0723, 7.0719, 7.0689, 7.066, 7.0657, 7.0725, 7.0797, 7.0869, 7.0855, 7.0837, 7.083, 7.0828, 7.0805, 7.0781, 7.0749, 7.0815, 7.0805, 7.0871, 7.086, 7.0829, 7.0811, 7.0782, 7.0861, 7.0832, 7.0815, 7.083, 7.0812, 7.0804, 7.0775, 7.0756, 7.0741, 7.0716, 7.0783, 7.0754, 7.0736, 7.0712, 7.0697, 7.0685, 7.069500000000001, 7.0667, 7.0672, 7.0648, 7.062, 7.0598, 7.0574, 7.0581, 7.0563, 7.0471, 7.0447, 7.0429, 7.0353, 7.0418, 7.0485, 7.0461, 7.0471, 7.0465, 7.0475, 7.0553, 7.0622, 7.0608, 7.0593, 7.0581, 7.0565, 7.0575, 7.0733, 7.0722, 7.0713, 7.0686, 7.0745, 7.0734, 7.0708, 7.0702, 7.0683, 7.0673, 7.0731, 7.0705, 7.0684, 7.0658, 7.0717, 7.0774, 7.0747, 7.0801, 7.078, 7.0754, 7.0772, 7.0764, 7.0738, 7.0719, 7.0698, 7.076, 7.0738, 7.0722, 7.0713, 7.0719, 7.0699, 7.0677, 7.0655, 7.0637, 7.0619, 7.0602, 7.0669, 7.0644, 7.0703, 7.0761, 7.0823, 7.0803, 7.0795, 7.080500000000001, 7.081500000000001, 7.0872, 7.0847, 7.0842, 7.0845, 7.0824, 7.0802, 7.0783, 7.0757, 7.0734, 7.0724, 7.0708, 7.071, 7.0702, 7.0692, 7.0669, 7.0651, 7.064, 7.0618, 7.0855, 7.0907, 7.0892, 7.0944, 7.0938, 7.0937, 7.0934, 7.0952, 7.0927, 7.0905, 7.09, 7.091, 7.0889, 7.088, 7.086, 7.0845, 7.0844, 7.083, 7.0889, 7.087, 7.0923, 7.0974, 7.0965, 7.0947, 7.0927, 7.0979, 7.1122, 7.1103, 7.1083, 7.1071, 7.1046, 7.1023, 7.1005, 7.0987, 7.1063, 7.1157, 7.1138, 7.1272, 7.126, 7.1238, 7.1295, 7.1275, 7.1322, 7.1332, 7.134200000000001, 7.1329, 7.1377, 7.1363, 7.1338, 7.1502, 7.148, 7.1502, 7.1487, 7.1487, 7.1472, 7.1466, 7.145, 7.1477, 7.1459, 7.1467, 7.1446, 7.1431, 7.1414, 7.1465, 7.1515, 7.1503, 7.1492, 7.150200000000001, 7.1482, 7.146, 7.1439, 7.1415, 7.1406, 7.1389, 7.1391, 7.1401, 7.1639, 7.1922, 7.1913, 7.1889, 7.1866, 7.1857, 7.1837, 7.1831, 7.1876, 7.1855, 7.1905, 7.1885, 7.1867, 7.186, 7.1836, 7.1811, 7.1791, 7.184, 7.182, 7.1873, 7.1862, 7.1842, 7.1825, 7.1865, 7.1841, 7.1818, 7.1798, 7.1839, 7.1815, 7.1864, 7.1908, 7.195, 7.1932, 7.1975, 7.1958, 7.2003, 7.2048, 7.2025, 7.2002, 7.198, 7.1967, 7.1959, 7.1937, 7.1932, 7.191, 7.1899, 7.1956, 7.1935, 7.1924, 7.1917, 7.1916, 7.1962, 7.1945, 7.1928, 7.1909, 7.1907, 7.1889, 7.1875, 7.1888, 7.1867, 7.1847, 7.1828, 7.1809, 7.1789, 7.1771, 7.176, 7.1772, 7.1767, 7.1762, 7.1801, 7.1783, 7.1765, 7.1745, 7.1732, 7.1726, 7.1773, 7.1754, 7.1801, 7.1791, 7.1851, 7.1897, 7.1886, 7.1867, 7.1859, 7.1961, 7.1953, 7.1936, 7.1917, 7.1973, 7.1962, 7.2006, 7.1987, 7.2036, 7.2014, 7.1998, 7.1981, 7.1963, 7.1944, 7.1931, 7.1925, 7.1907, 7.1893, 7.1885, 7.1879, 7.1872, 7.1867, 7.1857, 7.1837, 7.1841, 7.1826, 7.1811, 7.1851, 7.1848, 7.1847, 7.1896, 7.1877, 7.1864, 7.1848, 7.1863, 7.1872, 7.1864, 7.1906, 7.1951, 7.1929, 7.1968, 7.1948, 7.1939, 7.1935, 7.1926, 7.1858, 7.1906, 7.1886, 7.188, 7.1867, 7.186, 7.1849, 7.1837, 7.1822, 7.1871, 7.1854, 7.1837, 7.1826, 7.1808, 7.1845, 7.1828, 7.187, 7.185, 7.1894, 7.1881, 7.1871, 7.1856, 7.1848, 7.1838, 7.1884, 7.1871, 7.1858, 7.186, 7.184, 7.1841, 7.1885, 7.1928, 7.1971, 7.1967, 7.195, 7.2001, 7.1995, 7.1989, 7.1987, 7.1977, 7.196, 7.1944, 7.1933, 7.1917, 7.1898, 7.1888, 7.1927, 7.1913, 7.1901, 7.1884, 7.1883, 7.1932, 7.1983, 7.203, 7.2019, 7.2018, 7.2003, 7.1989, 7.1978, 7.1982, 7.1967, 7.2017, 7.2014, 7.2007, 7.205, 7.2093, 7.2078, 7.2077, 7.2061, 7.2105, 7.2145, 7.2127, 7.2115, 7.2111, 7.2103, 7.2092, 7.2082, 7.2118, 7.2099, 7.2099, 7.209, 7.2078, 7.2126, 7.212, 7.2106, 7.209, 7.2298, 7.2286, 7.2332, 7.2317, 7.2309, 7.2293, 7.2279, 7.2263, 7.2301, 7.229, 7.233, 7.2324, 7.231, 7.2301, 7.2284, 7.2266, 7.225, 7.2242, 7.2227, 7.221, 7.2216, 7.2201, 7.2188, 7.2228, 7.2213, 7.2252, 7.2238, 7.2227, 7.2208, 7.2195, 7.2194, 7.2182, 7.2166, 7.215, 7.2142, 7.2123, 7.2111, 7.2152, 7.2146, 7.2148, 7.2153, 7.2138, 7.2133, 7.2131, 7.2116, 7.2112, 7.2118, 7.2106, 7.2091, 7.2131, 7.2122, 7.2105, 7.2095, 7.2133, 7.212, 7.2158, 7.215, 7.2139, 7.2077, 7.2061, 7.2045, 7.2039, 7.203, 7.2014, 7.1998, 7.2038, 7.2083, 7.2117, 7.211, 7.2097, 7.2084, 7.207, 7.2057, 7.2042, 7.2027, 7.2117, 7.2108, 7.2094, 7.2088, 7.2123, 7.2157, 7.219, 7.2173, 7.2168, 7.2155, 7.2192, 7.2174, 7.2157, 7.214, 7.2127, 7.2162, 7.215, 7.2133, 7.2116, 7.2099, 7.2085, 7.2069, 7.2056, 7.204, 7.2033, 7.2022, 7.206, 7.2042, 7.2032, 7.2016, 7.2007, 7.2002, 7.1989, 7.198, 7.1968, 7.2003, 7.2093, 7.2076, 7.2108, 7.2095, 7.2082, 7.2073, 7.2059, 7.2046, 7.2035, 7.207, 7.2055, 7.2039, 7.2072, 7.206, 7.2044, 7.2035, 7.2067, 7.2103, 7.2086, 7.2073, 7.2111, 7.211, 7.2098, 7.2086, 7.207, 7.2057, 7.2051, 7.2042, 7.2078, 7.2066, 7.209, 7.2154, 7.2146, 7.2157, 7.2151, 7.2234, 7.222, 7.2207, 7.2242, 7.2225, 7.2213, 7.2198, 7.2233, 7.2218, 7.2201, 7.2193, 7.2197, 7.229, 7.2275, 7.2263, 7.2256, 7.2242, 7.2234, 7.222, 7.2212, 7.2197, 7.2231, 7.2223, 7.2255, 7.2243, 7.2227, 7.221, 7.2194, 7.2183, 7.2175, 7.2166, 7.215, 7.2136, 7.2131, 7.2122, 7.2107, 7.2138, 7.2124, 7.2115, 7.2103, 7.2094, 7.2108, 7.2188, 7.2264, 7.2253, 7.2261, 7.2246, 7.223, 7.2214, 7.2198, 7.2183, 7.2213, 7.2255, 7.2285, 7.227, 7.2259, 7.2243, 7.2232, 7.2263, 7.2247, 7.2233, 7.2218, 7.2249, 7.2285, 7.2274, 7.2259, 7.2253, 7.2238, 7.2266, 7.2253, 7.2242, 7.2242, 7.2239, 7.2222, 7.2207, 7.2241, 7.2226, 7.2211, 7.2201, 7.2233, 7.2272, 7.2276, 7.2264, 7.2256, 7.229, 7.2275, 7.2265, 7.2271, 7.2299, 7.2283, 7.2267, 7.2253, 7.2249, 7.2284, 7.2317, 7.2303, 7.2298, 7.2284, 7.2272, 7.2262, 7.2257, 7.2292, 7.2282, 7.2276, 7.2284, 7.2271, 7.23, 7.2294, 7.2325, 7.2314, 7.2304, 7.2344, 7.2331, 7.2323, 7.2311, 7.2312, 7.2297, 7.2288, 7.2283, 7.2276, 7.227, 7.2265, 7.2277, 7.2266, 7.2256, 7.2247, 7.2249, 7.2239, 7.227, 7.2256, 7.2252, 7.2239, 7.2224, 7.2214, 7.2243, 7.2232, 7.2221, 7.2206, 7.2234, 7.2226, 7.2212, 7.2203, 7.2195, 7.2191, 7.2281, 7.2272, 7.2295, 7.2343, 7.2333, 7.2318, 7.2311, 7.2302, 7.229, 7.2379, 7.2365, 7.2357, 7.2344, 7.2343, 7.233, 7.2322, 7.2314, 7.2305, 7.2343, 7.2331, 7.2326, 7.2313, 7.2348, 7.2383, 7.2415, 7.2411, 7.2401, 7.2435, 7.243, 7.2465, 7.2492, 7.2481, 7.2473, 7.2462, 7.2456, 7.2446, 7.2434, 7.2421, 7.2414, 7.2409, 7.2482, 7.2552, 7.2546, 7.2574, 7.2604, 7.2591, 7.2582, 7.2577, 7.2567, 7.2559, 7.2585, 7.2584, 7.2612, 7.26, 7.2592, 7.2589, 7.2576, 7.2567, 7.2559, 7.2549, 7.2537, 7.2531, 7.2561, 7.2559, 7.2544, 7.2531, 7.2519, 7.2514, 7.2511, 7.2497, 7.2485, 7.2478, 7.2467, 7.2454, 7.2449, 7.2447, 7.2435, 7.2429, 7.242, 7.2406, 7.2437, 7.2463, 7.2501, 7.2493, 7.2482, 7.2476, 7.2463, 7.2489, 7.2519, 7.2509, 7.2497, 7.2488, 7.2477, 7.2469, 7.246, 7.2485, 7.2477, 7.2467, 7.2455, 7.2447, 7.2434, 7.242, 7.2445, 7.2469, 7.2455, 7.2451, 7.2497, 7.2561, 7.2562, 7.2565, 7.2552, 7.2617, 7.2607, 7.2636, 7.2664, 7.2653, 7.2648, 7.2636, 7.2625, 7.2613, 7.2608, 7.2599, 7.2624, 7.261, 7.2597, 7.2582, 7.2573, 7.256, 7.2557, 7.2547, 7.2576, 7.2604, 7.259, 7.2577, 7.257, 7.2596, 7.2626, 7.2622, 7.261, 7.2601, 7.2626, 7.2613, 7.2605, 7.2603, 7.2601, 7.2558, 7.2552, 7.2543, 7.2533, 7.2529, 7.2523, 7.2513, 7.2503, 7.2496, 7.2486, 7.2475, 7.2462, 7.2455, 7.2441, 7.2439, 7.2429, 7.246, 7.2453, 7.2487, 7.2477, 7.2477, 7.2499, 7.2487, 7.2517, 7.2509, 7.2535, 7.2523, 7.2518, 7.2543, 7.2567, 7.2558, 7.2546, 7.2534, 7.2523, 7.2551, 7.2542, 7.2537, 7.2532, 7.252, 7.2512, 7.2541, 7.253, 7.2524, 7.2551, 7.2542, 7.2542, 7.2534, 7.2529, 7.2518, 7.2514, 7.2504, 7.2493, 7.248, 7.2469, 7.2467, 7.2456, 7.2481, 7.247, 7.2461, 7.245, 7.2443, 7.2434, 7.2434, 7.2466, 7.2496, 7.2484, 7.2508, 7.2532, 7.2519, 7.2513, 7.2536, 7.2524, 7.2513, 7.2502, 7.2492, 7.2481, 7.2472, 7.246, 7.2457, 7.2447, 7.244, 7.2465, 7.2453, 7.2442, 7.2429, 7.242, 7.2408, 7.2434, 7.2425, 7.2419, 7.2409, 7.2438, 7.2462, 7.2457, 7.2479, 7.2608, 7.2596, 7.262, 7.2611, 7.2598, 7.259, 7.2582, 7.2575, 7.2604, 7.2601, 7.2591, 7.2585, 7.2574, 7.2568, 7.2556, 7.2581, 7.2571, 7.2564, 7.2557, 7.2584, 7.2606, 7.2602, 7.2647, 7.2642, 7.2668, 7.2692, 7.2687, 7.2681, 7.2706, 7.2697, 7.2724, 7.2714, 7.2708, 7.2698, 7.2705, 7.2695, 7.2718, 7.2707, 7.2695, 7.2683, 7.2671, 7.2661, 7.2649, 7.264, 7.2628, 7.2617, 7.2605, 7.26, 7.2624, 7.2615, 7.2604, 7.2591, 7.2581, 7.257, 7.2591, 7.2582, 7.264, 7.2631, 7.2619, 7.2609, 7.2602, 7.2591, 7.2579, 7.2567, 7.2559, 7.2547, 7.2536, 7.2559, 7.2549, 7.2538, 7.2561, 7.2555, 7.2548, 7.2547, 7.257, 7.2563, 7.2555, 7.2549, 7.2538, 7.2561, 7.2553, 7.2542, 7.2565, 7.2554, 7.2543, 7.2531, 7.2489, 7.2477, 7.2467, 7.2457, 7.2446, 7.2436, 7.2429, 7.2417, 7.2405, 7.2396, 7.2386, 7.2411, 7.2408, 7.2462, 7.2451, 7.2445, 7.244, 7.243, 7.2391, 7.2454, 7.2449, 7.2442, 7.243, 7.2423, 7.2419, 7.2416, 7.2406, 7.2397, 7.2421, 7.2411, 7.2404, 7.2425, 7.2413, 7.2405, 7.2398, 7.2395, 7.2383, 7.2376, 7.2366, 7.2363, 7.2383, 7.2371, 7.2363, 7.2419, 7.2408, 7.2398, 7.2389, 7.238, 7.2371, 7.2359, 7.2349, 7.2369, 7.236, 7.2354, 7.2347, 7.2341, 7.2337, 7.2329, 7.2318, 7.234, 7.2329, 7.232, 7.2315, 7.2313, 7.2333, 7.2325, 7.2329, 7.2408, 7.2429, 7.2419, 7.2443, 7.2462, 7.2455, 7.2448, 7.2451, 7.2475, 7.2466, 7.2454, 7.2443, 7.2462, 7.2456, 7.2449, 7.2442, 7.2432, 7.2424, 7.245, 7.2443, 7.2436, 7.2429, 7.2421, 7.2412, 7.2411, 7.2408, 7.24, 7.2396, 7.2389, 7.2382, 7.2374, 7.2434, 7.2427, 7.2426, 7.2448, 7.2443, 7.2436, 7.2464, 7.2484, 7.2474, 7.2466, 7.2486, 7.2514, 7.2504, 7.2497, 7.2485, 7.2476, 7.2465, 7.2472, 7.2469, 7.2462, 7.2457, 7.2449, 7.244, 7.2449, 7.2443, 7.2438, 7.2432, 7.2433, 7.2427, 7.2417, 7.2416, 7.2407, 7.2398, 7.2388, 7.2411, 7.2402, 7.2393, 7.2383, 7.2371, 7.2362, 7.2383, 7.2403, 7.2394, 7.2414, 7.2448, 7.2466, 7.2457, 7.2446, 7.2437, 7.2434, 7.2427, 7.2416, 7.2407, 7.2396, 7.2389, 7.241, 7.2508, 7.2505, 7.2496, 7.2498, 7.2492, 7.2482, 7.2472, 7.2493, 7.2484, 7.2504, 7.2494, 7.2485, 7.2482, 7.2473, 7.2454, 7.2444, 7.2433, 7.2424, 7.2413, 7.2404, 7.2398, 7.239, 7.2382, 7.2371, 7.2393, 7.2384, 7.2381, 7.2382, 7.2373, 7.2365, 7.2356, 7.2376, 7.2397, 7.2389, 7.2382, 7.2376, 7.2369, 7.2363, 7.2357, 7.2353, 7.2348, 7.2342, 7.2364, 7.2353, 7.2376, 7.2366, 7.2363, 7.2354, 7.2346, 7.2342, 7.2337, 7.2327, 7.2329, 7.2341, 7.2332, 7.2322, 7.2354, 7.2344, 7.2354, 7.2375, 7.2365, 7.2385, 7.2379, 7.2369, 7.2362, 7.2355, 7.2347, 7.2342, 7.234, 7.2334, 7.2357, 7.2349, 7.2348, 7.234, 7.2342, 7.2362, 7.2352, 7.235, 7.2344, 7.2342, 7.2409, 7.2411, 7.2468, 7.2464, 7.2473, 7.2469, 7.2491, 7.2536, 7.2529, 7.2521, 7.2511, 7.2533, 7.2527, 7.2519, 7.2511, 7.2505, 7.2498, 7.2488, 7.2479, 7.2476, 7.2475, 7.2472, 7.2494, 7.2465, 7.243, 7.2432, 7.2497, 7.2497, 7.2491, 7.2486, 7.2508, 7.2498, 7.2516, 7.2507, 7.25, 7.2494, 7.2496, 7.2489, 7.2481, 7.2485, 7.2477, 7.2469, 7.2467, 7.2457, 7.2449, 7.2443, 7.2433, 7.2455, 7.245, 7.2448, 7.244, 7.2461, 7.246, 7.2454, 7.2454, 7.2446, 7.2441, 7.2432, 7.2426, 7.2427, 7.2417, 7.2409, 7.2454, 7.2449, 7.2443, 7.244, 7.2461, 7.2458, 7.2451, 7.2469, 7.246, 7.245, 7.2441, 7.2438, 7.2428, 7.2422, 7.2416, 7.2438, 7.2457, 7.2451, 7.2473, 7.2472, 7.2465, 7.2455, 7.2476, 7.2493, 7.2513, 7.2509, 7.2527, 7.2521, 7.2539, 7.2532, 7.253, 7.2522, 7.2521, 7.2546, 7.2541, 7.2538, 7.2531, 7.2523, 7.2523, 7.2513, 7.251, 7.2503, 7.2494, 7.2486, 7.248, 7.2484, 7.2481, 7.2504, 7.2498, 7.2489, 7.2479, 7.2469, 7.2468, 7.2466, 7.2457, 7.2505, 7.2498, 7.2492, 7.2483, 7.248, 7.2502, 7.2502, 7.2494, 7.2493, 7.2493, 7.2522, 7.2515, 7.2535, 7.2536, 7.2615, 7.2605, 7.2596, 7.259, 7.2587, 7.258, 7.257, 7.2561, 7.2555, 7.2551, 7.2543, 7.2541, 7.2538, 7.2536, 7.2557, 7.2549, 7.2542, 7.2541, 7.2572, 7.2565, 7.2589, 7.2584, 7.2583, 7.2574, 7.2573, 7.2571, 7.2563, 7.2557, 7.2554, 7.2549, 7.2571, 7.2562, 7.2564, 7.2535, 7.2554, 7.2554, 7.2546, 7.2562, 7.2555, 7.2575, 7.2596, 7.259, 7.2582, 7.2577, 7.2568, 7.2587, 7.2603, 7.2595, 7.259, 7.2584, 7.258, 7.2577, 7.2571, 7.2569, 7.2563, 7.2536, 7.2527, 7.2545, 7.2541, 7.2536, 7.2531, 7.2562, 7.2553, 7.2548, 7.2539, 7.2531, 7.2527, 7.2517, 7.2509, 7.2503, 7.2495, 7.2487, 7.2481, 7.2477, 7.2467, 7.2462, 7.2479, 7.2472, 7.2464, 7.2476, 7.2469, 7.2486, 7.248, 7.25, 7.25, 7.2491, 7.2511, 7.2522, 7.2513, 7.2507, 7.2503, 7.2494, 7.2485, 7.2477, 7.2468, 7.2462, 7.2454, 7.2446, 7.2467, 7.2493, 7.2487, 7.2478, 7.2469, 7.2467, 7.2467, 7.2458, 7.2452, 7.2442, 7.2436, 7.2426, 7.2443, 7.2437, 7.243, 7.2421, 7.2438, 7.2433, 7.2435, 7.2426, 7.2475, 7.2469, 7.2463, 7.2454, 7.2473, 7.2478, 7.2475, 7.247, 7.2468, 7.2461, 7.2453, 7.2447, 7.2465, 7.2455, 7.245, 7.2443, 7.2446, 7.244, 7.2435, 7.2427, 7.2419, 7.2411, 7.2407, 7.2398, 7.239, 7.2384, 7.2376, 7.2394, 7.2412, 7.2456, 7.2456, 7.2448, 7.244, 7.2431, 7.2446, 7.2463, 7.254, 7.2567, 7.2596, 7.2641, 7.2634, 7.263, 7.2628, 7.2621, 7.2614, 7.2606, 7.26, 7.2623, 7.2619, 7.2593, 7.2587, 7.2588, 7.2582, 7.2599, 7.2596, 7.2592, 7.2584, 7.2575, 7.2566, 7.2557, 7.255, 7.2543, 7.2542, 7.2557, 7.2549, 7.2565, 7.2558, 7.2549, 7.2545, 7.2539, 7.2531, 7.2547, 7.2538, 7.2529, 7.2521, 7.2515, 7.2508, 7.2566, 7.2564, 7.256, 7.2553, 7.2549, 7.2541, 7.2532, 7.2528, 7.2525, 7.2517, 7.2509, 7.2502, 7.252, 7.2512, 7.2508, 7.2501, 7.252, 7.2511, 7.2503, 7.2496, 7.249, 7.2488, 7.248, 7.2471, 7.2464, 7.2479, 7.2477, 7.2494, 7.2487, 7.248, 7.2472, 7.2465, 7.2465, 7.2467, 7.2461, 7.2454, 7.2446, 7.2439, 7.2431, 7.2424, 7.242, 7.2413, 7.2408, 7.2448, 7.2445, 7.2442, 7.2436, 7.2435, 7.2453, 7.2451, 7.2467, 7.2459, 7.2453, 7.2446, 7.2437, 7.2436, 7.2432, 7.2446, 7.2441, 7.2433, 7.2451, 7.2468, 7.246, 7.2463, 7.2459, 7.2452, 7.2467, 7.2459, 7.2455, 7.2451, 7.2443, 7.2437, 7.2429, 7.2423, 7.2416, 7.241, 7.2426, 7.2419, 7.2412, 7.2405, 7.2422, 7.2417, 7.2411, 7.2405, 7.243, 7.2427, 7.242, 7.2412, 7.2404, 7.2396, 7.241, 7.2408, 7.24, 7.2416, 7.2407, 7.2401, 7.2392, 7.2387, 7.2379, 7.2373, 7.2367, 7.2362, 7.2358, 7.2389, 7.2383, 7.2375, 7.2369, 7.2365, 7.2361, 7.2353, 7.2345, 7.2337, 7.2338, 7.233, 7.2346, 7.2343, 7.2337, 7.2334, 7.2327, 7.2322, 7.2336, 7.2329, 7.2322, 7.2314, 7.2306, 7.2301, 7.2295, 7.2292, 7.2285, 7.2315, 7.2307, 7.2301, 7.2297, 7.2316, 7.2309, 7.2301, 7.2297, 7.2312, 7.2329, 7.2327, 7.2322, 7.2314, 7.2311, 7.233, 7.2325, 7.2316, 7.2355, 7.2373, 7.2392, 7.2388, 7.2363, 7.236, 7.2353, 7.237, 7.2361, 7.2375, 7.2367, 7.2361, 7.2359, 7.2353, 7.235, 7.2367, 7.236, 7.2355, 7.2353, 7.235, 7.2342, 7.2334, 7.2327, 7.2324, 7.2343, 7.2358, 7.2382, 7.2374, 7.2392, 7.2384, 7.2402, 7.2418, 7.241, 7.2404, 7.2419, 7.2416, 7.2511, 7.2507, 7.25, 7.2495, 7.2488, 7.2496, 7.2543, 7.2539, 7.2534, 7.2526, 7.2552, 7.2545, 7.2586, 7.2649, 7.2644, 7.2639, 7.2655, 7.2647, 7.2643, 7.266, 7.2653, 7.2647, 7.2641, 7.2639, 7.2633, 7.2627, 7.2624, 7.2619, 7.2635, 7.2629, 7.2621, 7.2614, 7.2611, 7.2603, 7.2601, 7.2595, 7.261, 7.2604, 7.2601, 7.2595, 7.26, 7.2597, 7.2596, 7.2595, 7.2623, 7.262, 7.2612, 7.2608, 7.2628, 7.2625, 7.2617, 7.2614, 7.2607, 7.2602, 7.26, 7.2594, 7.2593, 7.261, 7.2604, 7.2602, 7.2594, 7.2587, 7.2579, 7.2572, 7.2567, 7.256, 7.2555, 7.255, 7.2542, 7.2535, 7.253, 7.2523, 7.2516, 7.251, 7.2505, 7.2498, 7.2492, 7.2486, 7.2502, 7.2502, 7.2496, 7.2512, 7.2508, 7.2503, 7.2499, 7.2491, 7.2486, 7.2501, 7.2495, 7.249, 7.2488, 7.2504, 7.25, 7.2494, 7.249, 7.2482, 7.2477, 7.2472, 7.2465, 7.2467, 7.2459, 7.2499, 7.2494, 7.2487, 7.2479, 7.2472, 7.2466, 7.2461, 7.2476, 7.2469, 7.2484, 7.2477, 7.2471, 7.2464, 7.248, 7.2475, 7.2468, 7.2462, 7.2479, 7.2476, 7.2473, 7.2473, 7.2469, 7.2462, 7.2456, 7.2451, 7.2446, 7.2439, 7.2434, 7.2429, 7.2443, 7.2459, 7.2452, 7.2446, 7.2443, 7.2436, 7.2452, 7.2448, 7.2441, 7.2456, 7.245, 7.2443, 7.2436, 7.2454, 7.2447, 7.2441, 7.2438, 7.243, 7.2422, 7.2423, 7.2417, 7.2411, 7.2405, 7.2398, 7.2396, 7.2411, 7.2408, 7.2432, 7.2449, 7.2442, 7.2436, 7.2432, 7.2429, 7.2424, 7.2417, 7.2413, 7.2408, 7.2425, 7.242, 7.2413, 7.2426, 7.2419, 7.2434, 7.2429, 7.2423, 7.2418, 7.2523, 7.2517, 7.2512, 7.2525, 7.2521, 7.2535, 7.2551, 7.2543, 7.2535, 7.2528, 7.2528, 7.2521, 7.2537, 7.2532, 7.2537, 7.2531, 7.2545, 7.254, 7.2533, 7.255, 7.2545, 7.2539, 7.2534, 7.2528, 7.2546, 7.254, 7.2538, 7.2532, 7.2525, 7.253, 7.2565, 7.2561, 7.2554, 7.2547, 7.2564, 7.2558, 7.2552, 7.2548, 7.2545, 7.2541, 7.2535, 7.2528, 7.2525, 7.2521, 7.2539, 7.2536, 7.253, 7.2588, 7.2583, 7.2598, 7.2593, 7.2586, 7.2584, 7.2581, 7.2574, 7.2566, 7.2607, 7.2609, 7.2607, 7.2621, 7.2614, 7.2607, 7.262, 7.2613, 7.2605, 7.2597, 7.259, 7.2584, 7.2576, 7.2572, 7.2565, 7.2559, 7.2554, 7.2569, 7.2561, 7.2568, 7.2566, 7.2572, 7.2587, 7.2581, 7.2577, 7.257, 7.2563, 7.2559, 7.2556, 7.2553, 7.2547, 7.2606, 7.2621, 7.2614, 7.2609, 7.2587, 7.258, 7.2575, 7.2571, 7.2587, 7.2581, 7.2579, 7.2572, 7.2567, 7.2563, 7.2561, 7.2554, 7.2569, 7.2563, 7.2556, 7.2554, 7.2551, 7.2546, 7.256, 7.2558, 7.2553, 7.255, 7.2544, 7.254, 7.2536, 7.2552, 7.2548, 7.2547, 7.2542, 7.254, 7.2534, 7.2529, 7.2542, 7.258, 7.2574, 7.2569, 7.2566, 7.2559, 7.2554, 7.2551, 7.2567, 7.2563, 7.2563, 7.2558, 7.2574, 7.2567, 7.2562, 7.2557, 7.2553, 7.2568, 7.2561, 7.2554, 7.2548, 7.2544, 7.2557, 7.255, 7.2545, 7.2539, 7.2533, 7.2527, 7.254, 7.2541, 7.2536, 7.2529, 7.2523, 7.2517, 7.2532, 7.2528, 7.2521, 7.2534, 7.255, 7.2565, 7.2601, 7.2595, 7.2589, 7.2603, 7.2602, 7.2597, 7.2613, 7.2608, 7.2601, 7.2598, 7.2651, 7.2656, 7.2652, 7.2653, 7.2675, 7.2672, 7.2669, 7.2664, 7.268, 7.2696, 7.2692, 7.2712, 7.2711, 7.2736, 7.2731, 7.2746, 7.2761, 7.2756, 7.2754, 7.275, 7.2746, 7.276, 7.2756, 7.2751, 7.2769, 7.2767, 7.2762, 7.2757, 7.275, 7.2745, 7.2742, 7.2757, 7.2752, 7.2747, 7.2741, 7.2721, 7.2701, 7.2681, 7.2696, 7.2677, 7.2671, 7.2672, 7.2693, 7.2687, 7.2682, 7.2679, 7.2673, 7.2666, 7.2684, 7.2691, 7.2685, 7.2701, 7.2695, 7.2756, 7.2752, 7.2802, 7.2797, 7.279, 7.2788, 7.2783, 7.278, 7.2774, 7.2752, 7.2746, 7.2742, 7.2777, 7.2773, 7.2766, 7.2779, 7.2777, 7.279, 7.2787, 7.2782, 7.278, 7.2774, 7.2772, 7.2766, 7.276, 7.2757, 7.2753, 7.2747, 7.2762, 7.2755, 7.2748, 7.2742, 7.2735, 7.273, 7.2725, 7.2719, 7.2717, 7.2718, 7.2731, 7.2745, 7.2742, 7.2755, 7.2748, 7.2741, 7.2734, 7.2734, 7.2748, 7.2744, 7.2778, 7.2778, 7.2773, 7.2767, 7.2761, 7.2756, 7.2749, 7.2784, 7.2779, 7.2793, 7.2788, 7.2781, 7.2778, 7.2771, 7.2765, 7.2758, 7.2752, 7.2765, 7.2761, 7.2757, 7.277, 7.2763, 7.2757, 7.2751, 7.2747, 7.2743, 7.274, 7.2736, 7.2731, 7.2724, 7.2717, 7.271, 7.2703, 7.2698, 7.2691, 7.2704, 7.2698, 7.2709, 7.2723, 7.2716, 7.2711, 7.2723, 7.2721, 7.2716, 7.2717, 7.2713, 7.2707, 7.2726, 7.2761, 7.2755, 7.2748, 7.2746, 7.274, 7.2734, 7.2746, 7.276, 7.2754, 7.2748, 7.2749, 7.2762, 7.2776, 7.2789, 7.2802, 7.2858, 7.2869, 7.2865, 7.2859, 7.2855, 7.2849, 7.2847, 7.284, 7.2836, 7.2831, 7.2825, 7.2821, 7.2833, 7.2826, 7.2824, 7.2819, 7.2814, 7.281, 7.2806, 7.2821, 7.2833, 7.2828, 7.2823, 7.2819, 7.2813, 7.2808, 7.2803, 7.2798, 7.2813, 7.281, 7.2829, 7.2826, 7.2823, 7.2818, 7.2815, 7.281, 7.2805, 7.2801, 7.2814, 7.2809, 7.2802, 7.2796, 7.2792, 7.2788, 7.2788, 7.2802, 7.2799, 7.2796, 7.2793, 7.2787, 7.2782, 7.2793, 7.2788, 7.2784, 7.2779, 7.2773, 7.277, 7.2763, 7.2775, 7.2771, 7.2767, 7.2762, 7.2767, 7.2765, 7.276, 7.2754, 7.2749, 7.2742, 7.2737, 7.2732, 7.293, 7.2944, 7.2938, 7.2934, 7.2927, 7.292, 7.2914, 7.2911, 7.291, 7.289, 7.2893, 7.289, 7.2885, 7.2882, 7.2876, 7.2886, 7.2879, 7.2892, 7.2886, 7.2898, 7.291, 7.2904, 7.2898, 7.2891, 7.2885, 7.2896, 7.2932, 7.2926, 7.2927, 7.2927, 7.2942, 7.294, 7.2935, 7.295, 7.2947, 7.2943, 7.2938, 7.2932, 7.2925, 7.2927, 7.2927, 7.2928, 7.2964, 7.296, 7.2994, 7.299, 7.2986, 7.2985, 7.2979, 7.2975, 7.2989, 7.2989, 7.2986, 7.299, 7.2988, 7.3016, 7.2999, 7.2998, 7.3014, 7.301, 7.3005, 7.3032, 7.3057, 7.3055, 7.305, 7.3045, 7.3065, 7.3059, 7.3055, 7.3068, 7.3064, 7.306, 7.3056, 7.3052, 7.3048, 7.3048, 7.3029, 7.3031, 7.3025, 7.3026, 7.3019, 7.3013, 7.3007, 7.3002, 7.2996, 7.3009, 7.304, 7.3036, 7.303, 7.3008, 7.3001, 7.2997, 7.3007, 7.3019, 7.3014, 7.3007, 7.3002, 7.3017, 7.3047, 7.3032, 7.3047, 7.3042, 7.3048, 7.3044, 7.3038, 7.3037, 7.3033, 7.3031, 7.3025, 7.3019, 7.3013, 7.3009, 7.3002, 7.2999, 7.3011, 7.3005, 7.3004, 7.2998, 7.2992, 7.2986, 7.298, 7.2979, 7.2975, 7.2973, 7.2971, 7.2965, 7.2962, 7.2957, 7.2969, 7.2963, 7.2963, 7.2957, 7.2987, 7.2987, 7.3022, 7.3035, 7.3046, 7.3042, 7.3054, 7.3051, 7.3045, 7.3041, 7.3038, 7.3032, 7.3029, 7.3041, 7.3036, 7.3036, 7.3032, 7.3028, 7.3024, 7.3037, 7.3031, 7.3026, 7.3022, 7.3016, 7.3012, 7.3006, 7.3, 7.2995, 7.2995, 7.2989, 7.2984, 7.2995, 7.3033, 7.3028, 7.3065, 7.3059, 7.3054, 7.3052, 7.3054, 7.305, 7.3046, 7.3044, 7.3042, 7.3037, 7.3033, 7.3046, 7.3041, 7.304, 7.3034, 7.3028, 7.3038, 7.3034, 7.3028, 7.3039, 7.3036, 7.3031, 7.3029, 7.3024, 7.3019, 7.3017, 7.3011, 7.3018, 7.3013, 7.3009, 7.3005, 7.3005, 7.3006, 7.3004, 7.3017, 7.3029, 7.3023, 7.3019, 7.3013, 7.301, 7.3007, 7.3003, 7.3001, 7.298, 7.2962, 7.2944, 7.2941, 7.2938, 7.2948, 7.2959, 7.2956, 7.295, 7.2945, 7.2947, 7.2945, 7.2941, 7.2938, 7.2935, 7.2932, 7.2929, 7.2923, 7.2956, 7.295, 7.2945, 7.2955, 7.2954, 7.2967, 7.2966, 7.296, 7.2956, 7.2967, 7.2978, 7.2976, 7.297, 7.2968, 7.2962, 7.2956, 7.295, 7.2944, 7.2938, 7.2935, 7.2946, 7.294, 7.2951, 7.2962, 7.2974, 7.2986, 7.2965, 7.296, 7.2953, 7.2947, 7.2943, 7.2942, 7.2953, 7.2949, 7.2946, 7.2943, 7.2937, 7.2934, 7.2928, 7.2923, 7.2922, 7.2918, 7.2912, 7.291, 7.2908, 7.2902, 7.2914, 7.291, 7.2923, 7.2924, 7.292, 7.2915, 7.2909, 7.2922, 7.2916, 7.2913, 7.2907, 7.2903, 7.2913, 7.2908, 7.2918, 7.2913, 7.2911, 7.2905, 7.2899, 7.2893, 7.2905, 7.2915, 7.291, 7.2904, 7.29, 7.2897, 7.2895, 7.2889, 7.2902, 7.2913, 7.2907, 7.2904, 7.2898, 7.2894, 7.2908, 7.2905, 7.2903, 7.2916, 7.2912, 7.2924, 7.2921, 7.2915, 7.2925, 7.2921, 7.2932, 7.2929, 7.2925, 7.2906, 7.2918, 7.2914, 7.291, 7.2907, 7.2902, 7.2899, 7.2898, 7.2893, 7.2905, 7.2901, 7.2899, 7.2895, 7.2908, 7.2906, 7.2901, 7.2897, 7.2891, 7.2889, 7.2885, 7.2896, 7.2891, 7.2887, 7.2882, 7.2876, 7.2872, 7.2869, 7.2865, 7.2861, 7.2859, 7.2854, 7.2865, 7.2862, 7.2857, 7.2869, 7.2866, 7.2862, 7.2859, 7.2854, 7.2848, 7.2843, 7.284, 7.2836, 7.2832, 7.2829, 7.2824, 7.2818, 7.2813, 7.2807, 7.2804, 7.2802, 7.2798, 7.2794, 7.279, 7.2784, 7.2781, 7.2776, 7.2777, 7.2803, 7.2802, 7.2786, 7.2782, 7.2779, 7.2775, 7.2769, 7.2768, 7.2763, 7.2757, 7.2754, 7.2751, 7.2732, 7.2729, 7.2725, 7.2719, 7.2714, 7.2709, 7.2705, 7.2716, 7.2713, 7.2734, 7.2732, 7.2726, 7.2736, 7.2731, 7.2731, 7.2725, 7.2721, 7.2717, 7.2728, 7.2722, 7.2718, 7.2712, 7.2708, 7.2719, 7.272, 7.2717, 7.2716, 7.2711, 7.2706, 7.2701, 7.2696, 7.269, 7.2686, 7.2697, 7.2694, 7.269, 7.2684, 7.268, 7.269, 7.2685, 7.2681, 7.2678, 7.2672, 7.2666, 7.266, 7.2655, 7.2654, 7.265, 7.2647, 7.2658, 7.2658, 7.2654, 7.2651, 7.2646, 7.2643, 7.2654, 7.2649, 7.2644, 7.2639, 7.2639, 7.2634, 7.2629, 7.2625, 7.2634, 7.2692, 7.2673, 7.267, 7.2667, 7.2662, 7.271, 7.2721, 7.2719, 7.2715, 7.271, 7.2723, 7.2719, 7.2714, 7.271, 7.2708, 7.2704, 7.2702, 7.27, 7.2696, 7.269, 7.2718, 7.2714, 7.2758, 7.2756, 7.2758, 7.2754, 7.2752, 7.2747, 7.2743, 7.2738, 7.2752, 7.2758, 7.2753, 7.2749, 7.2744, 7.2739, 7.2739, 7.2749, 7.2761, 7.2756, 7.2755, 7.275, 7.2761, 7.2773, 7.2771, 7.2766, 7.2761, 7.2757, 7.2752, 7.2747, 7.2759, 7.2754, 7.2749, 7.2761, 7.2756, 7.2755, 7.2765, 7.2765, 7.2779, 7.2774, 7.277, 7.2767, 7.2763, 7.2757, 7.2752, 7.2749, 7.2744, 7.2738, 7.2735, 7.2746, 7.2756, 7.2751, 7.2746, 7.2757, 7.2752, 7.2733, 7.2728, 7.2723, 7.2737, 7.2746, 7.274, 7.2737, 7.2732, 7.2729, 7.2724, 7.2719, 7.2729, 7.2725, 7.2722, 7.2717, 7.2713, 7.2709, 7.2707, 7.2721, 7.2715, 7.2711, 7.2705, 7.27, 7.2694, 7.269, 7.2685, 7.2684, 7.2681, 7.2678, 7.2675, 7.2673, 7.2671, 7.2684, 7.268, 7.2675, 7.2672, 7.2666, 7.2665, 7.2661, 7.2673, 7.2669, 7.2665, 7.2659, 7.2656, 7.2654, 7.2652, 7.2648, 7.2646, 7.2657, 7.2656, 7.2651, 7.265, 7.2648, 7.2642, 7.2639, 7.2651, 7.2645, 7.2641, 7.2637, 7.2632, 7.2641, 7.2635, 7.2631, 7.264, 7.2635, 7.2617, 7.2599, 7.2596, 7.2594, 7.2605, 7.2618, 7.2614, 7.2609, 7.2606, 7.2604, 7.26, 7.2594, 7.2591, 7.2587, 7.2585, 7.258, 7.2579, 7.2573, 7.2584, 7.258, 7.2591, 7.2601, 7.2596, 7.259, 7.2585, 7.258, 7.2575, 7.2572, 7.2585, 7.2583, 7.2578, 7.2573, 7.2554, 7.2565, 7.2576, 7.2572, 7.2567, 7.2577, 7.2572, 7.2567, 7.2564, 7.2561, 7.2556, 7.2554, 7.2549, 7.2546, 7.2541, 7.2537, 7.2535, 7.2531, 7.2528, 7.2523, 7.252, 7.253, 7.2526, 7.2523, 7.2518, 7.2513, 7.2508, 7.2504, 7.2514, 7.251, 7.2508, 7.2504, 7.2501, 7.2512, 7.2509, 7.2505, 7.25, 7.2495, 7.249, 7.2485, 7.2482, 7.2477, 7.2473, 7.2468, 7.2464, 7.2461, 7.2457, 7.2453, 7.245, 7.2451, 7.2446, 7.2445, 7.2442, 7.2453, 7.2452, 7.2447, 7.2429, 7.2426, 7.2421, 7.243, 7.2426, 7.2437, 7.2433, 7.2435, 7.2441, 7.2439, 7.2449, 7.2444, 7.244, 7.2449, 7.2444, 7.244, 7.2454, 7.2464, 7.2461, 7.2457, 7.2454, 7.2452, 7.2447, 7.2444, 7.2443, 7.244, 7.2438, 7.244, 7.2437, 7.2433, 7.243, 7.2442, 7.244, 7.2436, 7.2447, 7.2458, 7.2454, 7.2449, 7.2444, 7.2456, 7.2455, 7.2455, 7.2451, 7.2464, 7.2498, 7.2496, 7.2492, 7.2488, 7.2483, 7.2482, 7.2465, 7.2478, 7.2488, 7.25, 7.2498, 7.2494, 7.249, 7.249, 7.2487, 7.2485, 7.2483, 7.2478, 7.2475, 7.247, 7.2465, 7.2474, 7.2486, 7.2481, 7.2476, 7.2472, 7.2467, 7.2466, 7.2463, 7.2466, 7.2448, 7.2444, 7.244, 7.2436, 7.2436, 7.2431, 7.2426, 7.2421, 7.243, 7.2426, 7.2436, 7.2431, 7.2426, 7.2421, 7.2417, 7.2429, 7.2426, 7.2423, 7.242, 7.2415, 7.2415, 7.2413, 7.241, 7.2406, 7.2417, 7.2413, 7.2408, 7.2404, 7.24, 7.2397, 7.2394, 7.2404, 7.2403, 7.2401, 7.2399, 7.2394, 7.239, 7.2388, 7.2384, 7.2383, 7.2379, 7.239, 7.2424, 7.2422, 7.2418, 7.2428, 7.2426, 7.2421, 7.2423, 7.2419, 7.2416, 7.2412, 7.2424, 7.2421, 7.2419, 7.243, 7.2425, 7.2423, 7.2407, 7.2404, 7.2401, 7.2396, 7.2435, 7.2434, 7.2431, 7.2471, 7.2468, 7.2463, 7.2475, 7.2479, 7.2476, 7.2471, 7.2471, 7.2467, 7.2476, 7.2486, 7.2482, 7.2477, 7.2475, 7.2471, 7.2466, 7.2461, 7.2456, 7.2467, 7.2463, 7.2473, 7.2534, 7.2537, 7.2533, 7.2528, 7.2539, 7.2534, 7.2529, 7.2528, 7.2524, 7.2521, 7.2517, 7.2519, 7.2531, 7.2529, 7.2525, 7.2521, 7.2518, 7.2516, 7.2514, 7.2514, 7.2509, 7.2521, 7.2532, 7.253, 7.2541, 7.2552, 7.2548, 7.2545, 7.2541, 7.2536, 7.2532, 7.2532, 7.2527, 7.2523, 7.252, 7.2518, 7.2515, 7.2512, 7.2509, 7.2508, 7.2503, 7.2498, 7.2496, 7.2492, 7.2491, 7.2501, 7.25, 7.2495, 7.2492, 7.2509, 7.2505, 7.2503, 7.2501, 7.2497, 7.2492, 7.249, 7.2489, 7.2498, 7.2497, 7.2495, 7.2492, 7.249, 7.2486, 7.2483, 7.2478, 7.2474, 7.247, 7.2465, 7.2461, 7.2459, 7.2458, 7.2456, 7.2453, 7.2449, 7.2444, 7.2441, 7.2451, 7.2448, 7.2447, 7.2443, 7.244, 7.2441, 7.2437, 7.2432, 7.2434, 7.243, 7.2428, 7.2424, 7.242, 7.2416, 7.2425, 7.2422, 7.2417, 7.244, 7.2451, 7.2449, 7.2446, 7.2441, 7.2443, 7.2439, 7.2449, 7.2459, 7.2455, 7.2452, 7.2448, 7.2443, 7.244, 7.2451, 7.2449, 7.2445, 7.244, 7.2437, 7.2432, 7.2427, 7.2422, 7.2417, 7.2414, 7.2423, 7.2433, 7.2433, 7.243, 7.243, 7.2487, 7.2482, 7.2477, 7.2474, 7.2474, 7.2487, 7.2486, 7.2486, 7.2483, 7.2494, 7.2491, 7.2488, 7.2486, 7.2482, 7.2481, 7.2477, 7.2473, 7.2484, 7.248, 7.2491, 7.2501, 7.2506, 7.2502, 7.2499, 7.2503, 7.2504, 7.25, 7.2498, 7.2493, 7.2489, 7.2485, 7.2495, 7.2492, 7.2488, 7.2486, 7.2483, 7.2481, 7.2497, 7.2493, 7.2488, 7.2483, 7.2481, 7.2478, 7.2481, 7.2477, 7.2475, 7.2473, 7.2469, 7.2465, 7.2462, 7.2473, 7.2471, 7.2467, 7.2468, 7.2464, 7.2462, 7.2458, 7.2455, 7.2466, 7.2491, 7.2515, 7.2526, 7.2538, 7.2539, 7.2536, 7.2536, 7.2533, 7.253, 7.2527, 7.2526, 7.2523, 7.2518, 7.2513, 7.251, 7.252, 7.2515, 7.2511, 7.2508, 7.2503, 7.2514, 7.251, 7.2519, 7.2515, 7.2512, 7.2509, 7.2507, 7.2506, 7.2504, 7.249, 7.2487, 7.2482, 7.2477, 7.2472, 7.2502, 7.2498, 7.2494, 7.2491, 7.2487, 7.2483, 7.2493, 7.2504, 7.2514, 7.2526, 7.2523, 7.2507, 7.2492, 7.2489, 7.2484, 7.2539, 7.2541, 7.2563, 7.2559, 7.2556, 7.2552, 7.2552, 7.2548, 7.2563, 7.256, 7.2564, 7.258, 7.2589, 7.2586, 7.2582, 7.258, 7.2576, 7.2572, 7.2568, 7.2565, 7.2562, 7.256, 7.2556, 7.2556, 7.2552, 7.2563, 7.2588, 7.2585, 7.2595, 7.2591, 7.2601, 7.2598, 7.2611, 7.2619, 7.2616, 7.2612, 7.2622, 7.2619, 7.2615, 7.2627, 7.2623, 7.2619, 7.2628, 7.2624, 7.2623, 7.2619, 7.2629, 7.2626, 7.2635, 7.2631, 7.2627, 7.2623, 7.2621, 7.2617, 7.2615, 7.2613, 7.2609, 7.2604, 7.2601, 7.2597, 7.2593, 7.259, 7.2587, 7.2583, 7.2578, 7.2575, 7.257, 7.2579, 7.2575, 7.2572, 7.2569, 7.2565, 7.2549, 7.2535, 7.253, 7.2527, 7.2522, 7.2518, 7.2516, 7.2515, 7.2511, 7.252, 7.2517, 7.2502, 7.25, 7.2503, 7.2488, 7.2485, 7.2483, 7.2478, 7.2474, 7.2472, 7.2468, 7.2465, 7.2475, 7.2485, 7.2483, 7.2481, 7.2467, 7.2451, 7.2449, 7.2459, 7.2456, 7.2441, 7.2429, 7.2427, 7.2437, 7.2434, 7.2443, 7.244, 7.2449, 7.245, 7.2446, 7.2442, 7.244, 7.2438, 7.2434, 7.2444, 7.2441, 7.2444, 7.244, 7.2436, 7.2432, 7.2456, 7.2466, 7.2476, 7.2472, 7.2471, 7.2467, 7.2463, 7.2461, 7.2458, 7.2458, 7.2468, 7.2465, 7.2478, 7.2475, 7.247, 7.2471, 7.2469, 7.2464, 7.2465, 7.2463, 7.246, 7.2457, 7.2455, 7.2453, 7.245, 7.2458, 7.2453, 7.2449, 7.2458, 7.2453, 7.2457, 7.2453, 7.2437, 7.2433, 7.2442, 7.2431, 7.2427, 7.2423, 7.2419, 7.2417, 7.2426, 7.2424, 7.2433, 7.2443, 7.2438, 7.2436, 7.2433, 7.2432, 7.2443, 7.2444, 7.2441, 7.2438, 7.2436, 7.2433, 7.243, 7.2427, 7.2438, 7.2443, 7.244, 7.245, 7.246, 7.2485, 7.2483, 7.2479, 7.2489, 7.2485, 7.2495, 7.2507, 7.2504, 7.25, 7.2498, 7.2519, 7.2527, 7.255, 7.2563, 7.256, 7.2557, 7.2553, 7.2551, 7.2547, 7.2549, 7.2546, 7.2542, 7.254, 7.2536, 7.2534, 7.2532, 7.2528, 7.2525, 7.2534, 7.2533, 7.2529, 7.253, 7.2529, 7.255, 7.2535, 7.2533, 7.2529, 7.2525, 7.2528, 7.2537, 7.2534, 7.2532, 7.254, 7.2548, 7.2545, 7.2541, 7.2539, 7.2536, 7.2536, 7.2532, 7.253, 7.2526, 7.2525, 7.252, 7.253, 7.2528, 7.2525, 7.2521, 7.2508, 7.2504, 7.2514, 7.2522, 7.2519, 7.2515, 7.2511, 7.251, 7.2506, 7.2503, 7.25, 7.2497, 7.2494, 7.249, 7.2489, 7.2496, 7.2492, 7.2488, 7.2486, 7.2471, 7.2498, 7.2498, 7.2495, 7.2492, 7.2502, 7.2499, 7.2495, 7.2491, 7.2487, 7.2482, 7.2478, 7.2474, 7.247, 7.2466, 7.2465, 7.2461, 7.246, 7.2456, 7.2452, 7.2449, 7.2445, 7.2455, 7.2451, 7.2459, 7.2454, 7.2452, 7.2448, 7.2444, 7.2448, 7.246, 7.2469, 7.2478, 7.2488, 7.2484, 7.248, 7.2479, 7.2488, 7.2486, 7.2482, 7.2477, 7.2473, 7.2471, 7.2469, 7.2469, 7.2471, 7.2482, 7.2478, 7.2489, 7.2489, 7.2488, 7.2484, 7.248, 7.2481, 7.2479, 7.2478, 7.2474, 7.2471, 7.2469, 7.2455, 7.2452, 7.2451, 7.2449, 7.2448, 7.2444, 7.2441, 7.2437, 7.2434, 7.2431, 7.243, 7.2427, 7.2436, 7.2432, 7.2429, 7.2426, 7.2423, 7.2421, 7.2418, 7.2416, 7.2414, 7.241, 7.2406, 7.2403, 7.2413, 7.241, 7.2407, 7.2404, 7.2413, 7.2421, 7.2417, 7.2414, 7.2412, 7.241, 7.2407, 7.2416, 7.2414, 7.2411, 7.2408, 7.2404, 7.2401, 7.2398, 7.2394, 7.2391, 7.2387, 7.2386, 7.2394, 7.239, 7.2386, 7.2395, 7.2391, 7.2391, 7.2387, 7.2383, 7.238, 7.2378, 7.2375, 7.2373, 7.2373, 7.237, 7.2367, 7.2376, 7.2376, 7.2373, 7.2359, 7.2355, 7.2352, 7.2348, 7.2347, 7.2343, 7.2342, 7.2341, 7.2339, 7.2336, 7.2334, 7.2334, 7.233, 7.2339, 7.2352, 7.2348, 7.2357, 7.2354, 7.235, 7.2347, 7.2355, 7.2351, 7.235, 7.2346, 7.2345, 7.2345, 7.2343, 7.2341, 7.2338, 7.2337, 7.2335, 7.2332, 7.234, 7.2349, 7.2346, 7.2345, 7.2346, 7.2343, 7.2339, 7.2335, 7.2333, 7.2329, 7.2326, 7.2324, 7.2321, 7.2318, 7.2315, 7.2323, 7.233, 7.2328, 7.2329, 7.2326, 7.2335, 7.2331, 7.2328, 7.2325, 7.2321, 7.2318, 7.2315, 7.2314, 7.231, 7.2307, 7.2303, 7.23, 7.2296, 7.2293, 7.2293, 7.2289, 7.2287, 7.2284, 7.2322, 7.2321, 7.232, 7.2318, 7.2317, 7.2328, 7.2327, 7.2325, 7.2322, 7.2319, 7.2329, 7.2341, 7.234, 7.2337, 7.2334, 7.2322, 7.2322, 7.2334, 7.2331, 7.2341, 7.2338, 7.2338, 7.2335, 7.2331, 7.2341, 7.2338, 7.2337, 7.2337, 7.2334, 7.2331, 7.2318, 7.2328, 7.2324, 7.2323, 7.2321, 7.2321, 7.2321, 7.233, 7.2327, 7.2323, 7.2333, 7.2343, 7.2339, 7.2325, 7.2322, 7.2318, 7.2315, 7.2311, 7.2307, 7.2303, 7.2301, 7.2302, 7.2325, 7.2358, 7.2355, 7.2353, 7.2349, 7.2359, 7.2359, 7.2369, 7.2368, 7.2364, 7.2362, 7.2358, 7.2353, 7.2349, 7.2347, 7.2355, 7.2351, 7.2363, 7.2361, 7.2358, 7.2355, 7.2356, 7.2352, 7.2349, 7.2345, 7.2344, 7.2353, 7.2351, 7.2347, 7.2345, 7.2353, 7.235, 7.2347, 7.2345, 7.2354, 7.2363, 7.2359, 7.2372, 7.2369, 7.2366, 7.2362, 7.2358, 7.2356, 7.2364, 7.2361, 7.2358, 7.2356, 7.2353, 7.2349, 7.2348, 7.2344, 7.234, 7.2336, 7.2332, 7.2328, 7.2327, 7.2348, 7.2345, 7.2342, 7.234, 7.2348, 7.2344, 7.2343, 7.2341, 7.2338, 7.2341, 7.2338, 7.2335, 7.2344, 7.2345, 7.2341, 7.2339, 7.2337, 7.2333, 7.2342, 7.2339, 7.2338, 7.2339, 7.2343, 7.2351, 7.2349, 7.2345, 7.2342, 7.2338, 7.2347, 7.2345, 7.2366, 7.2364, 7.2374, 7.2396, 7.2393, 7.24, 7.2398, 7.2395, 7.2392, 7.2378, 7.2366, 7.2352, 7.236, 7.2356, 7.2366, 7.2366, 7.2363, 7.2361, 7.2358, 7.2356, 7.2352, 7.2348, 7.2344, 7.234, 7.2339, 7.2346, 7.2357, 7.2366, 7.2362, 7.237, 7.2367, 7.2364, 7.2374, 7.2371, 7.2369, 7.2365, 7.2373, 7.2382, 7.2368, 7.2375, 7.2384, 7.2392, 7.2389, 7.2398, 7.2395, 7.2392, 7.2388, 7.2385, 7.2381, 7.2378, 7.2374, 7.2383, 7.238, 7.2389, 7.2376, 7.2374, 7.2374, 7.237, 7.2368, 7.2365, 7.2362, 7.2358, 7.2355, 7.2363, 7.2361, 7.2359, 7.2367, 7.2364, 7.2372, 7.2368, 7.2365, 7.2363, 7.2361, 7.2357, 7.2366, 7.2362, 7.236, 7.2368, 7.2364, 7.2362, 7.2358, 7.2355, 7.2366, 7.2362, 7.2358, 7.2357, 7.2343, 7.2342, 7.234, 7.2336, 7.2334, 7.2332, 7.233, 7.2326, 7.2334, 7.2332, 7.2321, 7.2317, 7.2314, 7.2345, 7.2343, 7.2342, 7.2351, 7.235, 7.2358, 7.2355, 7.2353, 7.2362, 7.237, 7.2366, 7.2364, 7.2384, 7.238, 7.2377, 7.2366, 7.2354, 7.2351, 7.2359, 7.2359, 7.2367, 7.2365, 7.2353, 7.2349, 7.2345, 7.2341, 7.2337, 7.2345, 7.2353, 7.2349, 7.2345, 7.2341, 7.233, 7.2327, 7.2323, 7.232, 7.2316, 7.2323, 7.232, 7.2316, 7.2312, 7.2308, 7.2304, 7.2304, 7.23, 7.2298, 7.2306, 7.2302, 7.231, 7.2317, 7.2314, 7.231, 7.2306, 7.2303, 7.2311, 7.2308, 7.2305, 7.2292, 7.2288, 7.2286, 7.2283, 7.228, 7.2277, 7.2278, 7.2277, 7.2274, 7.2288, 7.2296, 7.2323, 7.2324, 7.232, 7.2318, 7.2338, 7.2346, 7.2343, 7.2341, 7.2338, 7.2358, 7.2355, 7.2363, 7.236, 7.2358, 7.2354, 7.2352, 7.2349, 7.2345, 7.2342, 7.2372, 7.2369, 7.2378, 7.2375, 7.2384, 7.2384, 7.238, 7.2377, 7.2385, 7.2382, 7.2378, 7.2376, 7.2373, 7.2382, 7.2382, 7.238, 7.2377, 7.2374, 7.2382, 7.2383, 7.2383, 7.238, 7.2377, 7.2378, 7.2377, 7.2375, 7.2408, 7.2404, 7.24, 7.2399, 7.2407, 7.2405, 7.2402, 7.2398, 7.2395, 7.2392, 7.239, 7.2386, 7.2397, 7.2405, 7.2401, 7.2399, 7.2396, 7.2396, 7.2392, 7.2389, 7.2386, 7.24, 7.2424, 7.2423, 7.2421, 7.2434, 7.2421, 7.2419, 7.243, 7.243, 7.2427, 7.2426, 7.2425, 7.2422, 7.2441, 7.2448, 7.2445, 7.2454, 7.2454, 7.2463, 7.246, 7.2457, 7.2457, 7.2456, 7.2453, 7.2451, 7.246, 7.2467, 7.2464, 7.2463, 7.246, 7.2457, 7.2454, 7.2451, 7.2447, 7.2443, 7.244, 7.2436, 7.2432, 7.2429, 7.2426, 7.2433, 7.2441, 7.2438, 7.2439, 7.2448, 7.2445, 7.2442, 7.2439, 7.2436, 7.2434, 7.2448, 7.2459, 7.2488, 7.2488, 7.2487, 7.2473, 7.2471, 7.2474, 7.2471, 7.2468, 7.2465, 7.2463, 7.2472, 7.247, 7.2478, 7.2474, 7.2472, 7.2469, 7.2465, 7.2461, 7.2457, 7.2444, 7.2442, 7.2439, 7.2437, 7.2434, 7.2421, 7.2417, 7.2414, 7.2412, 7.2409, 7.2407, 7.2394, 7.239, 7.2389, 7.2386, 7.2386, 7.2385, 7.2384, 7.2371, 7.2389, 7.2389, 7.2407, 7.2394, 7.2401, 7.2399, 7.2408, 7.2415, 7.2425, 7.2422, 7.242, 7.2418, 7.2416, 7.2415, 7.2414, 7.2412, 7.2412, 7.2409, 7.2406, 7.2404, 7.24, 7.2397, 7.2394, 7.2402, 7.2429, 7.2426, 7.2431, 7.2442, 7.244, 7.2436, 7.2433, 7.2443, 7.2486, 7.2475, 7.2473, 7.2469, 7.2466, 7.2475, 7.2472, 7.247, 7.2467, 7.2464, 7.246, 7.2447, 7.2437, 7.2434, 7.2422, 7.242, 7.2418, 7.2427, 7.2425, 7.2434, 7.2432, 7.244, 7.2452, 7.2449, 7.2447, 7.2465, 7.249, 7.2489, 7.2498, 7.2496, 7.2525, 7.2522, 7.2532, 7.253, 7.2528, 7.2524, 7.2513, 7.2513, 7.251, 7.2509, 7.2521, 7.2519, 7.2522, 7.252, 7.2516, 7.2557, 7.2565, 7.2562, 7.2558, 7.2554, 7.2564, 7.2561, 7.2559, 7.2557, 7.2553, 7.255, 7.2557, 7.2553, 7.2549, 7.2538, 7.2526, 7.2523, 7.2512, 7.251, 7.2507, 7.2506, 7.2503, 7.251, 7.2509, 7.2506, 7.2505, 7.2501, 7.2499, 7.2496, 7.2494, 7.2491, 7.2487, 7.2485, 7.2494, 7.2494, 7.249, 7.2494, 7.249, 7.2498, 7.2506, 7.2505, 7.2512, 7.2509, 7.2521, 7.2517, 7.2513, 7.252, 7.2524, 7.252, 7.2518, 7.2514, 7.2513, 7.2509, 7.2507, 7.2504, 7.2503, 7.25, 7.2498, 7.2496, 7.2496, 7.2516, 7.2517, 7.2515, 7.2524, 7.2526, 7.2522, 7.2519, 7.2517, 7.2525, 7.2533, 7.2541, 7.2539, 7.2536, 7.2534, 7.2531, 7.2528, 7.2525, 7.2521, 7.2528, 7.2524, 7.2523, 7.252, 7.2529, 7.2526, 7.2524, 7.2522, 7.2519, 7.2516, 7.2513, 7.2511, 7.251, 7.2507, 7.2505, 7.2503, 7.249, 7.2479, 7.2467, 7.2463, 7.2479, 7.2466, 7.2464, 7.2462, 7.246, 7.2457, 7.2445, 7.2442, 7.2439, 7.2435, 7.2433, 7.243, 7.2427, 7.2435, 7.2431, 7.2429, 7.2428, 7.2425, 7.2422, 7.2429, 7.2425, 7.2421, 7.2418, 7.2414, 7.2412, 7.241, 7.2406, 7.2402, 7.2399, 7.2395, 7.2394, 7.2402, 7.2399, 7.2398, 7.2394, 7.239, 7.2389, 7.2396, 7.2395, 7.2393, 7.2391, 7.2392, 7.2388, 7.2376, 7.2373, 7.2382, 7.2379, 7.238, 7.2387, 7.2384, 7.2382, 7.2378, 7.2375, 7.2374, 7.2372, 7.2369, 7.2358, 7.2356, 7.2356, 7.2354, 7.2352, 7.2349, 7.2347, 7.2354, 7.2361, 7.2358, 7.2355, 7.2363, 7.2359, 7.2356, 7.2353, 7.2349, 7.2356, 7.2354, 7.2351, 7.2353, 7.235, 7.2349, 7.2356, 7.2355, 7.2353, 7.2341, 7.2338, 7.2334, 7.2331, 7.2328, 7.2335, 7.2332, 7.2328, 7.2336, 7.2333, 7.2329, 7.2325, 7.2321, 7.2317, 7.2314, 7.2311, 7.2308, 7.2305, 7.2301, 7.2299, 7.2308, 7.2295, 7.2304, 7.23, 7.2307, 7.2305, 7.2311, 7.2309, 7.2306, 7.2304, 7.2305, 7.2302, 7.2299, 7.2307, 7.2305, 7.2313, 7.2334, 7.2341, 7.234, 7.233, 7.2343, 7.2341, 7.2339, 7.235, 7.2347, 7.2354, 7.2352, 7.2342, 7.235, 7.235, 7.2357, 7.2354, 7.2352, 7.2353, 7.235, 7.2348, 7.2346, 7.2344, 7.2345, 7.2346, 7.2344, 7.2332, 7.2343, 7.234, 7.2351, 7.2359, 7.236, 7.2367, 7.2365, 7.2363, 7.2361, 7.236, 7.2367, 7.2366, 7.2364, 7.237, 7.2367, 7.2367, 7.2364, 7.2372, 7.237, 7.2367, 7.2365, 7.2372, 7.2371, 7.237, 7.2378, 7.2376, 7.2373, 7.2371, 7.2369, 7.2368, 7.2365, 7.2365, 7.2364, 7.2361, 7.2357, 7.2354, 7.2361, 7.236, 7.2357, 7.2355, 7.2362, 7.2358, 7.2356, 7.2354, 7.235, 7.235, 7.2348, 7.2347, 7.2345, 7.2341, 7.2341, 7.2337, 7.2335, 7.2335, 7.2332, 7.234, 7.2338, 7.2335, 7.2343, 7.2335, 7.2323, 7.2323, 7.232, 7.2317, 7.2316, 7.2322, 7.2318, 7.2314, 7.2322, 7.2311, 7.231, 7.2307, 7.2304, 7.2302, 7.23, 7.2298, 7.2296, 7.2294, 7.2292, 7.2289, 7.2277, 7.2275, 7.2294, 7.2291, 7.2288, 7.2286, 7.2283, 7.228, 7.2279, 7.2278, 7.2275, 7.2272, 7.2279, 7.2286, 7.2283, 7.2281, 7.2279, 7.2276, 7.2265, 7.2254, 7.2262, 7.227, 7.2277, 7.2274, 7.2272, 7.2269, 7.2269, 7.2266, 7.2265, 7.2262, 7.2259, 7.2256, 7.2253, 7.225, 7.2247, 7.2255, 7.2252, 7.225, 7.225, 7.2257, 7.2245, 7.2244, 7.2241, 7.2238, 7.2235, 7.2233, 7.223, 7.2229, 7.2229, 7.2227, 7.2227, 7.2227, 7.2223, 7.2221, 7.2209, 7.2206, 7.2203, 7.2204, 7.2216, 7.2224, 7.2222, 7.2219, 7.2208, 7.2205, 7.2202, 7.22, 7.2198, 7.2196, 7.2199, 7.2221, 7.2228, 7.2228, 7.223, 7.2227, 7.223, 7.2239, 7.2237, 7.2235, 7.2241, 7.2239, 7.2236, 7.2233, 7.2242, 7.2239, 7.2228, 7.2236, 7.2234, 7.2233, 7.223, 7.2227, 7.2225, 7.2225, 7.2232, 7.2229, 7.2227, 7.2234, 7.2233, 7.2221, 7.2219, 7.2217, 7.2205, 7.2211, 7.2208, 7.2216, 7.2213, 7.2211, 7.221, 7.221, 7.2198, 7.2195, 7.2191, 7.2188, 7.2185, 7.2181, 7.2187, 7.2185, 7.2183, 7.2179, 7.2177, 7.2174, 7.217, 7.2168, 7.2156, 7.2145, 7.2142, 7.2148, 7.2145, 7.2143, 7.214, 7.2137, 7.2134, 7.2132, 7.2149, 7.2148, 7.2156, 7.2162, 7.2159, 7.2167, 7.2164, 7.216, 7.2168, 7.2166, 7.2165, 7.2173, 7.2172, 7.2169, 7.2168, 7.2166, 7.2165, 7.2162, 7.2162, 7.2159, 7.2157, 7.2154, 7.2151, 7.2149, 7.2147, 7.2155, 7.2152, 7.215, 7.2146, 7.2154, 7.2151, 7.2148, 7.2156, 7.2155, 7.2153, 7.215, 7.2147, 7.2153, 7.2159, 7.2157, 7.2156, 7.2154, 7.2151, 7.2148, 7.2145, 7.2143, 7.2141, 7.213, 7.2128, 7.2117, 7.2115, 7.2123, 7.212, 7.2119, 7.2107, 7.2107, 7.2104, 7.2111, 7.2108, 7.2107, 7.2106, 7.2116, 7.2115, 7.2112, 7.211, 7.2108, 7.2113, 7.211, 7.2118, 7.2116, 7.2124, 7.2121, 7.2118, 7.2115, 7.2103, 7.21, 7.2099, 7.2097, 7.2095, 7.2093, 7.209, 7.2098, 7.2097, 7.2094, 7.2115, 7.2114, 7.2113, 7.212, 7.2119, 7.2108, 7.2108, 7.2106, 7.2104, 7.2104, 7.2101, 7.2115, 7.2105, 7.2112, 7.2111, 7.211, 7.2099, 7.2097, 7.2095, 7.2092, 7.2103, 7.21, 7.2097, 7.2104, 7.2103, 7.21, 7.2098, 7.2097, 7.2094, 7.2091, 7.2089, 7.2086, 7.2084, 7.2081, 7.208, 7.2068, 7.2067, 7.2064, 7.2062, 7.206, 7.2056, 7.2063, 7.2062, 7.2059, 7.2057, 7.2054, 7.2052, 7.2059, 7.2056, 7.2056, 7.2053, 7.2051, 7.2048, 7.2056, 7.206, 7.2072, 7.2076, 7.2083, 7.2081, 7.2093, 7.2085, 7.2083, 7.2081, 7.2078, 7.2076, 7.2073, 7.2073, 7.207, 7.2068, 7.2065, 7.2075, 7.2073, 7.2071, 7.2068, 7.2067, 7.2064, 7.2062, 7.2059, 7.2056, 7.2052, 7.2071, 7.2069, 7.2066, 7.2063, 7.206, 7.2088, 7.2094, 7.2091, 7.2108, 7.2107, 7.2104, 7.2106, 7.2103, 7.21, 7.2107, 7.2107, 7.2115, 7.2122, 7.2121, 7.2118, 7.2115, 7.2114, 7.2112, 7.2111, 7.2109, 7.2107, 7.2105, 7.2111, 7.2109, 7.2115, 7.2112, 7.2119, 7.2117, 7.2114, 7.212, 7.2118, 7.2116, 7.2115, 7.2122, 7.2119, 7.2116, 7.2113, 7.211, 7.2107, 7.2104, 7.2101, 7.2099, 7.2097, 7.2096, 7.2094, 7.2091, 7.2089, 7.2079, 7.2106, 7.2104, 7.2101, 7.2099, 7.2096, 7.2103, 7.2104, 7.2111, 7.2117, 7.2115, 7.2113, 7.2136, 7.2155, 7.2152, 7.2149, 7.2148, 7.2145, 7.2152, 7.2149, 7.2147, 7.2154, 7.2157, 7.2164, 7.2163, 7.2161, 7.2168, 7.2165, 7.2164, 7.2162, 7.216, 7.2167, 7.2174, 7.2172, 7.2169, 7.2179, 7.2177, 7.2175, 7.2164, 7.2162, 7.2159, 7.2157, 7.2156, 7.2153, 7.2151, 7.2149, 7.2147, 7.2144, 7.2153, 7.2151, 7.2148, 7.2145, 7.2151, 7.2158, 7.2157, 7.2154, 7.216, 7.2159, 7.2156, 7.2155, 7.2157, 7.2164, 7.2161, 7.2159, 7.2157, 7.2154, 7.2151, 7.2148, 7.2145, 7.2143, 7.214, 7.2146, 7.2158, 7.2157, 7.2154, 7.2153, 7.2159, 7.2159, 7.2157, 7.2156, 7.2153, 7.2171, 7.217, 7.2168, 7.2167, 7.2174, 7.218, 7.2178, 7.2175, 7.2182, 7.2181, 7.2179, 7.2179, 7.2177, 7.2184, 7.22, 7.2208, 7.2233, 7.2236, 7.2233, 7.223, 7.2228, 7.2226, 7.2223, 7.2242, 7.224, 7.2238, 7.2246, 7.2243, 7.2243, 7.2241, 7.2238, 7.2244, 7.225, 7.2247, 7.2244, 7.2241, 7.2239, 7.2236, 7.2242, 7.2239, 7.2245, 7.2243, 7.2241, 7.2238, 7.2244, 7.2241, 7.2238, 7.224, 7.224, 7.2238, 7.2237, 7.2234, 7.2233, 7.2231, 7.2229, 7.2228, 7.2235, 7.2232, 7.2249, 7.2247, 7.2246, 7.2243, 7.224, 7.2247, 7.2254, 7.2251, 7.2242, 7.2239, 7.2238, 7.2245, 7.2272, 7.2269, 7.2266, 7.2264, 7.2262, 7.226, 7.2257, 7.2255, 7.2252, 7.2249, 7.2248, 7.2247, 7.2255, 7.2252, 7.225, 7.2248, 7.2246, 7.2254, 7.2261, 7.2268, 7.2265, 7.2263, 7.2261, 7.2262, 7.2262, 7.226, 7.2258, 7.2256, 7.2254, 7.2262, 7.2262, 7.2259, 7.2257, 7.2255, 7.2253, 7.226, 7.2258, 7.2255, 7.2255, 7.2255, 7.2254, 7.2252, 7.2252, 7.2249, 7.2247, 7.2255, 7.2253, 7.2252, 7.225, 7.2257, 7.2256, 7.2254, 7.2251, 7.2251, 7.2249, 7.2257, 7.2255, 7.2252, 7.2251, 7.2259, 7.2267, 7.2265, 7.2273, 7.228, 7.2278, 7.2275, 7.2275, 7.2284, 7.2281, 7.2288, 7.2287, 7.2284, 7.2281, 7.2279, 7.2276, 7.2279, 7.2277, 7.2275, 7.2273, 7.227, 7.2268, 7.2266, 7.2273, 7.2281, 7.2278, 7.2275, 7.2275, 7.2282, 7.2289, 7.2287, 7.2294, 7.2291, 7.2288, 7.2295, 7.2293, 7.2291, 7.229, 7.2297, 7.2294, 7.2291, 7.2307, 7.2333, 7.233, 7.2327, 7.2334, 7.2339, 7.2337, 7.2334, 7.2331, 7.2345, 7.2343, 7.234, 7.2331, 7.2328, 7.2319, 7.2317, 7.2314, 7.2313, 7.2311, 7.2309, 7.2299, 7.2289, 7.228, 7.227, 7.2269, 7.2268, 7.2265, 7.2273, 7.2271, 7.2269, 7.2267, 7.2276, 7.2273, 7.2271, 7.227, 7.2268, 7.2257, 7.2255, 7.2252, 7.2249, 7.2247, 7.2244, 7.2251, 7.225, 7.224, 7.2237, 7.2235, 7.2232, 7.2231, 7.223, 7.2228, 7.2227, 7.2218, 7.2216, 7.2235, 7.2233, 7.2231, 7.2229, 7.2227, 7.2224, 7.2318, 7.2324, 7.2322, 7.2321, 7.2319, 7.2316, 7.2314, 7.2316, 7.2315, 7.2313, 7.2312, 7.2309, 7.2315, 7.2312, 7.2309, 7.2308, 7.2314, 7.2312, 7.231, 7.2308, 7.2307, 7.2308, 7.2306, 7.2305, 7.2305, 7.2321, 7.2318, 7.2315, 7.2313, 7.2303, 7.2302, 7.2301, 7.2298, 7.2296, 7.2293, 7.229, 7.2305, 7.2312, 7.2309, 7.2306, 7.2303, 7.23, 7.229, 7.2297, 7.2305, 7.2313, 7.231, 7.2316, 7.2322, 7.2328, 7.2325, 7.2323, 7.2322, 7.232, 7.2326, 7.2323, 7.2329, 7.2339, 7.2337, 7.2326, 7.2318, 7.2309, 7.2299, 7.2289, 7.2287, 7.2284, 7.2273, 7.2274, 7.2273, 7.227, 7.2267, 7.2264, 7.2261, 7.2259, 7.2265, 7.2264, 7.2263, 7.2262, 7.226, 7.2259, 7.2258, 7.2256, 7.2263, 7.2278, 7.2279, 7.2294, 7.2292, 7.229, 7.2288, 7.2286, 7.2302, 7.23, 7.2306, 7.2304, 7.231, 7.2309, 7.2309, 7.2315, 7.2321, 7.2331, 7.2337, 7.2342, 7.2357, 7.2355, 7.2352, 7.2359, 7.2366, 7.2363, 7.236, 7.2357, 7.2365, 7.2372, 7.2361, 7.236, 7.2367, 7.2365, 7.2362, 7.2359, 7.2358, 7.2356, 7.2356, 7.2364, 7.2372, 7.2369, 7.2367, 7.2367, 7.2375, 7.2371, 7.2368, 7.2357, 7.2355, 7.2353, 7.2344, 7.2341, 7.2339, 7.2337, 7.2335, 7.2332, 7.234, 7.2337, 7.2335, 7.2334, 7.2332, 7.2333, 7.2348, 7.2346, 7.2345, 7.2336, 7.2334, 7.2332, 7.2348, 7.2345, 7.2343, 7.2341, 7.2339, 7.2355, 7.2354, 7.2352, 7.2349, 7.2347, 7.2346, 7.2343, 7.2341, 7.2339, 7.2336, 7.2333, 7.234, 7.2337, 7.2344, 7.2342, 7.2349, 7.2346, 7.2343, 7.235, 7.2357, 7.2364, 7.2362, 7.2359, 7.2356, 7.2353, 7.235, 7.2348, 7.2349, 7.2346, 7.2343, 7.2342, 7.234, 7.234, 7.2347, 7.2353, 7.235, 7.2348, 7.2346, 7.2343, 7.2341, 7.2339, 7.2337, 7.2343, 7.2345, 7.2335, 7.2349, 7.2347, 7.2353, 7.235, 7.2347, 7.2346, 7.2343, 7.234, 7.2339, 7.2328, 7.2317, 7.2323, 7.2321, 7.2319, 7.2316, 7.2322, 7.2328, 7.2319, 7.2309, 7.2306, 7.2304, 7.2302, 7.2299, 7.2297, 7.2295, 7.2293, 7.2291, 7.2289, 7.2288, 7.2287, 7.2285, 7.2291, 7.2288, 7.2285, 7.2284, 7.2281, 7.2279, 7.2278, 7.2285, 7.2282, 7.2281, 7.2288, 7.2286, 7.2293, 7.229, 7.2289, 7.2287, 7.2294, 7.2293, 7.229, 7.2288, 7.2286, 7.2284, 7.229, 7.2287, 7.2284, 7.2274, 7.2272, 7.2269, 7.226, 7.2251, 7.2249, 7.2239, 7.2245, 7.2248, 7.2256, 7.2263, 7.2267, 7.2265, 7.2262, 7.2259, 7.2265, 7.2263, 7.226, 7.2266, 7.2263, 7.226, 7.2257, 7.2263, 7.2269, 7.2267, 7.2266, 7.2264, 7.227, 7.2275, 7.2272, 7.2269, 7.2275, 7.2272, 7.227, 7.2267, 7.2264, 7.2261, 7.2259, 7.2257, 7.2255, 7.2253, 7.225, 7.2248, 7.2247, 7.2245, 7.2242, 7.2241, 7.2239, 7.223, 7.222, 7.222, 7.2219, 7.2218, 7.2226, 7.2224, 7.2222, 7.2212, 7.2209, 7.2214, 7.2211, 7.2202, 7.2208, 7.2206, 7.2204, 7.2202, 7.2199, 7.2197, 7.2203, 7.2209, 7.2206, 7.2204, 7.2202, 7.2201, 7.22, 7.2191, 7.2189, 7.2187, 7.2184, 7.2191, 7.2188, 7.2186, 7.2202, 7.2201, 7.2208, 7.2208, 7.2206, 7.2204, 7.2202, 7.2199, 7.2196, 7.2193, 7.2191, 7.2188, 7.2186, 7.2184, 7.2183, 7.2181, 7.2187, 7.2185, 7.2185, 7.2177, 7.2175, 7.2181, 7.2179, 7.2178, 7.2178, 7.2176, 7.2182, 7.2188, 7.2194, 7.2192, 7.2192, 7.219, 7.2196, 7.2194, 7.2193, 7.2191, 7.2189, 7.2187, 7.2185, 7.2184, 7.219, 7.2187, 7.2185, 7.2191, 7.2197, 7.2194, 7.22, 7.2198, 7.2204, 7.221, 7.2207, 7.2205, 7.2202, 7.2199, 7.2196, 7.2195, 7.2201, 7.2208, 7.2207, 7.2204, 7.2202, 7.22, 7.22, 7.2198, 7.2195, 7.2192, 7.2192, 7.2198, 7.2197, 7.2203, 7.2201, 7.2199, 7.2197, 7.2195, 7.2195, 7.2193, 7.2199, 7.2197, 7.2196, 7.2193, 7.2193, 7.2193, 7.2191, 7.2189, 7.2187, 7.219, 7.2187, 7.2186, 7.2192, 7.2189, 7.2188, 7.2187, 7.2184, 7.2182, 7.2179, 7.2177, 7.2175, 7.2173, 7.2172, 7.2178, 7.2175, 7.2172, 7.217, 7.2167, 7.2173, 7.2173, 7.2179, 7.2176, 7.2181, 7.218, 7.2178, 7.2183, 7.2181, 7.2179, 7.2192, 7.2198, 7.2197, 7.2195, 7.2194, 7.22, 7.2206, 7.2204, 7.2203, 7.2202, 7.2208, 7.2208, 7.2205, 7.2204, 7.221, 7.2216, 7.2215, 7.2222, 7.222, 7.2218, 7.2218, 7.2216, 7.2223, 7.223, 7.2236, 7.2235, 7.2233, 7.223, 7.2228, 7.2233, 7.2231, 7.2228, 7.2234, 7.2231, 7.2228, 7.2225, 7.2223, 7.2221, 7.2219, 7.2216, 7.2214, 7.222, 7.2217, 7.2223, 7.2229, 7.2226, 7.2223, 7.2221, 7.2219, 7.2217, 7.2217, 7.2216, 7.2214, 7.2212, 7.2218, 7.2216, 7.2216, 7.2232, 7.2238, 7.2237, 7.2235, 7.2233, 7.223, 7.2229, 7.2235, 7.2232, 7.2229, 7.2227, 7.2225, 7.2223, 7.2221, 7.2219, 7.2225, 7.2224, 7.2222, 7.2228, 7.2225, 7.2222, 7.222, 7.2217, 7.2215, 7.2221, 7.2219, 7.2217, 7.2215, 7.2214, 7.2212, 7.2209, 7.2206, 7.2205, 7.2203, 7.2209, 7.2206, 7.2221, 7.2227, 7.2233, 7.223, 7.2227, 7.2226, 7.2225, 7.2225, 7.2222, 7.222, 7.2218, 7.2224, 7.2221, 7.222, 7.2218, 7.2216, 7.2213, 7.221, 7.2207, 7.2205, 7.2204, 7.2203, 7.2202, 7.22, 7.2198, 7.2196, 7.2194, 7.2191, 7.2189, 7.2195, 7.2194, 7.22, 7.2206, 7.2204, 7.221, 7.2208, 7.2206, 7.2213, 7.2219, 7.2242, 7.2248, 7.2246, 7.2243, 7.224, 7.224, 7.2238, 7.2236, 7.2233, 7.2239, 7.2236, 7.2242, 7.2241, 7.224, 7.2238, 7.2236, 7.2235, 7.2234, 7.224, 7.2239, 7.2237, 7.2234, 7.224, 7.2239, 7.2238, 7.2244, 7.2243, 7.224, 7.2241, 7.2247, 7.2245, 7.2243, 7.2241, 7.2238, 7.2237, 7.2235, 7.2233, 7.2231, 7.2229, 7.2226, 7.2224, 7.2221, 7.2218, 7.2216, 7.2214, 7.2212, 7.221, 7.2208, 7.2205, 7.2202, 7.22, 7.2198, 7.2204, 7.2201, 7.2215, 7.2221, 7.2218, 7.2216, 7.2213, 7.2219, 7.2225, 7.223, 7.2228, 7.2225, 7.2222, 7.2219, 7.2216, 7.2213, 7.2218, 7.2215, 7.2212, 7.221, 7.222, 7.2225, 7.2223, 7.2222, 7.2219, 7.2225, 7.2233, 7.2231, 7.2237, 7.2243, 7.2241, 7.2238, 7.2252, 7.2258, 7.2263, 7.2261, 7.2259, 7.2256, 7.2254, 7.2259, 7.2265, 7.2262, 7.2276, 7.2281, 7.2279, 7.2276, 7.2273, 7.227, 7.2268, 7.2265, 7.2262, 7.2259, 7.2265, 7.2262, 7.226, 7.2257, 7.2254, 7.2252, 7.2258, 7.2263, 7.2262, 7.226, 7.2251, 7.2248, 7.2253, 7.225, 7.2248, 7.2246, 7.2243, 7.2249, 7.2247, 7.2244, 7.2242, 7.2248, 7.2246, 7.2244, 7.225, 7.2249, 7.2248, 7.2245, 7.2244, 7.2244, 7.2243, 7.2241, 7.2239, 7.2245, 7.2243, 7.2241, 7.2247, 7.2252, 7.2249, 7.2247, 7.2245, 7.2243, 7.2241, 7.2247, 7.2245, 7.2243, 7.224, 7.2238, 7.2236, 7.2233, 7.2238, 7.2237, 7.2243, 7.2249, 7.2246, 7.2252, 7.2258, 7.2257, 7.2255, 7.227, 7.2268, 7.2265, 7.2262, 7.226, 7.2266, 7.2256, 7.2254, 7.2253, 7.2251, 7.2249, 7.2246, 7.2251, 7.228, 7.2286, 7.229, 7.2288, 7.228, 7.2278, 7.2275, 7.2272, 7.2269, 7.2283, 7.2284, 7.2308, 7.2306, 7.2311, 7.2308, 7.2314, 7.2312, 7.2309, 7.2314, 7.2319, 7.2324, 7.2322, 7.2328, 7.2333, 7.2338, 7.2343, 7.2341, 7.2339, 7.2337, 7.2335, 7.2344, 7.2341, 7.2339, 7.2337, 7.2338, 7.233, 7.2327, 7.2326, 7.2324, 7.2321, 7.2319, 7.2324, 7.2321, 7.2319, 7.2316, 7.2314, 7.2312, 7.2309, 7.2307, 7.2305, 7.2303, 7.2301, 7.2302, 7.23, 7.2297, 7.2294, 7.2291, 7.229, 7.2289, 7.2299, 7.2315, 7.2324, 7.233, 7.2328, 7.2325, 7.2322, 7.232, 7.2318, 7.2315, 7.2313, 7.2311, 7.2309, 7.2308, 7.2322, 7.2319, 7.2317, 7.2314, 7.2312, 7.2318, 7.2317, 7.2315, 7.2313, 7.231, 7.2307, 7.2306, 7.2303, 7.2301, 7.2307, 7.2314, 7.232, 7.2327, 7.2325, 7.233, 7.2329, 7.2326, 7.2336, 7.2334, 7.2331, 7.233, 7.2335, 7.234, 7.2339, 7.2337, 7.2336, 7.2333, 7.2333, 7.234, 7.2338, 7.2336, 7.2333, 7.2332, 7.2332, 7.2329, 7.2326, 7.2324, 7.2323, 7.2314, 7.232, 7.2318, 7.2316, 7.2321, 7.2318, 7.2315, 7.2313, 7.2322, 7.233, 7.2329, 7.233, 7.2338, 7.2336, 7.2345, 7.2344, 7.2349, 7.2354, 7.236]}
rtt5_3_7 = {'192.168.122.110': [5.7418, 5.5912, 5.7623, 5.8136, 6.8142, 5.9493, 6.7647, 5.6145, 7.7074, 10.9298, 7.6172, 5.9526, 7.2, 6.5827, 5.5602, 5.8513, 5.81, 6.8536, 6.0802, 17.602, 6.7866, 7.7755, 11.2736, 5.4832, 11.8182, 5.9073, 6.7189, 5.3635, 7.2784, 5.379, 5.2912, 11.4913, 11.5299, 10.8726, 5.9435, 5.8331, 5.3208, 5.4748, 11.6992, 6.9065, 5.5239, 5.7344, 11.2438, 18.1613, 5.6195, 12.1634, 6.2578, 22.3002, 5.311, 7.0944, 7.5758, 6.7163, 5.4159, 11.0042, 11.4937, 5.4042, 5.9385, 5.8849, 11.8179, 11.539, 7.1597, 5.379, 7.5817, 5.2736, 16.443, 7.0481, 5.4076, 5.45, 6.8381, 6.7081, 12.0151, 7.3781, 5.9516, 5.8839, 8.1282, 5.4452, 13.047, 5.3794, 5.6658, 12.0046, 7.4153, 6.7677, 6.2497, 10.8204, 5.4839, 6.7205, 5.7104, 5.5275, 5.2724, 5.8911, 5.3215, 6.9821, 8.559, 5.7766, 6.6798, 5.7213, 6.0017, 6.0022, 5.6901, 14.169, 7.2641, 5.5411, 11.831, 6.7291, 5.8498, 6.9916, 5.5454, 11.106, 7.19, 7.1571, 6.2933, 6.6957, 11.1473, 6.0964, 5.8696, 6.9008, 7.736, 5.4917, 11.9805, 5.4231, 5.5256, 5.373, 5.765, 5.7654, 5.4505, 10.8511, 5.6624, 5.4431, 7.2479, 11.4362, 5.4991, 5.6171, 11.3196, 5.8417, 5.393, 6.3946, 11.2491, 5.337, 5.415, 5.2719, 9.2359, 6.1848, 5.9154, 17.5953, 5.4929, 7.4434, 8.6834, 11.2009, 6.5482, 0.9754, 11.9412, 5.7795, 5.7061, 7.1058, 11.807, 12.6138, 5.3539, 5.2118, 5.8668, 8.0407, 5.7375, 5.8603, 12.6426, 6.2943, 7.7164, 10.8011, 11.2612, 11.3089, 5.383, 11.3721, 30.2, 5.708, 6.5193, 5.8839, 5.7106, 6.3088, 5.4991, 5.661, 5.7478, 10.6087, 6.9911, 6.8479, 5.9617, 5.7516, 5.3968, 5.5974, 6.8388, 6.3548, 21.2278, 5.6105, 7.062, 5.8208, 17.2422, 7.6184, 10.9956, 6.9187, 11.4303, 5.8017, 5.2738, 5.6026, 5.6942, 5.5709, 5.7378, 5.8072, 10.5624, 11.3566, 11.1203, 6.2106, 6.8407, 5.3704, 5.4088, 6.5238, 6.489, 8.3065, 7.0024, 1.0071, 10.8268, 5.4884, 5.5254, 8.5967, 11.0495, 11.0748, 5.6016, 5.5714, 5.9211, 5.6129, 6.6261, 6.8102, 6.5825, 17.5495, 5.7769, 5.6877, 11.132, 5.7285, 16.7601, 7.4415, 5.6131, 5.522, 7.7443, 5.5673, 6.1178, 11.0009, 10.5436, 5.7201, 7.4151, 5.5258, 5.5959, 7.2384, 5.6751, 16.2807, 11.4007, 5.3964, 6.4242, 7.3049, 5.4786, 6.6326, 7.1919, 5.5275, 6.1519, 6.6049, 6.0365, 6.0158, 7.045, 5.6663, 1.8182, 7.0906, 7.0586, 5.3859, 11.1737, 5.4119, 5.5752, 6.0337, 5.7766, 5.4593, 30.8173, 6.4254, 7.3693, 5.6705, 0.6154, 7.3366, 10.9227, 7.2227, 6.6149, 16.0146, 11.1823, 11.364, 5.4898, 7.0698, 5.7142, 6.3961, 11.4803, 5.4266, 5.7242, 5.4638, 5.9576, 7.7, 0.8557, 11.0607, 5.6114, 7.1723, 11.4491, 10.8805, 5.8744, 5.2636, 7.0059, 6.7978, 7.0403, 11.5914, 6.3066, 6.6798, 6.6686, 7.2031, 6.8548, 10.7169, 5.5342, 6.0618, 10.8116, 5.5482, 6.6886, 5.5013, 5.9843, 12.1019, 5.7216, 11.1966, 5.4545, 6.2807, 22.9719, 6.4881, 5.6856, 5.5254, 7.175, 5.6057, 8.5371, 5.9128, 5.4801, 11.6374, 6.0608, 1.8256, 5.4958, 12.4965, 5.7228, 5.5664, 10.494, 5.6648, 6.3374, 12.0685, 6.4294, 5.481, 7.0255, 5.7628, 5.5921, 5.5776, 7.1738, 11.4613, 6.0091, 12.0089, 5.4598, 10.2985, 6.8865, 11.5132, 5.981, 7.174, 7.3063, 5.5573, 5.8064, 5.4767, 2.3754, 1.3101, 6.8402, 6.8583, 5.3627, 9.0668], '192.168.122.116': [6.216, 5.6813, 6.1519, 5.6264, 16.3548, 6.8312, 6.9361, 5.4777, 11.0321, 5.7559, 11.9383, 5.8777, 5.5287, 5.2731, 6.753, 6.1119, 7.2286, 7.0581, 16.649, 5.8382, 5.5168, 10.9491, 5.4035, 5.4214, 5.5687, 7.6652, 11.0776, 6.8538, 11.0886, 5.8978, 6.3112, 6.3014, 5.4126, 6.2237, 10.5853, 5.919, 10.3533, 10.9162, 11.7607, 6.0871, 6.8052, 11.5182, 6.104, 5.722, 5.5659, 6.7904, 11.1268, 5.3473, 5.3897, 6.5091, 5.7421, 7.0274, 11.3978, 6.0103, 6.1162, 6.9284, 5.7847, 5.981, 5.4307, 12.2597, 7.1595, 5.5134, 5.9595, 10.488, 10.9036, 10.9611, 5.3332, 7.4203, 6.2861, 5.811, 6.2077, 7.1263, 6.2337, 5.729, 5.9085, 5.4502, 6.1448, 7.0486, 5.5673, 11.4028, 6.4509, 6.2296, 5.6634, 5.4302, 5.5616, 5.4994, 6.3832, 6.0358, 10.761, 5.4619, 10.9484, 5.6589, 11.3826, 11.3394, 6.8953, 5.7318, 5.6829, 5.1816, 5.3425, 5.4991, 6.5563, 6.0608, 5.5804, 5.7199, 10.4501, 10.9031, 5.6281, 6.2897, 6.4485, 6.6605, 5.7552, 5.5416, 5.7631, 40.4885, 5.9803, 6.7978, 6.8071, 22.315, 5.409, 5.9483, 6.8612, 5.9891, 6.7644, 6.783, 6.3529, 6.5448, 5.4414, 5.2922, 11.3931, 5.6753, 6.0577, 5.3864, 10.9446, 5.4319, 6.6347, 5.4369, 5.9743, 5.6903, 5.7526, 5.882, 5.8124, 5.8129, 6.7451, 5.3389, 7.2832, 5.6095, 6.9585, 6.3167, 5.9888, 0.9103, 11.1032, 11.3683, 6.3043, 6.861, 12.0127, 11.9112, 12.0702, 5.9018, 11.3966, 6.2799, 17.1914, 5.666, 21.8124, 11.2901, 5.7576, 5.549, 5.6279, 7.3855, 5.3768, 6.4294, 5.532, 5.9936, 6.3674, 11.2593, 5.5506, 11.112, 6.8645, 6.7275, 6.4547, 5.7244, 11.5461, 5.5125, 17.1847, 5.7936, 5.8708, 11.389, 5.5456, 5.4336, 10.8123, 7.2916, 6.7711, 5.8489, 6.2656, 16.5453, 5.7313, 7.0677, 5.6717, 10.9613, 5.7576, 11.2114, 6.4046, 6.5231, 6.2513, 11.9674, 11.0407, 11.3118, 16.5284, 6.0081, 6.4995, 6.4263, 5.2841, 6.3827, 5.3813, 11.0033, 22.4736, 11.8887, 11.2886, 5.4426, 5.939, 5.4901, 5.8551, 5.6243, 6.3825, 5.6431, 5.4741, 6.6059, 5.7518, 11.3318, 11.1015, 5.7535, 6.0043, 5.8279, 10.7601, 5.4657, 5.975, 5.6672, 5.5754, 6.8443, 5.7919, 5.625, 5.7113, 11.1432, 6.4065, 11.0292, 8.5962, 6.35, 6.273, 11.7998, 6.0387, 5.6286, 11.1685, 5.6834, 6.4235, 6.8674, 6.4013, 5.779, 5.394, 10.9668, 12.3765, 16.8364, 5.3957, 17.5536, 6.0606, 6.0425, 1.0397, 6.6884, 5.5888, 6.6731, 5.5988, 5.5385, 5.3682, 11.4405, 17.4673, 6.5899, 5.5494, 5.343, 6.8753, 5.6157, 16.3419, 5.7576, 6.2788, 6.4104, 6.1543, 5.4126, 5.7204, 11.193, 6.1748, 6.18, 5.7056, 5.9068, 11.5561, 10.8149, 6.3784, 7.0195, 11.873, 6.8901, 6.2952, 5.6469, 6.1886, 11.8244, 6.0999, 5.3852, 6.7391, 6.0637, 6.8183, 7.3712, 5.6927, 6.2187, 10.8292, 11.204, 5.9144, 5.882, 6.1252, 6.0973, 6.0225, 5.4183, 6.0189, 5.3015, 6.4974, 10.9811, 10.8593, 6.299, 7.22, 11.1675, 6.0983, 5.362, 5.2299, 5.9547, 11.8368, 7.472, 5.4321, 19.0353, 5.8923, 5.403, 5.6219, 12.5532, 11.0545, 6.4905, 6.2957, 11.3742, 6.3882, 10.9184, 5.6689, 5.3051, 11.2586, 7.0601, 6.3927, 16.7482, 6.6493, 6.4235, 6.4657, 12.6224, 10.6783, 5.775, 16.8424, 6.0129, 10.9315, 5.4367, 5.9118, 11.7278, 10.8495, 12.0196, 6.1953, 6.1107, 7.3748, 22.7888, 1.6785, 0.5362, 5.3549, 6.4311, 5.5668, 11.9424], '192.168.122.114': [10.9031, 11.5664, 10.9518, 5.6214, 5.8041, 5.5125, 6.0971, 5.4414, 10.8771, 11.4815, 5.2669, 10.6688, 6.3779, 6.7213, 11.7977, 6.6776, 6.1665, 5.6741, 10.9823, 1.5109, 5.5058, 5.6579, 6.9532, 10.9599, 7.6034, 6.9201, 6.6569, 11.5786, 5.5001, 12.6204, 11.0672, 11.4577, 6.7251, 5.9998, 5.6782, 5.5809, 5.3005, 10.8206, 5.2981, 17.0293, 11.1237, 5.7518, 5.6415, 6.2604, 5.6021, 5.4519, 5.5871, 5.6274, 6.6001, 6.8409, 6.969, 5.8279, 11.2758, 11.9972, 6.0947, 5.3663, 5.4011, 11.8561, 5.6002, 5.8088, 10.7033, 17.2269, 5.3499, 5.3923, 5.4638, 5.8937, 5.4607, 17.6828, 5.8377, 11.3044, 5.6679, 11.1251, 10.9928, 26.8269, 6.7902, 5.4581, 6.134, 11.6513, 5.537, 6.2802, 6.3729, 5.8947, 6.2342, 5.8503, 5.7216, 11.2495, 5.7788, 6.4244, 6.4802, 10.7617, 10.8581, 5.2049, 11.2762, 12.8372, 5.4688, 5.8925, 5.9094, 6.3875, 5.78, 5.6815, 7.9737, 6.5231, 8.1785, 6.3789, 5.3246, 5.748, 5.4901, 6.3441, 5.8601, 6.7606, 16.9299, 15.8, 5.3675, 6.767, 11.2867, 7.1023, 5.614, 10.8783, 5.4615, 5.482, 5.7585, 5.2743, 6.1584, 10.932, 10.864, 10.905, 6.1932, 5.3847, 5.5637, 5.8703, 6.0258, 10.7327, 5.5437, 10.9737, 6.2551, 5.5256, 6.8855, 5.9114, 5.9979, 5.6314, 5.5771, 5.3258, 5.8725, 10.6068, 7.4475, 6.7189, 28.0523, 5.2152, 5.7058, 6.5403, 6.006, 5.6176, 5.3415, 6.371, 6.8452, 11.6007, 6.0647, 6.0825, 6.3488, 5.8033, 5.636, 12.0718, 5.5845, 11.3583, 5.6703, 5.6295, 11.1306, 6.1595, 6.3851, 10.9184, 6.0976, 5.6672, 10.4206, 5.3046, 5.4238, 6.3941, 5.4419, 6.1512, 6.3381, 5.7688, 7.8802, 6.0396, 6.4504, 11.5125, 25.9848, 5.9292, 5.9831, 6.2494, 5.852, 7.3745, 11.3456, 11.7784, 6.5598, 17.2217, 5.2783, 5.9762, 10.8957, 10.9987, 10.4444, 5.5993, 11.2004, 5.8062, 6.1073, 7.0877, 10.8173, 11.3819, 17.0045, 11.4543, 11.1463, 6.525, 5.8472, 11.1196, 5.5635, 6.2337, 5.6171, 5.5089, 7.1239, 5.8186, 5.9078, 0.7417, 11.1837, 7.1104, 11.4551, 10.7677, 6.0511, 8.0519, 5.8353, 5.5656, 6.4692, 6.6185, 6.16, 5.2042, 5.8401, 11.0586, 5.626, 6.8784, 6.2971, 5.4672, 6.7306, 7.1175, 5.8334, 11.3616, 5.7595, 6.6719, 6.6531, 11.1542, 6.4104, 6.196, 6.1226, 6.0155, 6.7103, 11.2324, 10.4861, 5.4445, 6.505, 6.4635, 5.8198, 5.6329, 7.0586, 11.8961, 11.5089, 5.9555, 5.7678, 5.5344, 1.435, 6.254, 13.2563, 5.5842, 10.9031, 6.1932, 6.2408, 5.9581, 5.6884, 6.6209, 10.5026, 5.7805, 6.9482, 6.1011, 5.7356, 12.8975, 6.2904, 6.2952, 6.3379, 10.6854, 5.9757, 10.9677, 5.5068, 1.3182, 6.4189, 10.7729, 5.4607, 5.662, 6.4826, 5.7478, 5.7232, 11.9548, 0.8645, 5.8742, 11.3358, 10.989, 6.0308, 5.306, 5.4579, 10.9606, 6.8755, 12.8193, 5.5733, 11.9109, 5.3751, 7.5331, 6.13, 6.5992, 7.288, 5.4162, 5.3718, 6.8867, 5.3906, 6.223, 22.402, 5.2879, 11.1284, 7.3094, 6.0823, 5.2543, 5.7211, 10.9792, 6.3937, 5.4312, 7.1144, 11.6792, 7.2868, 5.842, 11.7245, 5.5041, 5.6791, 6.5742, 5.4877, 11.2717, 6.4096, 10.8447, 0.849, 10.8883, 10.9553, 5.2209, 5.8749, 11.0869, 5.7111, 11.2472, 5.6298, 11.2059, 6.4101, 6.3767, 5.9397, 6.3961, 12.0356, 11.0033, 10.8898, 11.0526, 11.2648, 6.5708, 10.7749, 7.0539, 5.7871, 5.9421, 6.9363, 6.3424, 1.7903, 0.6416, 10.9346, 11.2748, 11.6773, 12.8179], '192.168.122.113': [5.6868, 5.3084, 6.6319, 5.7895, 5.6329, 6.701, 5.584, 5.5737, 11.6305, 10.8993, 7.103, 6.0372, 5.5537, 6.9289, 13.2542, 5.9576, 5.5223, 5.8372, 6.943, 0.9937, 5.6937, 16.5586, 6.429, 5.5013, 5.6498, 5.8146, 6.1452, 6.3822, 10.9558, 5.3992, 11.4341, 11.5414, 5.8701, 6.1724, 6.351, 5.4796, 10.721, 6.9346, 5.4827, 10.7784, 5.8019, 5.8038, 6.3367, 5.4977, 11.2736, 11.0476, 11.2445, 5.5647, 11.0016, 5.8739, 11.4868, 5.5387, 5.5468, 13.4237, 6.2149, 10.9129, 5.8455, 10.4182, 11.797, 5.8455, 5.4331, 5.481, 5.9214, 5.3482, 11.1296, 5.2755, 6.398, 11.5507, 16.0899, 5.2559, 11.1871, 7.2346, 6.7916, 6.0351, 5.3606, 5.9965, 11.5702, 6.2802, 5.5015, 6.3045, 11.4088, 5.7175, 6.2058, 11.7114, 5.2521, 5.7049, 6.3686, 6.4893, 11.447, 11.0378, 7.6435, 6.2275, 11.2469, 11.1513, 11.404, 7.2887, 6.6838, 10.7729, 16.6698, 5.5549, 5.4896, 5.9648, 5.666, 6.9416, 6.3536, 12.9912, 5.5988, 6.5243, 11.4441, 5.4715, 0.6876, 5.6641, 5.8479, 6.8402, 5.7178, 10.8738, 6.1681, 5.4433, 6.2437, 6.2811, 5.9736, 5.6353, 16.372, 11.0989, 11.075, 6.3913, 6.4514, 5.9984, 6.9621, 6.5203, 11.0066, 6.5782, 6.1083, 11.411, 11.8518, 10.8862, 7.4401, 11.4796, 11.8539, 5.764, 10.7622, 11.2331, 6.5286, 5.4734, 6.5496, 5.8289, 6.4566, 6.2551, 6.2928, 5.6288, 6.4704, 16.0139, 17.1504, 6.9683, 6.0194, 16.4127, 22.0706, 17.4413, 5.9767, 6.3486, 5.8875, 5.6212, 5.9614, 5.409, 6.026, 5.59, 11.3883, 11.4307, 17.3185, 6.5196, 6.2647, 6.3815, 5.8782, 5.4135, 5.969, 6.4347, 11.1444, 10.8371, 5.8584, 11.4081, 5.6071, 16.8617, 10.7272, 10.9575, 6.3682, 5.9404, 11.4443, 10.9978, 5.3387, 6.2351, 5.5625, 5.4166, 5.5871, 6.4223, 10.6349, 6.7322, 6.0689, 5.5628, 5.8703, 5.8117, 5.6996, 11.1265, 6.16, 28.5983, 5.8534, 6.3033, 11.4424, 6.0005, 6.2542, 5.2917, 5.8594, 10.5739, 5.5943, 6.4955, 5.8317, 5.7843, 10.9928, 5.403, 7.0593, 0.664, 5.8265, 5.4927, 6.8812, 6.4151, 5.4908, 11.4543, 16.4399, 5.8324, 5.7278, 6.6757, 6.0663, 5.3673, 11.1845, 6.0689, 5.4877, 11.8833, 5.4417, 6.8815, 5.7786, 6.1247, 5.8258, 11.4627, 11.3444, 6.5451, 6.9764, 5.434, 5.4743, 5.8079, 5.5077, 10.7801, 0.8874, 6.4361, 5.296, 6.6998, 5.3372, 10.9968, 6.5618, 6.5463, 6.32, 6.7945, 5.8818, 10.7825, 7.225, 6.1839, 12.1679, 12.4755, 6.6805, 10.9401, 5.9199, 5.7349, 6.592, 12.7192, 5.362, 5.4224, 6.0389, 5.4321, 7.5016, 5.3635, 5.6696, 5.4545, 10.746, 11.5001, 5.3065, 5.3437, 5.2726, 5.9898, 5.4126, 1.1477, 5.3134, 5.4986, 5.841, 11.8852, 5.5194, 10.9091, 5.5075, 18.0783, 0.6781, 5.4424, 5.429, 5.7859, 6.1865, 5.388, 6.8626, 6.3474, 6.9685, 6.3252, 10.7238, 6.4156, 6.0661, 6.6092, 6.8543, 16.5091, 6.2206, 17.3028, 6.1226, 5.4913, 5.517, 5.5153, 6.4008, 5.3706, 6.7642, 6.1557, 11.1396, 5.8224, 6.3164, 5.4116, 5.2605, 10.6194, 5.9302, 7.6964, 7.6387, 11.5385, 5.5261, 6.1085, 6.6998, 11.1411, 5.1959, 13.9742, 10.9434, 11.3432, 7.7698, 6.4168, 6.0475, 5.8963, 6.7217, 5.5571, 11.2929, 15.9118, 11.9593, 6.4049, 11.0693, 6.366, 12.1486, 5.661, 6.2129, 6.2041, 16.2616, 6.259, 6.2733, 6.8326, 11.3366, 6.7275, 11.2216, 11.5855, 6.4054, 11.5452, 1.961, 0.6692, 5.4557, 11.1191, 6.0055, 5.7545], '192.168.122.112': [11.1682, 5.5051, 11.4298, 5.553, 5.3208, 5.7635, 5.3575, 5.6124, 6.5689, 5.6558, 7.1027, 11.0595, 5.4808, 10.8654, 6.777, 6.0601, 5.8117, 11.344, 6.15, 3.5248, 5.4963, 6.6192, 5.796, 10.8788, 5.796, 8.0986, 6.8352, 10.4513, 6.1119, 5.9981, 16.9849, 5.8117, 5.7292, 6.3896, 6.0718, 11.1439, 5.4517, 5.399, 6.0773, 5.8272, 5.9524, 17.5586, 5.7409, 5.5585, 11.3754, 5.5602, 5.3959, 5.5535, 6.3982, 6.0024, 6.0334, 6.2044, 6.2125, 12.2447, 6.8073, 6.9389, 11.2379, 5.8699, 5.8556, 5.3654, 11.1525, 5.3568, 5.3391, 10.3784, 5.9617, 11.0059, 6.5506, 12.4283, 5.7082, 10.8709, 5.4467, 6.9239, 6.4628, 11.965, 6.1052, 6.0277, 10.783, 10.9708, 5.6398, 6.9468, 6.2411, 6.2397, 5.8513, 5.7597, 5.3968, 5.3892, 10.8407, 10.8173, 11.1113, 10.9417, 11.0292, 6.1307, 12.8794, 5.7764, 6.398, 5.7416, 6.4571, 6.3097, 5.2013, 5.4674, 36.0093, 6.3105, 6.7997, 5.5382, 5.8284, 6.4924, 5.4941, 7.2474, 5.6167, 7.2684, 0.6182, 11.3413, 6.0015, 6.825, 6.1238, 6.2609, 1.5457, 11.1399, 5.3256, 6.4855, 23.1094, 10.7505, 10.8647, 11.7874, 6.0277, 5.7476, 5.2068, 10.9172, 5.722, 10.9782, 5.63, 6.7875, 6.6931, 5.7018, 5.358, 6.541, 5.5387, 11.3034, 6.1376, 5.5027, 10.7942, 6.875, 5.81, 10.7367, 5.698, 22.9304, 5.5716, 6.0711, 5.959, 6.1214, 11.2922, 11.6313, 5.6851, 6.5541, 5.7487, 6.9716, 5.6562, 5.4462, 5.8525, 7.1845, 17.0591, 17.4079, 6.0673, 6.5892, 7.0977, 5.7917, 12.567, 5.6858, 5.8799, 5.9283, 16.4685, 6.3598, 11.0219, 5.7397, 5.7948, 5.9712, 10.8855, 10.9458, 6.4845, 5.6837, 6.9287, 10.9091, 5.9965, 10.874, 11.0719, 7.6275, 5.2354, 6.5987, 5.2307, 5.2271, 11.375, 5.3234, 6.5041, 11.0083, 22.3899, 7.1034, 10.4954, 10.9792, 5.378, 11.843, 10.6583, 6.33, 5.6281, 6.011, 5.8382, 5.517, 11.8434, 6.9897, 5.7819, 10.8426, 0.8812, 6.7525, 11.2917, 6.1157, 5.6031, 11.3926, 11.23, 5.6157, 6.9525, 0.7479, 7.2491, 6.8934, 6.1638, 11.3225, 10.9286, 6.2668, 5.6481, 6.0792, 6.3179, 5.5406, 12.126, 6.2068, 11.9627, 11.0567, 11.3211, 5.6007, 6.3689, 6.9034, 7.1576, 5.2335, 5.7237, 6.3963, 11.4725, 16.9244, 10.5932, 11.8115, 5.6899, 5.877, 5.6977, 5.748, 0.8471, 6.4647, 5.271, 5.7914, 7.2386, 5.7261, 10.7887, 5.7318, 6.1831, 11.9271, 5.6839, 6.0198, 5.6956, 6.0451, 6.2463, 6.9788, 6.7651, 5.4085, 7.5438, 16.7279, 5.3241, 5.4219, 5.2664, 5.904, 5.9352, 5.4774, 6.6934, 10.987, 5.7256, 17.5037, 6.1684, 6.4526, 5.9984, 11.0357, 7.3524, 6.3622, 6.726, 2.1064, 5.6715, 5.8606, 5.3957, 23.7916, 5.7654, 5.8727, 5.2168, 5.6908, 0.7579, 11.2338, 6.7272, 10.9372, 6.7909, 5.9395, 6.2962, 10.8454, 5.3694, 5.6026, 5.4162, 6.5119, 11.3738, 5.5714, 5.4266, 5.4798, 6.9532, 5.5587, 6.608, 11.0195, 11.0242, 5.7189, 6.464, 6.7937, 10.8125, 7.7326, 5.9063, 6.8712, 5.5048, 5.6436, 5.9006, 5.3337, 7.8127, 6.8052, 18.2049, 6.9659, 6.1638, 5.4469, 5.6505, 22.2657, 6.0112, 5.5175, 5.7909, 10.6876, 6.4316, 10.9839, 7.4825, 5.9266, 7.0181, 6.8278, 10.7493, 5.4255, 5.9695, 10.8473, 11.0326, 11.3068, 11.9221, 5.7051, 6.4399, 6.3639, 11.1055, 10.8392, 5.3728, 5.7194, 6.7816, 5.8725, 5.6951, 5.5377, 5.6014, 12.5191, 2.1255, 0.6893, 5.3668, 5.8596, 6.175, 6.5114], '192.168.122.111': [6.6345, 6.1345, 6.3729, 7.261, 5.2731, 11.1215, 11.27, 5.594, 11.4608, 27.3635, 6.4099, 5.4297, 6.5155, 6.4731, 5.5912, 6.5651, 5.9199, 18.3983, 6.3841, 2.8131, 11.1773, 5.9786, 16.9294, 11.2877, 6.5246, 11.796, 5.3301, 5.7089, 5.9712, 23.0181, 11.096, 6.3722, 17.1824, 6.4294, 11.0197, 11.1296, 5.3082, 10.4997, 5.2042, 11.1148, 5.3852, 5.9419, 7.3678, 5.363, 11.3537, 5.9631, 5.2211, 5.5039, 6.3953, 5.3444, 12.0678, 6.7139, 6.1913, 5.9469, 5.3763, 10.8764, 11.2388, 6.6051, 6.0954, 16.7813, 5.9476, 5.2891, 6.5145, 10.4053, 5.492, 5.8062, 5.5833, 5.6622, 17.4685, 11.0044, 5.4612, 11.4181, 24.358, 10.9622, 11.3754, 5.6493, 6.15, 5.6856, 6.4421, 5.6918, 11.9996, 5.9552, 5.4173, 5.8146, 5.8181, 6.2189, 17.3972, 10.8864, 11.1234, 7.5855, 6.5067, 5.5256, 6.5122, 6.0201, 5.425, 12.0051, 5.8804, 5.3918, 5.8558, 5.8122, 5.9597, 5.4164, 19.8553, 6.2449, 6.2222, 6.8593, 10.7393, 6.0139, 6.4764, 6.839, 1.1322, 11.308, 6.7642, 11.1268, 6.0582, 10.9072, 6.6335, 6.4712, 12.1634, 5.9755, 5.7786, 21.5223, 5.2485, 6.9849, 6.072, 10.9022, 5.2955, 5.9011, 5.5103, 5.6365, 6.8648, 11.2667, 5.8486, 11.4312, 5.3663, 5.8577, 6.2287, 8.3051, 5.3303, 5.3377, 5.9204, 5.8939, 6.66, 6.1607, 6.443, 11.1046, 5.7039, 11.138, 6.6156, 10.8523, 11.2746, 11.4753, 10.8488, 5.3558, 6.1738, 11.3163, 5.9955, 5.9049, 11.4999, 6.8879, 6.0723, 7.0066, 5.7096, 11.641, 5.5873, 5.7375, 6.7115, 5.6176, 6.8018, 5.585, 5.7802, 5.8568, 10.4933, 5.4286, 16.042, 5.4142, 5.3203, 6.0227, 10.8521, 11.631, 5.631, 5.321, 5.3446, 5.43, 5.9102, 6.8872, 5.5501, 10.9708, 5.4729, 5.4355, 5.1756, 6.1605, 5.8086, 5.7037, 10.8449, 5.9984, 5.2519, 11.0745, 5.918, 5.2462, 5.619, 6.7461, 6.8197, 6.0282, 5.8889, 5.6586, 5.4984, 16.196, 5.8639, 6.4399, 0.7203, 5.8258, 6.4514, 6.0477, 6.566, 5.1823, 11.0316, 17.8201, 5.9121, 0.7136, 11.6415, 11.1032, 5.5616, 10.7911, 5.512, 11.519, 6.2084, 11.3115, 6.5296, 10.2863, 16.0427, 5.2853, 10.9529, 5.8048, 6.1698, 11.4539, 5.4581, 5.3978, 5.9166, 10.735, 5.4994, 6.5103, 11.7834, 10.9813, 10.9751, 6.5234, 11.2023, 11.3914, 11.4379, 5.8112, 0.7119, 5.6162, 6.4113, 5.7056, 10.4713, 6.3665, 11.2405, 5.4541, 11.622, 11.8814, 11.2131, 10.8385, 6.4104, 5.481, 21.9378, 5.6574, 6.8638, 5.4331, 11.2338, 6.3093, 11.2498, 6.4931, 10.7641, 6.3014, 5.2681, 10.7012, 5.6696, 5.9721, 6.1009, 5.6446, 7.2432, 6.4073, 5.4643, 5.2562, 5.765, 6.4545, 12.0897, 1.4639, 5.5518, 5.3215, 5.8801, 5.5707, 7.123, 11.1296, 5.7869, 11.4949, 6.4487, 5.388, 6.8591, 11.8008, 5.7652, 5.2509, 5.4469, 10.9112, 6.0425, 11.2166, 5.4004, 6.2778, 5.7395, 11.5163, 6.9625, 5.594, 6.6011, 6.2408, 6.618, 5.3225, 5.3413, 5.6376, 7.4029, 21.2684, 6.1805, 5.7323, 5.6312, 11.5707, 6.4867, 16.2802, 6.3066, 5.6565, 6.7551, 7.4124, 7.2184, 6.9749, 7.0655, 6.922, 10.9255, 11.4038, 5.3391, 10.7393, 10.8893, 10.8671, 6.8126, 5.7025, 5.3096, 5.2793, 5.6324, 5.3627, 5.4815, 5.769, 12.6433, 6.4793, 5.7907, 7.2279, 5.9752, 5.6522, 11.5063, 6.0449, 6.0046, 5.5757, 5.5163, 5.4588, 5.3062, 7.1051, 11.2276, 11.2698, 11.0755, 5.5482, 1.3607, 0.6292, 5.5237, 5.2774, 5.5358, 5.8711]}
cpu5_3_7 = [19.0, 30.3, 0.4, 1.0, 1.1, 0.6, 1.4, 1.6, 1.1, 1.4, 1.0, 0.2, 0.2, 0.7, 1.7, 0.0, 0.4, 1.4, 2.5, 1.6, 1.5, 4.2, 3.1, 0.6, 0.9, 0.5, 0.2, 0.3, 0.6, 0.5, 1.0, 1.8, 0.5, 1.6, 0.3, 0.4, 0.0, 0.0, 0.8, 1.1, 1.9, 3.1, 0.8, 0.8, 1.6, 1.3, 0.2, 0.6, 0.2, 1.2, 0.8, 0.3, 0.4, 0.5, 0.2, 0.4, 0.7, 1.6, 1.2, 0.1, 0.4, 0.1, 0.1, 1.4, 0.1, 0.6, 0.2, 0.8, 2.2, 0.9, 1.2, 0.9, 1.4, 5.6, 5.2, 0.2, 0.6, 0.6, 0.5, 0.4, 0.2, 0.5, 1.6, 1.2, 0.9, 0.9, 0.2, 1.0, 1.2, 0.6, 0.9, 0.3, 1.0, 0.5, 3.6, 4.1, 0.8, 0.5, 0.2, 0.5, 0.1, 0.5, 0.6, 1.0, 0.7, 1.3, 0.6, 0.6, 0.3, 0.1, 0.1, 0.1, 0.8, 0.8, 0.3, 0.6, 1.0, 1.5, 0.2, 0.2, 0.2, 1.2, 1.4, 0.1, 0.4, 0.2, 0.7, 0.5, 2.0, 3.4, 0.6, 0.8, 1.7, 0.3, 0.3, 0.5, 0.6, 0.5, 1.1, 1.1, 1.2, 0.9, 0.2, 0.4, 0.2, 0.6, 0.6, 2.5, 2.5, 0.8, 0.7, 0.1, 1.8, 2.1, 0.4, 1.5, 1.8, 1.8, 1.7, 0.4, 0.8, 0.5, 2.4, 1.1, 1.0, 1.1, 1.2, 2.4, 2.6, 1.2, 1.8, 1.8, 0.1, 0.2, 0.6, 0.3, 0.1, 4.7, 4.7, 0.4, 0.3, 0.7, 0.7, 1.0, 1.0, 0.8, 0.4, 1.4, 1.1, 1.1, 1.7, 1.0, 0.2, 1.2, 0.8, 1.3, 0.1, 1.0, 0.5, 0.8, 0.5, 0.6, 0.8, 1.2, 1.6, 1.1, 0.1, 1.1, 0.8, 0.7, 0.4, 0.5, 1.2, 0.6, 0.4, 0.1, 0.3, 0.8, 0.7, 0.4, 1.3, 1.2, 0.9, 0.5, 0.7, 0.1, 1.1, 0.3, 0.8, 0.4, 1.4, 1.1, 1.5, 0.6, 0.8, 2.1, 1.4, 1.4, 1.6, 1.7, 1.2, 0.4, 0.4, 1.4, 3.2, 3.7, 0.9, 0.0, 0.5, 0.3, 0.6, 0.5, 0.6, 0.1, 0.1, 0.2, 0.4, 0.0, 0.8, 0.1, 0.3, 0.8, 0.3, 0.4, 6.1, 7.2, 0.2, 0.7, 0.1, 0.1, 1.1, 0.0, 1.4, 0.0, 0.2, 5.6, 5.5, 1.9, 1.7, 1.5, 0.8, 2.1, 2.0, 0.8, 0.4, 2.2, 1.9, 0.3, 0.1, 0.6, 0.8, 4.3, 4.3, 1.4, 1.4, 0.1, 0.2, 1.9, 3.3, 0.7, 0.2, 1.1, 0.4, 0.6, 1.4, 1.5, 1.7, 1.2, 0.5, 1.4, 0.8, 1.7, 0.5, 0.2, 0.5, 0.5, 0.3, 0.7, 0.1, 0.9, 1.5, 0.4, 1.4, 0.4, 0.8, 1.3, 0.6, 1.6, 8.4, 6.4, 5.6, 4.9, 0.5, 0.3, 2.1, 2.4, 2.2, 0.3, 1.1, 2.4, 2.4, 2.7, 1.0, 2.3, 0.6, 3.1, 3.2, 1.1, 0.0, 0.2, 1.4, 3.1, 2.1, 0.0, 0.6, 0.3, 5.1, 3.2, 0.5, 1.4, 0.4, 0.2, 0.7, 1.0, 0.6, 0.5, 0.2, 2.0, 0.3, 0.6, 0.5, 1.1]
off_mec5_3_7 = 242
off_cloud5_3_7 = 264
inward_mec5_3_7 = 180
loc5_3_7 = 763
deadlock5_3_7 = [6]
memory5_3_7 = [0.2175, 0.218, 0.218, 0.2185, 0.2186, 0.2186, 0.2187, 0.2187, 0.2187, 0.2187, 0.2187, 0.2188, 0.2189, 0.2189, 0.2189, 0.219, 0.219, 0.219, 0.219, 0.219, 0.2191, 0.2191, 0.2191, 0.2192, 0.2192, 0.2192, 0.2193, 0.2193, 0.2193, 0.2195, 0.2195, 0.2195, 0.2195, 0.2195, 0.2195, 0.2196, 0.2196, 0.2196, 0.22, 0.2201, 0.2201, 0.2201, 0.2201, 0.2202, 0.2202, 0.2203, 0.2203, 0.2204, 0.2204, 0.2204, 0.2205, 0.2205, 0.2205, 0.2205, 0.2205, 0.2206, 0.2206, 0.2206, 0.2206, 0.2208, 0.2208, 0.2208, 0.2208, 0.2208, 0.2208, 0.2208, 0.2208, 0.2209, 0.2209, 0.2209, 0.2209, 0.2209, 0.221, 0.221, 0.221, 0.2211, 0.2212, 0.2212, 0.2212, 0.2212, 0.2212, 0.2212, 0.2212, 0.2212, 0.2212, 0.2212, 0.2212, 0.2212, 0.2212, 0.2213, 0.2213, 0.2213, 0.2213, 0.2214, 0.2214, 0.2215, 0.2215, 0.2215, 0.2215, 0.2217, 0.2217, 0.2218, 0.2218, 0.2218, 0.2218, 0.2218, 0.2219, 0.2219, 0.2221, 0.2221, 0.2221, 0.2222, 0.2222, 0.2223, 0.2223, 0.2223, 0.2223, 0.2223, 0.2223, 0.2223, 0.2223, 0.2223, 0.2223, 0.2223, 0.2223, 0.2223, 0.2223, 0.2224, 0.2224, 0.2224, 0.2225, 0.2225, 0.2225, 0.2225, 0.2225, 0.2225, 0.2227, 0.2228, 0.2229, 0.2229, 0.2229, 0.2229, 0.2229, 0.2229, 0.223, 0.223, 0.223, 0.223, 0.223, 0.223, 0.2231, 0.2231, 0.2232, 0.2232, 0.2232, 0.2232, 0.2232, 0.2232, 0.2234, 0.2234, 0.2235, 0.2235, 0.2235, 0.2235, 0.2235, 0.2235, 0.2236, 0.2236, 0.2236, 0.2236, 0.2236, 0.2236, 0.2237, 0.2237, 0.2238, 0.2238, 0.2238, 0.2238, 0.2238, 0.2238, 0.2238, 0.2238, 0.2239, 0.2239, 0.2239, 0.2239, 0.2239, 0.2239, 0.224, 0.224, 0.224, 0.224, 0.224, 0.224, 0.224, 0.224, 0.224, 0.2241, 0.2242, 0.2243, 0.2243, 0.2243, 0.2245, 0.2245, 0.2245, 0.2245, 0.2247, 0.2247, 0.2248, 0.2248, 0.2248, 0.2249, 0.2249, 0.2249, 0.2249, 0.2249, 0.2249, 0.2249, 0.2249, 0.2249, 0.2249, 0.225, 0.225, 0.225, 0.225, 0.225, 0.225, 0.2251, 0.2252, 0.2252, 0.2252, 0.2252, 0.2252, 0.2252, 0.2253, 0.2253, 0.2253, 0.2253, 0.2253, 0.2253, 0.2254, 0.2254, 0.2254, 0.2254, 0.2254, 0.2254, 0.2254, 0.2254, 0.2255, 0.2255, 0.2255, 0.2255, 0.2255, 0.2256, 0.2256, 0.2256, 0.2256, 0.2256, 0.2256, 0.2256, 0.2257, 0.2257, 0.2258, 0.2258, 0.2258, 0.2258, 0.2258, 0.2258, 0.2258, 0.2258, 0.2258, 0.2258, 0.2258, 0.2258, 0.2258, 0.2258, 0.2259, 0.2259, 0.2259, 0.2259, 0.2259, 0.2259, 0.2259, 0.2259, 0.226, 0.226, 0.226, 0.2262, 0.2263, 0.2263, 0.2263, 0.2263, 0.2263, 0.2263, 0.2263, 0.2264, 0.2265, 0.2265, 0.2265, 0.2265, 0.2265, 0.2265, 0.2265, 0.2265, 0.2266, 0.2266, 0.2266, 0.2266, 0.2266, 0.2266, 0.2266, 0.2266, 0.2266, 0.2266, 0.2267, 0.2267, 0.2267, 0.2268, 0.2268, 0.2268, 0.2268, 0.2268, 0.2268, 0.2268, 0.2268, 0.2268, 0.2269, 0.227, 0.227, 0.2271, 0.2271, 0.2275, 0.2278, 0.2278, 0.2279, 0.228, 0.228, 0.228, 0.228, 0.228, 0.228, 0.2281, 0.2281, 0.2281, 0.2281, 0.2281, 0.2281, 0.2281, 0.2281, 0.2281, 0.2281, 0.2281, 0.2281, 0.2281, 0.2282, 0.2282, 0.2282, 0.2282, 0.2282, 0.2283, 0.2283, 0.2283, 0.2283, 0.2283, 0.2283, 0.2283, 0.2283, 0.2285, 0.2285, 0.2285, 0.2285, 0.2286]
task_received5_3_7 = 1269
sent_t5_3_7 = {'124': 471, '125': 396, '126': 402}
cooperate5_3_7 = {'mec': 242, 'cloud': 264}
task_record5_3_7 = {}
outward_mec5_3_7 = 39
offload_check5_3_7 = []
timed_out_tasks5_3_7 = 0
|
wt5_3_7 = {'192.168.122.110': [5.7199, 8.4411, 8.0381, 7.3759, 7.1777, 6.9974, 6.816, 6.7848, 6.811, 6.8666, 6.7605, 7.1659, 7.1058, 7.117, 7.4091, 7.3653, 7.602, 7.5046, 7.5051, 7.4195, 7.3659, 7.2974, 7.2932, 7.4615, 7.6061, 7.7395, 7.7409, 7.699, 7.6546, 7.631, 7.5707, 7.562, 7.5218, 7.4742, 7.6148, 7.5669, 7.5131, 7.4565, 7.5446, 7.4987, 7.4847, 7.469, 7.455, 7.4362, 7.3925, 7.3703, 7.3292, 7.2921, 7.2536, 7.2169, 7.2086, 7.1715, 7.1411, 7.2064, 7.1991, 7.1839, 7.2477, 7.2161, 7.1854, 7.2516, 7.2309, 7.2014, 7.1876, 7.1603, 7.1456, 7.1199, 7.1144, 7.1117, 7.0925, 7.1097, 7.0892, 7.0843, 7.0802, 7.0686, 7.0576, 7.1146, 7.0925, 7.1456, 7.1249, 7.1094, 7.1615, 7.1413, 7.1328, 7.1263, 7.1173, 7.0967, 7.0823, 7.0844, 7.0699, 7.0684, 7.0536, 7.0364, 7.0224, 7.0092, 6.9916, 7.0371, 7.022, 7.034, 7.0179, 7.0132, 7.0539, 7.0557, 7.0478, 7.0415, 7.0298, 7.0144, 7.0508, 7.0598, 7.0598, 7.045, 7.0393, 7.025, 7.0613, 7.0544, 7.0981, 7.1295, 7.125, 7.1609, 7.1487, 7.1351, 7.167, 7.1551, 7.144, 7.1356, 7.1228, 7.1115, 7.0986, 7.0956, 7.0849, 7.0873, 7.0759, 7.0657, 7.1389, 7.1669, 7.1615, 7.1502, 7.1496, 7.1461, 7.1349, 7.128, 7.1166, 7.1035, 7.1017, 7.0924, 7.0807, 7.0907, 7.0797, 7.087, 7.1103, 7.1043, 7.0988, 7.0925, 7.081, 7.0861, 7.0744, 7.0664, 7.0682, 7.0653, 7.0572, 7.0468, 7.0369, 7.0261, 7.0227, 7.0141, 7.0102, 7.0079, 7.0045, 6.9978, 6.9899, 7.0137, 7.0415, 7.0339, 7.0542, 7.0484, 7.0391, 7.0322, 7.0252, 7.0232, 7.0215, 7.016, 7.0126, 7.0046, 7.0024, 6.9977, 7.0017, 7.0237, 7.0439, 7.043, 7.0357, 7.0297, 7.0276, 7.0209, 7.0192, 7.0439, 7.0585, 7.0511, 7.0521, 7.0485, 7.0627, 7.0841, 7.0762, 7.073, 7.0723, 7.0649, 7.0661, 7.0579, 7.0799, 7.0756, 7.0681, 7.0889, 7.0812, 7.0805, 7.0731, 7.097, 7.0953, 7.0871, 7.0793, 7.0981, 7.1166, 7.1088, 7.1109, 7.1036, 7.1212, 7.1238, 7.1225, 7.1187, 7.1114, 7.1036, 7.1207, 7.1157, 7.1078, 7.1245, 7.2723, 7.2693, 7.2658, 7.2614, 7.2774, 7.2931, 7.2884, 7.306, 7.3014, 7.3174, 7.3184, 7.3108, 7.3048, 7.3256, 7.3223, 7.3164, 7.3139, 7.3063, 7.3235, 7.3188, 7.3179, 7.3122, 7.3048, 7.3402, 7.3334, 7.3303, 7.3311, 7.3247, 7.3197, 7.3169, 7.2936, 7.2879, 7.2825, 7.2777, 7.2937, 7.288, 7.2812, 7.2752, 7.2701, 7.2635, 7.2567, 7.2705, 7.2667, 7.2604, 7.2672, 7.273, 7.2941, 7.2878, 7.3024, 7.2964, 7.2918, 7.2921, 7.2884, 7.2857, 7.279, 7.2748, 7.276, 7.2702, 7.2686, 7.2699, 7.2631, 7.2622, 7.2556, 7.2507, 7.2461, 7.2448, 7.2402, 7.2419, 7.2393, 7.2401, 7.2347, 7.2302, 7.2238, 7.2192, 7.2329, 7.2451, 7.2404, 7.2369, 7.2335, 7.2277, 7.2389, 7.2514, 7.2469, 7.2435, 7.2425, 7.2537, 7.2487, 7.2428, 7.2561, 7.2518, 7.2497, 7.2623, 7.2577, 7.2559, 7.2547, 7.2536, 7.2501, 7.2609, 7.2551, 7.25, 7.248, 7.2475, 7.2443, 7.2388, 7.2493, 7.244, 7.2414, 7.2411, 7.239, 7.2521, 7.2482, 7.2457, 7.241, 7.2363, 7.2304, 7.2279, 7.24, 7.2346, 7.2347, 7.2166, 7.2594, 7.2537, 7.265, 7.2599, 7.2696, 7.265, 7.2602, 7.3208, 7.3167, 7.3302, 7.3272, 7.3426, 7.3436, 7.344, 7.3382, 7.3369, 7.3351, 7.3347, 7.3451, 7.3408, 7.3361, 7.3313, 7.3259, 7.3236, 7.3188, 7.3147, 7.3093, 7.3193, 7.3285, 7.3266, 7.3256, 7.32, 7.3177, 7.3186, 7.3151, 7.3611, 7.384, 7.3812, 7.3776, 7.3861, 7.3819, 7.3767, 7.3749, 7.37, 7.3675, 7.3627, 7.3702, 7.3789, 7.3743, 7.369, 7.3679, 7.3628, 7.3604, 7.3591, 7.355, 7.3576, 7.3549, 7.3505, 7.3458, 7.3414, 7.3412, 7.3515, 7.3474, 7.3432, 7.3388, 7.3485, 7.3441, 7.3433, 7.3385, 7.3376, 7.3466, 7.342, 7.3406, 7.3357, 7.331, 7.3267, 7.3239, 7.3323, 7.3301, 7.3283, 7.3264, 7.3361, 7.3462, 7.3419, 7.3421, 7.3394, 7.3387, 7.3348, 7.3328, 7.3283, 7.3287, 7.3246, 7.323, 7.3206, 7.3165, 7.3159, 7.3123, 7.3084, 7.3067, 7.3059, 7.3029, 7.3019, 7.2979, 7.2967, 7.2933, 7.2901, 7.2898, 7.287, 7.284, 7.2832, 7.2921, 7.2898, 7.286, 7.2893, 7.3164, 7.3159, 7.3118, 7.3131, 7.31, 7.318, 7.3136, 7.3098, 7.3082, 7.3054, 7.3019, 7.2981, 7.2956, 7.3034, 7.3124, 7.3211, 7.3173, 7.3135, 7.31, 7.3063, 7.3041, 7.3, 7.2972, 7.3076, 7.3047, 7.3131, 7.3328, 7.3289, 7.3263, 7.3446, 7.3427, 7.3398, 7.3363, 7.3332, 7.3317, 7.3514, 7.3573, 7.3543, 7.3533, 7.3747, 7.3718, 7.3793, 7.3753, 7.3741, 7.3702, 7.3664, 7.3635, 7.3625, 7.359, 7.3558, 7.3571, 7.3559, 7.3543, 7.352, 7.3495, 7.3519, 7.3479, 7.3469, 7.3457, 7.3422, 7.3495, 7.3472, 7.3538, 7.3509, 7.3492, 7.3642, 7.3607, 7.3599, 7.3775, 7.3738, 7.3712, 7.3685, 7.3649, 7.3635, 7.3603, 7.3568, 7.3752, 7.3811, 7.3798, 7.3763, 7.3757, 7.3723, 7.3686, 7.3672, 7.3649, 7.3613, 7.3581, 7.3477, 7.3382, 7.3358, 7.3345, 7.3309, 7.3278, 7.325, 7.3322, 7.3297, 7.3278, 7.3408, 7.3473, 7.3443, 7.3479, 7.3448, 7.3572, 7.3543, 7.3513, 7.3569, 7.3563, 7.3556, 7.357, 7.3637, 7.3617, 7.3584, 7.3549, 7.3518, 7.3495, 7.347, 7.3529, 7.3517, 7.3481, 7.3452, 7.3423, 7.339, 7.3451, 7.3433, 7.3489, 7.3645, 7.3705, 7.3768, 7.3762, 7.3739, 7.3718, 7.3704, 7.3674, 7.3735, 7.3708, 7.3686, 7.3665, 7.3643, 7.3705, 7.3689, 7.3658, 7.372, 7.3688, 7.3675, 7.3641, 7.3641, 7.3633, 7.3687, 7.3749, 7.3717, 7.3685, 7.3651, 7.3642, 7.3747, 7.3803, 7.4141, 7.4136, 7.4115, 7.4097, 7.4067, 7.4161, 7.4131, 7.4051, 7.4029, 7.4005, 7.406, 7.4049, 7.4043, 7.4268, 7.4248, 7.4409, 7.4395, 7.437, 7.4357, 7.4413, 7.448, 7.4488, 7.4459, 7.4448, 7.4522, 7.4578, 7.4553, 7.4519, 7.4568, 7.4552, 7.4528, 7.4497, 7.4465, 7.4518, 7.4488, 7.4467, 7.4516, 7.4811, 7.4782, 7.4835, 7.4905, 7.4884, 7.4877, 7.4897, 7.4949, 7.4924, 7.4973, 7.4942, 7.5004, 7.4977, 7.4955, 7.4929, 7.4895, 7.4869, 7.4849, 7.4823, 7.4797, 7.4769, 7.4826, 7.4797, 7.4812, 7.4797, 7.4777, 7.4749, 7.4727, 7.478, 7.4764, 7.4737, 7.4793, 7.4766, 7.4738, 7.4719, 7.4692, 7.4673, 7.4648, 7.4711, 7.4762, 7.4797, 7.4853, 7.4838, 7.4834, 7.482, 7.4791, 7.4763, 7.4752, 7.473, 7.4786, 7.4765, 7.4751, 7.4726, 7.4708, 7.4688, 7.4667, 7.4637, 7.4624, 7.4598, 7.4589, 7.45, 7.4553, 7.4537, 7.4513, 7.4483, 7.4473, 7.4443, 7.4417, 7.4478, 7.4452, 7.4482, 7.4546, 7.4699, 7.4674, 7.4652, 7.4702, 7.4673, 7.4656, 7.4706, 7.4701, 7.4749, 7.4721, 7.4774, 7.4817, 7.4867, 7.4919, 7.4915, 7.4889, 7.4873, 7.4861, 7.4851, 7.4822, 7.4811, 7.4797, 7.4783, 7.4774, 7.4762, 7.4737, 7.4782, 7.4772, 7.4819, 7.4805, 7.4798, 7.4798, 7.4785, 7.4771, 7.4749, 7.4799, 7.4772, 7.4748, 7.4724, 7.4697, 7.4676, 7.4663, 7.4646, 7.4635, 7.4627, 7.46, 7.458, 7.4554, 7.4529, 7.4534, 7.4522, 7.4509, 7.4499, 7.4541, 7.4539, 7.4511, 7.4491, 7.447, 7.4454, 7.4445, 7.4421, 7.4397, 7.4478, 7.4456, 7.4501, 7.448, 7.4534, 7.4513, 7.4505, 7.456, 7.4564, 7.4548, 7.4521, 7.4496, 7.4538, 7.4581, 7.4562, 7.4555, 7.4601, 7.4577, 7.4624, 7.4611, 7.4589, 7.4635, 7.4615, 7.459, 7.4568, 7.4614, 7.4601, 7.4579, 7.4565, 7.4544, 7.4521, 7.4498, 7.4557, 7.4616, 7.4595, 7.4588, 7.4565, 7.463, 7.4629, 7.4628, 7.467, 7.4669, 7.4647, 7.4623, 7.4667, 7.4661, 7.4643, 7.4635, 7.47, 7.4678, 7.466, 7.4639, 7.4699, 7.4673, 7.4712, 7.4696, 7.4737, 7.4713, 7.4694, 7.4681, 7.467, 7.4655, 7.4694, 7.4671, 7.4648, 7.4624, 7.4599, 7.4584, 7.4574, 7.4562, 7.4599, 7.4648, 7.4625, 7.4607, 7.4604, 7.4586, 7.463, 7.4671, 7.4713, 7.4749, 7.4744, 7.4738, 7.4716, 7.4691, 7.4727, 7.4765, 7.4769, 7.4761, 7.4737, 7.4779, 7.476, 7.4738, 7.4845, 7.4838, 7.4819, 7.48, 7.4835, 7.4813, 7.4808, 7.4787, 7.4826, 7.4803, 7.4782, 7.482, 7.4802, 7.478, 7.4759, 7.474, 7.4717, 7.4701, 7.468, 7.4657, 7.4644, 7.4643, 7.4629, 7.463, 7.4679, 7.4668, 7.4646, 7.4624, 7.4604, 7.4583, 7.4624, 7.4664, 7.4657, 7.47, 7.4687, 7.4681, 7.4665, 7.4649, 7.4626, 7.4663, 7.4645, 7.4624, 7.4603, 7.4586, 7.4577, 7.4611, 7.4595, 7.4573, 7.4551, 7.4591, 7.458, 7.4565, 7.4565, 7.4794, 7.4828, 7.4806, 7.4788, 7.4779, 7.4766, 7.4754, 7.475, 7.4732, 7.4709, 7.4687, 7.4667, 7.465, 7.4643, 7.4651, 7.4656, 7.4643, 7.4629, 7.4662, 7.4655, 7.4637, 7.4623, 7.4621, 7.4605, 7.4585, 7.4567, 7.4556, 7.4536, 7.4515, 7.455, 7.4548, 7.4526, 7.4513, 7.449, 7.4527, 7.4518, 7.45, 7.4486, 7.4489, 7.4468, 7.4505, 7.4484, 7.4462, 7.4499, 7.448, 7.4516, 7.451, 7.4497, 7.4621, 7.4711, 7.4766, 7.4748, 7.4732, 7.4725, 7.4763, 7.4742, 7.4732, 7.4717, 7.4704, 7.4695, 7.4691, 7.4725, 7.4716, 7.4697, 7.4676, 7.4654, 7.4646, 7.4625, 7.4617, 7.4648, 7.4629, 7.4611, 7.4602, 7.46, 7.4581, 7.4568, 7.4546, 7.4583, 7.4562, 7.4547, 7.4538, 7.4543, 7.4523, 7.4505, 7.449, 7.4529, 7.4518, 7.4501, 7.4482, 7.4484, 7.4478, 7.4469, 7.4452, 7.444, 7.4425, 7.4514, 7.4668, 7.4648, 7.4629, 7.461, 7.4595, 7.4576, 7.4559, 7.4543, 7.4531, 7.4522, 7.4506, 7.4545, 7.4534, 7.4514, 7.4511, 7.4496, 7.4526, 7.4557, 7.4539, 7.453, 7.4628, 7.4613, 7.4654, 7.4737, 7.4723, 7.4664, 7.4651, 7.463, 7.4629, 7.4612, 7.4595, 7.4547, 7.4527, 7.4519, 7.455, 7.4542, 7.4522, 7.4503, 7.4508, 7.449, 7.4481, 7.4463, 7.4443, 7.4433, 7.4467, 7.4454, 7.4436, 7.4423, 7.4406, 7.4438, 7.4426, 7.4417, 7.44, 7.443, 7.4411, 7.4446, 7.4452, 7.444, 7.4427, 7.4417, 7.44, 7.4392, 7.4427, 7.4418, 7.4408, 7.4402, 7.4445, 7.4435, 7.4426, 7.4461, 7.445, 7.4495, 7.4495, 7.4534, 7.4515, 7.4552, 7.4537, 7.4531, 7.4525, 7.4515, 7.4497, 7.448, 7.447, 7.4459, 7.4454, 7.4441, 7.4435, 7.4417, 7.4426, 7.4456, 7.4437, 7.4424, 7.4411, 7.44, 7.4389, 7.4373, 7.4369, 7.4404, 7.4387, 7.4369, 7.4363, 7.4357, 7.4344, 7.4338, 7.4322, 7.4309, 7.4344, 7.433, 7.4316, 7.4304, 7.4297, 7.4282, 7.4268, 7.4262, 7.425, 7.4236, 7.4269, 7.4255, 7.4243, 7.4188, 7.4173, 7.4175, 7.4183, 7.4167, 7.4165, 7.4148, 7.4143, 7.4131, 7.4115, 7.415, 7.4132, 7.4123, 7.4107, 7.4089, 7.4072, 7.4057, 7.4087, 7.4074, 7.4057, 7.4044, 7.4026, 7.4009, 7.3992, 7.3975, 7.3969, 7.4006, 7.4012, 7.4009, 7.4042, 7.4025, 7.4009, 7.3997, 7.3995, 7.3978, 7.397, 7.3953, 7.3987, 7.3979, 7.3963, 7.3993, 7.3983, 7.398, 7.4012, 7.4005, 7.4006, 7.4005, 7.3995, 7.3978, 7.3968, 7.3955, 7.3941, 7.3929, 7.3914, 7.3959, 7.3956, 7.3941, 7.3935, 7.3921, 7.3921, 7.3914, 7.3901, 7.3889, 7.3843, 7.3868, 7.39, 7.3884, 7.3868, 7.3851, 7.3834, 7.3824, 7.3853, 7.3836, 7.3866, 7.3868, 7.3852, 7.3836, 7.3838, 7.3872, 7.3876, 7.3885, 7.388, 7.3873, 7.3857, 7.3844, 7.3829, 7.3813, 7.38, 7.3787, 7.3788, 7.3779, 7.3763, 7.3809, 7.3806, 7.3823, 7.3821, 7.385, 7.3836, 7.3825, 7.3809, 7.3836, 7.3827, 7.383, 7.3831, 7.382, 7.3856, 7.3862, 7.3847, 7.3831, 7.382, 7.3826, 7.382, 7.3803, 7.3798, 7.3786, 7.3813, 7.3797, 7.3783, 7.3771, 7.3804, 7.3789, 7.3814, 7.3926, 7.4068, 7.4087, 7.409, 7.4078, 7.4065, 7.4051, 7.4052, 7.4042, 7.4027, 7.4014, 7.4003, 7.3992, 7.3981, 7.3982, 7.3974, 7.3965, 7.3954, 7.3946, 7.3944, 7.3978, 7.4011, 7.3996, 7.3983, 7.3969, 7.3957, 7.3955, 7.3961, 7.3945, 7.3942, 7.3932, 7.3919, 7.3995, 7.3984, 7.398, 7.3971, 7.3963, 7.3947, 7.3936, 7.3921, 7.3907, 7.3897, 7.3886, 7.3873, 7.3872, 7.3899, 7.3975, 7.3961, 7.3955, 7.3942, 7.3971, 7.3967, 7.3968, 7.3955, 7.3948, 7.3934, 7.3928, 7.392, 7.3905, 7.3893, 7.3883, 7.3868, 7.3853, 7.3881, 7.3875, 7.3868, 7.3853, 7.3841, 7.3825, 7.3817, 7.3803, 7.3792, 7.3777, 7.3803, 7.3801, 7.3826, 7.3817, 7.3803, 7.379, 7.3783, 7.3779, 7.3775, 7.376, 7.3749, 7.3746, 7.3734, 7.3731, 7.3721, 7.3767, 7.3807, 7.3793, 7.3779, 7.377, 7.3755, 7.3742, 7.3728, 7.3714, 7.37, 7.3694, 7.3718, 7.3709, 7.3698, 7.3723, 7.371, 7.3736, 7.3737, 7.3723, 7.375, 7.3736, 7.373, 7.3719, 7.3711, 7.3704, 7.3691, 7.3677, 7.3666, 7.3659, 7.3652, 7.3637, 7.3631, 7.3624, 7.3744, 7.3729, 7.3755, 7.3782, 7.3771, 7.3758, 7.3747, 7.3734, 7.3771, 7.3761, 7.3763, 7.3749, 7.3778, 7.3806, 7.3796, 7.3793, 7.3784, 7.3807, 7.3834, 7.3862, 7.3861, 7.3854, 7.3848, 7.3842, 7.3831, 7.386, 7.3848, 7.3835, 7.3822, 7.381, 7.3834, 7.3822, 7.3809, 7.3835, 7.3821, 7.3847, 7.387, 7.3858, 7.3845, 7.3834, 7.3822, 7.3808, 7.3863, 7.3851, 7.3887, 7.3914, 7.3899, 7.3886, 7.3913, 7.3942, 7.3932, 7.3924, 7.3909, 7.39, 7.3886, 7.3881, 7.3874, 7.3895, 7.3883, 7.3908, 7.3897, 7.3883, 7.387, 7.3894, 7.3889, 7.3893, 7.3897, 7.3883, 7.3879, 7.3868, 7.3862, 7.3851, 7.3836, 7.3851, 7.3838, 7.3867, 7.3865, 7.3854, 7.3851, 7.3885, 7.3882, 7.3872, 7.387, 7.3862, 7.3858, 7.3889, 7.3876, 7.3866, 7.3892, 7.3879, 7.391, 7.3901, 7.3893, 7.3879, 7.387, 7.3856, 7.388, 7.391, 7.3896, 7.3946, 7.3986, 7.3981, 7.3976, 7.4008, 7.3998, 7.3986, 7.3989, 7.3979, 7.3986, 7.3982, 7.397, 7.3964, 7.3954, 7.3943, 7.397, 7.3969, 7.3994, 7.3987, 7.3988, 7.4011, 7.4001, 7.3989, 7.3978, 7.3971, 7.3959, 7.3946, 7.3938, 7.3937, 7.3933, 7.3927, 7.3953, 7.3929, 7.3927, 7.3923, 7.3911, 7.3935, 7.3923, 7.3917, 7.3906, 7.3896, 7.3922, 7.3945, 7.3941, 7.3942, 7.3931, 7.3953, 7.3949, 7.3974, 7.3998, 7.3998, 7.3986, 7.3974, 7.396, 7.3951, 7.3943, 7.3938, 7.3927, 7.3926, 7.3921, 7.3911, 7.3902, 7.39, 7.3886, 7.3884, 7.3843, 7.3832, 7.3826, 7.3851, 7.3844, 7.3832, 7.382, 7.3816, 7.3805, 7.3802, 7.3794, 7.3781, 7.377, 7.3761, 7.376, 7.3785, 7.3778, 7.377, 7.3759, 7.3748, 7.3736, 7.3724, 7.3716, 7.3704, 7.3692, 7.3679, 7.367, 7.369, 7.3679, 7.3674, 7.3663, 7.3698, 7.3687, 7.3713, 7.3708, 7.3698, 7.3686, 7.368, 7.3706, 7.3702, 7.3694, 7.3702, 7.3663, 7.3687, 7.3711, 7.3706, 7.3701, 7.369, 7.3715, 7.3707, 7.3711, 7.3704, 7.3694, 7.372, 7.3712, 7.3736, 7.3729, 7.3758, 7.3747, 7.3738, 7.37, 7.3694, 7.3693, 7.3683, 7.3672, 7.367, 7.3661, 7.3653, 7.3642, 7.3638, 7.363, 7.3623, 7.3611, 7.3599, 7.3587, 7.3586, 7.3574, 7.3575, 7.3565, 7.3555, 7.355, 7.3541, 7.3531, 7.3519, 7.3514, 7.3503, 7.3492, 7.3484, 7.3482, 7.3477, 7.3503, 7.3496, 7.3489, 7.3486, 7.3509, 7.3515, 7.3509, 7.3497, 7.3491, 7.3486, 7.3485, 7.3513, 7.3537, 7.3533, 7.3522, 7.3512, 7.351, 7.35, 7.3489, 7.3494, 7.3486, 7.348, 7.3474, 7.3494, 7.3486, 7.3474, 7.3498, 7.3486, 7.3482, 7.3475, 7.3496, 7.3503, 7.3495, 7.3491, 7.3517, 7.3585, 7.3583, 7.3615, 7.3642, 7.3638, 7.3633, 7.3625, 7.3615, 7.361, 7.3604, 7.3594, 7.3589, 7.358, 7.3577, 7.3569, 7.3558, 7.3586, 7.3611, 7.3605, 7.3595, 7.3588, 7.361, 7.3629, 7.3679, 7.3698, 7.3758, 7.3748, 7.3773, 7.3799, 7.3787, 7.3777, 7.3766, 7.3765, 7.3753, 7.375, 7.3773, 7.3762, 7.3751, 7.3742, 7.3737, 7.3727, 7.3753, 7.3741, 7.3761, 7.3758, 7.3777, 7.3767, 7.379, 7.3811, 7.3833, 7.3821, 7.3812, 7.3862, 7.3853, 7.382, 7.3816, 7.3818, 7.3814, 7.3804, 7.3792, 7.378, 7.3772, 7.3764, 7.379, 7.3791, 7.3783, 7.3773, 7.3764, 7.3754, 7.3778, 7.3771, 7.3762, 7.3756, 7.3776, 7.3765, 7.3755, 7.3744, 7.3768, 7.3772, 7.3794, 7.3818, 7.3808, 7.383, 7.3824, 7.3816, 7.3815, 7.3814, 7.3843, 7.3853, 7.3846, 7.3843, 7.3838, 7.3829, 7.3848, 7.3844, 7.3835, 7.3827, 7.3817, 7.3813, 7.3809, 7.38, 7.379, 7.381, 7.38, 7.3796, 7.3792, 7.3785, 7.378, 7.3774, 7.3771, 7.3825, 7.3819, 7.3841, 7.3861, 7.3851, 7.3852, 7.3847, 7.3865, 7.3854, 7.3876, 7.3865, 7.3854, 7.3851, 7.384, 7.3835, 7.3824, 7.382, 7.3809, 7.3802, 7.3823, 7.3815, 7.384, 7.3829, 7.3827, 7.3822, 7.3859, 7.3851, 7.3847, 7.3845, 7.3837, 7.3873, 7.3865, 7.3861, 7.3851, 7.3844, 7.3835, 7.383, 7.3821, 7.381, 7.3833, 7.3827, 7.3847, 7.3864, 7.3853, 7.3842, 7.3831, 7.382, 7.3812, 7.3807, 7.3796, 7.3846, 7.3836, 7.3827, 7.3817, 7.3837, 7.3803, 7.3824, 7.3846, 7.3874, 7.3864, 7.3889, 7.3885, 7.3881, 7.3878, 7.3868, 7.3863, 7.3852, 7.3844, 7.3836, 7.3833, 7.3825, 7.3817, 7.3812, 7.3802, 7.3821, 7.3812, 7.381, 7.3805, 7.38, 7.3801, 7.3818, 7.3786, 7.3753, 7.3753, 7.3771, 7.376, 7.3752, 7.377, 7.376, 7.375, 7.3739, 7.373, 7.3719, 7.3769, 7.3789, 7.3783, 7.3806, 7.3825, 7.3821, 7.3813, 7.3804, 7.382, 7.3811, 7.3811, 7.3806, 7.3795, 7.379, 7.3839, 7.3831, 7.3822, 7.3818, 7.3837, 7.3856, 7.3846, 7.3844, 7.3834, 7.3826, 7.3818, 7.3813, 7.3804, 7.3825, 7.3817, 7.3815, 7.3806, 7.3798, 7.3816, 7.3807, 7.3822, 7.3814, 7.381, 7.3834, 7.3803, 7.38, 7.3798, 7.3793, 7.3791, 7.3781, 7.3776, 7.3778, 7.3773, 7.3771, 7.3766, 7.3761, 7.3755, 7.375, 7.3743, 7.3735, 7.3755, 7.3744, 7.3735, 7.3727, 7.3723, 7.374, 7.3757, 7.3779, 7.3796, 7.3825, 7.3818, 7.3807, 7.3799, 7.3845, 7.3897, 7.3888, 7.3882, 7.3874, 7.4006, 7.4, 7.399, 7.4008, 7.3998, 7.3988, 7.3978, 7.3975, 7.3966, 7.3957, 7.3947, 7.3944, 7.3947, 7.394, 7.3933, 7.3928, 7.3927, 7.3918, 7.3937, 7.3929, 7.392, 7.3917, 7.3911, 7.3903, 7.3894, 7.3914, 7.3904, 7.3902, 7.3892, 7.3911, 7.3901, 7.3919, 7.3909, 7.3901, 7.3895, 7.3887, 7.3887, 7.3883, 7.3881, 7.3871, 7.3893, 7.3884, 7.3874, 7.3895, 7.3899, 7.3895, 7.3889, 7.388, 7.3877, 7.3875, 7.3866, 7.3855, 7.3848, 7.384, 7.3841, 7.3836, 7.3838, 7.3833, 7.3829, 7.3831, 7.3829, 7.3854, 7.3847, 7.3837, 7.3832, 7.3823, 7.382, 7.3819, 7.3811, 7.3804, 7.3795, 7.3787, 7.3805, 7.3796, 7.3786, 7.3776, 7.3768, 7.3764, 7.3761, 7.3754, 7.3752, 7.3747, 7.3746, 7.3764, 7.3754, 7.3747, 7.3766, 7.3762, 7.3757, 7.3752, 7.3746, 7.3741, 7.3758, 7.3748, 7.3738, 7.3759, 7.3751, 7.3744, 7.3737, 7.3731, 7.3722, 7.3713, 7.3703, 7.3722, 7.3715, 7.3707, 7.3701, 7.3695, 7.3714, 7.3732, 7.3727, 7.3723, 7.374, 7.3737, 7.3732, 7.3727, 7.3725, 7.3717, 7.371, 7.371, 7.37, 7.3696, 7.3686, 7.3682, 7.3672, 7.3694, 7.371, 7.3727, 7.3718, 7.3716, 7.3742, 7.3734, 7.3731, 7.3733, 7.3724, 7.3714, 7.373, 7.3747, 7.3747, 7.3742, 7.3733, 7.3728, 7.3726, 7.3716, 7.3712, 7.3704, 7.3724, 7.3721, 7.3712, 7.3708, 7.3698, 7.3715, 7.3712, 7.3706, 7.37, 7.3697, 7.3742, 7.3736, 7.373, 7.3748, 7.3743, 7.376, 7.3763, 7.3781, 7.3775, 7.3767, 7.3834, 7.3852, 7.3869, 7.3867, 7.3862, 7.3873, 7.3864, 7.3856, 7.3865, 7.3837, 7.3819, 7.3867, 7.3883, 7.3898, 7.3893, 7.3894, 7.3891, 7.389, 7.3883, 7.3877, 7.3872, 7.3892, 7.3884, 7.3878, 7.3883, 7.3904, 7.3924, 7.3915, 7.3915, 7.3912, 7.393, 7.3924, 7.3945, 7.3946, 7.3945, 7.3937, 7.3932, 7.3928, 7.3929, 7.3921, 7.3914, 7.3904, 7.3894, 7.391, 7.3904, 7.39, 7.3893, 7.3893, 7.3909, 7.3884, 7.3879, 7.3877, 7.3871, 7.3888, 7.3879, 7.3871, 7.3862, 7.3879, 7.3873, 7.3867, 7.3874, 7.3867, 7.3861, 7.3879, 7.3871, 7.3896, 7.3906, 7.3897, 7.3892, 7.3883, 7.3876, 7.3895, 7.3911, 7.3906, 7.3898, 7.392, 7.3913, 7.3904, 7.3901, 7.3922, 7.3915, 7.3906, 7.3897, 7.3893, 7.3909, 7.3902, 7.3893, 7.3889, 7.3883, 7.3873, 7.3871, 7.3867, 7.3859, 7.3851, 7.3844, 7.3837, 7.3828, 7.382, 7.3817, 7.3815, 7.3831, 7.3806, 7.3797, 7.3813, 7.3834, 7.3832, 7.3823, 7.3824, 7.3816, 7.3808, 7.3824, 7.3822, 7.3838, 7.3828, 7.3825, 7.3823, 7.3819, 7.3845, 7.3842, 7.3843, 7.3862, 7.3855, 7.3852, 7.3847, 7.3839, 7.3831, 7.3823, 7.3843, 7.3839, 7.383, 7.3826, 7.3822, 7.3813, 7.3806, 7.3797, 7.3813, 7.3804, 7.3798, 7.3824, 7.382, 7.3836, 7.3829, 7.3828, 7.3819, 7.3811, 7.3828, 7.3819, 7.3814, 7.3832, 7.3824, 7.3838, 7.3831, 7.3828, 7.382, 7.3819, 7.3848, 7.3846, 7.384, 7.3832, 7.3828, 7.3829, 7.3834, 7.383, 7.3849, 7.3871, 7.3874, 7.3868, 7.3861, 7.3854, 7.385, 7.3842, 7.3839, 7.3854, 7.3847, 7.3844, 7.3836, 7.3831, 7.3836, 7.386, 7.386, 7.3853, 7.3845, 7.3836, 7.3807, 7.3805, 7.3799, 7.379, 7.3806, 7.3797, 7.3811, 7.3803, 7.3796, 7.38, 7.3799, 7.3799, 7.3832, 7.383, 7.3826, 7.3842, 7.384, 7.3856, 7.3848, 7.3846, 7.3839, 7.3832, 7.3823, 7.3841, 7.3832, 7.383, 7.3823, 7.3816, 7.3807, 7.3804, 7.3795, 7.3788, 7.3807, 7.3826, 7.3818, 7.3815, 7.3807, 7.3801, 7.3797, 7.3794, 7.3788, 7.3783, 7.3777, 7.3769, 7.3761, 7.3754, 7.3749, 7.3747, 7.3747, 7.3744, 7.3736, 7.3749, 7.3767, 7.376, 7.3754, 7.3755, 7.3754, 7.3755, 7.375, 7.3767, 7.3764, 7.3756, 7.3749, 7.3765, 7.3784, 7.3776, 7.3772, 7.3765, 7.376, 7.3753, 7.3747, 7.374, 7.3753, 7.3768, 7.3782, 7.3774, 7.3766, 7.376, 7.3754, 7.373, 7.3747, 7.374, 7.3756, 7.3749, 7.3765, 7.3739, 7.376, 7.3755, 7.3748, 7.3742, 7.3738, 7.3736, 7.373, 7.3723, 7.3722, 7.3737, 7.3733, 7.3748, 7.3745, 7.3744, 7.3757, 7.375, 7.3764, 7.378, 7.3794, 7.3809, 7.3802, 7.3798, 7.3791, 7.3783, 7.3775, 7.3767, 7.3783, 7.3777, 7.3771, 7.3769, 7.3768, 7.3761, 7.3753, 7.3745, 7.374, 7.3735, 7.3726, 7.3741, 7.3733, 7.3726, 7.372, 7.3717, 7.3712, 7.3705, 7.3697, 7.3698, 7.3694, 7.371, 7.3704, 7.3685, 7.3678, 7.3702, 7.3716, 7.3714, 7.3717, 7.3709, 7.3725, 7.3721, 7.3713, 7.3706, 7.3721, 7.3714, 7.3706, 7.3703, 7.3722, 7.3715, 7.3709, 7.3704, 7.3699, 7.3696, 7.3691, 7.3686, 7.3688, 7.3706, 7.3721, 7.3717, 7.3709, 7.3704, 7.3697, 7.369, 7.3683, 7.37, 7.3693, 7.3709, 7.3701, 7.3678, 7.3672, 7.3668, 7.3661, 7.3653, 7.3645, 7.3658, 7.365, 7.3643, 7.3636, 7.3629, 7.3626, 7.3629, 7.3643, 7.3641, 7.3656, 7.3663, 7.3656, 7.3649, 7.3725, 7.3738, 7.3731, 7.3726, 7.3724, 7.3734, 7.3726, 7.3699, 7.3692, 7.3691, 7.3684, 7.3681, 7.3678, 7.3671, 7.3666, 7.366, 7.3653, 7.3648, 7.364, 7.3632, 7.3645, 7.3644, 7.3643, 7.3681, 7.3673, 7.367, 7.3686, 7.3679, 7.3676, 7.3669, 7.3683, 7.3677, 7.3674, 7.3666, 7.3681, 7.3693, 7.3686, 7.3699, 7.3712, 7.3704, 7.3701, 7.3714, 7.371, 7.3708, 7.3701, 7.3693, 7.3688, 7.3687, 7.3702, 7.3703, 7.3699, 7.3677, 7.3682, 7.3674, 7.3687, 7.3681, 7.3683, 7.3677, 7.3669, 7.3674, 7.3668, 7.366, 7.3654, 7.3651, 7.3647, 7.3645, 7.3641, 7.3639, 7.365, 7.3648, 7.3663, 7.3664, 7.3657, 7.3652, 7.3667, 7.3663, 7.3659, 7.3659, 7.3652, 7.3648, 7.3642, 7.3643, 7.364, 7.3635, 7.3635, 7.3628, 7.3622, 7.3616, 7.364, 7.3636, 7.3631, 7.3637, 7.3631, 7.3646, 7.364, 7.3637, 7.3633, 7.363, 7.3623, 7.3615, 7.3607, 7.3602, 7.3617, 7.363, 7.3644, 7.3638, 7.3636, 7.3631, 7.3628, 7.3625, 7.3617, 7.3615, 7.3612, 7.3627, 7.3642, 7.3642, 7.3627, 7.3619, 7.3612, 7.3608, 7.3604, 7.3599, 7.3603, 7.3601, 7.3614, 7.3609, 7.3606, 7.3599, 7.3591, 7.3585, 7.3599, 7.3596, 7.3589, 7.3583, 7.3598, 7.3596, 7.3589, 7.3582, 7.3574, 7.357, 7.3567, 7.3563, 7.3557, 7.356, 7.3555, 7.3556, 7.355, 7.3566, 7.3564, 7.3558, 7.3553, 7.3547, 7.3562, 7.3597, 7.3591, 7.359, 7.3591, 7.3584, 7.3582, 7.3576, 7.3586, 7.3579, 7.3573, 7.3568, 7.3561, 7.3554, 7.3549, 7.3545, 7.3557, 7.355, 7.3547, 7.3543, 7.3556, 7.3549, 7.3542, 7.3535, 7.3528, 7.3524, 7.3522, 7.3559, 7.3552, 7.3529, 7.3521, 7.3521, 7.3534, 7.3534, 7.3527, 7.352, 7.3518, 7.3511, 7.3508, 7.3501, 7.3499, 7.3493, 7.3491, 7.3504, 7.3498, 7.3491, 7.3487, 7.3481, 7.3473, 7.3471, 7.3485, 7.3499, 7.3492, 7.3503, 7.3496, 7.3492, 7.3506, 7.35, 7.3516, 7.3531, 7.3546, 7.3544, 7.3542, 7.3542, 7.3536, 7.3528, 7.3528, 7.352, 7.3523, 7.3516, 7.3509, 7.3524, 7.3518, 7.3512, 7.3506, 7.3499, 7.3493, 7.3508, 7.3501, 7.3494, 7.3488, 7.3486, 7.348, 7.3479, 7.3471, 7.3464, 7.3457, 7.3455, 7.3448, 7.3462, 7.3445, 7.3422, 7.3421, 7.3439, 7.3432, 7.3428, 7.3441, 7.3436, 7.3429, 7.3424, 7.3437, 7.3435, 7.3447, 7.3445, 7.3438, 7.3431, 7.3428, 7.3421, 7.3416, 7.3409, 7.3402, 7.3395, 7.3393, 7.339, 7.3383, 7.3376, 7.3372, 7.3407, 7.3402, 7.3398, 7.3391, 7.3424, 7.3417, 7.3411, 7.3409, 7.3407, 7.3421, 7.3416, 7.3414, 7.3411, 7.3407, 7.34, 7.3393, 7.3389, 7.3387, 7.3381, 7.3376, 7.3371, 7.3368, 7.3366, 7.3365, 7.3381, 7.3394, 7.3391, 7.3405, 7.3398, 7.3391, 7.339, 7.3388, 7.3386, 7.3379, 7.3372, 7.3374, 7.3378, 7.339, 7.3383, 7.3395, 7.3407, 7.3406, 7.341, 7.3403, 7.3397, 7.3392, 7.3386, 7.3382, 7.3382, 7.3376, 7.3369, 7.3364, 7.3357, 7.3357, 7.335, 7.3349, 7.3343, 7.3358, 7.3351, 7.3353, 7.335, 7.3351, 7.3347, 7.334, 7.3336, 7.3336, 7.3331, 7.3324, 7.3317, 7.33, 7.3293, 7.3286, 7.3279, 7.3294, 7.3309, 7.3306, 7.33, 7.3297, 7.3291, 7.3285, 7.3282, 7.3276, 7.3304, 7.3301, 7.3298, 7.3292, 7.3288, 7.3283, 7.3298, 7.3312, 7.3312, 7.3307, 7.3301, 7.3295, 7.3295, 7.329, 7.3285, 7.3299, 7.3295, 7.3294, 7.329, 7.3285, 7.3285, 7.3288, 7.3281, 7.3274, 7.327, 7.3264, 7.3273, 7.3319, 7.332, 7.3342, 7.3342, 7.3338, 7.3332, 7.3328, 7.3321, 7.3317, 7.3315, 7.3311, 7.3327, 7.3324, 7.3321, 7.3315, 7.3309, 7.3302, 7.3299, 7.3311, 7.3308, 7.332, 7.3332, 7.3328, 7.3321, 7.3314, 7.3307, 7.3301, 7.3296, 7.329, 7.3284, 7.328, 7.3277, 7.3271, 7.3265, 7.3277, 7.3274, 7.3289, 7.3283, 7.3278, 7.3275, 7.3319, 7.3384, 7.3396, 7.3408, 7.3419, 7.3416, 7.3414, 7.3408, 7.3404, 7.3417, 7.341, 7.3407, 7.3401, 7.3415, 7.3409, 7.3403, 7.3399, 7.3392, 7.339, 7.3384, 7.3378, 7.3373, 7.3386, 7.3398, 7.3392, 7.3389, 7.3382, 7.3376, 7.3389, 7.3388, 7.3382, 7.3377, 7.339, 7.3386, 7.3387, 7.34, 7.3413, 7.3425, 7.3436, 7.3433, 7.3432, 7.3426, 7.3419, 7.3431, 7.3485, 7.3485, 7.3485, 7.3479, 7.3472, 7.3485, 7.3488, 7.3482, 7.3479, 7.3489, 7.3485, 7.3478, 7.3471, 7.345, 7.3453, 7.3465, 7.3461, 7.3457, 7.3451, 7.3463, 7.3477, 7.3475, 7.3469, 7.3464, 7.3476, 7.3474, 7.3469, 7.3464, 7.3476, 7.3469, 7.3465, 7.3466, 7.3481, 7.3537, 7.3532, 7.3538, 7.3534, 7.3529, 7.3541, 7.3536, 7.353, 7.3524, 7.3522, 7.3517, 7.3515, 7.351, 7.3506, 7.35, 7.3495, 7.3489, 7.3488, 7.3501, 7.3497, 7.3496, 7.349, 7.3485, 7.3479, 7.3475, 7.3474, 7.3487, 7.348, 7.3477, 7.3472, 7.3471, 7.3472, 7.3468, 7.3462, 7.3458, 7.3452, 7.3446, 7.3443, 7.3439, 7.3451, 7.3464, 7.3459, 7.3453, 7.3448, 7.3442, 7.3438, 7.3434, 7.343, 7.3426, 7.3436, 7.3431, 7.343, 7.3452, 7.3446, 7.3489, 7.3485, 7.3478, 7.3472, 7.3468, 7.3465, 7.3479, 7.348, 7.3475, 7.3472, 7.3471, 7.3506, 7.3521, 7.3517, 7.3514, 7.3512, 7.3505, 7.3501, 7.3503, 7.3496, 7.3492, 7.3489, 7.3485, 7.3479, 7.3475, 7.3473, 7.3473, 7.3471, 7.3469, 7.3463, 7.3458, 7.3453, 7.3466, 7.346, 7.3454, 7.3449, 7.3444, 7.3442, 7.3441, 7.3436, 7.3434, 7.343, 7.3425, 7.3422, 7.3416, 7.341, 7.3405, 7.34, 7.3397, 7.3393, 7.3388, 7.3382, 7.3394, 7.339, 7.3385, 7.3378, 7.3392, 7.3406, 7.3402, 7.3396, 7.3391, 7.3389, 7.3401, 7.3395, 7.3408, 7.3403, 7.3398, 7.3397, 7.3392, 7.3387, 7.3382, 7.3375, 7.337, 7.3383, 7.3395, 7.3389, 7.3402, 7.3413, 7.3408, 7.3403, 7.3397, 7.3391, 7.3385, 7.3379, 7.3376, 7.337, 7.3364, 7.3361, 7.3361, 7.3359, 7.3358, 7.337, 7.3367, 7.3363, 7.336, 7.3355, 7.3366, 7.336, 7.3356, 7.335, 7.3344, 7.3342, 7.3336, 7.3332, 7.3326, 7.332, 7.3331, 7.3331, 7.3326, 7.3305, 7.3302, 7.3296, 7.3291, 7.3285, 7.3282, 7.328, 7.3291, 7.3285, 7.3279, 7.3273, 7.3271, 7.3266, 7.326, 7.3256, 7.325, 7.3248, 7.326, 7.3254, 7.3251, 7.3262, 7.3256, 7.325, 7.3247, 7.3259, 7.3258, 7.3271, 7.3266, 7.3278, 7.329, 7.3285, 7.328, 7.3279, 7.3277, 7.3271, 7.3266, 7.3265, 7.3261, 7.3296, 7.3294, 7.3293, 7.3305, 7.33, 7.3296, 7.3291, 7.331, 7.3307, 7.3297, 7.3294, 7.3291, 7.3285, 7.3285, 7.3287, 7.3308, 7.3303, 7.3301, 7.3299, 7.3294, 7.329, 7.3286, 7.328, 7.3279, 7.3278, 7.3272, 7.3269, 7.3267, 7.3262, 7.3258, 7.327, 7.3264, 7.3259, 7.3256, 7.3254, 7.3249, 7.3243, 7.3239, 7.3237, 7.3232, 7.323, 7.3227, 7.3225, 7.3221, 7.3233, 7.3231, 7.3226, 7.3222, 7.3219, 7.3213, 7.3226, 7.3222, 7.3218, 7.3212, 7.3209, 7.322, 7.3216, 7.3211, 7.3205, 7.3206, 7.3201, 7.3181, 7.3175, 7.3187, 7.3187, 7.3188, 7.3198, 7.3194, 7.319, 7.3217, 7.3211, 7.3206, 7.3206, 7.3202, 7.3201, 7.3199, 7.3214, 7.3226, 7.324, 7.3235, 7.3229, 7.3239, 7.3251, 7.3245, 7.3239, 7.337, 7.3365, 7.336, 7.3354, 7.3349, 7.3344, 7.3339, 7.3366, 7.3365, 7.3377, 7.3389, 7.3385, 7.3382, 7.338, 7.3374, 7.3369, 7.337, 7.3365, 7.3366, 7.3364, 7.336, 7.3359, 7.3353, 7.3337, 7.3334, 7.3329, 7.3323, 7.3318, 7.3312, 7.3306, 7.3301, 7.3295, 7.3289, 7.3283, 7.3293, 7.329, 7.3284, 7.3284, 7.328, 7.3277, 7.3272, 7.3282, 7.3279, 7.329, 7.3289, 7.3285, 7.3279, 7.3274, 7.3269, 7.3264, 7.3259, 7.3286, 7.3301, 7.3299, 7.331, 7.3321, 7.3316, 7.3328, 7.3322, 7.3336, 7.3331, 7.3343, 7.3338, 7.3336, 7.3347, 7.3342, 7.3339, 7.3335, 7.333, 7.3341, 7.3337, 7.3334, 7.3331, 7.3326, 7.3328, 7.3329, 7.3324, 7.3322, 7.3321, 7.332, 7.3315, 7.331, 7.3307, 7.332, 7.3314, 7.3314, 7.3312, 7.3306, 7.3303, 7.3298, 7.3301, 7.3299, 7.3294, 7.329, 7.3285, 7.3295, 7.3292, 7.329, 7.33, 7.33, 7.3298, 7.3292, 7.3303, 7.3298, 7.3308, 7.3304, 7.33, 7.3311, 7.3306, 7.33, 7.3297, 7.3296, 7.329, 7.33, 7.33, 7.3294, 7.3295, 7.3311, 7.3312, 7.331, 7.3306, 7.3308, 7.3306, 7.3309, 7.3306, 7.3336, 7.3339, 7.3379, 7.338, 7.3375, 7.3369, 7.3364, 7.3359, 7.3359, 7.3354, 7.3366, 7.336, 7.3355, 7.3349, 7.3346, 7.3356, 7.3352, 7.3346, 7.3327, 7.3321, 7.3315, 7.3312, 7.3306, 7.3301, 7.3297, 7.3291, 7.3322, 7.3317, 7.3305, 7.3325, 7.3341, 7.3351, 7.3346, 7.3346, 7.3344, 7.3356, 7.337, 7.3369, 7.3412, 7.3407, 7.3402, 7.3397, 7.3414, 7.3412, 7.3407, 7.342, 7.3402, 7.3398, 7.3393, 7.3389, 7.3388, 7.3414, 7.3425, 7.342, 7.3416, 7.3413, 7.3411, 7.3412, 7.3409, 7.3404, 7.3403, 7.3398, 7.3393, 7.3389, 7.3401, 7.3412, 7.3411, 7.3406, 7.3405, 7.3418, 7.343, 7.3442, 7.3456, 7.3452, 7.345, 7.3446, 7.3441, 7.3435, 7.3429, 7.3459, 7.3457, 7.3452, 7.3447, 7.3446, 7.3444, 7.3444, 7.3441, 7.3442, 7.3441, 7.3439, 7.3437, 7.3432, 7.3428, 7.3426, 7.3421, 7.3416, 7.3416, 7.3411, 7.3406, 7.34, 7.3404, 7.3415, 7.3413, 7.3409, 7.3406, 7.3401, 7.3396, 7.3398, 7.3407, 7.3402, 7.3398, 7.3394, 7.3404, 7.34, 7.3411, 7.3423, 7.3433, 7.3429, 7.3426, 7.3421, 7.3442, 7.344, 7.3436, 7.3434, 7.3431, 7.3426, 7.3421, 7.3421, 7.3437, 7.3435, 7.3446, 7.3441, 7.3436, 7.3434, 7.3429, 7.3426, 7.343, 7.3426, 7.342, 7.3419, 7.3415, 7.3416, 7.341, 7.3409, 7.3406, 7.3401, 7.3412, 7.3422, 7.3417, 7.3412, 7.3409, 7.3404, 7.34, 7.3397, 7.3394, 7.339, 7.3386, 7.3383, 7.338, 7.3378, 7.3375, 7.3372, 7.3367, 7.3364, 7.3359, 7.3357, 7.3353, 7.3354, 7.3349, 7.3344, 7.3354, 7.3354, 7.3353, 7.3348, 7.3358, 7.3355, 7.3354, 7.3409, 7.3406, 7.3404, 7.3403, 7.3398, 7.3408, 7.3404, 7.3399, 7.3394, 7.339, 7.3389, 7.3383, 7.3378, 7.3373, 7.3372, 7.3367, 7.3364, 7.3366, 7.3362, 7.3373, 7.3373, 7.3383, 7.3379, 7.3389, 7.3386, 7.3383, 7.338, 7.3378, 7.3388, 7.3383, 7.3378, 7.3376, 7.3371, 7.3366, 7.3365, 7.3366, 7.3364, 7.3361, 7.3372, 7.3367, 7.3363, 7.3358, 7.3356, 7.3352, 7.3363, 7.3365, 7.3362, 7.336, 7.3355, 7.3384, 7.338, 7.3374, 7.337, 7.337, 7.3366, 7.3362, 7.336, 7.3388, 7.3386, 7.3386, 7.3414, 7.3431, 7.3427, 7.3422, 7.3435, 7.343, 7.3427, 7.3428, 7.3426, 7.3421, 7.3465, 7.346, 7.3471, 7.3467, 7.3466, 7.3462, 7.3461, 7.3456, 7.3453, 7.3448, 7.3444, 7.344, 7.3435, 7.3433, 7.3437, 7.3433, 7.3429, 7.3426, 7.3426, 7.347, 7.3466, 7.3464, 7.3474, 7.3485, 7.3496, 7.3495, 7.3491, 7.3488, 7.3483, 7.3496, 7.3492, 7.3501, 7.3501, 7.3498, 7.3493, 7.3489, 7.3484, 7.3481, 7.3475, 7.3472, 7.347, 7.3468, 7.3468, 7.3464, 7.3476, 7.3487, 7.3483, 7.3479, 7.3475, 7.3475, 7.349, 7.3485, 7.3528, 7.3524, 7.352, 7.3561, 7.3557, 7.3557, 7.3567, 7.3562, 7.356, 7.3557, 7.3552, 7.3548, 7.3543, 7.3539, 7.3534, 7.3531, 7.3541, 7.3536, 7.3531, 7.3541, 7.3552, 7.3562, 7.3558, 7.3556, 7.3554, 7.3552, 7.3563, 7.356, 7.3557, 7.3566, 7.3561, 7.357, 7.358, 7.3589, 7.3585, 7.3585, 7.358, 7.3576, 7.3572, 7.3572, 7.3583, 7.3595, 7.3589, 7.3584, 7.3581, 7.3576, 7.3585, 7.358, 7.3581, 7.3578, 7.3575, 7.357, 7.3566, 7.3561, 7.3557, 7.3554, 7.355, 7.3545, 7.354, 7.3535, 7.3532, 7.3527, 7.3525, 7.3521, 7.3521, 7.3531, 7.3542, 7.3537, 7.3532, 7.353, 7.3525, 7.3521, 7.3516, 7.3539, 7.355, 7.3549, 7.3546, 7.3544, 7.3544, 7.3539, 7.3535, 7.3534, 7.3546, 7.3544, 7.3544, 7.3555, 7.355, 7.3549, 7.3558, 7.3555, 7.3567, 7.3562, 7.3561, 7.3559, 7.3555, 7.355, 7.3548, 7.3557, 7.3552, 7.3549, 7.3552, 7.3575, 7.3572, 7.3568, 7.3568, 7.3563, 7.3565, 7.3563, 7.3558, 7.3558, 7.3556, 7.3554, 7.3549, 7.3546, 7.3546, 7.3549, 7.3544, 7.3556, 7.3552, 7.3548, 7.3547, 7.3544, 7.3546, 7.3542, 7.3554, 7.3552, 7.3548, 7.3542, 7.3543, 7.3542, 7.3537, 7.3534, 7.3531, 7.3526, 7.3522, 7.3531, 7.3528, 7.3539, 7.3537, 7.3535, 7.3532, 7.3528, 7.3525, 7.3524, 7.352, 7.3524, 7.3519, 7.3516, 7.3525, 7.3522, 7.3521, 7.3517, 7.3514, 7.3527, 7.3526, 7.3523, 7.3562, 7.3571, 7.3568, 7.3563, 7.3576, 7.3572, 7.3568, 7.3563, 7.3573, 7.3568, 7.3567, 7.3564, 7.3559, 7.3556, 7.3551, 7.3546, 7.3542, 7.3539, 7.3535, 7.353, 7.3525, 7.3525, 7.3536, 7.3531, 7.3526, 7.3523, 7.3518, 7.3513, 7.3508, 7.3505, 7.3504, 7.351, 7.3508, 7.3517, 7.3515, 7.351, 7.3519, 7.3515, 7.3525, 7.3534, 7.3558, 7.3573, 7.357, 7.3568, 7.3567, 7.3576, 7.3575, 7.3571, 7.357, 7.3579, 7.3574, 7.3583, 7.358, 7.3575, 7.3572, 7.3567, 7.3567, 7.3578, 7.3577, 7.3576, 7.3573, 7.3568, 7.3563, 7.3548, 7.3545, 7.354, 7.3537, 7.3555, 7.3552, 7.3562, 7.3557, 7.3555, 7.3564, 7.356, 7.3556, 7.3551, 7.355, 7.3547, 7.3547, 7.3558, 7.3554, 7.3553, 7.3566, 7.3563, 7.356, 7.3555, 7.3553, 7.3549, 7.3548, 7.3543, 7.3551, 7.3547, 7.3544, 7.3554, 7.3552, 7.355, 7.3546, 7.3542, 7.3538, 7.3537, 7.3533, 7.3533, 7.3546, 7.3542, 7.3537, 7.3532, 7.3528, 7.3539, 7.354, 7.3536, 7.3534, 7.353, 7.3526, 7.3524, 7.3541, 7.3537, 7.3534, 7.3531, 7.3542, 7.3553, 7.3552, 7.356, 7.357, 7.3569, 7.3565, 7.3576, 7.3571, 7.3572, 7.357, 7.3571, 7.3569, 7.3565, 7.3561, 7.3559, 7.3554, 7.3551, 7.3566, 7.3561, 7.357, 7.3569, 7.3568, 7.3563, 7.356, 7.3561, 7.3556, 7.3542, 7.3542, 7.3538, 7.3541, 7.3549, 7.3548, 7.3545, 7.3542, 7.3551, 7.3548, 7.3545, 7.354, 7.3541, 7.3536, 7.3545, 7.354, 7.3538, 7.3537, 7.3546, 7.3546, 7.3541, 7.3542, 7.3537, 7.3536, 7.3545, 7.3544, 7.3542, 7.3552, 7.3549, 7.3558, 7.3554, 7.3551, 7.356, 7.3569, 7.358, 7.3577, 7.3573, 7.357, 7.3567, 7.3568, 7.3573, 7.3569, 7.3571, 7.3569, 7.3577, 7.3574, 7.3571, 7.3568, 7.3564, 7.3563, 7.3558, 7.3553, 7.3548, 7.3546, 7.3555, 7.3551, 7.3561, 7.3556, 7.3551, 7.3547, 7.3556, 7.3552, 7.3548, 7.3547, 7.3545, 7.3541, 7.3537, 7.3535, 7.3546, 7.3542, 7.3538, 7.3536, 7.3531, 7.3542, 7.3553, 7.3549, 7.3545, 7.3543, 7.3539, 7.3542, 7.3601, 7.3598, 7.3594, 7.3595, 7.3595, 7.3592, 7.3592, 7.3588, 7.3598, 7.3595, 7.359, 7.36, 7.3599, 7.3602, 7.364, 7.3625, 7.3611, 7.3597, 7.3593, 7.3589, 7.3588, 7.359, 7.3587, 7.3583, 7.3581, 7.359, 7.3601, 7.3597, 7.3592, 7.3589, 7.3586, 7.3581, 7.3579, 7.3575, 7.3572, 7.3569, 7.3566, 7.355, 7.3545, 7.3541, 7.3539, 7.3534, 7.3544, 7.3542, 7.354, 7.3535, 7.3532, 7.3532, 7.3534, 7.353, 7.354, 7.3541, 7.3542, 7.3542, 7.3541, 7.3544, 7.354, 7.3538, 7.3537, 7.3537, 7.3546, 7.3542, 7.3539, 7.3548, 7.3558, 7.3567, 7.3576, 7.3572, 7.3568, 7.3567, 7.3564, 7.3593, 7.359, 7.3587, 7.3583, 7.3579, 7.3578, 7.3586, 7.3582, 7.3577, 7.3586, 7.3581, 7.3589, 7.3585, 7.3581, 7.3577, 7.3573, 7.3575, 7.3572, 7.3572, 7.3582, 7.3577, 7.3572, 7.3571, 7.3569, 7.3564, 7.3559, 7.3555, 7.3553, 7.3552, 7.355, 7.3546, 7.3533, 7.3542, 7.3538, 7.3536, 7.3531, 7.3527, 7.3527, 7.3537, 7.3524, 7.3524, 7.3521, 7.353, 7.354, 7.3536, 7.3533, 7.3529, 7.3527, 7.3522, 7.3528, 7.3523, 7.3519, 7.3531, 7.3616, 7.3611, 7.361, 7.3606, 7.3601, 7.3599, 7.3596, 7.3592, 7.3587, 7.3584, 7.3579, 7.3574, 7.3581, 7.3592, 7.3587, 7.3598, 7.3595, 7.3591, 7.3589, 7.3587, 7.3583, 7.3578, 7.3575, 7.357, 7.3579, 7.3578, 7.3576, 7.3583, 7.358, 7.3577, 7.3595, 7.3607, 7.3602, 7.3598, 7.3607, 7.3605, 7.3601, 7.3597, 7.3596, 7.3592, 7.3589, 7.3589, 7.3589, 7.3585, 7.3583, 7.358, 7.358, 7.3575, 7.3571, 7.3595, 7.3593, 7.3589, 7.3585, 7.358, 7.3577, 7.3575, 7.357, 7.3566, 7.3561, 7.3569, 7.3566, 7.3563, 7.3574, 7.3572, 7.3567, 7.3563, 7.3562, 7.3558, 7.3554, 7.3566, 7.3564, 7.356, 7.3556, 7.3552, 7.3547, 7.355, 7.3549, 7.3545, 7.3553, 7.355, 7.3536, 7.3559, 7.3556, 7.3564, 7.3561, 7.3557, 7.3555, 7.3566, 7.3576, 7.3575, 7.3571, 7.357, 7.3581, 7.3579, 7.3576, 7.3574, 7.3573, 7.3569, 7.3567, 7.3563, 7.3614, 7.361, 7.3606, 7.3604, 7.3613, 7.3609, 7.3606, 7.3602, 7.3612, 7.3609, 7.3605, 7.3601, 7.3598, 7.3599, 7.3598, 7.3594, 7.3595, 7.3591, 7.3589, 7.3635, 7.3636, 7.3632, 7.363, 7.3628, 7.3625, 7.3624, 7.3646, 7.3645, 7.3644, 7.363, 7.3627, 7.3636, 7.3634, 7.362, 7.3605, 7.3602, 7.3601, 7.3601, 7.3598, 7.3608, 7.3609, 7.3618, 7.3614, 7.3615, 7.3615, 7.3612, 7.3598, 7.3597, 7.3593, 7.359, 7.3587, 7.3575, 7.3572, 7.3568, 7.3565, 7.3561, 7.3559, 7.3556, 7.3565, 7.3561, 7.3559, 7.3556, 7.3551, 7.3562, 7.3559, 7.3573, 7.3569, 7.3555, 7.3554, 7.3549, 7.3546, 7.3541, 7.3543, 7.3541, 7.354, 7.3548, 7.3547, 7.3551, 7.3567, 7.3578, 7.3575, 7.3571, 7.3579, 7.3578, 7.3574, 7.3582, 7.3578, 7.3574, 7.357, 7.3565, 7.355, 7.3545, 7.3545, 7.3543, 7.3543, 7.3552, 7.3548, 7.3544, 7.354, 7.355, 7.3547, 7.3543, 7.3539, 7.3535, 7.3533, 7.3529, 7.3537, 7.3535, 7.3531, 7.3532, 7.3534, 7.353, 7.3527, 7.3536, 7.3533, 7.3533, 7.3531, 7.3527, 7.3523, 7.3519, 7.3515, 7.3513, 7.3512, 7.3508, 7.3507, 7.3515, 7.3512, 7.3499, 7.3498, 7.3537, 7.3534, 7.3533, 7.353, 7.3528, 7.3526, 7.3536, 7.3546, 7.3542, 7.3539, 7.3537, 7.3533, 7.3541, 7.355, 7.3547, 7.3545, 7.354, 7.354, 7.3538, 7.3534, 7.3543, 7.3552, 7.356, 7.3563, 7.3565, 7.3567, 7.357, 7.357, 7.3581, 7.3591, 7.3591, 7.3587, 7.3586, 7.3582, 7.3579, 7.3576, 7.3574, 7.357, 7.3567, 7.3563, 7.3561, 7.356, 7.3569, 7.3565, 7.3563, 7.3559, 7.3555, 7.3554, 7.3552, 7.356, 7.3568, 7.3567, 7.3564, 7.3567, 7.3554, 7.355, 7.3549, 7.3571, 7.3568, 7.3583, 7.3581, 7.358, 7.3577, 7.3564, 7.356, 7.3557, 7.3553, 7.3561, 7.3557, 7.3553, 7.3551, 7.3547, 7.3554, 7.3549, 7.3556, 7.3553, 7.3549, 7.3547, 7.3543, 7.3541, 7.3541, 7.3549, 7.3546, 7.3555, 7.3564, 7.3561, 7.3559, 7.3557, 7.3553, 7.3561, 7.3559, 7.3568, 7.3565, 7.3564, 7.3572, 7.3571, 7.357, 7.3579, 7.3578, 7.3577, 7.3572, 7.3571, 7.3569, 7.3566, 7.3562, 7.3562, 7.3575, 7.3583, 7.3582, 7.3577, 7.3573, 7.3582, 7.359, 7.359, 7.359, 7.3598, 7.3649, 7.3645, 7.3653, 7.3661, 7.366, 7.3658, 7.3667, 7.3663, 7.3662, 7.3661, 7.3658, 7.3655, 7.3653, 7.3652, 7.3652, 7.3651, 7.365, 7.3658, 7.3646, 7.3646, 7.3642, 7.3639, 7.3635, 7.3636, 7.3633, 7.3632, 7.3631, 7.3627, 7.3623, 7.3621, 7.3616, 7.3623, 7.3623, 7.3621, 7.3607, 7.3605, 7.3601, 7.3609, 7.3618, 7.3627, 7.3623, 7.3621, 7.3608, 7.3617, 7.3614, 7.3637, 7.3634, 7.3633, 7.3641, 7.364, 7.3655, 7.3651, 7.3649, 7.3647, 7.3646, 7.3653, 7.3661, 7.3657, 7.3653, 7.3662, 7.3683, 7.3691, 7.3688, 7.3696, 7.3705, 7.3731, 7.373, 7.3728, 7.3725, 7.3729, 7.3726, 7.3725, 7.3733, 7.3732, 7.373, 7.373, 7.3728, 7.3727, 7.3723, 7.3723, 7.3721, 7.3717, 7.3714, 7.3713, 7.3709, 7.3718, 7.3716, 7.3713, 7.371, 7.371, 7.372, 7.3736, 7.3746, 7.3744, 7.374, 7.3737, 7.3735, 7.3731, 7.3728, 7.3726, 7.3723, 7.3718, 7.3726, 7.3723, 7.3731, 7.3726, 7.3726, 7.3726, 7.3733, 7.3728, 7.3724, 7.3723, 7.372, 7.3716, 7.3714, 7.3711, 7.3718, 7.3725, 7.3725, 7.3722, 7.3722, 7.3719, 7.3715, 7.3701, 7.3698, 7.3707, 7.3705, 7.3703, 7.3702, 7.3698, 7.3694, 7.3692, 7.3688, 7.3676, 7.3676, 7.3673, 7.3673, 7.3671, 7.3669, 7.3672, 7.3679, 7.3677, 7.3676, 7.3675, 7.3684, 7.3692, 7.3689, 7.3689, 7.3686, 7.3685, 7.3693, 7.369, 7.3686, 7.3682, 7.3679, 7.3676, 7.3674, 7.3672, 7.367, 7.3667, 7.3676, 7.3675, 7.3673, 7.3683, 7.369, 7.3687, 7.3687, 7.3686, 7.3675, 7.3675, 7.3684, 7.3692, 7.369, 7.3685, 7.3681, 7.3677, 7.3673, 7.367, 7.3678, 7.3686, 7.3685, 7.3681, 7.3677, 7.3676, 7.3672, 7.3668, 7.3664, 7.366, 7.3658, 7.3657, 7.3643, 7.3641, 7.3646, 7.3643, 7.3639, 7.3646, 7.3642, 7.3638, 7.3626, 7.3634, 7.363, 7.3639, 7.3636, 7.3633, 7.3629, 7.364, 7.3636, 7.3632, 7.3629, 7.3638, 7.3636, 7.3624, 7.3623, 7.3621, 7.3628, 7.3623, 7.3619, 7.3615, 7.3613, 7.3601, 7.3609, 7.3605, 7.3601, 7.3608, 7.3607, 7.3616, 7.3612, 7.3608, 7.3604, 7.3614, 7.3612, 7.3614, 7.3613, 7.3609, 7.3609, 7.3607, 7.3604, 7.3604, 7.3602, 7.3599, 7.3595, 7.3593, 7.36, 7.3596, 7.3594, 7.3594, 7.3581, 7.3581, 7.3597, 7.3606, 7.3606, 7.3603, 7.36, 7.3599, 7.3596, 7.3605, 7.3615, 7.3614, 7.3613, 7.3622, 7.3621, 7.3618, 7.3615, 7.3612, 7.3608, 7.3637, 7.3637, 7.3634, 7.3632, 7.3644, 7.364, 7.3637, 7.3636, 7.3633, 7.3631, 7.363, 7.3627, 7.3624, 7.3633, 7.3631, 7.3627, 7.3625, 7.3636, 7.3637, 7.3636, 7.3634, 7.363, 7.3628, 7.3624, 7.3621, 7.3628, 7.3624, 7.3633, 7.363, 7.364, 7.3636, 7.3636, 7.3635, 7.3633, 7.3631, 7.364, 7.3637, 7.3633, 7.3642, 7.3639, 7.3638, 7.3634, 7.3641, 7.3648, 7.3648, 7.3646, 7.3644, 7.3641, 7.363, 7.3659, 7.3668, 7.3681, 7.3679, 7.3675, 7.3673, 7.3669, 7.3665, 7.3662, 7.3658, 7.3658, 7.3659, 7.3656, 7.3653, 7.3652, 7.366, 7.366, 7.3658, 7.3655, 7.3664, 7.3662, 7.366, 7.3666, 7.3662, 7.367, 7.3666, 7.3674, 7.3671, 7.367, 7.3678, 7.3665, 7.3662, 7.3662, 7.366, 7.3656, 7.3699, 7.3717, 7.3713, 7.3709, 7.3705, 7.3703, 7.3701, 7.3699, 7.3697, 7.3684, 7.368, 7.3687, 7.3683, 7.3682, 7.3679, 7.3686, 7.3682, 7.3678, 7.3676, 7.3674, 7.3673, 7.3672, 7.3669, 7.3677, 7.3676, 7.3675, 7.3684, 7.3692, 7.369, 7.3689, 7.3689, 7.3686, 7.3685, 7.3686, 7.3684, 7.3681, 7.3677, 7.3673, 7.3669, 7.3667, 7.3663, 7.3673, 7.367, 7.3666, 7.3664, 7.366, 7.3656, 7.3652, 7.3648, 7.3663, 7.3697, 7.3715, 7.3722, 7.372, 7.3719, 7.3715, 7.3716, 7.3735, 7.3753, 7.376, 7.3757, 7.3747, 7.3743, 7.3751, 7.3759, 7.3769, 7.3765, 7.3815, 7.3823, 7.382, 7.3817, 7.3814, 7.3811, 7.381, 7.3817, 7.3813, 7.382, 7.3818, 7.3817, 7.3814, 7.3822, 7.3821, 7.3828, 7.3826, 7.3822, 7.3819, 7.3818, 7.3828, 7.3845, 7.3842, 7.3849, 7.3846, 7.3843, 7.3841, 7.3837, 7.3833, 7.383, 7.3838, 7.3844, 7.3852, 7.386, 7.3857, 7.3853, 7.3849, 7.3856, 7.3853, 7.3861, 7.3858, 7.3854, 7.3868, 7.3871, 7.3868, 7.3866, 7.3865, 7.3861, 7.3857, 7.3864, 7.3868, 7.3855, 7.3851, 7.3858, 7.3855, 7.3852, 7.3859, 7.3855, 7.3862, 7.3858, 7.3855, 7.3852, 7.385, 7.3847, 7.3847, 7.3847, 7.3836, 7.3832, 7.3841, 7.3839, 7.3843, 7.384, 7.3847, 7.3844, 7.3845, 7.3841, 7.3838, 7.3835, 7.3841, 7.3849, 7.3847, 7.3844, 7.3852, 7.3853, 7.3849, 7.3845, 7.3844, 7.3843, 7.385, 7.3847, 7.3844, 7.3842, 7.3848, 7.3845, 7.3842, 7.384, 7.3851, 7.3847, 7.3844, 7.384, 7.3842, 7.384, 7.3848, 7.3846, 7.3842, 7.3838, 7.3842, 7.3845, 7.3841, 7.3838, 7.3835, 7.3824, 7.3821, 7.3827, 7.3834, 7.383, 7.3829, 7.3838, 7.3836, 7.3843, 7.384, 7.3846, 7.3844, 7.3842, 7.3838, 7.3846, 7.3844, 7.3843, 7.384, 7.3837, 7.3835, 7.3836, 7.3834, 7.383, 7.3829, 7.3831, 7.3838, 7.3839, 7.3835, 7.3843, 7.3851, 7.3847, 7.3846, 7.3844, 7.3843, 7.3841, 7.384, 7.3838, 7.3846, 7.3842, 7.3841, 7.3848, 7.3844, 7.3842, 7.3842, 7.3838, 7.3835, 7.3831, 7.3828, 7.3825, 7.3833, 7.383, 7.3827, 7.3823, 7.3819, 7.3817, 7.3815, 7.3822, 7.3821, 7.3818, 7.3817, 7.3815, 7.3814, 7.3812, 7.3817, 7.3815, 7.3812, 7.381, 7.3809, 7.3818, 7.3815, 7.3812, 7.3809, 7.3817, 7.382, 7.3819, 7.3816, 7.3815, 7.3813, 7.3809, 7.3809, 7.3818, 7.3814, 7.3813, 7.3825, 7.3822, 7.383, 7.3827, 7.3823, 7.3831, 7.3828, 7.3825, 7.3821, 7.3818, 7.3815, 7.3813, 7.381, 7.3809, 7.3827, 7.3824, 7.3814, 7.3824, 7.3821, 7.3822, 7.3823, 7.382, 7.3828, 7.3837, 7.3835, 7.3844, 7.3845, 7.3841, 7.3838, 7.3835, 7.3832, 7.383, 7.3826, 7.3826, 7.3825, 7.3824, 7.3824, 7.3831, 7.3829, 7.3836, 7.3833, 7.3842, 7.3839, 7.3835, 7.3842, 7.384, 7.3837, 7.3834, 7.3831, 7.3828, 7.3828, 7.3835, 7.3832, 7.3829, 7.3826, 7.3825, 7.3823, 7.3819, 7.3826, 7.3824, 7.3822, 7.383, 7.3828, 7.3827, 7.3826, 7.3822, 7.3819, 7.3828, 7.3827, 7.3827, 7.3827, 7.3824, 7.382, 7.3818, 7.3815, 7.3811, 7.3799, 7.3789, 7.3804, 7.3801, 7.3807, 7.3804, 7.3806, 7.3797, 7.3794, 7.3791, 7.3791, 7.3787, 7.3786, 7.3783, 7.3781, 7.3788, 7.3785, 7.3783, 7.3782, 7.3779, 7.3788, 7.3785, 7.3783, 7.378, 7.3777, 7.3774, 7.377, 7.3767, 7.3766, 7.3763, 7.376, 7.3757, 7.3764, 7.3797, 7.3794, 7.3793, 7.3801, 7.3797, 7.3793, 7.3807, 7.3803, 7.3799, 7.3803, 7.38, 7.3797, 7.3804, 7.3801, 7.38, 7.3808, 7.3825, 7.3822, 7.3828, 7.3827, 7.3823, 7.3819, 7.3816, 7.3814, 7.3812, 7.382, 7.3828, 7.3824, 7.3821, 7.382, 7.3827, 7.3815, 7.3821, 7.3818, 7.3819, 7.3825, 7.3824, 7.3822, 7.3821, 7.3817, 7.3814, 7.3821, 7.3822, 7.3819, 7.3817, 7.3814, 7.3811, 7.3808, 7.3805, 7.3804, 7.38, 7.3789, 7.3785, 7.3781, 7.3777, 7.3774, 7.3772, 7.3769, 7.3766, 7.3775, 7.3765, 7.3753, 7.3743, 7.3748, 7.3756, 7.3744, 7.3742, 7.374, 7.3747, 7.3743, 7.3742, 7.3742, 7.3739, 7.3738, 7.3736, 7.3743, 7.3751, 7.375, 7.3748, 7.3744, 7.3742, 7.3758, 7.3758, 7.3754, 7.3752, 7.3749, 7.3747, 7.3753, 7.3786, 7.3782, 7.3778, 7.3776, 7.3773, 7.3771, 7.3768, 7.3767, 7.3764, 7.3761, 7.3761, 7.3759, 7.3765, 7.3761, 7.3758, 7.3755, 7.3751, 7.3748, 7.3755, 7.376, 7.3757, 7.3756, 7.3753, 7.376, 7.3758, 7.3758, 7.3754, 7.3753, 7.375, 7.3756, 7.3752, 7.3759, 7.3805, 7.3806, 7.3805, 7.3802, 7.38, 7.3799, 7.3797, 7.3803, 7.3802, 7.3801, 7.3797, 7.3798, 7.3807, 7.3804, 7.38, 7.3806, 7.3805, 7.3803, 7.38, 7.3796, 7.3793, 7.3799, 7.3796, 7.3803, 7.3801, 7.3801, 7.38, 7.3797, 7.3795, 7.3794, 7.3791, 7.3798, 7.3794, 7.3793, 7.3791, 7.3801, 7.3808, 7.3805, 7.3802, 7.38, 7.3797, 7.3795, 7.3792, 7.3789, 7.3777, 7.3784, 7.379, 7.3787, 7.3785, 7.3801, 7.3791, 7.3789, 7.3786, 7.3784, 7.3782, 7.3772, 7.3779, 7.3786, 7.379, 7.3797, 7.3813, 7.3811, 7.3809, 7.3806, 7.3803, 7.38, 7.3797, 7.3794, 7.3794, 7.3792, 7.3789, 7.3785, 7.3781, 7.3798, 7.3796, 7.3792, 7.3789, 7.3779, 7.3779, 7.3776, 7.3766, 7.3755, 7.3762, 7.3762, 7.3759, 7.3756, 7.3765, 7.3767, 7.3756, 7.3753, 7.3749, 7.3746, 7.3745, 7.3742, 7.3739, 7.3738, 7.3735, 7.3731, 7.3731, 7.3728, 7.3729, 7.3727, 7.3723, 7.3723, 7.372, 7.3717, 7.3724, 7.3721, 7.3718, 7.3716, 7.3713, 7.3713, 7.371, 7.3717, 7.3714, 7.3712, 7.3709, 7.3705, 7.3704, 7.3703, 7.3696, 7.3696, 7.3693, 7.369, 7.3687, 7.3684, 7.369, 7.3687, 7.3694, 7.369, 7.369, 7.3686, 7.3685, 7.3683, 7.3681, 7.369, 7.3686, 7.3692, 7.3695, 7.3692, 7.3689, 7.3685, 7.3694, 7.369, 7.3679, 7.3676, 7.3693, 7.3689, 7.3685, 7.3684, 7.3682, 7.3678, 7.3684, 7.368, 7.368, 7.3676, 7.3683, 7.3689, 7.3687, 7.3684, 7.3683, 7.3682, 7.3683, 7.3691, 7.3681, 7.3671, 7.3669, 7.3671, 7.3668, 7.3665, 7.3662, 7.3661, 7.365, 7.3649, 7.3649, 7.3646, 7.3644, 7.364, 7.3657, 7.3663, 7.3708, 7.3706, 7.3703, 7.3706, 7.3712, 7.3719, 7.3717, 7.3714, 7.3711, 7.3701, 7.3698, 7.3695, 7.3692, 7.369, 7.3693, 7.3692, 7.3688, 7.3686, 7.3684, 7.3681, 7.3677, 7.3685, 7.3683, 7.3682, 7.3679, 7.3676, 7.3673, 7.3674, 7.3671, 7.367, 7.3669, 7.3666, 7.3672, 7.3678, 7.3677, 7.3684, 7.368, 7.3676, 7.3674, 7.368, 7.3686, 7.3682, 7.3679, 7.3676, 7.3683, 7.368, 7.3678, 7.3674, 7.3671, 7.3672, 7.3678, 7.3677, 7.3683, 7.37, 7.3689, 7.3696, 7.3693, 7.3699, 7.37, 7.3699, 7.3698, 7.3696, 7.3695, 7.3702, 7.37, 7.3697, 7.3703, 7.3701, 7.3698, 7.3699, 7.3697, 7.3694, 7.37, 7.3697, 7.3704, 7.37, 7.3699, 7.3696, 7.3703, 7.371, 7.3707, 7.3714, 7.3711, 7.3708, 7.3705, 7.3704, 7.3705, 7.3701, 7.3698, 7.3696, 7.3697, 7.3694, 7.3694, 7.3701, 7.3698, 7.37, 7.3698, 7.3695, 7.3713, 7.3712, 7.3719, 7.3725, 7.3728, 7.3724, 7.3722, 7.3719, 7.3718, 7.3716, 7.3713, 7.3711, 7.3717, 7.3723, 7.3721, 7.3719, 7.3718, 7.3716, 7.3713, 7.3711, 7.3708, 7.3714, 7.3712, 7.3709, 7.3707, 7.3713, 7.371, 7.3708, 7.3707, 7.3704, 7.3711, 7.3708, 7.3704, 7.3702, 7.3708, 7.3706, 7.3703, 7.3699, 7.3705, 7.3702, 7.3717, 7.3727, 7.3725, 7.3733, 7.3739, 7.3744, 7.3743, 7.374, 7.3739, 7.3738, 7.3734, 7.3741, 7.3737, 7.3754, 7.3752, 7.3751, 7.3777, 7.3775, 7.3774, 7.3773, 7.3808, 7.3805, 7.3803, 7.3799, 7.3796, 7.3793, 7.3791, 7.3789, 7.3787, 7.3784, 7.3782, 7.378, 7.3777, 7.3774, 7.378, 7.3778, 7.3777, 7.3774, 7.3771, 7.3768, 7.3764, 7.377, 7.3768, 7.3767, 7.3773, 7.3772, 7.3778, 7.3778, 7.3776, 7.3773, 7.3771, 7.377, 7.3767, 7.3766, 7.3774, 7.3771, 7.377, 7.3777, 7.3784, 7.3783, 7.3789, 7.3791, 7.3788, 7.3795, 7.3793, 7.3791, 7.3788, 7.3785, 7.3784, 7.3781, 7.3778, 7.3794, 7.3803, 7.3821, 7.3831, 7.3831, 7.3827, 7.3824, 7.3831, 7.3829, 7.3834, 7.384, 7.3847, 7.3853, 7.3851, 7.3851, 7.3848, 7.3848, 7.3849, 7.3855, 7.3852, 7.3859, 7.3858, 7.3855, 7.3853, 7.3852, 7.385, 7.3848, 7.3845, 7.386, 7.3858, 7.3865, 7.3862, 7.3862, 7.3859, 7.3866, 7.3865, 7.3862, 7.3868, 7.3865, 7.3862, 7.386, 7.3856, 7.3854, 7.3853, 7.3853, 7.385, 7.3847, 7.3844, 7.3851, 7.3857, 7.3863, 7.386, 7.3861, 7.3868, 7.3867, 7.3866, 7.3863, 7.386, 7.3866, 7.3873, 7.3872, 7.3869, 7.3866, 7.3863, 7.3862, 7.3861, 7.3861, 7.386, 7.3858, 7.3856, 7.3853, 7.3851, 7.385, 7.3848, 7.3846, 7.3842, 7.3838, 7.3843, 7.3839, 7.3836, 7.3834, 7.3839, 7.3835, 7.3832, 7.3847, 7.3846, 7.3843, 7.3851, 7.3859, 7.3856, 7.3854, 7.3851, 7.385, 7.3848, 7.3847, 7.3854, 7.3851, 7.3848, 7.3846, 7.3853, 7.3852, 7.385, 7.3849, 7.3847, 7.3845, 7.3844, 7.3843, 7.3849, 7.3846, 7.3845, 7.3841, 7.3838, 7.3835, 7.3833, 7.3831, 7.383, 7.3827, 7.3833, 7.3829, 7.3826, 7.3832, 7.3829, 7.3834, 7.3831, 7.3828, 7.3824, 7.3824, 7.3821, 7.3821, 7.3819, 7.3829, 7.3826, 7.3836, 7.3836, 7.3843, 7.3849, 7.3855, 7.3853, 7.385, 7.3856, 7.3862, 7.3859, 7.3856, 7.3872, 7.3879, 7.3878, 7.3876, 7.3873, 7.387, 7.387, 7.3869, 7.3866, 7.3863, 7.3872, 7.3871, 7.3871, 7.3877, 7.3877, 7.3875, 7.3873, 7.3871, 7.3868, 7.3867, 7.3864, 7.387, 7.3867, 7.3864, 7.3861, 7.386, 7.3857, 7.3862, 7.3858, 7.3855, 7.3853, 7.385, 7.3849, 7.3849, 7.3852, 7.3849, 7.3847, 7.3844, 7.3851, 7.3851, 7.385, 7.3848, 7.3848, 7.3845, 7.3852, 7.3849, 7.3846, 7.3843, 7.3841, 7.3842, 7.384, 7.3839, 7.3836, 7.3842, 7.384, 7.3838, 7.3837, 7.384, 7.3839, 7.3836, 7.3834, 7.3832, 7.3829, 7.3827, 7.3823, 7.3822, 7.3819, 7.3817, 7.3815, 7.3822, 7.3822, 7.382, 7.3817, 7.3815, 7.3812, 7.3811, 7.3817, 7.3824, 7.3823, 7.3825, 7.3831, 7.3828, 7.3824, 7.3822, 7.382, 7.3854, 7.3851, 7.3848, 7.3847, 7.3846, 7.3843, 7.3849, 7.3846, 7.3843, 7.384, 7.3836, 7.3833, 7.3839, 7.3845, 7.3842, 7.3839, 7.3838, 7.3835, 7.3832, 7.3828, 7.3826, 7.3832, 7.383, 7.3827, 7.3833, 7.3832, 7.383, 7.3829, 7.3826, 7.3823, 7.382, 7.3817, 7.3815, 7.3812, 7.381, 7.3807, 7.3806, 7.3803, 7.38, 7.38, 7.3797, 7.3794, 7.3792, 7.3792, 7.3789, 7.3785, 7.3791, 7.3789, 7.3786, 7.3784, 7.3783, 7.3781, 7.3778, 7.3784, 7.378, 7.378, 7.3787, 7.3793, 7.3799, 7.3796, 7.3793, 7.379, 7.3789, 7.3787, 7.3784, 7.3782, 7.3779, 7.3815, 7.3812, 7.3809, 7.3806, 7.3803, 7.3808, 7.3805, 7.3803, 7.38, 7.3797, 7.3803, 7.3811, 7.3817, 7.3814, 7.3813, 7.3819, 7.3817, 7.3814, 7.3813, 7.3813, 7.3811, 7.381, 7.3819, 7.3838, 7.3836, 7.3834, 7.3841, 7.384, 7.3838, 7.3836, 7.3834, 7.3833, 7.3833, 7.3835, 7.3835, 7.3832, 7.3839, 7.3837, 7.3837, 7.3835, 7.384, 7.3846, 7.3843, 7.385, 7.3846, 7.3845, 7.3842, 7.3839, 7.3845, 7.385, 7.3856, 7.3862, 7.3859, 7.3862], '192.168.122.111': [12.8591, 9.6321, 8.4709, 7.7046, 7.2502, 7.1512, 7.1076, 6.9708, 6.8312, 6.7373, 6.6969, 6.5837, 6.5682, 6.493, 6.8074, 6.7252, 6.6819, 6.6436, 6.6111, 6.5545, 6.5628, 6.5383, 6.5481, 6.4984, 6.4812, 6.4362, 6.599, 6.8248, 6.97, 6.9293, 6.9054, 6.9004, 6.8544, 6.9723, 7.0869, 7.0812, 7.0523, 7.0334, 7.0091, 6.9806, 6.9656, 6.9545, 6.9349, 6.9103, 6.8951, 6.8632, 6.8416, 6.8207, 6.8142, 6.8069, 6.789, 6.7633, 6.8421, 6.8299, 6.8255, 6.803, 6.791, 6.8685, 6.843, 6.8185, 6.7967, 6.796, 6.7823, 6.7835, 6.7681, 6.7627, 6.7439, 6.7292, 6.7175, 6.6975, 6.6787, 6.7396, 6.7224, 6.7193, 6.7063, 6.6936, 6.6828, 6.7344, 6.7191, 6.7138, 6.7083, 6.7693, 6.7571, 6.7644, 6.7512, 6.7514, 6.7396, 6.7289, 6.7183, 6.7119, 6.7025, 6.6876, 6.7355, 6.7202, 6.7055, 6.6964, 6.6816, 6.7248, 6.765, 6.7583, 6.7454, 6.7337, 6.7212, 6.7189, 6.7137, 6.7006, 6.6974, 6.687, 6.6931, 6.8695, 6.86, 6.846, 6.838, 6.8328, 6.8252, 6.9776, 6.9731, 7.0441, 7.0751, 7.0653, 7.0549, 7.0428, 7.0287, 7.0167, 7.0508, 7.0382, 7.0702, 7.0592, 7.0488, 7.0412, 7.0284, 7.0165, 7.004, 6.9969, 6.9894, 6.9831, 6.9446, 6.972, 6.9654, 6.9605, 6.9574, 6.9692, 6.9656, 6.966600000000001, 6.967600000000001, 6.968600000000001, 6.9629, 6.9598, 6.9519, 6.9457, 6.9367, 6.9666, 6.9949, 6.9908, 7.0207, 7.0121, 7.0408, 7.0395, 7.033, 7.0321, 7.0639, 7.0601, 7.0548, 7.0282, 7.034, 7.0275, 7.0828, 7.1131, 7.1113, 7.1364, 7.1281, 7.125, 7.1182, 7.18, 7.2003, 7.2202, 7.215, 7.2129, 7.2094, 7.2324, 7.2277, 7.2201, 7.243, 7.2378, 7.2271, 7.2194, 7.2148, 7.214, 7.2036, 7.1998, 7.1897, 7.182, 7.2023, 7.1951, 7.1958, 7.1874, 7.1827, 7.1797, 7.1732, 7.1657, 7.1866, 7.1834, 7.2028, 7.2211, 7.2132, 7.2076, 7.2022, 7.2243, 7.216, 7.2357, 7.2285, 7.2239, 7.2229, 7.216, 7.2335, 7.2504, 7.2674, 7.2847, 7.3012, 7.2966, 7.2883, 7.2818, 7.3249, 7.317, 7.3314, 7.3478, 7.3426, 7.3576, 7.3581, 7.3741, 7.3653, 7.4306, 7.4545, 7.4911, 7.5058, 7.4964, 7.4883, 7.5028, 7.5202, 7.4958, 7.4907, 7.4866, 7.5022, 7.4938, 7.4899, 7.5018, 7.4948, 7.49, 7.5033, 7.497, 7.4919, 7.4879, 7.483, 7.4783, 7.4738, 7.469, 7.482, 7.4758, 7.4719, 7.4639, 7.4802, 7.4747, 7.4906, 7.5064, 7.5019, 7.5171, 7.5136, 7.5103, 7.5074, 7.501, 7.4947, 7.5068, 7.5013, 7.5173, 7.5333, 7.5269, 7.5194, 7.5116, 7.5254, 7.5194, 7.5132, 7.526, 7.5257, 7.5178, 7.5164, 7.5106, 7.5047, 7.4984, 7.492, 7.4842, 7.4787, 7.4751, 7.4693, 7.4684, 7.4629, 7.4589, 7.456, 7.4903, 7.4845, 7.4774, 7.471, 7.4642, 7.4575, 7.4504, 7.4441, 7.4391, 7.4341, 7.4274, 7.4229, 7.4364, 7.4349, 7.4302, 7.4254, 7.4203, 7.4135, 7.4254, 7.4206, 7.4337, 7.4316, 7.429, 7.4405, 7.4517, 7.4636, 7.4573, 7.4528, 7.465, 7.4617, 7.4606, 7.4714, 7.465, 7.4622, 7.4722, 7.4679, 7.466, 7.4604, 7.4546, 7.4493, 7.4434, 7.4496, 7.4449, 7.4574, 7.4517, 7.4473, 7.4296, 7.4408, 7.4349, 7.4298, 7.4256, 7.4343, 7.429, 7.4231, 7.4175, 7.4121, 7.4062, 7.4024, 7.3968, 7.393, 7.3909, 7.3886, 7.3863, 7.3974, 7.3939, 7.3901, 7.3876, 7.3835, 7.3819, 7.379, 7.3776, 7.3733, 7.3709, 7.367, 7.3825, 7.393, 7.3879, 7.3978, 7.3973, 7.3942, 7.392, 7.3872, 7.3826, 7.384, 7.3823, 7.392, 7.389, 7.3889, 7.3989, 7.3952, 7.3912, 7.3857, 7.3807, 7.3755, 7.3863, 7.381, 7.3797, 7.3765, 7.3717, 7.3833, 7.3801, 7.3888, 7.3852, 7.3799, 7.3774, 7.3725, 7.3677, 7.3629, 7.3604, 7.3562, 7.3538, 7.3505, 7.3528, 7.3481, 7.3449, 7.3405, 7.3494, 7.3455, 7.3431, 7.3757, 7.3716, 7.3684, 7.3682, 7.378, 7.3735, 7.3718, 7.3674, 7.3633, 7.3588, 7.3661, 7.363, 7.3582, 7.3671, 7.3766, 7.3757, 7.3716, 7.3809, 7.3776, 7.373, 7.3715, 7.3675, 7.365, 7.3623, 7.3604, 7.3571, 7.3528, 7.3608, 7.3577, 7.3533, 7.349, 7.345, 7.3408, 7.3377, 7.3402, 7.3382, 7.3365, 7.3325, 7.3291, 7.3368, 7.3445, 7.3405, 7.3367, 7.3335, 7.3289, 7.3247, 7.3324, 7.3516, 7.3484, 7.3456, 7.3415, 7.3506, 7.3531, 7.3726, 7.3695, 7.3675, 7.3641, 7.3622, 7.3579, 7.3549, 7.3743, 7.3715, 7.3797, 7.3761, 7.3829, 7.3786, 7.3865, 7.3845, 7.3812, 7.3794, 7.3754, 7.3741, 7.3812, 7.3769, 7.3734, 7.3727, 7.3693, 7.3763, 7.3738, 7.3727, 7.3704, 7.3675, 7.366, 7.3648, 7.3725, 7.3808, 7.377, 7.385, 7.382, 7.3792, 7.3762, 7.3754, 7.3727, 7.3694, 7.3672, 7.3764, 7.3856, 7.383, 7.38, 7.3876, 7.386, 7.385, 7.3815, 7.3824, 7.3896, 7.3882, 7.3854, 7.3818, 7.3891, 7.3869, 7.383, 7.379, 7.3801, 7.377, 7.3741, 7.3808, 7.3779, 7.3754, 7.374, 7.3737, 7.3745, 7.3708, 7.3672, 7.3653, 7.3618, 7.3682, 7.3656, 7.3625, 7.3588, 7.3553, 7.3539, 7.3506, 7.348, 7.3457, 7.3533, 7.3497, 7.3485, 7.3455, 7.3425, 7.3495, 7.3462, 7.3428, 7.3392, 7.3381, 7.335, 7.3602, 7.3569, 7.3551, 7.361, 7.3587, 7.3551, 7.379, 7.3768, 7.3732, 7.3705, 7.3759, 7.3742, 7.3727, 7.3746, 7.3727, 7.3702, 7.3681, 7.3659, 7.3726, 7.3706, 7.3682, 7.3741, 7.3707, 7.3695, 7.3752, 7.3722, 7.3703, 7.3681, 7.3644, 7.3616, 7.3595, 7.3576, 7.3546, 7.3525, 7.3498, 7.3469, 7.3435, 7.3516, 7.3487, 7.346, 7.3525, 7.3587, 7.3651, 7.3632, 7.3606, 7.3576, 7.3576, 7.3549, 7.3963, 7.3942, 7.3911, 7.3888, 7.3857, 7.3834, 7.38, 7.3853, 7.3825, 7.4156, 7.4207, 7.4183, 7.4149, 7.4198, 7.4176, 7.4226, 7.4135, 7.4042, 7.4021, 7.3991, 7.396, 7.3934, 7.3916, 7.3887, 7.3862, 7.384, 7.3812, 7.3784, 7.384, 7.3806, 7.3783, 7.3753, 7.3732, 7.3703, 7.3674, 7.3651, 7.3635, 7.3608, 7.3662, 7.3647, 7.3632, 7.3687, 7.3738, 7.3721, 7.3704, 7.3676, 7.3661, 7.3645, 7.3619, 7.3671, 7.3645, 7.3629, 7.36, 7.3653, 7.3628, 7.3859, 7.3833, 7.3736, 7.3829, 7.3766, 7.3764, 7.3737, 7.3717, 7.3691, 7.3667, 7.3641, 7.3613, 7.3584, 7.3577, 7.3633, 7.3628, 7.368, 7.3658, 7.3714, 7.3701, 7.3687, 7.3672, 7.3642, 7.3627, 7.3615, 7.3622, 7.3596, 7.3568, 7.3551, 7.355, 7.353, 7.3503, 7.3502, 7.3483, 7.3546, 7.3538, 7.3514, 7.357, 7.3555, 7.3534, 7.3507, 7.3562, 7.3565, 7.3619, 7.3595, 7.3575, 7.3623, 7.3614, 7.3617, 7.3601, 7.3654, 7.3713, 7.3721, 7.3745, 7.3733, 7.3707, 7.3684, 7.366, 7.3638, 7.3616, 7.359, 7.3564, 7.3546, 7.3536, 7.3583, 7.3567, 7.355, 7.3534, 7.351, 7.3492, 7.3533, 7.3531, 7.3509, 7.3429, 7.3403, 7.3457, 7.3443, 7.3353, 7.3401, 7.3383, 7.3361, 7.335, 7.333, 7.3309, 7.3361, 7.3347, 7.3408, 7.3387, 7.3369, 7.3354, 7.3332, 7.3313, 7.3293, 7.3274, 7.3339, 7.3318, 7.33, 7.3351, 7.3394, 7.3372, 7.3345, 7.3401, 7.3378, 7.3378, 7.3362, 7.3346, 7.3323, 7.3444, 7.3497, 7.3582, 7.3562, 7.3485, 7.354, 7.3529, 7.351, 7.3485, 7.3528, 7.3575, 7.3626, 7.3609, 7.3586, 7.3564, 7.3609, 7.3547, 7.353, 7.3512, 7.3489, 7.3483, 7.3474, 7.3453, 7.343, 7.3426, 7.3366, 7.3353, 7.3348, 7.3389, 7.3368, 7.3357, 7.3336, 7.3381, 7.3363, 7.3346, 7.3324, 7.3299, 7.3277, 7.3258, 7.3256, 7.3236, 7.3281, 7.3259, 7.3239, 7.3215, 7.3203, 7.318, 7.3156, 7.3085, 7.3063, 7.3041, 7.3021, 7.3067, 7.3044, 7.3027, 7.3004, 7.2983, 7.3029, 7.3017, 7.3009, 7.2994, 7.2992, 7.297, 7.2953, 7.2997, 7.2978, 7.2957, 7.2935, 7.2914, 7.2894, 7.288, 7.2925, 7.2904, 7.2948, 7.2934, 7.2919, 7.2902, 7.2893, 7.2881, 7.2925, 7.2919, 7.2898, 7.2945, 7.2926, 7.2907, 7.2888, 7.2934, 7.2918, 7.2899, 7.2882, 7.2861, 7.2841, 7.2828, 7.2815, 7.28, 7.2782, 7.2765, 7.2747, 7.2792, 7.2787, 7.2775, 7.2766, 7.2759, 7.2753, 7.2746, 7.2731, 7.2712, 7.2691, 7.2672, 7.2657, 7.2637, 7.2563, 7.2548, 7.2535, 7.2518, 7.2503, 7.2483, 7.2471, 7.2452, 7.2431, 7.2416, 7.2401, 7.2442, 7.2423, 7.2411, 7.2394, 7.2378, 7.2368, 7.2349, 7.2394, 7.2377, 7.236, 7.2366, 7.2407, 7.2395, 7.2378, 7.236, 7.2349, 7.2334, 7.2315, 7.2299, 7.2344, 7.2347, 7.2358, 7.2345, 7.2329, 7.232, 7.2365, 7.2354, 7.2367, 7.2408, 7.2459, 7.2444, 7.2425, 7.2414, 7.2406, 7.2399, 7.2389, 7.2368, 7.2363, 7.2346, 7.2331, 7.2331, 7.2321, 7.2308, 7.2289, 7.227, 7.226, 7.2302, 7.2286, 7.2275, 7.2257, 7.2242, 7.2224, 7.2214, 7.2199, 7.2234, 7.2283, 7.2273, 7.226, 7.2249, 7.2246, 7.224, 7.2226, 7.2271, 7.2257, 7.2244, 7.2294, 7.2278, 7.2329, 7.2318, 7.2307, 7.2399, 7.2386, 7.2384, 7.237, 7.2352, 7.234, 7.2387, 7.2369, 7.2354, 7.2342, 7.2384, 7.2421, 7.2405, 7.2623, 7.2604, 7.2585, 7.257, 7.255, 7.2544, 7.2526, 7.2514, 7.2498, 7.2487, 7.2499, 7.2483, 7.2607, 7.2594, 7.2587, 7.2594, 7.2588, 7.2582, 7.2581, 7.2573, 7.2563, 7.2564, 7.2553, 7.2594, 7.2578, 7.2563, 7.2557, 7.2544, 7.2526, 7.2507, 7.2491, 7.2479, 7.2518, 7.2501, 7.2541, 7.2524, 7.2508, 7.2495, 7.2493, 7.2486, 7.2529, 7.2511, 7.2502, 7.2483, 7.2473, 7.2418, 7.2462, 7.2452, 7.2436, 7.2417, 7.24, 7.2382, 7.2366, 7.235, 7.2388, 7.2375, 7.2359, 7.2344, 7.2333, 7.2322, 7.2307, 7.2289, 7.2282, 7.2269, 7.2259, 7.2296, 7.2278, 7.2319, 7.2303, 7.2337, 7.2328, 7.2363, 7.2401, 7.2387, 7.237, 7.2371, 7.2359, 7.2451, 7.2439, 7.2422, 7.2408, 7.2392, 7.2378, 7.236, 7.2347, 7.233, 7.2312, 7.2334, 7.2327, 7.2314, 7.23, 7.2341, 7.2379, 7.2419, 7.2456, 7.2447, 7.244, 7.2439, 7.2425, 7.2411, 7.2394, 7.2386, 7.2371, 7.2366, 7.2358, 7.2345, 7.2382, 7.2417, 7.2405, 7.2387, 7.2381, 7.2365, 7.2348, 7.2334, 7.2369, 7.2406, 7.2391, 7.239, 7.2391, 7.2377, 7.241, 7.2392, 7.2387, 7.2373, 7.2358, 7.235, 7.2333, 7.2365, 7.2349, 7.2336, 7.2319, 7.2302, 7.2251, 7.2239, 7.2227, 7.2211, 7.2196, 7.2184, 7.2216, 7.2199, 7.2184, 7.2168, 7.2151, 7.2134, 7.2168, 7.2198, 7.2181, 7.225, 7.2282, 7.227, 7.2256, 7.2332, 7.2324, 7.236, 7.2353, 7.2386, 7.2369, 7.2356, 7.2387, 7.2374, 7.2416, 7.2503, 7.2536, 7.248, 7.247, 7.2454, 7.2438, 7.2422, 7.2408, 7.244, 7.2423, 7.2407, 7.2441, 7.2426, 7.2419, 7.241, 7.2398, 7.2386, 7.2374, 7.2362, 7.2348, 7.2334, 7.233, 7.2371, 7.236, 7.2353, 7.2339, 7.2326, 7.2309, 7.2341, 7.2374, 7.2361, 7.2355, 7.2391, 7.2393, 7.2426, 7.241, 7.2459, 7.2443, 7.2521, 7.251, 7.2542, 7.2531, 7.252, 7.2503, 7.2488, 7.2478, 7.251, 7.2543, 7.2528, 7.2511, 7.25, 7.249, 7.2479, 7.2605, 7.2595, 7.2583, 7.2614, 7.2603, 7.2586, 7.2615, 7.26, 7.2591, 7.2574, 7.2558, 7.2546, 7.253, 7.2514, 7.2501, 7.2491, 7.252, 7.2504, 7.2492, 7.2485, 7.2472, 7.2467, 7.2454, 7.2444, 7.2433, 7.2423, 7.2412, 7.2444, 7.2473, 7.2505, 7.2488, 7.248, 7.2465, 7.245, 7.245, 7.2483, 7.2477, 7.2471, 7.246, 7.2444, 7.2472, 7.2458, 7.2445, 7.2437, 7.2428, 7.2506, 7.2496, 7.248, 7.2473, 7.2459, 7.245, 7.248, 7.2467, 7.2452, 7.2444, 7.2448, 7.2432, 7.2436, 7.2424, 7.2413, 7.2405, 7.2403, 7.2399, 7.2383, 7.2368, 7.2357, 7.2349, 7.2337, 7.2336, 7.2365, 7.2395, 7.2344, 7.2333, 7.2329, 7.2324, 7.231, 7.2344, 7.2342, 7.2328, 7.2331, 7.2329, 7.2318, 7.2321, 7.2317, 7.2305, 7.2297, 7.2284, 7.227, 7.2261, 7.2295, 7.2287, 7.2275, 7.2261, 7.2254, 7.224, 7.2274, 7.2265, 7.2253, 7.2281, 7.2267, 7.2296, 7.2284, 7.2271, 7.2267, 7.2252, 7.2238, 7.2231, 7.2223, 7.2254, 7.228, 7.2271, 7.2297, 7.2324, 7.2318, 7.2308, 7.234, 7.2331, 7.2331, 7.2316, 7.2348, 7.2337, 7.2326, 7.2313, 7.2303, 7.2289, 7.2278, 7.231, 7.2345, 7.2332, 7.2336, 7.2371, 7.2331, 7.2317, 7.2309, 7.2342, 7.2331, 7.2373, 7.2371, 7.2366, 7.2363, 7.2351, 7.2347, 7.2333, 7.2321, 7.2307, 7.2295, 7.2285, 7.2277, 7.2308, 7.2296, 7.2315, 7.2303, 7.2289, 7.2275, 7.2307, 7.2335, 7.2324, 7.2313, 7.2303, 7.2292, 7.2319, 7.2311, 7.2338, 7.2324, 7.2319, 7.2313, 7.234, 7.233, 7.2316, 7.2303, 7.2292, 7.2253, 7.224, 7.2227, 7.2226, 7.2221, 7.2247, 7.2235, 7.2226, 7.2217, 7.221, 7.2236, 7.2224, 7.2217, 7.2204, 7.2193, 7.2182, 7.2173, 7.2169, 7.2178, 7.2213, 7.2202, 7.2191, 7.2183, 7.2171, 7.216, 7.2146, 7.2132, 7.2118, 7.2104, 7.209, 7.2079, 7.2107, 7.2133, 7.2166, 7.2161, 7.2148, 7.2139, 7.2129, 7.2127, 7.2123, 7.2111, 7.2106, 7.213, 7.2137, 7.2133, 7.214300000000001, 7.215300000000001, 7.2178, 7.2215, 7.2241, 7.2268, 7.2295, 7.2282, 7.2273, 7.226, 7.227, 7.2265, 7.2252, 7.2241, 7.2267, 7.2254, 7.2247, 7.2236, 7.2265, 7.2265, 7.2294, 7.2281, 7.227, 7.2261, 7.2259, 7.2247, 7.2241, 7.2233, 7.2223, 7.2212, 7.2206, 7.2198, 7.2189, 7.2176, 7.2204, 7.223, 7.2263, 7.225, 7.2238, 7.2228, 7.2253, 7.2248, 7.2277, 7.2307, 7.23, 7.2289, 7.2315, 7.2306, 7.2299, 7.2327, 7.2321, 7.2309, 7.2297, 7.2294, 7.2283, 7.2312, 7.2301, 7.2288, 7.2279, 7.2237, 7.223, 7.2219, 7.2225, 7.2213, 7.2171, 7.2163, 7.219, 7.2182, 7.2211, 7.2203, 7.2227, 7.2215, 7.2207, 7.2198, 7.2188, 7.2182, 7.218, 7.2172, 7.2167, 7.216, 7.2154, 7.2182, 7.2172, 7.2166, 7.216, 7.2153, 7.2141, 7.2137, 7.213, 7.2125, 7.213500000000001, 7.2128, 7.2122, 7.2113, 7.2106, 7.2095, 7.2119, 7.2112, 7.2108, 7.2135, 7.2129, 7.2117, 7.2108, 7.2096, 7.2119, 7.2107, 7.2127, 7.2156, 7.2143, 7.2134, 7.2125, 7.2117, 7.212700000000001, 7.213700000000001, 7.2147000000000014, 7.2134, 7.2128, 7.2152, 7.2141, 7.2165, 7.2153, 7.2144, 7.2143, 7.2136, 7.2161, 7.2186, 7.2182, 7.2169, 7.2192, 7.218, 7.2175, 7.2162, 7.2153, 7.2144, 7.2138, 7.2133, 7.2167, 7.217700000000001, 7.2169, 7.2161, 7.2153, 7.2143, 7.2134, 7.2121, 7.2126, 7.215, 7.2146, 7.2135, 7.216, 7.2151, 7.2176, 7.2166, 7.2154, 7.2142, 7.2132, 7.213, 7.2121, 7.2111, 7.2101, 7.2126, 7.2126, 7.2117, 7.2112, 7.2101, 7.2091, 7.2079, 7.2073, 7.2099, 7.2094, 7.2119, 7.2108, 7.21, 7.2088, 7.2079, 7.2104, 7.2095, 7.2096, 7.2092, 7.2091, 7.2097, 7.2089, 7.2085, 7.2109, 7.2102, 7.2092, 7.2116, 7.2106, 7.2094, 7.2085, 7.2154, 7.2143, 7.2133, 7.2129, 7.213900000000001, 7.2162, 7.2157, 7.2152, 7.2174, 7.2297, 7.2286, 7.2274, 7.2266, 7.2255, 7.225, 7.2246, 7.2235, 7.2226, 7.2217, 7.2208, 7.2198, 7.2193, 7.2191, 7.218, 7.2179, 7.2168, 7.2161, 7.2149, 7.217, 7.218, 7.2204, 7.2193, 7.2185, 7.2178, 7.2201, 7.2161, 7.2171, 7.216, 7.2153, 7.2148, 7.2136, 7.2137, 7.213, 7.2124, 7.2114, 7.2137, 7.2128, 7.2124, 7.2113, 7.2108, 7.2111, 7.2101, 7.2105, 7.2099, 7.2124, 7.2113, 7.2104, 7.2094, 7.2085, 7.2077, 7.2067, 7.2058, 7.2049, 7.204, 7.2065, 7.2061, 7.212, 7.2111, 7.2169, 7.2194, 7.2215, 7.2212, 7.2236, 7.2226, 7.2249, 7.2238, 7.2262, 7.2252, 7.2242, 7.2234, 7.2226, 7.2246, 7.2267, 7.2262, 7.2256, 7.225, 7.2272, 7.2264, 7.2285, 7.2274, 7.2265, 7.2285, 7.2308, 7.23, 7.2291, 7.2281, 7.2276, 7.2265, 7.2256, 7.2248, 7.2237, 7.2226, 7.2235, 7.2262, 7.2251, 7.2245, 7.2267, 7.226, 7.225, 7.2243, 7.2273, 7.227, 7.2262, 7.2255, 7.225, 7.2245, 7.2271, 7.2262, 7.2255, 7.2246, 7.2235, 7.2229, 7.2218, 7.221, 7.2198, 7.2198, 7.2194, 7.220400000000001, 7.221400000000001, 7.2238, 7.2267, 7.2263, 7.2257, 7.2253, 7.2249, 7.2242, 7.2236, 7.224600000000001, 7.2271, 7.2262, 7.2251, 7.2245, 7.2246, 7.2238, 7.2233, 7.2262, 7.2257, 7.2261, 7.2253, 7.2245, 7.2267, 7.226, 7.2257, 7.2248, 7.2247, 7.2247, 7.2267, 7.229, 7.2281, 7.2306, 7.2296, 7.2288, 7.2312, 7.2308, 7.2297, 7.232, 7.2318, 7.2338, 7.2361, 7.2358, 7.2347, 7.2339, 7.2357, 7.235, 7.2342, 7.2339, 7.2333, 7.2323, 7.2312, 7.2301, 7.2323, 7.2314, 7.2305, 7.2297, 7.2318, 7.2308, 7.2297, 7.2291, 7.2282, 7.2274, 7.2268, 7.2266, 7.226, 7.2251, 7.2249, 7.2238, 7.223, 7.2225, 7.2218, 7.2209, 7.2202, 7.2226, 7.2217, 7.2208, 7.2201, 7.221100000000001, 7.2203, 7.2224, 7.2251, 7.2245, 7.2239, 7.223, 7.2221, 7.2212, 7.2235, 7.2257, 7.225, 7.225, 7.2269, 7.2263, 7.2255, 7.2254, 7.2246, 7.2239, 7.2329, 7.2382, 7.2375, 7.2367, 7.2358, 7.2348, 7.2339, 7.2329, 7.2352, 7.2343, 7.2367, 7.236, 7.2352, 7.2371, 7.2389, 7.2378, 7.2401, 7.2393, 7.2386, 7.2351, 7.2347, 7.2339, 7.2329, 7.2323, 7.2374, 7.2365, 7.2372, 7.2367, 7.2357, 7.2354, 7.2344, 7.2335, 7.2326, 7.2316, 7.2313, 7.2309, 7.2299, 7.2323, 7.2345, 7.2337, 7.2334, 7.2331, 7.2326, 7.2317, 7.2308, 7.2307, 7.2297, 7.2294, 7.2313, 7.2331, 7.2322, 7.2316, 7.2309, 7.23, 7.2292, 7.2283, 7.2278, 7.2268, 7.226, 7.2251, 7.2217, 7.2214, 7.2208, 7.22, 7.2192, 7.2214, 7.2209, 7.2211, 7.2233, 7.2229, 7.2223, 7.2216, 7.2238, 7.223, 7.2223, 7.2215, 7.2206, 7.2201, 7.2191, 7.2183, 7.2174, 7.2167, 7.2166, 7.2156, 7.2151, 7.214, 7.2129, 7.2122, 7.2113, 7.2163, 7.2152, 7.2145, 7.2155000000000005, 7.2177, 7.2142, 7.2133, 7.2214, 7.2263, 7.2268, 7.229, 7.2282, 7.2276, 7.227, 7.2261, 7.2282, 7.228, 7.2305, 7.2299, 7.2295, 7.2289, 7.2287, 7.2287, 7.2279, 7.2274, 7.2265, 7.2286, 7.2306, 7.2297, 7.2296, 7.2263, 7.2286, 7.2279, 7.2276, 7.227, 7.2269, 7.2261, 7.2252, 7.2242, 7.2262, 7.2283, 7.2303, 7.2301, 7.2295, 7.2289, 7.2307, 7.2298, 7.2293, 7.231, 7.2305, 7.2298, 7.2292, 7.2282, 7.2273, 7.2266, 7.2257, 7.2275, 7.2269, 7.2259, 7.2253, 7.2244, 7.2235, 7.2233, 7.2233, 7.2232, 7.2254, 7.2273, 7.2273, 7.2295, 7.2288, 7.2376, 7.2412, 7.2439, 7.2432, 7.2422, 7.2414, 7.244, 7.2438, 7.2432, 7.2449, 7.2443, 7.2438, 7.2436, 7.2431, 7.2422, 7.2414, 7.2438, 7.2434, 7.2427, 7.2454, 7.245, 7.2441, 7.2431, 7.2451, 7.2443, 7.2463, 7.2458, 7.2453, 7.2445, 7.2462, 7.2481, 7.2476, 7.247, 7.2461, 7.2456, 7.2449, 7.2455, 7.2447, 7.2447, 7.2438, 7.2433, 7.2455, 7.2446, 7.2441, 7.2437, 7.2429, 7.2446, 7.2442, 7.2463, 7.2483, 7.2505, 7.2496, 7.2488, 7.251, 7.2505, 7.2499, 7.2496, 7.2492, 7.2486, 7.2481, 7.2471, 7.2462, 7.2466, 7.2489, 7.2488, 7.2485, 7.2481, 7.2476, 7.2496, 7.2471, 7.2466, 7.2458, 7.2476, 7.2468, 7.246, 7.2457, 7.2478, 7.2476, 7.2471, 7.2466, 7.2459, 7.2478, 7.2471, 7.2467, 7.2458, 7.2478, 7.247, 7.2468, 7.2459, 7.2451, 7.2443, 7.2436, 7.2453, 7.2445, 7.2437, 7.243, 7.2422, 7.2414, 7.2411, 7.2404, 7.2397, 7.2389, 7.2383, 7.2375, 7.2368, 7.2361, 7.2358, 7.2353, 7.2345, 7.2338, 7.2331, 7.2324, 7.2317, 7.2309, 7.2325, 7.2342, 7.2336, 7.2331, 7.2325, 7.232, 7.2318, 7.2311, 7.2303, 7.2297, 7.2291, 7.2308, 7.2325, 7.2316, 7.2308, 7.235, 7.2341, 7.2336, 7.2417, 7.2408, 7.2425, 7.2418, 7.2409, 7.2403, 7.242, 7.2414, 7.2407, 7.2423, 7.2419, 7.2413, 7.2422, 7.2417, 7.2446, 7.2446, 7.2439, 7.2432, 7.245, 7.2469, 7.2488, 7.2514, 7.2513, 7.2505, 7.2498, 7.2491, 7.2487, 7.2509, 7.2506, 7.2504, 7.2495, 7.2487, 7.2478, 7.2474, 7.2493, 7.2486, 7.2482, 7.2474, 7.2465, 7.2459, 7.2503, 7.2548, 7.2548, 7.2543, 7.2541, 7.2533, 7.2531, 7.2527, 7.2518, 7.2536, 7.2552, 7.2545, 7.2589, 7.2583, 7.2601, 7.2594, 7.2611, 7.2604, 7.2621, 7.2617, 7.2634, 7.265, 7.2641, 7.2657, 7.2652, 7.2645, 7.2662, 7.2654, 7.2648, 7.2644, 7.2638, 7.2631, 7.2624, 7.2615, 7.2612, 7.2605, 7.2601, 7.2593, 7.2584, 7.26, 7.2591, 7.2582, 7.2576, 7.2606, 7.2606, 7.2598, 7.2592, 7.2588, 7.2583, 7.2577, 7.2569, 7.2566, 7.256, 7.2551, 7.2542, 7.2534, 7.2526, 7.2522, 7.2537, 7.2553, 7.2554, 7.258, 7.2573, 7.2566, 7.2559, 7.2552, 7.2572, 7.2568, 7.2586, 7.2581, 7.258, 7.2573, 7.2564, 7.2558, 7.2574, 7.2593, 7.2588, 7.258, 7.2594, 7.2608, 7.2604, 7.2604, 7.2597, 7.2593, 7.2596, 7.2591, 7.2584, 7.2575, 7.2571, 7.2564, 7.256, 7.2575, 7.2569, 7.2564, 7.2583, 7.2577, 7.2574, 7.2566, 7.2608, 7.26, 7.2593, 7.2586, 7.2558, 7.2551, 7.2543, 7.2542, 7.2534, 7.2533, 7.2527, 7.2525, 7.2526, 7.2523, 7.2515, 7.2508, 7.2502, 7.2498, 7.2492, 7.2507, 7.25, 7.2494, 7.249, 7.2482, 7.2475, 7.2467, 7.2459, 7.2477, 7.2469, 7.2464, 7.2458, 7.245, 7.2446, 7.2487, 7.2481, 7.2472, 7.2464, 7.2456, 7.2473, 7.2489, 7.2514, 7.2508, 7.2502, 7.2494, 7.2487, 7.2483, 7.2506, 7.2499, 7.2497, 7.2489, 7.2481, 7.2473, 7.2465, 7.2459, 7.2452, 7.2445, 7.2437, 7.243, 7.2425, 7.2442, 7.2434, 7.2451, 7.2444, 7.2437, 7.2431, 7.2426, 7.2419, 7.2436, 7.2456, 7.2449, 7.2464, 7.246, 7.2476, 7.2468, 7.2462, 7.2456, 7.2448, 7.2447, 7.2461, 7.2452, 7.2443, 7.2435, 7.2453, 7.2447, 7.244, 7.2436, 7.2428, 7.2424, 7.2424, 7.2421, 7.2415, 7.2434, 7.2434, 7.2426, 7.242, 7.2414, 7.2408, 7.2426, 7.242, 7.2412, 7.2404, 7.2405, 7.2423, 7.2417, 7.241, 7.2426, 7.2442, 7.2458, 7.2473, 7.2465, 7.246, 7.2452, 7.2447, 7.2509, 7.2504, 7.2496, 7.2491, 7.2482, 7.2476, 7.2492, 7.2514, 7.2506, 7.2503, 7.2495, 7.2494, 7.2488, 7.2482, 7.2475, 7.2496, 7.2489, 7.2482, 7.2499, 7.2492, 7.2487, 7.2503, 7.2499, 7.2495, 7.251, 7.2507, 7.2502, 7.2495, 7.2489, 7.2482, 7.2476, 7.2492, 7.2486, 7.2478, 7.247, 7.2485, 7.2477, 7.2493, 7.2485, 7.2479, 7.2473, 7.2468, 7.2461, 7.2456, 7.2448, 7.2445, 7.244, 7.2435, 7.2453, 7.2495, 7.249, 7.2495, 7.2514, 7.251, 7.2503, 7.2502, 7.2497, 7.249, 7.2482, 7.2497, 7.2492, 7.2486, 7.2479, 7.2473, 7.2468, 7.247, 7.247, 7.2465, 7.246, 7.2452, 7.2444, 7.246, 7.2456, 7.2451, 7.2456, 7.2455, 7.247, 7.2465, 7.2461, 7.2476, 7.2468, 7.2461, 7.2475, 7.247, 7.2486, 7.2486, 7.2483, 7.2478, 7.2472, 7.2464, 7.2458, 7.2472, 7.2489, 7.2481, 7.2497, 7.2489, 7.2504, 7.2499, 7.2491, 7.2484, 7.2479, 7.2494, 7.2488, 7.248, 7.2494, 7.2487, 7.2479, 7.2471, 7.2465, 7.2462, 7.2456, 7.2456, 7.2452, 7.2446, 7.2441, 7.2436, 7.2432, 7.2425, 7.2423, 7.2416, 7.2412, 7.2405, 7.2399, 7.2395, 7.2372, 7.2366, 7.238, 7.2372, 7.2386, 7.2378, 7.2371, 7.2366, 7.2382, 7.2356, 7.2352, 7.2428, 7.2421, 7.2465, 7.2464, 7.246, 7.2453, 7.2471, 7.2464, 7.248, 7.2494, 7.2487, 7.2483, 7.2476, 7.247, 7.2468, 7.2462, 7.2477, 7.2475, 7.2469, 7.2463, 7.2456, 7.2452, 7.2448, 7.2441, 7.2439, 7.2438, 7.2435, 7.2428, 7.2427, 7.244, 7.2433, 7.2435, 7.245, 7.2467, 7.2463, 7.2459, 7.2471, 7.2468, 7.2486, 7.248, 7.2474, 7.2468, 7.2462, 7.246, 7.2455, 7.2451, 7.2444, 7.25, 7.2494, 7.2486, 7.2535, 7.2555, 7.255, 7.2543, 7.2536, 7.2533, 7.253, 7.2544, 7.2537, 7.2532, 7.2573, 7.2588, 7.2581, 7.2578, 7.2577, 7.2582, 7.2575, 7.2568, 7.2564, 7.2559, 7.2561, 7.2576, 7.2576, 7.257, 7.2564, 7.2557, 7.2532, 7.2526, 7.2521, 7.2519, 7.2513, 7.2528, 7.2522, 7.2515, 7.2511, 7.2509, 7.2506, 7.2506, 7.2502, 7.2497, 7.2495, 7.2489, 7.2483, 7.2477, 7.247, 7.2464, 7.248, 7.2474, 7.2466, 7.2459, 7.2453, 7.2447, 7.2444, 7.2458, 7.2434, 7.2428, 7.2445, 7.2438, 7.2431, 7.2427, 7.2422, 7.2419, 7.2413, 7.2407, 7.24, 7.2393, 7.2389, 7.2385, 7.2398, 7.2395, 7.2409, 7.2425, 7.2417, 7.241, 7.2403, 7.2396, 7.2391, 7.2385, 7.2399, 7.2393, 7.2388, 7.2382, 7.2375, 7.2369, 7.2364, 7.2358, 7.2352, 7.2348, 7.2361, 7.2374, 7.2367, 7.2363, 7.2356, 7.2349, 7.2348, 7.2344, 7.2361, 7.2355, 7.2349, 7.2345, 7.2339, 7.2333, 7.2334, 7.2329, 7.2324, 7.2321, 7.2317, 7.2311, 7.2304, 7.2326, 7.2323, 7.2325, 7.2319, 7.2314, 7.2308, 7.2304, 7.2298, 7.2293, 7.2292, 7.229, 7.2284, 7.228, 7.2276, 7.2272, 7.2285, 7.2298, 7.2291, 7.2287, 7.2282, 7.2276, 7.2269, 7.2284, 7.228, 7.2273, 7.2267, 7.2261, 7.2277, 7.227, 7.2264, 7.2258, 7.2254, 7.2248, 7.2263, 7.2259, 7.2253, 7.2268, 7.2265, 7.226, 7.2253, 7.2247, 7.2242, 7.2238, 7.2254, 7.2247, 7.2241, 7.2237, 7.223, 7.2225, 7.224, 7.2233, 7.2229, 7.2222, 7.2216, 7.2212, 7.2207, 7.2201, 7.221100000000001, 7.2223, 7.2218, 7.2213, 7.2206, 7.22, 7.2195, 7.219, 7.2188, 7.2185, 7.2183, 7.2199, 7.2196, 7.2191, 7.2206, 7.2205, 7.2213, 7.2226, 7.222, 7.2215, 7.2208, 7.2208, 7.2204, 7.2201, 7.2198, 7.221, 7.2203, 7.2199, 7.2214, 7.2234, 7.2229, 7.2228, 7.2223, 7.2219, 7.2234, 7.2231, 7.2228, 7.2223, 7.2218, 7.2213, 7.2229, 7.2241, 7.2236, 7.2231, 7.2248, 7.2263, 7.2276, 7.2271, 7.2264, 7.2266, 7.2261, 7.2256, 7.2249, 7.2264, 7.2261, 7.2273, 7.227, 7.2266, 7.2265, 7.2259, 7.2276, 7.227, 7.2283, 7.2278, 7.2273, 7.2268, 7.2263, 7.2262, 7.2256, 7.2255, 7.225, 7.2243, 7.2241, 7.224, 7.2236, 7.224600000000001, 7.2244, 7.2241, 7.2236, 7.2232, 7.2244, 7.2239, 7.2236, 7.2231, 7.2246, 7.2244, 7.2237, 7.2231, 7.2227, 7.2241, 7.2236, 7.2232, 7.221, 7.2223, 7.2216, 7.2213, 7.2207, 7.2203, 7.2197, 7.2195, 7.2191, 7.2192, 7.2187, 7.2182, 7.2179, 7.2176, 7.2173, 7.2166, 7.216, 7.2156, 7.215, 7.2146, 7.2143, 7.2159, 7.2173, 7.2169, 7.2179, 7.2189000000000005, 7.2184, 7.2178, 7.2172, 7.2182, 7.2179, 7.2173, 7.2167, 7.2161, 7.2156, 7.217, 7.2164, 7.2162, 7.2158, 7.2171, 7.2168, 7.2164, 7.2158, 7.2153, 7.2167, 7.2163, 7.2157, 7.2152, 7.2149, 7.2143, 7.2167, 7.218, 7.2176, 7.217, 7.2163, 7.2157, 7.2171, 7.2166, 7.2159, 7.216900000000001, 7.2181, 7.2176, 7.219, 7.2183, 7.2195, 7.2207, 7.2201, 7.2196, 7.2192, 7.2206, 7.2201, 7.2197, 7.2193, 7.2187, 7.2188, 7.2205, 7.22, 7.2279, 7.2273, 7.227, 7.2264, 7.2258, 7.2252, 7.2266, 7.226, 7.2257, 7.2252, 7.2247, 7.224, 7.2235, 7.2248, 7.226, 7.2256, 7.225, 7.2247, 7.2241, 7.2236, 7.2231, 7.2225, 7.2222, 7.2216, 7.2229, 7.2225, 7.2219, 7.2229, 7.2246, 7.2242, 7.2238, 7.2234, 7.223, 7.2246, 7.2262, 7.2258, 7.2254, 7.2251, 7.2265, 7.2277, 7.2271, 7.2265, 7.226, 7.2254, 7.2249, 7.2246, 7.224, 7.2235, 7.2236, 7.2231, 7.2233, 7.2228, 7.2222, 7.2216, 7.2211, 7.2209, 7.2207, 7.2205, 7.2201, 7.2213, 7.2228, 7.2225, 7.222, 7.2214, 7.2208, 7.2219, 7.2213, 7.2217, 7.2211, 7.2241, 7.2254, 7.2249, 7.225, 7.225, 7.226, 7.2273, 7.2267, 7.2267, 7.2263, 7.2257, 7.2255, 7.2269, 7.2264, 7.2277, 7.2291, 7.2285, 7.2298, 7.2294, 7.2291, 7.2303, 7.23, 7.2298, 7.2291, 7.2286, 7.228, 7.2274, 7.2273, 7.2267, 7.2281, 7.228, 7.2292, 7.2288, 7.2285, 7.2283, 7.2277, 7.2272, 7.2287, 7.2299, 7.2294, 7.2288, 7.2285, 7.2279, 7.2274, 7.2268, 7.2265, 7.226, 7.2257, 7.2254, 7.2248, 7.2246, 7.2259, 7.2274, 7.2268, 7.2266, 7.2263, 7.226, 7.2254, 7.2267, 7.2263, 7.226, 7.226, 7.2255, 7.2251, 7.2246, 7.2294, 7.2289, 7.2283, 7.2294, 7.2289, 7.2283, 7.2296, 7.2292, 7.2289, 7.2285, 7.2279, 7.2276, 7.227, 7.2265, 7.2261, 7.226, 7.2258, 7.2253, 7.225, 7.2245, 7.2239, 7.2251, 7.2246, 7.224, 7.2236, 7.2233, 7.2228, 7.224, 7.2254, 7.2252, 7.2264, 7.2276, 7.2272, 7.2273, 7.2267, 7.2263, 7.2259, 7.2273, 7.2267, 7.2262, 7.226, 7.2258, 7.2253, 7.2247, 7.2244, 7.2241, 7.2237, 7.2234, 7.2228, 7.2224, 7.2219, 7.2216, 7.221, 7.2205, 7.22, 7.2199, 7.2194, 7.219, 7.2203, 7.2216, 7.221, 7.2204, 7.2215, 7.2209, 7.2203, 7.2198, 7.221, 7.2208, 7.2202, 7.2198, 7.2192, 7.2187, 7.2181, 7.2186, 7.2185, 7.2182, 7.2177, 7.2175, 7.2177, 7.2176, 7.2173, 7.2167, 7.2165, 7.2163, 7.2158, 7.2153, 7.2156, 7.2151, 7.2167, 7.218, 7.2192, 7.2205, 7.2203, 7.2198, 7.2194, 7.2189, 7.2183, 7.2177, 7.2172, 7.2169, 7.2165, 7.2159, 7.2155, 7.2168, 7.2167, 7.218, 7.2177, 7.2172, 7.2167, 7.218, 7.2192, 7.2189, 7.2184, 7.2181, 7.2178, 7.2172, 7.2167, 7.2164, 7.2159, 7.2172, 7.2169, 7.2165, 7.216, 7.2156, 7.2151, 7.2161, 7.2156, 7.2159, 7.2155, 7.2149, 7.2144, 7.2158, 7.2154, 7.2167, 7.2178, 7.2177, 7.2174, 7.2169, 7.2163, 7.216, 7.2157, 7.2152, 7.2165, 7.2162, 7.2157, 7.2153, 7.2148, 7.2143, 7.213, 7.2127, 7.2125, 7.2121, 7.2117, 7.2111, 7.2107, 7.2103, 7.2115, 7.211, 7.2108, 7.2104, 7.2099, 7.2095, 7.209, 7.2088, 7.2082, 7.2097, 7.2077, 7.2089, 7.2101, 7.2114, 7.2108, 7.2103, 7.2115, 7.2111, 7.2114, 7.212400000000001, 7.213400000000001, 7.2131, 7.2127, 7.2138, 7.2141, 7.2138, 7.2154, 7.2153, 7.2148, 7.2142, 7.2136, 7.2131, 7.2126, 7.2158, 7.2155, 7.2166, 7.2161, 7.2171, 7.215, 7.2162, 7.2158, 7.2153, 7.2165, 7.2161, 7.2172, 7.2169, 7.2181, 7.2193, 7.2203, 7.2198, 7.2195, 7.219, 7.2187, 7.2185, 7.2181, 7.218, 7.2176, 7.2171, 7.2167, 7.2163, 7.2159, 7.2154, 7.215, 7.215, 7.2145, 7.2139, 7.2149, 7.2159, 7.216900000000001, 7.218, 7.2175, 7.2186, 7.2182, 7.2184, 7.2179, 7.2175, 7.2169, 7.2181, 7.2177, 7.2188, 7.2198, 7.2181, 7.2175, 7.2171, 7.2165, 7.2159, 7.216900000000001, 7.2165, 7.2176, 7.217, 7.2181, 7.2179, 7.2173, 7.217, 7.2166, 7.2177, 7.2171, 7.2165, 7.2161, 7.2172, 7.2166, 7.2178, 7.2175, 7.2169, 7.2163, 7.2175, 7.217, 7.217, 7.2165, 7.2162, 7.2158, 7.2154, 7.2149, 7.2144, 7.2138, 7.2149, 7.2144, 7.2138, 7.2134, 7.2129, 7.2123, 7.2117, 7.2113, 7.2109, 7.2103, 7.2098, 7.2113, 7.2132, 7.215, 7.2138, 7.2148, 7.2144, 7.2139, 7.2136, 7.2135, 7.2132, 7.2127, 7.2122, 7.212, 7.213, 7.2125, 7.2122, 7.212, 7.2116, 7.2113, 7.2107, 7.2104, 7.2102, 7.2101, 7.2099, 7.2097, 7.2109, 7.2108, 7.2121, 7.2116, 7.2112, 7.2123, 7.2118, 7.2115, 7.2113, 7.211, 7.2108, 7.212, 7.2133, 7.2129, 7.2124, 7.212, 7.2116, 7.2113, 7.2123, 7.2117, 7.2111, 7.2122, 7.2117, 7.2112, 7.2107, 7.2105, 7.2103, 7.2098, 7.211, 7.2106, 7.2101, 7.2113, 7.2109, 7.2119, 7.2115, 7.2109, 7.2104, 7.2114, 7.211, 7.2105, 7.2117, 7.2112, 7.2123, 7.2118, 7.2113, 7.2109, 7.2104, 7.21, 7.2114, 7.2108, 7.2121, 7.2117, 7.2128, 7.2124, 7.2151, 7.2148, 7.2142, 7.2155, 7.2152, 7.2163, 7.216, 7.2154, 7.215, 7.2146, 7.2143, 7.2155, 7.2165, 7.216, 7.2155, 7.215, 7.2162, 7.2174, 7.2172, 7.2187, 7.2184, 7.2195, 7.2191, 7.2186, 7.2183, 7.2181, 7.2178, 7.2173, 7.217, 7.2197, 7.2193, 7.2215, 7.2227, 7.2223, 7.2232, 7.2231, 7.23, 7.2296, 7.2293, 7.2288, 7.2283, 7.2278, 7.229, 7.2287, 7.2302, 7.2298, 7.2311, 7.2307, 7.2302, 7.2297, 7.2293, 7.2289, 7.2286, 7.2296, 7.2307, 7.2302, 7.2301, 7.2298, 7.2293, 7.2295, 7.2292, 7.2288, 7.2284, 7.2283, 7.2282, 7.2293, 7.2288, 7.2284, 7.2281, 7.2292, 7.2288, 7.2299, 7.2297, 7.2293, 7.2289, 7.2285, 7.2282, 7.2293, 7.2306, 7.2319, 7.2315, 7.2311, 7.2306, 7.2315, 7.2311, 7.2305, 7.2316, 7.2312, 7.2308, 7.2292, 7.2287, 7.2282, 7.2281, 7.2291, 7.2288, 7.2283, 7.2278, 7.2275, 7.2271, 7.2266, 7.2263, 7.2258, 7.2253, 7.225, 7.2249, 7.2248, 7.2259, 7.2256, 7.2253, 7.2248, 7.2251, 7.225, 7.2247, 7.2242, 7.2254, 7.2251, 7.2253, 7.2253, 7.2248, 7.226, 7.2256, 7.2253, 7.2249, 7.2245, 7.2242, 7.2239, 7.2234, 7.2245, 7.2257, 7.2256, 7.2251, 7.2246, 7.2243, 7.2254, 7.2249, 7.2246, 7.2274, 7.2287, 7.2284, 7.2283, 7.2278, 7.229, 7.2286, 7.2282, 7.2276, 7.2274, 7.227, 7.2268, 7.2265, 7.2265, 7.226, 7.2255, 7.2252, 7.2247, 7.2243, 7.2239, 7.2237, 7.2233, 7.223, 7.2226, 7.2238, 7.2233, 7.223, 7.2242, 7.2237, 7.2235, 7.2247, 7.2244, 7.2241, 7.2237, 7.2239, 7.2235, 7.223, 7.2225, 7.2221, 7.2221, 7.2217, 7.223, 7.2226, 7.2224, 7.222, 7.2217, 7.2213, 7.2213, 7.2208, 7.2203, 7.2198, 7.2196, 7.2194, 7.2205, 7.2203, 7.2199, 7.2194, 7.220400000000001, 7.22, 7.2199, 7.2196, 7.22, 7.2198, 7.2209, 7.2208, 7.2207, 7.2203, 7.2201, 7.2185, 7.2198, 7.2208, 7.2204, 7.22, 7.2199, 7.2202, 7.2201, 7.2213, 7.2208, 7.2208, 7.2205, 7.2203, 7.2198, 7.2194, 7.2189, 7.2184, 7.2185, 7.2181, 7.2177, 7.2172, 7.2169, 7.2166, 7.2163, 7.2158, 7.2154, 7.215, 7.2148, 7.2159, 7.2155, 7.2154, 7.2149, 7.2159, 7.2201, 7.2196, 7.2208, 7.2204, 7.2199, 7.2211, 7.2208, 7.2218, 7.2229, 7.2224, 7.2221, 7.2219, 7.223, 7.2226, 7.2208, 7.2218, 7.2214, 7.221, 7.222, 7.2219, 7.2216, 7.2211, 7.2223, 7.2218, 7.2215, 7.2211, 7.2211, 7.2208, 7.2219, 7.2215, 7.2212, 7.2209, 7.2204, 7.22, 7.2196, 7.2192, 7.219, 7.2185, 7.2183, 7.2189, 7.2185, 7.22, 7.2196, 7.2192, 7.2188, 7.2188, 7.2184, 7.2181, 7.2176, 7.2172, 7.2167, 7.2162, 7.2158, 7.2154, 7.215, 7.2173, 7.2169, 7.2167, 7.2178, 7.2175, 7.2216, 7.2213, 7.221, 7.2205, 7.2203, 7.2214, 7.2239, 7.225, 7.2259, 7.2256, 7.2271, 7.2267, 7.2262, 7.2245, 7.2242, 7.224, 7.2237, 7.2232, 7.2232, 7.2216, 7.2211, 7.2207, 7.2218, 7.2214, 7.2225, 7.2221, 7.222, 7.2215, 7.2212, 7.2222, 7.2218, 7.2214, 7.2225, 7.222, 7.2216, 7.2214, 7.2209, 7.2212, 7.2208, 7.2204, 7.2202, 7.2198, 7.2196, 7.2194, 7.2192, 7.2192, 7.2187, 7.2199, 7.2195, 7.2205, 7.2201, 7.2198, 7.2196, 7.2192, 7.2188, 7.2198, 7.2197, 7.2192, 7.219, 7.2187, 7.2198, 7.2207, 7.2203, 7.2201, 7.2196, 7.2191, 7.219, 7.2185, 7.2168, 7.2178, 7.2173, 7.2169, 7.2165, 7.216, 7.2162, 7.2158, 7.2169, 7.2165, 7.216, 7.2169, 7.2167, 7.2163, 7.2173, 7.2171, 7.2168, 7.2165, 7.2163, 7.2159, 7.2156, 7.2151, 7.2146, 7.2142, 7.2151, 7.2152, 7.2167, 7.2177, 7.2172, 7.2168, 7.2166, 7.2176, 7.2171, 7.2168, 7.2163, 7.2173, 7.217, 7.2166, 7.2161, 7.2157, 7.2168, 7.2178, 7.2176, 7.2173, 7.2168, 7.2178, 7.2178, 7.2174, 7.217, 7.218, 7.219, 7.2186, 7.2183, 7.2179, 7.2192, 7.2188, 7.2186, 7.2181, 7.2178, 7.2176, 7.2172, 7.2182, 7.2178, 7.2177, 7.2173, 7.2169, 7.2169, 7.2168, 7.2164, 7.2175, 7.2171, 7.2182, 7.218, 7.2178, 7.2174, 7.2169, 7.2166, 7.2162, 7.2158, 7.2155, 7.215, 7.2161, 7.2157, 7.2156, 7.2153, 7.2163, 7.217300000000001, 7.2169, 7.2164, 7.2159, 7.216900000000001, 7.2166, 7.2167, 7.2165, 7.2162, 7.2157, 7.2152, 7.216200000000001, 7.2172, 7.217, 7.217, 7.2168, 7.2165, 7.2162, 7.2159, 7.2155, 7.2165, 7.2162, 7.2163, 7.2158, 7.216, 7.2173, 7.2169, 7.2225, 7.2221, 7.223, 7.2226, 7.2222, 7.2219, 7.2217, 7.2229, 7.224, 7.2239, 7.2235, 7.2244, 7.2253, 7.2278, 7.2295, 7.2291, 7.2293, 7.2291, 7.2288, 7.2283, 7.2279, 7.2276, 7.2272, 7.227, 7.2267, 7.2276, 7.2272, 7.2269, 7.2278, 7.2273, 7.227, 7.2265, 7.226, 7.2257, 7.2267, 7.2269, 7.2266, 7.2262, 7.2257, 7.2253, 7.225, 7.2246, 7.2256, 7.2253, 7.2249, 7.2246, 7.2241, 7.2236, 7.2232, 7.2243, 7.2253, 7.2249, 7.226, 7.227, 7.2266, 7.2264, 7.226, 7.2256, 7.2252, 7.2247, 7.2244, 7.224, 7.2237, 7.2246, 7.2243, 7.2242, 7.2238, 7.2235, 7.223, 7.2228, 7.2236, 7.2233, 7.223, 7.2239, 7.2248, 7.2245, 7.2241, 7.2236, 7.2259, 7.2269, 7.2264, 7.2259, 7.2269, 7.2269, 7.2264, 7.2261, 7.2258, 7.2254, 7.225, 7.2261, 7.2256, 7.2251, 7.225, 7.2247, 7.2244, 7.224, 7.2236, 7.2235, 7.2235, 7.2219, 7.2214, 7.2212, 7.2209, 7.2204, 7.2203, 7.2199, 7.2208, 7.2205, 7.22, 7.2196, 7.2205, 7.2201, 7.2186, 7.2182, 7.2178, 7.2176, 7.2172, 7.2183, 7.218, 7.2178, 7.2178, 7.2175, 7.2171, 7.2169, 7.2165, 7.216, 7.2159, 7.2158, 7.2155, 7.2153, 7.2149, 7.2158, 7.2154, 7.2149, 7.2146, 7.2155, 7.2152, 7.2147, 7.2144, 7.2141, 7.2137, 7.2137, 7.2134, 7.2135, 7.2132, 7.2127, 7.2127, 7.2136, 7.2136, 7.2146, 7.2143, 7.2148, 7.2145, 7.214, 7.2136, 7.2146, 7.2156, 7.2152, 7.2149, 7.2145, 7.2142, 7.2141, 7.2137, 7.2132, 7.2142, 7.2137, 7.2134, 7.2131, 7.2128, 7.2126, 7.2125, 7.2122, 7.2117, 7.2114, 7.2125, 7.2122, 7.2118, 7.2114, 7.211, 7.2119, 7.2129, 7.2153, 7.2139, 7.2136, 7.2133, 7.2131, 7.2141, 7.2151, 7.2147, 7.2143, 7.214, 7.2136, 7.2145, 7.2154, 7.2149, 7.2148, 7.2143, 7.2154, 7.2149, 7.2159, 7.2168, 7.2178, 7.2189, 7.2201, 7.2198, 7.2198, 7.2194, 7.2193, 7.2191, 7.2186, 7.2173, 7.216, 7.2184, 7.2182, 7.2178, 7.2175, 7.2173, 7.2171, 7.2169, 7.2164, 7.2159, 7.2154, 7.2154, 7.2162, 7.2173, 7.2172, 7.2158, 7.2156, 7.2165, 7.2164, 7.216, 7.2155, 7.2165, 7.2162, 7.2159, 7.2168, 7.2164, 7.216, 7.2156, 7.2152, 7.2148, 7.2147, 7.2144, 7.2142, 7.214, 7.2135, 7.2132, 7.2128, 7.2127, 7.2137, 7.2146, 7.2143, 7.2139, 7.2149, 7.2159, 7.2154, 7.2151, 7.2154, 7.2163, 7.216, 7.2156, 7.2152, 7.2149, 7.2147, 7.2157, 7.2167, 7.2175, 7.2185, 7.2181, 7.2178, 7.2174, 7.2169, 7.217, 7.2165, 7.2161, 7.217, 7.2169, 7.2165, 7.2166, 7.2163, 7.2161, 7.2157, 7.2153, 7.2151, 7.2148, 7.2143, 7.2139, 7.2138, 7.2135, 7.2121, 7.2106, 7.2093, 7.2102, 7.2098, 7.2107, 7.2104, 7.2099, 7.2095, 7.2091, 7.2088, 7.2085, 7.2069, 7.2065, 7.2061, 7.2047, 7.2056, 7.2053, 7.2063, 7.2061, 7.2058, 7.2045, 7.2047, 7.2044, 7.2041, 7.2047, 7.2033, 7.2019, 7.2016, 7.2013, 7.2022, 7.2007, 7.1992, 7.199, 7.1989, 7.1986, 7.1985, 7.1995, 7.1992, 7.2001, 7.2011, 7.2022, 7.202, 7.2016, 7.2012, 7.2011, 7.2008, 7.2007, 7.2017, 7.2014, 7.201, 7.2008, 7.2018, 7.2014, 7.2012, 7.2021, 7.2019, 7.2015, 7.2012, 7.2008, 7.2006, 7.2006, 7.2003, 7.2002, 7.2012, 7.2011, 7.2021, 7.203, 7.2025, 7.2023, 7.2022, 7.2019, 7.2017, 7.2013, 7.2023, 7.2021, 7.203, 7.2027, 7.2026, 7.2025, 7.2027, 7.2035, 7.2046, 7.2056, 7.2052, 7.2049, 7.2058, 7.2043, 7.204, 7.204, 7.2038, 7.2036, 7.2034, 7.2069, 7.2066, 7.2061, 7.2069, 7.2067, 7.2065, 7.2061, 7.2058, 7.2057, 7.2055, 7.2051, 7.2046, 7.2043, 7.2052, 7.2061, 7.207, 7.2068, 7.2079, 7.2076, 7.2086, 7.2083, 7.2095, 7.2094, 7.2091, 7.2088, 7.2086, 7.2083, 7.2093, 7.2092, 7.2102, 7.2098, 7.210800000000001, 7.2105, 7.2103, 7.2124, 7.2142, 7.2151, 7.2149, 7.2146, 7.2147, 7.2155, 7.2151, 7.2148, 7.2145, 7.2144, 7.2144, 7.214, 7.2136, 7.2157, 7.2153, 7.2162, 7.216, 7.2156, 7.2152, 7.2149, 7.2148, 7.2144, 7.2153, 7.2151, 7.216, 7.2147, 7.2144, 7.214, 7.2137, 7.2133, 7.2129, 7.2126, 7.2135, 7.2132, 7.213, 7.2126, 7.2123, 7.2121, 7.2118, 7.2116, 7.2113, 7.2099, 7.2097, 7.2094, 7.209, 7.2086, 7.2085, 7.2094, 7.209, 7.2076, 7.2074, 7.2072, 7.2068, 7.2066, 7.2075, 7.2071, 7.2067, 7.2063, 7.2071, 7.2067, 7.2063, 7.2059, 7.2056, 7.2052, 7.2048, 7.2044, 7.2041, 7.2037, 7.2034, 7.202, 7.2017, 7.2013, 7.2011, 7.2019, 7.2028, 7.2028, 7.2025, 7.2021, 7.2019, 7.2018, 7.2015, 7.2014, 7.2012, 7.201, 7.2008, 7.2004, 7.2001, 7.1999, 7.1995, 7.1991, 7.1988, 7.1986, 7.1985, 7.1981, 7.1979, 7.1989, 7.1986, 7.1981, 7.1977, 7.1986, 7.1983, 7.1981, 7.1978, 7.1974, 7.197, 7.1967, 7.1975, 7.1971, 7.1967, 7.1977, 7.1973, 7.1973, 7.197, 7.1966, 7.1962, 7.1951, 7.1948, 7.1945, 7.1944, 7.1941, 7.1951, 7.1947, 7.1946, 7.1943, 7.194, 7.1952, 7.195, 7.1947, 7.1958, 7.1968, 7.1967, 7.1965, 7.197500000000001, 7.198500000000001, 7.1988, 7.1987, 7.1983, 7.198, 7.1977, 7.1976, 7.198600000000001, 7.1986, 7.1983, 7.1993, 7.2003, 7.2, 7.2029, 7.2026, 7.2017, 7.2002, 7.2, 7.1998, 7.2008, 7.2004, 7.2014, 7.2022, 7.203200000000001, 7.2029, 7.2038, 7.2074, 7.2084, 7.2105, 7.2122, 7.212, 7.2119, 7.2117, 7.2114, 7.2113, 7.2111, 7.211, 7.2132, 7.212, 7.212, 7.2118, 7.2126, 7.2135, 7.2133, 7.2129, 7.2129, 7.2151, 7.2162, 7.2159, 7.2156, 7.2153, 7.2162, 7.2158, 7.2156, 7.2164, 7.2163, 7.2161, 7.2157, 7.2153, 7.2152, 7.2161, 7.2157, 7.2153, 7.2149, 7.2147, 7.2143, 7.2152, 7.2148, 7.2157, 7.2156, 7.2152, 7.216, 7.2156, 7.2152, 7.215, 7.2148, 7.2145, 7.2153, 7.215, 7.2148, 7.2144, 7.2143, 7.2139, 7.2136, 7.2132, 7.2129, 7.2127, 7.2124, 7.2133, 7.2129, 7.2126, 7.2122, 7.2118, 7.2115, 7.2111, 7.212, 7.2122, 7.2118, 7.2126, 7.2123, 7.2119, 7.2115, 7.2115, 7.2115, 7.2123, 7.212, 7.2116, 7.2113, 7.2118, 7.2115, 7.2114, 7.2112, 7.2108, 7.2108, 7.2105, 7.2103, 7.2101, 7.2125, 7.2122, 7.2122, 7.2123, 7.2125, 7.2135, 7.2144, 7.2141, 7.2151, 7.2161, 7.2162, 7.2158, 7.2167, 7.2178, 7.2174, 7.2171, 7.2167, 7.2166, 7.2165, 7.2162, 7.2158, 7.2157, 7.2154, 7.2151, 7.215, 7.2147, 7.2145, 7.2141, 7.2161, 7.2157, 7.2153, 7.2142, 7.2145, 7.2142, 7.2138, 7.2136, 7.2122, 7.2146, 7.2145, 7.2154, 7.2153, 7.215, 7.2138, 7.2137, 7.2136, 7.2124, 7.2135, 7.2131, 7.2128, 7.2129, 7.2127, 7.2115, 7.2111, 7.2119, 7.2117, 7.2125, 7.2123, 7.212, 7.2128, 7.2137, 7.2135, 7.2143, 7.2139, 7.2135, 7.2135, 7.2143, 7.2141, 7.214, 7.2138, 7.2136, 7.2134, 7.213, 7.2138, 7.2136, 7.2132, 7.213, 7.2138, 7.2136, 7.2133, 7.2129, 7.2125, 7.2122, 7.2121, 7.2119, 7.2118, 7.2117, 7.2118, 7.2131, 7.2128, 7.2137, 7.2134, 7.2133, 7.2129, 7.2126, 7.2123, 7.2121, 7.2129, 7.2126, 7.2134, 7.2132, 7.2128, 7.2124, 7.2133, 7.213, 7.2128, 7.2125, 7.2149, 7.2146, 7.2142, 7.2138, 7.2135, 7.2131, 7.214, 7.2137, 7.2135, 7.2131, 7.2129, 7.2128, 7.2124, 7.2122, 7.2118, 7.2116, 7.2123, 7.2119, 7.2117, 7.2113, 7.2111, 7.2134, 7.2142, 7.2139, 7.2147, 7.2145, 7.2143, 7.2139, 7.2136, 7.2132, 7.214, 7.2137, 7.2133, 7.213, 7.2138, 7.2135, 7.2133, 7.2129, 7.2127, 7.2136, 7.2132, 7.2131, 7.2128, 7.2125, 7.2126, 7.2123, 7.213, 7.2126, 7.2113, 7.211, 7.2107, 7.2104, 7.2102, 7.2112, 7.2109, 7.2116, 7.2115, 7.2101, 7.2087, 7.2074, 7.207, 7.2068, 7.2066, 7.2075, 7.2072, 7.2073, 7.2083, 7.2079, 7.2075, 7.2083, 7.2081, 7.2077, 7.2073, 7.2071, 7.2067, 7.2065, 7.2063, 7.2059, 7.2058, 7.2056, 7.2052, 7.205, 7.2049, 7.2048, 7.2048, 7.2037, 7.2034, 7.2032, 7.2041, 7.2037, 7.2034, 7.2032, 7.2031, 7.2027, 7.2025, 7.2021, 7.2029, 7.2026, 7.2023, 7.2032, 7.202, 7.2018, 7.2017, 7.2014, 7.2013, 7.2009, 7.2005, 7.2001, 7.1998, 7.1995, 7.1991, 7.2, 7.1997, 7.1993, 7.1993, 7.2006, 7.2007, 7.2004, 7.199, 7.1987, 7.2011, 7.2007, 7.2053, 7.2065, 7.2062, 7.207, 7.2079, 7.2086, 7.2084, 7.2083, 7.2079, 7.2076, 7.2073, 7.2081, 7.209, 7.2088, 7.2085, 7.2084, 7.2083, 7.2091, 7.2079, 7.2076, 7.2073, 7.2062, 7.2058, 7.2054, 7.2064, 7.2072, 7.2069, 7.2066, 7.2063, 7.2061, 7.2059, 7.2055, 7.2063, 7.2071, 7.2067, 7.2064, 7.2063, 7.205, 7.2037, 7.2036, 7.2034, 7.2031, 7.2027, 7.2014, 7.201, 7.2008, 7.2018, 7.2014, 7.2012, 7.201, 7.2007, 7.2019, 7.2017, 7.2015, 7.2035, 7.2032, 7.2046, 7.2042, 7.2049, 7.2047, 7.2055, 7.2065, 7.2064, 7.2063, 7.2059, 7.2057, 7.2057, 7.2065, 7.2053, 7.2062, 7.2058, 7.2066, 7.2074, 7.2071, 7.207, 7.2067, 7.2064, 7.2073, 7.2071, 7.2067, 7.2076, 7.2075, 7.2072, 7.208, 7.2077, 7.2073, 7.2081, 7.2078, 7.2074, 7.2073, 7.207, 7.2069, 7.2067, 7.2065, 7.2062, 7.2069, 7.2076, 7.2074, 7.2073, 7.207, 7.2068, 7.2065, 7.2061, 7.2058, 7.2055, 7.2063, 7.2071, 7.208, 7.2089, 7.2087, 7.2083, 7.209, 7.2088, 7.2085, 7.2084, 7.2081, 7.2078, 7.2075, 7.2071, 7.2071, 7.2069, 7.2067, 7.2067, 7.2074, 7.2072, 7.2069, 7.2068, 7.2067, 7.2067, 7.2075, 7.2074, 7.2082, 7.2082, 7.2079, 7.2078, 7.2075, 7.2073, 7.2071, 7.2068, 7.2065, 7.2062, 7.2082, 7.2089, 7.2086, 7.2084, 7.2081, 7.2078, 7.2074, 7.2071, 7.2067, 7.2064, 7.2083, 7.208, 7.2077, 7.2076, 7.2072, 7.2079, 7.2076, 7.2072, 7.2071, 7.2068, 7.2065, 7.2061, 7.2059, 7.2067, 7.2063, 7.206, 7.2067, 7.2074, 7.2071, 7.207, 7.2068, 7.2064, 7.2061, 7.2067, 7.2063, 7.2076, 7.2073, 7.208, 7.2077, 7.2077, 7.2075, 7.2079, 7.2076, 7.2075, 7.2072, 7.2072, 7.2079, 7.2076, 7.2073, 7.2078, 7.2074, 7.2071, 7.2068, 7.2068, 7.2076, 7.2076, 7.2073, 7.2104, 7.2101, 7.2109, 7.2107, 7.2114, 7.2123, 7.212, 7.2118, 7.2114, 7.2111, 7.2108, 7.2105, 7.2105, 7.2103, 7.2101, 7.2098, 7.2096, 7.2083, 7.208, 7.209, 7.2086, 7.2093, 7.2091, 7.209, 7.2077, 7.2073, 7.207, 7.2069, 7.2068, 7.2064, 7.206, 7.2058, 7.2057, 7.2065, 7.2063, 7.2061, 7.2059, 7.2057, 7.2055, 7.2054, 7.2052, 7.205, 7.2046, 7.2045, 7.2043, 7.2041, 7.2029, 7.2026, 7.2024, 7.2022, 7.202, 7.2018, 7.2027, 7.2024, 7.2022, 7.2019, 7.2015, 7.2024, 7.2021, 7.202, 7.2029, 7.2026, 7.2023, 7.202, 7.204, 7.204, 7.2036, 7.2044, 7.204, 7.2037, 7.2035, 7.2031, 7.2038, 7.2036, 7.2033, 7.203, 7.2018, 7.2016, 7.2013, 7.2011, 7.1998, 7.1995, 7.1993, 7.1981, 7.1969, 7.1972, 7.196, 7.1957, 7.196700000000001, 7.1965, 7.1973, 7.197, 7.1967, 7.1966, 7.1975, 7.1973, 7.197, 7.1968, 7.1966, 7.1964, 7.1962, 7.196, 7.196, 7.1958, 7.1956, 7.1953, 7.195, 7.1947, 7.1943, 7.1984, 7.1982, 7.198, 7.1978, 7.1974, 7.1971, 7.1969, 7.1966, 7.1974, 7.1971, 7.1968, 7.1965, 7.1973, 7.197, 7.1977, 7.1976, 7.1983, 7.1981, 7.1978, 7.1978, 7.1975, 7.1963, 7.1952, 7.1941, 7.193, 7.1922, 7.1918, 7.1925, 7.1924, 7.1921, 7.1918, 7.1915, 7.1914, 7.1911, 7.1909, 7.1906, 7.1895, 7.1892, 7.1891, 7.1888, 7.1887, 7.1895, 7.1893, 7.1892, 7.1902, 7.1899, 7.1897, 7.1895, 7.1894, 7.1892, 7.1902, 7.1902, 7.1901, 7.19, 7.1897, 7.1895, 7.1904, 7.1892, 7.1888, 7.1886, 7.1895, 7.1893, 7.19, 7.1898, 7.1896, 7.1896, 7.1896, 7.1892, 7.189, 7.1897, 7.1894, 7.1893, 7.1891, 7.1901, 7.1898, 7.1896, 7.1894, 7.1891, 7.1888, 7.1886, 7.1884, 7.1892, 7.1889, 7.1886, 7.1883, 7.1882, 7.188, 7.1882, 7.1892000000000005, 7.189, 7.1888, 7.1896, 7.1894, 7.1892, 7.1901, 7.1899, 7.1896, 7.1894, 7.192, 7.1918, 7.1907, 7.1895, 7.1893, 7.190300000000001, 7.1901, 7.1944, 7.1945, 7.1945, 7.1942, 7.1939, 7.1928, 7.1924, 7.1932, 7.1941, 7.1949, 7.1947, 7.1944, 7.1952, 7.1949, 7.1957, 7.1954, 7.1952, 7.196, 7.1959, 7.1958, 7.1978, 7.1975, 7.1974, 7.197, 7.197, 7.1967, 7.1964, 7.1963, 7.1963, 7.1971, 7.1968, 7.1967, 7.1963, 7.196, 7.1956, 7.1954, 7.1952, 7.195, 7.1948, 7.1947, 7.1947, 7.1948, 7.1937, 7.1934, 7.1931, 7.1928, 7.1926, 7.1933, 7.194, 7.1937, 7.1935, 7.1942, 7.1939, 7.1928, 7.1927, 7.1924, 7.1921, 7.1929, 7.1928, 7.1925, 7.1923, 7.1921, 7.1919, 7.1916, 7.1913, 7.191, 7.1908, 7.1904, 7.1913, 7.1911, 7.1907, 7.1905, 7.1901, 7.1901, 7.1908, 7.1907, 7.1914, 7.1921, 7.1928, 7.1925, 7.1934, 7.1932, 7.1939, 7.1937, 7.1935, 7.1934, 7.1931, 7.1939, 7.1936, 7.1932, 7.1929, 7.1926, 7.1925, 7.1922, 7.192, 7.1917, 7.1915, 7.1915, 7.1912, 7.1909, 7.1918, 7.1915, 7.1923, 7.1931, 7.1927, 7.1925, 7.1933, 7.193, 7.1929, 7.1933, 7.1931, 7.1938, 7.1935, 7.1933, 7.1929, 7.1926, 7.1925, 7.1931, 7.1919, 7.1916, 7.1921, 7.1921, 7.1918, 7.1916, 7.1913, 7.1911, 7.1907, 7.1915, 7.1923, 7.192, 7.1918, 7.1914, 7.1904, 7.1902, 7.1899, 7.1897, 7.1896, 7.1893, 7.19, 7.1897, 7.1894, 7.1892, 7.1889, 7.1886, 7.1883, 7.189, 7.1897, 7.1905, 7.1902, 7.1901, 7.1898, 7.1905, 7.1924, 7.1922, 7.192, 7.1918, 7.1917, 7.1925, 7.1935, 7.1932, 7.1939, 7.1937, 7.1935, 7.1933, 7.1932, 7.193, 7.1939, 7.1939, 7.194, 7.1939, 7.1936, 7.1946, 7.1944, 7.1942, 7.1939, 7.1938, 7.1936, 7.1935, 7.1932, 7.193, 7.1928, 7.1925, 7.1921, 7.1918, 7.1917, 7.1924, 7.1922, 7.1929, 7.1928, 7.1916, 7.1913, 7.191, 7.1907, 7.1907, 7.1905, 7.1903, 7.1902, 7.189, 7.1887, 7.1885, 7.1882, 7.1879, 7.1889, 7.189900000000001, 7.1898, 7.1895, 7.1893, 7.1891, 7.1889, 7.1886, 7.1874, 7.1872, 7.1869, 7.1867, 7.1874, 7.1882, 7.188, 7.1877, 7.1875, 7.1873, 7.187, 7.1867, 7.1875, 7.1872, 7.1881, 7.1878, 7.1875, 7.1873, 7.1861, 7.1859, 7.1856, 7.1854, 7.1853, 7.185, 7.1846, 7.1843, 7.184, 7.1837, 7.1837, 7.1844, 7.1844, 7.1841, 7.1838, 7.1836, 7.1834, 7.1831, 7.1829, 7.1826, 7.1826, 7.1827, 7.1827, 7.1824, 7.1822, 7.1829, 7.1827, 7.1823, 7.182, 7.1827, 7.1833, 7.183, 7.1829, 7.1827, 7.1825, 7.1823, 7.1812, 7.1809, 7.1807, 7.1816, 7.1813, 7.1811, 7.1809, 7.1807, 7.1795, 7.1794, 7.1792, 7.179, 7.1797, 7.1794, 7.1791, 7.178, 7.178, 7.1777, 7.1774, 7.1772, 7.177, 7.1768, 7.1766, 7.1769, 7.1767, 7.1765, 7.1763, 7.177, 7.1768, 7.1765, 7.1763, 7.1752, 7.1749, 7.1748, 7.1745, 7.1743, 7.174, 7.1737, 7.1747000000000005, 7.1745, 7.1752, 7.1751, 7.175, 7.1748, 7.1745, 7.1752, 7.1749, 7.1738, 7.1736, 7.1743, 7.1742, 7.1741, 7.1739, 7.1746, 7.1748, 7.1745, 7.1744, 7.1751, 7.1749, 7.1747, 7.1747, 7.1744, 7.175, 7.1749, 7.1747, 7.1747, 7.1744, 7.1743, 7.1742, 7.174, 7.1755, 7.1761, 7.1769, 7.1766, 7.1774, 7.1772, 7.177, 7.1771, 7.178100000000001, 7.179100000000001, 7.1799, 7.1798, 7.1796, 7.1795, 7.1793, 7.1791, 7.1791, 7.1789, 7.1788, 7.1785, 7.1783, 7.1782, 7.1779, 7.1779, 7.1776, 7.1775, 7.1774, 7.1771, 7.1779, 7.1776, 7.1775, 7.1772, 7.1771, 7.177, 7.1777, 7.1775, 7.1773, 7.1781, 7.1791, 7.1811, 7.1808, 7.1818, 7.1827, 7.1837, 7.1847, 7.1854, 7.1852, 7.1849, 7.1848, 7.1845, 7.1857, 7.1857, 7.1857, 7.1863, 7.1869, 7.1867, 7.1864, 7.1872, 7.187, 7.1869, 7.1866, 7.1864, 7.1863, 7.1861, 7.1859, 7.1857, 7.1856, 7.1856, 7.1854, 7.1854, 7.1862, 7.1859, 7.1858, 7.1865, 7.1862, 7.1859, 7.1856, 7.1873, 7.1879, 7.1876, 7.1893, 7.1894, 7.1891, 7.1888, 7.1885, 7.1882, 7.1881, 7.1881, 7.187, 7.1868, 7.1865, 7.1862, 7.1869, 7.187, 7.1868, 7.1876, 7.1874, 7.1881, 7.1888, 7.1885, 7.1892, 7.1889, 7.1887, 7.1876, 7.1886, 7.1884, 7.1881, 7.1879, 7.1877, 7.1914, 7.1911, 7.191, 7.1908, 7.1916, 7.1916, 7.1914, 7.1912, 7.1909, 7.1899, 7.1896, 7.1903, 7.19, 7.1898, 7.1895, 7.1893, 7.189, 7.1887, 7.1885, 7.1882, 7.188, 7.1887, 7.1886, 7.1884, 7.1892, 7.1889, 7.1886, 7.1886, 7.1883, 7.1883, 7.188, 7.1877, 7.1883, 7.188, 7.1879, 7.1879, 7.1877, 7.1884, 7.1884, 7.1881, 7.1879, 7.1876, 7.1899, 7.1899, 7.19, 7.1897, 7.1904, 7.1902, 7.19, 7.1897, 7.1887, 7.1885, 7.1882, 7.188, 7.1886, 7.1892, 7.189, 7.1888, 7.1885, 7.1883, 7.188, 7.1878, 7.1885, 7.1883, 7.1891, 7.1888, 7.1886, 7.1883, 7.189, 7.1887, 7.1885, 7.1882, 7.1879, 7.1878, 7.1875, 7.1872, 7.1869, 7.1866, 7.1873, 7.187, 7.1867, 7.1866, 7.1874, 7.1874, 7.1871, 7.1869, 7.1867, 7.1865, 7.1864, 7.1861, 7.1858, 7.1855, 7.1862, 7.186, 7.1858, 7.1855, 7.1862, 7.1869, 7.1868, 7.1865, 7.1863, 7.1862, 7.1859, 7.1869000000000005, 7.1867, 7.1866, 7.1864, 7.1871, 7.1869, 7.1875, 7.1872, 7.1872, 7.1878, 7.1876, 7.1873, 7.1872, 7.1869, 7.1867, 7.1873, 7.187, 7.1868, 7.1865, 7.1864, 7.1861, 7.1858, 7.1925, 7.1924, 7.1923, 7.193, 7.193, 7.1929, 7.1926, 7.1924, 7.1921, 7.192, 7.1930000000000005, 7.1927, 7.1933, 7.1931, 7.1928, 7.1935, 7.1932, 7.1931, 7.1937, 7.1934, 7.1943, 7.1941, 7.194, 7.1939, 7.1938, 7.1944, 7.1943, 7.1953000000000005, 7.195, 7.196000000000001, 7.1957, 7.1966, 7.1966, 7.1964, 7.1961, 7.1967, 7.1966, 7.1973, 7.197, 7.1959, 7.1966, 7.1965, 7.1964, 7.1962, 7.196, 7.196, 7.1961, 7.196, 7.1968, 7.1986, 7.1984, 7.1981, 7.199, 7.1987, 7.1993, 7.1999, 7.2007, 7.2004, 7.2001, 7.1998, 7.1997, 7.1994, 7.1992, 7.2001, 7.2007, 7.2006, 7.2003, 7.2001, 7.1999, 7.1996, 7.1993, 7.1991, 7.1989, 7.1986, 7.1986, 7.1993, 7.1992, 7.1989, 7.1986, 7.1983, 7.199, 7.1987, 7.1994, 7.2, 7.1999, 7.1996, 7.1993, 7.1983, 7.1982, 7.2004, 7.2004, 7.2011, 7.2027, 7.2025, 7.2023, 7.203, 7.2027, 7.2029, 7.2037, 7.2028, 7.2035, 7.2035, 7.2032, 7.2033, 7.203, 7.2027, 7.2025, 7.2022, 7.202, 7.2018, 7.2046, 7.2056, 7.2053, 7.2069, 7.2076, 7.2103, 7.21, 7.2097, 7.2103, 7.21, 7.2097, 7.2103, 7.2102, 7.21, 7.2097, 7.2094, 7.2101, 7.211, 7.2117, 7.2116, 7.2113, 7.2115, 7.2112, 7.2137, 7.2138, 7.2139, 7.215, 7.2148, 7.2155, 7.2154, 7.216, 7.2158, 7.2156, 7.2155, 7.2153, 7.215, 7.215, 7.2148, 7.2145, 7.2152, 7.2159, 7.2158, 7.2156, 7.2156, 7.2156, 7.2153, 7.2151, 7.2158, 7.2155, 7.2154, 7.2151, 7.215, 7.2147, 7.2145, 7.2143, 7.2141, 7.2139, 7.2137, 7.2135, 7.2133, 7.2131, 7.2139, 7.2136, 7.2135, 7.2134, 7.2132, 7.2142, 7.214, 7.2139, 7.2136, 7.2133, 7.2132, 7.213, 7.2137, 7.2136, 7.2133, 7.2139, 7.2136, 7.2135, 7.2134, 7.2133, 7.2131, 7.2129, 7.2128, 7.2126, 7.2124, 7.2124, 7.2121, 7.2146, 7.2144, 7.2143, 7.2142, 7.2142, 7.214, 7.2138, 7.2135, 7.2143, 7.215, 7.2149, 7.2147, 7.2144, 7.2144, 7.2143, 7.2141, 7.2138, 7.2144, 7.2143, 7.215, 7.2148, 7.2147, 7.2145, 7.2151, 7.2148, 7.2155, 7.2154, 7.2153, 7.2151, 7.2149, 7.2146, 7.2153, 7.2151, 7.2158, 7.2165, 7.2162, 7.2159, 7.2166, 7.2166, 7.2173, 7.2171, 7.217, 7.2168, 7.2175, 7.2174, 7.2181, 7.2178, 7.2176, 7.2174, 7.2181, 7.2178, 7.2176, 7.2174, 7.2172, 7.2179, 7.218, 7.2177, 7.2175, 7.2165, 7.2166, 7.2166, 7.2163, 7.216, 7.2157, 7.2155, 7.2162, 7.216, 7.2157, 7.2155, 7.2153, 7.2155, 7.2153, 7.2143, 7.2132, 7.2121, 7.2128, 7.2127, 7.2124, 7.2122, 7.2119, 7.2117, 7.2116, 7.2114, 7.2112, 7.211, 7.2107, 7.2107, 7.2108, 7.2097, 7.2094, 7.2093, 7.2092, 7.2099, 7.2098, 7.2105, 7.2102, 7.2108, 7.2106, 7.2104, 7.2103, 7.2102, 7.2099, 7.2097, 7.2107, 7.2105, 7.2131, 7.2132, 7.2129, 7.2127, 7.2127, 7.2129, 7.2146, 7.2144, 7.2141, 7.2147, 7.2146, 7.2145, 7.2143, 7.214, 7.2138, 7.2136, 7.2143, 7.214, 7.2145, 7.2143, 7.2143, 7.2143, 7.2142, 7.2142, 7.214, 7.2137, 7.2134, 7.2132, 7.2129, 7.2126, 7.2124, 7.2121, 7.2119, 7.2116, 7.2122, 7.2119, 7.2117, 7.2114, 7.2104, 7.2104, 7.2101, 7.21, 7.2097, 7.2094, 7.2092, 7.2089, 7.2087, 7.2093, 7.2091, 7.2089, 7.2096, 7.2093, 7.21, 7.2099, 7.2096, 7.2093, 7.209, 7.2088, 7.2095, 7.2086, 7.2084, 7.2082, 7.208, 7.2077, 7.2074, 7.2071, 7.207, 7.2061, 7.205, 7.2041, 7.2032, 7.2024, 7.2021, 7.2019, 7.201, 7.2016, 7.2015, 7.2012, 7.2012, 7.2009, 7.2008, 7.2014, 7.2011, 7.2012, 7.2036, 7.2042, 7.2039, 7.2036, 7.2033, 7.203, 7.2029, 7.2026, 7.2033, 7.2031, 7.2028, 7.2026, 7.2023, 7.2023, 7.2021, 7.202, 7.2017, 7.2015, 7.2014, 7.2012, 7.201, 7.2007, 7.2007, 7.2006, 7.2005, 7.2003, 7.2011, 7.2026, 7.2016, 7.2013, 7.2011, 7.2009, 7.2007, 7.2005, 7.2003, 7.2001, 7.1999, 7.1996, 7.1993, 7.1992, 7.1989, 7.199, 7.1995, 7.1993, 7.1993, 7.199, 7.1988, 7.1985, 7.1984, 7.1985, 7.1993, 7.1984, 7.199, 7.1989, 7.1986, 7.1985, 7.1984, 7.1991, 7.1997, 7.1995, 7.1992, 7.1993, 7.1992, 7.1991, 7.199, 7.1988, 7.1986, 7.1985, 7.1983, 7.1991, 7.1989, 7.1986, 7.1984, 7.1982, 7.198, 7.199000000000001, 7.1988, 7.1986, 7.1987, 7.1985, 7.1983, 7.1982, 7.199, 7.1997, 7.1999, 7.2, 7.2006, 7.2013, 7.2019, 7.2035, 7.2032, 7.2029, 7.2039, 7.2036, 7.2035, 7.2043, 7.204, 7.2038, 7.2036, 7.2035, 7.2034, 7.2024, 7.2021, 7.2019, 7.2016, 7.2014, 7.2011, 7.2001, 7.1998, 7.1996, 7.1993, 7.1992, 7.2009, 7.2026, 7.2024, 7.2023, 7.2044, 7.2042, 7.204, 7.2037, 7.2034, 7.2031, 7.2029, 7.2028, 7.2025, 7.2022, 7.2019, 7.2016, 7.2015, 7.2012, 7.2018, 7.2016, 7.2014, 7.2012, 7.2018, 7.2015, 7.2004, 7.1994, 7.1992, 7.1998, 7.1997, 7.1996, 7.2002, 7.1997, 7.1988, 7.1979, 7.1969, 7.1967, 7.1966, 7.1965, 7.1972, 7.1969, 7.1968, 7.1975, 7.1982, 7.1979, 7.1986, 7.1986, 7.1984, 7.199, 7.1988, 7.1994, 7.1991, 7.1988, 7.1986, 7.1992, 7.1998, 7.2005, 7.2002, 7.2002, 7.2, 7.1999, 7.1999, 7.1998, 7.1995, 7.1994, 7.1991, 7.1988, 7.1988, 7.1978, 7.1975, 7.1972, 7.1969, 7.197900000000001, 7.1976, 7.1967, 7.1972, 7.197, 7.1967, 7.1958, 7.1955, 7.1952, 7.1959, 7.1956, 7.1953, 7.1952, 7.1951, 7.1958, 7.1966, 7.1964, 7.1962, 7.196, 7.1957, 7.1957, 7.1963, 7.1961, 7.1959, 7.1956, 7.1963, 7.1962, 7.196, 7.1966, 7.1966, 7.1966, 7.1964, 7.1962, 7.196, 7.1957, 7.1955, 7.1952, 7.1951, 7.1949, 7.1947, 7.1953, 7.195, 7.1949, 7.1947, 7.1954, 7.1961, 7.1951, 7.1949, 7.1947, 7.1945, 7.1937, 7.1927, 7.1925, 7.1922, 7.192, 7.1918, 7.1916, 7.1915, 7.1905, 7.1912, 7.1909, 7.1906, 7.1898, 7.1904, 7.1901, 7.1899, 7.1906, 7.1904, 7.1902, 7.1902, 7.19, 7.1898, 7.1895, 7.1894, 7.1891, 7.1895, 7.1893, 7.189, 7.1887, 7.1884, 7.1883, 7.1882, 7.188, 7.189, 7.1888, 7.1898, 7.1908, 7.1907, 7.1905, 7.1911, 7.1923, 7.1925, 7.1924, 7.1922, 7.1933, 7.1943, 7.1942, 7.1941, 7.1939, 7.1963, 7.197, 7.1986, 7.1983, 7.1989, 7.1987, 7.1992, 7.1989, 7.1987, 7.1984, 7.1981, 7.1981, 7.198, 7.1978, 7.1976, 7.1975, 7.1973, 7.1974, 7.198, 7.1978, 7.1985, 7.1982, 7.198, 7.1986, 7.1986, 7.1976, 7.1982, 7.1982, 7.1979, 7.1977, 7.1983, 7.198, 7.1977, 7.1975, 7.1973, 7.1979, 7.1977, 7.1975, 7.1974, 7.198, 7.1979, 7.1977, 7.1975, 7.1981, 7.1978, 7.1976, 7.1973, 7.197, 7.1967, 7.1965, 7.1962, 7.196, 7.1966, 7.1964, 7.1969, 7.1968, 7.1967, 7.1973, 7.1971, 7.1977, 7.1976, 7.1976, 7.1974, 7.198, 7.1979, 7.1977, 7.1983, 7.1983, 7.1981, 7.1979, 7.1977, 7.1974, 7.1972, 7.197, 7.1976, 7.1974, 7.1973, 7.197, 7.1969, 7.1967, 7.1972, 7.197, 7.1976, 7.1973, 7.197, 7.1976, 7.1974, 7.1971, 7.197, 7.1967, 7.1965, 7.1972, 7.1978, 7.1984, 7.1982, 7.1979, 7.1978, 7.1978, 7.1977, 7.1975, 7.1981, 7.1979, 7.1976, 7.1973, 7.1971, 7.1969, 7.1968, 7.1966, 7.1971, 7.1968, 7.1967, 7.1964, 7.1969, 7.1966, 7.1963, 7.1969, 7.1966, 7.1965, 7.1962, 7.196, 7.1966, 7.1965, 7.1962, 7.1959, 7.1965, 7.1962, 7.1968, 7.1965, 7.1963, 7.196, 7.1957, 7.1963, 7.1961, 7.1958, 7.1956, 7.1954, 7.1951, 7.1965, 7.1962, 7.196, 7.1958, 7.1956, 7.1955, 7.1953, 7.195, 7.1947, 7.1946, 7.1944, 7.1942, 7.1948, 7.1945, 7.1943, 7.194, 7.1937, 7.1934, 7.1933, 7.1931, 7.1953, 7.1952, 7.195, 7.1951, 7.1977, 7.1978, 7.1981, 7.1982, 7.1992, 7.1997, 7.1995, 7.1996, 7.1993, 7.1991, 7.1989, 7.2003, 7.2001, 7.2, 7.1998, 7.1997, 7.2011, 7.2018, 7.2016, 7.2013, 7.2011, 7.2017, 7.2016, 7.2014, 7.2021, 7.2028, 7.2027, 7.2025, 7.2031, 7.2032, 7.2031, 7.2037, 7.2052, 7.2049, 7.2047, 7.2055, 7.2061, 7.2059, 7.2074, 7.2073, 7.2065, 7.2064, 7.2063, 7.2061, 7.2067, 7.2066, 7.2065, 7.211, 7.2145, 7.2143, 7.2142, 7.2148, 7.2154, 7.2152, 7.2149, 7.2146, 7.2152, 7.2149, 7.2155, 7.2153, 7.2151, 7.2149, 7.2155, 7.2153, 7.215, 7.2149, 7.2156, 7.2153, 7.215, 7.2147, 7.2153, 7.2159, 7.2158, 7.2157, 7.2156, 7.2166, 7.2181, 7.2179, 7.2176, 7.2182, 7.2189, 7.2189, 7.2188, 7.2186, 7.2184, 7.2181, 7.218, 7.2186, 7.2184, 7.2181, 7.2187, 7.2184, 7.2181, 7.2179, 7.2184, 7.2183, 7.2181, 7.2179, 7.2176, 7.2173, 7.2171, 7.2169, 7.2174, 7.218, 7.2177, 7.2177, 7.2174, 7.2173, 7.2171, 7.2171, 7.2168, 7.2165, 7.2171, 7.2169, 7.2175, 7.2173, 7.217, 7.2167, 7.2165, 7.2163, 7.2161, 7.2167, 7.2164, 7.2163, 7.2161, 7.2158, 7.2155, 7.2161, 7.2159, 7.2157, 7.2163, 7.2185, 7.2182, 7.2188, 7.2186, 7.22, 7.2197, 7.2196, 7.2194, 7.2199, 7.2217, 7.2214, 7.2213, 7.221, 7.2207, 7.2228, 7.2226, 7.2224, 7.223, 7.2228, 7.2233, 7.2246, 7.2245, 7.2243, 7.2242, 7.224, 7.2239, 7.2244, 7.2241, 7.2246, 7.2251, 7.2257, 7.2256, 7.2261, 7.2275, 7.2272, 7.2271, 7.2269, 7.2268, 7.2266, 7.2264, 7.2264, 7.2262, 7.2269, 7.2267, 7.2265, 7.2271, 7.227, 7.2276, 7.2275, 7.2272, 7.2278, 7.2276, 7.2274, 7.2272, 7.2272, 7.2278, 7.2284, 7.2289, 7.2287, 7.2287, 7.2284, 7.2282, 7.2319, 7.2316, 7.2316, 7.2307, 7.2308, 7.2306, 7.2304, 7.231, 7.2311, 7.2308, 7.2306, 7.2305, 7.2303, 7.2301, 7.2314, 7.2328, 7.2333, 7.2331, 7.2337, 7.2335, 7.2332, 7.233, 7.2327, 7.2325, 7.2323, 7.2322, 7.2319, 7.2317, 7.2315, 7.2313, 7.2319, 7.2317, 7.2315, 7.2313, 7.2323, 7.2322, 7.2329, 7.2328, 7.2327, 7.2325, 7.2348, 7.2346, 7.2346, 7.2345, 7.2337, 7.2339, 7.2337, 7.2329, 7.2335, 7.2333, 7.2333, 7.234, 7.2356, 7.2353, 7.2351, 7.2356, 7.2353, 7.2351, 7.2348, 7.2357, 7.2355, 7.236, 7.2357, 7.2356, 7.2353, 7.2352, 7.235, 7.235, 7.2347, 7.2344, 7.2341, 7.2338, 7.2335, 7.2332, 7.2329, 7.2334, 7.2331, 7.233, 7.2331, 7.2336, 7.2334, 7.2331, 7.2329, 7.2335, 7.2333, 7.2349, 7.2346, 7.2343, 7.2341, 7.2346, 7.2343, 7.234, 7.2338, 7.2335, 7.2333, 7.2341, 7.2349, 7.2347, 7.2348, 7.2346, 7.2343, 7.2341, 7.2365, 7.237, 7.2367, 7.2366, 7.2365, 7.2362, 7.236, 7.2357, 7.2362, 7.2367, 7.2367, 7.2372, 7.2377, 7.2375, 7.2373, 7.2371, 7.2368, 7.2365, 7.2362, 7.2367, 7.2364, 7.2361, 7.2359, 7.2357, 7.2363, 7.2361, 7.2361, 7.236, 7.2359, 7.2358, 7.2356, 7.2353, 7.235, 7.2348, 7.2347, 7.2345, 7.2343, 7.2349, 7.2355, 7.2353, 7.2352, 7.235, 7.2348, 7.2346, 7.2345, 7.2344, 7.2341, 7.2338, 7.2336, 7.2334, 7.2332, 7.233, 7.2328, 7.2325, 7.2325, 7.2323, 7.2322, 7.2319, 7.2324, 7.2322, 7.2319, 7.2316, 7.2314, 7.2319, 7.2325, 7.2323, 7.2331, 7.2328, 7.2334, 7.2333, 7.2341, 7.2341, 7.2339, 7.2337, 7.2343, 7.2341, 7.2339, 7.2337, 7.2335, 7.2333, 7.2331, 7.2328, 7.2334, 7.2332, 7.2338, 7.2336, 7.2342], '192.168.122.112': [10.3512, 10.5099, 8.9685, 8.5216, 8.0372, 7.649, 7.3723, 7.8898, 7.6171, 7.5333, 7.4328, 7.2926, 7.2379, 7.1381, 7.0644, 6.989, 6.9769, 6.9304, 6.915, 6.8952, 6.8467, 6.7972, 6.7457, 6.8056, 6.7979, 6.779, 6.7527, 6.7013, 6.724, 6.6991, 7.0212, 7.0223, 6.9715, 6.9457, 7.0555, 7.0345, 6.9879, 7.2579, 7.3748, 7.3362, 7.2881, 7.3705, 7.3243, 7.2945, 7.324, 7.3237, 7.3204, 7.3101, 7.2778, 7.2932, 7.3019, 7.3976, 7.379, 7.3692, 7.4266, 7.4062, 7.3703, 7.3378, 7.3056, 7.2225, 7.3745, 7.473, 7.4399, 7.4145, 7.4021, 7.3914, 7.3614, 7.3356, 7.3913, 7.3642, 7.3743, 7.3574, 7.3385, 7.3162, 7.3083, 7.2887, 7.3356, 7.3228, 7.3015, 7.2803, 7.2607, 7.247, 7.2266, 7.2069, 7.1854, 7.1648, 7.1433, 7.1227, 7.1628, 7.1468, 7.1304, 7.1167, 7.1002, 7.086, 7.0729, 7.0625, 7.0516, 7.0343, 7.0215, 7.068, 7.0629, 7.0569, 6.9989, 6.9844, 6.9708, 6.9697, 6.9641, 6.9584, 6.9482, 6.9404, 6.935, 6.9241, 6.9106, 6.9445, 6.9298, 6.9224, 6.9095, 6.9062, 6.9034, 6.9335, 6.9214, 6.9141, 7.1295, 7.1166, 7.1464, 7.1343, 7.1233, 7.1083, 7.0959, 7.1222, 7.1145, 7.101, 7.0994, 7.1316, 7.1213, 7.1146, 7.1018, 7.0901, 7.0802, 7.0706, 7.0595, 7.0555, 7.0845, 7.075, 7.0668, 7.0554, 7.0811, 7.1066, 7.0969, 7.0882, 7.0804, 7.0745, 7.0706, 7.0633, 7.0585, 7.0822, 7.1057, 7.1273, 7.1211, 7.1116, 7.1016, 7.1289, 7.1207, 7.1119, 7.109, 7.1324, 7.1212, 7.1435, 7.1695, 7.1585, 7.1475, 7.1395, 7.1317, 7.1251, 7.1456, 7.1671, 7.163, 7.1564, 7.152, 7.1443, 7.1754, 7.1672, 7.1628, 7.1866, 7.2084, 7.2292, 7.2214, 7.2125, 7.2036, 7.1993, 7.1985, 7.1894, 7.1844, 7.1782, 7.1727, 7.1653, 7.2097, 7.2279, 7.2273, 7.2199, 7.2454, 7.2362, 7.2278, 7.275, 7.2692, 7.2675, 7.2619, 7.3453, 7.3392, 7.3361, 7.3267, 7.3476, 7.3763, 7.3708, 7.3658, 7.359, 7.3505, 7.3454, 7.3431, 7.3357, 7.352, 7.3459, 7.3378, 7.3292, 7.3462, 7.3394, 7.3575, 7.3497, 7.3815, 7.3755, 7.3679, 7.3592, 7.3512, 7.3437, 7.3418, 7.3355, 7.3126, 7.3064, 7.3003, 7.3071, 7.3038, 7.3286, 7.3273, 7.3206, 7.3155, 7.3077, 7.2855, 7.2787, 7.2746, 7.27, 7.2682, 7.2866, 7.2793, 7.2728, 7.2698, 7.2622, 7.2581, 7.2607, 7.2561, 7.2727, 7.2671, 7.2837, 7.2772, 7.2912, 7.2846, 7.2796, 7.297, 7.2978, 7.2943, 7.2948, 7.2897, 7.3048, 7.3002, 7.3153, 7.3093, 7.3038, 7.298, 7.3135, 7.3119, 7.3048, 7.2995, 7.2939, 7.2887, 7.2837, 7.2782, 7.2731, 7.2694, 7.2821, 7.2969, 7.2918, 7.2863, 7.2812, 7.2759, 7.271, 7.2678, 7.2651, 7.2624, 7.2572, 7.2542, 7.2668, 7.2816, 7.2762, 7.2729, 7.2841, 7.2794, 7.2774, 7.2755, 7.2708, 7.2649, 7.2604, 7.2689, 7.2647, 7.261, 7.2783, 7.2718, 7.2832, 7.2785, 7.2721, 7.2674, 7.2632, 7.2602, 7.2714, 7.2653, 7.2634, 7.3262, 7.3375, 7.3321, 7.3289, 7.3243, 7.3362, 7.3466, 7.3404, 7.3368, 7.3312, 7.327, 7.3395, 7.3356, 7.348, 7.3423, 7.337, 7.3315, 7.3279, 7.3226, 7.3201, 7.3179, 7.3123, 7.3084, 7.3186, 7.3127, 7.3087, 7.3195, 7.3153, 7.3098, 7.3044, 7.2987, 7.2808, 7.2906, 7.287, 7.2817, 7.292, 7.3025, 7.3014, 7.297, 7.2956, 7.3069, 7.3032, 7.3, 7.2963, 7.2915, 7.2881, 7.2875, 7.2824, 7.278, 7.2743, 7.2734, 7.2751, 7.2721, 7.2682, 7.2641, 7.2635, 7.274, 7.2723, 7.2813, 7.3044, 7.3042, 7.3025, 7.3112, 7.3213, 7.3452, 7.3398, 7.3238, 7.3213, 7.3183, 7.328, 7.3256, 7.3341, 7.3293, 7.3399, 7.3349, 7.3444, 7.3419, 7.3372, 7.3457, 7.3863, 7.3827, 7.3788, 7.3741, 7.3737, 7.3717, 7.3677, 7.3654, 7.3742, 7.3702, 7.3667, 7.365, 7.3603, 7.3697, 7.3786, 7.3757, 7.3841, 7.3799, 7.3753, 7.3723, 7.3697, 7.3653, 7.3607, 7.3578, 7.3553, 7.3536, 7.3619, 7.36, 7.3601, 7.3579, 7.3542, 7.3503, 7.3716, 7.3809, 7.376, 7.3857, 7.3839, 7.3802, 7.3766, 7.3843, 7.3806, 7.3769, 7.374, 7.3831, 7.3783, 7.3757, 7.3834, 7.3801, 7.3784, 7.3742, 7.3826, 7.3819, 7.3803, 7.3796, 7.3753, 7.3713, 7.399, 7.3959, 7.4033, 7.4103, 7.406, 7.4167, 7.4244, 7.4213, 7.4168, 7.4133, 7.41, 7.4075, 7.4143, 7.4129, 7.4207, 7.4549, 7.4508, 7.4465, 7.4449, 7.4523, 7.4479, 7.4553, 7.4563, 7.4527, 7.4525, 7.4502, 7.4503, 7.4481, 7.4448, 7.4522, 7.4532, 7.4613, 7.4521, 7.4482, 7.4681, 7.469, 7.476, 7.4734, 7.4767, 7.4736, 7.4695, 7.4699, 7.5003, 7.5079, 7.504, 7.5116, 7.5081, 7.5184, 7.5172, 7.5154, 7.5115, 7.5104, 7.5075, 7.5211, 7.5182, 7.5154, 7.5112, 7.5073, 7.516, 7.5147, 7.5124, 7.5092, 7.5059, 7.5068, 7.5071, 7.5061, 7.5027, 7.5003, 7.4973, 7.494, 7.4904, 7.5001, 7.4975, 7.4942, 7.4912, 7.4874, 7.4834, 7.4904, 7.4864, 7.4932, 7.4902, 7.4879, 7.4856, 7.4816, 7.4893, 7.4958, 7.4925, 7.489, 7.4886, 7.485, 7.4826, 7.4787, 7.4844, 7.4902, 7.4975, 7.4942, 7.5014, 7.5083, 7.507, 7.5033, 7.4995, 7.4962, 7.4925, 7.4888, 7.4861, 7.4933, 7.4907, 7.487, 7.4847, 7.491, 7.4878, 7.4848, 7.4814, 7.4821, 7.4791, 7.4758, 7.4721, 7.4787, 7.4752, 7.4715, 7.4706, 7.4669, 7.4633, 7.4697, 7.4672, 7.4637, 7.4608, 7.4574, 7.4542, 7.4511, 7.4474, 7.4453, 7.4435, 7.4416, 7.4399, 7.4371, 7.4339, 7.4312, 7.4366, 7.4336, 7.4481, 7.4464, 7.4436, 7.4417, 7.4391, 7.437, 7.4339, 7.4325, 7.431, 7.4288, 7.426, 7.4315, 7.428, 7.4339, 7.4307, 7.4294, 7.4354, 7.434, 7.4307, 7.4279, 7.4255, 7.4228, 7.428, 7.426, 7.4226, 7.4191, 7.4165, 7.4215, 7.412, 7.4026, 7.3995, 7.3972, 7.3943, 7.3916, 7.3898, 7.3889, 7.4041, 7.4014, 7.3986, 7.404, 7.4013, 7.3983, 7.4224, 7.4305, 7.4287, 7.4256, 7.4224, 7.4197, 7.4253, 7.4231, 7.4201, 7.417, 7.4228, 7.4219, 7.4203, 7.4191, 7.4182, 7.4155, 7.4258, 7.4243, 7.4295, 7.4264, 7.4235, 7.4218, 7.4272, 7.4255, 7.4241, 7.4294, 7.4264, 7.4239, 7.4284, 7.4262, 7.4318, 7.4295, 7.4272, 7.4359, 7.434, 7.4387, 7.4362, 7.434, 7.4315, 7.4306, 7.4277, 7.4248, 7.4223, 7.4276, 7.4331, 7.4384, 7.4375, 7.435, 7.4318, 7.429, 7.4284, 7.4336, 7.4333, 7.4304, 7.4288, 7.4341, 7.4392, 7.4559, 7.453, 7.4508, 7.4491, 7.4665, 7.4712, 7.4689, 7.4684, 7.4661, 7.4642, 7.4614, 7.4598, 7.4646, 7.4619, 7.4677, 7.4659, 7.4639, 7.4616, 7.4596, 7.4642, 7.4953, 7.4938, 7.4923, 7.4911, 7.4888, 7.4865, 7.4777, 7.4758, 7.4807, 7.4849, 7.4985, 7.496, 7.4943, 7.4917, 7.4894, 7.4871, 7.4853, 7.4825, 7.48, 7.4784, 7.476, 7.4734, 7.4779, 7.4754, 7.4731, 7.4703, 7.4751, 7.4723, 7.4773, 7.4751, 7.4724, 7.4719, 7.4711, 7.4693, 7.4672, 7.4664, 7.4644, 7.4623, 7.46, 7.4663, 7.4667, 7.4647, 7.4627, 7.4787, 7.4764, 7.4737, 7.4711, 7.4696, 7.4669, 7.4661, 7.4635, 7.4621, 7.4629, 7.4612, 7.4589, 7.4565, 7.4612, 7.4597, 7.4575, 7.4697, 7.4685, 7.4673, 7.4654, 7.4786, 7.4717, 7.4698, 7.4888, 7.5005, 7.4978, 7.4953, 7.4936, 7.4986, 7.5031, 7.5009, 7.5007, 7.5055, 7.5038, 7.503, 7.5072, 7.5064, 7.5036, 7.5015, 7.4988, 7.4962, 7.4934, 7.4973, 7.4952, 7.4995, 7.497, 7.4943, 7.4939, 7.4912, 7.4884, 7.4863, 7.4838, 7.4878, 7.4919, 7.4902, 7.4878, 7.4865, 7.4846, 7.4823, 7.4804, 7.4846, 7.4824, 7.4863, 7.4898, 7.4873, 7.4858, 7.485, 7.4833, 7.4808, 7.479, 7.478, 7.4771, 7.4762, 7.4742, 7.4722, 7.4722, 7.4707, 7.463, 7.4614, 7.4596, 7.4573, 7.4557, 7.4539, 7.4587, 7.4626, 7.4609, 7.4654, 7.4697, 7.4676, 7.4667, 7.4651, 7.4692, 7.468, 7.4666, 7.4657, 7.4634, 7.4613, 7.4606, 7.4649, 7.4695, 7.467, 7.4645, 7.4626, 7.4613, 7.4649, 7.4628, 7.4607, 7.4585, 7.4562, 7.4537, 7.4578, 7.4566, 7.4556, 7.4545, 7.4589, 7.4571, 7.4617, 7.4653, 7.4639, 7.4686, 7.4662, 7.4637, 7.4625, 7.4604, 7.4592, 7.457, 7.4548, 7.4587, 7.4636, 7.467, 7.4651, 7.4626, 7.4613, 7.4629, 7.4571, 7.4553, 7.4541, 7.4577, 7.4614, 7.4656, 7.4646, 7.4695, 7.4679, 7.4669, 7.4645, 7.4626, 7.4619, 7.4613, 7.4596, 7.4655, 7.4634, 7.4628, 7.462, 7.4601, 7.4644, 7.4685, 7.4677, 7.4656, 7.4643, 7.4622, 7.46, 7.4638, 7.4618, 7.4607, 7.4592, 7.4585, 7.4625, 7.4612, 7.4592, 7.4572, 7.4552, 7.4537, 7.4516, 7.4495, 7.4537, 7.4524, 7.4503, 7.449, 7.4475, 7.4455, 7.4445, 7.4483, 7.4463, 7.4441, 7.444, 7.4428, 7.4409, 7.439, 7.4373, 7.4361, 7.4342, 7.4327, 7.4374, 7.4364, 7.4412, 7.4399, 7.4384, 7.4432, 7.4416, 7.4399, 7.4383, 7.4366, 7.4354, 7.4337, 7.432, 7.4298, 7.4285, 7.428, 7.4266, 7.4309, 7.4297, 7.4286, 7.4272, 7.4262, 7.4249, 7.4235, 7.4276, 7.4258, 7.4301, 7.4286, 7.4279, 7.4271, 7.4264, 7.4243, 7.4226, 7.4264, 7.4258, 7.4237, 7.4224, 7.421, 7.4195, 7.4192, 7.4186, 7.4166, 7.4254, 7.4248, 7.424, 7.4224, 7.4209, 7.419, 7.417, 7.4154, 7.4197, 7.4182, 7.4174, 7.4158, 7.4137, 7.4127, 7.4114, 7.4153, 7.4142, 7.4129, 7.4167, 7.4155, 7.4199, 7.4188, 7.4172, 7.421, 7.4189, 7.4173, 7.4224, 7.4263, 7.4294, 7.4335, 7.4325, 7.4313, 7.4349, 7.4329, 7.431, 7.4292, 7.4279, 7.4315, 7.4296, 7.4329, 7.4313, 7.4293, 7.4283, 7.4277, 7.4259, 7.4239, 7.4219, 7.4205, 7.4198, 7.4183, 7.4178, 7.4211, 7.4193, 7.4177, 7.417, 7.416, 7.42, 7.418, 7.4162, 7.4145, 7.4129, 7.4113, 7.4098, 7.4084, 7.4067, 7.406, 7.4042, 7.4028, 7.4076, 7.4063, 7.4044, 7.4026, 7.4006, 7.4039, 7.4033, 7.4067, 7.4099, 7.4083, 7.4064, 7.4062, 7.4049, 7.4044, 7.4025, 7.4061, 7.4063, 7.405, 7.4042, 7.4028, 7.4013, 7.3996, 7.3986, 7.3973, 7.3964, 7.3947, 7.3934, 7.3915, 7.3951, 7.3937, 7.392, 7.391, 7.3945, 7.3926, 7.3911, 7.3913, 7.3903, 7.3895, 7.388, 7.3863, 7.3848, 7.3829, 7.3834, 7.3816, 7.3797, 7.3796, 7.378, 7.3763, 7.3748, 7.3735, 7.3826, 7.3814, 7.3801, 7.3787, 7.377, 7.3756, 7.3741, 7.3771, 7.3758, 7.3753, 7.3736, 7.3879, 7.3865, 7.3847, 7.383, 7.3822, 7.3805, 7.3837, 7.3821, 7.3854, 7.3836, 7.3821, 7.4004, 7.3988, 7.4017, 7.4002, 7.3984, 7.3926, 7.3911, 7.3892, 7.3922, 7.3953, 7.3946, 7.3929, 7.3911, 7.3905, 7.39, 7.389, 7.3881, 7.3868, 7.386, 7.3892, 7.3875, 7.3906, 7.3895, 7.388, 7.3865, 7.3851, 7.3834, 7.3822, 7.3808, 7.3792, 7.3779, 7.3764, 7.3746, 7.3735, 7.3719, 7.3747, 7.3734, 7.3718, 7.3709, 7.3738, 7.3721, 7.3703, 7.3695, 7.3686, 7.367, 7.3656, 7.3687, 7.367, 7.3661, 7.3688, 7.3717, 7.3701, 7.3702, 7.3689, 7.3676, 7.3662, 7.3648, 7.3641, 7.3628, 7.3625, 7.3615, 7.3599, 7.3595, 7.3588, 7.3575, 7.3564, 7.3644, 7.3587, 7.358, 7.3609, 7.3601, 7.3595, 7.3587, 7.3569, 7.3606, 7.3594, 7.3581, 7.3568, 7.3559, 7.3547, 7.3534, 7.3579, 7.3567, 7.3552, 7.3537, 7.3524, 7.3552, 7.359, 7.358, 7.3563, 7.3592, 7.3618, 7.3601, 7.3587, 7.3578, 7.3611, 7.3602, 7.359, 7.3575, 7.3564, 7.3551, 7.3534, 7.3524, 7.3519, 7.3506, 7.3493, 7.3525, 7.3512, 7.3497, 7.3484, 7.3471, 7.3456, 7.3448, 7.3439, 7.3429, 7.3418, 7.3408, 7.3395, 7.3385, 7.3375, 7.339, 7.3488, 7.3565, 7.355, 7.3581, 7.3575, 7.3565, 7.3577, 7.3614, 7.3603, 7.3611, 7.3655, 7.3655, 7.3651, 7.3644, 7.3632, 7.3624, 7.3612, 7.3595, 7.3585, 7.358, 7.3564, 7.3555, 7.354, 7.3526, 7.3511, 7.35, 7.3491, 7.3484, 7.3521, 7.3512, 7.3539, 7.3536, 7.3483, 7.3474, 7.3465, 7.3461, 7.3451, 7.3442, 7.3469, 7.3496, 7.3487, 7.3481, 7.347, 7.3457, 7.3443, 7.3432, 7.3424, 7.3421, 7.3449, 7.3435, 7.3467, 7.3456, 7.3453, 7.3482, 7.3467, 7.3459, 7.3445, 7.3436, 7.3464, 7.3458, 7.3448, 7.3437, 7.3424, 7.3415, 7.3411, 7.34, 7.3385, 7.3373, 7.3399, 7.339, 7.3375, 7.3363, 7.3351, 7.3337, 7.3328, 7.3314, 7.3304, 7.33, 7.3289, 7.3281, 7.327, 7.3302, 7.3295, 7.3287, 7.3316, 7.3341, 7.3368, 7.3353, 7.3341, 7.3334, 7.332, 7.3347, 7.3341, 7.3334, 7.3322, 7.3309, 7.3333, 7.3325, 7.3317, 7.3313, 7.3339, 7.3325, 7.3311, 7.3297, 7.3331, 7.332, 7.3306, 7.3333, 7.332, 7.3308, 7.3301, 7.3286, 7.3286, 7.3271, 7.3257, 7.3243, 7.3233, 7.3226, 7.3218, 7.3204, 7.3195, 7.3192, 7.3216, 7.3209, 7.3234, 7.3259, 7.3258, 7.3252, 7.3237, 7.3229, 7.3214, 7.321, 7.3236, 7.3221, 7.3206, 7.3194, 7.318, 7.3166, 7.3164, 7.3155, 7.318, 7.3166, 7.3152, 7.3145, 7.3136, 7.3124, 7.3146, 7.3139, 7.3125, 7.3111, 7.31, 7.3087, 7.3073, 7.314, 7.3126, 7.3129, 7.3124, 7.3192, 7.3182, 7.3168, 7.3156, 7.3143, 7.317, 7.3166, 7.3197, 7.3203, 7.3213, 7.3257, 7.3286, 7.3278, 7.3267, 7.3333, 7.3334, 7.3325, 7.3312, 7.3336, 7.3334, 7.333, 7.3319, 7.3321, 7.331, 7.3297, 7.3323, 7.3314, 7.3342, 7.3336, 7.3322, 7.3308, 7.3303, 7.3295, 7.3284, 7.3314, 7.3304, 7.3332, 7.3324, 7.3316, 7.3435, 7.3434, 7.3421, 7.3413, 7.3403, 7.3392, 7.3381, 7.3373, 7.3361, 7.3385, 7.3381, 7.346, 7.3525, 7.3518, 7.3505, 7.3507, 7.3531, 7.3555, 7.3548, 7.3538, 7.3533, 7.356, 7.3549, 7.3538, 7.3532, 7.3529, 7.3522, 7.351, 7.3503, 7.3531, 7.3519, 7.3505, 7.3496, 7.3484, 7.3475, 7.3464, 7.3459, 7.3453, 7.3478, 7.3467, 7.3462, 7.3449, 7.3437, 7.3433, 7.3497, 7.349, 7.3494, 7.3482, 7.3474, 7.3476, 7.3463, 7.3456, 7.3442, 7.3436, 7.3427, 7.3419, 7.3409, 7.3405, 7.3395, 7.342, 7.3413, 7.3436, 7.3423, 7.342, 7.3437, 7.3428, 7.3415, 7.3405, 7.3394, 7.3385, 7.3374, 7.3368, 7.336, 7.3348, 7.3371, 7.3394, 7.3381, 7.3368, 7.3361, 7.3387, 7.3375, 7.3362, 7.3349, 7.3371, 7.3358, 7.3346, 7.3332, 7.3352, 7.3349, 7.3373, 7.3361, 7.3348, 7.3337, 7.3331, 7.3325, 7.3315, 7.3308, 7.3295, 7.3283, 7.3281, 7.3276, 7.3274, 7.3265, 7.3287, 7.3282, 7.3276, 7.3269, 7.3261, 7.3249, 7.3243, 7.3231, 7.3225, 7.3213, 7.3203, 7.3191, 7.3185, 7.3208, 7.3202, 7.3189, 7.3183, 7.3172, 7.3163, 7.3152, 7.3139, 7.3129, 7.3167, 7.3244, 7.327, 7.3295, 7.332, 7.3309, 7.3296, 7.3312, 7.3302, 7.3301, 7.3292, 7.328, 7.3267, 7.3262, 7.3249, 7.3269, 7.3258, 7.325, 7.3273, 7.3262, 7.3284, 7.3276, 7.3297, 7.3285, 7.3281, 7.3286, 7.3274, 7.3264, 7.3255, 7.3244, 7.3232, 7.3219, 7.321, 7.3202, 7.3195, 7.3219, 7.3218, 7.3206, 7.3197, 7.3189, 7.3183, 7.3242, 7.3238, 7.323, 7.3226, 7.3214, 7.3207, 7.3201, 7.3191, 7.3194, 7.3188, 7.3184, 7.3174, 7.3165, 7.3193, 7.3184, 7.3173, 7.3167, 7.3193, 7.316, 7.3151, 7.3175, 7.3165, 7.316, 7.3154, 7.3147, 7.3139, 7.3139, 7.3129, 7.312, 7.3116, 7.314, 7.3128, 7.3159, 7.3146, 7.3167, 7.3158, 7.3183, 7.3177, 7.3198, 7.319, 7.3178, 7.3173, 7.3161, 7.3183, 7.3171, 7.3167, 7.3155, 7.3146, 7.3167, 7.3157, 7.3145, 7.3133, 7.312, 7.3107, 7.3102, 7.309, 7.3084, 7.3078, 7.3065, 7.3081, 7.307, 7.3061, 7.3048, 7.304, 7.3017, 7.3037, 7.3107, 7.3107, 7.3097, 7.3097, 7.3088, 7.3108, 7.3102, 7.3096, 7.3084, 7.3077, 7.3069, 7.3087, 7.3111, 7.3102, 7.3092, 7.3085, 7.3104, 7.3092, 7.3081, 7.3069, 7.3061, 7.3054, 7.3042, 7.3033, 7.3025, 7.3017, 7.301, 7.3005, 7.2996, 7.2986, 7.3013, 7.304, 7.3032, 7.3058, 7.305, 7.3046, 7.3038, 7.303, 7.3052, 7.3042, 7.3031, 7.3019, 7.3011, 7.3001, 7.2991, 7.298, 7.2973, 7.2966, 7.2956, 7.2944, 7.297, 7.2962, 7.2983, 7.2973, 7.2963, 7.2954, 7.2943, 7.2962, 7.2952, 7.2976, 7.2968, 7.2959, 7.2948, 7.2939, 7.2931, 7.292, 7.291, 7.2929, 7.2949, 7.2971, 7.296, 7.2982, 7.2971, 7.2961, 7.2949, 7.294, 7.2935, 7.2928, 7.2923, 7.2915, 7.2933, 7.2954, 7.2966, 7.296, 7.2952, 7.2943, 7.2933, 7.2951, 7.2951, 7.2943, 7.2964, 7.2955, 7.2946, 7.2938, 7.2932, 7.2925, 7.2925, 7.2919, 7.2908, 7.2906, 7.2898, 7.2891, 7.2881, 7.2875, 7.2866, 7.2866, 7.2887, 7.2881, 7.2872, 7.2893, 7.2882, 7.2873, 7.2867, 7.2889, 7.2908, 7.2899, 7.289, 7.2879, 7.287, 7.2861, 7.2884, 7.2873, 7.2867, 7.2862, 7.2853, 7.2843, 7.2833, 7.2823, 7.2814, 7.2803, 7.2828, 7.2847, 7.2845, 7.2838, 7.2829, 7.2851, 7.2842, 7.2836, 7.2827, 7.2823, 7.2823, 7.2812, 7.2803, 7.2793, 7.2787, 7.2779, 7.2771, 7.2763, 7.2757, 7.2755, 7.275, 7.2745, 7.2735, 7.2758, 7.2754, 7.2743, 7.2733, 7.2725, 7.2718, 7.2715, 7.2706, 7.2698, 7.275, 7.2747, 7.2738, 7.273, 7.2723, 7.2722, 7.2717, 7.2742, 7.2764, 7.2757, 7.2747, 7.2739, 7.273, 7.2721, 7.2714, 7.2703, 7.2698, 7.2689, 7.268, 7.2671, 7.2669, 7.2665, 7.2656, 7.2651, 7.2644, 7.2635, 7.2638, 7.2659, 7.2652, 7.2645, 7.2635, 7.2631, 7.2628, 7.2646, 7.2643, 7.2636, 7.2655, 7.2651, 7.2646, 7.2636, 7.2628, 7.2618, 7.2608, 7.2599, 7.2592, 7.2615, 7.2605, 7.2625, 7.2617, 7.2608, 7.2598, 7.2591, 7.2585, 7.2608, 7.26, 7.2594, 7.2585, 7.261, 7.2632, 7.2627, 7.2618, 7.2612, 7.2632, 7.2624, 7.2622, 7.2614, 7.2607, 7.2598, 7.2591, 7.2584, 7.2582, 7.2573, 7.2567, 7.2568, 7.2561, 7.2553, 7.2548, 7.2543, 7.2537, 7.2533, 7.2523, 7.2514, 7.2533, 7.2559, 7.2549, 7.2541, 7.2534, 7.2525, 7.2516, 7.2506, 7.2529, 7.2523, 7.2516, 7.2535, 7.2526, 7.2547, 7.2513, 7.2506, 7.2497, 7.2489, 7.2482, 7.2488, 7.2479, 7.247, 7.2462, 7.2461, 7.2458, 7.2453, 7.2449, 7.2441, 7.2437, 7.2432, 7.2424, 7.2444, 7.2436, 7.2429, 7.2422, 7.2415, 7.2414, 7.2405, 7.2398, 7.239, 7.2381, 7.2373, 7.2371, 7.2373, 7.2364, 7.2383, 7.2389, 7.2383, 7.2378, 7.2377, 7.2371, 7.2365, 7.2359, 7.2355, 7.2348, 7.2367, 7.2358, 7.235, 7.236000000000001, 7.2387, 7.2407, 7.2399, 7.239, 7.2407, 7.2402, 7.2393, 7.2387, 7.2379, 7.2373, 7.2364, 7.2354, 7.2352, 7.2344, 7.2392, 7.2386, 7.2378, 7.2374, 7.2432, 7.2497, 7.2493, 7.2513, 7.2504, 7.2497, 7.2492, 7.2486, 7.2479, 7.2476, 7.2471, 7.2464, 7.2457, 7.2453, 7.2473, 7.2469, 7.2464, 7.2461, 7.2471000000000005, 7.248100000000001, 7.2541, 7.254, 7.2585, 7.2579, 7.2571, 7.2592, 7.2584, 7.2575, 7.2566, 7.2585, 7.2577, 7.2597, 7.2589, 7.2584, 7.2575, 7.2566, 7.2557, 7.255, 7.2542, 7.2536, 7.2531, 7.2525, 7.2518, 7.2511, 7.2482, 7.2604, 7.2602, 7.2595, 7.2587, 7.2603, 7.2594, 7.2586, 7.2581, 7.2573, 7.2564, 7.2558, 7.2549, 7.254, 7.2536, 7.2529, 7.2522, 7.2513, 7.2506, 7.2526, 7.2519, 7.251, 7.2529, 7.2522, 7.2519, 7.2514, 7.251, 7.2503, 7.2494, 7.2486, 7.2484, 7.2478, 7.2452, 7.2447, 7.2438, 7.2433, 7.2429, 7.2421, 7.2427, 7.2422, 7.2417, 7.241, 7.2401, 7.2421, 7.2417, 7.2409, 7.2404, 7.2396, 7.2392, 7.2384, 7.2376, 7.2371, 7.2365, 7.2356, 7.2354, 7.235, 7.2346, 7.2338, 7.2329, 7.2324, 7.2315, 7.2306, 7.2308, 7.2302, 7.2295, 7.2312, 7.2309, 7.2329, 7.2349, 7.2346, 7.2339, 7.2336, 7.2329, 7.2323, 7.2343, 7.2401, 7.2394, 7.2387, 7.2385, 7.2381, 7.2401, 7.2393, 7.2385, 7.2379, 7.2373, 7.2347, 7.2341, 7.2353, 7.2372, 7.237, 7.2387, 7.2404, 7.2397, 7.2391, 7.2383, 7.24, 7.2396, 7.239, 7.2381, 7.2372, 7.239, 7.2382, 7.2375, 7.2367, 7.2361, 7.2377, 7.2394, 7.2386, 7.2386, 7.238, 7.2373, 7.2364, 7.2355, 7.2348, 7.2341, 7.2335, 7.2332, 7.2334, 7.2327, 7.2324, 7.2341, 7.2333, 7.2325, 7.2324, 7.2317, 7.2333, 7.2332, 7.2328, 7.2327, 7.2319, 7.2313, 7.2328, 7.2319, 7.2313, 7.2312, 7.232200000000001, 7.2315, 7.2309, 7.2342, 7.2336, 7.2329, 7.2322, 7.2314, 7.2405, 7.2413, 7.2414, 7.2406, 7.2401, 7.2397, 7.2413, 7.2429, 7.2422, 7.2441, 7.246, 7.2457, 7.2453, 7.2446, 7.2442, 7.2437, 7.2429, 7.2445, 7.2436, 7.2427, 7.2421, 7.2412, 7.2413, 7.2408, 7.2402, 7.2394, 7.2387, 7.2383, 7.2386, 7.2379, 7.2372, 7.237, 7.2367, 7.2362, 7.2356, 7.2363, 7.2358, 7.2351, 7.2327, 7.2338, 7.2332, 7.2312, 7.2305, 7.23, 7.2315, 7.2311, 7.2304, 7.2297, 7.2364, 7.2383, 7.2375, 7.2372, 7.2364, 7.2358, 7.2353, 7.2351, 7.2344, 7.234, 7.2339, 7.2335, 7.2329, 7.2332, 7.2323, 7.2317, 7.2314, 7.231, 7.2325, 7.2317, 7.2314, 7.2332, 7.2327, 7.2326, 7.2323, 7.2316, 7.2309, 7.2329, 7.2321, 7.2313, 7.2328, 7.23, 7.2292, 7.2284, 7.2301, 7.2295, 7.2305, 7.2297, 7.2293, 7.2309, 7.2326, 7.2322, 7.2318, 7.2333, 7.2328, 7.2333, 7.2325, 7.2366, 7.2384, 7.2385, 7.238, 7.2376, 7.2373, 7.2366, 7.2363, 7.2391, 7.2385, 7.2378, 7.2417, 7.241, 7.2404, 7.242, 7.2436, 7.2428, 7.2423, 7.2415, 7.2409, 7.2406, 7.2398, 7.2415, 7.2406, 7.2401, 7.2394, 7.2434, 7.2427, 7.242, 7.2411, 7.2408, 7.2409, 7.241, 7.2457, 7.2449, 7.2443, 7.2445, 7.2441, 7.2433, 7.2429, 7.2422, 7.2397, 7.2389, 7.2408, 7.2402, 7.2394, 7.239, 7.2385, 7.2376, 7.237, 7.2367, 7.2381, 7.2374, 7.2388, 7.2385, 7.2381, 7.2376, 7.2373, 7.2389, 7.2385, 7.2382, 7.2379, 7.2371, 7.2388, 7.2382, 7.2374, 7.2392, 7.2391, 7.2383, 7.2402, 7.2432, 7.2427, 7.2419, 7.242, 7.2467, 7.2465, 7.2481, 7.2481, 7.2479, 7.2473, 7.249, 7.2506, 7.2502, 7.2527, 7.2524, 7.2516, 7.2535, 7.2539, 7.2535, 7.2528, 7.2522, 7.2541, 7.2538, 7.2517, 7.2509, 7.2504, 7.2497, 7.2512, 7.2504, 7.2499, 7.2492, 7.2487, 7.2479, 7.2472, 7.2467, 7.2459, 7.2477, 7.2471, 7.2486, 7.2484, 7.2479, 7.2471, 7.2463, 7.2455, 7.2449, 7.2443, 7.2507, 7.2501, 7.2499, 7.2493, 7.2488, 7.2483, 7.2481, 7.2473, 7.2469, 7.2468, 7.2463, 7.2459, 7.2451, 7.2449, 7.2446, 7.2448, 7.2464, 7.2462, 7.2457, 7.2449, 7.2443, 7.2437, 7.2431, 7.2425, 7.242, 7.2412, 7.2405, 7.2399, 7.2393, 7.2393, 7.2386, 7.238, 7.2397, 7.239, 7.2404, 7.24, 7.2392, 7.2388, 7.238, 7.2379, 7.2393, 7.2386, 7.24, 7.2395, 7.2389, 7.2382, 7.2377, 7.2377, 7.237, 7.2365, 7.2364, 7.236, 7.2354, 7.2355, 7.2373, 7.2367, 7.2362, 7.2354, 7.2369, 7.2365, 7.2359, 7.2351, 7.2345, 7.2319, 7.232900000000001, 7.2327, 7.2341, 7.235, 7.2347, 7.2362, 7.2355, 7.2347, 7.2346, 7.2342, 7.2338, 7.2332, 7.233, 7.2322, 7.2318, 7.2314, 7.2311, 7.2305, 7.2308, 7.2304, 7.2297, 7.2292, 7.2285, 7.2279, 7.2272, 7.2268, 7.2261, 7.2275, 7.2273, 7.2265, 7.2258, 7.2254, 7.2247, 7.2242, 7.2236, 7.2255, 7.2248, 7.2241, 7.2238, 7.2231, 7.2227, 7.2222, 7.2218, 7.2213, 7.2211, 7.2206, 7.2203, 7.2201, 7.2228, 7.2223, 7.2219, 7.2213, 7.2206, 7.22, 7.2195, 7.2211, 7.2204, 7.2201, 7.2196, 7.2192, 7.2186, 7.2181, 7.2196, 7.2191, 7.2186, 7.218, 7.2172, 7.2167, 7.2161, 7.2156, 7.2172, 7.2165, 7.2157, 7.215, 7.2146, 7.2144, 7.2141, 7.2166, 7.2159, 7.2157, 7.2151, 7.2167, 7.2162, 7.2158, 7.2152, 7.2167, 7.2161, 7.2177, 7.2171, 7.218100000000001, 7.2173, 7.2187, 7.218, 7.2175, 7.2171, 7.2165, 7.2163, 7.2157, 7.215, 7.2145, 7.214, 7.214, 7.2138, 7.2135, 7.2138, 7.2133, 7.2151, 7.2147, 7.2139, 7.2133, 7.2127, 7.212, 7.2116, 7.2112, 7.2111, 7.2126, 7.214, 7.2156, 7.2152, 7.2145, 7.2141, 7.2135, 7.2129, 7.2124, 7.2117, 7.2111, 7.2107, 7.212, 7.2116, 7.2113, 7.2128, 7.2124, 7.2119, 7.2133, 7.2131, 7.2145, 7.216, 7.2154, 7.2149, 7.2146, 7.2145, 7.214, 7.2134, 7.2148, 7.2189, 7.2204, 7.2216, 7.221, 7.2207, 7.2203, 7.22, 7.2194, 7.2208, 7.2203, 7.2217, 7.2213, 7.2208, 7.2201, 7.2195, 7.2191, 7.2185, 7.2201, 7.2195, 7.2213, 7.222300000000001, 7.2221, 7.2218, 7.2233, 7.2228, 7.2246, 7.2256, 7.2272, 7.2269, 7.2279, 7.2294, 7.2296, 7.229, 7.2283, 7.2276, 7.2276, 7.2271, 7.2284, 7.2297, 7.2292, 7.2307, 7.2301, 7.2313, 7.2308, 7.2307, 7.2301, 7.2294, 7.2289, 7.2283, 7.2297, 7.2315, 7.2309, 7.2303, 7.2297, 7.2313, 7.2308, 7.2302, 7.2299, 7.2293, 7.2308, 7.2303, 7.2296, 7.229, 7.2305, 7.2321, 7.2316, 7.2312, 7.2328, 7.2323, 7.232, 7.234, 7.2335, 7.235, 7.2368, 7.2364, 7.2361, 7.2355, 7.2348, 7.2364, 7.2377, 7.2393, 7.2387, 7.2384, 7.2383, 7.2379, 7.2373, 7.2366, 7.2365, 7.2359, 7.2357, 7.2373, 7.2373, 7.2371, 7.2366, 7.2362, 7.2377, 7.2373, 7.2369, 7.2364, 7.2377, 7.2371, 7.2371, 7.2364, 7.2361, 7.2373, 7.237, 7.2384, 7.2379, 7.2376, 7.2372, 7.2367, 7.2372, 7.2389, 7.2384, 7.2426, 7.2419, 7.2416, 7.2463, 7.2459, 7.2455, 7.2454, 7.2453, 7.2448, 7.2442, 7.2439, 7.2434, 7.2435, 7.2432, 7.2428, 7.2423, 7.242, 7.2414, 7.2414, 7.2407, 7.2402, 7.2399, 7.2394, 7.2391, 7.2406, 7.242, 7.2417, 7.2431, 7.2425, 7.242, 7.2413, 7.2415, 7.2452, 7.2448, 7.2443, 7.2459, 7.2473, 7.2469, 7.2486, 7.2482, 7.2476, 7.2472, 7.2468, 7.2461, 7.2475, 7.2469, 7.2462, 7.2441, 7.2435, 7.2428, 7.2422, 7.2417, 7.2411, 7.241, 7.2404, 7.2417, 7.241, 7.2404, 7.2399, 7.2395, 7.2389, 7.2388, 7.2401, 7.2396, 7.2412, 7.2407, 7.2404, 7.2405, 7.2399, 7.2392, 7.2389, 7.2386, 7.2381, 7.2374, 7.2371, 7.2366, 7.2362, 7.236, 7.2354, 7.2367, 7.2365, 7.2378, 7.2371, 7.2365, 7.236, 7.2354, 7.2366, 7.2381, 7.2377, 7.2374, 7.2369, 7.2364, 7.2357, 7.2352, 7.2348, 7.2342, 7.2336, 7.2329, 7.2322, 7.2328, 7.2334, 7.2328, 7.2323, 7.2336, 7.2332, 7.2329, 7.2326, 7.2324, 7.2324, 7.2318, 7.2312, 7.231, 7.2307, 7.2301, 7.2298, 7.2293, 7.2288, 7.2285, 7.2299, 7.2293, 7.2291, 7.2304, 7.2298, 7.2295, 7.229, 7.2284, 7.2278, 7.2271, 7.2269, 7.2263, 7.2259, 7.2255, 7.2249, 7.2247, 7.2243, 7.2238, 7.2275, 7.2288, 7.2291, 7.2291, 7.2285, 7.2282, 7.2262, 7.2257, 7.2252, 7.2247, 7.2242, 7.2235, 7.2249, 7.225, 7.2245, 7.2243, 7.2237, 7.2235, 7.2249, 7.2263, 7.2257, 7.2269, 7.2265, 7.2258, 7.2253, 7.225, 7.2247, 7.2241, 7.2236, 7.2229, 7.2228, 7.223800000000001, 7.2237, 7.2273, 7.2288, 7.2287, 7.2283, 7.2277, 7.2274, 7.2271, 7.2285, 7.2279, 7.2275, 7.2273, 7.2267, 7.2262, 7.226, 7.2254, 7.2249, 7.2247, 7.2246, 7.2241, 7.2237, 7.2232, 7.2243, 7.2239, 7.2234, 7.2229, 7.2231, 7.2232, 7.223, 7.2244, 7.2239, 7.2238, 7.2233, 7.2228, 7.2221, 7.2216, 7.2209, 7.2203, 7.2198, 7.2208000000000006, 7.2221, 7.2234, 7.2231, 7.2245, 7.224, 7.2252, 7.2249, 7.2243, 7.2256, 7.2269, 7.2264, 7.2257, 7.2252, 7.2248, 7.2245, 7.2257, 7.2263, 7.2258, 7.2255, 7.2272, 7.2277, 7.2271, 7.2265, 7.2262, 7.2259, 7.2253, 7.2248, 7.2241, 7.2253, 7.2251, 7.2246, 7.224, 7.2253, 7.2249, 7.2247, 7.2244, 7.224, 7.2235, 7.223, 7.2228, 7.2224, 7.223400000000001, 7.2248, 7.2242, 7.2238, 7.2233, 7.2227, 7.2222, 7.2219, 7.2215, 7.2208, 7.2203, 7.2213, 7.2226, 7.2223, 7.222, 7.2233, 7.2227, 7.2223, 7.2219, 7.2232, 7.224200000000001, 7.2239, 7.2234, 7.2229, 7.2224, 7.2246, 7.2251, 7.2264, 7.2277, 7.2272, 7.2269, 7.2268, 7.2262, 7.2256, 7.2271, 7.2265, 7.226, 7.2255, 7.2267, 7.2264, 7.2277, 7.229, 7.229, 7.2284, 7.2281, 7.2293, 7.2293, 7.2288, 7.2286, 7.2299, 7.2297, 7.2309, 7.2306, 7.2302, 7.2315, 7.2295, 7.2294, 7.2288, 7.2284, 7.2278, 7.2273, 7.2267, 7.2265, 7.2277, 7.229, 7.2287, 7.2282, 7.2261, 7.2272, 7.2265, 7.226, 7.2254, 7.225, 7.2244, 7.2242, 7.224, 7.2235, 7.2232, 7.2226, 7.2238, 7.225, 7.2246, 7.2243, 7.2237, 7.2234, 7.2249, 7.2245, 7.2241, 7.2235, 7.2245, 7.224, 7.2235, 7.223, 7.2242, 7.2236, 7.2233, 7.2227, 7.2224, 7.222, 7.2214, 7.2208, 7.2202, 7.22, 7.2213, 7.2207, 7.2203, 7.22, 7.2195, 7.2208, 7.2203, 7.2197, 7.221, 7.2206, 7.2202, 7.2197, 7.2193, 7.219, 7.2185, 7.2197, 7.2209, 7.2203, 7.22, 7.2195, 7.2192, 7.2188, 7.2188, 7.2183, 7.2179, 7.2173, 7.2171, 7.2166, 7.2184, 7.2196, 7.2192, 7.2187, 7.2184, 7.2179, 7.2192, 7.2188, 7.2187, 7.2182, 7.2177, 7.2174, 7.2168, 7.2162, 7.2158, 7.2153, 7.217, 7.217, 7.2183, 7.2182, 7.2179, 7.2175, 7.2171, 7.2167, 7.2181, 7.2181, 7.2193, 7.2187, 7.2183, 7.2182, 7.218, 7.2177, 7.2177, 7.2172, 7.2168, 7.2166, 7.2161, 7.2182, 7.2195, 7.2175, 7.2169, 7.2163, 7.2177, 7.2172, 7.2166, 7.2163, 7.2191, 7.227, 7.2273, 7.2286, 7.2285, 7.2347, 7.2342, 7.237, 7.2382, 7.2394, 7.2376, 7.2358, 7.234, 7.2338, 7.2385, 7.2379, 7.2406, 7.2418, 7.2432, 7.2428, 7.2422, 7.2419, 7.2413, 7.2409, 7.2404, 7.2402, 7.2396, 7.2393, 7.2388, 7.2393, 7.2422, 7.2416, 7.2412, 7.2408, 7.2404, 7.2401, 7.2397, 7.2393, 7.239, 7.2404, 7.2398, 7.2393, 7.2407, 7.2419, 7.2416, 7.2416, 7.2419, 7.2431, 7.2426, 7.2437, 7.2448, 7.2449, 7.2446, 7.2444, 7.2457, 7.2453, 7.2449, 7.2446, 7.2441, 7.2437, 7.2431, 7.2431, 7.2426, 7.2406, 7.2401, 7.2398, 7.2409, 7.2404, 7.2399, 7.2409, 7.2438, 7.2436, 7.2433, 7.2427, 7.2422, 7.2417, 7.2412, 7.2424, 7.2419, 7.2413, 7.2425, 7.2419, 7.2414, 7.2425, 7.2421, 7.2418, 7.2415, 7.2409, 7.2419, 7.2416, 7.2427, 7.2424, 7.2439, 7.2435, 7.2432, 7.2433, 7.243, 7.2427, 7.2425, 7.2423, 7.2421, 7.2415, 7.2409, 7.2404, 7.2398, 7.2394, 7.239, 7.2384, 7.2395, 7.2389, 7.2385, 7.2381, 7.2378, 7.239, 7.2386, 7.2381, 7.2376, 7.2376, 7.237, 7.2365, 7.2359, 7.2359, 7.2357, 7.2352, 7.2346, 7.2342, 7.2338, 7.2335, 7.2348, 7.2346, 7.2342, 7.2339, 7.2335, 7.2333, 7.2346, 7.2342, 7.234, 7.234, 7.2335, 7.2348, 7.2356, 7.2367, 7.2362, 7.2373, 7.2367, 7.2373, 7.237, 7.2366, 7.2377, 7.2388, 7.2383, 7.2395, 7.2408, 7.2421, 7.2416, 7.2413, 7.2412, 7.2408, 7.2405, 7.2401, 7.2413, 7.2441, 7.2435, 7.2432, 7.243, 7.2426, 7.2424, 7.2421, 7.2426, 7.2421, 7.242, 7.243, 7.2425, 7.2422, 7.2417, 7.2413, 7.2425, 7.2421, 7.2418, 7.2414, 7.2411, 7.2406, 7.24, 7.2394, 7.2389, 7.2401, 7.2399, 7.2394, 7.2391, 7.2386, 7.2384, 7.238, 7.2375, 7.2371, 7.2368, 7.2366, 7.2362, 7.2359, 7.2354, 7.2353, 7.2349, 7.2344, 7.2355, 7.2354, 7.2352, 7.2363, 7.236, 7.2359, 7.2356, 7.2352, 7.2347, 7.2356, 7.2353, 7.2348, 7.2343, 7.2339, 7.2334, 7.2344, 7.2357, 7.2351, 7.2346, 7.2342, 7.2338, 7.2335, 7.2333, 7.2344, 7.2342, 7.2353, 7.2365, 7.2362, 7.2359, 7.2373, 7.2399, 7.2395, 7.2392, 7.2387, 7.2382, 7.2377, 7.2372, 7.2366, 7.2361, 7.2371, 7.2367, 7.2363, 7.2359, 7.2353, 7.2348, 7.2342, 7.234, 7.2338, 7.2365, 7.2376, 7.2372, 7.2414, 7.241, 7.2408, 7.2402, 7.2397, 7.2392, 7.2389, 7.2384, 7.2393, 7.2394, 7.2391, 7.239, 7.2393, 7.2391, 7.2416, 7.2415, 7.2427, 7.2457, 7.2472, 7.2467, 7.2481, 7.2477, 7.2473, 7.2468, 7.2463, 7.2459, 7.2444, 7.2448, 7.2443, 7.2439, 7.2435, 7.2448, 7.2447, 7.2447, 7.2447, 7.2459, 7.2456, 7.2457, 7.2452, 7.2447, 7.2442, 7.2454, 7.2453, 7.2448, 7.2446, 7.2443, 7.2443, 7.2455, 7.2452, 7.2448, 7.2459, 7.2456, 7.2453, 7.2454, 7.245, 7.2446, 7.2458, 7.2454, 7.2466, 7.2464, 7.2445, 7.244, 7.2435, 7.2431, 7.2426, 7.2426, 7.2423, 7.2433, 7.2429, 7.2439, 7.2434, 7.2431, 7.2428, 7.2424, 7.2419, 7.2414, 7.2409, 7.242, 7.2431, 7.2428, 7.244, 7.2442, 7.2437, 7.2435, 7.2433, 7.2429, 7.2482, 7.2479, 7.2476, 7.2472, 7.2483, 7.248, 7.2478, 7.2474, 7.2469, 7.2469, 7.2465, 7.2479, 7.2477, 7.2472, 7.2484, 7.2496, 7.2508, 7.2518, 7.2515, 7.251, 7.2505, 7.25, 7.2495, 7.2491, 7.2488, 7.2486, 7.2485, 7.2481, 7.2477, 7.2474, 7.2474, 7.247, 7.2466, 7.246, 7.2458, 7.2453, 7.245, 7.2447, 7.2444, 7.2442, 7.2455, 7.245, 7.2446, 7.2442, 7.2454, 7.245, 7.2461, 7.2456, 7.2452, 7.2447, 7.2443, 7.2441, 7.2441, 7.2438, 7.2437, 7.2433, 7.2431, 7.2428, 7.2426, 7.2439, 7.2455, 7.2455, 7.2485, 7.2516, 7.2512, 7.2511, 7.2506, 7.2504, 7.2514, 7.251, 7.2508, 7.2504, 7.25, 7.2494, 7.249, 7.2487, 7.2482, 7.2493, 7.2491, 7.2485, 7.248, 7.2491, 7.2502, 7.2498, 7.2493, 7.2489, 7.2499, 7.2495, 7.249, 7.2488, 7.2482, 7.248, 7.2476, 7.2503, 7.2514, 7.2509, 7.2584, 7.2579, 7.2589, 7.259, 7.2592, 7.2589, 7.2599, 7.2593, 7.2589, 7.26, 7.2613, 7.2623, 7.2633, 7.263, 7.2641, 7.2639, 7.2636, 7.2631, 7.2626, 7.2622, 7.2618, 7.2616, 7.2627, 7.2624, 7.262, 7.2618, 7.2617, 7.2646, 7.2643, 7.264, 7.2635, 7.2631, 7.2626, 7.2636, 7.2631, 7.2626, 7.2621, 7.2616, 7.2611, 7.2608, 7.2619, 7.2616, 7.2611, 7.2606, 7.2602, 7.2599, 7.2594, 7.2592, 7.2587, 7.2582, 7.2578, 7.2588, 7.2597, 7.2594, 7.2591, 7.2587, 7.2598, 7.2608, 7.2617, 7.2612, 7.2608, 7.2603, 7.2609, 7.2606, 7.2617, 7.2612, 7.2622, 7.2618, 7.2627, 7.2624, 7.262, 7.267, 7.2665, 7.266, 7.2655, 7.2666, 7.2664, 7.2661, 7.2672, 7.2668, 7.2665, 7.266, 7.2656, 7.2667, 7.2662, 7.2672, 7.2667, 7.2663, 7.2674, 7.2685, 7.2711, 7.2722, 7.272, 7.2715, 7.2713, 7.2709, 7.2707, 7.2703, 7.27, 7.2714, 7.2725, 7.2721, 7.2733, 7.2745, 7.2741, 7.2739, 7.2735, 7.2731, 7.2743, 7.274, 7.275, 7.2746, 7.2743, 7.2744, 7.2742, 7.2739, 7.2736, 7.2731, 7.2729, 7.273, 7.2726, 7.2724, 7.2719, 7.2715, 7.2725, 7.2721, 7.2717, 7.2712, 7.2709, 7.2719, 7.2714, 7.274, 7.2749, 7.2744, 7.274, 7.2735, 7.274, 7.2741, 7.2738, 7.2737, 7.2732, 7.2733, 7.2731, 7.2727, 7.2737, 7.2732, 7.2742, 7.2738, 7.2749, 7.2745, 7.274, 7.2736, 7.2734, 7.2744, 7.2739, 7.2734, 7.2729, 7.2725, 7.272, 7.2715, 7.2712, 7.2708, 7.2704, 7.2703, 7.2699, 7.2695, 7.269, 7.2687, 7.274, 7.2735, 7.2733, 7.2729, 7.2727, 7.2725, 7.2721, 7.2732, 7.2727, 7.2725, 7.2721, 7.2731, 7.2728, 7.2725, 7.2735, 7.2731, 7.2715, 7.2712, 7.2707, 7.2705, 7.2701, 7.2696, 7.2693, 7.2691, 7.2689, 7.2687, 7.2682, 7.2678, 7.2675, 7.269, 7.2688, 7.2685, 7.2686, 7.2684, 7.268, 7.2675, 7.2674, 7.2672, 7.2669, 7.2666, 7.2664, 7.2664, 7.2662, 7.2661, 7.2658, 7.2653, 7.2666, 7.2679, 7.2675, 7.2685, 7.2682, 7.2682, 7.2682, 7.268, 7.2677, 7.2676, 7.2676, 7.2673, 7.2669, 7.2665, 7.2663, 7.2674, 7.2686, 7.2684, 7.2693, 7.2689, 7.2728, 7.2772, 7.2768, 7.2764, 7.2775, 7.2773, 7.2769, 7.2783, 7.2784, 7.2795, 7.279, 7.2788, 7.2787, 7.2788, 7.2785, 7.278, 7.279, 7.2789, 7.2784, 7.2782, 7.2795, 7.2792, 7.2788, 7.2788, 7.2786, 7.2771, 7.2766, 7.2765, 7.2763, 7.2759, 7.2755, 7.2751, 7.2746, 7.2742, 7.2751, 7.2761, 7.277, 7.2765, 7.2775, 7.277, 7.2765, 7.276, 7.2769, 7.2766, 7.2761, 7.2756, 7.2752, 7.2763, 7.2759, 7.2755, 7.275, 7.2746, 7.2741, 7.2737, 7.2752, 7.2747, 7.2771, 7.2767, 7.2763, 7.2772, 7.2767, 7.2766, 7.2761, 7.2776, 7.2761, 7.2759, 7.2757, 7.2756, 7.2753, 7.2762, 7.276, 7.2755, 7.2752, 7.275, 7.2746, 7.2741, 7.2752, 7.2747, 7.2742, 7.2739, 7.2734, 7.2729, 7.2725, 7.2721, 7.2736, 7.2734, 7.2731, 7.2728, 7.2725, 7.272, 7.2715, 7.2724, 7.2732, 7.2727, 7.2725, 7.2734, 7.2729, 7.2725, 7.272, 7.2717, 7.2726, 7.2723, 7.272, 7.2716, 7.27, 7.2696, 7.2707, 7.2703, 7.2701, 7.271, 7.2707, 7.2702, 7.2698, 7.2695, 7.2692, 7.2703, 7.2698, 7.2698, 7.2696, 7.2693, 7.2703, 7.2714, 7.271, 7.2706, 7.2704, 7.2702, 7.2698, 7.2693, 7.2688, 7.2698, 7.2695, 7.2691, 7.2686, 7.2681, 7.2678, 7.2676, 7.2674, 7.2673, 7.2669, 7.2706, 7.2705, 7.2701, 7.2711, 7.2707, 7.2707, 7.2704, 7.2701, 7.2698, 7.2706, 7.2703, 7.2702, 7.2697, 7.2693, 7.269, 7.2686, 7.2683, 7.268, 7.2704, 7.27, 7.2695, 7.2692, 7.2688, 7.2683, 7.2669, 7.2666, 7.2663, 7.2658, 7.2666, 7.2662, 7.2659, 7.2656, 7.2651, 7.266, 7.2656, 7.266, 7.2657, 7.2655, 7.2669, 7.2679, 7.2675, 7.267, 7.2666, 7.2661, 7.2658, 7.2654, 7.2649, 7.2644, 7.2641, 7.2638, 7.264, 7.265, 7.2646, 7.2641, 7.265, 7.2645, 7.2644, 7.2644, 7.2643, 7.2653, 7.2649, 7.2645, 7.2668, 7.2679, 7.2691, 7.269, 7.2676, 7.2662, 7.2671, 7.2667, 7.2664, 7.2662, 7.2657, 7.2653, 7.269, 7.2686, 7.2684, 7.2683, 7.269, 7.2685, 7.2681, 7.2711, 7.2711, 7.2707, 7.2707, 7.2702, 7.2714, 7.2711, 7.272, 7.2715, 7.271, 7.2705, 7.27, 7.2697, 7.2693, 7.2702, 7.2699, 7.2695, 7.2691, 7.2689, 7.2685, 7.268, 7.2678, 7.2676, 7.2672, 7.2658, 7.2655, 7.2651, 7.2651, 7.2647, 7.2658, 7.2653, 7.2664, 7.2661, 7.2659, 7.2655, 7.2652, 7.2647, 7.2642, 7.2652, 7.2648, 7.2657, 7.2655, 7.265, 7.2647, 7.2643, 7.2639, 7.2635, 7.263, 7.2626, 7.2621, 7.2619, 7.2617, 7.2614, 7.2622, 7.262, 7.2618, 7.2615, 7.2612, 7.261, 7.2607, 7.2592, 7.2585, 7.2581, 7.2576, 7.2573, 7.2588, 7.2585, 7.2581, 7.2576, 7.2584, 7.2582, 7.2578, 7.2575, 7.2572, 7.2558, 7.2554, 7.2552, 7.2548, 7.255, 7.255, 7.2572, 7.2568, 7.2566, 7.2562, 7.2558, 7.2555, 7.2541, 7.2528, 7.2526, 7.2522, 7.2518, 7.2502, 7.2489, 7.25, 7.2497, 7.2496, 7.2493, 7.2502, 7.2497, 7.2493, 7.2489, 7.2486, 7.2486, 7.2489, 7.25, 7.2509, 7.2507, 7.2505, 7.2501, 7.2498, 7.2494, 7.2505, 7.2503, 7.2526, 7.2524, 7.2521, 7.2519, 7.2517, 7.2513, 7.2509, 7.2519, 7.2515, 7.2513, 7.2509, 7.2518, 7.2505, 7.2516, 7.2514, 7.2513, 7.2509, 7.2504, 7.2515, 7.254, 7.2548, 7.2547, 7.255, 7.257, 7.2578, 7.2575, 7.2574, 7.2572, 7.2577, 7.2585, 7.2581, 7.2566, 7.2561, 7.2573, 7.2569, 7.2565, 7.2573, 7.2568, 7.2564, 7.2559, 7.2556, 7.2565, 7.2586, 7.2595, 7.2591, 7.2589, 7.2587, 7.2597, 7.2592, 7.2589, 7.2588, 7.2585, 7.2596, 7.2593, 7.259, 7.2587, 7.2585, 7.2582, 7.2582, 7.2578, 7.2576, 7.2572, 7.2581, 7.2577, 7.2586, 7.2585, 7.2582, 7.2581, 7.259, 7.2586, 7.2582, 7.2584, 7.258, 7.2577, 7.2586, 7.2584, 7.2579, 7.2575, 7.2575, 7.2573, 7.2583, 7.2582, 7.2592, 7.2588, 7.2575, 7.2562, 7.2559, 7.2557, 7.2553, 7.2551, 7.2549, 7.2545, 7.2533, 7.2532, 7.2529, 7.2525, 7.2534, 7.253, 7.2527, 7.2524, 7.2524, 7.2519, 7.2516, 7.2525, 7.2521, 7.2519, 7.2516, 7.2511, 7.2507, 7.2502, 7.2511, 7.2508, 7.2505, 7.2501, 7.2497, 7.2494, 7.249, 7.2486, 7.2482, 7.248, 7.2489, 7.2486, 7.2482, 7.2478, 7.2475, 7.2474, 7.247, 7.2467, 7.2463, 7.2462, 7.2459, 7.2458, 7.2455, 7.2452, 7.2439, 7.2435, 7.2434, 7.2442, 7.2439, 7.2435, 7.2431, 7.2427, 7.2424, 7.242, 7.2417, 7.2413, 7.2421, 7.2419, 7.2416, 7.2414, 7.2412, 7.2408, 7.2406, 7.2402, 7.2398, 7.2395, 7.2391, 7.2388, 7.2384, 7.2393, 7.2389, 7.2386, 7.2382, 7.2379, 7.2388, 7.2424, 7.242, 7.2416, 7.2413, 7.2409, 7.2407, 7.2403, 7.2399, 7.2399, 7.2395, 7.2394, 7.239, 7.2388, 7.2385, 7.2383, 7.2392, 7.2391, 7.2389, 7.2387, 7.2383, 7.2379, 7.2388, 7.2373, 7.2383, 7.2393, 7.239, 7.2389, 7.2386, 7.2415, 7.2411, 7.2411, 7.2408, 7.2405, 7.2402, 7.2399, 7.2395, 7.2392, 7.239, 7.2402, 7.2399, 7.2399, 7.2395, 7.2393, 7.2389, 7.2387, 7.2384, 7.2381, 7.2391, 7.2387, 7.2398, 7.2394, 7.2391, 7.2388, 7.2385, 7.2422, 7.242, 7.2421, 7.2418, 7.2427, 7.2423, 7.2452, 7.2451, 7.2449, 7.2446, 7.2444, 7.2447, 7.2445, 7.2454, 7.245, 7.2446, 7.2443, 7.2439, 7.2437, 7.2433, 7.2442, 7.2438, 7.2438, 7.2437, 7.2433, 7.243, 7.2429, 7.2427, 7.2423, 7.2421, 7.2417, 7.2416, 7.2425, 7.2445, 7.2441, 7.245, 7.2446, 7.2444, 7.2441, 7.2437, 7.2445, 7.2441, 7.2438, 7.2425, 7.2434, 7.2434, 7.2433, 7.2429, 7.2429, 7.2426, 7.2423, 7.2419, 7.2417, 7.2413, 7.2402, 7.24, 7.2397, 7.2395, 7.2403, 7.2402, 7.2398, 7.2398, 7.2397, 7.2394, 7.2394, 7.2402, 7.2411, 7.2407, 7.2404, 7.2402, 7.2399, 7.2408, 7.2404, 7.2403, 7.2399, 7.241, 7.2407, 7.2405, 7.2402, 7.24, 7.2398, 7.2396, 7.2392, 7.2389, 7.2386, 7.2383, 7.2381, 7.239, 7.2398, 7.2398, 7.2407, 7.2404, 7.2402, 7.241, 7.2408, 7.2404, 7.2413, 7.241, 7.2419, 7.2418, 7.2414, 7.2423, 7.242, 7.2421, 7.2419, 7.2415, 7.2412, 7.2422, 7.2421, 7.2418, 7.2432, 7.2449, 7.2446, 7.2456, 7.2452, 7.245, 7.245, 7.247, 7.2481, 7.2478, 7.2483, 7.2481, 7.2489, 7.2486, 7.2482, 7.2481, 7.248, 7.2479, 7.2477, 7.2487, 7.2495, 7.2505, 7.2505, 7.2502, 7.2488, 7.2485, 7.2495, 7.2502, 7.2498, 7.2507, 7.2494, 7.2492, 7.2491, 7.2487, 7.2485, 7.2481, 7.2477, 7.2477, 7.2475, 7.2484, 7.2482, 7.2493, 7.2489, 7.2476, 7.2487, 7.2483, 7.2479, 7.2475, 7.2471, 7.2479, 7.2501, 7.2497, 7.2508, 7.2506, 7.2514, 7.251, 7.2518, 7.2516, 7.2514, 7.2512, 7.2508, 7.2519, 7.2538, 7.2536, 7.2524, 7.2521, 7.2519, 7.2518, 7.2514, 7.2511, 7.2508, 7.2504, 7.2501, 7.2498, 7.2495, 7.2495, 7.2492, 7.2492, 7.249, 7.2499, 7.2509, 7.2508, 7.2505, 7.2512, 7.2508, 7.2504, 7.2501, 7.2498, 7.2505, 7.2501, 7.2499, 7.2507, 7.2504, 7.25, 7.2498, 7.2506, 7.2504, 7.25, 7.2497, 7.2493, 7.2501, 7.2498, 7.2494, 7.2494, 7.2492, 7.249, 7.2487, 7.2484, 7.248, 7.2489, 7.2497, 7.2494, 7.2492, 7.2488, 7.2489, 7.2486, 7.2484, 7.2505, 7.2502, 7.2499, 7.2496, 7.2494, 7.2494, 7.2504, 7.2502, 7.2499, 7.2509, 7.2505, 7.2514, 7.2528, 7.2527, 7.2527, 7.2524, 7.2521, 7.2518, 7.2515, 7.2524, 7.2523, 7.252, 7.2517, 7.2514, 7.25, 7.2486, 7.2473, 7.2469, 7.2468, 7.2478, 7.2476, 7.2484, 7.248, 7.2476, 7.2474, 7.247, 7.2468, 7.2466, 7.2464, 7.2462, 7.2459, 7.2457, 7.2453, 7.2462, 7.2459, 7.2457, 7.2465, 7.2462, 7.246, 7.2456, 7.2442, 7.2451, 7.2448, 7.2434, 7.2431, 7.2428, 7.2426, 7.2435, 7.2432, 7.2429, 7.2438, 7.2447, 7.2456, 7.2464, 7.2461, 7.2458, 7.2455, 7.2464, 7.2461, 7.2447, 7.2443, 7.245, 7.2457, 7.2458, 7.2456, 7.2453, 7.2461, 7.246, 7.246, 7.2457, 7.2465, 7.2463, 7.2461, 7.2457, 7.2465, 7.2461, 7.2447, 7.2445, 7.2442, 7.244, 7.2437, 7.2434, 7.2431, 7.2427, 7.2425, 7.2422, 7.2419, 7.2427, 7.2434, 7.2454, 7.2452, 7.2449, 7.2459, 7.2456, 7.2452, 7.246, 7.2458, 7.2466, 7.2462, 7.2449, 7.2446, 7.2443, 7.2451, 7.2447, 7.2443, 7.2451, 7.2449, 7.2447, 7.2444, 7.2432, 7.2428, 7.2425, 7.2449, 7.2458, 7.2454, 7.2451, 7.2448, 7.2456, 7.2448, 7.2436, 7.2433, 7.2441, 7.245, 7.2446, 7.2434, 7.243, 7.2438, 7.2446, 7.2454, 7.2462, 7.247, 7.2467, 7.2464, 7.246, 7.2457, 7.2453, 7.2461, 7.2469, 7.2476, 7.2472, 7.2468, 7.2479, 7.2476, 7.2476, 7.2475, 7.2478, 7.2476, 7.2484, 7.2491, 7.2487, 7.2486, 7.2493, 7.249, 7.2488, 7.2485, 7.2482, 7.2513, 7.2511, 7.251, 7.2507, 7.2504, 7.25, 7.2498, 7.2494, 7.2492, 7.2489, 7.2486, 7.2484, 7.2481, 7.2478, 7.2474, 7.2471, 7.2469, 7.2477, 7.2474, 7.2472, 7.2469, 7.2468, 7.2467, 7.2464, 7.2461, 7.2458, 7.2466, 7.2464, 7.2461, 7.246, 7.2469, 7.2465, 7.2473, 7.2482, 7.248, 7.2477, 7.2474, 7.2483, 7.248, 7.2487, 7.2485, 7.2481, 7.2478, 7.2475, 7.2472, 7.2469, 7.2465, 7.2473, 7.2469, 7.2466, 7.2474, 7.2471, 7.2468, 7.2465, 7.2462, 7.2458, 7.2454, 7.2441, 7.2439, 7.2436, 7.2434, 7.243, 7.2427, 7.2437, 7.2436, 7.2436, 7.2433, 7.2429, 7.2426, 7.2434, 7.243, 7.2426, 7.2423, 7.242, 7.2418, 7.2415, 7.2413, 7.2421, 7.2417, 7.2416, 7.2414, 7.2411, 7.2409, 7.2407, 7.2406, 7.2407, 7.2404, 7.2401, 7.2399, 7.2397, 7.2394, 7.239, 7.2398, 7.2406, 7.2404, 7.2413, 7.2422, 7.2419, 7.2416, 7.2413, 7.2414, 7.2421, 7.2418, 7.2417, 7.2425, 7.2438, 7.2445, 7.2442, 7.244, 7.2442, 7.2439, 7.2436, 7.2445, 7.2453, 7.245, 7.2458, 7.2455, 7.2463, 7.2461, 7.2457, 7.2456, 7.2454, 7.2464, 7.2473, 7.2471, 7.247, 7.2467, 7.2466, 7.2474, 7.2471, 7.2467, 7.2464, 7.2461, 7.2459, 7.2459, 7.2455, 7.2452, 7.245, 7.2457, 7.2455, 7.2444, 7.2442, 7.2441, 7.2437, 7.2433, 7.2429, 7.2438, 7.2436, 7.2433, 7.2445, 7.2454, 7.245, 7.2447, 7.2443, 7.2442, 7.244, 7.2436, 7.2423, 7.241, 7.2408, 7.2419, 7.2407, 7.2403, 7.2412, 7.2419, 7.2426, 7.2435, 7.2432, 7.2429, 7.2436, 7.2445, 7.2433, 7.2448, 7.2445, 7.2452, 7.2449, 7.2448, 7.2445, 7.2453, 7.245, 7.2458, 7.2455, 7.2452, 7.2449, 7.2449, 7.2445, 7.2442, 7.2444, 7.2442, 7.2431, 7.2438, 7.2446, 7.2442, 7.243, 7.2446, 7.2443, 7.2442, 7.2439, 7.2437, 7.2433, 7.2421, 7.241, 7.2407, 7.2394, 7.239, 7.239, 7.2387, 7.2388, 7.2386, 7.2382, 7.238, 7.2378, 7.238, 7.2378, 7.2386, 7.2383, 7.2381, 7.2378, 7.2387, 7.2384, 7.2383, 7.2382, 7.2379, 7.2377, 7.2373, 7.238, 7.2392, 7.2401, 7.2398, 7.2395, 7.2393, 7.2389, 7.2387, 7.2383, 7.238, 7.2378, 7.2375, 7.2371, 7.2368, 7.2386, 7.2383, 7.238, 7.238, 7.2377, 7.2373, 7.2373, 7.2376, 7.2364, 7.2352, 7.2341, 7.2328, 7.2325, 7.2322, 7.2319, 7.2317, 7.2314, 7.2318, 7.2315, 7.2315, 7.2312, 7.2309, 7.2317, 7.2314, 7.2311, 7.2308, 7.2304, 7.2302, 7.2302, 7.231, 7.2317, 7.2324, 7.2321, 7.2317, 7.2315, 7.2312, 7.2308, 7.2307, 7.2304, 7.2302, 7.2309, 7.2306, 7.2304, 7.2303, 7.231, 7.2306, 7.2304, 7.2303, 7.2311, 7.231, 7.2306, 7.2303, 7.2299, 7.2295, 7.2302, 7.23, 7.2298, 7.2294, 7.229, 7.2289, 7.2286, 7.2283, 7.2281, 7.2277, 7.2283, 7.2291, 7.2298, 7.2294, 7.2291, 7.2288, 7.2284, 7.2283, 7.2281, 7.2278, 7.2274, 7.2271, 7.2268, 7.2266, 7.2265, 7.2265, 7.2262, 7.2258, 7.2266, 7.2264, 7.2261, 7.225, 7.2238, 7.2226, 7.2234, 7.2241, 7.2238, 7.2235, 7.2232, 7.2229, 7.2226, 7.2225, 7.2213, 7.2211, 7.2219, 7.2221, 7.2219, 7.2229, 7.2238, 7.2238, 7.2235, 7.2234, 7.2231, 7.2235, 7.2234, 7.2242, 7.2239, 7.2247, 7.2243, 7.224, 7.2238, 7.2236, 7.2245, 7.2253, 7.225, 7.2257, 7.2264, 7.2263, 7.2261, 7.2271, 7.2269, 7.2266, 7.2274, 7.2273, 7.2269, 7.2259, 7.2294, 7.2336, 7.2324, 7.2327, 7.2334, 7.2341, 7.2348, 7.2347, 7.2346, 7.2344, 7.2342, 7.233, 7.2327, 7.2324, 7.2321, 7.233, 7.2339, 7.2338, 7.2336, 7.2333, 7.233, 7.2327, 7.2324, 7.2321, 7.2318, 7.2326, 7.2323, 7.232, 7.2319, 7.2326, 7.2325, 7.2322, 7.2321, 7.2319, 7.2317, 7.2315, 7.2312, 7.2309, 7.2306, 7.2314, 7.2312, 7.231, 7.2317, 7.2314, 7.2311, 7.2309, 7.2306, 7.2303, 7.23, 7.2297, 7.2296, 7.2293, 7.2289, 7.2277, 7.2276, 7.2269, 7.2266, 7.2273, 7.2281, 7.2277, 7.2273, 7.228, 7.2277, 7.2274, 7.227, 7.2269, 7.2265, 7.2263, 7.2271, 7.2261, 7.2259, 7.2256, 7.2254, 7.2253, 7.225, 7.2248, 7.2245, 7.2252, 7.224, 7.2237, 7.2234, 7.2231, 7.2228, 7.2225, 7.2222, 7.2218, 7.2216, 7.2213, 7.2219, 7.2219, 7.2216, 7.2203, 7.2199, 7.2195, 7.2192, 7.2189, 7.2187, 7.2183, 7.2182, 7.2181, 7.2179, 7.2176, 7.2173, 7.217, 7.2167, 7.2165, 7.2162, 7.2162, 7.217, 7.2168, 7.2166, 7.2164, 7.2161, 7.217, 7.2169, 7.2166, 7.2174, 7.2172, 7.2168, 7.2165, 7.2166, 7.2162, 7.217, 7.2167, 7.2164, 7.216, 7.2156, 7.2153, 7.2152, 7.216, 7.2157, 7.2156, 7.2154, 7.2151, 7.2159, 7.2157, 7.2155, 7.2164, 7.216, 7.2158, 7.2155, 7.2163, 7.2161, 7.2158, 7.2156, 7.2172, 7.2179, 7.2177, 7.2177, 7.2174, 7.2171, 7.2167, 7.2165, 7.2162, 7.2179, 7.2177, 7.2174, 7.2171, 7.2159, 7.2156, 7.2163, 7.216, 7.2159, 7.2155, 7.2152, 7.2151, 7.2149, 7.2138, 7.2135, 7.2133, 7.213, 7.2127, 7.2125, 7.2123, 7.2121, 7.2119, 7.2116, 7.2114, 7.2122, 7.2119, 7.2116, 7.2114, 7.2111, 7.2109, 7.2117, 7.2105, 7.2103, 7.2101, 7.2109, 7.2106, 7.2104, 7.2101, 7.2098, 7.2096, 7.2094, 7.2091, 7.2089, 7.2079, 7.2093, 7.2089, 7.2088, 7.2087, 7.2084, 7.2081, 7.2071, 7.2059, 7.2056, 7.2063, 7.2061, 7.2063, 7.206, 7.2056, 7.2064, 7.2061, 7.2058, 7.2057, 7.2054, 7.2052, 7.205, 7.2049, 7.2049, 7.2039, 7.2047, 7.2055, 7.2053, 7.2051, 7.2068, 7.2056, 7.2053, 7.2061, 7.2069, 7.2066, 7.2064, 7.2071, 7.206, 7.2059, 7.2067, 7.2064, 7.2061, 7.2059, 7.2057, 7.2066, 7.2063, 7.206, 7.2058, 7.2055, 7.2051, 7.2049, 7.2037, 7.2036, 7.2033, 7.204, 7.2037, 7.2037, 7.2034, 7.2043, 7.2049, 7.2058, 7.2056, 7.2063, 7.2052, 7.205, 7.2047, 7.2054, 7.2062, 7.2058, 7.2056, 7.2054, 7.2051, 7.2048, 7.2038, 7.2037, 7.2035, 7.2042, 7.204, 7.2037, 7.2033, 7.2031, 7.2028, 7.2027, 7.2024, 7.2059, 7.2058, 7.2057, 7.2055, 7.2055, 7.2064, 7.2061, 7.2058, 7.2057, 7.2055, 7.2053, 7.2051, 7.206, 7.2057, 7.2055, 7.2053, 7.2066, 7.2068, 7.2064, 7.2062, 7.206, 7.2058, 7.2055, 7.2063, 7.206, 7.2058, 7.2055, 7.2053, 7.2051, 7.205, 7.2057, 7.2056, 7.2053, 7.2051, 7.2048, 7.2055, 7.2052, 7.2052, 7.2049, 7.2046, 7.2054, 7.2052, 7.2064, 7.2062, 7.2059, 7.2057, 7.2065, 7.2073, 7.2081, 7.2079, 7.2075, 7.2073, 7.2071, 7.2071, 7.2068, 7.2077, 7.2084, 7.2081, 7.2078, 7.2077, 7.208, 7.2079, 7.2078, 7.2076, 7.2083, 7.2081, 7.2079, 7.2077, 7.2085, 7.2082, 7.2081, 7.2081, 7.2089, 7.2086, 7.2083, 7.2084, 7.2082, 7.2079, 7.2077, 7.2084, 7.2083, 7.2079, 7.2076, 7.2074, 7.2073, 7.207, 7.2068, 7.2066, 7.2063, 7.206, 7.2057, 7.2054, 7.2054, 7.2061, 7.2068, 7.2067, 7.2064, 7.2062, 7.2059, 7.2048, 7.2045, 7.2043, 7.2042, 7.2039, 7.2037, 7.2037, 7.2026, 7.2025, 7.2023, 7.202, 7.2017, 7.2025, 7.2033, 7.204, 7.2037, 7.2034, 7.2031, 7.2038, 7.2035, 7.2041, 7.2038, 7.2046, 7.2053, 7.2057, 7.2057, 7.2073, 7.2072, 7.2071, 7.2071, 7.2068, 7.2069, 7.2068, 7.2065, 7.2065, 7.2067, 7.2065, 7.2063, 7.2062, 7.206, 7.2058, 7.2055, 7.2063, 7.206, 7.2057, 7.2066, 7.2073, 7.207, 7.2067, 7.2064, 7.2061, 7.2051, 7.2044, 7.2041, 7.2047, 7.2044, 7.2043, 7.2051, 7.2049, 7.2046, 7.2053, 7.205, 7.2047, 7.2044, 7.2041, 7.2038, 7.2035, 7.2032, 7.2031, 7.2061, 7.2068, 7.2067, 7.2064, 7.207, 7.2068, 7.2065, 7.2062, 7.206, 7.2057, 7.2064, 7.2079, 7.2088, 7.2085, 7.2082, 7.2088, 7.2085, 7.2103, 7.2111, 7.2109, 7.211, 7.2109, 7.2115, 7.2112, 7.2109, 7.2107, 7.2104, 7.2102, 7.2108, 7.2115, 7.2112, 7.2113, 7.2113, 7.2122, 7.212, 7.2117, 7.2114, 7.2125, 7.2123, 7.212, 7.2118, 7.2115, 7.2112, 7.2111, 7.2118, 7.2115, 7.2114, 7.2112, 7.2109, 7.2107, 7.2104, 7.2092, 7.2091, 7.209, 7.2087, 7.2084, 7.2081, 7.208, 7.2086, 7.2086, 7.2083, 7.208, 7.2077, 7.2074, 7.2073, 7.2079, 7.2076, 7.2083, 7.208, 7.2078, 7.2075, 7.2073, 7.207, 7.2068, 7.2074, 7.2071, 7.2069, 7.2066, 7.2063, 7.2061, 7.2077, 7.2074, 7.2071, 7.2068, 7.2067, 7.2057, 7.2055, 7.2053, 7.2051, 7.2048, 7.2047, 7.2055, 7.2054, 7.2052, 7.2051, 7.2058, 7.2056, 7.2074, 7.2086, 7.2092, 7.2091, 7.2089, 7.2087, 7.2085, 7.2085, 7.2091, 7.2097, 7.2094, 7.2091, 7.2088, 7.2086, 7.2082, 7.208, 7.2087, 7.2086, 7.2103, 7.2102, 7.21, 7.2097, 7.2094, 7.2085, 7.2082, 7.2081, 7.2079, 7.2076, 7.2073, 7.207, 7.2067, 7.2064, 7.2061, 7.2068, 7.2057, 7.2046, 7.2053, 7.205, 7.2047, 7.2046, 7.2053, 7.2052, 7.2049, 7.2046, 7.2052, 7.2067, 7.2065, 7.2063, 7.2061, 7.2059, 7.2058, 7.2056, 7.2063, 7.206, 7.2057, 7.2054, 7.2052, 7.2049, 7.2047, 7.2045, 7.2042, 7.2039, 7.2028, 7.2038, 7.2037, 7.204700000000001, 7.2046, 7.2052, 7.205, 7.2048, 7.2047, 7.2046, 7.2043, 7.2041, 7.2038, 7.2035, 7.2033, 7.203, 7.2028, 7.2038, 7.2048000000000005, 7.2046, 7.2043, 7.204, 7.2037, 7.2045, 7.2042, 7.2039, 7.2045, 7.2043, 7.2042, 7.2039, 7.2036, 7.2062, 7.2069, 7.2077, 7.2093, 7.209, 7.2098, 7.2098, 7.2095, 7.2094, 7.2091, 7.2088, 7.2085, 7.2085, 7.2112, 7.211, 7.2107, 7.2104, 7.2111, 7.2109, 7.2107, 7.2108, 7.2126, 7.2126, 7.2123, 7.2122, 7.212, 7.2128, 7.2136, 7.2134, 7.2132, 7.213, 7.2129, 7.2127, 7.2125, 7.2122, 7.2121, 7.2119, 7.2118, 7.2116, 7.2116, 7.2124, 7.2122, 7.2121, 7.2129, 7.2127, 7.2129, 7.2126, 7.2124, 7.2114, 7.2114, 7.2111, 7.211, 7.2108, 7.2106, 7.2104, 7.2101, 7.2099, 7.2097, 7.2095, 7.2095, 7.2094, 7.2092, 7.21, 7.2097, 7.2095, 7.2093, 7.2102, 7.2102, 7.21, 7.2097, 7.2106, 7.2107, 7.2105, 7.2102, 7.2099, 7.2096, 7.2107, 7.2114, 7.2105, 7.2103, 7.21, 7.21, 7.2102, 7.2109, 7.2116, 7.2113, 7.2112, 7.212, 7.2128, 7.2125, 7.2132, 7.2131, 7.2137, 7.2144, 7.2142, 7.214, 7.2138, 7.2144, 7.2152, 7.215, 7.2157, 7.2164, 7.2171, 7.2169, 7.2177, 7.2184, 7.2182, 7.2181, 7.2181, 7.2181, 7.2181, 7.2178, 7.2176, 7.2173, 7.2171, 7.217, 7.2168, 7.2166, 7.2165, 7.2162, 7.2159, 7.2156, 7.2153, 7.2143, 7.2132, 7.2122, 7.212, 7.2118, 7.2116, 7.2114, 7.2114, 7.2111, 7.2112, 7.211, 7.2117, 7.2115, 7.2114, 7.2112, 7.2112, 7.2119, 7.2117, 7.2123, 7.2122, 7.2119, 7.2117, 7.2115, 7.2113, 7.2113, 7.2111, 7.2108, 7.2108, 7.2115, 7.2113, 7.2111, 7.2117, 7.2115, 7.2106, 7.2153, 7.2152, 7.215, 7.2148, 7.2147, 7.2148, 7.2149, 7.2146, 7.2144, 7.2143, 7.214, 7.2138, 7.2137, 7.2134, 7.2131, 7.2128, 7.2125, 7.2123, 7.2121, 7.2119, 7.2117, 7.2114, 7.2113, 7.2111, 7.2109, 7.2108, 7.2105, 7.2102, 7.21, 7.2106, 7.2104, 7.2094, 7.2092, 7.2089, 7.2087, 7.2093, 7.2092, 7.2092, 7.2091, 7.2098, 7.2095, 7.2093, 7.209, 7.2087, 7.2093, 7.2091, 7.208, 7.2077, 7.2076, 7.2082, 7.2079, 7.2081, 7.2079, 7.2077, 7.2075, 7.2073, 7.2071, 7.2069, 7.2059, 7.2048, 7.2038, 7.2027, 7.2017, 7.2014, 7.2012, 7.2018, 7.2015, 7.2012, 7.201, 7.2017, 7.2014, 7.2013, 7.202, 7.2026, 7.2023, 7.2029, 7.2027, 7.2025, 7.2024, 7.2022, 7.2023, 7.202, 7.2017, 7.2016, 7.2013, 7.201, 7.2008, 7.2013, 7.2023, 7.2021, 7.2019, 7.2016, 7.2015, 7.2012, 7.2009, 7.2008, 7.2006, 7.2006, 7.2006, 7.2004, 7.201, 7.2007, 7.2005, 7.2003, 7.2001, 7.1999, 7.1997, 7.1996, 7.1993, 7.201, 7.2007, 7.1998, 7.2004, 7.2002, 7.2, 7.1997, 7.1994, 7.1992, 7.1999, 7.1996, 7.1993, 7.199, 7.1988, 7.1985, 7.1983, 7.1974, 7.1972, 7.1971, 7.197, 7.1969, 7.1977, 7.1975, 7.1973, 7.1972, 7.197, 7.1977, 7.1974, 7.1972, 7.1978, 7.1985, 7.1984, 7.1982, 7.198, 7.1987, 7.1985, 7.1985, 7.1995000000000005, 7.1993, 7.2008, 7.2032, 7.2039, 7.2047, 7.2046, 7.2053, 7.2051, 7.2048, 7.2045, 7.2044, 7.2042, 7.204, 7.2038, 7.2038, 7.2046, 7.2052, 7.2051, 7.2049, 7.2047, 7.2045, 7.2047, 7.2054, 7.2051, 7.2048, 7.2045, 7.2045, 7.2051, 7.2048, 7.2046, 7.2045, 7.2044, 7.2056, 7.2053, 7.206, 7.2059, 7.2065, 7.2071, 7.2068, 7.2066, 7.2063, 7.206, 7.2057, 7.2055, 7.2061, 7.2077, 7.2084, 7.2082, 7.2079, 7.208, 7.2078, 7.2086, 7.2078, 7.2078, 7.2076, 7.2076, 7.2073, 7.208, 7.207, 7.206, 7.2051, 7.2058, 7.2056, 7.2054, 7.2063, 7.2054, 7.2052, 7.2049, 7.2046, 7.2043, 7.205, 7.2047, 7.2044, 7.2044, 7.2042, 7.2049, 7.2048, 7.2045, 7.2051, 7.2049, 7.2046, 7.2046, 7.2061, 7.206, 7.2057, 7.2056, 7.2053, 7.2051, 7.2057, 7.2055, 7.2054, 7.2044, 7.2041, 7.2038, 7.2037, 7.2037, 7.2027, 7.2025, 7.2027, 7.2026, 7.2023, 7.2013, 7.2022, 7.2019, 7.2016, 7.2014, 7.2013, 7.201, 7.2007, 7.2006, 7.2004, 7.2002, 7.2001, 7.1999, 7.1998, 7.1997, 7.1995, 7.1994, 7.1992, 7.1984, 7.1974, 7.1972, 7.1979, 7.1976, 7.1982, 7.1988, 7.1985, 7.1983, 7.1981, 7.1978, 7.1976, 7.1974, 7.1965, 7.1971, 7.1969, 7.1977, 7.1968, 7.1968, 7.1967, 7.1967, 7.1958, 7.1956, 7.1953, 7.1951, 7.1958, 7.1956, 7.1954, 7.1944, 7.1943, 7.194, 7.194, 7.1939, 7.1938, 7.1944, 7.1941, 7.1941, 7.1948, 7.1947, 7.1954, 7.1961, 7.1959, 7.1966, 7.1965, 7.1956, 7.1955, 7.1954, 7.1954, 7.1951, 7.1951, 7.1958, 7.1991, 7.1999, 7.2001, 7.2007, 7.2005, 7.2012, 7.2009, 7.2008, 7.2006, 7.2004, 7.2003, 7.2009, 7.2008, 7.2006, 7.2005, 7.2003, 7.2008, 7.2014, 7.2012, 7.201, 7.2016, 7.2014, 7.202, 7.2018, 7.2024, 7.2023, 7.2029, 7.2026, 7.2033, 7.2031, 7.2029, 7.2026, 7.2032, 7.203, 7.2028, 7.2018, 7.2016, 7.2005, 7.2004, 7.2003, 7.2, 7.1998, 7.1995, 7.1994, 7.1991, 7.1989, 7.1986, 7.1984, 7.1982, 7.1979, 7.1977, 7.1974, 7.1973, 7.197, 7.1968, 7.1967, 7.1965, 7.1962, 7.196, 7.1957, 7.1959, 7.1957, 7.1964, 7.1962, 7.1959, 7.1956, 7.1957, 7.1964, 7.1964, 7.1978, 7.1975, 7.1973, 7.197, 7.1968, 7.1966, 7.1965, 7.1963, 7.1961, 7.1959, 7.1958, 7.1956, 7.1963, 7.1969, 7.1975, 7.1981, 7.1979, 7.1984, 7.1983, 7.198, 7.1977, 7.1974, 7.1973, 7.1972, 7.1969, 7.1967, 7.1965, 7.1962, 7.1959, 7.1957, 7.1954, 7.1951, 7.1948, 7.1946, 7.1945, 7.1944, 7.1942, 7.194, 7.1946, 7.1943, 7.1942, 7.194, 7.1937, 7.194, 7.1938, 7.1938, 7.1936, 7.1942, 7.1948, 7.1946, 7.1944, 7.1942, 7.1942, 7.1941, 7.1939, 7.1947, 7.1944, 7.1942, 7.194, 7.194, 7.1938, 7.1951, 7.1958, 7.1975, 7.1982, 7.1976, 7.1988, 7.1986, 7.1987, 7.1997, 7.2004, 7.201, 7.2007, 7.2004, 7.2002, 7.1999, 7.2005, 7.2005, 7.2002, 7.1999, 7.1998, 7.1997, 7.1997, 7.1994, 7.1992, 7.1989, 7.1986, 7.1984, 7.1982, 7.1979, 7.1978, 7.1976, 7.1975, 7.198, 7.1978, 7.1976, 7.1973, 7.197, 7.1975, 7.1973, 7.1979, 7.1977, 7.1976, 7.1975, 7.1973, 7.197, 7.1967, 7.1965, 7.1971, 7.1968, 7.1965, 7.1963, 7.1961, 7.1967, 7.1964, 7.1965, 7.1962, 7.1963, 7.1962, 7.1959, 7.1957, 7.1955, 7.1954, 7.1961, 7.1967, 7.1965, 7.1972, 7.197, 7.1969, 7.1968, 7.1966, 7.1964, 7.197, 7.1969, 7.1968, 7.1967, 7.1965, 7.1963, 7.197, 7.1969, 7.1967, 7.1967, 7.1964, 7.1961, 7.1959, 7.1957, 7.1954, 7.1952, 7.1949, 7.1955, 7.1953, 7.1952, 7.1949, 7.1948, 7.1946, 7.1944, 7.1943, 7.194, 7.1939, 7.1937, 7.1934, 7.1933, 7.193, 7.1927, 7.1933, 7.1931, 7.1928, 7.1925, 7.1925, 7.1922, 7.1921, 7.1918, 7.1917, 7.1923, 7.192, 7.1918, 7.1915, 7.1921, 7.1927, 7.1934, 7.194, 7.1937, 7.1935, 7.1941, 7.1938, 7.1935, 7.1933, 7.194, 7.1938, 7.1937, 7.1935, 7.1934, 7.1934, 7.1932, 7.1929, 7.1928, 7.1934, 7.1932, 7.1938, 7.1937, 7.1943, 7.1941, 7.1941, 7.1938, 7.1935, 7.1938, 7.1935, 7.1932, 7.1929, 7.1927, 7.1926, 7.1932, 7.1932, 7.193, 7.1928, 7.1927, 7.1925, 7.1926, 7.1926, 7.1925, 7.1923, 7.1921, 7.193, 7.1943, 7.1941, 7.194, 7.1938, 7.1944, 7.1942, 7.1949, 7.1949, 7.1947, 7.1945, 7.1943, 7.1941, 7.1939, 7.1937, 7.1936, 7.1933, 7.1931, 7.1931, 7.1929, 7.1935, 7.1934, 7.1932, 7.1925, 7.1923, 7.1921, 7.1928, 7.1934, 7.1946, 7.1944, 7.1942, 7.194, 7.1946, 7.1943, 7.1942, 7.1951, 7.1949, 7.1955, 7.1958, 7.1956, 7.1962, 7.196, 7.196, 7.1969, 7.1967, 7.1964, 7.197, 7.1967, 7.1964, 7.1987, 7.1984, 7.199, 7.1996, 7.1995, 7.1992, 7.199, 7.1996, 7.2026, 7.2032, 7.2045, 7.2042, 7.204, 7.2037, 7.2042, 7.204, 7.2038, 7.2035, 7.2032, 7.2029, 7.2034, 7.2031, 7.2028, 7.2025, 7.2023, 7.2036, 7.2042, 7.2039, 7.2044, 7.2046, 7.2048, 7.2046, 7.2046, 7.2045, 7.2043, 7.2041, 7.2038, 7.2036, 7.2034, 7.2032, 7.203, 7.2028, 7.2027, 7.2026, 7.2023, 7.202, 7.202, 7.2019, 7.2016, 7.2014, 7.2011, 7.2009, 7.2001, 7.1999, 7.201, 7.2008, 7.2006, 7.2004, 7.2001, 7.2008, 7.2006, 7.2007, 7.2004, 7.1997, 7.2003, 7.2009, 7.2024, 7.2021, 7.2019, 7.2017, 7.2014, 7.2012, 7.201, 7.2007, 7.1997, 7.2003, 7.2, 7.1997, 7.1995, 7.1993, 7.1998, 7.2005, 7.2004, 7.2009, 7.2025, 7.2022, 7.2028, 7.2033, 7.2039, 7.2039, 7.2049, 7.2047, 7.2053, 7.2052, 7.2058, 7.2055, 7.2065, 7.2063, 7.2068, 7.2065, 7.2063, 7.2061, 7.206, 7.2058, 7.2055, 7.2053, 7.2058, 7.2056, 7.2054, 7.2052, 7.2057, 7.2063, 7.2061, 7.2066, 7.2064, 7.2062, 7.2059, 7.2057, 7.2055, 7.206, 7.2065, 7.2056, 7.2053, 7.205, 7.2047, 7.2052, 7.2049, 7.2046, 7.2051, 7.2056, 7.2053, 7.205, 7.2048, 7.2046, 7.2044, 7.2042, 7.2047, 7.2044, 7.2042, 7.204, 7.2045, 7.2043, 7.2049, 7.2048, 7.2045, 7.2043, 7.204, 7.2039, 7.2036, 7.2033, 7.2039, 7.2036, 7.2042, 7.204, 7.2039, 7.2045, 7.2051, 7.2048, 7.2061, 7.2066, 7.2064, 7.207, 7.2075, 7.2073, 7.2071, 7.2069, 7.2066, 7.2064, 7.2062, 7.2092, 7.2089, 7.2095, 7.2097, 7.2094, 7.2092, 7.2114, 7.212, 7.2118, 7.2117, 7.2114, 7.2114, 7.2121, 7.2119, 7.2124, 7.2122, 7.2131, 7.2123, 7.2129, 7.2128, 7.2126, 7.2124, 7.2124, 7.2132, 7.2151, 7.2157, 7.2155, 7.2153, 7.215, 7.2148, 7.2147, 7.2165, 7.2165, 7.217, 7.2168, 7.2166, 7.2164, 7.217, 7.2176, 7.22, 7.2192, 7.2189], '192.168.122.113': [5.6195, 5.4783, 5.5253, 5.5977, 5.5827, 6.5141, 6.4418, 6.4432, 6.9594, 7.4582, 7.3164, 7.1822, 7.1415, 7.3162, 7.2297, 7.1628, 7.0961, 6.9994, 6.9561, 6.9104, 6.8447, 6.7863, 6.7342, 6.7358, 6.7597, 7.158, 7.0944, 7.0366, 7.0083, 6.981, 6.9465, 6.9447, 7.4037, 7.6664, 7.7659, 7.7283, 7.6816, 7.6543, 7.6056, 7.7844, 7.7372, 7.7163, 7.6631, 7.6138, 7.5745, 7.6394, 7.6038, 7.6744, 7.6475, 7.6036, 7.5838, 7.5517, 7.5101, 7.3811, 7.4372, 7.4116, 7.3869, 7.3795, 7.3571, 7.3293, 7.3863, 7.3577, 7.3308, 7.3091, 7.2792, 7.2682, 7.2496, 7.3042, 7.3555, 7.3252, 7.3014, 7.279, 7.3354, 7.3186, 7.3089, 7.308, 7.2245, 7.2109, 7.2028, 7.2589, 7.2418, 7.2208, 7.2104, 7.188, 7.1773, 7.1637, 7.1487, 7.1341, 7.1145, 7.0988, 7.0798, 7.0604, 7.0564, 7.0473, 7.0365, 7.0203, 7.0091, 6.9957, 6.9795, 6.9649, 7.0012, 7.0401, 7.0861, 7.0847, 7.1215, 7.1553, 7.1377, 7.1225, 7.1057, 7.1119, 7.0954, 7.1295, 7.1239, 7.1071, 7.1087, 7.0963, 7.0828, 7.0676, 7.0552, 7.0441, 7.0322, 7.0699, 7.0614, 7.0468, 7.0878, 7.0769, 7.0685, 7.1004, 7.0949, 7.0898, 7.0756, 7.0689, 7.0938, 7.0898, 7.076, 7.0699, 7.0599, 7.0883, 7.0779, 7.0709, 7.0725, 7.0624, 7.0577, 7.0829, 7.0806, 7.0709, 7.0618, 7.0513, 7.0486, 7.0465, 7.0393, 7.0343, 7.0597, 7.0574, 7.061, 7.0516, 7.0403, 7.036, 7.0302, 7.0222, 7.0451, 7.0132, 7.0198, 7.009, 6.9982, 6.9878, 7.0128, 7.0057, 7.0307, 7.0238, 7.014, 7.0376, 7.1053, 7.1262, 7.1158, 7.1061, 7.0962, 7.0922, 7.0846, 7.0785, 7.0793, 7.073, 7.0636, 7.0543, 7.0522, 7.1103, 7.1014, 7.0993, 7.1202, 7.1409, 7.1376, 7.1308, 7.1511, 7.1432, 7.1381, 7.1593, 7.1538, 7.1739, 7.1699, 7.1896, 7.1815, 7.2032, 7.1947, 7.1894, 7.1839, 7.1789, 7.1771, 7.1777, 7.1715, 7.1656, 7.1585, 7.1554, 7.1501, 7.1426, 7.1388, 7.1318, 7.1279, 7.1254, 7.1436, 7.1361, 7.1318, 7.1306, 7.1229, 7.1419, 7.1367, 7.1299, 7.1226, 7.1156, 7.1108, 7.1073, 7.1057, 7.0991, 7.0941, 7.112, 7.113, 7.1264, 7.1239, 7.1162, 7.1122, 7.1484, 7.1406, 7.1387, 7.1361, 7.1514, 7.1459, 7.139, 7.1334, 7.1337, 7.1313, 7.1254, 7.1443, 7.159, 7.1569, 7.1501, 7.1508, 7.1514, 7.1482, 7.1637, 7.1619, 7.1576, 7.1746, 7.1697, 7.187, 7.1818, 7.1829, 7.1801, 7.196, 7.1909, 7.1901, 7.1854, 7.1783, 7.1731, 7.1703, 7.169, 7.1646, 7.161, 7.1585, 7.1537, 7.1488, 7.1465, 7.1438, 7.1214, 7.117, 7.112, 7.1058, 7.1012, 7.0988, 7.0935, 7.0885, 7.0845, 7.0962, 7.0901, 7.0853, 7.0994, 7.0949, 7.1107, 7.1097, 7.1078, 7.1028, 7.0966, 7.0916, 7.089, 7.0834, 7.0808, 7.0782, 7.0757, 7.0748, 7.0752, 7.0877, 7.0856, 7.082, 7.0791, 7.078, 7.0757, 7.0912, 7.0885, 7.0874, 7.0838, 7.0798, 7.0834, 7.098, 7.1006, 7.1186, 7.1337, 7.1471, 7.1419, 7.1373, 7.1343, 7.1304, 7.128, 7.1243, 7.1358, 7.1302, 7.1254, 7.1234, 7.1178, 7.114, 7.1089, 7.1234, 7.1202, 7.1161, 7.1151, 7.1097, 7.1078, 7.12, 7.1172, 7.1166, 7.112, 7.1112, 7.1062, 7.1054, 7.1007, 7.0991, 7.0943, 7.0899, 7.0848, 7.0827, 7.0817, 7.0791, 7.0753, 7.0793, 7.0788, 7.079, 7.0764, 7.0881, 7.0836, 7.0791, 7.0769, 7.0779000000000005, 7.106, 7.1018, 7.0997, 7.098, 7.0933, 7.0883, 7.0849, 7.0834, 7.0809, 7.0674, 7.0631, 7.0609, 7.0574, 7.0529, 7.0483, 7.0456, 7.0432, 7.0448, 7.0411, 7.0424, 7.0801, 7.0761, 7.0721, 7.0698, 7.0674, 7.1485, 7.1442, 7.14, 7.1373, 7.135, 7.1442, 7.1398, 7.1496, 7.1595, 7.1435, 7.141, 7.1371, 7.1389, 7.1393, 7.1354, 7.1318, 7.1316, 7.1294, 7.1248, 7.1349, 7.1324, 7.1285, 7.1257, 7.1245, 7.1206, 7.1186, 7.1148, 7.1116, 7.1223, 7.1198, 7.1217, 7.1188, 7.1155, 7.1164, 7.1302, 7.1393, 7.167, 7.1629, 7.1597, 7.1597, 7.1572, 7.1538, 7.1633, 7.1679, 7.164, 7.1611, 7.1597, 7.1572, 7.1546, 7.1519, 7.1482, 7.1707, 7.1942, 7.1833, 7.183, 7.1788, 7.1757, 7.1846, 7.1939, 7.1906, 7.187, 7.2038, 7.204, 7.2009, 7.1987, 7.1974, 7.1944, 7.1911, 7.187, 7.1836, 7.1806, 7.1776, 7.1784, 7.1752, 7.1715, 7.1692, 7.1673, 7.1753, 7.172, 7.1683, 7.1648, 7.173, 7.1808, 7.1772, 7.1872, 7.2115, 7.2082, 7.2157, 7.213, 7.2114, 7.2091, 7.2058, 7.2024, 7.2009, 7.1988, 7.195, 7.193, 7.19, 7.1867, 7.1828, 7.181, 7.1773, 7.1847, 7.1808, 7.1774, 7.1752, 7.1739, 7.1712, 7.1691, 7.1654, 7.1627, 7.1604, 7.158, 7.1559, 7.1537, 7.1612, 7.159, 7.1589, 7.1571, 7.1544, 7.1522, 7.152, 7.1489, 7.1489, 7.1474, 7.1486, 7.1575, 7.1552, 7.1535, 7.1617, 7.159, 7.1666, 7.166, 7.1631, 7.1607, 7.1584, 7.1653, 7.1654, 7.1621, 7.1586, 7.1587, 7.157, 7.1543, 7.1517, 7.1498, 7.158, 7.1549, 7.1559, 7.1527, 7.1608, 7.1578, 7.1569, 7.1552, 7.1526, 7.1504, 7.1471, 7.1438, 7.1419, 7.1385, 7.1364, 7.1359, 7.1328, 7.1295, 7.1264, 7.1337, 7.1311, 7.129, 7.1259, 7.1361, 7.1432, 7.1429, 7.1398, 7.1391, 7.1465, 7.146, 7.1435, 7.1409, 7.1483, 7.1466, 7.1527, 7.1514, 7.148, 7.1543, 7.1512, 7.1572, 7.1549, 7.1615, 7.1602, 7.1569, 7.1548, 7.1608, 7.1589, 7.1573, 7.1568, 7.1538, 7.16, 7.1578, 7.1549, 7.153, 7.1517, 7.1501, 7.1477, 7.145, 7.1464, 7.1451, 7.1445, 7.1427, 7.1402, 7.1373, 7.1544, 7.1515, 7.1498, 7.1567, 7.1558, 7.1539, 7.1509, 7.1494, 7.1466, 7.1454, 7.1509, 7.1498, 7.1469, 7.1439, 7.1511, 7.1499, 7.1394, 7.1499, 7.147, 7.1459, 7.1429, 7.1345, 7.125, 7.1306, 7.1295, 7.1267, 7.1252, 7.1256, 7.1149, 7.1129, 7.1357, 7.1336, 7.139, 7.145, 7.1428, 7.1398, 7.1456, 7.151, 7.1486, 7.1459, 7.1439, 7.141, 7.1466, 7.1527, 7.1507, 7.1479, 7.1453, 7.1428, 7.1403, 7.1388, 7.144, 7.1414, 7.1392, 7.1446, 7.1422, 7.14, 7.1389, 7.1366, 7.1348, 7.133, 7.1307, 7.1288, 7.1342, 7.1318, 7.1292, 7.1352, 7.1343, 7.1325, 7.1311, 7.1294, 7.1276, 7.1262, 7.1245, 7.122, 7.12, 7.1188, 7.1167, 7.1145, 7.1409, 7.1459, 7.1434, 7.1424, 7.14, 7.1378, 7.1432, 7.1489, 7.1466, 7.1446, 7.1427, 7.1405, 7.1379, 7.1432, 7.1486, 7.1545, 7.1524, 7.1508, 7.1486, 7.1477, 7.1454, 7.1433, 7.1489, 7.1476, 7.1545, 7.1528, 7.1502, 7.1732, 7.1708, 7.1682, 7.1734, 7.1792, 7.1775, 7.1756, 7.1808, 7.1796, 7.1777, 7.1829, 7.1807, 7.1781, 7.1779, 7.1767, 7.1825, 7.1799, 7.1861, 7.1839, 7.1823, 7.1804, 7.1791, 7.177, 7.1758, 7.1777, 7.1764, 7.1925, 7.1918, 7.1897, 7.1825, 7.1811, 7.1861, 7.1881, 7.1873, 7.1946, 7.1922, 7.1904, 7.1884, 7.1864, 7.1841, 7.1891, 7.1869, 7.1858, 7.1847, 7.1894, 7.1875, 7.1854, 7.1837, 7.1817, 7.1794, 7.1776, 7.1756, 7.1811, 7.1796, 7.1848, 7.1839, 7.1816, 7.1805, 7.1882, 7.1862, 7.1849, 7.184, 7.1817, 7.1861, 7.1845, 7.189, 7.1868, 7.1844, 7.1834, 7.1814, 7.1807, 7.1787, 7.1835, 7.1814, 7.1798, 7.1847, 7.1825, 7.187, 7.185, 7.1854, 7.184, 7.1887, 7.1867, 7.1845, 7.1825, 7.1802, 7.1781, 7.1825, 7.1936, 7.1979, 7.197, 7.1951, 7.1931, 7.1975, 7.1966, 7.1949, 7.193, 7.1906, 7.1882, 7.1932, 7.1911, 7.1893, 7.1885, 7.1884, 7.1968, 7.195, 7.1881, 7.1864, 7.191, 7.1888, 7.1866, 7.1843, 7.1826, 7.1803, 7.1848, 7.1872, 7.1915, 7.1905, 7.1889, 7.1874, 7.1864, 7.1848, 7.1831, 7.1815, 7.1811, 7.1809, 7.1792, 7.1771, 7.1762, 7.1741, 7.1793, 7.1788, 7.177, 7.1751, 7.174, 7.1786, 7.1834, 7.1879, 7.1863, 7.1852, 7.183, 7.1809, 7.1799, 7.1847, 7.1843, 7.1825, 7.1804, 7.1797, 7.1778, 7.1829, 7.1821, 7.193, 7.1911, 7.1905, 7.19, 7.1952, 7.1938, 7.1921, 7.1906, 7.1887, 7.1874, 7.1924, 7.197, 7.2017, 7.2058, 7.2039, 7.2091, 7.21, 7.2083, 7.2126, 7.2112, 7.209, 7.2069, 7.2048, 7.2096, 7.2084, 7.2071, 7.2049, 7.2029, 7.2012, 7.1997, 7.1975, 7.1953, 7.1943, 7.1925, 7.1915, 7.1905, 7.1896, 7.1875, 7.1853, 7.1833, 7.183, 7.1811, 7.182, 7.1804, 7.1853, 7.1839, 7.1881, 7.1876, 7.1917, 7.1897, 7.1876, 7.1805, 7.1789, 7.178, 7.1768, 7.1755, 7.1736, 7.1717, 7.1705, 7.1692, 7.1675, 7.1663, 7.1647, 7.1687, 7.1672, 7.166, 7.1644, 7.1646, 7.1695, 7.1798, 7.1797, 7.19, 7.1895, 7.1891, 7.1878, 7.1869, 7.1852, 7.1849, 7.1842, 7.1825, 7.1807, 7.1817, 7.18, 7.1792, 7.1802, 7.1812000000000005, 7.1793, 7.184, 7.1825, 7.1816, 7.1806, 7.1796, 7.1836, 7.182, 7.1802, 7.1792, 7.1776, 7.1762, 7.175, 7.1749, 7.1745, 7.1739, 7.172, 7.1766, 7.1755, 7.1803, 7.1813, 7.18, 7.1787, 7.1833, 7.1819, 7.1859, 7.1844, 7.1838, 7.1828, 7.182, 7.1803, 7.1793, 7.1782, 7.1764, 7.1762, 7.1745, 7.173, 7.1714, 7.1751, 7.1789, 7.1771, 7.1761, 7.1748, 7.1761, 7.1744, 7.1726, 7.1764, 7.1753, 7.1739, 7.1721, 7.173100000000001, 7.1715, 7.1703, 7.1656, 7.1697, 7.1678, 7.1674, 7.1655, 7.1639, 7.162, 7.1653, 7.1647, 7.1637, 7.1627, 7.1613, 7.1596, 7.1586, 7.157, 7.163, 7.1705, 7.1689, 7.1674, 7.1677, 7.1713, 7.1701, 7.1696, 7.1678, 7.1668, 7.1659, 7.1644, 7.1729, 7.173900000000001, 7.1726, 7.1709, 7.1697, 7.176, 7.1796, 7.1782, 7.1763, 7.1752, 7.1691, 7.1675, 7.1713, 7.1697, 7.1682, 7.1667, 7.1657, 7.169, 7.1725, 7.172, 7.1704, 7.1695, 7.1685, 7.1668, 7.1667, 7.1655, 7.1656, 7.1691, 7.1676, 7.1713, 7.1711, 7.1699, 7.169, 7.1729, 7.1716, 7.1754, 7.1797, 7.1834, 7.1827, 7.1812, 7.1852, 7.1836, 7.1822, 7.1853, 7.1849, 7.1847, 7.1834, 7.1819, 7.1858, 7.1893, 7.193, 7.1973, 7.1969, 7.1953, 7.1989, 7.1978, 7.1961, 7.1948, 7.1938, 7.1976, 7.1971, 7.1966, 7.1955, 7.199, 7.1983, 7.1975, 7.1963, 7.1949, 7.1933, 7.1969, 7.1955, 7.1941, 7.1926, 7.1912, 7.1898, 7.1891, 7.1876, 7.1907, 7.2029, 7.2022, 7.2016, 7.21, 7.2085, 7.2075, 7.2059, 7.1999, 7.1983, 7.198, 7.2015, 7.2004, 7.1997, 7.1983, 7.1967, 7.1952, 7.1941, 7.1951, 7.1961, 7.1945, 7.1985, 7.198, 7.1967, 7.1955, 7.1965, 7.1948, 7.1933, 7.1927, 7.1922, 7.191, 7.19, 7.189, 7.1879, 7.1868, 7.1851, 7.1837, 7.1821, 7.1852, 7.1836, 7.1827, 7.186, 7.1846, 7.183, 7.1815, 7.1802, 7.1796, 7.179, 7.180000000000001, 7.1834, 7.1844, 7.1831, 7.1816, 7.181, 7.1795, 7.1779, 7.1809, 7.1841, 7.1836, 7.1832, 7.1828, 7.186, 7.1812, 7.1844, 7.1881, 7.1888, 7.1876, 7.1859, 7.1845, 7.1842, 7.1835, 7.1823, 7.1811, 7.1942, 7.193, 7.1916, 7.1902, 7.1898, 7.1933, 7.1922, 7.1905, 7.189, 7.188, 7.1873, 7.1859, 7.1849, 7.1836, 7.1821, 7.1831000000000005, 7.1817, 7.18, 7.1788, 7.1776, 7.1813, 7.1798, 7.18, 7.1786, 7.178, 7.1769, 7.1755, 7.1742, 7.1727, 7.1728, 7.1715, 7.1725, 7.1721, 7.171, 7.1698, 7.1683, 7.1716, 7.1704, 7.1691, 7.1722, 7.1714, 7.1703, 7.1693, 7.1678, 7.1676, 7.1664, 7.1707, 7.1705, 7.1689, 7.1676, 7.1665, 7.1654, 7.1643, 7.1676, 7.1668, 7.1652, 7.1639, 7.1676, 7.1686, 7.1676, 7.1686000000000005, 7.169600000000001, 7.170600000000001, 7.1702, 7.1739, 7.1727, 7.1711, 7.1701, 7.1739, 7.1725, 7.1711, 7.174, 7.173, 7.1724, 7.1713, 7.1707, 7.1694, 7.168, 7.1711, 7.1702, 7.1692, 7.1721, 7.1712, 7.1708, 7.1694, 7.1726, 7.1755, 7.1742, 7.1774, 7.1767, 7.18, 7.1747, 7.1735, 7.1723, 7.1709, 7.1695, 7.1682, 7.1713, 7.1705, 7.1693, 7.1732, 7.1726, 7.1716, 7.1709, 7.17, 7.1687, 7.1673, 7.1702, 7.1691, 7.1679, 7.1682, 7.1676, 7.1715, 7.17, 7.1692, 7.1681, 7.1667, 7.1657, 7.1646, 7.1635, 7.1621, 7.1627, 7.1617, 7.161, 7.1595, 7.1623, 7.1658, 7.1651, 7.1638, 7.1624, 7.1611, 7.1602, 7.1589, 7.1618, 7.1608, 7.1594, 7.1591, 7.1578, 7.1609, 7.1604, 7.159, 7.1641, 7.1634, 7.1665, 7.1652, 7.1649, 7.164, 7.1628, 7.1662, 7.1656, 7.165, 7.1685, 7.1721, 7.1756, 7.1792, 7.1802, 7.1812000000000005, 7.1804, 7.1791, 7.182, 7.181, 7.1802, 7.1792, 7.1784, 7.1775, 7.1841, 7.1836, 7.187, 7.1858, 7.1888, 7.1919, 7.192900000000001, 7.1918, 7.1916, 7.2054, 7.2042, 7.2072, 7.2062, 7.2059, 7.2052, 7.2091, 7.2083, 7.2091, 7.2088, 7.2119, 7.2115, 7.2164, 7.216, 7.2148, 7.2173, 7.2166, 7.2157, 7.2181, 7.2168, 7.2158, 7.2185, 7.2179, 7.2177, 7.2171, 7.2161, 7.2187, 7.2214, 7.2204, 7.223, 7.2222, 7.2251, 7.2241, 7.2251, 7.226100000000001, 7.2249, 7.2294, 7.2319, 7.2348, 7.2335, 7.2323, 7.2318, 7.2305, 7.2303, 7.237, 7.2359, 7.2347, 7.2345, 7.2332, 7.236, 7.2358, 7.2347, 7.2336, 7.2324, 7.2349, 7.2337, 7.2332, 7.232, 7.24, 7.2427, 7.2414, 7.24, 7.24, 7.2389, 7.2413, 7.2411, 7.2399, 7.239, 7.2384, 7.2381, 7.2407, 7.24, 7.2387, 7.2373, 7.2362, 7.2351, 7.2343, 7.2332, 7.2324, 7.2317, 7.2304, 7.2292, 7.2287, 7.2327, 7.2315, 7.2341, 7.2332, 7.2322, 7.231, 7.2299, 7.2288, 7.2275, 7.2261, 7.2249, 7.2239, 7.2262, 7.2249, 7.2239, 7.2226, 7.2223, 7.2214, 7.2207, 7.2197, 7.2192, 7.2181, 7.2169, 7.2163, 7.2154, 7.2179, 7.2167, 7.2159, 7.216900000000001, 7.2128, 7.2122, 7.2112, 7.2107, 7.2097, 7.2123, 7.2147, 7.2135, 7.2134, 7.2121, 7.2182, 7.2174, 7.2168, 7.2193, 7.2194, 7.2184, 7.2209, 7.2203, 7.2192, 7.2225, 7.2219, 7.2208, 7.2197, 7.2186, 7.2176, 7.2217, 7.2214, 7.2173, 7.2198, 7.2225, 7.2218, 7.221, 7.2212, 7.2237, 7.223, 7.2259, 7.2255, 7.228, 7.2308, 7.2336, 7.2329, 7.2318, 7.2313, 7.2307, 7.2302, 7.2292, 7.2317, 7.2348, 7.2377, 7.2368, 7.2395, 7.2387, 7.2377, 7.2369, 7.2364, 7.2355, 7.2353, 7.2347, 7.2337, 7.2327, 7.2317, 7.231, 7.2338, 7.2335, 7.2323, 7.2356, 7.2349, 7.2349, 7.2336, 7.233, 7.2318, 7.2339, 7.2328, 7.2318, 7.2411, 7.2399, 7.2388, 7.2379, 7.2369, 7.2358, 7.2392, 7.2381, 7.2399, 7.2425, 7.242, 7.2445, 7.2468, 7.2456, 7.2444, 7.2435, 7.2422, 7.241, 7.2409, 7.2399, 7.2387, 7.2383, 7.2372, 7.2359, 7.235, 7.2343, 7.2337, 7.2334, 7.2329, 7.2316, 7.2305, 7.2296, 7.2293, 7.2286, 7.2275, 7.2264, 7.2256, 7.225, 7.2244, 7.2236, 7.2229, 7.2224, 7.2213, 7.2202, 7.2189, 7.2178, 7.2167, 7.2157, 7.215, 7.2138, 7.2162, 7.2151, 7.215, 7.2145, 7.2144, 7.2136, 7.2127, 7.2118, 7.2111, 7.2134, 7.2123, 7.2111, 7.21, 7.2125, 7.2114, 7.2109, 7.211, 7.2101, 7.2092, 7.208, 7.2071, 7.2066, 7.2064, 7.2053, 7.2048, 7.2073, 7.2067, 7.2056, 7.2082, 7.2128, 7.2119, 7.2129, 7.2123, 7.2115, 7.2159, 7.2151, 7.2223, 7.2247, 7.2243, 7.2235, 7.2224, 7.2244, 7.2232, 7.229, 7.2284, 7.2275, 7.2267, 7.2255, 7.2244, 7.2273, 7.23, 7.2293, 7.2282, 7.2271, 7.2264, 7.2318, 7.2307, 7.2296, 7.2291, 7.228, 7.2268, 7.2258, 7.2249, 7.224, 7.2233, 7.2257, 7.2255, 7.2248, 7.2236, 7.2225, 7.2224, 7.222, 7.221, 7.2201, 7.2191, 7.2181, 7.2174, 7.2167, 7.2162, 7.2187, 7.2181, 7.2174, 7.2169, 7.2159, 7.2148, 7.2138, 7.2134, 7.2158, 7.2148, 7.211, 7.21, 7.2141, 7.2201, 7.2189, 7.2179, 7.2179, 7.2172, 7.2167, 7.2252, 7.2244, 7.2239, 7.2298, 7.2287, 7.2289, 7.2285, 7.2282, 7.2275, 7.2265, 7.2255, 7.2244, 7.2241, 7.2255, 7.2246, 7.2247, 7.2241, 7.2239, 7.2263, 7.2253, 7.2272, 7.2296, 7.2287, 7.2276, 7.227, 7.2292, 7.2286, 7.2275, 7.2267, 7.2292, 7.2319, 7.2308, 7.23, 7.2332, 7.2361, 7.2356, 7.2355, 7.2347, 7.2348, 7.2346, 7.2338, 7.2327, 7.2356, 7.2349, 7.2342, 7.2332, 7.2323, 7.2314, 7.2341, 7.2349, 7.2339, 7.2368, 7.2369, 7.2367, 7.236, 7.2352, 7.2344, 7.2338, 7.2361, 7.2358, 7.2353, 7.2346, 7.2344, 7.2339, 7.2365, 7.2356, 7.2346, 7.2343, 7.2334, 7.2356, 7.2377, 7.2366, 7.2363, 7.2352, 7.2348, 7.234, 7.2331, 7.2328, 7.2317, 7.2339, 7.2328, 7.2324, 7.2312, 7.2304, 7.2295, 7.2285, 7.2276, 7.2269, 7.2259, 7.2254, 7.2337, 7.2327, 7.2319, 7.231, 7.2305, 7.2329, 7.2323, 7.232, 7.2316, 7.2307, 7.2296, 7.2317, 7.2309, 7.2301, 7.2311000000000005, 7.232100000000001, 7.2316, 7.2307, 7.2302, 7.2297, 7.232, 7.231, 7.2307, 7.236, 7.2351, 7.2341, 7.2336, 7.2326, 7.2317, 7.2319, 7.2314, 7.2339, 7.2336, 7.2328, 7.232, 7.2312, 7.2306, 7.2298, 7.2292, 7.2283, 7.2273, 7.2296, 7.2288, 7.2285, 7.2305, 7.2298, 7.2321, 7.2314, 7.2307, 7.23, 7.2322, 7.2316, 7.2307, 7.2299, 7.23, 7.2293, 7.2285, 7.2276, 7.2267, 7.2288, 7.2281, 7.2277, 7.2274, 7.2264, 7.2263, 7.2254, 7.2245, 7.2236, 7.2258, 7.225, 7.2247, 7.2246, 7.2247, 7.23, 7.2355, 7.2348, 7.2398, 7.239, 7.2382, 7.238, 7.2371, 7.2419, 7.2408, 7.24, 7.2419, 7.2413, 7.2403, 7.2396, 7.2389, 7.2381, 7.2372, 7.2365, 7.2362, 7.2354, 7.2346, 7.2341, 7.2331, 7.2322, 7.2317, 7.2307, 7.2298, 7.229, 7.2283, 7.2275, 7.2264, 7.2261, 7.2255, 7.2254, 7.2276, 7.2327, 7.2346, 7.2424, 7.2418, 7.2414, 7.2403, 7.2396, 7.2417, 7.2411, 7.241, 7.2406, 7.2396, 7.2396, 7.2389, 7.2385, 7.2377, 7.237, 7.2364, 7.2356, 7.2378, 7.2368, 7.236, 7.2379, 7.2369, 7.2359, 7.2384, 7.2376, 7.237, 7.2364, 7.2361, 7.2357, 7.2389, 7.238, 7.2375, 7.2367, 7.2361, 7.2352, 7.2379, 7.2371, 7.2374, 7.2372, 7.2394, 7.2386, 7.2378, 7.2401, 7.2393, 7.2391, 7.2362, 7.2359, 7.235, 7.2342, 7.2335, 7.2328, 7.232, 7.2319, 7.2298, 7.2293, 7.2299, 7.2293, 7.2287, 7.2277, 7.2275, 7.2321, 7.2319, 7.2314, 7.2304, 7.2302, 7.2349, 7.234, 7.2338, 7.2356, 7.235, 7.2341, 7.2336, 7.2327, 7.2322, 7.232, 7.2314, 7.2312, 7.2311, 7.2308, 7.2304, 7.2299, 7.2293, 7.2287, 7.228, 7.227, 7.2263, 7.2283, 7.2274, 7.2266, 7.226, 7.226, 7.2253, 7.2273, 7.2265, 7.2344, 7.2346, 7.2368, 7.2362, 7.2359, 7.2356, 7.2347, 7.2338, 7.2356, 7.2354, 7.2352, 7.2374, 7.2396, 7.2386, 7.2379, 7.2373, 7.2368, 7.236, 7.2353, 7.2347, 7.2365, 7.2358, 7.2349, 7.2369, 7.2387, 7.2382, 7.2375, 7.2366, 7.2357, 7.235, 7.2347, 7.2396, 7.2415, 7.2407, 7.2399, 7.2393, 7.2388, 7.2408, 7.243, 7.2478, 7.247, 7.2464, 7.2457, 7.2449, 7.2441, 7.2461, 7.2472, 7.2463, 7.2461, 7.2454, 7.2473, 7.2465, 7.2456, 7.2477, 7.2471, 7.2494, 7.2516, 7.2507, 7.2502, 7.2495, 7.2486, 7.2478, 7.2482, 7.2487, 7.2479, 7.2554, 7.2574, 7.2565, 7.2556, 7.2549, 7.2569, 7.2562, 7.2553, 7.2548, 7.2544, 7.2536, 7.2552, 7.2544, 7.2538, 7.253, 7.2522, 7.2513, 7.2531, 7.2522, 7.2515, 7.251, 7.2504, 7.2525, 7.2516, 7.2516, 7.2513, 7.253, 7.2525, 7.2522, 7.2516, 7.2513, 7.2504, 7.2496, 7.249, 7.2482, 7.2478, 7.247, 7.2463, 7.2455, 7.2448, 7.2465, 7.2457, 7.2472, 7.2466, 7.246, 7.2451, 7.2447, 7.2443, 7.246, 7.2454, 7.2449, 7.2441, 7.2432, 7.2423, 7.2415, 7.241, 7.2401, 7.2395, 7.2387, 7.2378, 7.2369, 7.236, 7.2352, 7.2348, 7.2365, 7.2357, 7.2348, 7.2339, 7.2331, 7.2323, 7.2314, 7.2306, 7.2299, 7.229, 7.2282, 7.2276, 7.2286, 7.2284, 7.2276, 7.2273, 7.2268, 7.2262, 7.2253, 7.225, 7.2243, 7.2285, 7.2278, 7.2271, 7.2264, 7.2274, 7.2266, 7.2264, 7.2281, 7.2276, 7.227, 7.229, 7.2284, 7.2305, 7.2326, 7.2317, 7.2315, 7.2309, 7.2303, 7.2299, 7.229, 7.2284, 7.2277, 7.227, 7.2268, 7.2263, 7.2257, 7.2277, 7.2271, 7.2263, 7.2257, 7.2252, 7.2244, 7.2262, 7.2279, 7.2297, 7.2294, 7.231, 7.2281, 7.225, 7.2242, 7.2233, 7.2229, 7.2226, 7.2242, 7.2234, 7.2227, 7.2219, 7.2216, 7.2245, 7.2255, 7.226500000000001, 7.2258, 7.225, 7.225, 7.228, 7.228, 7.2271, 7.2287, 7.2282, 7.2299, 7.2296, 7.2313, 7.2307, 7.2301, 7.2293, 7.230300000000001, 7.2318, 7.2314, 7.2306, 7.2323, 7.2316, 7.2312, 7.2304, 7.2345, 7.234, 7.2336, 7.2328, 7.232, 7.2336, 7.2327, 7.2321, 7.2341, 7.2334, 7.2327, 7.2346, 7.2339, 7.2334, 7.2331, 7.233, 7.2324, 7.232, 7.2323, 7.2315, 7.2306, 7.2298, 7.2314, 7.2307, 7.2301, 7.2299, 7.2296, 7.229, 7.2283, 7.228, 7.2274, 7.2267, 7.2261, 7.2253, 7.2245, 7.226, 7.2254, 7.2247, 7.2264, 7.226, 7.2276, 7.2293, 7.2286, 7.2284, 7.228, 7.2273, 7.2267, 7.2262, 7.2258, 7.2252, 7.2249, 7.2247, 7.2242, 7.2238, 7.2232, 7.2251, 7.2248, 7.224, 7.2237, 7.2233, 7.225, 7.2242, 7.2237, 7.2229, 7.2222, 7.2214, 7.2207, 7.2201, 7.2193, 7.2209, 7.2203, 7.2195, 7.2189, 7.2206, 7.2222, 7.2218, 7.2241, 7.2233, 7.225, 7.2242, 7.2239, 7.2236, 7.2229, 7.2221, 7.2237, 7.2234, 7.2251, 7.2247, 7.2239, 7.2253, 7.225, 7.2244, 7.2259, 7.2274, 7.2265, 7.2277, 7.2271, 7.2263, 7.2312, 7.2315, 7.2322, 7.2315, 7.2311, 7.2304, 7.2299, 7.2315, 7.2311, 7.2327, 7.2319, 7.2311, 7.2306, 7.2299, 7.2293, 7.2287, 7.2282, 7.2276, 7.2267, 7.2259, 7.2258, 7.2253, 7.2248, 7.2243, 7.2235, 7.2234, 7.225, 7.229, 7.23, 7.231000000000001, 7.232000000000001, 7.2317, 7.231, 7.2303, 7.2299, 7.2316, 7.2308, 7.2302, 7.2298, 7.229, 7.2283, 7.2279, 7.2274, 7.2275, 7.2272, 7.2269, 7.2263, 7.2264, 7.2258, 7.2254, 7.225, 7.2245, 7.2242, 7.2237, 7.2229, 7.2247, 7.2242, 7.2234, 7.2227, 7.2222, 7.2215, 7.2235, 7.2253, 7.225, 7.2245, 7.2238, 7.2232, 7.2246, 7.2262, 7.2255, 7.2282, 7.2311, 7.2353, 7.2367, 7.2359, 7.2356, 7.2349, 7.2359, 7.2355, 7.2349, 7.2341, 7.2335, 7.2327, 7.2342, 7.2335, 7.2336, 7.2331, 7.2323, 7.2339, 7.2334, 7.2348, 7.2364, 7.2361, 7.2353, 7.2345, 7.2337, 7.2352, 7.2347, 7.2341, 7.2335, 7.2329, 7.2323, 7.2317, 7.2315, 7.2309, 7.2306, 7.2303, 7.2317, 7.2314, 7.2311, 7.233, 7.2324, 7.2322, 7.2317, 7.2312, 7.2307, 7.2299, 7.2291, 7.234, 7.2335, 7.2333, 7.233, 7.2345, 7.234, 7.2334, 7.2331, 7.2331, 7.2323, 7.2339, 7.2339, 7.2331, 7.2326, 7.2321, 7.2316, 7.231, 7.2302, 7.2319, 7.232900000000001, 7.2346, 7.2341, 7.2345, 7.2339, 7.2334, 7.2328, 7.232, 7.2317, 7.2311, 7.2308, 7.2303, 7.2298, 7.2293, 7.2285, 7.2282, 7.228, 7.2279, 7.2272, 7.2288, 7.2287, 7.2279, 7.2275, 7.2272, 7.2286, 7.2282, 7.2275, 7.2269, 7.2266, 7.2259, 7.2257, 7.2254, 7.2249, 7.2264, 7.2256, 7.2251, 7.2245, 7.2261, 7.2258, 7.2274, 7.229, 7.2285, 7.228, 7.229, 7.23, 7.231000000000001, 7.2303, 7.2295, 7.2289, 7.2281, 7.2273, 7.2272, 7.2289, 7.2305, 7.2299, 7.2291, 7.2306, 7.2301, 7.2317, 7.2312, 7.2326, 7.2336, 7.2346, 7.2339, 7.2331, 7.2323, 7.2336, 7.233, 7.2326, 7.2302, 7.2317, 7.2327, 7.2319, 7.2313, 7.2356, 7.2348, 7.2364, 7.2362, 7.2355, 7.2371, 7.2384, 7.2384, 7.2379, 7.2394, 7.239, 7.2382, 7.2379, 7.2374, 7.2372, 7.2368, 7.2362, 7.2356, 7.235, 7.2343, 7.2336, 7.2329, 7.2324, 7.2318, 7.2314, 7.2311, 7.2306, 7.2305, 7.2304, 7.2297, 7.2292, 7.2287, 7.2323, 7.2316, 7.231, 7.2325, 7.2318, 7.2314, 7.2308, 7.2302, 7.2298, 7.2291, 7.2298, 7.2297, 7.229, 7.2288, 7.2281, 7.2278, 7.2273, 7.2291, 7.2285, 7.2281, 7.2295, 7.229, 7.2285, 7.2281, 7.2276, 7.2272, 7.2272, 7.2265, 7.226, 7.2263, 7.2278, 7.2276, 7.2271, 7.2267, 7.226, 7.2255, 7.225, 7.2244, 7.2292, 7.2272, 7.2266, 7.2267, 7.2262, 7.2256, 7.2251, 7.2245, 7.2238, 7.2253, 7.2249, 7.2242, 7.2239, 7.2233, 7.2247, 7.224, 7.2237, 7.2233, 7.2227, 7.222, 7.2217, 7.2214, 7.2213, 7.2209, 7.2203, 7.2196, 7.2193, 7.219, 7.2185, 7.2179, 7.2174, 7.2193, 7.2189, 7.2183, 7.2177, 7.2187, 7.2183, 7.2176, 7.2173, 7.2185, 7.2224, 7.2217, 7.2213, 7.2213, 7.2206, 7.2199, 7.2192, 7.2185, 7.218, 7.2174, 7.217, 7.2146, 7.216, 7.2154, 7.215, 7.2144, 7.2139, 7.2134, 7.213, 7.2174, 7.2173, 7.2166, 7.224, 7.2253, 7.2247, 7.2241, 7.2235, 7.2228, 7.2223, 7.2217, 7.2213, 7.2208, 7.2204, 7.2197, 7.2196, 7.2192, 7.2186, 7.2182, 7.2178, 7.2171, 7.2228, 7.2227, 7.2224, 7.2223, 7.2217, 7.225, 7.2299, 7.2295, 7.2292, 7.2307, 7.2301, 7.2298, 7.2293, 7.2318, 7.2315, 7.2419, 7.2434, 7.2431, 7.2446, 7.2444, 7.2438, 7.2431, 7.2426, 7.242, 7.2414, 7.2446, 7.2443, 7.242, 7.2454, 7.2472, 7.2468, 7.2466, 7.246, 7.2458, 7.2472, 7.2465, 7.2463, 7.2456, 7.2497, 7.2493, 7.2486, 7.2461, 7.2455, 7.2449, 7.2461, 7.2439, 7.2437, 7.2432, 7.2428, 7.2422, 7.2437, 7.2436, 7.2431, 7.2432, 7.2427, 7.2424, 7.2421, 7.2416, 7.2414, 7.2409, 7.2424, 7.2421, 7.2416, 7.2412, 7.241, 7.2406, 7.24, 7.2397, 7.2395, 7.2389, 7.2383, 7.238, 7.2395, 7.2389, 7.2386, 7.2398, 7.2391, 7.2385, 7.2379, 7.2379, 7.2388, 7.2383, 7.2378, 7.2373, 7.2366, 7.2361, 7.2375, 7.2368, 7.2384, 7.2383, 7.2397, 7.2392, 7.2388, 7.2381, 7.2375, 7.2372, 7.2386, 7.2398, 7.2391, 7.2389, 7.2386, 7.2381, 7.2378, 7.2374, 7.2371, 7.2385, 7.2378, 7.2371, 7.2364, 7.236, 7.236, 7.2353, 7.2353, 7.2347, 7.2342, 7.2339, 7.2334, 7.2331, 7.2343, 7.2342, 7.2341, 7.2337, 7.2332, 7.2328, 7.2327, 7.2325, 7.232, 7.2316, 7.2328, 7.2323, 7.2317, 7.2332, 7.233, 7.2325, 7.2323, 7.232, 7.2313, 7.2307, 7.2302, 7.2298, 7.2295, 7.2308, 7.2304, 7.2301, 7.2295, 7.2292, 7.2308, 7.2302, 7.2296, 7.2291, 7.2288, 7.2303, 7.2298, 7.2291, 7.2288, 7.2299, 7.2293, 7.229, 7.2283, 7.2276, 7.227, 7.2265, 7.2265, 7.2267, 7.2244, 7.2257, 7.2254, 7.2248, 7.2265, 7.2264, 7.226, 7.2257, 7.2252, 7.2265, 7.226, 7.2257, 7.2256, 7.2251, 7.2246, 7.224, 7.2234, 7.2247, 7.2242, 7.2237, 7.2231, 7.225, 7.2248, 7.2262, 7.2259, 7.2254, 7.2248, 7.2242, 7.2239, 7.2252, 7.2248, 7.2241, 7.2254, 7.2267, 7.2265, 7.2278, 7.2271, 7.2267, 7.2263, 7.2277, 7.2256, 7.2269, 7.2267, 7.2281, 7.2275, 7.2268, 7.2283, 7.228, 7.2277, 7.2273, 7.2271, 7.2284, 7.2297, 7.229, 7.2284, 7.2282, 7.2295, 7.229, 7.2287, 7.2282, 7.2277, 7.2278, 7.2273, 7.2267, 7.2283, 7.2295, 7.229, 7.2303, 7.2316, 7.2313, 7.2309, 7.2322, 7.2335, 7.233, 7.2324, 7.2319, 7.2333, 7.2335, 7.2329, 7.2324, 7.2338, 7.2335, 7.233, 7.2324, 7.2322, 7.2336, 7.2334, 7.2347, 7.2328, 7.2326, 7.2324, 7.2319, 7.2313, 7.2308, 7.2306, 7.2327, 7.2323, 7.2319, 7.2332, 7.2326, 7.2319, 7.2333, 7.2345, 7.2339, 7.2333, 7.2328, 7.2324, 7.2318, 7.2316, 7.2312, 7.2307, 7.2306, 7.2303, 7.2299, 7.2311, 7.2326, 7.2324, 7.2323, 7.2317, 7.2314, 7.2312, 7.229, 7.2303, 7.2298, 7.2314, 7.231, 7.2304, 7.2298, 7.2293, 7.2307, 7.2304, 7.2317, 7.2312, 7.2307, 7.2301, 7.2298, 7.2293, 7.2274, 7.2272, 7.2267, 7.2261, 7.2256, 7.225, 7.2245, 7.226, 7.2253, 7.2249, 7.2264, 7.2258, 7.2251, 7.2245, 7.2257, 7.2251, 7.2247, 7.2241, 7.2237, 7.2233, 7.2227, 7.2221, 7.2216, 7.2213, 7.2227, 7.2222, 7.2217, 7.223, 7.2228, 7.2241, 7.2236, 7.2233, 7.2229, 7.2226, 7.222, 7.2214, 7.2208, 7.2204, 7.22, 7.2194, 7.2191, 7.2185, 7.2179, 7.2182, 7.2175, 7.2187, 7.2182, 7.2194, 7.2188, 7.2202, 7.2214, 7.2212, 7.2242, 7.2239, 7.2252, 7.2297, 7.2292, 7.2289, 7.2287, 7.2282, 7.2276, 7.2274, 7.2269, 7.2263, 7.2257, 7.2252, 7.2248, 7.2242, 7.2237, 7.2236, 7.2231, 7.2227, 7.222, 7.223000000000001, 7.224000000000001, 7.2252, 7.2248, 7.2244, 7.2238, 7.2234, 7.2247, 7.2241, 7.2253, 7.2251, 7.2249, 7.2242, 7.2237, 7.2235, 7.2231, 7.2226, 7.2222, 7.2218, 7.2214, 7.2209, 7.2204, 7.22, 7.2197, 7.2192, 7.219, 7.2184, 7.2181, 7.2177, 7.2172, 7.2167, 7.2162, 7.2157, 7.2152, 7.2164, 7.2161, 7.2158, 7.2153, 7.215, 7.2144, 7.2141, 7.2154, 7.2149, 7.2143, 7.2138, 7.2149, 7.2159, 7.2172, 7.2169, 7.2165, 7.2177, 7.2174, 7.2181, 7.2177, 7.2171, 7.2169, 7.2183, 7.2205, 7.2211, 7.2223, 7.2222, 7.2218, 7.2216, 7.2213, 7.2214, 7.2211, 7.2205, 7.2199, 7.2212, 7.2207, 7.2219, 7.2213, 7.2208, 7.2203, 7.2201, 7.2195, 7.2205, 7.221500000000001, 7.2228, 7.2222, 7.2216, 7.2228, 7.2223, 7.2217, 7.2211, 7.2224, 7.2218, 7.2215, 7.2212, 7.2224, 7.2218, 7.2216, 7.2214, 7.2226, 7.2221, 7.2217, 7.2234, 7.2246, 7.2242, 7.2236, 7.223, 7.2225, 7.2237, 7.2248, 7.226, 7.2254, 7.225, 7.2245, 7.2242, 7.2238, 7.2233, 7.2228, 7.2239, 7.2252, 7.2246, 7.2242, 7.2236, 7.223, 7.2253, 7.2252, 7.2247, 7.2242, 7.2237, 7.2249, 7.2262, 7.2256, 7.2263, 7.2258, 7.2253, 7.2251, 7.225, 7.2245, 7.224, 7.2239, 7.2236, 7.2232, 7.2229, 7.2224, 7.2219, 7.2214, 7.2227, 7.2222, 7.2219, 7.2232, 7.2243, 7.2237, 7.2233, 7.2228, 7.2229, 7.223, 7.2252, 7.2248, 7.2245, 7.2257, 7.2269, 7.2282, 7.2276, 7.2289, 7.2347, 7.2359, 7.2354, 7.2351, 7.2348, 7.2345, 7.234, 7.2337, 7.2331, 7.2359, 7.2382, 7.2377, 7.2372, 7.2399, 7.2396, 7.2393, 7.2375, 7.2355, 7.2335, 7.2347, 7.2342, 7.2336, 7.2331, 7.2325, 7.2319, 7.2317, 7.2313, 7.2343, 7.234, 7.2336, 7.2335, 7.2332, 7.2326, 7.2322, 7.2316, 7.231, 7.2322, 7.2316, 7.2328, 7.2327, 7.2339, 7.2333, 7.2328, 7.2323, 7.2319, 7.2315, 7.2353, 7.2351, 7.235, 7.2345, 7.2341, 7.2339, 7.2334, 7.2333, 7.2328, 7.2323, 7.2317, 7.2328, 7.2323, 7.232, 7.23, 7.2298, 7.2292, 7.2287, 7.2285, 7.2283, 7.2281, 7.2278, 7.2274, 7.227, 7.2266, 7.2256, 7.2251, 7.2248, 7.2244, 7.2242, 7.2237, 7.2249, 7.2244, 7.2239, 7.2236, 7.223, 7.2245, 7.2242, 7.2237, 7.2233, 7.2237, 7.2233, 7.2232, 7.2229, 7.2224, 7.2234, 7.2234, 7.223, 7.2225, 7.2221, 7.2215, 7.221, 7.2209, 7.2204, 7.2201, 7.2197, 7.221, 7.2204, 7.2202, 7.2214, 7.2213, 7.2208, 7.2202, 7.2215, 7.221, 7.2204, 7.2216, 7.221, 7.2207, 7.2219, 7.2216, 7.223, 7.2228, 7.2224, 7.2235, 7.2231, 7.2225, 7.2219, 7.2213, 7.2215, 7.2228, 7.2224, 7.2218, 7.2214, 7.2195, 7.2179, 7.2176, 7.2175, 7.2171, 7.2167, 7.2161, 7.2175, 7.2172, 7.217, 7.2166, 7.2163, 7.2159, 7.2156, 7.2152, 7.215, 7.2163, 7.2162, 7.2158, 7.2154, 7.2149, 7.2145, 7.2143, 7.2142, 7.2152, 7.2146, 7.2143, 7.2138, 7.2134, 7.2131, 7.2128, 7.2126, 7.2123, 7.2122, 7.2135, 7.2131, 7.2127, 7.2123, 7.212, 7.2118, 7.2114, 7.211, 7.2109, 7.2106, 7.2101, 7.2101, 7.2107, 7.2105, 7.2103, 7.2098, 7.2112, 7.2115, 7.2126, 7.2122, 7.2117, 7.2112, 7.2108, 7.2103, 7.2113, 7.2107, 7.2103, 7.2113, 7.2108, 7.2103, 7.2098, 7.2108, 7.2117, 7.2112, 7.2123, 7.2118, 7.2114, 7.211, 7.2107, 7.2106, 7.21, 7.2112, 7.2107, 7.2102, 7.2097, 7.2091, 7.2086, 7.208, 7.2076, 7.2073, 7.207, 7.2067, 7.2066, 7.2062, 7.2058, 7.2054, 7.205, 7.2045, 7.2039, 7.2034, 7.2032, 7.204, 7.2035, 7.2045, 7.2041, 7.2039, 7.2037, 7.2034, 7.2029, 7.2025, 7.2036, 7.2031, 7.2043, 7.2055, 7.2053, 7.206300000000001, 7.2059, 7.2071, 7.2131, 7.213, 7.2127, 7.2123, 7.2121, 7.2116, 7.2111, 7.2105, 7.2103, 7.2098, 7.2094, 7.2089, 7.2084, 7.208, 7.2077, 7.2075, 7.2072, 7.2068, 7.2068, 7.2066, 7.2061, 7.207, 7.2067, 7.2068, 7.2067, 7.2067, 7.2066, 7.2076, 7.2073, 7.207, 7.2081, 7.208, 7.2076, 7.208600000000001, 7.2082, 7.2094, 7.2093, 7.2091, 7.2088, 7.2098, 7.2109, 7.2105, 7.2116, 7.2127, 7.2123, 7.2119, 7.2129, 7.2125, 7.2121, 7.213100000000001, 7.214100000000001, 7.215100000000001, 7.2146, 7.2142, 7.2158, 7.2158, 7.2143, 7.2139, 7.2134, 7.2147, 7.2158, 7.2153, 7.2151, 7.2147, 7.2143, 7.2139, 7.2136, 7.2146, 7.2156, 7.2156, 7.2166, 7.2176, 7.2173, 7.2171, 7.2168, 7.2164, 7.2162, 7.2159, 7.217, 7.2166, 7.2187, 7.2215, 7.2227, 7.2223, 7.2221, 7.2217, 7.2215, 7.221, 7.2205, 7.2202, 7.2201, 7.2197, 7.2192, 7.219, 7.2185, 7.2183, 7.2184, 7.218, 7.2183, 7.2178, 7.2181, 7.2177, 7.2172, 7.2168, 7.2162, 7.2173, 7.2173, 7.2168, 7.2179, 7.219, 7.2186, 7.2184, 7.2195, 7.2221, 7.2232, 7.2227, 7.2238, 7.2236, 7.2233, 7.2244, 7.2276, 7.2288, 7.2283, 7.2284, 7.228, 7.2277, 7.2278, 7.229, 7.2285, 7.2283, 7.2284, 7.2279, 7.2277, 7.2289, 7.2301, 7.2297, 7.2291, 7.2285, 7.2281, 7.2277, 7.2272, 7.2267, 7.2268, 7.2264, 7.2259, 7.227, 7.2265, 7.2277, 7.2288, 7.2283, 7.2279, 7.2274, 7.2269, 7.2265, 7.226, 7.2261, 7.2273, 7.2269, 7.2295, 7.2291, 7.2287, 7.2298, 7.2293, 7.2303, 7.2299, 7.2295, 7.2291, 7.2287, 7.2282, 7.2279, 7.2276, 7.2272, 7.2267, 7.2262, 7.2262, 7.2259, 7.2268, 7.2266, 7.2261, 7.226, 7.2257, 7.2251, 7.2246, 7.2243, 7.2241, 7.2236, 7.225, 7.2247, 7.2242, 7.2241, 7.2236, 7.2234, 7.2229, 7.2228, 7.2237, 7.2233, 7.2231, 7.2227, 7.2222, 7.2233, 7.2243, 7.2241, 7.2236, 7.2249, 7.2247, 7.2245, 7.2241, 7.2251, 7.2266, 7.2262, 7.2257, 7.2252, 7.2262, 7.2257, 7.2252, 7.2262, 7.2258, 7.2269, 7.2266, 7.2248, 7.2244, 7.224, 7.2235, 7.223, 7.224, 7.2235, 7.2231, 7.2228, 7.2227, 7.2224, 7.2236, 7.2231, 7.223, 7.224, 7.2235, 7.223, 7.2227, 7.2225, 7.2221, 7.2217, 7.2225, 7.2235, 7.2233, 7.2243, 7.2238, 7.2235, 7.2231, 7.2227, 7.2222, 7.2221, 7.2215, 7.2212, 7.2207, 7.222, 7.2217, 7.2212, 7.2209, 7.2204, 7.2199, 7.2194, 7.2191, 7.2188, 7.2184, 7.2181, 7.2191, 7.219, 7.2186, 7.2182, 7.2177, 7.2173, 7.2183, 7.2194, 7.2189, 7.2184, 7.2196, 7.2198, 7.2196, 7.2206, 7.2202, 7.2198, 7.2194, 7.2189, 7.2199, 7.2195, 7.2207, 7.2204, 7.2201, 7.2197, 7.2208, 7.2206, 7.2206, 7.2202, 7.2212000000000005, 7.2223, 7.2233, 7.2243, 7.2252, 7.2247, 7.2246, 7.2248, 7.2246, 7.2241, 7.2237, 7.2235, 7.2231, 7.223, 7.2226, 7.2223, 7.2219, 7.2218, 7.2227, 7.2222, 7.2218, 7.2218, 7.2215, 7.2211, 7.2222, 7.2218, 7.2213, 7.2209, 7.2206, 7.2204, 7.2201, 7.2197, 7.2207, 7.2203, 7.2198, 7.2209, 7.2208, 7.2219, 7.2228, 7.2239, 7.2249, 7.2244, 7.2242, 7.2237, 7.2232, 7.2243, 7.2241, 7.2252, 7.2248, 7.225, 7.2245, 7.2242, 7.2238, 7.2233, 7.223, 7.2225, 7.2238, 7.225, 7.2246, 7.2242, 7.2237, 7.2233, 7.223, 7.2227, 7.2236, 7.2246, 7.2244, 7.224, 7.2236, 7.2233, 7.2228, 7.2225, 7.2222, 7.2234, 7.2229, 7.2226, 7.2222, 7.222, 7.2215, 7.2215, 7.2212, 7.2208, 7.2203, 7.2187, 7.2185, 7.218, 7.2176, 7.2172, 7.2196, 7.2192, 7.2205, 7.2205, 7.2201, 7.2198, 7.2194, 7.2194, 7.2204, 7.2203, 7.2214, 7.221, 7.2206, 7.2202, 7.2197, 7.221, 7.2207, 7.2205, 7.2202, 7.2198, 7.2193, 7.2192, 7.2187, 7.2184, 7.2195, 7.2208, 7.2205, 7.2204, 7.22, 7.2225, 7.2223, 7.2221, 7.2218, 7.2215, 7.221, 7.2206, 7.2204, 7.22, 7.2199, 7.2194, 7.219, 7.2187, 7.2184, 7.2181, 7.2192, 7.2189, 7.2187, 7.2185, 7.218, 7.2179, 7.2175, 7.2171, 7.2167, 7.2163, 7.2161, 7.2157, 7.2166, 7.2162, 7.2157, 7.2153, 7.2163, 7.2159, 7.2155, 7.2166, 7.2176, 7.2187, 7.2184, 7.2195, 7.2217, 7.2215, 7.2211, 7.2206, 7.2203, 7.2201, 7.2197, 7.2193, 7.2193, 7.2207, 7.2203, 7.2201, 7.2197, 7.2192, 7.2187, 7.2183, 7.2169, 7.2165, 7.2162, 7.2157, 7.2154, 7.2152, 7.2148, 7.2156, 7.2151, 7.2147, 7.2145, 7.2142, 7.2151, 7.2161, 7.2158, 7.2169, 7.2166, 7.2162, 7.2173, 7.2159, 7.2154, 7.2152, 7.2161, 7.2156, 7.2166, 7.2162, 7.2157, 7.2153, 7.215, 7.2146, 7.2143, 7.2153, 7.2149, 7.2148, 7.2144, 7.2155, 7.215, 7.2146, 7.2156, 7.2167, 7.2164, 7.2203, 7.2199, 7.2209, 7.2205, 7.2201, 7.221, 7.2237, 7.2235, 7.2231, 7.2227, 7.2222, 7.2219, 7.2218, 7.2229, 7.2227, 7.2225, 7.222, 7.2215, 7.2211, 7.2206, 7.2201, 7.2197, 7.2206, 7.2189, 7.2185, 7.218, 7.2175, 7.2171, 7.2166, 7.2189, 7.2185, 7.2196, 7.2209, 7.2207, 7.2203, 7.22, 7.2195, 7.2191, 7.2187, 7.2184, 7.2181, 7.2177, 7.2187, 7.2196, 7.2181, 7.2179, 7.2175, 7.2187, 7.2184, 7.2168, 7.2166, 7.2164, 7.2161, 7.2157, 7.2167, 7.2178, 7.2173, 7.2158, 7.2168, 7.2166, 7.2175, 7.2172, 7.2183, 7.2181, 7.2178, 7.2175, 7.2186, 7.2183, 7.218, 7.2177, 7.2174, 7.2172, 7.217, 7.2166, 7.2163, 7.216, 7.2156, 7.2167, 7.2167, 7.2166, 7.2175, 7.217, 7.2168, 7.2166, 7.2175, 7.2173, 7.2175, 7.2171, 7.2182, 7.22, 7.2196, 7.2207, 7.2203, 7.2201, 7.2197, 7.2193, 7.2191, 7.2188, 7.2184, 7.2181, 7.2205, 7.2203, 7.2199, 7.2209, 7.2207, 7.2217, 7.2215, 7.2214, 7.2211, 7.2209, 7.2204, 7.22, 7.2196, 7.2192, 7.2215, 7.2211, 7.2208, 7.2204, 7.2199, 7.2196, 7.2192, 7.2188, 7.2187, 7.2183, 7.2182, 7.2177, 7.2174, 7.2172, 7.218, 7.2176, 7.2172, 7.217, 7.2167, 7.2162, 7.217, 7.2166, 7.2163, 7.2161, 7.216, 7.2158, 7.2153, 7.2153, 7.2163, 7.2174, 7.2172, 7.2168, 7.2165, 7.2162, 7.2158, 7.2156, 7.2154, 7.2152, 7.2136, 7.2123, 7.214, 7.215000000000001, 7.2149, 7.2158, 7.2157, 7.2154, 7.215, 7.2146, 7.2143, 7.2152, 7.2151, 7.2151, 7.2147, 7.2143, 7.214, 7.2136, 7.2134, 7.2169, 7.2167, 7.2163, 7.2162, 7.2174, 7.2173, 7.2182, 7.2193, 7.2204, 7.22, 7.2195, 7.2191, 7.2189, 7.2187, 7.2198, 7.2196, 7.2192, 7.2188, 7.2197, 7.2192, 7.2178, 7.2176, 7.2174, 7.2173, 7.2169, 7.2168, 7.2165, 7.2161, 7.2172, 7.2169, 7.2171, 7.2167, 7.2167, 7.2164, 7.2162, 7.2159, 7.2155, 7.2151, 7.216, 7.2158, 7.2167, 7.217700000000001, 7.2174, 7.2172, 7.2181, 7.2191, 7.22, 7.2196, 7.2192, 7.219, 7.2187, 7.2184, 7.2181, 7.2191, 7.2188, 7.2184, 7.2183, 7.2168, 7.2154, 7.2141, 7.2138, 7.2135, 7.2132, 7.2129, 7.214, 7.2144, 7.2141, 7.2138, 7.2177, 7.2174, 7.2174, 7.2175, 7.216, 7.2156, 7.2152, 7.215, 7.2146, 7.2146, 7.2154, 7.2152, 7.2162, 7.2158, 7.2154, 7.215, 7.2137, 7.2136, 7.2145, 7.2155, 7.2154, 7.2139, 7.2126, 7.2123, 7.2121, 7.2122, 7.2119, 7.2117, 7.2113, 7.2122, 7.2118, 7.2116, 7.2112, 7.211, 7.2119, 7.2119, 7.2118, 7.2114, 7.2111, 7.2107, 7.2117, 7.2113, 7.2111, 7.2108, 7.2104, 7.2102, 7.2098, 7.2094, 7.2092, 7.2088, 7.2099, 7.2095, 7.2107, 7.2104, 7.2101, 7.2099, 7.2099, 7.2096, 7.2093, 7.2089, 7.2087, 7.2085, 7.2083, 7.2093, 7.2091, 7.2093, 7.2107, 7.2103, 7.2099, 7.2096, 7.2082, 7.2081, 7.2079, 7.2087, 7.2085, 7.2081, 7.2088, 7.2085, 7.2094, 7.209, 7.2087, 7.2083, 7.2079, 7.2075, 7.2072, 7.2069, 7.2066, 7.2063, 7.206, 7.2059, 7.2056, 7.2065, 7.2062, 7.206, 7.2057, 7.2123, 7.212, 7.2116, 7.2113, 7.2111, 7.2112, 7.2108, 7.2106, 7.2104, 7.2112, 7.2109, 7.2105, 7.2102, 7.2098, 7.2128, 7.2126, 7.2121, 7.2131, 7.2128, 7.2125, 7.2122, 7.212, 7.2117, 7.2114, 7.2112, 7.2109, 7.2106, 7.2115, 7.2111, 7.2107, 7.2103, 7.2099, 7.2109, 7.2106, 7.211600000000001, 7.2114, 7.2113, 7.2109, 7.2117, 7.2113, 7.2109, 7.2095, 7.2083, 7.2079, 7.2077, 7.2073, 7.2069, 7.2065, 7.2061, 7.206, 7.2069, 7.2068, 7.2064, 7.2061, 7.2059, 7.2058, 7.2055, 7.2052, 7.2061, 7.2058, 7.2059, 7.2056, 7.2066, 7.2063, 7.2059, 7.2046, 7.2045, 7.2054, 7.2064, 7.2074, 7.2086, 7.2085, 7.2083, 7.2079, 7.2077, 7.2075, 7.2073, 7.2069, 7.2078, 7.2074, 7.207, 7.2079, 7.2075, 7.2061, 7.206, 7.2059, 7.2069, 7.2065, 7.2062, 7.206, 7.2079, 7.2077, 7.2085, 7.2082, 7.208, 7.2089, 7.2085, 7.2082, 7.208, 7.2077, 7.2073, 7.2069, 7.2065, 7.2062, 7.2058, 7.2054, 7.2051, 7.2059, 7.2055, 7.2054, 7.2051, 7.2048, 7.2057, 7.2055, 7.2053, 7.2051, 7.2049, 7.2072, 7.2068, 7.2065, 7.2063, 7.2059, 7.2055, 7.2055, 7.2051, 7.2049, 7.2048, 7.2048, 7.2048, 7.2045, 7.2042, 7.2079, 7.2089, 7.2086, 7.2083, 7.2079, 7.2082, 7.2081, 7.2078, 7.2075, 7.2072, 7.2082, 7.2081, 7.2083, 7.208, 7.2077, 7.2086, 7.2095, 7.2094, 7.2091, 7.2101, 7.21, 7.2097, 7.2094, 7.2091, 7.2088, 7.2085, 7.2082, 7.2081, 7.2077, 7.2074, 7.2061, 7.2058, 7.2068, 7.2065, 7.2076, 7.2074, 7.2072, 7.2081, 7.2079, 7.2076, 7.208600000000001, 7.2072, 7.2092, 7.2089, 7.2086, 7.2094, 7.2103, 7.2113000000000005, 7.211, 7.2107, 7.2104, 7.21, 7.2096, 7.2093, 7.209, 7.2099, 7.2098, 7.2095, 7.2093, 7.2101, 7.211, 7.2107, 7.2103, 7.2103, 7.2099, 7.2097, 7.2093, 7.209, 7.2087, 7.209700000000001, 7.210700000000001, 7.2103, 7.2102, 7.2099, 7.2095, 7.2092, 7.2093, 7.2089, 7.2099, 7.2108, 7.2104, 7.2103, 7.2099, 7.2096, 7.2093, 7.2089, 7.2085, 7.2094, 7.2083, 7.208, 7.2077, 7.2074, 7.2071, 7.2081, 7.2091, 7.210100000000001, 7.211100000000001, 7.2109, 7.2105, 7.2105, 7.2103, 7.21, 7.2109, 7.2107, 7.2103, 7.2099, 7.2107, 7.2103, 7.2099, 7.2096, 7.2104, 7.2102, 7.211, 7.2107, 7.2103, 7.2099, 7.2095, 7.2093, 7.2091, 7.2088, 7.2086, 7.2083, 7.2079, 7.2076, 7.2074, 7.2082, 7.2078, 7.2076, 7.2074, 7.207, 7.2066, 7.2063, 7.2073, 7.207, 7.2071, 7.2068, 7.2064, 7.2072, 7.2071, 7.2069, 7.2078, 7.2075, 7.2071, 7.208, 7.2077, 7.2074, 7.2071, 7.2069, 7.2068, 7.2067, 7.2075, 7.2072, 7.2069, 7.2066, 7.2064, 7.2073, 7.207, 7.2067, 7.2063, 7.2071, 7.2071, 7.207, 7.207, 7.207, 7.2067, 7.2064, 7.2063, 7.2061, 7.2058, 7.2055, 7.2052, 7.2062, 7.206, 7.2057, 7.2056, 7.2066, 7.2075, 7.2085, 7.2081, 7.2078, 7.2075, 7.2074, 7.2073, 7.207, 7.2066, 7.2062, 7.207, 7.2069, 7.2066, 7.2055, 7.2052, 7.2049, 7.2046, 7.2044, 7.204, 7.2036, 7.2024, 7.2035, 7.2031, 7.2027, 7.2023, 7.2021, 7.202, 7.2016, 7.2014, 7.2013, 7.201, 7.2006, 7.2004, 7.1991, 7.1987, 7.1988, 7.1985, 7.1982, 7.199, 7.1998, 7.1994, 7.1992, 7.200200000000001, 7.2023, 7.2031, 7.2027, 7.2023, 7.2031, 7.2028, 7.2024, 7.2023, 7.2021, 7.2017, 7.2025, 7.2032, 7.2029, 7.2025, 7.2021, 7.2018, 7.2014, 7.201, 7.2008, 7.2005, 7.2001, 7.2, 7.1998, 7.1997, 7.1995, 7.1992, 7.1997, 7.1994, 7.1995, 7.1994, 7.1993, 7.1991, 7.1989, 7.1986, 7.1984, 7.1992, 7.200200000000001, 7.1999, 7.1995, 7.1992, 7.2, 7.2007, 7.2005, 7.2003, 7.1999, 7.1996, 7.1993, 7.1989, 7.1986, 7.1985, 7.1983, 7.1979, 7.1975, 7.1983, 7.198, 7.1978, 7.1974, 7.1971, 7.1968, 7.1966, 7.1964, 7.1961, 7.1957, 7.1953, 7.1949, 7.1946, 7.1943, 7.194, 7.1938, 7.1936, 7.1934, 7.1931, 7.1939, 7.1935, 7.1946, 7.1955, 7.1953, 7.1951, 7.1948, 7.1944, 7.1942, 7.1942, 7.195, 7.1947, 7.1958, 7.1955, 7.1952, 7.1951, 7.1948, 7.1947, 7.1946, 7.1943, 7.1939, 7.1935, 7.1934, 7.1942, 7.1952, 7.1939, 7.1927, 7.1924, 7.1921, 7.193, 7.1927, 7.1935, 7.194500000000001, 7.1944, 7.194, 7.1938, 7.1938, 7.1934, 7.193, 7.1939, 7.1936, 7.1946, 7.195600000000001, 7.1952, 7.1961, 7.1959, 7.1956, 7.1953, 7.1961, 7.197, 7.1979, 7.1978, 7.1977, 7.1975, 7.1974, 7.1972, 7.1971, 7.196, 7.1957, 7.1957, 7.1956, 7.1954, 7.1951, 7.196, 7.1958, 7.1967, 7.1976, 7.1973, 7.197, 7.1979, 7.1976, 7.1976, 7.1963, 7.1961, 7.1958, 7.1955, 7.1952, 7.1953, 7.1949, 7.1959, 7.1969, 7.1979, 7.1976, 7.1974, 7.1971, 7.1979, 7.1986, 7.1982, 7.198, 7.1977, 7.1975, 7.1972, 7.197, 7.1966, 7.1964, 7.1961, 7.1957, 7.1954, 7.1951, 7.1949, 7.1946, 7.195600000000001, 7.1952, 7.1951, 7.1947, 7.1946, 7.1954, 7.1941, 7.1938, 7.1938, 7.1934, 7.1931, 7.1928, 7.1925, 7.1921, 7.192, 7.1917, 7.1905, 7.1902, 7.1899, 7.1895, 7.1892, 7.1902, 7.1898, 7.1896, 7.1894, 7.1891, 7.1889, 7.1889, 7.1885, 7.1881, 7.1877, 7.1875, 7.1884, 7.188, 7.1878, 7.1876, 7.1872, 7.1859, 7.1856, 7.1864, 7.186, 7.1857, 7.1845, 7.1844, 7.184, 7.185, 7.1858, 7.1855, 7.1864, 7.186, 7.1858, 7.1856, 7.1852, 7.1854, 7.1853, 7.1851, 7.1848, 7.1855, 7.1863, 7.1859, 7.1857, 7.1853, 7.185, 7.1847, 7.1845, 7.1843, 7.1839, 7.1835, 7.1831, 7.1829, 7.1825, 7.1822, 7.1819, 7.1817, 7.1814, 7.181, 7.182, 7.183000000000001, 7.184000000000001, 7.1836, 7.1825, 7.1825, 7.1832, 7.183, 7.1827, 7.1824, 7.1823, 7.182, 7.1816, 7.1825, 7.1823, 7.1821, 7.1818, 7.1826, 7.1823, 7.1821, 7.1829, 7.1838, 7.1846, 7.1842, 7.1839, 7.1847, 7.1844, 7.1841, 7.1848, 7.1846, 7.1853, 7.1861, 7.1857, 7.1856, 7.1853, 7.186, 7.1867, 7.1874, 7.1871, 7.1868, 7.1865, 7.1864, 7.1862, 7.1859, 7.1856, 7.1852, 7.1849, 7.1846, 7.1843, 7.1841, 7.1838, 7.1848, 7.1858, 7.1854, 7.1853, 7.185, 7.1846, 7.1854, 7.1852, 7.1849, 7.1846, 7.1843, 7.184, 7.1838, 7.1834, 7.1831, 7.1828, 7.1836, 7.1834, 7.1834, 7.1831, 7.1839, 7.1836, 7.1843, 7.1841, 7.1839, 7.1836, 7.1832, 7.1828, 7.1827, 7.1837, 7.1847, 7.1843, 7.184, 7.1864, 7.1862, 7.1859, 7.1889, 7.1885, 7.1883, 7.1889, 7.1887, 7.1883, 7.1879, 7.1876, 7.1872, 7.1869, 7.1876, 7.1874, 7.1872, 7.1871, 7.187, 7.1868, 7.1865, 7.1862, 7.1858, 7.1865, 7.1862, 7.187, 7.1868, 7.1866, 7.1874, 7.1871, 7.1869, 7.1866, 7.1863, 7.1888, 7.1886, 7.1895, 7.1892, 7.19, 7.1896, 7.1893, 7.1882, 7.189, 7.1897, 7.1904, 7.1901, 7.1899, 7.1899, 7.1896, 7.1943, 7.194, 7.195, 7.1983, 7.1982, 7.1989, 7.1988, 7.1987, 7.1984, 7.1983, 7.1981, 7.2002, 7.2001, 7.201, 7.2007, 7.2017, 7.2014, 7.2011, 7.2018, 7.2016, 7.2003, 7.2, 7.1997, 7.1995, 7.1995, 7.1992, 7.1989, 7.1987, 7.1976, 7.1976, 7.1985, 7.1982, 7.1978, 7.1977, 7.1966, 7.1964, 7.1954, 7.1954, 7.1954, 7.1952, 7.1948, 7.1946, 7.1942, 7.1939, 7.1938, 7.1939, 7.1927, 7.1923, 7.1921, 7.1917, 7.1904, 7.1902, 7.1902, 7.1902, 7.1898, 7.1895, 7.1892, 7.1892, 7.189, 7.19, 7.1909, 7.1906, 7.1904, 7.1903, 7.1921, 7.1932, 7.1921, 7.1919, 7.192900000000001, 7.193900000000001, 7.1936, 7.1933, 7.1941, 7.1951, 7.195, 7.1948, 7.1948, 7.1944, 7.194, 7.1938, 7.1934, 7.193, 7.1928, 7.1926, 7.1923, 7.1932, 7.194, 7.1937, 7.1934, 7.1944, 7.1954, 7.1962, 7.1963, 7.196, 7.1957, 7.1953, 7.1941, 7.1954, 7.1956, 7.1954, 7.196400000000001, 7.1961, 7.197100000000001, 7.1969, 7.1966, 7.1965, 7.1963, 7.1961, 7.1988, 7.1988, 7.1984, 7.1981, 7.1989, 7.1987, 7.1984, 7.1993, 7.1992, 7.1991, 7.1988, 7.1985, 7.1983, 7.1983, 7.1982, 7.1991, 7.1987, 7.1983, 7.198, 7.1988, 7.1985, 7.1983, 7.1981, 7.1979, 7.1976, 7.1983, 7.199, 7.1987, 7.1986, 7.1983, 7.1994, 7.1991, 7.1988, 7.1985, 7.1993, 7.1991, 7.1999, 7.1998, 7.1997, 7.1985, 7.1973, 7.1961, 7.195, 7.1957, 7.1953, 7.195, 7.1949, 7.1948, 7.1945, 7.1942, 7.1942, 7.1949, 7.1946, 7.1945, 7.1944, 7.1944, 7.1941, 7.1948, 7.1945, 7.1933, 7.193, 7.1937, 7.1934, 7.1933, 7.1932, 7.1929, 7.1927, 7.1924, 7.1931, 7.1929, 7.1926, 7.1924, 7.1925, 7.1922, 7.1929, 7.1926, 7.1933, 7.1931, 7.1929, 7.1937, 7.1935, 7.1932, 7.1931, 7.193, 7.1937, 7.1934, 7.1933, 7.1932, 7.193, 7.1928, 7.1925, 7.1923, 7.1922, 7.1931, 7.1939, 7.1945, 7.1941, 7.1937, 7.1935, 7.1931, 7.193, 7.1927, 7.1934, 7.1934, 7.1932, 7.1939, 7.1935, 7.1933, 7.193, 7.1927, 7.1924, 7.1923, 7.1911, 7.1908, 7.1907, 7.1904, 7.1902, 7.191, 7.1907, 7.1904, 7.1893, 7.1883, 7.1893, 7.189, 7.1887, 7.1884, 7.1884, 7.1894, 7.1902, 7.1903, 7.1892, 7.1889, 7.1888, 7.1887, 7.1896, 7.1898, 7.1897, 7.1907000000000005, 7.191700000000001, 7.1916, 7.1924, 7.1921, 7.1921, 7.192, 7.1917, 7.1915, 7.1912, 7.1909, 7.1908, 7.1905, 7.1903, 7.19, 7.1897, 7.1894, 7.1903, 7.191, 7.1919, 7.1927, 7.1924, 7.1934, 7.1932, 7.193, 7.1929, 7.1936, 7.1944, 7.1943, 7.1941, 7.1937, 7.1944, 7.1932, 7.1929, 7.1926, 7.1933, 7.194, 7.1937, 7.1934, 7.1932, 7.193, 7.1927, 7.1925, 7.1922, 7.192, 7.1909, 7.1906, 7.1903, 7.1901, 7.1899, 7.1897, 7.1904, 7.1904, 7.1901, 7.19, 7.1898, 7.1897, 7.1894, 7.1893, 7.189, 7.1887, 7.1885, 7.1882, 7.188, 7.1878, 7.1876, 7.1873, 7.188, 7.1877, 7.1865, 7.1863, 7.187, 7.1866, 7.1863, 7.1862, 7.1861, 7.1858, 7.186800000000001, 7.187800000000001, 7.1877, 7.1885, 7.1882, 7.1881, 7.189, 7.1891, 7.1889, 7.1891, 7.1889, 7.1902, 7.1902, 7.1898, 7.1904, 7.1902, 7.1899, 7.1896, 7.1894, 7.1892, 7.189, 7.1897, 7.1894, 7.1894, 7.1901, 7.1908, 7.1916, 7.1914, 7.1912, 7.1911, 7.191, 7.1907, 7.1895, 7.1902, 7.1912, 7.1919, 7.1916, 7.1914, 7.1911, 7.1908, 7.1923, 7.1922, 7.1929, 7.1917, 7.1916, 7.1913, 7.1912, 7.191, 7.1907, 7.1904, 7.1902, 7.19, 7.1897, 7.1904, 7.1903, 7.1949, 7.1966, 7.1954, 7.1961, 7.1958, 7.1955, 7.1954, 7.1952, 7.196, 7.1964, 7.1971, 7.197, 7.197, 7.1968, 7.1976, 7.1975, 7.1986, 7.1986, 7.1982, 7.1981, 7.1991, 7.1988, 7.1984, 7.1982, 7.198, 7.1979, 7.1978, 7.1975, 7.2008, 7.2007, 7.2006, 7.201, 7.2009, 7.2016, 7.2013, 7.2011, 7.2018, 7.2017, 7.2014, 7.201, 7.2008, 7.2006, 7.2013, 7.2021, 7.202, 7.2019, 7.2016, 7.2014, 7.2012, 7.2012, 7.2019, 7.2016, 7.2022, 7.202, 7.2026, 7.2024, 7.2032, 7.2029, 7.2036, 7.2043, 7.2053, 7.205, 7.2038, 7.2047, 7.2044, 7.2041, 7.2058, 7.2048, 7.2048, 7.2047, 7.2045, 7.2046, 7.2036, 7.2034, 7.2031, 7.2028, 7.2025, 7.2024, 7.2031, 7.2027, 7.2026, 7.2026, 7.2024, 7.2021, 7.2018, 7.2016, 7.2014, 7.2012, 7.2021, 7.202, 7.2021, 7.202, 7.2017, 7.2015, 7.2013, 7.201, 7.2007, 7.2005, 7.2005, 7.2003, 7.2001, 7.1991, 7.1989, 7.1987, 7.1984, 7.1982, 7.1989, 7.1986, 7.1985, 7.1981, 7.1981, 7.1977, 7.1974, 7.1974, 7.1981, 7.198, 7.1977, 7.1975, 7.1973, 7.1972, 7.1979, 7.1978, 7.1985, 7.1974, 7.1971, 7.1968, 7.1965, 7.1964, 7.1962, 7.1968, 7.1966, 7.1965, 7.1962, 7.1959, 7.1958, 7.1956, 7.1956, 7.1956, 7.1944, 7.1942, 7.1951, 7.195, 7.1948, 7.1947, 7.1945, 7.1946, 7.1934, 7.194, 7.1938, 7.1936, 7.1934, 7.1931, 7.1928, 7.1921, 7.1918, 7.1916, 7.1913, 7.191, 7.1907, 7.1914, 7.1913, 7.1903, 7.1903, 7.1901, 7.1898, 7.1896, 7.1895, 7.1903, 7.1905, 7.1894, 7.1891, 7.1897, 7.1895, 7.1894, 7.189, 7.1896, 7.1893, 7.1891, 7.1889, 7.1889, 7.1896, 7.1893, 7.1891, 7.1888, 7.1878, 7.1885, 7.1882, 7.1881, 7.1878, 7.1877, 7.1885, 7.1882, 7.1879, 7.1894, 7.19, 7.1898, 7.1899, 7.1905, 7.1911, 7.1909, 7.1908, 7.1915, 7.1923, 7.192, 7.1917, 7.1906, 7.1906, 7.1904, 7.1902, 7.1914, 7.1912, 7.1909, 7.193, 7.1928, 7.1926, 7.1926, 7.1925, 7.1923, 7.1921, 7.1919, 7.1917, 7.1924, 7.1922, 7.192, 7.1917, 7.1925, 7.1933, 7.1931, 7.1928, 7.1926, 7.1923, 7.192, 7.1919, 7.1928, 7.1936, 7.1933, 7.1932, 7.1929, 7.1927, 7.1926, 7.1925, 7.1923, 7.192, 7.192, 7.192, 7.1917, 7.1924, 7.1923, 7.1921, 7.1923, 7.192, 7.1919, 7.1917, 7.1919, 7.1927, 7.1934, 7.194, 7.1937, 7.1936, 7.1944, 7.1944, 7.1951, 7.1948, 7.1945, 7.1942, 7.1942, 7.1939, 7.1938, 7.1936, 7.1934, 7.1933, 7.194, 7.1937, 7.1937, 7.1936, 7.1944, 7.1941, 7.1938, 7.1935, 7.1933, 7.1933, 7.1939, 7.1938, 7.1936, 7.1933, 7.1939, 7.1937, 7.1935, 7.1925, 7.1924, 7.1923, 7.193, 7.1927, 7.1924, 7.193, 7.1927, 7.1924, 7.1921, 7.1928, 7.1925, 7.1932, 7.1931, 7.192, 7.1918, 7.1915, 7.1912, 7.192, 7.1918, 7.1958, 7.1955, 7.1959, 7.1956, 7.1963, 7.1952, 7.196, 7.1957, 7.1955, 7.1977, 7.1975, 7.1982, 7.198, 7.198, 7.1977, 7.1976, 7.1982, 7.1988, 7.1985, 7.1982, 7.1979, 7.1978, 7.1976, 7.1973, 7.1962, 7.1962, 7.1959, 7.1956, 7.1954, 7.1961, 7.1959, 7.1956, 7.1953, 7.1951, 7.1957, 7.1957, 7.1957, 7.1957, 7.1954, 7.1962, 7.1963, 7.1971, 7.1978, 7.1986, 7.1984, 7.1991, 7.1989, 7.1986, 7.1984, 7.1973, 7.197, 7.1976, 7.1976, 7.1973, 7.197, 7.1967, 7.1967, 7.1964, 7.1961, 7.1959, 7.1979, 7.1978, 7.1985, 7.1974, 7.1971, 7.1968, 7.1965, 7.1962, 7.1959, 7.1956, 7.1953, 7.1952, 7.1949, 7.1947, 7.1954, 7.1951, 7.1948, 7.1947, 7.1944, 7.1943, 7.1941, 7.1938, 7.1935, 7.1936, 7.1936, 7.1937, 7.1935, 7.1932, 7.1939, 7.1937, 7.1934, 7.1932, 7.1939, 7.1937, 7.1936, 7.1934, 7.1932, 7.1929, 7.1926, 7.1923, 7.192, 7.1917, 7.1916, 7.1924, 7.1931, 7.1929, 7.1928, 7.1926, 7.1924, 7.1922, 7.193, 7.1928, 7.1927, 7.1934, 7.1933, 7.1933, 7.1931, 7.1929, 7.1926, 7.1932, 7.194, 7.1947, 7.1953, 7.1951, 7.1957, 7.1954, 7.1962, 7.1959, 7.1957, 7.1956, 7.1954, 7.1952, 7.1959, 7.1957, 7.1956, 7.1964, 7.1962, 7.1961, 7.1958, 7.1956, 7.1962, 7.1959, 7.1956, 7.1956, 7.1974, 7.1974, 7.1972, 7.1971, 7.1977, 7.1986, 7.1986, 7.1975, 7.1972, 7.1971, 7.1968, 7.1965, 7.1964, 7.2003, 7.2001, 7.199, 7.1987, 7.1994, 7.1992, 7.1989, 7.1995, 7.1992, 7.199, 7.1979, 7.1977, 7.1975, 7.1973, 7.1972, 7.197, 7.1986, 7.1987, 7.1987, 7.1986, 7.1983, 7.199, 7.2, 7.1999, 7.1996, 7.1994, 7.1992, 7.1991, 7.1988, 7.1985, 7.1984, 7.1982, 7.1979, 7.1978, 7.1975, 7.1984, 7.1981, 7.2005, 7.2002, 7.1999, 7.1996, 7.2003, 7.2001, 7.2001, 7.2002, 7.1999, 7.1997, 7.1995, 7.1992, 7.199, 7.1987, 7.1994, 7.2009, 7.2041, 7.2051, 7.2049, 7.2055, 7.2062, 7.2059, 7.2068, 7.2067, 7.2064, 7.2061, 7.206, 7.2059, 7.2056, 7.2053, 7.2051, 7.2058, 7.2056, 7.2054, 7.2051, 7.2049, 7.2046, 7.2043, 7.205, 7.2086, 7.2083, 7.208, 7.2097, 7.2094, 7.2093, 7.209, 7.2087, 7.2087, 7.2084, 7.2084, 7.2081, 7.2078, 7.2075, 7.2072, 7.207, 7.2067, 7.2066, 7.2064, 7.2061, 7.2059, 7.2056, 7.2053, 7.205, 7.205, 7.2047, 7.2047, 7.2047, 7.2056, 7.2054, 7.206, 7.2059, 7.2056, 7.2066, 7.2064, 7.2062, 7.206, 7.2058, 7.2056, 7.2055, 7.2054, 7.2052, 7.2052, 7.2052, 7.2049, 7.2056, 7.2054, 7.2051, 7.2048, 7.2049, 7.2047, 7.2054, 7.2055, 7.2054, 7.2051, 7.2057, 7.2055, 7.2062, 7.2061, 7.2059, 7.2057, 7.2057, 7.2055, 7.2055, 7.2061, 7.2059, 7.2057, 7.2055, 7.2053, 7.2053, 7.2052, 7.2067, 7.2066, 7.2085, 7.2094, 7.2092, 7.2104, 7.2108, 7.2114, 7.2105, 7.2104, 7.2116, 7.2114, 7.2112, 7.211, 7.2109, 7.2106, 7.2105, 7.2103, 7.2111, 7.2109, 7.2117, 7.2114, 7.2112, 7.211, 7.2119, 7.2117, 7.2115, 7.2115, 7.2123, 7.2122, 7.2119, 7.2116, 7.2113, 7.2111, 7.2109, 7.2106, 7.2105, 7.2102, 7.2101, 7.2107, 7.2105, 7.2103, 7.2104, 7.2103, 7.2102, 7.2099, 7.2117, 7.2115, 7.2122, 7.212, 7.2126, 7.2124, 7.2122, 7.212, 7.2126, 7.2124, 7.2122, 7.212, 7.2127, 7.2127, 7.2126, 7.2125, 7.2122, 7.212, 7.2118, 7.2124, 7.2121, 7.212, 7.2117, 7.2116, 7.2115, 7.2112, 7.211, 7.2107, 7.2126, 7.2123, 7.2114, 7.2112, 7.2112, 7.2119, 7.2117, 7.2114, 7.2114, 7.2113, 7.2111, 7.2109, 7.2107, 7.2105, 7.2103, 7.2102, 7.2125, 7.2137, 7.2134, 7.2124, 7.2113, 7.2104, 7.2095, 7.2092, 7.209, 7.209, 7.2087, 7.2086, 7.2083, 7.2094, 7.2092, 7.2111, 7.2119, 7.2123, 7.212, 7.211, 7.2108, 7.2114, 7.2111, 7.2108, 7.2106, 7.2122, 7.212, 7.2126, 7.2123, 7.2131, 7.2128, 7.2127, 7.2132, 7.213, 7.2146, 7.2144, 7.2143, 7.2141, 7.2139, 7.2145, 7.215, 7.2147, 7.2145, 7.2143, 7.2149, 7.2148, 7.2146, 7.2147, 7.2148, 7.2145, 7.2143, 7.215, 7.2147, 7.2145, 7.2147, 7.2147, 7.2144, 7.2142, 7.2155, 7.2152, 7.2149, 7.2156, 7.2155, 7.2161, 7.2158, 7.2156, 7.2154, 7.2152, 7.215, 7.2148, 7.2147, 7.2149, 7.214, 7.2137, 7.2135, 7.2134, 7.2132, 7.2131, 7.2138, 7.2145, 7.2142, 7.2139, 7.2148, 7.2146, 7.2148, 7.2148, 7.2146, 7.2152, 7.2149, 7.2138, 7.2146, 7.2143, 7.2148, 7.2145, 7.2142, 7.214, 7.2138, 7.2143, 7.214, 7.2138, 7.2136, 7.2135, 7.2125, 7.2114, 7.2104, 7.2094, 7.2084, 7.2082, 7.2079, 7.2068, 7.2065, 7.2064, 7.2071, 7.2069, 7.2067, 7.2075, 7.2072, 7.207, 7.2076, 7.2074, 7.2072, 7.2071, 7.2072, 7.207, 7.2062, 7.2059, 7.2056, 7.2063, 7.206, 7.2057, 7.2054, 7.2053, 7.2053, 7.2051, 7.2049, 7.2046, 7.2043, 7.2041, 7.204, 7.2037, 7.2043, 7.2041, 7.2041, 7.2038, 7.2044, 7.2044, 7.2043, 7.2043, 7.2041, 7.2056, 7.2062, 7.206, 7.2094, 7.2093, 7.2092, 7.2092, 7.2089, 7.2087, 7.2086, 7.2093, 7.2099, 7.2098, 7.2095, 7.2093, 7.2091, 7.209, 7.2088, 7.2099, 7.2096, 7.2086, 7.2084, 7.2081, 7.2074, 7.2073, 7.207, 7.2061, 7.2059, 7.2058, 7.2057, 7.2055, 7.2052, 7.2058, 7.2057, 7.2056, 7.2054, 7.2061, 7.206, 7.2057, 7.2063, 7.206, 7.2058, 7.2056, 7.2055, 7.2054, 7.2053, 7.2051, 7.205, 7.2048, 7.2054, 7.2051, 7.2042, 7.2041, 7.2047, 7.2053, 7.206, 7.2058, 7.2056, 7.2056, 7.2053, 7.206, 7.2059, 7.2065, 7.2063, 7.2062, 7.206, 7.2066, 7.2057, 7.2056, 7.2055, 7.2065, 7.208, 7.2079, 7.2069, 7.2087, 7.2084, 7.2102, 7.2101, 7.2107, 7.2104, 7.2094, 7.2091, 7.2098, 7.2095, 7.2094, 7.2091, 7.2089, 7.209, 7.2087, 7.2084, 7.2082, 7.2081, 7.2078, 7.2078, 7.2084, 7.2082, 7.2079, 7.2077, 7.2085, 7.2083, 7.2083, 7.2081, 7.2093, 7.2085, 7.2092, 7.2089, 7.2086, 7.2085, 7.2091, 7.2094, 7.2085, 7.2075, 7.2065, 7.2062, 7.2066, 7.2064, 7.2061, 7.2059, 7.2057, 7.2068, 7.2073, 7.208, 7.2079, 7.2076, 7.2076, 7.2082, 7.2079, 7.2077, 7.2074, 7.208, 7.2078, 7.2068, 7.2065, 7.2065, 7.2071, 7.2077, 7.2074, 7.208, 7.2077, 7.2075, 7.2072, 7.207, 7.207, 7.2068, 7.2074, 7.2073, 7.207, 7.2076, 7.2073, 7.207, 7.206, 7.2058, 7.2057, 7.2055, 7.2054, 7.2051, 7.2057, 7.2055, 7.2061, 7.2059, 7.2065, 7.2062, 7.2061, 7.2058, 7.2055, 7.2053, 7.2051, 7.205, 7.2048, 7.2045, 7.2051, 7.2049, 7.2047, 7.2044, 7.205, 7.2047, 7.2045, 7.2052, 7.2051, 7.2049, 7.2055, 7.2052, 7.205, 7.2047, 7.2044, 7.2049, 7.2046, 7.2053, 7.2051, 7.2048, 7.2046, 7.2045, 7.2035, 7.2032, 7.2022, 7.2021, 7.2028, 7.2026, 7.2017, 7.2008, 7.2006, 7.2004, 7.2002, 7.2008, 7.2006, 7.2005, 7.1996, 7.1993, 7.1999, 7.2006, 7.1998, 7.1995, 7.1993, 7.199, 7.1996, 7.1995, 7.1992, 7.1991, 7.1989, 7.1988, 7.1986, 7.1985, 7.1984, 7.1982, 7.1973, 7.198, 7.198, 7.1986, 7.1984, 7.1982, 7.1981, 7.1979, 7.1977, 7.1975, 7.1974, 7.1972, 7.197, 7.1968, 7.1966, 7.1972, 7.1971, 7.1969, 7.1975, 7.1974, 7.198, 7.1978, 7.1977, 7.1975, 7.1972, 7.197, 7.1968, 7.1969, 7.1967, 7.1965, 7.1964, 7.1962, 7.196, 7.1958, 7.1956, 7.1957, 7.1956, 7.1954, 7.1952, 7.1951, 7.1949, 7.1947, 7.1945, 7.1943, 7.1942, 7.1939, 7.1938, 7.1936, 7.1935, 7.1934, 7.194, 7.194, 7.1945, 7.1945, 7.1942, 7.194, 7.1938, 7.1936, 7.1942, 7.1939, 7.1938, 7.1938, 7.1937, 7.1937, 7.1942, 7.1942, 7.1941, 7.1947, 7.1944, 7.1942, 7.1939, 7.1936, 7.1941, 7.1939, 7.1938, 7.1935, 7.1933, 7.1931, 7.1929, 7.1934, 7.1933, 7.1939, 7.1944, 7.1942, 7.1939, 7.1936, 7.1935, 7.1933, 7.1931, 7.1929, 7.1928, 7.1934, 7.1934, 7.1932, 7.1938, 7.1936, 7.1933, 7.1931, 7.1935, 7.1932, 7.1931, 7.1928, 7.1926, 7.1924, 7.193, 7.1928, 7.1925, 7.1922, 7.192, 7.1918, 7.1917, 7.1917, 7.1916, 7.1914, 7.1913, 7.191, 7.1909, 7.1906, 7.1904, 7.1902, 7.19, 7.1922, 7.192, 7.1917, 7.1917, 7.1915, 7.1921, 7.1927, 7.1925, 7.1922, 7.192, 7.1918, 7.1916, 7.1922, 7.1919, 7.1925, 7.1922, 7.1921, 7.192, 7.192, 7.1918, 7.1916, 7.1914, 7.1911, 7.1917, 7.1914, 7.1912, 7.191, 7.1908, 7.1905, 7.1903, 7.19, 7.1897, 7.1894, 7.1892, 7.1889, 7.1888, 7.1886, 7.1884, 7.1881, 7.1887, 7.1886, 7.1884, 7.1882, 7.1888, 7.1901, 7.1899, 7.1899, 7.1897, 7.1891, 7.1893, 7.1892, 7.1891, 7.1898, 7.1896, 7.1896, 7.19, 7.1899, 7.1904, 7.1909, 7.1906, 7.1905, 7.1911, 7.191, 7.1916, 7.1915, 7.1913, 7.1919, 7.1926, 7.1931, 7.193, 7.193, 7.1929, 7.1928, 7.1927, 7.1925, 7.1924, 7.1924, 7.1931, 7.1929, 7.1936, 7.1933, 7.1931, 7.193, 7.1928, 7.1926, 7.1932, 7.193, 7.1928, 7.1934, 7.1932, 7.1938, 7.1935, 7.1942, 7.1946, 7.1947, 7.1953, 7.1951, 7.1958, 7.1955, 7.1954, 7.1952, 7.1952, 7.195, 7.1947, 7.1946, 7.1944, 7.1942, 7.1939, 7.1938, 7.1935, 7.1941, 7.1939, 7.1936, 7.1934, 7.1932, 7.193, 7.1929, 7.1935, 7.1941, 7.194, 7.1938, 7.1945, 7.1942, 7.1948, 7.1953, 7.1961, 7.196, 7.1959, 7.1957, 7.1955, 7.1953, 7.1953, 7.1958, 7.1956, 7.1961, 7.1975, 7.1968, 7.1974, 7.1972, 7.197, 7.1969, 7.1968, 7.1965, 7.1964, 7.1963, 7.1969, 7.1967, 7.1966, 7.1972, 7.197, 7.1967, 7.1966, 7.1963, 7.1962, 7.196, 7.196, 7.1957, 7.1979, 7.1977, 7.1975, 7.1973, 7.197, 7.1969, 7.1967, 7.1966, 7.1963, 7.1961, 7.1959, 7.1957, 7.1955, 7.1953, 7.195, 7.1956, 7.1986, 7.1986, 7.1992, 7.1998, 7.1996, 7.1994, 7.1993, 7.2, 7.2001, 7.1993, 7.2011, 7.2017, 7.2051, 7.2051, 7.2049, 7.2054, 7.2052, 7.2045, 7.2069, 7.2075, 7.2075, 7.2081, 7.2082, 7.2081, 7.209, 7.2088, 7.2085, 7.2083, 7.2088, 7.2085, 7.209, 7.2087, 7.2085, 7.2083, 7.208, 7.2085, 7.2082, 7.2087, 7.2085, 7.2098, 7.2095, 7.21, 7.2098, 7.2096, 7.2095, 7.2092, 7.2089, 7.2086, 7.2083, 7.208, 7.2077, 7.2075, 7.2072, 7.2069, 7.2066, 7.2072, 7.207, 7.2068, 7.2066, 7.2063, 7.2061, 7.2058, 7.2055, 7.2053, 7.2051, 7.205, 7.2064, 7.2073, 7.2073, 7.2079, 7.2077, 7.2092, 7.2092, 7.2091, 7.2091, 7.21, 7.2114, 7.2133, 7.2131, 7.2136, 7.2149, 7.2147, 7.2152, 7.2165, 7.2164, 7.22, 7.2198, 7.2195, 7.2202, 7.2201, 7.2199, 7.2199, 7.2212, 7.2227, 7.2224, 7.2237, 7.2235, 7.2234, 7.2248, 7.2246, 7.2244, 7.2251, 7.2249, 7.2247, 7.2245, 7.2251, 7.2258, 7.2256, 7.2254, 7.2252, 7.225, 7.2247, 7.2253, 7.2254, 7.226, 7.2265, 7.2262, 7.2262, 7.2261, 7.2264, 7.2266, 7.2281, 7.228, 7.2281, 7.2279, 7.2277, 7.2275, 7.2273, 7.2279, 7.2286, 7.2284, 7.229, 7.2288, 7.2285, 7.2283, 7.2282, 7.2291, 7.2288, 7.2288, 7.2285, 7.2284, 7.2283, 7.2288, 7.2286, 7.2291, 7.2289, 7.2288, 7.2285, 7.2291, 7.2288, 7.2286, 7.2284, 7.2283, 7.228, 7.2277, 7.2275, 7.2274, 7.2271, 7.2269, 7.2267, 7.2266, 7.2264, 7.2261, 7.2259, 7.2258, 7.2264, 7.2264, 7.2262, 7.226, 7.2258, 7.2256, 7.2261, 7.2259, 7.2264, 7.2262, 7.226, 7.2259, 7.2257, 7.2255, 7.2253, 7.2258, 7.2263, 7.226, 7.2259, 7.2257, 7.2255, 7.2253, 7.2258, 7.2257, 7.2255, 7.2252, 7.225, 7.2248, 7.2254, 7.2259, 7.2265, 7.2273, 7.2272, 7.227, 7.227, 7.2286, 7.2278, 7.2276, 7.2289, 7.2303, 7.2301, 7.2306, 7.2304, 7.2303, 7.2309, 7.2308, 7.2306, 7.2319, 7.2316, 7.2313, 7.2318, 7.2323, 7.2321, 7.2319, 7.2316, 7.2315, 7.2313, 7.2323, 7.2321, 7.2318, 7.2316, 7.2322, 7.2319, 7.2317, 7.2315, 7.2313, 7.2311, 7.231, 7.2309, 7.2314, 7.2311, 7.2308, 7.2315, 7.2314, 7.2314, 7.2313, 7.2311, 7.231, 7.2308, 7.2305, 7.2302, 7.2299, 7.2304, 7.2318, 7.2319, 7.2317, 7.2323, 7.2329, 7.2327, 7.2325, 7.2323, 7.2321, 7.232, 7.2318, 7.2316, 7.2314, 7.2313, 7.2312, 7.2312, 7.231, 7.2307, 7.2306, 7.2305, 7.2307, 7.2305, 7.2303], '192.168.122.114': [5.3751, 5.5183, 5.9349, 5.8571, 5.9484, 5.8592, 6.1894, 5.5516, 5.6446, 6.1853, 6.1591, 6.2215, 6.2652, 6.3113, 6.655, 6.6232, 6.6016, 6.567, 6.5267, 6.5279, 6.487, 6.714, 6.6597, 6.6309, 6.7994, 6.7505, 6.7381, 6.719, 6.6713, 6.6567, 6.6306, 6.612, 6.6109, 6.5766, 6.7266, 6.6884, 6.7048, 6.6743, 6.7821, 6.776, 6.8883, 7.0137, 6.9821, 6.9577, 6.9308, 7.0112, 7.0295, 7.0541, 7.0355, 7.0046, 6.9092, 6.8896, 6.9667, 6.9391, 7.0119, 7.0872, 7.0676, 7.0374, 7.0147, 6.9868, 6.9799, 6.957, 7.0192, 7.0076, 6.9886, 6.9656, 6.9533, 6.9344, 6.9105, 6.8902, 6.8128, 6.8047, 6.802, 6.7868, 6.7777, 6.8335, 6.8256, 6.8747, 6.855, 6.8516, 6.8417, 6.8225, 6.8123, 6.8074, 6.7907, 6.7739, 6.7673, 6.7526, 6.7965, 6.7803, 6.7654, 6.7607, 6.8084, 6.8001, 6.8418, 6.8366, 6.8207, 6.8193, 6.8034, 6.7912, 6.7782, 6.7644, 6.7611, 6.7566, 6.7562, 6.7532, 6.74, 6.7345, 6.7249, 6.7154, 6.7324, 6.9672, 7.0783, 7.0792, 7.0688, 7.0611, 7.0533, 7.0537, 7.0414, 7.031, 7.0174, 7.0032, 6.9901, 6.9856, 6.9716, 7.0015, 6.9954, 6.9885, 6.9756, 6.9649, 6.9597, 6.9939, 6.9877, 6.976, 6.9786, 6.9673, 6.9963, 6.9902, 6.9781, 7.0093, 7.0, 6.9937, 7.0229, 7.0239, 7.0146, 7.0042, 7.007, 7.0356, 7.0247, 7.0157, 7.0131, 7.0044, 6.9973, 6.9947, 6.9868, 6.9794, 6.977, 6.9664, 6.9603, 6.9596, 6.96, 6.9857, 6.9835, 6.9805, 7.0116, 7.0057, 6.9994, 6.9937, 6.9925, 7.0147, 7.0119, 7.0041, 6.9993, 6.9955, 6.9895, 6.9905, 6.9849, 6.9764, 6.9685, 6.9695, 6.9652, 6.9574, 6.9493, 6.9419, 6.9646, 6.9569, 6.9499, 6.9431, 6.9387, 6.9368, 6.9331, 6.9297, 6.9226, 6.945, 6.9381, 6.9347, 6.9327, 6.9251, 7.0271, 7.0202, 7.0175, 7.0169, 7.0093, 7.0103, 7.035, 7.0282, 7.0298, 7.0257, 7.0183, 7.0135, 7.0059, 7.0257, 7.0206, 7.0386, 7.034, 7.0266, 7.021, 7.0387, 7.0551, 7.0731, 7.0685, 7.0842, 7.077, 7.0698, 7.0683, 7.0884, 7.065, 7.0589, 7.0373, 7.0597, 7.0943, 7.1108, 7.103, 7.1411, 7.1361, 7.1288, 7.1479, 7.1422, 7.1362, 7.1314, 7.1292, 7.1219, 7.1145, 7.108, 7.1082, 7.1055, 7.1209, 7.1394, 7.1326, 7.1309, 7.1522, 7.1451, 7.1415, 7.1766, 7.1757, 7.1804, 7.1787, 7.1738, 7.1715, 7.1659, 7.1644, 7.1598, 7.1776, 7.1756, 7.1706, 7.1673, 7.1612, 7.1736, 7.1686, 7.1632, 7.1694, 7.1647, 7.1621, 7.1783, 7.1734, 7.1752, 7.1706, 7.167, 7.1616, 7.161, 7.1556, 7.151, 7.1485, 7.1462, 7.1449, 7.1419, 7.1412, 7.1366, 7.1316, 7.1268, 7.1222, 7.1191, 7.1146, 7.1089, 7.124, 7.1181, 7.1317, 7.1267, 7.1396, 7.1525, 7.1483, 7.1469, 7.1448, 7.1645, 7.1605, 7.1607, 7.1603, 7.1592, 7.1529, 7.1487, 7.1452, 7.1438, 7.1575, 7.1735, 7.1672, 7.1651, 7.1591, 7.1547, 7.1497, 7.1466, 7.1473, 7.146, 7.1444, 7.1391, 7.1366, 7.1309, 7.1255, 7.1368, 7.1491, 7.1448, 7.1565, 7.1516, 7.1475, 7.1594, 7.1561, 7.1529, 7.1737, 7.173, 7.186, 7.198, 7.2092, 7.2049, 7.2015, 7.1992, 7.1944, 7.1893, 7.2001, 7.195, 7.193, 7.1917, 7.1872, 7.1837, 7.1796, 7.1931, 7.191, 7.2042, 7.2001, 7.1959, 7.2082, 7.2203, 7.2158, 7.2124, 7.2078, 7.204, 7.2003, 7.199, 7.211, 7.2065, 7.2038, 7.2223, 7.2323, 7.2419, 7.2386, 7.2496, 7.2455, 7.2405, 7.2378, 7.2469, 7.2443, 7.241, 7.2375, 7.2352, 7.2306, 7.2397, 7.237, 7.2354, 7.2466, 7.259, 7.2772, 7.2723, 7.2818, 7.2773, 7.2749, 7.2723, 7.2711, 7.2803, 7.2786, 7.2911, 7.2862, 7.2812, 7.2766, 7.2724, 7.2808, 7.2765, 7.2727, 7.2685, 7.2661, 7.2632, 7.2613, 7.2697, 7.2656, 7.2626, 7.2579, 7.2536, 7.2516, 7.2621, 7.26, 7.2698, 7.2654, 7.2746, 7.2701, 7.2676, 7.2661, 7.2632, 7.26, 7.2714, 7.2681, 7.2774, 7.2738, 7.2713, 7.2685, 7.2654, 7.2662, 7.2626, 7.2719, 7.271, 7.2686, 7.278, 7.2776, 7.2746, 7.2831, 7.2801, 7.288, 7.296, 7.2914, 7.2994, 7.3082, 7.3173, 7.3129, 7.3212, 7.3286, 7.3247, 7.3228, 7.3186, 7.3168, 7.3134, 7.3118, 7.3076, 7.3041, 7.3008, 7.2981, 7.2941, 7.2899, 7.2855, 7.2739, 7.2714, 7.2687, 7.2662, 7.2644, 7.2628, 7.2589, 7.2662, 7.2625, 7.2586, 7.2663, 7.2625, 7.2701, 7.2667, 7.2648, 7.2762, 7.2722, 7.2925, 7.2913, 7.2884, 7.3073, 7.3032, 7.2997, 7.3075, 7.3152, 7.3121, 7.3095, 7.3231, 7.3189, 7.3266, 7.3244, 7.3207, 7.3182, 7.3271, 7.3486, 7.3568, 7.3537, 7.3627, 7.3735, 7.3712, 7.3709, 7.3694, 7.3665, 7.3636, 7.3634, 7.3605, 7.3583, 7.356, 7.3529, 7.3731, 7.3697, 7.3692, 7.3656, 7.3632, 7.36, 7.3565, 7.3562, 7.3534, 7.3694, 7.3706, 7.3682, 7.3649, 7.3628, 7.3701, 7.3667, 7.3631, 7.3595, 7.3581, 7.356, 7.3528, 7.3524, 7.3488, 7.3454, 7.3417, 7.3396, 7.3379, 7.3445, 7.3424, 7.3402, 7.3381, 7.3351, 7.3326, 7.3292, 7.3354, 7.3321, 7.3304, 7.3269, 7.3234, 7.321, 7.3276, 7.3251, 7.3255, 7.3218, 7.3184, 7.3153, 7.3131, 7.3106, 7.3114, 7.3083, 7.305, 7.3016, 7.2982, 7.2966, 7.2938, 7.2914, 7.2878, 7.2855, 7.285, 7.2917, 7.2892, 7.2875, 7.294, 7.3014, 7.2981, 7.3046, 7.3013, 7.3018, 7.2999, 7.2971, 7.2957, 7.3027, 7.3002, 7.297, 7.2958, 7.2967, 7.3035, 7.3018, 7.3001, 7.2974, 7.2956, 7.3019, 7.3003, 7.3156, 7.3399, 7.3392, 7.3363, 7.3437, 7.3419, 7.3392, 7.3485, 7.3672, 7.38, 7.3776, 7.3751, 7.3728, 7.3703, 7.3618, 7.361, 7.3609, 7.3581, 7.356, 7.3528, 7.3505, 7.3832, 7.3836, 7.3811, 7.3881, 7.386, 7.3846, 7.3817, 7.3798, 7.3766, 7.3794, 7.3776, 7.3746, 7.3725, 7.3693, 7.3665, 7.365, 7.3703, 7.3673, 7.3652, 7.3848, 7.3834, 7.3807, 7.3783, 7.3758, 7.3736, 7.379, 7.3776, 7.3749, 7.3718, 7.3781, 7.3753, 7.3721, 7.3691, 7.3663, 7.3716, 7.3685, 7.3671, 7.3652, 7.3635, 7.361, 7.3601, 7.357, 7.3629, 7.3604, 7.3668, 7.3638, 7.3695, 7.3669, 7.364, 7.3613, 7.3595, 7.3578, 7.363, 7.3623, 7.3602, 7.3659, 7.3645, 7.3624, 7.3605, 7.3575, 7.3627, 7.3682, 7.3653, 7.3707, 7.3706, 7.3762, 7.3821, 7.3798, 7.3853, 7.3822, 7.381, 7.3853, 7.3829, 7.3813, 7.3795, 7.377, 7.3749, 7.373, 7.3995, 7.3974, 7.3945, 7.3931, 7.3983, 7.3962, 7.3942, 7.3927, 7.3911, 7.3968, 7.3944, 7.3918, 7.3901, 7.3946, 7.3925, 7.3901, 7.3883, 7.3857, 7.3915, 7.389, 7.3878, 7.4153, 7.4127, 7.4121, 7.4096, 7.4153, 7.414, 7.4114, 7.4089, 7.4073, 7.4053, 7.4048, 7.4025, 7.3996, 7.3982, 7.3955, 7.3935, 7.3921, 7.4076, 7.4053, 7.3963, 7.3948, 7.392, 7.3903, 7.3874, 7.3851, 7.3838, 7.3816, 7.3867, 7.3853, 7.3836, 7.3826, 7.381, 7.3784, 7.3775, 7.3763, 7.375, 7.3737, 7.3715, 7.3693, 7.3675, 7.3668, 7.3666, 7.3642, 7.3618, 7.3592, 7.358, 7.3552, 7.3538, 7.3526, 7.3502, 7.3494, 7.3544, 7.3528, 7.3502, 7.348, 7.3457, 7.3512, 7.349, 7.3466, 7.3444, 7.342, 7.3398, 7.3376, 7.3365, 7.3412, 7.353, 7.3577, 7.3621, 7.3602, 7.3591, 7.3653, 7.3699, 7.3701, 7.3743, 7.3857, 7.3832, 7.3806, 7.3781, 7.3822, 7.3808, 7.3789, 7.3768, 7.3743, 7.3721, 7.3707, 7.3681, 7.3663, 7.3647, 7.3621, 7.36, 7.3576, 7.3552, 7.353, 7.3511, 7.3493, 7.3474, 7.3464, 7.3503, 7.3543, 7.3525, 7.3516, 7.3496, 7.3484, 7.3469, 7.346, 7.3437, 7.3424, 7.3416, 7.3393, 7.3372, 7.3365, 7.3411, 7.3395, 7.3388, 7.3368, 7.3385, 7.3371, 7.3348, 7.3327, 7.3402, 7.338, 7.3366, 7.3409, 7.3387, 7.3366, 7.3344, 7.3327, 7.3306, 7.3294, 7.3284, 7.3284, 7.326, 7.325, 7.3174, 7.3213, 7.3309, 7.3418, 7.3399, 7.3388, 7.3373, 7.3355, 7.3342, 7.3321, 7.3299, 7.3279, 7.3267, 7.3251, 7.3227, 7.3278, 7.3262, 7.3247, 7.3233, 7.3271, 7.3257, 7.3233, 7.3211, 7.3253, 7.3267, 7.3248, 7.3225, 7.3211, 7.3249, 7.3226, 7.3204, 7.318, 7.3218, 7.3255, 7.3232, 7.3217, 7.3255, 7.3254, 7.3238, 7.3215, 7.3257, 7.3243, 7.323, 7.3212, 7.3191, 7.3182, 7.3226, 7.3211, 7.3194, 7.3179, 7.3159, 7.3208, 7.3294, 7.3381, 7.3432, 7.342, 7.3404, 7.3388, 7.343, 7.341, 7.3388, 7.3368, 7.3354, 7.3345, 7.3335, 7.3325, 7.331, 7.3291, 7.3278, 7.3258, 7.3237, 7.3219, 7.3208, 7.3198, 7.3179, 7.3179, 7.3158, 7.3138, 7.3119, 7.3101, 7.3154, 7.3202, 7.3219, 7.3172, 7.316, 7.3143, 7.3125, 7.3128, 7.3129, 7.3113, 7.3095, 7.3084, 7.3065, 7.3137, 7.3131, 7.3177, 7.3163, 7.3242, 7.3229, 7.3222, 7.3211, 7.3193, 7.3179, 7.3162, 7.3147, 7.3194, 7.3176, 7.3242, 7.3223, 7.3219, 7.3213, 7.3197, 7.3182, 7.3165, 7.3144, 7.313, 7.312, 7.3111, 7.3096, 7.3078, 7.3104, 7.3092, 7.3136, 7.3122, 7.316, 7.3153, 7.3189, 7.3169, 7.3155, 7.3139, 7.312, 7.3113, 7.3096, 7.3079, 7.3065, 7.3054, 7.3045, 7.3033, 7.3071, 7.3061, 7.3049, 7.3102, 7.3089, 7.3094, 7.3077, 7.3065, 7.3047, 7.3038, 7.3025, 7.3017, 7.3055, 7.3049, 7.3088, 7.3073, 7.3067, 7.3105, 7.3089, 7.3073, 7.3172, 7.3159, 7.3142, 7.3134, 7.3223, 7.3215, 7.3152, 7.3133, 7.3121, 7.3154, 7.3144, 7.3131, 7.3172, 7.3165, 7.3145, 7.3136, 7.3177, 7.3217, 7.3204, 7.319, 7.323, 7.3213, 7.3201, 7.3186, 7.3172, 7.3162, 7.3198, 7.3191, 7.3179, 7.3285, 7.3276, 7.3277, 7.3264, 7.3262, 7.3243, 7.3229, 7.3213, 7.3195, 7.3179, 7.3167, 7.3149, 7.3135, 7.3125, 7.3107, 7.3141, 7.3172, 7.3158, 7.3191, 7.3177, 7.3178, 7.3173, 7.3158, 7.3151, 7.3185, 7.3177, 7.3159, 7.3197, 7.3179, 7.3188, 7.3177, 7.3167, 7.3148, 7.3133, 7.3119, 7.3106, 7.3088, 7.3036, 7.3077, 7.3065, 7.3049, 7.3041, 7.3076, 7.3066, 7.3051, 7.3138, 7.312, 7.3108, 7.3089, 7.3072, 7.3055, 7.3039, 7.3031, 7.3013, 7.2995, 7.2982, 7.2967, 7.295, 7.2935, 7.2934, 7.299, 7.2976, 7.3046, 7.3132, 7.3122, 7.3107, 7.3095, 7.3081, 7.3063, 7.3058, 7.309, 7.3077, 7.3071, 7.3103, 7.3087, 7.3074, 7.3056, 7.309, 7.3082, 7.3067, 7.31, 7.3095, 7.3089, 7.3081, 7.3065, 7.3062, 7.3047, 7.3076, 7.3063, 7.3049, 7.3045, 7.3176, 7.3177, 7.3161, 7.3201, 7.3233, 7.3268, 7.3302, 7.3299, 7.3283, 7.3322, 7.3346, 7.3378, 7.3373, 7.3362, 7.3348, 7.3337, 7.3341, 7.3329, 7.3283, 7.3276, 7.3271, 7.3258, 7.3247, 7.3229, 7.3217, 7.3204, 7.3195, 7.3183, 7.3166, 7.3158, 7.3151, 7.3138, 7.3136, 7.3119, 7.3103, 7.3099, 7.3085, 7.307, 7.3063, 7.3051, 7.3083, 7.3077, 7.3063, 7.3047, 7.3031, 7.3014, 7.3049, 7.3032, 7.3058, 7.3059, 7.3047, 7.3031, 7.3061, 7.3092, 7.3077, 7.3098, 7.3083, 7.3072, 7.3099, 7.3087, 7.308, 7.3064, 7.3051, 7.304, 7.3029, 7.3013, 7.3001, 7.2988, 7.2973, 7.296, 7.2992, 7.2975, 7.2962, 7.2992, 7.298, 7.297, 7.2958, 7.2944, 7.2893, 7.2983, 7.3015, 7.301, 7.2993, 7.2982, 7.2967, 7.296, 7.2947, 7.294, 7.2969, 7.3002, 7.2991, 7.2975, 7.298, 7.2973, 7.3006, 7.2995, 7.2989, 7.2976, 7.2964, 7.2949, 7.2939, 7.2969, 7.2956, 7.2946, 7.2932, 7.2919, 7.291, 7.2901, 7.2886, 7.287, 7.2856, 7.2898, 7.289, 7.2878, 7.2869, 7.2853, 7.284, 7.2872, 7.2861, 7.2855, 7.2841, 7.2825, 7.2859, 7.2844, 7.2829, 7.2815, 7.2801, 7.2794, 7.2783, 7.2772, 7.2766, 7.2755, 7.2744, 7.2826, 7.2813, 7.2808, 7.2805, 7.2791, 7.2781, 7.2772, 7.2801, 7.2788, 7.2775, 7.2767, 7.2764, 7.2759, 7.2745, 7.2736, 7.2764, 7.2751, 7.2741, 7.2891, 7.293, 7.2928, 7.2925, 7.2916, 7.291, 7.2896, 7.2887, 7.2874, 7.2861, 7.2848, 7.2844, 7.2841, 7.2832, 7.2822, 7.281, 7.28, 7.2787, 7.2774, 7.2805, 7.2799, 7.2789, 7.2823, 7.285, 7.2839, 7.2828, 7.2814, 7.2842, 7.2834, 7.282, 7.2807, 7.2793, 7.2864, 7.2849, 7.2835, 7.2825, 7.282, 7.2813, 7.2801, 7.2829, 7.2817, 7.2848, 7.284, 7.283, 7.282, 7.2813, 7.2801, 7.2789, 7.2776, 7.2774, 7.2803, 7.2837, 7.2827, 7.2851, 7.2877, 7.2905, 7.3015, 7.3007, 7.2992, 7.2984, 7.2971, 7.2998, 7.3025, 7.3012, 7.3005, 7.2991, 7.3018, 7.3053, 7.3039, 7.3025, 7.3011, 7.2998, 7.2985, 7.2975, 7.2968, 7.2954, 7.2943, 7.2969, 7.2998, 7.3023, 7.3009, 7.2995, 7.2982, 7.2967, 7.2953, 7.298, 7.3005, 7.2994, 7.3018, 7.3045, 7.3075, 7.3036, 7.3066, 7.3056, 7.3183, 7.3176, 7.3166, 7.3154, 7.3144, 7.3167, 7.316, 7.3148, 7.3173, 7.316, 7.3148, 7.3134, 7.3133, 7.3131, 7.3122, 7.3116, 7.3103, 7.3137, 7.3128, 7.3156, 7.3147, 7.3138, 7.3127, 7.3116, 7.3103, 7.3089, 7.3124, 7.3111, 7.3144, 7.3134, 7.3159, 7.3149, 7.3135, 7.316, 7.3153, 7.3139, 7.3165, 7.3152, 7.3138, 7.3124, 7.3112, 7.3137, 7.313, 7.312, 7.3109, 7.3137, 7.3125, 7.3116, 7.3074, 7.3067, 7.3093, 7.3082, 7.3107, 7.3132, 7.3123, 7.3116, 7.3143, 7.3167, 7.3153, 7.314, 7.3132, 7.3124, 7.3112, 7.3105, 7.313, 7.3116, 7.3103, 7.3129, 7.316, 7.3184, 7.3171, 7.3209, 7.3199, 7.3226, 7.3212, 7.3204, 7.319, 7.3179, 7.3166, 7.3252, 7.3239, 7.3263, 7.3292, 7.3279, 7.327, 7.3295, 7.3286, 7.3275, 7.3303, 7.3292, 7.3279, 7.3268, 7.3256, 7.3285, 7.3278, 7.3266, 7.3259, 7.3262, 7.3261, 7.3288, 7.3281, 7.3309, 7.3299, 7.3295, 7.3322, 7.3308, 7.3301, 7.3302, 7.3295, 7.3282, 7.3271, 7.3268, 7.3293, 7.3281, 7.327, 7.3296, 7.3287, 7.3274, 7.3272, 7.3261, 7.3283, 7.3309, 7.3312, 7.3317, 7.3306, 7.3296, 7.332, 7.3306, 7.33, 7.3325, 7.3318, 7.3308, 7.3299, 7.3286, 7.3309, 7.3298, 7.3286, 7.3287, 7.3287, 7.3282, 7.328, 7.3274, 7.3272, 7.3263, 7.3253, 7.3247, 7.3235, 7.3222, 7.3212, 7.32, 7.3191, 7.3181, 7.3172, 7.316, 7.3152, 7.3141, 7.3136, 7.3124, 7.3115, 7.3138, 7.3132, 7.3124, 7.3124, 7.312, 7.3108, 7.3095, 7.3085, 7.3075, 7.3068, 7.3059, 7.3048, 7.3042, 7.3066, 7.3053, 7.3042, 7.3069, 7.3067, 7.3112, 7.3134, 7.3129, 7.3117, 7.3111, 7.3142, 7.3291, 7.3365, 7.3359, 7.3351, 7.3379, 7.3373, 7.3361, 7.3348, 7.3373, 7.336, 7.3351, 7.3341, 7.3365, 7.3356, 7.3349, 7.3375, 7.3364, 7.3355, 7.3396, 7.3385, 7.3373, 7.3436, 7.3426, 7.3416, 7.3405, 7.3397, 7.3391, 7.3383, 7.337, 7.3358, 7.3346, 7.334, 7.3364, 7.3355, 7.3346, 7.3335, 7.3336, 7.3358, 7.3345, 7.3333, 7.3323, 7.3348, 7.337, 7.3359, 7.3351, 7.3339, 7.3326, 7.3317, 7.3312, 7.327, 7.3261, 7.3253, 7.3241, 7.3234, 7.3229, 7.3229, 7.3217, 7.3209, 7.3201, 7.319, 7.3185, 7.3175, 7.3171, 7.3162, 7.3158, 7.3181, 7.3171, 7.3161, 7.3152, 7.3141, 7.3129, 7.3124, 7.3114, 7.3103, 7.3095, 7.3099, 7.3087, 7.3114, 7.311, 7.3108, 7.3101, 7.3091, 7.3116, 7.3144, 7.3131, 7.3129, 7.312, 7.3084, 7.3114, 7.3103, 7.3187, 7.3184, 7.3205, 7.3199, 7.3226, 7.3223, 7.3214, 7.3241, 7.3263, 7.3262, 7.3282, 7.327, 7.3258, 7.3246, 7.3237, 7.3228, 7.3223, 7.3215, 7.3208, 7.3196, 7.3192, 7.3183, 7.3172, 7.3168, 7.3158, 7.3148, 7.3141, 7.3137, 7.3134, 7.3165, 7.3157, 7.3176, 7.3164, 7.3157, 7.3176, 7.3167, 7.3155, 7.3143, 7.3135, 7.3153, 7.3144, 7.3132, 7.3123, 7.3116, 7.3111, 7.3102, 7.3125, 7.3117, 7.3109, 7.3101, 7.3098, 7.3096, 7.3089, 7.3112, 7.3105, 7.3133, 7.316, 7.3154, 7.3145, 7.3138, 7.313, 7.3155, 7.3187, 7.3225, 7.3219, 7.3244, 7.3267, 7.3261, 7.3253, 7.3242, 7.3233, 7.3255, 7.3279, 7.3272, 7.3265, 7.326, 7.3254, 7.325, 7.3271, 7.3262, 7.3283, 7.3274, 7.3265, 7.3253, 7.3246, 7.3267, 7.326, 7.3256, 7.3251, 7.3255, 7.3243, 7.3236, 7.3225, 7.3214, 7.321, 7.3207, 7.3206, 7.3198, 7.3193, 7.319, 7.3184, 7.3175, 7.3169, 7.316, 7.3181, 7.3203, 7.3194, 7.3214, 7.3204, 7.3201, 7.3192, 7.3187, 7.3178, 7.3201, 7.3199, 7.3189, 7.3183, 7.3177, 7.3165, 7.3129, 7.3119, 7.3142, 7.3133, 7.3122, 7.3116, 7.311, 7.3106, 7.3095, 7.3115, 7.3109, 7.31, 7.3091, 7.3085, 7.3075, 7.3098, 7.3104, 7.3094, 7.3117, 7.3108, 7.3104, 7.3127, 7.312, 7.3119, 7.3109, 7.3128, 7.3118, 7.3117, 7.3135, 7.3127, 7.3148, 7.3141, 7.3159, 7.3151, 7.3171, 7.3162, 7.3153, 7.3144, 7.3163, 7.3159, 7.3149, 7.3139, 7.3133, 7.3124, 7.3117, 7.3138, 7.3133, 7.3122, 7.3115, 7.3114, 7.3105, 7.3128, 7.3118, 7.3112, 7.3109, 7.31, 7.3094, 7.3108, 7.3109, 7.3103, 7.3097, 7.3087, 7.3079, 7.307, 7.3091, 7.3113, 7.3105, 7.3128, 7.3117, 7.3109, 7.3133, 7.3126, 7.3123, 7.3116, 7.3107, 7.3132, 7.313, 7.3123, 7.3118, 7.3109, 7.3108, 7.3109, 7.3102, 7.3101, 7.3094, 7.3115, 7.3106, 7.3097, 7.3118, 7.3109, 7.3102, 7.3095, 7.3119, 7.3136, 7.3128, 7.3117, 7.3169, 7.3164, 7.3155, 7.3157, 7.3152, 7.3142, 7.3135, 7.3128, 7.3183, 7.3174, 7.3217, 7.3209, 7.32, 7.3223, 7.3217, 7.3212, 7.3207, 7.3229, 7.325, 7.324, 7.3231, 7.3225, 7.3244, 7.3235, 7.3233, 7.3225, 7.3247, 7.3239, 7.3239, 7.326, 7.325, 7.3242, 7.3237, 7.3231, 7.3223, 7.3214, 7.3208, 7.3228, 7.3221, 7.3213, 7.3204, 7.3195, 7.3186, 7.3177, 7.3198, 7.3193, 7.3186, 7.3179, 7.3172, 7.3165, 7.3159, 7.3153, 7.315, 7.3148, 7.3142, 7.3165, 7.3158, 7.3177, 7.3177, 7.3175, 7.3169, 7.3169, 7.3162, 7.3152, 7.3174, 7.3197, 7.3192, 7.3183, 7.3175, 7.3169, 7.3161, 7.313, 7.3148, 7.3139, 7.3134, 7.3127, 7.3122, 7.3145, 7.3135, 7.3132, 7.3153, 7.3149, 7.3152, 7.3144, 7.3133, 7.3126, 7.312, 7.3113, 7.3136, 7.3126, 7.312, 7.3141, 7.3139, 7.3139, 7.313, 7.3122, 7.3118, 7.3113, 7.3111, 7.3103, 7.3101, 7.312, 7.3139, 7.3133, 7.3126, 7.3117, 7.3107, 7.3099, 7.3092, 7.3096, 7.3086, 7.3136, 7.3129, 7.3154, 7.3162, 7.3187, 7.3179, 7.3173, 7.3166, 7.3157, 7.3148, 7.312, 7.3132, 7.3124, 7.3142, 7.3136, 7.3155, 7.3177, 7.3174, 7.3167, 7.3158, 7.3157, 7.3178, 7.3176, 7.3234, 7.3227, 7.3226, 7.3224, 7.3215, 7.3207, 7.3202, 7.3194, 7.3185, 7.3184, 7.3175, 7.3165, 7.3159, 7.3152, 7.3173, 7.317, 7.3165, 7.3157, 7.3149, 7.3143, 7.3134, 7.3132, 7.3122, 7.3113, 7.3131, 7.3151, 7.3142, 7.3134, 7.3128, 7.3118, 7.3136, 7.3154, 7.3122, 7.3116, 7.3108, 7.31, 7.3096, 7.3091, 7.3109, 7.3128, 7.3119, 7.3109, 7.3099, 7.3091, 7.3087, 7.3079, 7.3071, 7.3068, 7.3063, 7.3055, 7.3046, 7.3038, 7.3032, 7.3024, 7.3042, 7.3034, 7.3027, 7.302, 7.3015, 7.3007, 7.2998, 7.299, 7.2982, 7.2972, 7.2963, 7.2953, 7.2944, 7.2935, 7.2929, 7.2947, 7.2938, 7.2928, 7.2928, 7.2947, 7.2939, 7.2931, 7.2923, 7.2914, 7.291, 7.2879, 7.2871, 7.2863, 7.2854, 7.2849, 7.284, 7.2834, 7.2827, 7.2817, 7.2809, 7.28, 7.2793, 7.2785, 7.2775, 7.2772, 7.2792, 7.2788, 7.2783, 7.2775, 7.2767, 7.276, 7.2755, 7.2756, 7.2777, 7.277, 7.2764, 7.2755, 7.2748, 7.2741, 7.2734, 7.2728, 7.2726, 7.2721, 7.2717, 7.2709, 7.2703, 7.2697, 7.2693, 7.2711, 7.2729, 7.2724, 7.2717, 7.2709, 7.2729, 7.2723, 7.2739, 7.2713, 7.271, 7.2706, 7.2699, 7.2692, 7.2683, 7.2675, 7.2693, 7.2688, 7.2707, 7.2699, 7.2691, 7.2708, 7.27, 7.27, 7.2698, 7.2715, 7.2711, 7.2706, 7.2697, 7.2693, 7.2711, 7.2704, 7.2697, 7.2719, 7.2713, 7.273, 7.2746, 7.2744, 7.2739, 7.273, 7.2746, 7.2737, 7.2755, 7.2771, 7.2767, 7.2767, 7.276, 7.2751, 7.2749, 7.2742, 7.2741, 7.2732, 7.2731, 7.2728, 7.2727, 7.2721, 7.2723, 7.2765, 7.2766, 7.285, 7.2849, 7.2841, 7.2835, 7.2852, 7.2871, 7.2889, 7.2879, 7.2872, 7.2868, 7.286, 7.2854, 7.285, 7.2869, 7.2862, 7.2853, 7.2847, 7.2865, 7.2858, 7.2851, 7.2849, 7.2844, 7.2835, 7.2829, 7.2823, 7.282, 7.2847, 7.2866, 7.2858, 7.2849, 7.2865, 7.286, 7.2859, 7.2878, 7.2871, 7.2866, 7.2865, 7.2893, 7.2889, 7.2908, 7.2901, 7.2894, 7.2886, 7.2903, 7.2899, 7.2897, 7.2891, 7.289, 7.2883, 7.2877, 7.287, 7.2864, 7.2859, 7.2851, 7.2843, 7.2842, 7.2834, 7.2832, 7.2846, 7.2861, 7.2857, 7.2851, 7.2844, 7.2863, 7.2855, 7.2852, 7.2844, 7.2837, 7.2831, 7.2827, 7.2842, 7.2839, 7.2835, 7.2833, 7.2829, 7.282, 7.2836, 7.2828, 7.2822, 7.2816, 7.2812, 7.2829, 7.2845, 7.2836, 7.2829, 7.2822, 7.2815, 7.2807, 7.2799, 7.2771, 7.2762, 7.2754, 7.2772, 7.2788, 7.2785, 7.2779, 7.2771, 7.2765, 7.2779, 7.2773, 7.2765, 7.2782, 7.2774, 7.2771, 7.2765, 7.276, 7.2776, 7.277, 7.2786, 7.2778, 7.277, 7.2762, 7.2754, 7.2745, 7.2738, 7.2754, 7.2747, 7.274, 7.2758, 7.2749, 7.2744, 7.2735, 7.2726, 7.2742, 7.2738, 7.2801, 7.282, 7.2838, 7.283, 7.2846, 7.2838, 7.2834, 7.2828, 7.2873, 7.2896, 7.2893, 7.2914, 7.2907, 7.2899, 7.294, 7.2943, 7.2937, 7.2929, 7.2925, 7.2919, 7.2911, 7.2904, 7.29, 7.2895, 7.2891, 7.2885, 7.2877, 7.287, 7.2889, 7.2882, 7.2874, 7.2867, 7.2866, 7.288, 7.288, 7.2878, 7.2921, 7.2936, 7.2934, 7.296, 7.2977, 7.2971, 7.2989, 7.2989, 7.2983, 7.2978, 7.2974, 7.2991, 7.2983, 7.3001, 7.2999, 7.2995, 7.2994, 7.3009, 7.3023, 7.3016, 7.3009, 7.3027, 7.3021, 7.3041, 7.3034, 7.3053, 7.3046, 7.3045, 7.3061, 7.3053, 7.3025, 7.3018, 7.3033, 7.3026, 7.3021, 7.3016, 7.3016, 7.3018, 7.3015, 7.301, 7.3059, 7.3051, 7.3046, 7.3038, 7.3034, 7.3031, 7.3024, 7.3038, 7.3033, 7.3025, 7.3019, 7.3011, 7.3033, 7.3049, 7.3044, 7.3062, 7.3057, 7.305, 7.3021, 7.3013, 7.3007, 7.3001, 7.2994, 7.3008, 7.3005, 7.2998, 7.2992, 7.2988, 7.298, 7.2973, 7.2966, 7.296, 7.2954, 7.2949, 7.2941, 7.2956, 7.2953, 7.2945, 7.2939, 7.2955, 7.2948, 7.2942, 7.2945, 7.2939, 7.2933, 7.293, 7.2924, 7.2926, 7.295, 7.2966, 7.2961, 7.2956, 7.2948, 7.2942, 7.2934, 7.2929, 7.2925, 7.2918, 7.2933, 7.2949, 7.2946, 7.294, 7.2934, 7.295, 7.2966, 7.2962, 7.2955, 7.295, 7.2945, 7.2945, 7.2937, 7.2973, 7.2966, 7.2982, 7.2974, 7.3031, 7.3027, 7.3023, 7.3015, 7.3007, 7.3022, 7.302, 7.3035, 7.3032, 7.3029, 7.3044, 7.3037, 7.3032, 7.3027, 7.3023, 7.3016, 7.3013, 7.3005, 7.3001, 7.3002, 7.2996, 7.2992, 7.2989, 7.2982, 7.2975, 7.2967, 7.2967, 7.296, 7.2953, 7.2948, 7.2948, 7.2941, 7.2934, 7.2957, 7.2956, 7.2976, 7.2998, 7.3014, 7.3033, 7.3025, 7.3018, 7.3057, 7.3055, 7.305, 7.3043, 7.3036, 7.3035, 7.3027, 7.304, 7.3034, 7.3027, 7.3023, 7.3021, 7.3014, 7.3032, 7.3026, 7.3019, 7.3035, 7.3029, 7.3042, 7.3036, 7.3037, 7.303, 7.3023, 7.3018, 7.301, 7.3003, 7.2997, 7.2989, 7.2982, 7.2975, 7.2989, 7.2981, 7.2976, 7.2971, 7.2966, 7.2959, 7.2951, 7.2951, 7.2945, 7.2961, 7.2958, 7.2952, 7.2968, 7.2967, 7.2962, 7.2958, 7.2956, 7.2966, 7.2981, 7.2978, 7.2971, 7.2964, 7.2957, 7.2953, 7.2993, 7.2986, 7.2982, 7.2974, 7.2967, 7.2985, 7.3002, 7.2997, 7.299, 7.2985, 7.2978, 7.2994, 7.3024, 7.302, 7.3037, 7.3031, 7.3027, 7.3027, 7.302, 7.3015, 7.3008, 7.3023, 7.3016, 7.301, 7.3004, 7.2978, 7.2971, 7.2965, 7.2941, 7.2934, 7.2928, 7.2925, 7.2924, 7.2918, 7.2913, 7.2913, 7.2905, 7.2897, 7.2933, 7.2932, 7.2926, 7.2942, 7.2935, 7.2932, 7.2925, 7.2921, 7.2913, 7.2908, 7.2903, 7.2896, 7.2909, 7.2905, 7.2902, 7.2894, 7.2888, 7.2864, 7.2878, 7.2873, 7.2888, 7.2901, 7.2914, 7.2906, 7.2899, 7.2896, 7.2982, 7.2996, 7.2989, 7.3003, 7.2996, 7.2989, 7.2983, 7.2996, 7.2993, 7.3016, 7.3031, 7.3027, 7.3023, 7.3016, 7.3013, 7.3007, 7.3002, 7.2996, 7.2995, 7.299, 7.2985, 7.298, 7.2974, 7.2989, 7.2985, 7.2978, 7.2953, 7.2948, 7.2942, 7.2943, 7.2939, 7.2935, 7.2929, 7.2921, 7.2914, 7.291, 7.2904, 7.29, 7.2898, 7.2892, 7.2868, 7.2881, 7.2883, 7.2876, 7.2869, 7.2848, 7.2841, 7.2849, 7.2844, 7.2838, 7.2853, 7.2853, 7.2848, 7.2842, 7.2839, 7.2838, 7.2835, 7.2829, 7.2847, 7.2842, 7.2858, 7.2875, 7.2872, 7.2866, 7.2863, 7.2856, 7.2981, 7.2978, 7.2972, 7.2964, 7.2959, 7.2951, 7.2944, 7.2936, 7.2929, 7.2924, 7.2942, 7.2935, 7.2932, 7.2928, 7.2921, 7.2916, 7.291, 7.2904, 7.2898, 7.2911, 7.2907, 7.2903, 7.2917, 7.291, 7.2903, 7.2898, 7.2891, 7.2884, 7.2884, 7.2899, 7.2896, 7.2891, 7.2887, 7.288, 7.2875, 7.287, 7.2867, 7.287, 7.2865, 7.2863, 7.2858, 7.2853, 7.2853, 7.2848, 7.2843, 7.2956, 7.297, 7.2965, 7.296, 7.2956, 7.296, 7.2956, 7.2951, 7.2966, 7.296, 7.2955, 7.295, 7.2947, 7.2963, 7.2957, 7.2951, 7.2947, 7.2963, 7.2977, 7.2971, 7.2967, 7.296, 7.2976, 7.2973, 7.2966, 7.2981, 7.2997, 7.2989, 7.2982, 7.2982, 7.2976, 7.297, 7.2966, 7.2963, 7.2956, 7.2969, 7.2963, 7.2956, 7.2951, 7.2945, 7.2923, 7.2917, 7.2911, 7.2948, 7.2962, 7.2957, 7.2972, 7.2968, 7.2961, 7.2955, 7.2949, 7.2943, 7.2937, 7.293, 7.2943, 7.2938, 7.2952, 7.2945, 7.2938, 7.2935, 7.2928, 7.2925, 7.2918, 7.2916, 7.2933, 7.2929, 7.294, 7.2955, 7.295, 7.2946, 7.2939, 7.2933, 7.2926, 7.2919, 7.2915, 7.293, 7.2936, 7.2933, 7.2928, 7.2922, 7.2916, 7.291, 7.2903, 7.29, 7.2914, 7.2908, 7.2903, 7.2896, 7.2889, 7.2886, 7.2882, 7.2896, 7.2889, 7.2887, 7.2882, 7.2877, 7.289, 7.2884, 7.2879, 7.2891, 7.2903, 7.2916, 7.291, 7.2904, 7.2937, 7.2932, 7.2927, 7.2921, 7.2934, 7.2967, 7.2961, 7.2956, 7.295, 7.2944, 7.2957, 7.2952, 7.2945, 7.2939, 7.2938, 7.2936, 7.2951, 7.2963, 7.2961, 7.2975, 7.2976, 7.297, 7.2966, 7.2959, 7.2953, 7.2949, 7.2947, 7.2941, 7.294, 7.2956, 7.295, 7.2946, 7.296, 7.3007, 7.3, 7.2995, 7.299, 7.2983, 7.298, 7.2973, 7.2987, 7.2981, 7.2994, 7.299, 7.2983, 7.2977, 7.2989, 7.3001, 7.2995, 7.2989, 7.2983, 7.2978, 7.2975, 7.2968, 7.2964, 7.2959, 7.2954, 7.2947, 7.294, 7.2934, 7.295, 7.2948, 7.2944, 7.2938, 7.2952, 7.2929, 7.2943, 7.2937, 7.2936, 7.295, 7.2944, 7.2938, 7.2935, 7.293, 7.2926, 7.2922, 7.2918, 7.2911, 7.2906, 7.2901, 7.2906, 7.2909, 7.2904, 7.2897, 7.2896, 7.2889, 7.2902, 7.29, 7.2896, 7.2908, 7.2907, 7.292, 7.2934, 7.2931, 7.2925, 7.2923, 7.2916, 7.2929, 7.2926, 7.2922, 7.2915, 7.291, 7.2923, 7.2918, 7.2914, 7.2908, 7.2903, 7.2897, 7.2891, 7.2918, 7.2913, 7.2911, 7.2905, 7.2898, 7.2893, 7.2887, 7.288, 7.2875, 7.2873, 7.2884, 7.2878, 7.2873, 7.2868, 7.2864, 7.2858, 7.2854, 7.2853, 7.285, 7.2851, 7.2852, 7.2846, 7.2839, 7.2833, 7.2846, 7.2919, 7.295, 7.2945, 7.2949, 7.2943, 7.2923, 7.2939, 7.2951, 7.2947, 7.3009, 7.3016, 7.3011, 7.3008, 7.3003, 7.3033, 7.3016, 7.301, 7.3022, 7.3063, 7.3058, 7.3056, 7.3051, 7.3048, 7.3047, 7.3044, 7.3041, 7.3035, 7.303, 7.3027, 7.3026, 7.3019, 7.3031, 7.3025, 7.3021, 7.3017, 7.3014, 7.3027, 7.302, 7.3033, 7.3027, 7.3027, 7.3021, 7.3035, 7.3033, 7.3027, 7.3021, 7.3021, 7.3015, 7.3012, 7.3009, 7.3005, 7.3003, 7.2998, 7.2992, 7.2993, 7.2987, 7.2982, 7.2976, 7.2988, 7.3, 7.2994, 7.2989, 7.2985, 7.2996, 7.2991, 7.2987, 7.2981, 7.2976, 7.2972, 7.2966, 7.296, 7.2955, 7.2951, 7.2947, 7.2945, 7.2939, 7.2936, 7.2932, 7.2928, 7.2921, 7.2914, 7.2925, 7.2919, 7.2914, 7.2908, 7.2903, 7.2916, 7.2929, 7.293, 7.2927, 7.2924, 7.2937, 7.2933, 7.2945, 7.2938, 7.2931, 7.2928, 7.2923, 7.2916, 7.2927, 7.2926, 7.2925, 7.3007, 7.3006, 7.3001, 7.2999, 7.2996, 7.3009, 7.3005, 7.3003, 7.3, 7.2995, 7.2989, 7.2984, 7.2978, 7.299, 7.2986, 7.2981, 7.2976, 7.297, 7.2966, 7.296, 7.2954, 7.2949, 7.2947, 7.2943, 7.2941, 7.2936, 7.2934, 7.2928, 7.2922, 7.2916, 7.2911, 7.2906, 7.2901, 7.2897, 7.2891, 7.2889, 7.2884, 7.2896, 7.2891, 7.2886, 7.2884, 7.2866, 7.286, 7.2881, 7.2881, 7.2894, 7.289, 7.2903, 7.2915, 7.2912, 7.2907, 7.2903, 7.2901, 7.2895, 7.2894, 7.2928, 7.2924, 7.2918, 7.2928, 7.2922, 7.2916, 7.2911, 7.2922, 7.2918, 7.2922, 7.2919, 7.2898, 7.291, 7.2904, 7.2902, 7.2897, 7.2891, 7.2885, 7.288, 7.2876, 7.2887, 7.2882, 7.2895, 7.289, 7.2884, 7.2878, 7.2874, 7.2871, 7.285, 7.2831, 7.281, 7.2808, 7.2802, 7.2798, 7.281, 7.282, 7.2832, 7.2844, 7.2839, 7.2836, 7.2832, 7.2827, 7.2821, 7.2817, 7.2814, 7.2812, 7.2806, 7.28, 7.2811, 7.2805, 7.2799, 7.2794, 7.279, 7.2785, 7.2781, 7.2775, 7.2769, 7.2764, 7.2758, 7.2755, 7.2751, 7.2745, 7.2743, 7.2755, 7.2751, 7.2746, 7.2744, 7.2739, 7.2734, 7.273, 7.2742, 7.274, 7.2736, 7.2718, 7.2715, 7.2729, 7.2739, 7.2751, 7.2748, 7.2761, 7.2773, 7.277, 7.2768, 7.2762, 7.2774, 7.2775, 7.2771, 7.2768, 7.2766, 7.2763, 7.2761, 7.2758, 7.2754, 7.275, 7.2744, 7.2738, 7.2749, 7.2748, 7.2743, 7.2754, 7.2751, 7.2745, 7.2757, 7.2754, 7.2748, 7.276, 7.2756, 7.2776, 7.2772, 7.2754, 7.2748, 7.2744, 7.2738, 7.2732, 7.2729, 7.2726, 7.2762, 7.2757, 7.2753, 7.2754, 7.275, 7.2745, 7.2742, 7.2738, 7.2734, 7.273, 7.274, 7.2734, 7.2749, 7.2745, 7.2755, 7.2751, 7.2747, 7.2743, 7.274, 7.2735, 7.2731, 7.2727, 7.2723, 7.2705, 7.2701, 7.2695, 7.2696, 7.2692, 7.2687, 7.2682, 7.2695, 7.269, 7.2702, 7.2697, 7.2694, 7.269, 7.2702, 7.2714, 7.271, 7.2705, 7.27, 7.2696, 7.2691, 7.2687, 7.2685, 7.268, 7.2674, 7.2672, 7.2667, 7.2678, 7.2676, 7.2683, 7.268, 7.2675, 7.267, 7.2682, 7.2694, 7.2691, 7.2703, 7.2698, 7.2699, 7.2696, 7.2693, 7.2692, 7.2688, 7.2687, 7.2684, 7.2678, 7.2672, 7.2668, 7.2663, 7.2659, 7.2655, 7.265, 7.2665, 7.2662, 7.2673, 7.2698, 7.2692, 7.2687, 7.2682, 7.2679, 7.269, 7.2685, 7.2694, 7.2691, 7.2685, 7.268, 7.2693, 7.2687, 7.2699, 7.2694, 7.2689, 7.2688, 7.2685, 7.2785, 7.2788, 7.2801, 7.2798, 7.2809, 7.2805, 7.28, 7.2798, 7.2797, 7.2798, 7.2793, 7.2788, 7.2784, 7.2779, 7.2774, 7.2788, 7.2801, 7.2798, 7.2793, 7.2791, 7.2787, 7.2781, 7.2776, 7.2788, 7.2784, 7.2781, 7.2775, 7.2769, 7.2768, 7.2768, 7.2765, 7.2778, 7.2773, 7.2772, 7.2767, 7.2765, 7.2841, 7.2836, 7.2847, 7.2842, 7.2839, 7.2835, 7.2833, 7.2828, 7.2839, 7.2834, 7.2829, 7.2823, 7.2822, 7.2821, 7.2819, 7.2815, 7.2812, 7.2806, 7.2802, 7.2796, 7.2808, 7.2804, 7.2803, 7.2815, 7.281, 7.2823, 7.2819, 7.2831, 7.2841, 7.2837, 7.2832, 7.2827, 7.2822, 7.2819, 7.2814, 7.2828, 7.2826, 7.2824, 7.282, 7.2816, 7.2812, 7.2808, 7.2803, 7.2799, 7.2801, 7.2799, 7.2794, 7.279, 7.2806, 7.2802, 7.2796, 7.2794, 7.279, 7.2786, 7.2784, 7.2798, 7.2795, 7.2806, 7.2808, 7.2803, 7.2798, 7.2796, 7.2792, 7.2787, 7.2786, 7.2782, 7.2811, 7.2807, 7.2804, 7.2805, 7.28, 7.2795, 7.279, 7.2802, 7.2797, 7.2796, 7.2792, 7.2787, 7.2799, 7.2795, 7.2794, 7.2789, 7.2786, 7.278, 7.2776, 7.2772, 7.2783, 7.2795, 7.2792, 7.2787, 7.2799, 7.2794, 7.282, 7.2819, 7.2831, 7.2844, 7.2841, 7.2839, 7.2834, 7.2829, 7.284, 7.2835, 7.2832, 7.2843, 7.284, 7.2834, 7.2831, 7.2826, 7.2821, 7.2818, 7.2813, 7.2811, 7.2806, 7.2801, 7.2802, 7.2797, 7.2793, 7.279, 7.2806, 7.2801, 7.28, 7.2795, 7.2791, 7.279, 7.2787, 7.2783, 7.2781, 7.2775, 7.277, 7.2765, 7.276, 7.2756, 7.2755, 7.2753, 7.2749, 7.2761, 7.2755, 7.2751, 7.2761, 7.2786, 7.2783, 7.2779, 7.2775, 7.2771, 7.2784, 7.2778, 7.2772, 7.2784, 7.2797, 7.2793, 7.2789, 7.2785, 7.2795, 7.2806, 7.2817, 7.2814, 7.2812, 7.2808, 7.2806, 7.2801, 7.2795, 7.2791, 7.2787, 7.2782, 7.2781, 7.2779, 7.2777, 7.276, 7.2742, 7.2753, 7.2752, 7.2749, 7.2745, 7.2741, 7.2752, 7.2748, 7.2761, 7.2755, 7.275, 7.2746, 7.274, 7.275, 7.2761, 7.2755, 7.2751, 7.2747, 7.2757, 7.2753, 7.2749, 7.2745, 7.2743, 7.2738, 7.2733, 7.2728, 7.2724, 7.2721, 7.2733, 7.2745, 7.2743, 7.2741, 7.2737, 7.2732, 7.2734, 7.2731, 7.2726, 7.2721, 7.2717, 7.2712, 7.2707, 7.2701, 7.2711, 7.2706, 7.2716, 7.2711, 7.2693, 7.2688, 7.2686, 7.2681, 7.2693, 7.2689, 7.2687, 7.2683, 7.2678, 7.2674, 7.2672, 7.2667, 7.2677, 7.2675, 7.2674, 7.2687, 7.2683, 7.268, 7.2679, 7.269, 7.2688, 7.2685, 7.268, 7.2675, 7.2671, 7.2666, 7.2663, 7.2662, 7.2659, 7.2669, 7.2664, 7.266, 7.2655, 7.2653, 7.2649, 7.2647, 7.2642, 7.2642, 7.2637, 7.2632, 7.2628, 7.2625, 7.2638, 7.2635, 7.2666, 7.2662, 7.2671, 7.2671, 7.2667, 7.2663, 7.2674, 7.267, 7.2681, 7.2692, 7.2703, 7.2698, 7.2693, 7.2705, 7.2702, 7.2699, 7.2697, 7.2692, 7.2703, 7.2699, 7.2694, 7.269, 7.2699, 7.2716, 7.2712, 7.2707, 7.2737, 7.2733, 7.2728, 7.2725, 7.2725, 7.2722, 7.2733, 7.2729, 7.2727, 7.2727, 7.2728, 7.2739, 7.2737, 7.2732, 7.2727, 7.2725, 7.272, 7.2715, 7.2715, 7.2735, 7.2735, 7.2731, 7.273, 7.2729, 7.2725, 7.2738, 7.2736, 7.2732, 7.2731, 7.273, 7.2726, 7.2724, 7.272, 7.2716, 7.2713, 7.2722, 7.272, 7.2716, 7.2711, 7.272, 7.2715, 7.2711, 7.2707, 7.2788, 7.2786, 7.2781, 7.2776, 7.2772, 7.2768, 7.2764, 7.276, 7.2755, 7.2752, 7.2747, 7.2756, 7.2751, 7.2746, 7.2741, 7.2738, 7.2733, 7.2728, 7.2738, 7.2737, 7.2747, 7.2742, 7.2737, 7.2735, 7.2733, 7.2731, 7.2728, 7.2726, 7.2722, 7.2731, 7.2728, 7.2723, 7.2721, 7.2715, 7.271, 7.2705, 7.2702, 7.2697, 7.2707, 7.2702, 7.2697, 7.2693, 7.2691, 7.2688, 7.2684, 7.268, 7.2676, 7.2671, 7.2668, 7.2664, 7.266, 7.2658, 7.2653, 7.265, 7.2645, 7.2641, 7.2638, 7.2635, 7.2633, 7.263, 7.2614, 7.2611, 7.2622, 7.2617, 7.2612, 7.2609, 7.2605, 7.26, 7.2612, 7.2607, 7.2602, 7.2597, 7.2592, 7.2602, 7.2599, 7.2611, 7.2608, 7.2605, 7.26, 7.2596, 7.2591, 7.2587, 7.2582, 7.2578, 7.2573, 7.2584, 7.2583, 7.2594, 7.2591, 7.2587, 7.2584, 7.2579, 7.259, 7.26, 7.2597, 7.2594, 7.2592, 7.2588, 7.2583, 7.2581, 7.2592, 7.2587, 7.2583, 7.2579, 7.2589, 7.2585, 7.2583, 7.2597, 7.2607, 7.2604, 7.2614, 7.2611, 7.2606, 7.2602, 7.2612, 7.2608, 7.2605, 7.2616, 7.2612, 7.2608, 7.2605, 7.26, 7.2597, 7.2607, 7.2603, 7.2599, 7.2595, 7.2591, 7.2586, 7.2581, 7.2576, 7.2575, 7.2571, 7.2566, 7.2565, 7.2564, 7.2559, 7.2555, 7.255, 7.2547, 7.2544, 7.2541, 7.2543, 7.2538, 7.2536, 7.2532, 7.253, 7.254, 7.2543, 7.254, 7.2549, 7.255, 7.2546, 7.2542, 7.2538, 7.2537, 7.2534, 7.2532, 7.2527, 7.2523, 7.2519, 7.2514, 7.2538, 7.2533, 7.2529, 7.2527, 7.2522, 7.2518, 7.2514, 7.2509, 7.2506, 7.2504, 7.2502, 7.2501, 7.2537, 7.2535, 7.253, 7.2528, 7.2525, 7.2521, 7.2517, 7.2512, 7.2509, 7.252, 7.2517, 7.2526, 7.2535, 7.2531, 7.2527, 7.2524, 7.2533, 7.2531, 7.2526, 7.2521, 7.2518, 7.2513, 7.2509, 7.2506, 7.2502, 7.2501, 7.2499, 7.2495, 7.2492, 7.2501, 7.2497, 7.2496, 7.2495, 7.2491, 7.2489, 7.2484, 7.248, 7.2475, 7.247, 7.2468, 7.2466, 7.2475, 7.2496, 7.2496, 7.2506, 7.2501, 7.2498, 7.2494, 7.2491, 7.2488, 7.2486, 7.2482, 7.2479, 7.249, 7.2499, 7.2521, 7.2517, 7.2528, 7.2525, 7.2522, 7.252, 7.2518, 7.2516, 7.2511, 7.2507, 7.2503, 7.2492, 7.2502, 7.25, 7.2499, 7.251, 7.2507, 7.2517, 7.2514, 7.2524, 7.2522, 7.2517, 7.2526, 7.2521, 7.2546, 7.2543, 7.254, 7.2536, 7.2547, 7.2542, 7.2553, 7.2561, 7.2571, 7.2568, 7.2564, 7.2562, 7.256, 7.2557, 7.2554, 7.2619, 7.2642, 7.2639, 7.2635, 7.2646, 7.2642, 7.2639, 7.2635, 7.263, 7.2629, 7.2633, 7.263, 7.2626, 7.2622, 7.262, 7.2616, 7.2613, 7.2611, 7.2608, 7.2603, 7.26, 7.2596, 7.2607, 7.2604, 7.2599, 7.2595, 7.2605, 7.2601, 7.2596, 7.2607, 7.2617, 7.2612, 7.2607, 7.2603, 7.2598, 7.2597, 7.2596, 7.2591, 7.2589, 7.2584, 7.2579, 7.2574, 7.2569, 7.2569, 7.2566, 7.2563, 7.2561, 7.2557, 7.2553, 7.255, 7.2546, 7.2542, 7.2528, 7.2514, 7.2514, 7.2509, 7.2506, 7.2505, 7.252, 7.2515, 7.2524, 7.2519, 7.2516, 7.2514, 7.251, 7.2532, 7.253, 7.2526, 7.2536, 7.2533, 7.253, 7.2528, 7.2524, 7.2525, 7.2523, 7.2534, 7.2531, 7.2526, 7.2522, 7.2521, 7.2519, 7.2515, 7.2524, 7.2521, 7.2517, 7.2513, 7.251, 7.252, 7.2515, 7.2499, 7.2496, 7.2493, 7.2488, 7.2511, 7.2507, 7.2503, 7.2503, 7.25, 7.2517, 7.2513, 7.2509, 7.2505, 7.2503, 7.2517, 7.2527, 7.2523, 7.2522, 7.2518, 7.2514, 7.2512, 7.2507, 7.2503, 7.2499, 7.2495, 7.2505, 7.2502, 7.2498, 7.2496, 7.2505, 7.2501, 7.251, 7.2508, 7.2504, 7.2503, 7.2512, 7.2512, 7.2496, 7.2485, 7.2481, 7.2477, 7.2473, 7.2468, 7.2464, 7.2473, 7.247, 7.2478, 7.2474, 7.2483, 7.2479, 7.2475, 7.246, 7.2457, 7.2466, 7.2475, 7.2474, 7.247, 7.2468, 7.2464, 7.246, 7.2456, 7.2452, 7.2462, 7.2446, 7.2431, 7.2427, 7.2424, 7.242, 7.242, 7.2406, 7.2391, 7.24, 7.2407, 7.2403, 7.2399, 7.2408, 7.2406, 7.2402, 7.2401, 7.241, 7.2408, 7.2419, 7.242, 7.2417, 7.2413, 7.2422, 7.2433, 7.243, 7.2427, 7.2424, 7.242, 7.243, 7.244, 7.2449, 7.2447, 7.2445, 7.2441, 7.2438, 7.2434, 7.2429, 7.2425, 7.2422, 7.2417, 7.2401, 7.241, 7.2408, 7.2419, 7.2415, 7.2412, 7.2421, 7.242, 7.2416, 7.2426, 7.2435, 7.243, 7.2425, 7.2423, 7.242, 7.2416, 7.2415, 7.2411, 7.2407, 7.2405, 7.239, 7.2386, 7.2381, 7.2368, 7.2364, 7.2361, 7.2356, 7.2352, 7.2348, 7.2346, 7.2343, 7.2338, 7.2336, 7.2332, 7.2329, 7.2337, 7.2348, 7.2346, 7.2345, 7.2354, 7.2419, 7.243, 7.2428, 7.2424, 7.2427, 7.2423, 7.2437, 7.2433, 7.243, 7.2427, 7.2452, 7.2448, 7.2443, 7.244, 7.2436, 7.2433, 7.2431, 7.2427, 7.2436, 7.2432, 7.243, 7.2427, 7.2423, 7.2432, 7.2429, 7.2427, 7.2425, 7.2434, 7.2431, 7.2427, 7.2425, 7.2425, 7.2426, 7.2423, 7.2432, 7.2428, 7.2428, 7.2424, 7.242, 7.2421, 7.2416, 7.2412, 7.242, 7.2417, 7.2405, 7.2404, 7.2401, 7.2397, 7.2393, 7.2389, 7.2385, 7.2383, 7.2382, 7.2405, 7.24, 7.2421, 7.2419, 7.2427, 7.2423, 7.242, 7.2416, 7.2413, 7.2409, 7.2408, 7.2404, 7.2413, 7.2408, 7.2404, 7.2412, 7.2408, 7.2403, 7.2399, 7.2409, 7.2406, 7.2403, 7.2399, 7.2396, 7.2392, 7.24, 7.241, 7.2418, 7.2416, 7.2413, 7.241, 7.2406, 7.2404, 7.2401, 7.241, 7.2397, 7.2393, 7.2392, 7.2389, 7.2397, 7.2395, 7.2391, 7.2386, 7.2384, 7.2383, 7.238, 7.2375, 7.2372, 7.2368, 7.2364, 7.2361, 7.2359, 7.2354, 7.235, 7.2359, 7.2355, 7.2353, 7.2348, 7.2344, 7.2352, 7.235, 7.24, 7.2398, 7.2394, 7.239, 7.24, 7.2396, 7.2392, 7.2388, 7.2384, 7.2392, 7.2388, 7.2389, 7.2385, 7.2383, 7.2383, 7.2382, 7.2378, 7.2376, 7.2372, 7.2371, 7.2372, 7.2382, 7.2432, 7.2443, 7.2454, 7.2451, 7.2448, 7.2445, 7.2441, 7.2438, 7.2435, 7.2432, 7.2428, 7.2424, 7.2421, 7.2417, 7.2416, 7.2414, 7.2411, 7.2418, 7.2415, 7.2413, 7.2411, 7.2421, 7.2418, 7.2414, 7.2411, 7.241, 7.2397, 7.2394, 7.2402, 7.2398, 7.2394, 7.2393, 7.2394, 7.2404, 7.24, 7.241, 7.2395, 7.2391, 7.2388, 7.2385, 7.2382, 7.2379, 7.2376, 7.2373, 7.2382, 7.2391, 7.2399, 7.2408, 7.2405, 7.2403, 7.2399, 7.2387, 7.2397, 7.2385, 7.2381, 7.2398, 7.2395, 7.2393, 7.2396, 7.2398, 7.2408, 7.2407, 7.2404, 7.2403, 7.2399, 7.2397, 7.2393, 7.2402, 7.24, 7.2398, 7.2394, 7.2391, 7.2387, 7.2385, 7.2394, 7.239, 7.2388, 7.2397, 7.2385, 7.2393, 7.239, 7.2399, 7.2408, 7.2405, 7.2401, 7.2398, 7.2394, 7.2391, 7.2387, 7.2383, 7.2392, 7.2401, 7.2399, 7.2408, 7.2407, 7.2405, 7.2403, 7.2399, 7.2398, 7.2398, 7.2383, 7.2379, 7.2387, 7.2395, 7.2391, 7.2387, 7.2386, 7.2382, 7.2389, 7.2386, 7.2384, 7.238, 7.2377, 7.2373, 7.2369, 7.2369, 7.2379, 7.2389, 7.2397, 7.2393, 7.239, 7.2386, 7.2385, 7.2381, 7.239, 7.2386, 7.2383, 7.2379, 7.2375, 7.2374, 7.2372, 7.2371, 7.2369, 7.2378, 7.2389, 7.2389, 7.2385, 7.2393, 7.2389, 7.2386, 7.2383, 7.2381, 7.2381, 7.2392, 7.2389, 7.2386, 7.2383, 7.238, 7.2377, 7.2376, 7.2377, 7.2377, 7.2376, 7.2385, 7.2382, 7.2391, 7.2387, 7.2397, 7.2395, 7.2391, 7.239, 7.2386, 7.2391, 7.2387, 7.2398, 7.2396, 7.2403, 7.2414, 7.2411, 7.2408, 7.2394, 7.2391, 7.2388, 7.2385, 7.2385, 7.2393, 7.239, 7.2377, 7.2365, 7.2364, 7.2362, 7.2358, 7.2372, 7.2369, 7.238, 7.2378, 7.2408, 7.2405, 7.2403, 7.2388, 7.2387, 7.2383, 7.2387, 7.241, 7.2407, 7.2417, 7.2406, 7.2405, 7.2401, 7.24, 7.2397, 7.2406, 7.2414, 7.2412, 7.2408, 7.2404, 7.24, 7.2399, 7.2408, 7.2418, 7.2414, 7.2421, 7.2418, 7.2416, 7.2415, 7.2412, 7.241, 7.2408, 7.2406, 7.2402, 7.24, 7.2398, 7.2407, 7.2404, 7.2402, 7.2398, 7.2395, 7.2391, 7.2377, 7.2373, 7.238, 7.2377, 7.2385, 7.2383, 7.2379, 7.2377, 7.2374, 7.237, 7.2367, 7.2377, 7.2374, 7.237, 7.237, 7.2368, 7.2366, 7.2365, 7.2365, 7.2374, 7.2371, 7.237, 7.2366, 7.2363, 7.236, 7.2357, 7.2353, 7.2351, 7.2362, 7.236, 7.2356, 7.2344, 7.2364, 7.2361, 7.2359, 7.2356, 7.2354, 7.2362, 7.236, 7.2358, 7.2367, 7.2366, 7.2366, 7.2363, 7.236, 7.2356, 7.2365, 7.2373, 7.237, 7.2369, 7.2368, 7.2365, 7.2361, 7.2359, 7.2357, 7.2365, 7.2361, 7.2369, 7.2366, 7.2376, 7.2372, 7.2359, 7.2345, 7.238, 7.2378, 7.2375, 7.2374, 7.2383, 7.2381, 7.2391, 7.24, 7.2398, 7.2406, 7.2404, 7.2402, 7.2398, 7.2394, 7.2392, 7.239, 7.239, 7.2387, 7.2397, 7.2394, 7.2391, 7.2389, 7.2375, 7.2374, 7.2371, 7.2358, 7.2355, 7.2353, 7.2352, 7.235, 7.2348, 7.2346, 7.2345, 7.2344, 7.2341, 7.234, 7.2339, 7.2336, 7.2323, 7.232, 7.2316, 7.2314, 7.2323, 7.2321, 7.2318, 7.2314, 7.2323, 7.233, 7.2326, 7.2323, 7.232, 7.2317, 7.2318, 7.2315, 7.2312, 7.231, 7.2309, 7.2316, 7.2324, 7.231, 7.2307, 7.2303, 7.2311, 7.2308, 7.2307, 7.2303, 7.23, 7.2308, 7.2306, 7.2293, 7.2289, 7.2285, 7.2281, 7.2278, 7.2277, 7.2275, 7.2276, 7.2272, 7.2263, 7.2272, 7.2275, 7.2274, 7.2272, 7.2271, 7.2279, 7.2276, 7.2274, 7.2272, 7.2268, 7.2266, 7.2275, 7.2271, 7.2268, 7.2268, 7.2266, 7.2264, 7.2272, 7.2259, 7.2255, 7.2264, 7.2261, 7.2258, 7.2244, 7.2241, 7.224, 7.2238, 7.225, 7.2248, 7.2246, 7.2243, 7.2242, 7.2239, 7.2237, 7.2234, 7.2242, 7.2239, 7.2229, 7.2249, 7.2257, 7.2255, 7.2263, 7.2271, 7.2269, 7.2267, 7.2264, 7.2265, 7.2264, 7.2262, 7.2258, 7.2266, 7.2274, 7.227, 7.2257, 7.2255, 7.2242, 7.2239, 7.2235, 7.2243, 7.2252, 7.2249, 7.2257, 7.2254, 7.2252, 7.2252, 7.2251, 7.2238, 7.2234, 7.2231, 7.223, 7.2228, 7.2225, 7.2232, 7.2228, 7.2231, 7.2229, 7.2228, 7.2227, 7.2223, 7.2229, 7.2227, 7.2228, 7.2225, 7.2234, 7.2231, 7.2228, 7.2254, 7.2243, 7.2257, 7.2268, 7.2265, 7.2267, 7.2291, 7.2292, 7.2305, 7.2307, 7.2322, 7.2319, 7.2348, 7.2355, 7.2352, 7.2349, 7.2357, 7.2353, 7.235, 7.2359, 7.2356, 7.2354, 7.2351, 7.2359, 7.2355, 7.2342, 7.234, 7.2337, 7.2333, 7.233, 7.2337, 7.2345, 7.2341, 7.2339, 7.2335, 7.2332, 7.2329, 7.2336, 7.2332, 7.233, 7.2327, 7.2323, 7.2321, 7.2318, 7.2315, 7.2313, 7.231, 7.2309, 7.2306, 7.2313, 7.231, 7.2306, 7.2303, 7.2299, 7.2296, 7.2295, 7.2292, 7.229, 7.2299, 7.2296, 7.2293, 7.2306, 7.2327, 7.2324, 7.2355, 7.2353, 7.2352, 7.2349, 7.2348, 7.2344, 7.2333, 7.2333, 7.2332, 7.2329, 7.2326, 7.2322, 7.2331, 7.2328, 7.2326, 7.2323, 7.233, 7.2328, 7.2324, 7.2321, 7.2329, 7.2326, 7.2323, 7.232, 7.2328, 7.2325, 7.2322, 7.2321, 7.2318, 7.2317, 7.2314, 7.2311, 7.231, 7.2311, 7.2309, 7.2306, 7.2303, 7.23, 7.2298, 7.2308, 7.2306, 7.2295, 7.2293, 7.2301, 7.2298, 7.2294, 7.2291, 7.229, 7.2278, 7.2275, 7.2273, 7.2281, 7.2277, 7.2273, 7.2272, 7.2268, 7.2255, 7.2251, 7.225, 7.2247, 7.2254, 7.2251, 7.2251, 7.2259, 7.2255, 7.2253, 7.2241, 7.2248, 7.225, 7.2247, 7.2234, 7.2231, 7.2238, 7.2238, 7.2236, 7.2233, 7.2231, 7.2251, 7.2251, 7.2276, 7.2273, 7.227, 7.2269, 7.2266, 7.2263, 7.226, 7.2257, 7.2256, 7.2253, 7.2252, 7.2248, 7.2244, 7.224, 7.224, 7.2238, 7.2234, 7.2233, 7.2231, 7.2229, 7.2227, 7.2223, 7.2221, 7.222, 7.2217, 7.2214, 7.2211, 7.2208, 7.2205, 7.2201, 7.2198, 7.2186, 7.2184, 7.2191, 7.2191, 7.2188, 7.2196, 7.2193, 7.2191, 7.2191, 7.219, 7.2189, 7.2185, 7.2182, 7.2179, 7.2187, 7.2183, 7.2181, 7.2179, 7.2191, 7.2187, 7.2184, 7.2192, 7.2188, 7.2186, 7.2183, 7.2179, 7.2184, 7.2192, 7.2188, 7.2185, 7.2183, 7.218, 7.2178, 7.2186, 7.2183, 7.2181, 7.2178, 7.2175, 7.2172, 7.2179, 7.2176, 7.2173, 7.217, 7.2168, 7.2175, 7.2172, 7.218, 7.2177, 7.2166, 7.2153, 7.2151, 7.2139, 7.2138, 7.2137, 7.2134, 7.2131, 7.2129, 7.2126, 7.2124, 7.2121, 7.2119, 7.2115, 7.2112, 7.212, 7.2117, 7.2114, 7.2111, 7.2122, 7.213, 7.2127, 7.2124, 7.2121, 7.213, 7.2128, 7.2125, 7.2123, 7.212, 7.2117, 7.2115, 7.2114, 7.2121, 7.2118, 7.2115, 7.2111, 7.2108, 7.2106, 7.2102, 7.2113, 7.211, 7.2109, 7.2107, 7.2104, 7.2102, 7.2102, 7.2099, 7.2096, 7.2094, 7.2102, 7.2103, 7.2101, 7.2099, 7.2097, 7.2093, 7.2091, 7.2088, 7.2086, 7.2082, 7.2078, 7.2085, 7.2083, 7.209, 7.2098, 7.2105, 7.2102, 7.21, 7.2099, 7.2096, 7.2092, 7.2089, 7.2086, 7.2083, 7.208, 7.2079, 7.2077, 7.2075, 7.2063, 7.2051, 7.2039, 7.2036, 7.2033, 7.2091, 7.2099, 7.2097, 7.2106, 7.2102, 7.2099, 7.2105, 7.2093, 7.2092, 7.2089, 7.2096, 7.2093, 7.2093, 7.2091, 7.2099, 7.2097, 7.2107, 7.2105, 7.2103, 7.2101, 7.2108, 7.2105, 7.2104, 7.2101, 7.21, 7.2097, 7.2104, 7.2102, 7.2099, 7.2096, 7.2104, 7.2101, 7.2108, 7.2105, 7.2103, 7.2111, 7.2108, 7.2117, 7.2114, 7.2102, 7.2102, 7.21, 7.2097, 7.2095, 7.2095, 7.2092, 7.2088, 7.2086, 7.2093, 7.209, 7.2087, 7.2075, 7.2072, 7.2079, 7.2087, 7.2083, 7.208, 7.2087, 7.2095, 7.2093, 7.2097, 7.2093, 7.2101, 7.2118, 7.2117, 7.2119, 7.2127, 7.2124, 7.2132, 7.2128, 7.2135, 7.2131, 7.2127, 7.2125, 7.2132, 7.2121, 7.2119, 7.2126, 7.2123, 7.2122, 7.2121, 7.2119, 7.2116, 7.2124, 7.2123, 7.212, 7.2117, 7.2114, 7.2112, 7.2109, 7.2106, 7.2113, 7.2111, 7.2109, 7.211, 7.2155, 7.2142, 7.2139, 7.2146, 7.2144, 7.2142, 7.2139, 7.2136, 7.2142, 7.2186, 7.2241, 7.2237, 7.2235, 7.2232, 7.2232, 7.2229, 7.2226, 7.2224, 7.2222, 7.2219, 7.2226, 7.2224, 7.2221, 7.2219, 7.2218, 7.2215, 7.2212, 7.2209, 7.2207, 7.2203, 7.2201, 7.2197, 7.2202, 7.2199, 7.2196, 7.2203, 7.22, 7.2196, 7.2202, 7.219, 7.2186, 7.2185, 7.2192, 7.2189, 7.2185, 7.2181, 7.2178, 7.2175, 7.2172, 7.217, 7.2167, 7.2174, 7.217, 7.2176, 7.2183, 7.2181, 7.2188, 7.2185, 7.2187, 7.2194, 7.2192, 7.2201, 7.2198, 7.2195, 7.2192, 7.2191, 7.2189, 7.2187, 7.2185, 7.2181, 7.2188, 7.2186, 7.2183, 7.218, 7.2188, 7.2185, 7.2183, 7.2181, 7.2187, 7.2184, 7.2182, 7.218, 7.2179, 7.2186, 7.2184, 7.2182, 7.2181, 7.2179, 7.2185, 7.2184, 7.2192, 7.2189, 7.2187, 7.2184, 7.2192, 7.22, 7.2198, 7.2195, 7.2184, 7.2181, 7.2188, 7.2185, 7.2183, 7.2181, 7.2178, 7.2176, 7.2183, 7.2171, 7.2178, 7.2178, 7.2175, 7.2173, 7.217, 7.2166, 7.2163, 7.217, 7.2167, 7.2167, 7.2156, 7.2153, 7.215, 7.2149, 7.2147, 7.2144, 7.2152, 7.2149, 7.2148, 7.2145, 7.2142, 7.2139, 7.2137, 7.2135, 7.2133, 7.2131, 7.2129, 7.2127, 7.2116, 7.2113, 7.211, 7.2109, 7.2107, 7.2104, 7.2101, 7.21, 7.2097, 7.2095, 7.2093, 7.2095, 7.2094, 7.2092, 7.2089, 7.2097, 7.2094, 7.2101, 7.2098, 7.2111, 7.211, 7.2107, 7.2105, 7.2102, 7.2101, 7.21, 7.2099, 7.2097, 7.2094, 7.2093, 7.209, 7.2088, 7.2086, 7.2082, 7.2089, 7.2095, 7.2092, 7.2101, 7.2099, 7.2096, 7.2104, 7.2102, 7.2099, 7.2087, 7.2104, 7.2102, 7.2099, 7.2104, 7.2115, 7.2112, 7.2114, 7.2122, 7.212, 7.2118, 7.2116, 7.2113, 7.212, 7.2109, 7.2107, 7.2104, 7.2101, 7.2098, 7.2095, 7.2093, 7.2081, 7.209, 7.209, 7.2087, 7.2094, 7.2102, 7.21, 7.2098, 7.2098, 7.2095, 7.2093, 7.2091, 7.2089, 7.2079, 7.2075, 7.2074, 7.2073, 7.2071, 7.2069, 7.2076, 7.2076, 7.2072, 7.2069, 7.2057, 7.2055, 7.2052, 7.2048, 7.2054, 7.2052, 7.2049, 7.2056, 7.2054, 7.205, 7.2079, 7.2076, 7.2074, 7.2073, 7.2061, 7.206, 7.2067, 7.2065, 7.2062, 7.2071, 7.2069, 7.2067, 7.2064, 7.2062, 7.2059, 7.2057, 7.2055, 7.2053, 7.2051, 7.2049, 7.2047, 7.2045, 7.2053, 7.2061, 7.2058, 7.2088, 7.2085, 7.2084, 7.2092, 7.2093, 7.2101, 7.2099, 7.2098, 7.2106, 7.2105, 7.2113, 7.2112, 7.2109, 7.2106, 7.2103, 7.2102, 7.2101, 7.2098, 7.2098, 7.2095, 7.2091, 7.2089, 7.2098, 7.2097, 7.2097, 7.2097, 7.2094, 7.2092, 7.209, 7.2089, 7.2079, 7.2086, 7.2075, 7.2082, 7.208, 7.2077, 7.2074, 7.2071, 7.2069, 7.2066, 7.2064, 7.2062, 7.2059, 7.2057, 7.2055, 7.2054, 7.205, 7.2058, 7.2055, 7.2052, 7.2049, 7.2046, 7.2043, 7.2041, 7.2049, 7.2047, 7.2047, 7.2048, 7.2045, 7.2046, 7.2042, 7.204, 7.2037, 7.2034, 7.2041, 7.2038, 7.2036, 7.2034, 7.2051, 7.2059, 7.2067, 7.2065, 7.2065, 7.2064, 7.2062, 7.206, 7.2057, 7.2055, 7.2063, 7.2063, 7.2061, 7.2069, 7.2066, 7.2065, 7.2063, 7.207, 7.2067, 7.2064, 7.2061, 7.2058, 7.2056, 7.2054, 7.2051, 7.2048, 7.2048, 7.2046, 7.2043, 7.2051, 7.2053, 7.2044, 7.2042, 7.2039, 7.2036, 7.2033, 7.2039, 7.2037, 7.2034, 7.2051, 7.2048, 7.2046, 7.2043, 7.2043, 7.2041, 7.204, 7.2038, 7.2037, 7.2047, 7.2055, 7.2062, 7.207, 7.2069, 7.2066, 7.2072, 7.207, 7.2067, 7.2056, 7.2053, 7.206, 7.2058, 7.2055, 7.2052, 7.2049, 7.2046, 7.2052, 7.2049, 7.2055, 7.2052, 7.205, 7.2046, 7.2062, 7.2061, 7.2068, 7.2066, 7.2073, 7.2071, 7.2078, 7.2077, 7.2074, 7.2071, 7.2067, 7.2066, 7.2073, 7.2071, 7.2069, 7.2076, 7.2075, 7.2074, 7.2071, 7.207, 7.2077, 7.2084, 7.2091, 7.2088, 7.2086, 7.2092, 7.2089, 7.2086, 7.2084, 7.2091, 7.209, 7.2089, 7.2089, 7.2096, 7.2095, 7.2106, 7.2122, 7.2129, 7.2129, 7.2127, 7.2124, 7.2121, 7.2119, 7.2141, 7.2139, 7.2137, 7.2134, 7.2131, 7.2139, 7.2137, 7.2136, 7.2133, 7.213, 7.2137, 7.2136, 7.2134, 7.2132, 7.2121, 7.2119, 7.212, 7.2116, 7.2113, 7.211, 7.2107, 7.2104, 7.2101, 7.2108, 7.2105, 7.2095, 7.2104, 7.2103, 7.2101, 7.21, 7.2097, 7.2094, 7.2093, 7.209, 7.2088, 7.2086, 7.2083, 7.2081, 7.2079, 7.2086, 7.2083, 7.208, 7.2077, 7.2074, 7.2072, 7.2069, 7.2085, 7.2091, 7.2095, 7.2092, 7.209, 7.2087, 7.2077, 7.2075, 7.2073, 7.207, 7.2077, 7.2074, 7.2072, 7.207, 7.2067, 7.2065, 7.2074, 7.2072, 7.207, 7.2078, 7.2076, 7.2074, 7.2101, 7.2099, 7.2097, 7.2095, 7.2093, 7.2119, 7.2117, 7.2124, 7.213, 7.2128, 7.2126, 7.2123, 7.212, 7.2117, 7.2114, 7.216, 7.2157, 7.2154, 7.2155, 7.2152, 7.2149, 7.2149, 7.2146, 7.2152, 7.2158, 7.2155, 7.2152, 7.215, 7.2147, 7.2144, 7.2141, 7.2151, 7.2148, 7.2145, 7.2142, 7.214, 7.214, 7.2174, 7.2202, 7.22, 7.2198, 7.2214, 7.2216, 7.2213, 7.222, 7.2219, 7.222, 7.2219, 7.2217, 7.2224, 7.223, 7.2237, 7.2244, 7.2251, 7.2249, 7.2255, 7.2254, 7.2253, 7.2251, 7.2249, 7.2247, 7.2244, 7.2243, 7.224, 7.2237, 7.2234, 7.2231, 7.2228, 7.2228, 7.2225, 7.2222, 7.2235, 7.2243, 7.224, 7.2237, 7.2237, 7.2244, 7.2241, 7.224, 7.2238, 7.2237, 7.2234, 7.2231, 7.2248, 7.2245, 7.2242, 7.224, 7.2237, 7.2236, 7.2243, 7.224, 7.2248, 7.2246, 7.2246, 7.2253, 7.225, 7.2258, 7.2256, 7.2265, 7.2264, 7.2273, 7.2271, 7.2268, 7.2268, 7.2266, 7.2263, 7.2263, 7.2262, 7.2262, 7.226, 7.2268, 7.2299, 7.2297, 7.2304, 7.2302, 7.23, 7.2298, 7.2296, 7.2293, 7.229, 7.2288, 7.2306, 7.2306, 7.2313, 7.2311, 7.2319, 7.2318, 7.2316, 7.2317, 7.2315, 7.2312, 7.231, 7.2318, 7.2316, 7.2314, 7.2313, 7.2321, 7.2319, 7.2317, 7.2315, 7.2304, 7.2312, 7.231, 7.2308, 7.2307, 7.2337, 7.2336, 7.2343, 7.2351, 7.2359, 7.2357, 7.2358, 7.2355, 7.2352, 7.2359, 7.2367, 7.2366, 7.2363, 7.2393, 7.2392, 7.2391, 7.239, 7.2387, 7.2394, 7.241, 7.2408, 7.2405, 7.2404, 7.2402, 7.2412, 7.2401, 7.2399, 7.2397, 7.2394, 7.2404, 7.2401, 7.2398, 7.2395, 7.2393, 7.2391, 7.239, 7.2397, 7.2394, 7.2391, 7.2389, 7.2387, 7.2386, 7.2384, 7.2381, 7.2378, 7.2385, 7.2384, 7.239, 7.2388, 7.2386, 7.2384, 7.2381, 7.2379, 7.2378, 7.2377, 7.2374, 7.2371, 7.2377, 7.2367, 7.2365, 7.2363, 7.237, 7.2369, 7.2367, 7.2365, 7.2363, 7.236, 7.2359, 7.2366, 7.2364, 7.2361, 7.2358, 7.2348, 7.2339, 7.2329, 7.2327, 7.2325, 7.2323, 7.2322, 7.2319, 7.2316, 7.2322, 7.2321, 7.2328, 7.2326, 7.2326, 7.2323, 7.2313, 7.2312, 7.2309, 7.2325, 7.2336, 7.2338, 7.2336, 7.2333, 7.2331, 7.2358, 7.2357, 7.2356, 7.2358, 7.2358, 7.2357, 7.2367, 7.2365, 7.2371, 7.2369, 7.2366, 7.2372, 7.2372, 7.2369, 7.2366, 7.2372, 7.2378, 7.2376, 7.2438, 7.2435, 7.2433, 7.243, 7.2427, 7.2425, 7.2425, 7.2424, 7.2421, 7.2419, 7.2417, 7.2415, 7.2421, 7.2419, 7.2418, 7.2417, 7.2414, 7.2414, 7.2411, 7.241, 7.2407, 7.2405, 7.2402, 7.2408, 7.2415, 7.2415, 7.2414, 7.2405, 7.2404, 7.2401, 7.2399, 7.2398, 7.2405, 7.2403, 7.241, 7.2408, 7.2407, 7.2404, 7.2411, 7.2409, 7.2398, 7.2405, 7.2402, 7.2399, 7.2396, 7.2405, 7.2404, 7.2401, 7.2407, 7.2407, 7.2427, 7.2424, 7.2422, 7.2419, 7.2416, 7.2414, 7.2413, 7.2403, 7.2392, 7.2382, 7.2372, 7.2362, 7.2361, 7.2362, 7.2356, 7.2353, 7.235, 7.2347, 7.2345, 7.2363, 7.236, 7.236, 7.2358, 7.2355, 7.2361, 7.2359, 7.2362, 7.2361, 7.236, 7.2358, 7.2357, 7.2354, 7.236, 7.2359, 7.2366, 7.2365, 7.2364, 7.2362, 7.237, 7.2368, 7.2367, 7.2364, 7.2362, 7.236, 7.2357, 7.2355, 7.2353, 7.2352, 7.2359, 7.2356, 7.2358, 7.2365, 7.2363, 7.236, 7.2359, 7.2359, 7.2372, 7.2369, 7.2375, 7.2381, 7.238, 7.2384, 7.2383, 7.2381, 7.2397, 7.2398, 7.2395, 7.2393, 7.2393, 7.239, 7.2388, 7.2395, 7.2402, 7.2399, 7.2389, 7.2387, 7.2385, 7.2384, 7.2382, 7.2381, 7.2372, 7.2371, 7.2369, 7.2368, 7.2367, 7.2366, 7.2367, 7.2365, 7.2371, 7.2369, 7.2366, 7.2372, 7.2378, 7.2376, 7.2382, 7.2389, 7.2386, 7.2384, 7.239, 7.2388, 7.2393, 7.2399, 7.2415, 7.2412, 7.2419, 7.2417, 7.2431, 7.243, 7.2436, 7.2443, 7.244, 7.2438, 7.2445, 7.2443, 7.244, 7.2438, 7.2436, 7.2433, 7.2431, 7.2428, 7.2426, 7.2415, 7.2412, 7.2409, 7.2407, 7.2405, 7.2402, 7.2392, 7.2393, 7.2399, 7.2406, 7.2412, 7.241, 7.2408, 7.2397, 7.2394, 7.2391, 7.24, 7.2397, 7.2395, 7.2392, 7.2392, 7.2398, 7.2395, 7.2393, 7.2392, 7.239, 7.2388, 7.2385, 7.2382, 7.2379, 7.2386, 7.2391, 7.2397, 7.2404, 7.2402, 7.2391, 7.2382, 7.2388, 7.2386, 7.2384, 7.2382, 7.2379, 7.2377, 7.2367, 7.2357, 7.2348, 7.2345, 7.2335, 7.2333, 7.2339, 7.2337, 7.2352, 7.2351, 7.2349, 7.2346, 7.2352, 7.2349, 7.2365, 7.2364, 7.2371, 7.2368, 7.2369, 7.2367, 7.2365, 7.2381, 7.2379, 7.2407, 7.2406, 7.2405, 7.2403, 7.24, 7.2416, 7.2424, 7.2432, 7.2439, 7.2436, 7.2433, 7.243, 7.2419, 7.2418, 7.2415, 7.2412, 7.2411, 7.2401, 7.2399, 7.2397, 7.2403, 7.2402, 7.2399, 7.2425, 7.2422, 7.242, 7.2419, 7.2417, 7.2414, 7.2413, 7.241, 7.2408, 7.2405, 7.2403, 7.2402, 7.2409, 7.2406, 7.2403, 7.2408, 7.2405, 7.2402, 7.241, 7.2408, 7.2406, 7.2395, 7.2392, 7.2393, 7.2415, 7.2413, 7.2407, 7.2413, 7.2412, 7.2418, 7.2417, 7.2415, 7.2412, 7.241, 7.2416, 7.2416, 7.2423, 7.2431, 7.2429, 7.2428, 7.2437, 7.2434, 7.2425, 7.2415, 7.2412, 7.2411, 7.241, 7.2407, 7.2405, 7.2403, 7.2393, 7.2391, 7.2389, 7.2388, 7.2381, 7.2387, 7.2384, 7.2383, 7.2389, 7.2396, 7.2396, 7.2395, 7.2392, 7.2391, 7.239, 7.2388, 7.2387, 7.2384, 7.2375, 7.2373, 7.238, 7.2378, 7.2376, 7.2375, 7.2373, 7.2395, 7.2393, 7.239, 7.2388, 7.2386, 7.2384, 7.2382, 7.2381, 7.238, 7.2378, 7.2375, 7.2375, 7.2373, 7.2371, 7.2369, 7.2367, 7.2367, 7.2365, 7.237, 7.2369, 7.2367, 7.2374, 7.2372, 7.237, 7.2367, 7.2365, 7.2362, 7.2359, 7.2356, 7.2355, 7.2352, 7.2351, 7.2348, 7.2346, 7.2345, 7.2344, 7.2342, 7.234, 7.2337, 7.2336, 7.2335, 7.2334, 7.2335, 7.2333, 7.2331, 7.2337, 7.2336, 7.2361, 7.2358, 7.2355, 7.2359, 7.2357, 7.2373, 7.237, 7.2367, 7.2366, 7.2364, 7.2383, 7.238, 7.2389, 7.2391, 7.2391, 7.2388, 7.2385, 7.2384, 7.2391, 7.2393, 7.2391, 7.2389, 7.2388, 7.2396, 7.2394, 7.2394, 7.2401, 7.24, 7.2397, 7.2394, 7.2391, 7.2389, 7.2387, 7.2394, 7.2392, 7.2397, 7.2394, 7.2393, 7.2398, 7.2396, 7.2394, 7.2392, 7.2398, 7.2398, 7.2397, 7.2398, 7.2409, 7.2406, 7.2404, 7.2402, 7.2401, 7.2399, 7.2398, 7.2397, 7.2396, 7.2396, 7.2402, 7.2399, 7.2396, 7.2403, 7.2401, 7.24, 7.2399, 7.2405, 7.2404, 7.2401, 7.24, 7.2398, 7.2397, 7.2394, 7.2392, 7.2389, 7.2388, 7.2385, 7.2382, 7.238, 7.2378, 7.2384, 7.2381, 7.2378, 7.2376, 7.2374, 7.2371, 7.2377, 7.2384, 7.239, 7.2387, 7.2386, 7.2392, 7.2389, 7.2387, 7.2387, 7.2384, 7.2383, 7.2389, 7.2387, 7.2384, 7.2382, 7.2379, 7.2377, 7.2376, 7.2375, 7.2373, 7.2371, 7.237, 7.2376, 7.2374, 7.2371, 7.2368, 7.2366, 7.2363, 7.2361, 7.2368, 7.2366, 7.2364, 7.2371, 7.2369, 7.2368, 7.2367, 7.2372, 7.2377, 7.2375, 7.2381, 7.2379, 7.2376, 7.2373, 7.2372, 7.2378, 7.2375, 7.2372, 7.2369, 7.2367, 7.2364, 7.2361, 7.2359, 7.2356, 7.2353, 7.2351, 7.2348, 7.2347, 7.2345, 7.2345, 7.2343, 7.2341, 7.2339, 7.2345, 7.2342, 7.234, 7.2338, 7.2336, 7.2334, 7.234, 7.2339, 7.2345, 7.2343, 7.2349, 7.2348, 7.2345, 7.2343, 7.2342, 7.2339, 7.2345, 7.2343, 7.235, 7.2349, 7.2347, 7.2344, 7.2343, 7.2349, 7.2355, 7.2352, 7.2358, 7.2356, 7.2362, 7.236, 7.2358, 7.2371, 7.2372, 7.237, 7.2368, 7.2368, 7.2367, 7.2373, 7.237, 7.2368, 7.2367, 7.2365, 7.2363, 7.2361, 7.2367, 7.2365, 7.2372, 7.2369, 7.2395, 7.2396, 7.2411, 7.2413, 7.2414, 7.242, 7.2428, 7.2427, 7.2442, 7.2441, 7.2432, 7.2431, 7.2446, 7.2444, 7.245, 7.2456, 7.2453, 7.2459, 7.2458, 7.2455, 7.2452, 7.2458, 7.2463, 7.2469, 7.2468, 7.2465, 7.2463, 7.246, 7.2457, 7.2457, 7.2455, 7.2452, 7.2449, 7.2446, 7.2444, 7.2442, 7.2441, 7.2447, 7.2446, 7.2443, 7.2441, 7.2439, 7.2437, 7.2442, 7.2447, 7.2445, 7.2443, 7.244, 7.2437, 7.2442, 7.2448, 7.2446, 7.2444, 7.2442, 7.2448, 7.2453, 7.245, 7.2497, 7.2494, 7.2492, 7.249, 7.2489, 7.2494, 7.2494, 7.2492, 7.249, 7.2495, 7.2492, 7.249, 7.2487, 7.2485, 7.2482, 7.248, 7.2479, 7.2484, 7.2483, 7.2488, 7.2487, 7.2493, 7.2507, 7.2505, 7.2511, 7.2508, 7.2506, 7.2503, 7.2501, 7.2501, 7.25, 7.2498, 7.2503, 7.2509, 7.2514, 7.2529, 7.2527, 7.2524, 7.2538, 7.2544, 7.2541, 7.2532, 7.2531, 7.2537, 7.2539, 7.2537, 7.2536, 7.2554, 7.256, 7.2566, 7.2563, 7.2577, 7.2575, 7.259, 7.2582, 7.258, 7.2596, 7.2593, 7.2591, 7.2588, 7.2586, 7.2583, 7.2582, 7.2588, 7.2585, 7.2583, 7.258, 7.2578, 7.2576, 7.2578, 7.2584, 7.2582, 7.2589, 7.2587, 7.2595, 7.2585, 7.2584, 7.2593, 7.2592, 7.2584, 7.2589, 7.2594, 7.26, 7.2597, 7.2589, 7.2598, 7.2604, 7.2601, 7.26, 7.2598, 7.2605, 7.2604, 7.2602, 7.26, 7.2606, 7.2612, 7.2609, 7.2616, 7.2613, 7.2619, 7.2617, 7.2617, 7.2614, 7.2612, 7.2609, 7.2607, 7.2604, 7.261, 7.2608, 7.2631, 7.2629, 7.2628, 7.2635, 7.2634, 7.264, 7.2646, 7.2644, 7.2643, 7.2665, 7.2664, 7.2662, 7.2661, 7.2667, 7.2674, 7.2672, 7.2679, 7.2677, 7.2676, 7.2673, 7.2671, 7.2669, 7.2668, 7.2667, 7.2666, 7.2672, 7.2672, 7.2669, 7.2675, 7.2674, 7.268, 7.2686, 7.2683, 7.2688, 7.2686, 7.2683, 7.2682, 7.2681, 7.2679, 7.2677, 7.2675, 7.2672, 7.267, 7.2676, 7.2673, 7.267, 7.2667, 7.2665, 7.2662, 7.2667, 7.2667, 7.2665, 7.2662, 7.266, 7.2666, 7.2664, 7.2669, 7.2668, 7.2666, 7.2671, 7.2668, 7.2666, 7.2664, 7.2661, 7.266, 7.2666, 7.2664, 7.2662, 7.2668, 7.2673, 7.2671, 7.267, 7.2668, 7.2674, 7.2673, 7.2679, 7.2676, 7.2682, 7.2681, 7.2678, 7.2677, 7.2676, 7.2673, 7.2678, 7.2676, 7.2675, 7.2674, 7.2674, 7.268, 7.2677, 7.2683, 7.2682, 7.2682, 7.268, 7.2679, 7.2684, 7.2682, 7.2687, 7.2684, 7.2682, 7.268, 7.2685, 7.2683, 7.268, 7.2678, 7.2676, 7.2674, 7.2673, 7.2679, 7.2684, 7.2683, 7.2681, 7.2679, 7.2677, 7.2676, 7.2682, 7.2679, 7.2684, 7.2682, 7.2681, 7.2686, 7.2683, 7.268, 7.2685, 7.2684, 7.2681, 7.2679, 7.2687, 7.27, 7.2705, 7.2704, 7.2702, 7.2707, 7.2705, 7.2702, 7.27, 7.2713, 7.2711, 7.2713, 7.2711, 7.272, 7.2725, 7.2723, 7.2723, 7.2721, 7.2719, 7.2716, 7.2715, 7.2714, 7.2715, 7.2717, 7.2715, 7.2721], '192.168.122.116': [11.6343, 9.1549, 8.628, 7.8345, 8.7598, 8.3031, 7.9929, 7.715, 7.4677, 7.8351, 8.1835, 8.4537, 8.6738, 8.5203, 8.3057, 8.1233, 8.3219, 8.1574, 8.0207, 7.9092, 7.8341, 7.7384, 7.8675, 7.7738, 7.7307, 7.8603, 7.7828, 7.7078, 7.8235, 7.9222, 7.8722, 7.808, 7.7361, 7.8237, 7.7695, 7.7173, 7.7975, 7.7536, 7.8511, 7.7899, 7.7703, 7.754, 7.6972, 7.7744, 7.7201, 7.6738, 7.7459, 7.9257, 7.88, 7.8291, 7.7887, 7.7581, 7.7296, 7.7207, 7.6848, 7.6688, 7.6292, 7.5989, 7.5663, 7.5492, 7.5316, 7.4953, 7.4687, 7.4421, 7.3393, 7.3135, 7.2866, 7.2879, 7.2728, 7.2604, 7.1658, 7.2178, 7.2704, 7.2443, 7.2318, 7.2064, 7.1888, 7.1776, 7.1597, 7.0773, 7.1287, 7.1176, 7.1094, 7.0904, 7.0901, 7.0766, 7.1261, 7.1712, 7.1595, 7.1394, 7.1317, 7.1156, 7.1544, 7.1343, 7.1146, 7.1502, 7.136, 7.1178, 7.1183, 7.1011, 7.0961, 7.1055, 7.0913, 7.0746, 7.0617, 7.1011, 7.0933, 7.1291, 7.1148, 7.1089, 7.0974, 7.0912, 7.0783, 7.0753, 7.0736, 7.067, 7.0543, 7.0915, 7.0755, 7.0617, 7.092, 7.0892, 7.0778, 7.0675, 7.0594, 7.0531, 7.0445, 7.0748, 7.0665, 7.0611, 7.049, 7.0415, 7.0311, 7.0256, 7.0157, 7.0032, 7.0316, 7.0299, 7.0203, 7.0117, 7.0046, 6.9977, 6.9892, 6.9766, 6.9774, 6.9772, 7.0054, 6.997, 6.9914, 7.0195, 7.0169, 7.0449, 7.069, 7.0579, 7.0466, 7.0381, 7.031, 7.0202, 7.0144, 7.005, 7.0293, 7.0523, 7.0765, 7.0664, 7.0567, 7.0805, 7.1054, 7.0953, 7.0919, 7.1165, 7.1093, 7.1051, 7.0993, 7.0896, 7.0841, 7.0779, 7.0712, 7.0663, 7.0587, 7.0533, 7.1096, 7.1006, 7.0958, 7.0878, 7.0777, 7.0696, 7.061, 7.0524, 7.0452, 7.0387, 7.0307, 7.0802, 7.0715, 7.0627, 7.0532, 7.0569, 7.0518, 7.0722, 7.0911, 7.0876, 7.089, 7.0812, 7.0734, 7.0643, 7.0583, 7.0549, 7.0742, 7.072, 7.0718, 7.0672, 7.0646, 7.0593, 7.0532, 7.0471, 7.0426, 7.0634, 7.0618, 7.0591, 7.054, 7.0468, 7.0416, 7.0372, 7.0389, 7.0559, 7.0485, 7.0411, 7.0348, 7.0273, 7.0217, 7.0159, 7.034, 7.0307, 7.0279, 7.0445, 7.0455000000000005, 7.0387, 7.0364, 7.0314, 7.0284, 7.0255, 7.0232, 7.0183, 7.0335, 7.03, 7.0257, 7.0237, 7.0182, 7.0132, 7.0082, 6.9882, 7.0041, 7.0029, 6.9988, 6.9978, 6.9934, 6.9927, 6.9909, 6.9885, 7.0303, 7.0238, 7.0428, 7.0439, 7.0559, 7.0597, 7.0558, 7.0535, 7.0491, 7.0448, 7.0446, 7.0425, 7.0377, 7.0515, 7.0496, 7.0671, 7.0639, 7.0604, 7.0786, 7.074, 7.0696, 7.0653, 7.081, 7.0754, 7.0791, 7.080100000000001, 7.0771, 7.0739, 7.0689, 7.0645, 7.0591, 7.0549, 7.0677, 7.063, 7.0581, 7.0574, 7.0726, 7.0841, 7.0803, 7.093, 7.0912, 7.0873, 7.0832, 7.0957, 7.1107, 7.127, 7.1222, 7.1166, 7.1283, 7.1277, 7.122, 7.1194, 7.1177, 7.1309, 7.1419, 7.1365, 7.1325, 7.1302, 7.1428, 7.1391, 7.1342, 7.1301, 7.1266, 7.125, 7.1233, 7.1188, 7.1158, 7.112, 7.1067, 7.1052, 7.1001, 7.0952, 7.0933, 7.092, 7.0872, 7.0941, 7.0913, 7.0757, 7.0936, 7.108, 7.103, 7.0992, 7.0946, 7.0903, 7.0868, 7.09, 7.075, 7.0721, 7.069, 7.0661, 7.0554, 7.051, 7.068, 7.0655, 7.0667, 7.062, 7.0742, 7.0874, 7.0839, 7.0849, 7.0815, 7.0793, 7.0742, 7.0715, 7.0672, 7.0627, 7.0753, 7.074, 7.0694, 7.0648, 7.0624, 7.0576, 7.0676, 7.0757, 7.0712, 7.0678, 7.0644, 7.0623, 7.0589, 7.0693, 7.0661, 7.0757, 7.0856, 7.0809, 7.0787, 7.077, 7.0724, 7.0825, 7.0786, 7.0766, 7.0723, 7.0937, 7.091, 7.0884, 7.0877, 7.0838, 7.0812, 7.0792, 7.0746, 7.0733, 7.0709, 7.0682, 7.078, 7.088, 7.0869, 7.0996, 7.0952, 7.0913, 7.0875, 7.0965, 7.0947, 7.0923, 7.0885, 7.0848, 7.0944, 7.104, 7.1004, 7.11, 7.1139, 7.1113, 7.0977, 7.0942, 7.0911, 7.1071, 7.1038, 7.1141, 7.1108, 7.1338, 7.1295, 7.1397, 7.1358, 7.1317, 7.1275, 7.113, 7.1217, 7.1315, 7.1275, 7.1252, 7.1333, 7.1292, 7.1334, 7.1302, 7.1388, 7.1349, 7.1426, 7.1397, 7.1404, 7.1493, 7.145, 7.1415, 7.1376, 7.1339, 7.1298, 7.1272, 7.123, 7.1196, 7.117, 7.1041, 7.1009, 7.0977, 7.106, 7.1032, 7.1026, 7.111, 7.1093, 7.106, 7.107, 7.1059, 7.1026, 7.1036, 7.1011, 7.0997, 7.0963, 7.0927, 7.0889, 7.0864, 7.0833, 7.084300000000001, 7.0828, 7.0819, 7.0821, 7.0795, 7.0812, 7.0822, 7.0821, 7.0786, 7.0753, 7.0832, 7.0813, 7.0788, 7.0755, 7.0835, 7.0845, 7.0813, 7.0788, 7.0757, 7.0736, 7.0712, 7.0796, 7.0763, 7.0742, 7.0836, 7.093, 7.0947, 7.0943, 7.0912, 7.0912, 7.0881, 7.0856, 7.0823, 7.079, 7.0767, 7.0748, 7.0729, 7.0705, 7.0683, 7.0672, 7.0666, 7.0645, 7.0627, 7.0607, 7.0626, 7.0608, 7.0578, 7.066, 7.0651, 7.0629, 7.0622, 7.0606, 7.0617, 7.0611, 7.0587, 7.0673, 7.0663, 7.0632, 7.0619, 7.0617, 7.0597, 7.0609, 7.061, 7.0582, 7.0665, 7.0737, 7.0716, 7.0689, 7.067, 7.0641, 7.0639, 7.0712, 7.07, 7.0681, 7.0749, 7.0717, 7.07, 7.0677, 7.0653, 7.063, 7.064, 7.0616, 7.0595, 7.067, 7.0791, 7.0873, 7.0855, 7.0823, 7.0848, 7.085800000000001, 7.0837, 7.0806, 7.0783, 7.0761, 7.0767, 7.0751, 7.0744, 7.0755, 7.0725, 7.0723, 7.0719, 7.0689, 7.066, 7.0657, 7.0725, 7.0797, 7.0869, 7.0855, 7.0837, 7.083, 7.0828, 7.0805, 7.0781, 7.0749, 7.0815, 7.0805, 7.0871, 7.086, 7.0829, 7.0811, 7.0782, 7.0861, 7.0832, 7.0815, 7.083, 7.0812, 7.0804, 7.0775, 7.0756, 7.0741, 7.0716, 7.0783, 7.0754, 7.0736, 7.0712, 7.0697, 7.0685, 7.069500000000001, 7.0667, 7.0672, 7.0648, 7.062, 7.0598, 7.0574, 7.0581, 7.0563, 7.0471, 7.0447, 7.0429, 7.0353, 7.0418, 7.0485, 7.0461, 7.0471, 7.0465, 7.0475, 7.0553, 7.0622, 7.0608, 7.0593, 7.0581, 7.0565, 7.0575, 7.0733, 7.0722, 7.0713, 7.0686, 7.0745, 7.0734, 7.0708, 7.0702, 7.0683, 7.0673, 7.0731, 7.0705, 7.0684, 7.0658, 7.0717, 7.0774, 7.0747, 7.0801, 7.078, 7.0754, 7.0772, 7.0764, 7.0738, 7.0719, 7.0698, 7.076, 7.0738, 7.0722, 7.0713, 7.0719, 7.0699, 7.0677, 7.0655, 7.0637, 7.0619, 7.0602, 7.0669, 7.0644, 7.0703, 7.0761, 7.0823, 7.0803, 7.0795, 7.080500000000001, 7.081500000000001, 7.0872, 7.0847, 7.0842, 7.0845, 7.0824, 7.0802, 7.0783, 7.0757, 7.0734, 7.0724, 7.0708, 7.071, 7.0702, 7.0692, 7.0669, 7.0651, 7.064, 7.0618, 7.0855, 7.0907, 7.0892, 7.0944, 7.0938, 7.0937, 7.0934, 7.0952, 7.0927, 7.0905, 7.09, 7.091, 7.0889, 7.088, 7.086, 7.0845, 7.0844, 7.083, 7.0889, 7.087, 7.0923, 7.0974, 7.0965, 7.0947, 7.0927, 7.0979, 7.1122, 7.1103, 7.1083, 7.1071, 7.1046, 7.1023, 7.1005, 7.0987, 7.1063, 7.1157, 7.1138, 7.1272, 7.126, 7.1238, 7.1295, 7.1275, 7.1322, 7.1332, 7.134200000000001, 7.1329, 7.1377, 7.1363, 7.1338, 7.1502, 7.148, 7.1502, 7.1487, 7.1487, 7.1472, 7.1466, 7.145, 7.1477, 7.1459, 7.1467, 7.1446, 7.1431, 7.1414, 7.1465, 7.1515, 7.1503, 7.1492, 7.150200000000001, 7.1482, 7.146, 7.1439, 7.1415, 7.1406, 7.1389, 7.1391, 7.1401, 7.1639, 7.1922, 7.1913, 7.1889, 7.1866, 7.1857, 7.1837, 7.1831, 7.1876, 7.1855, 7.1905, 7.1885, 7.1867, 7.186, 7.1836, 7.1811, 7.1791, 7.184, 7.182, 7.1873, 7.1862, 7.1842, 7.1825, 7.1865, 7.1841, 7.1818, 7.1798, 7.1839, 7.1815, 7.1864, 7.1908, 7.195, 7.1932, 7.1975, 7.1958, 7.2003, 7.2048, 7.2025, 7.2002, 7.198, 7.1967, 7.1959, 7.1937, 7.1932, 7.191, 7.1899, 7.1956, 7.1935, 7.1924, 7.1917, 7.1916, 7.1962, 7.1945, 7.1928, 7.1909, 7.1907, 7.1889, 7.1875, 7.1888, 7.1867, 7.1847, 7.1828, 7.1809, 7.1789, 7.1771, 7.176, 7.1772, 7.1767, 7.1762, 7.1801, 7.1783, 7.1765, 7.1745, 7.1732, 7.1726, 7.1773, 7.1754, 7.1801, 7.1791, 7.1851, 7.1897, 7.1886, 7.1867, 7.1859, 7.1961, 7.1953, 7.1936, 7.1917, 7.1973, 7.1962, 7.2006, 7.1987, 7.2036, 7.2014, 7.1998, 7.1981, 7.1963, 7.1944, 7.1931, 7.1925, 7.1907, 7.1893, 7.1885, 7.1879, 7.1872, 7.1867, 7.1857, 7.1837, 7.1841, 7.1826, 7.1811, 7.1851, 7.1848, 7.1847, 7.1896, 7.1877, 7.1864, 7.1848, 7.1863, 7.1872, 7.1864, 7.1906, 7.1951, 7.1929, 7.1968, 7.1948, 7.1939, 7.1935, 7.1926, 7.1858, 7.1906, 7.1886, 7.188, 7.1867, 7.186, 7.1849, 7.1837, 7.1822, 7.1871, 7.1854, 7.1837, 7.1826, 7.1808, 7.1845, 7.1828, 7.187, 7.185, 7.1894, 7.1881, 7.1871, 7.1856, 7.1848, 7.1838, 7.1884, 7.1871, 7.1858, 7.186, 7.184, 7.1841, 7.1885, 7.1928, 7.1971, 7.1967, 7.195, 7.2001, 7.1995, 7.1989, 7.1987, 7.1977, 7.196, 7.1944, 7.1933, 7.1917, 7.1898, 7.1888, 7.1927, 7.1913, 7.1901, 7.1884, 7.1883, 7.1932, 7.1983, 7.203, 7.2019, 7.2018, 7.2003, 7.1989, 7.1978, 7.1982, 7.1967, 7.2017, 7.2014, 7.2007, 7.205, 7.2093, 7.2078, 7.2077, 7.2061, 7.2105, 7.2145, 7.2127, 7.2115, 7.2111, 7.2103, 7.2092, 7.2082, 7.2118, 7.2099, 7.2099, 7.209, 7.2078, 7.2126, 7.212, 7.2106, 7.209, 7.2298, 7.2286, 7.2332, 7.2317, 7.2309, 7.2293, 7.2279, 7.2263, 7.2301, 7.229, 7.233, 7.2324, 7.231, 7.2301, 7.2284, 7.2266, 7.225, 7.2242, 7.2227, 7.221, 7.2216, 7.2201, 7.2188, 7.2228, 7.2213, 7.2252, 7.2238, 7.2227, 7.2208, 7.2195, 7.2194, 7.2182, 7.2166, 7.215, 7.2142, 7.2123, 7.2111, 7.2152, 7.2146, 7.2148, 7.2153, 7.2138, 7.2133, 7.2131, 7.2116, 7.2112, 7.2118, 7.2106, 7.2091, 7.2131, 7.2122, 7.2105, 7.2095, 7.2133, 7.212, 7.2158, 7.215, 7.2139, 7.2077, 7.2061, 7.2045, 7.2039, 7.203, 7.2014, 7.1998, 7.2038, 7.2083, 7.2117, 7.211, 7.2097, 7.2084, 7.207, 7.2057, 7.2042, 7.2027, 7.2117, 7.2108, 7.2094, 7.2088, 7.2123, 7.2157, 7.219, 7.2173, 7.2168, 7.2155, 7.2192, 7.2174, 7.2157, 7.214, 7.2127, 7.2162, 7.215, 7.2133, 7.2116, 7.2099, 7.2085, 7.2069, 7.2056, 7.204, 7.2033, 7.2022, 7.206, 7.2042, 7.2032, 7.2016, 7.2007, 7.2002, 7.1989, 7.198, 7.1968, 7.2003, 7.2093, 7.2076, 7.2108, 7.2095, 7.2082, 7.2073, 7.2059, 7.2046, 7.2035, 7.207, 7.2055, 7.2039, 7.2072, 7.206, 7.2044, 7.2035, 7.2067, 7.2103, 7.2086, 7.2073, 7.2111, 7.211, 7.2098, 7.2086, 7.207, 7.2057, 7.2051, 7.2042, 7.2078, 7.2066, 7.209, 7.2154, 7.2146, 7.2157, 7.2151, 7.2234, 7.222, 7.2207, 7.2242, 7.2225, 7.2213, 7.2198, 7.2233, 7.2218, 7.2201, 7.2193, 7.2197, 7.229, 7.2275, 7.2263, 7.2256, 7.2242, 7.2234, 7.222, 7.2212, 7.2197, 7.2231, 7.2223, 7.2255, 7.2243, 7.2227, 7.221, 7.2194, 7.2183, 7.2175, 7.2166, 7.215, 7.2136, 7.2131, 7.2122, 7.2107, 7.2138, 7.2124, 7.2115, 7.2103, 7.2094, 7.2108, 7.2188, 7.2264, 7.2253, 7.2261, 7.2246, 7.223, 7.2214, 7.2198, 7.2183, 7.2213, 7.2255, 7.2285, 7.227, 7.2259, 7.2243, 7.2232, 7.2263, 7.2247, 7.2233, 7.2218, 7.2249, 7.2285, 7.2274, 7.2259, 7.2253, 7.2238, 7.2266, 7.2253, 7.2242, 7.2242, 7.2239, 7.2222, 7.2207, 7.2241, 7.2226, 7.2211, 7.2201, 7.2233, 7.2272, 7.2276, 7.2264, 7.2256, 7.229, 7.2275, 7.2265, 7.2271, 7.2299, 7.2283, 7.2267, 7.2253, 7.2249, 7.2284, 7.2317, 7.2303, 7.2298, 7.2284, 7.2272, 7.2262, 7.2257, 7.2292, 7.2282, 7.2276, 7.2284, 7.2271, 7.23, 7.2294, 7.2325, 7.2314, 7.2304, 7.2344, 7.2331, 7.2323, 7.2311, 7.2312, 7.2297, 7.2288, 7.2283, 7.2276, 7.227, 7.2265, 7.2277, 7.2266, 7.2256, 7.2247, 7.2249, 7.2239, 7.227, 7.2256, 7.2252, 7.2239, 7.2224, 7.2214, 7.2243, 7.2232, 7.2221, 7.2206, 7.2234, 7.2226, 7.2212, 7.2203, 7.2195, 7.2191, 7.2281, 7.2272, 7.2295, 7.2343, 7.2333, 7.2318, 7.2311, 7.2302, 7.229, 7.2379, 7.2365, 7.2357, 7.2344, 7.2343, 7.233, 7.2322, 7.2314, 7.2305, 7.2343, 7.2331, 7.2326, 7.2313, 7.2348, 7.2383, 7.2415, 7.2411, 7.2401, 7.2435, 7.243, 7.2465, 7.2492, 7.2481, 7.2473, 7.2462, 7.2456, 7.2446, 7.2434, 7.2421, 7.2414, 7.2409, 7.2482, 7.2552, 7.2546, 7.2574, 7.2604, 7.2591, 7.2582, 7.2577, 7.2567, 7.2559, 7.2585, 7.2584, 7.2612, 7.26, 7.2592, 7.2589, 7.2576, 7.2567, 7.2559, 7.2549, 7.2537, 7.2531, 7.2561, 7.2559, 7.2544, 7.2531, 7.2519, 7.2514, 7.2511, 7.2497, 7.2485, 7.2478, 7.2467, 7.2454, 7.2449, 7.2447, 7.2435, 7.2429, 7.242, 7.2406, 7.2437, 7.2463, 7.2501, 7.2493, 7.2482, 7.2476, 7.2463, 7.2489, 7.2519, 7.2509, 7.2497, 7.2488, 7.2477, 7.2469, 7.246, 7.2485, 7.2477, 7.2467, 7.2455, 7.2447, 7.2434, 7.242, 7.2445, 7.2469, 7.2455, 7.2451, 7.2497, 7.2561, 7.2562, 7.2565, 7.2552, 7.2617, 7.2607, 7.2636, 7.2664, 7.2653, 7.2648, 7.2636, 7.2625, 7.2613, 7.2608, 7.2599, 7.2624, 7.261, 7.2597, 7.2582, 7.2573, 7.256, 7.2557, 7.2547, 7.2576, 7.2604, 7.259, 7.2577, 7.257, 7.2596, 7.2626, 7.2622, 7.261, 7.2601, 7.2626, 7.2613, 7.2605, 7.2603, 7.2601, 7.2558, 7.2552, 7.2543, 7.2533, 7.2529, 7.2523, 7.2513, 7.2503, 7.2496, 7.2486, 7.2475, 7.2462, 7.2455, 7.2441, 7.2439, 7.2429, 7.246, 7.2453, 7.2487, 7.2477, 7.2477, 7.2499, 7.2487, 7.2517, 7.2509, 7.2535, 7.2523, 7.2518, 7.2543, 7.2567, 7.2558, 7.2546, 7.2534, 7.2523, 7.2551, 7.2542, 7.2537, 7.2532, 7.252, 7.2512, 7.2541, 7.253, 7.2524, 7.2551, 7.2542, 7.2542, 7.2534, 7.2529, 7.2518, 7.2514, 7.2504, 7.2493, 7.248, 7.2469, 7.2467, 7.2456, 7.2481, 7.247, 7.2461, 7.245, 7.2443, 7.2434, 7.2434, 7.2466, 7.2496, 7.2484, 7.2508, 7.2532, 7.2519, 7.2513, 7.2536, 7.2524, 7.2513, 7.2502, 7.2492, 7.2481, 7.2472, 7.246, 7.2457, 7.2447, 7.244, 7.2465, 7.2453, 7.2442, 7.2429, 7.242, 7.2408, 7.2434, 7.2425, 7.2419, 7.2409, 7.2438, 7.2462, 7.2457, 7.2479, 7.2608, 7.2596, 7.262, 7.2611, 7.2598, 7.259, 7.2582, 7.2575, 7.2604, 7.2601, 7.2591, 7.2585, 7.2574, 7.2568, 7.2556, 7.2581, 7.2571, 7.2564, 7.2557, 7.2584, 7.2606, 7.2602, 7.2647, 7.2642, 7.2668, 7.2692, 7.2687, 7.2681, 7.2706, 7.2697, 7.2724, 7.2714, 7.2708, 7.2698, 7.2705, 7.2695, 7.2718, 7.2707, 7.2695, 7.2683, 7.2671, 7.2661, 7.2649, 7.264, 7.2628, 7.2617, 7.2605, 7.26, 7.2624, 7.2615, 7.2604, 7.2591, 7.2581, 7.257, 7.2591, 7.2582, 7.264, 7.2631, 7.2619, 7.2609, 7.2602, 7.2591, 7.2579, 7.2567, 7.2559, 7.2547, 7.2536, 7.2559, 7.2549, 7.2538, 7.2561, 7.2555, 7.2548, 7.2547, 7.257, 7.2563, 7.2555, 7.2549, 7.2538, 7.2561, 7.2553, 7.2542, 7.2565, 7.2554, 7.2543, 7.2531, 7.2489, 7.2477, 7.2467, 7.2457, 7.2446, 7.2436, 7.2429, 7.2417, 7.2405, 7.2396, 7.2386, 7.2411, 7.2408, 7.2462, 7.2451, 7.2445, 7.244, 7.243, 7.2391, 7.2454, 7.2449, 7.2442, 7.243, 7.2423, 7.2419, 7.2416, 7.2406, 7.2397, 7.2421, 7.2411, 7.2404, 7.2425, 7.2413, 7.2405, 7.2398, 7.2395, 7.2383, 7.2376, 7.2366, 7.2363, 7.2383, 7.2371, 7.2363, 7.2419, 7.2408, 7.2398, 7.2389, 7.238, 7.2371, 7.2359, 7.2349, 7.2369, 7.236, 7.2354, 7.2347, 7.2341, 7.2337, 7.2329, 7.2318, 7.234, 7.2329, 7.232, 7.2315, 7.2313, 7.2333, 7.2325, 7.2329, 7.2408, 7.2429, 7.2419, 7.2443, 7.2462, 7.2455, 7.2448, 7.2451, 7.2475, 7.2466, 7.2454, 7.2443, 7.2462, 7.2456, 7.2449, 7.2442, 7.2432, 7.2424, 7.245, 7.2443, 7.2436, 7.2429, 7.2421, 7.2412, 7.2411, 7.2408, 7.24, 7.2396, 7.2389, 7.2382, 7.2374, 7.2434, 7.2427, 7.2426, 7.2448, 7.2443, 7.2436, 7.2464, 7.2484, 7.2474, 7.2466, 7.2486, 7.2514, 7.2504, 7.2497, 7.2485, 7.2476, 7.2465, 7.2472, 7.2469, 7.2462, 7.2457, 7.2449, 7.244, 7.2449, 7.2443, 7.2438, 7.2432, 7.2433, 7.2427, 7.2417, 7.2416, 7.2407, 7.2398, 7.2388, 7.2411, 7.2402, 7.2393, 7.2383, 7.2371, 7.2362, 7.2383, 7.2403, 7.2394, 7.2414, 7.2448, 7.2466, 7.2457, 7.2446, 7.2437, 7.2434, 7.2427, 7.2416, 7.2407, 7.2396, 7.2389, 7.241, 7.2508, 7.2505, 7.2496, 7.2498, 7.2492, 7.2482, 7.2472, 7.2493, 7.2484, 7.2504, 7.2494, 7.2485, 7.2482, 7.2473, 7.2454, 7.2444, 7.2433, 7.2424, 7.2413, 7.2404, 7.2398, 7.239, 7.2382, 7.2371, 7.2393, 7.2384, 7.2381, 7.2382, 7.2373, 7.2365, 7.2356, 7.2376, 7.2397, 7.2389, 7.2382, 7.2376, 7.2369, 7.2363, 7.2357, 7.2353, 7.2348, 7.2342, 7.2364, 7.2353, 7.2376, 7.2366, 7.2363, 7.2354, 7.2346, 7.2342, 7.2337, 7.2327, 7.2329, 7.2341, 7.2332, 7.2322, 7.2354, 7.2344, 7.2354, 7.2375, 7.2365, 7.2385, 7.2379, 7.2369, 7.2362, 7.2355, 7.2347, 7.2342, 7.234, 7.2334, 7.2357, 7.2349, 7.2348, 7.234, 7.2342, 7.2362, 7.2352, 7.235, 7.2344, 7.2342, 7.2409, 7.2411, 7.2468, 7.2464, 7.2473, 7.2469, 7.2491, 7.2536, 7.2529, 7.2521, 7.2511, 7.2533, 7.2527, 7.2519, 7.2511, 7.2505, 7.2498, 7.2488, 7.2479, 7.2476, 7.2475, 7.2472, 7.2494, 7.2465, 7.243, 7.2432, 7.2497, 7.2497, 7.2491, 7.2486, 7.2508, 7.2498, 7.2516, 7.2507, 7.25, 7.2494, 7.2496, 7.2489, 7.2481, 7.2485, 7.2477, 7.2469, 7.2467, 7.2457, 7.2449, 7.2443, 7.2433, 7.2455, 7.245, 7.2448, 7.244, 7.2461, 7.246, 7.2454, 7.2454, 7.2446, 7.2441, 7.2432, 7.2426, 7.2427, 7.2417, 7.2409, 7.2454, 7.2449, 7.2443, 7.244, 7.2461, 7.2458, 7.2451, 7.2469, 7.246, 7.245, 7.2441, 7.2438, 7.2428, 7.2422, 7.2416, 7.2438, 7.2457, 7.2451, 7.2473, 7.2472, 7.2465, 7.2455, 7.2476, 7.2493, 7.2513, 7.2509, 7.2527, 7.2521, 7.2539, 7.2532, 7.253, 7.2522, 7.2521, 7.2546, 7.2541, 7.2538, 7.2531, 7.2523, 7.2523, 7.2513, 7.251, 7.2503, 7.2494, 7.2486, 7.248, 7.2484, 7.2481, 7.2504, 7.2498, 7.2489, 7.2479, 7.2469, 7.2468, 7.2466, 7.2457, 7.2505, 7.2498, 7.2492, 7.2483, 7.248, 7.2502, 7.2502, 7.2494, 7.2493, 7.2493, 7.2522, 7.2515, 7.2535, 7.2536, 7.2615, 7.2605, 7.2596, 7.259, 7.2587, 7.258, 7.257, 7.2561, 7.2555, 7.2551, 7.2543, 7.2541, 7.2538, 7.2536, 7.2557, 7.2549, 7.2542, 7.2541, 7.2572, 7.2565, 7.2589, 7.2584, 7.2583, 7.2574, 7.2573, 7.2571, 7.2563, 7.2557, 7.2554, 7.2549, 7.2571, 7.2562, 7.2564, 7.2535, 7.2554, 7.2554, 7.2546, 7.2562, 7.2555, 7.2575, 7.2596, 7.259, 7.2582, 7.2577, 7.2568, 7.2587, 7.2603, 7.2595, 7.259, 7.2584, 7.258, 7.2577, 7.2571, 7.2569, 7.2563, 7.2536, 7.2527, 7.2545, 7.2541, 7.2536, 7.2531, 7.2562, 7.2553, 7.2548, 7.2539, 7.2531, 7.2527, 7.2517, 7.2509, 7.2503, 7.2495, 7.2487, 7.2481, 7.2477, 7.2467, 7.2462, 7.2479, 7.2472, 7.2464, 7.2476, 7.2469, 7.2486, 7.248, 7.25, 7.25, 7.2491, 7.2511, 7.2522, 7.2513, 7.2507, 7.2503, 7.2494, 7.2485, 7.2477, 7.2468, 7.2462, 7.2454, 7.2446, 7.2467, 7.2493, 7.2487, 7.2478, 7.2469, 7.2467, 7.2467, 7.2458, 7.2452, 7.2442, 7.2436, 7.2426, 7.2443, 7.2437, 7.243, 7.2421, 7.2438, 7.2433, 7.2435, 7.2426, 7.2475, 7.2469, 7.2463, 7.2454, 7.2473, 7.2478, 7.2475, 7.247, 7.2468, 7.2461, 7.2453, 7.2447, 7.2465, 7.2455, 7.245, 7.2443, 7.2446, 7.244, 7.2435, 7.2427, 7.2419, 7.2411, 7.2407, 7.2398, 7.239, 7.2384, 7.2376, 7.2394, 7.2412, 7.2456, 7.2456, 7.2448, 7.244, 7.2431, 7.2446, 7.2463, 7.254, 7.2567, 7.2596, 7.2641, 7.2634, 7.263, 7.2628, 7.2621, 7.2614, 7.2606, 7.26, 7.2623, 7.2619, 7.2593, 7.2587, 7.2588, 7.2582, 7.2599, 7.2596, 7.2592, 7.2584, 7.2575, 7.2566, 7.2557, 7.255, 7.2543, 7.2542, 7.2557, 7.2549, 7.2565, 7.2558, 7.2549, 7.2545, 7.2539, 7.2531, 7.2547, 7.2538, 7.2529, 7.2521, 7.2515, 7.2508, 7.2566, 7.2564, 7.256, 7.2553, 7.2549, 7.2541, 7.2532, 7.2528, 7.2525, 7.2517, 7.2509, 7.2502, 7.252, 7.2512, 7.2508, 7.2501, 7.252, 7.2511, 7.2503, 7.2496, 7.249, 7.2488, 7.248, 7.2471, 7.2464, 7.2479, 7.2477, 7.2494, 7.2487, 7.248, 7.2472, 7.2465, 7.2465, 7.2467, 7.2461, 7.2454, 7.2446, 7.2439, 7.2431, 7.2424, 7.242, 7.2413, 7.2408, 7.2448, 7.2445, 7.2442, 7.2436, 7.2435, 7.2453, 7.2451, 7.2467, 7.2459, 7.2453, 7.2446, 7.2437, 7.2436, 7.2432, 7.2446, 7.2441, 7.2433, 7.2451, 7.2468, 7.246, 7.2463, 7.2459, 7.2452, 7.2467, 7.2459, 7.2455, 7.2451, 7.2443, 7.2437, 7.2429, 7.2423, 7.2416, 7.241, 7.2426, 7.2419, 7.2412, 7.2405, 7.2422, 7.2417, 7.2411, 7.2405, 7.243, 7.2427, 7.242, 7.2412, 7.2404, 7.2396, 7.241, 7.2408, 7.24, 7.2416, 7.2407, 7.2401, 7.2392, 7.2387, 7.2379, 7.2373, 7.2367, 7.2362, 7.2358, 7.2389, 7.2383, 7.2375, 7.2369, 7.2365, 7.2361, 7.2353, 7.2345, 7.2337, 7.2338, 7.233, 7.2346, 7.2343, 7.2337, 7.2334, 7.2327, 7.2322, 7.2336, 7.2329, 7.2322, 7.2314, 7.2306, 7.2301, 7.2295, 7.2292, 7.2285, 7.2315, 7.2307, 7.2301, 7.2297, 7.2316, 7.2309, 7.2301, 7.2297, 7.2312, 7.2329, 7.2327, 7.2322, 7.2314, 7.2311, 7.233, 7.2325, 7.2316, 7.2355, 7.2373, 7.2392, 7.2388, 7.2363, 7.236, 7.2353, 7.237, 7.2361, 7.2375, 7.2367, 7.2361, 7.2359, 7.2353, 7.235, 7.2367, 7.236, 7.2355, 7.2353, 7.235, 7.2342, 7.2334, 7.2327, 7.2324, 7.2343, 7.2358, 7.2382, 7.2374, 7.2392, 7.2384, 7.2402, 7.2418, 7.241, 7.2404, 7.2419, 7.2416, 7.2511, 7.2507, 7.25, 7.2495, 7.2488, 7.2496, 7.2543, 7.2539, 7.2534, 7.2526, 7.2552, 7.2545, 7.2586, 7.2649, 7.2644, 7.2639, 7.2655, 7.2647, 7.2643, 7.266, 7.2653, 7.2647, 7.2641, 7.2639, 7.2633, 7.2627, 7.2624, 7.2619, 7.2635, 7.2629, 7.2621, 7.2614, 7.2611, 7.2603, 7.2601, 7.2595, 7.261, 7.2604, 7.2601, 7.2595, 7.26, 7.2597, 7.2596, 7.2595, 7.2623, 7.262, 7.2612, 7.2608, 7.2628, 7.2625, 7.2617, 7.2614, 7.2607, 7.2602, 7.26, 7.2594, 7.2593, 7.261, 7.2604, 7.2602, 7.2594, 7.2587, 7.2579, 7.2572, 7.2567, 7.256, 7.2555, 7.255, 7.2542, 7.2535, 7.253, 7.2523, 7.2516, 7.251, 7.2505, 7.2498, 7.2492, 7.2486, 7.2502, 7.2502, 7.2496, 7.2512, 7.2508, 7.2503, 7.2499, 7.2491, 7.2486, 7.2501, 7.2495, 7.249, 7.2488, 7.2504, 7.25, 7.2494, 7.249, 7.2482, 7.2477, 7.2472, 7.2465, 7.2467, 7.2459, 7.2499, 7.2494, 7.2487, 7.2479, 7.2472, 7.2466, 7.2461, 7.2476, 7.2469, 7.2484, 7.2477, 7.2471, 7.2464, 7.248, 7.2475, 7.2468, 7.2462, 7.2479, 7.2476, 7.2473, 7.2473, 7.2469, 7.2462, 7.2456, 7.2451, 7.2446, 7.2439, 7.2434, 7.2429, 7.2443, 7.2459, 7.2452, 7.2446, 7.2443, 7.2436, 7.2452, 7.2448, 7.2441, 7.2456, 7.245, 7.2443, 7.2436, 7.2454, 7.2447, 7.2441, 7.2438, 7.243, 7.2422, 7.2423, 7.2417, 7.2411, 7.2405, 7.2398, 7.2396, 7.2411, 7.2408, 7.2432, 7.2449, 7.2442, 7.2436, 7.2432, 7.2429, 7.2424, 7.2417, 7.2413, 7.2408, 7.2425, 7.242, 7.2413, 7.2426, 7.2419, 7.2434, 7.2429, 7.2423, 7.2418, 7.2523, 7.2517, 7.2512, 7.2525, 7.2521, 7.2535, 7.2551, 7.2543, 7.2535, 7.2528, 7.2528, 7.2521, 7.2537, 7.2532, 7.2537, 7.2531, 7.2545, 7.254, 7.2533, 7.255, 7.2545, 7.2539, 7.2534, 7.2528, 7.2546, 7.254, 7.2538, 7.2532, 7.2525, 7.253, 7.2565, 7.2561, 7.2554, 7.2547, 7.2564, 7.2558, 7.2552, 7.2548, 7.2545, 7.2541, 7.2535, 7.2528, 7.2525, 7.2521, 7.2539, 7.2536, 7.253, 7.2588, 7.2583, 7.2598, 7.2593, 7.2586, 7.2584, 7.2581, 7.2574, 7.2566, 7.2607, 7.2609, 7.2607, 7.2621, 7.2614, 7.2607, 7.262, 7.2613, 7.2605, 7.2597, 7.259, 7.2584, 7.2576, 7.2572, 7.2565, 7.2559, 7.2554, 7.2569, 7.2561, 7.2568, 7.2566, 7.2572, 7.2587, 7.2581, 7.2577, 7.257, 7.2563, 7.2559, 7.2556, 7.2553, 7.2547, 7.2606, 7.2621, 7.2614, 7.2609, 7.2587, 7.258, 7.2575, 7.2571, 7.2587, 7.2581, 7.2579, 7.2572, 7.2567, 7.2563, 7.2561, 7.2554, 7.2569, 7.2563, 7.2556, 7.2554, 7.2551, 7.2546, 7.256, 7.2558, 7.2553, 7.255, 7.2544, 7.254, 7.2536, 7.2552, 7.2548, 7.2547, 7.2542, 7.254, 7.2534, 7.2529, 7.2542, 7.258, 7.2574, 7.2569, 7.2566, 7.2559, 7.2554, 7.2551, 7.2567, 7.2563, 7.2563, 7.2558, 7.2574, 7.2567, 7.2562, 7.2557, 7.2553, 7.2568, 7.2561, 7.2554, 7.2548, 7.2544, 7.2557, 7.255, 7.2545, 7.2539, 7.2533, 7.2527, 7.254, 7.2541, 7.2536, 7.2529, 7.2523, 7.2517, 7.2532, 7.2528, 7.2521, 7.2534, 7.255, 7.2565, 7.2601, 7.2595, 7.2589, 7.2603, 7.2602, 7.2597, 7.2613, 7.2608, 7.2601, 7.2598, 7.2651, 7.2656, 7.2652, 7.2653, 7.2675, 7.2672, 7.2669, 7.2664, 7.268, 7.2696, 7.2692, 7.2712, 7.2711, 7.2736, 7.2731, 7.2746, 7.2761, 7.2756, 7.2754, 7.275, 7.2746, 7.276, 7.2756, 7.2751, 7.2769, 7.2767, 7.2762, 7.2757, 7.275, 7.2745, 7.2742, 7.2757, 7.2752, 7.2747, 7.2741, 7.2721, 7.2701, 7.2681, 7.2696, 7.2677, 7.2671, 7.2672, 7.2693, 7.2687, 7.2682, 7.2679, 7.2673, 7.2666, 7.2684, 7.2691, 7.2685, 7.2701, 7.2695, 7.2756, 7.2752, 7.2802, 7.2797, 7.279, 7.2788, 7.2783, 7.278, 7.2774, 7.2752, 7.2746, 7.2742, 7.2777, 7.2773, 7.2766, 7.2779, 7.2777, 7.279, 7.2787, 7.2782, 7.278, 7.2774, 7.2772, 7.2766, 7.276, 7.2757, 7.2753, 7.2747, 7.2762, 7.2755, 7.2748, 7.2742, 7.2735, 7.273, 7.2725, 7.2719, 7.2717, 7.2718, 7.2731, 7.2745, 7.2742, 7.2755, 7.2748, 7.2741, 7.2734, 7.2734, 7.2748, 7.2744, 7.2778, 7.2778, 7.2773, 7.2767, 7.2761, 7.2756, 7.2749, 7.2784, 7.2779, 7.2793, 7.2788, 7.2781, 7.2778, 7.2771, 7.2765, 7.2758, 7.2752, 7.2765, 7.2761, 7.2757, 7.277, 7.2763, 7.2757, 7.2751, 7.2747, 7.2743, 7.274, 7.2736, 7.2731, 7.2724, 7.2717, 7.271, 7.2703, 7.2698, 7.2691, 7.2704, 7.2698, 7.2709, 7.2723, 7.2716, 7.2711, 7.2723, 7.2721, 7.2716, 7.2717, 7.2713, 7.2707, 7.2726, 7.2761, 7.2755, 7.2748, 7.2746, 7.274, 7.2734, 7.2746, 7.276, 7.2754, 7.2748, 7.2749, 7.2762, 7.2776, 7.2789, 7.2802, 7.2858, 7.2869, 7.2865, 7.2859, 7.2855, 7.2849, 7.2847, 7.284, 7.2836, 7.2831, 7.2825, 7.2821, 7.2833, 7.2826, 7.2824, 7.2819, 7.2814, 7.281, 7.2806, 7.2821, 7.2833, 7.2828, 7.2823, 7.2819, 7.2813, 7.2808, 7.2803, 7.2798, 7.2813, 7.281, 7.2829, 7.2826, 7.2823, 7.2818, 7.2815, 7.281, 7.2805, 7.2801, 7.2814, 7.2809, 7.2802, 7.2796, 7.2792, 7.2788, 7.2788, 7.2802, 7.2799, 7.2796, 7.2793, 7.2787, 7.2782, 7.2793, 7.2788, 7.2784, 7.2779, 7.2773, 7.277, 7.2763, 7.2775, 7.2771, 7.2767, 7.2762, 7.2767, 7.2765, 7.276, 7.2754, 7.2749, 7.2742, 7.2737, 7.2732, 7.293, 7.2944, 7.2938, 7.2934, 7.2927, 7.292, 7.2914, 7.2911, 7.291, 7.289, 7.2893, 7.289, 7.2885, 7.2882, 7.2876, 7.2886, 7.2879, 7.2892, 7.2886, 7.2898, 7.291, 7.2904, 7.2898, 7.2891, 7.2885, 7.2896, 7.2932, 7.2926, 7.2927, 7.2927, 7.2942, 7.294, 7.2935, 7.295, 7.2947, 7.2943, 7.2938, 7.2932, 7.2925, 7.2927, 7.2927, 7.2928, 7.2964, 7.296, 7.2994, 7.299, 7.2986, 7.2985, 7.2979, 7.2975, 7.2989, 7.2989, 7.2986, 7.299, 7.2988, 7.3016, 7.2999, 7.2998, 7.3014, 7.301, 7.3005, 7.3032, 7.3057, 7.3055, 7.305, 7.3045, 7.3065, 7.3059, 7.3055, 7.3068, 7.3064, 7.306, 7.3056, 7.3052, 7.3048, 7.3048, 7.3029, 7.3031, 7.3025, 7.3026, 7.3019, 7.3013, 7.3007, 7.3002, 7.2996, 7.3009, 7.304, 7.3036, 7.303, 7.3008, 7.3001, 7.2997, 7.3007, 7.3019, 7.3014, 7.3007, 7.3002, 7.3017, 7.3047, 7.3032, 7.3047, 7.3042, 7.3048, 7.3044, 7.3038, 7.3037, 7.3033, 7.3031, 7.3025, 7.3019, 7.3013, 7.3009, 7.3002, 7.2999, 7.3011, 7.3005, 7.3004, 7.2998, 7.2992, 7.2986, 7.298, 7.2979, 7.2975, 7.2973, 7.2971, 7.2965, 7.2962, 7.2957, 7.2969, 7.2963, 7.2963, 7.2957, 7.2987, 7.2987, 7.3022, 7.3035, 7.3046, 7.3042, 7.3054, 7.3051, 7.3045, 7.3041, 7.3038, 7.3032, 7.3029, 7.3041, 7.3036, 7.3036, 7.3032, 7.3028, 7.3024, 7.3037, 7.3031, 7.3026, 7.3022, 7.3016, 7.3012, 7.3006, 7.3, 7.2995, 7.2995, 7.2989, 7.2984, 7.2995, 7.3033, 7.3028, 7.3065, 7.3059, 7.3054, 7.3052, 7.3054, 7.305, 7.3046, 7.3044, 7.3042, 7.3037, 7.3033, 7.3046, 7.3041, 7.304, 7.3034, 7.3028, 7.3038, 7.3034, 7.3028, 7.3039, 7.3036, 7.3031, 7.3029, 7.3024, 7.3019, 7.3017, 7.3011, 7.3018, 7.3013, 7.3009, 7.3005, 7.3005, 7.3006, 7.3004, 7.3017, 7.3029, 7.3023, 7.3019, 7.3013, 7.301, 7.3007, 7.3003, 7.3001, 7.298, 7.2962, 7.2944, 7.2941, 7.2938, 7.2948, 7.2959, 7.2956, 7.295, 7.2945, 7.2947, 7.2945, 7.2941, 7.2938, 7.2935, 7.2932, 7.2929, 7.2923, 7.2956, 7.295, 7.2945, 7.2955, 7.2954, 7.2967, 7.2966, 7.296, 7.2956, 7.2967, 7.2978, 7.2976, 7.297, 7.2968, 7.2962, 7.2956, 7.295, 7.2944, 7.2938, 7.2935, 7.2946, 7.294, 7.2951, 7.2962, 7.2974, 7.2986, 7.2965, 7.296, 7.2953, 7.2947, 7.2943, 7.2942, 7.2953, 7.2949, 7.2946, 7.2943, 7.2937, 7.2934, 7.2928, 7.2923, 7.2922, 7.2918, 7.2912, 7.291, 7.2908, 7.2902, 7.2914, 7.291, 7.2923, 7.2924, 7.292, 7.2915, 7.2909, 7.2922, 7.2916, 7.2913, 7.2907, 7.2903, 7.2913, 7.2908, 7.2918, 7.2913, 7.2911, 7.2905, 7.2899, 7.2893, 7.2905, 7.2915, 7.291, 7.2904, 7.29, 7.2897, 7.2895, 7.2889, 7.2902, 7.2913, 7.2907, 7.2904, 7.2898, 7.2894, 7.2908, 7.2905, 7.2903, 7.2916, 7.2912, 7.2924, 7.2921, 7.2915, 7.2925, 7.2921, 7.2932, 7.2929, 7.2925, 7.2906, 7.2918, 7.2914, 7.291, 7.2907, 7.2902, 7.2899, 7.2898, 7.2893, 7.2905, 7.2901, 7.2899, 7.2895, 7.2908, 7.2906, 7.2901, 7.2897, 7.2891, 7.2889, 7.2885, 7.2896, 7.2891, 7.2887, 7.2882, 7.2876, 7.2872, 7.2869, 7.2865, 7.2861, 7.2859, 7.2854, 7.2865, 7.2862, 7.2857, 7.2869, 7.2866, 7.2862, 7.2859, 7.2854, 7.2848, 7.2843, 7.284, 7.2836, 7.2832, 7.2829, 7.2824, 7.2818, 7.2813, 7.2807, 7.2804, 7.2802, 7.2798, 7.2794, 7.279, 7.2784, 7.2781, 7.2776, 7.2777, 7.2803, 7.2802, 7.2786, 7.2782, 7.2779, 7.2775, 7.2769, 7.2768, 7.2763, 7.2757, 7.2754, 7.2751, 7.2732, 7.2729, 7.2725, 7.2719, 7.2714, 7.2709, 7.2705, 7.2716, 7.2713, 7.2734, 7.2732, 7.2726, 7.2736, 7.2731, 7.2731, 7.2725, 7.2721, 7.2717, 7.2728, 7.2722, 7.2718, 7.2712, 7.2708, 7.2719, 7.272, 7.2717, 7.2716, 7.2711, 7.2706, 7.2701, 7.2696, 7.269, 7.2686, 7.2697, 7.2694, 7.269, 7.2684, 7.268, 7.269, 7.2685, 7.2681, 7.2678, 7.2672, 7.2666, 7.266, 7.2655, 7.2654, 7.265, 7.2647, 7.2658, 7.2658, 7.2654, 7.2651, 7.2646, 7.2643, 7.2654, 7.2649, 7.2644, 7.2639, 7.2639, 7.2634, 7.2629, 7.2625, 7.2634, 7.2692, 7.2673, 7.267, 7.2667, 7.2662, 7.271, 7.2721, 7.2719, 7.2715, 7.271, 7.2723, 7.2719, 7.2714, 7.271, 7.2708, 7.2704, 7.2702, 7.27, 7.2696, 7.269, 7.2718, 7.2714, 7.2758, 7.2756, 7.2758, 7.2754, 7.2752, 7.2747, 7.2743, 7.2738, 7.2752, 7.2758, 7.2753, 7.2749, 7.2744, 7.2739, 7.2739, 7.2749, 7.2761, 7.2756, 7.2755, 7.275, 7.2761, 7.2773, 7.2771, 7.2766, 7.2761, 7.2757, 7.2752, 7.2747, 7.2759, 7.2754, 7.2749, 7.2761, 7.2756, 7.2755, 7.2765, 7.2765, 7.2779, 7.2774, 7.277, 7.2767, 7.2763, 7.2757, 7.2752, 7.2749, 7.2744, 7.2738, 7.2735, 7.2746, 7.2756, 7.2751, 7.2746, 7.2757, 7.2752, 7.2733, 7.2728, 7.2723, 7.2737, 7.2746, 7.274, 7.2737, 7.2732, 7.2729, 7.2724, 7.2719, 7.2729, 7.2725, 7.2722, 7.2717, 7.2713, 7.2709, 7.2707, 7.2721, 7.2715, 7.2711, 7.2705, 7.27, 7.2694, 7.269, 7.2685, 7.2684, 7.2681, 7.2678, 7.2675, 7.2673, 7.2671, 7.2684, 7.268, 7.2675, 7.2672, 7.2666, 7.2665, 7.2661, 7.2673, 7.2669, 7.2665, 7.2659, 7.2656, 7.2654, 7.2652, 7.2648, 7.2646, 7.2657, 7.2656, 7.2651, 7.265, 7.2648, 7.2642, 7.2639, 7.2651, 7.2645, 7.2641, 7.2637, 7.2632, 7.2641, 7.2635, 7.2631, 7.264, 7.2635, 7.2617, 7.2599, 7.2596, 7.2594, 7.2605, 7.2618, 7.2614, 7.2609, 7.2606, 7.2604, 7.26, 7.2594, 7.2591, 7.2587, 7.2585, 7.258, 7.2579, 7.2573, 7.2584, 7.258, 7.2591, 7.2601, 7.2596, 7.259, 7.2585, 7.258, 7.2575, 7.2572, 7.2585, 7.2583, 7.2578, 7.2573, 7.2554, 7.2565, 7.2576, 7.2572, 7.2567, 7.2577, 7.2572, 7.2567, 7.2564, 7.2561, 7.2556, 7.2554, 7.2549, 7.2546, 7.2541, 7.2537, 7.2535, 7.2531, 7.2528, 7.2523, 7.252, 7.253, 7.2526, 7.2523, 7.2518, 7.2513, 7.2508, 7.2504, 7.2514, 7.251, 7.2508, 7.2504, 7.2501, 7.2512, 7.2509, 7.2505, 7.25, 7.2495, 7.249, 7.2485, 7.2482, 7.2477, 7.2473, 7.2468, 7.2464, 7.2461, 7.2457, 7.2453, 7.245, 7.2451, 7.2446, 7.2445, 7.2442, 7.2453, 7.2452, 7.2447, 7.2429, 7.2426, 7.2421, 7.243, 7.2426, 7.2437, 7.2433, 7.2435, 7.2441, 7.2439, 7.2449, 7.2444, 7.244, 7.2449, 7.2444, 7.244, 7.2454, 7.2464, 7.2461, 7.2457, 7.2454, 7.2452, 7.2447, 7.2444, 7.2443, 7.244, 7.2438, 7.244, 7.2437, 7.2433, 7.243, 7.2442, 7.244, 7.2436, 7.2447, 7.2458, 7.2454, 7.2449, 7.2444, 7.2456, 7.2455, 7.2455, 7.2451, 7.2464, 7.2498, 7.2496, 7.2492, 7.2488, 7.2483, 7.2482, 7.2465, 7.2478, 7.2488, 7.25, 7.2498, 7.2494, 7.249, 7.249, 7.2487, 7.2485, 7.2483, 7.2478, 7.2475, 7.247, 7.2465, 7.2474, 7.2486, 7.2481, 7.2476, 7.2472, 7.2467, 7.2466, 7.2463, 7.2466, 7.2448, 7.2444, 7.244, 7.2436, 7.2436, 7.2431, 7.2426, 7.2421, 7.243, 7.2426, 7.2436, 7.2431, 7.2426, 7.2421, 7.2417, 7.2429, 7.2426, 7.2423, 7.242, 7.2415, 7.2415, 7.2413, 7.241, 7.2406, 7.2417, 7.2413, 7.2408, 7.2404, 7.24, 7.2397, 7.2394, 7.2404, 7.2403, 7.2401, 7.2399, 7.2394, 7.239, 7.2388, 7.2384, 7.2383, 7.2379, 7.239, 7.2424, 7.2422, 7.2418, 7.2428, 7.2426, 7.2421, 7.2423, 7.2419, 7.2416, 7.2412, 7.2424, 7.2421, 7.2419, 7.243, 7.2425, 7.2423, 7.2407, 7.2404, 7.2401, 7.2396, 7.2435, 7.2434, 7.2431, 7.2471, 7.2468, 7.2463, 7.2475, 7.2479, 7.2476, 7.2471, 7.2471, 7.2467, 7.2476, 7.2486, 7.2482, 7.2477, 7.2475, 7.2471, 7.2466, 7.2461, 7.2456, 7.2467, 7.2463, 7.2473, 7.2534, 7.2537, 7.2533, 7.2528, 7.2539, 7.2534, 7.2529, 7.2528, 7.2524, 7.2521, 7.2517, 7.2519, 7.2531, 7.2529, 7.2525, 7.2521, 7.2518, 7.2516, 7.2514, 7.2514, 7.2509, 7.2521, 7.2532, 7.253, 7.2541, 7.2552, 7.2548, 7.2545, 7.2541, 7.2536, 7.2532, 7.2532, 7.2527, 7.2523, 7.252, 7.2518, 7.2515, 7.2512, 7.2509, 7.2508, 7.2503, 7.2498, 7.2496, 7.2492, 7.2491, 7.2501, 7.25, 7.2495, 7.2492, 7.2509, 7.2505, 7.2503, 7.2501, 7.2497, 7.2492, 7.249, 7.2489, 7.2498, 7.2497, 7.2495, 7.2492, 7.249, 7.2486, 7.2483, 7.2478, 7.2474, 7.247, 7.2465, 7.2461, 7.2459, 7.2458, 7.2456, 7.2453, 7.2449, 7.2444, 7.2441, 7.2451, 7.2448, 7.2447, 7.2443, 7.244, 7.2441, 7.2437, 7.2432, 7.2434, 7.243, 7.2428, 7.2424, 7.242, 7.2416, 7.2425, 7.2422, 7.2417, 7.244, 7.2451, 7.2449, 7.2446, 7.2441, 7.2443, 7.2439, 7.2449, 7.2459, 7.2455, 7.2452, 7.2448, 7.2443, 7.244, 7.2451, 7.2449, 7.2445, 7.244, 7.2437, 7.2432, 7.2427, 7.2422, 7.2417, 7.2414, 7.2423, 7.2433, 7.2433, 7.243, 7.243, 7.2487, 7.2482, 7.2477, 7.2474, 7.2474, 7.2487, 7.2486, 7.2486, 7.2483, 7.2494, 7.2491, 7.2488, 7.2486, 7.2482, 7.2481, 7.2477, 7.2473, 7.2484, 7.248, 7.2491, 7.2501, 7.2506, 7.2502, 7.2499, 7.2503, 7.2504, 7.25, 7.2498, 7.2493, 7.2489, 7.2485, 7.2495, 7.2492, 7.2488, 7.2486, 7.2483, 7.2481, 7.2497, 7.2493, 7.2488, 7.2483, 7.2481, 7.2478, 7.2481, 7.2477, 7.2475, 7.2473, 7.2469, 7.2465, 7.2462, 7.2473, 7.2471, 7.2467, 7.2468, 7.2464, 7.2462, 7.2458, 7.2455, 7.2466, 7.2491, 7.2515, 7.2526, 7.2538, 7.2539, 7.2536, 7.2536, 7.2533, 7.253, 7.2527, 7.2526, 7.2523, 7.2518, 7.2513, 7.251, 7.252, 7.2515, 7.2511, 7.2508, 7.2503, 7.2514, 7.251, 7.2519, 7.2515, 7.2512, 7.2509, 7.2507, 7.2506, 7.2504, 7.249, 7.2487, 7.2482, 7.2477, 7.2472, 7.2502, 7.2498, 7.2494, 7.2491, 7.2487, 7.2483, 7.2493, 7.2504, 7.2514, 7.2526, 7.2523, 7.2507, 7.2492, 7.2489, 7.2484, 7.2539, 7.2541, 7.2563, 7.2559, 7.2556, 7.2552, 7.2552, 7.2548, 7.2563, 7.256, 7.2564, 7.258, 7.2589, 7.2586, 7.2582, 7.258, 7.2576, 7.2572, 7.2568, 7.2565, 7.2562, 7.256, 7.2556, 7.2556, 7.2552, 7.2563, 7.2588, 7.2585, 7.2595, 7.2591, 7.2601, 7.2598, 7.2611, 7.2619, 7.2616, 7.2612, 7.2622, 7.2619, 7.2615, 7.2627, 7.2623, 7.2619, 7.2628, 7.2624, 7.2623, 7.2619, 7.2629, 7.2626, 7.2635, 7.2631, 7.2627, 7.2623, 7.2621, 7.2617, 7.2615, 7.2613, 7.2609, 7.2604, 7.2601, 7.2597, 7.2593, 7.259, 7.2587, 7.2583, 7.2578, 7.2575, 7.257, 7.2579, 7.2575, 7.2572, 7.2569, 7.2565, 7.2549, 7.2535, 7.253, 7.2527, 7.2522, 7.2518, 7.2516, 7.2515, 7.2511, 7.252, 7.2517, 7.2502, 7.25, 7.2503, 7.2488, 7.2485, 7.2483, 7.2478, 7.2474, 7.2472, 7.2468, 7.2465, 7.2475, 7.2485, 7.2483, 7.2481, 7.2467, 7.2451, 7.2449, 7.2459, 7.2456, 7.2441, 7.2429, 7.2427, 7.2437, 7.2434, 7.2443, 7.244, 7.2449, 7.245, 7.2446, 7.2442, 7.244, 7.2438, 7.2434, 7.2444, 7.2441, 7.2444, 7.244, 7.2436, 7.2432, 7.2456, 7.2466, 7.2476, 7.2472, 7.2471, 7.2467, 7.2463, 7.2461, 7.2458, 7.2458, 7.2468, 7.2465, 7.2478, 7.2475, 7.247, 7.2471, 7.2469, 7.2464, 7.2465, 7.2463, 7.246, 7.2457, 7.2455, 7.2453, 7.245, 7.2458, 7.2453, 7.2449, 7.2458, 7.2453, 7.2457, 7.2453, 7.2437, 7.2433, 7.2442, 7.2431, 7.2427, 7.2423, 7.2419, 7.2417, 7.2426, 7.2424, 7.2433, 7.2443, 7.2438, 7.2436, 7.2433, 7.2432, 7.2443, 7.2444, 7.2441, 7.2438, 7.2436, 7.2433, 7.243, 7.2427, 7.2438, 7.2443, 7.244, 7.245, 7.246, 7.2485, 7.2483, 7.2479, 7.2489, 7.2485, 7.2495, 7.2507, 7.2504, 7.25, 7.2498, 7.2519, 7.2527, 7.255, 7.2563, 7.256, 7.2557, 7.2553, 7.2551, 7.2547, 7.2549, 7.2546, 7.2542, 7.254, 7.2536, 7.2534, 7.2532, 7.2528, 7.2525, 7.2534, 7.2533, 7.2529, 7.253, 7.2529, 7.255, 7.2535, 7.2533, 7.2529, 7.2525, 7.2528, 7.2537, 7.2534, 7.2532, 7.254, 7.2548, 7.2545, 7.2541, 7.2539, 7.2536, 7.2536, 7.2532, 7.253, 7.2526, 7.2525, 7.252, 7.253, 7.2528, 7.2525, 7.2521, 7.2508, 7.2504, 7.2514, 7.2522, 7.2519, 7.2515, 7.2511, 7.251, 7.2506, 7.2503, 7.25, 7.2497, 7.2494, 7.249, 7.2489, 7.2496, 7.2492, 7.2488, 7.2486, 7.2471, 7.2498, 7.2498, 7.2495, 7.2492, 7.2502, 7.2499, 7.2495, 7.2491, 7.2487, 7.2482, 7.2478, 7.2474, 7.247, 7.2466, 7.2465, 7.2461, 7.246, 7.2456, 7.2452, 7.2449, 7.2445, 7.2455, 7.2451, 7.2459, 7.2454, 7.2452, 7.2448, 7.2444, 7.2448, 7.246, 7.2469, 7.2478, 7.2488, 7.2484, 7.248, 7.2479, 7.2488, 7.2486, 7.2482, 7.2477, 7.2473, 7.2471, 7.2469, 7.2469, 7.2471, 7.2482, 7.2478, 7.2489, 7.2489, 7.2488, 7.2484, 7.248, 7.2481, 7.2479, 7.2478, 7.2474, 7.2471, 7.2469, 7.2455, 7.2452, 7.2451, 7.2449, 7.2448, 7.2444, 7.2441, 7.2437, 7.2434, 7.2431, 7.243, 7.2427, 7.2436, 7.2432, 7.2429, 7.2426, 7.2423, 7.2421, 7.2418, 7.2416, 7.2414, 7.241, 7.2406, 7.2403, 7.2413, 7.241, 7.2407, 7.2404, 7.2413, 7.2421, 7.2417, 7.2414, 7.2412, 7.241, 7.2407, 7.2416, 7.2414, 7.2411, 7.2408, 7.2404, 7.2401, 7.2398, 7.2394, 7.2391, 7.2387, 7.2386, 7.2394, 7.239, 7.2386, 7.2395, 7.2391, 7.2391, 7.2387, 7.2383, 7.238, 7.2378, 7.2375, 7.2373, 7.2373, 7.237, 7.2367, 7.2376, 7.2376, 7.2373, 7.2359, 7.2355, 7.2352, 7.2348, 7.2347, 7.2343, 7.2342, 7.2341, 7.2339, 7.2336, 7.2334, 7.2334, 7.233, 7.2339, 7.2352, 7.2348, 7.2357, 7.2354, 7.235, 7.2347, 7.2355, 7.2351, 7.235, 7.2346, 7.2345, 7.2345, 7.2343, 7.2341, 7.2338, 7.2337, 7.2335, 7.2332, 7.234, 7.2349, 7.2346, 7.2345, 7.2346, 7.2343, 7.2339, 7.2335, 7.2333, 7.2329, 7.2326, 7.2324, 7.2321, 7.2318, 7.2315, 7.2323, 7.233, 7.2328, 7.2329, 7.2326, 7.2335, 7.2331, 7.2328, 7.2325, 7.2321, 7.2318, 7.2315, 7.2314, 7.231, 7.2307, 7.2303, 7.23, 7.2296, 7.2293, 7.2293, 7.2289, 7.2287, 7.2284, 7.2322, 7.2321, 7.232, 7.2318, 7.2317, 7.2328, 7.2327, 7.2325, 7.2322, 7.2319, 7.2329, 7.2341, 7.234, 7.2337, 7.2334, 7.2322, 7.2322, 7.2334, 7.2331, 7.2341, 7.2338, 7.2338, 7.2335, 7.2331, 7.2341, 7.2338, 7.2337, 7.2337, 7.2334, 7.2331, 7.2318, 7.2328, 7.2324, 7.2323, 7.2321, 7.2321, 7.2321, 7.233, 7.2327, 7.2323, 7.2333, 7.2343, 7.2339, 7.2325, 7.2322, 7.2318, 7.2315, 7.2311, 7.2307, 7.2303, 7.2301, 7.2302, 7.2325, 7.2358, 7.2355, 7.2353, 7.2349, 7.2359, 7.2359, 7.2369, 7.2368, 7.2364, 7.2362, 7.2358, 7.2353, 7.2349, 7.2347, 7.2355, 7.2351, 7.2363, 7.2361, 7.2358, 7.2355, 7.2356, 7.2352, 7.2349, 7.2345, 7.2344, 7.2353, 7.2351, 7.2347, 7.2345, 7.2353, 7.235, 7.2347, 7.2345, 7.2354, 7.2363, 7.2359, 7.2372, 7.2369, 7.2366, 7.2362, 7.2358, 7.2356, 7.2364, 7.2361, 7.2358, 7.2356, 7.2353, 7.2349, 7.2348, 7.2344, 7.234, 7.2336, 7.2332, 7.2328, 7.2327, 7.2348, 7.2345, 7.2342, 7.234, 7.2348, 7.2344, 7.2343, 7.2341, 7.2338, 7.2341, 7.2338, 7.2335, 7.2344, 7.2345, 7.2341, 7.2339, 7.2337, 7.2333, 7.2342, 7.2339, 7.2338, 7.2339, 7.2343, 7.2351, 7.2349, 7.2345, 7.2342, 7.2338, 7.2347, 7.2345, 7.2366, 7.2364, 7.2374, 7.2396, 7.2393, 7.24, 7.2398, 7.2395, 7.2392, 7.2378, 7.2366, 7.2352, 7.236, 7.2356, 7.2366, 7.2366, 7.2363, 7.2361, 7.2358, 7.2356, 7.2352, 7.2348, 7.2344, 7.234, 7.2339, 7.2346, 7.2357, 7.2366, 7.2362, 7.237, 7.2367, 7.2364, 7.2374, 7.2371, 7.2369, 7.2365, 7.2373, 7.2382, 7.2368, 7.2375, 7.2384, 7.2392, 7.2389, 7.2398, 7.2395, 7.2392, 7.2388, 7.2385, 7.2381, 7.2378, 7.2374, 7.2383, 7.238, 7.2389, 7.2376, 7.2374, 7.2374, 7.237, 7.2368, 7.2365, 7.2362, 7.2358, 7.2355, 7.2363, 7.2361, 7.2359, 7.2367, 7.2364, 7.2372, 7.2368, 7.2365, 7.2363, 7.2361, 7.2357, 7.2366, 7.2362, 7.236, 7.2368, 7.2364, 7.2362, 7.2358, 7.2355, 7.2366, 7.2362, 7.2358, 7.2357, 7.2343, 7.2342, 7.234, 7.2336, 7.2334, 7.2332, 7.233, 7.2326, 7.2334, 7.2332, 7.2321, 7.2317, 7.2314, 7.2345, 7.2343, 7.2342, 7.2351, 7.235, 7.2358, 7.2355, 7.2353, 7.2362, 7.237, 7.2366, 7.2364, 7.2384, 7.238, 7.2377, 7.2366, 7.2354, 7.2351, 7.2359, 7.2359, 7.2367, 7.2365, 7.2353, 7.2349, 7.2345, 7.2341, 7.2337, 7.2345, 7.2353, 7.2349, 7.2345, 7.2341, 7.233, 7.2327, 7.2323, 7.232, 7.2316, 7.2323, 7.232, 7.2316, 7.2312, 7.2308, 7.2304, 7.2304, 7.23, 7.2298, 7.2306, 7.2302, 7.231, 7.2317, 7.2314, 7.231, 7.2306, 7.2303, 7.2311, 7.2308, 7.2305, 7.2292, 7.2288, 7.2286, 7.2283, 7.228, 7.2277, 7.2278, 7.2277, 7.2274, 7.2288, 7.2296, 7.2323, 7.2324, 7.232, 7.2318, 7.2338, 7.2346, 7.2343, 7.2341, 7.2338, 7.2358, 7.2355, 7.2363, 7.236, 7.2358, 7.2354, 7.2352, 7.2349, 7.2345, 7.2342, 7.2372, 7.2369, 7.2378, 7.2375, 7.2384, 7.2384, 7.238, 7.2377, 7.2385, 7.2382, 7.2378, 7.2376, 7.2373, 7.2382, 7.2382, 7.238, 7.2377, 7.2374, 7.2382, 7.2383, 7.2383, 7.238, 7.2377, 7.2378, 7.2377, 7.2375, 7.2408, 7.2404, 7.24, 7.2399, 7.2407, 7.2405, 7.2402, 7.2398, 7.2395, 7.2392, 7.239, 7.2386, 7.2397, 7.2405, 7.2401, 7.2399, 7.2396, 7.2396, 7.2392, 7.2389, 7.2386, 7.24, 7.2424, 7.2423, 7.2421, 7.2434, 7.2421, 7.2419, 7.243, 7.243, 7.2427, 7.2426, 7.2425, 7.2422, 7.2441, 7.2448, 7.2445, 7.2454, 7.2454, 7.2463, 7.246, 7.2457, 7.2457, 7.2456, 7.2453, 7.2451, 7.246, 7.2467, 7.2464, 7.2463, 7.246, 7.2457, 7.2454, 7.2451, 7.2447, 7.2443, 7.244, 7.2436, 7.2432, 7.2429, 7.2426, 7.2433, 7.2441, 7.2438, 7.2439, 7.2448, 7.2445, 7.2442, 7.2439, 7.2436, 7.2434, 7.2448, 7.2459, 7.2488, 7.2488, 7.2487, 7.2473, 7.2471, 7.2474, 7.2471, 7.2468, 7.2465, 7.2463, 7.2472, 7.247, 7.2478, 7.2474, 7.2472, 7.2469, 7.2465, 7.2461, 7.2457, 7.2444, 7.2442, 7.2439, 7.2437, 7.2434, 7.2421, 7.2417, 7.2414, 7.2412, 7.2409, 7.2407, 7.2394, 7.239, 7.2389, 7.2386, 7.2386, 7.2385, 7.2384, 7.2371, 7.2389, 7.2389, 7.2407, 7.2394, 7.2401, 7.2399, 7.2408, 7.2415, 7.2425, 7.2422, 7.242, 7.2418, 7.2416, 7.2415, 7.2414, 7.2412, 7.2412, 7.2409, 7.2406, 7.2404, 7.24, 7.2397, 7.2394, 7.2402, 7.2429, 7.2426, 7.2431, 7.2442, 7.244, 7.2436, 7.2433, 7.2443, 7.2486, 7.2475, 7.2473, 7.2469, 7.2466, 7.2475, 7.2472, 7.247, 7.2467, 7.2464, 7.246, 7.2447, 7.2437, 7.2434, 7.2422, 7.242, 7.2418, 7.2427, 7.2425, 7.2434, 7.2432, 7.244, 7.2452, 7.2449, 7.2447, 7.2465, 7.249, 7.2489, 7.2498, 7.2496, 7.2525, 7.2522, 7.2532, 7.253, 7.2528, 7.2524, 7.2513, 7.2513, 7.251, 7.2509, 7.2521, 7.2519, 7.2522, 7.252, 7.2516, 7.2557, 7.2565, 7.2562, 7.2558, 7.2554, 7.2564, 7.2561, 7.2559, 7.2557, 7.2553, 7.255, 7.2557, 7.2553, 7.2549, 7.2538, 7.2526, 7.2523, 7.2512, 7.251, 7.2507, 7.2506, 7.2503, 7.251, 7.2509, 7.2506, 7.2505, 7.2501, 7.2499, 7.2496, 7.2494, 7.2491, 7.2487, 7.2485, 7.2494, 7.2494, 7.249, 7.2494, 7.249, 7.2498, 7.2506, 7.2505, 7.2512, 7.2509, 7.2521, 7.2517, 7.2513, 7.252, 7.2524, 7.252, 7.2518, 7.2514, 7.2513, 7.2509, 7.2507, 7.2504, 7.2503, 7.25, 7.2498, 7.2496, 7.2496, 7.2516, 7.2517, 7.2515, 7.2524, 7.2526, 7.2522, 7.2519, 7.2517, 7.2525, 7.2533, 7.2541, 7.2539, 7.2536, 7.2534, 7.2531, 7.2528, 7.2525, 7.2521, 7.2528, 7.2524, 7.2523, 7.252, 7.2529, 7.2526, 7.2524, 7.2522, 7.2519, 7.2516, 7.2513, 7.2511, 7.251, 7.2507, 7.2505, 7.2503, 7.249, 7.2479, 7.2467, 7.2463, 7.2479, 7.2466, 7.2464, 7.2462, 7.246, 7.2457, 7.2445, 7.2442, 7.2439, 7.2435, 7.2433, 7.243, 7.2427, 7.2435, 7.2431, 7.2429, 7.2428, 7.2425, 7.2422, 7.2429, 7.2425, 7.2421, 7.2418, 7.2414, 7.2412, 7.241, 7.2406, 7.2402, 7.2399, 7.2395, 7.2394, 7.2402, 7.2399, 7.2398, 7.2394, 7.239, 7.2389, 7.2396, 7.2395, 7.2393, 7.2391, 7.2392, 7.2388, 7.2376, 7.2373, 7.2382, 7.2379, 7.238, 7.2387, 7.2384, 7.2382, 7.2378, 7.2375, 7.2374, 7.2372, 7.2369, 7.2358, 7.2356, 7.2356, 7.2354, 7.2352, 7.2349, 7.2347, 7.2354, 7.2361, 7.2358, 7.2355, 7.2363, 7.2359, 7.2356, 7.2353, 7.2349, 7.2356, 7.2354, 7.2351, 7.2353, 7.235, 7.2349, 7.2356, 7.2355, 7.2353, 7.2341, 7.2338, 7.2334, 7.2331, 7.2328, 7.2335, 7.2332, 7.2328, 7.2336, 7.2333, 7.2329, 7.2325, 7.2321, 7.2317, 7.2314, 7.2311, 7.2308, 7.2305, 7.2301, 7.2299, 7.2308, 7.2295, 7.2304, 7.23, 7.2307, 7.2305, 7.2311, 7.2309, 7.2306, 7.2304, 7.2305, 7.2302, 7.2299, 7.2307, 7.2305, 7.2313, 7.2334, 7.2341, 7.234, 7.233, 7.2343, 7.2341, 7.2339, 7.235, 7.2347, 7.2354, 7.2352, 7.2342, 7.235, 7.235, 7.2357, 7.2354, 7.2352, 7.2353, 7.235, 7.2348, 7.2346, 7.2344, 7.2345, 7.2346, 7.2344, 7.2332, 7.2343, 7.234, 7.2351, 7.2359, 7.236, 7.2367, 7.2365, 7.2363, 7.2361, 7.236, 7.2367, 7.2366, 7.2364, 7.237, 7.2367, 7.2367, 7.2364, 7.2372, 7.237, 7.2367, 7.2365, 7.2372, 7.2371, 7.237, 7.2378, 7.2376, 7.2373, 7.2371, 7.2369, 7.2368, 7.2365, 7.2365, 7.2364, 7.2361, 7.2357, 7.2354, 7.2361, 7.236, 7.2357, 7.2355, 7.2362, 7.2358, 7.2356, 7.2354, 7.235, 7.235, 7.2348, 7.2347, 7.2345, 7.2341, 7.2341, 7.2337, 7.2335, 7.2335, 7.2332, 7.234, 7.2338, 7.2335, 7.2343, 7.2335, 7.2323, 7.2323, 7.232, 7.2317, 7.2316, 7.2322, 7.2318, 7.2314, 7.2322, 7.2311, 7.231, 7.2307, 7.2304, 7.2302, 7.23, 7.2298, 7.2296, 7.2294, 7.2292, 7.2289, 7.2277, 7.2275, 7.2294, 7.2291, 7.2288, 7.2286, 7.2283, 7.228, 7.2279, 7.2278, 7.2275, 7.2272, 7.2279, 7.2286, 7.2283, 7.2281, 7.2279, 7.2276, 7.2265, 7.2254, 7.2262, 7.227, 7.2277, 7.2274, 7.2272, 7.2269, 7.2269, 7.2266, 7.2265, 7.2262, 7.2259, 7.2256, 7.2253, 7.225, 7.2247, 7.2255, 7.2252, 7.225, 7.225, 7.2257, 7.2245, 7.2244, 7.2241, 7.2238, 7.2235, 7.2233, 7.223, 7.2229, 7.2229, 7.2227, 7.2227, 7.2227, 7.2223, 7.2221, 7.2209, 7.2206, 7.2203, 7.2204, 7.2216, 7.2224, 7.2222, 7.2219, 7.2208, 7.2205, 7.2202, 7.22, 7.2198, 7.2196, 7.2199, 7.2221, 7.2228, 7.2228, 7.223, 7.2227, 7.223, 7.2239, 7.2237, 7.2235, 7.2241, 7.2239, 7.2236, 7.2233, 7.2242, 7.2239, 7.2228, 7.2236, 7.2234, 7.2233, 7.223, 7.2227, 7.2225, 7.2225, 7.2232, 7.2229, 7.2227, 7.2234, 7.2233, 7.2221, 7.2219, 7.2217, 7.2205, 7.2211, 7.2208, 7.2216, 7.2213, 7.2211, 7.221, 7.221, 7.2198, 7.2195, 7.2191, 7.2188, 7.2185, 7.2181, 7.2187, 7.2185, 7.2183, 7.2179, 7.2177, 7.2174, 7.217, 7.2168, 7.2156, 7.2145, 7.2142, 7.2148, 7.2145, 7.2143, 7.214, 7.2137, 7.2134, 7.2132, 7.2149, 7.2148, 7.2156, 7.2162, 7.2159, 7.2167, 7.2164, 7.216, 7.2168, 7.2166, 7.2165, 7.2173, 7.2172, 7.2169, 7.2168, 7.2166, 7.2165, 7.2162, 7.2162, 7.2159, 7.2157, 7.2154, 7.2151, 7.2149, 7.2147, 7.2155, 7.2152, 7.215, 7.2146, 7.2154, 7.2151, 7.2148, 7.2156, 7.2155, 7.2153, 7.215, 7.2147, 7.2153, 7.2159, 7.2157, 7.2156, 7.2154, 7.2151, 7.2148, 7.2145, 7.2143, 7.2141, 7.213, 7.2128, 7.2117, 7.2115, 7.2123, 7.212, 7.2119, 7.2107, 7.2107, 7.2104, 7.2111, 7.2108, 7.2107, 7.2106, 7.2116, 7.2115, 7.2112, 7.211, 7.2108, 7.2113, 7.211, 7.2118, 7.2116, 7.2124, 7.2121, 7.2118, 7.2115, 7.2103, 7.21, 7.2099, 7.2097, 7.2095, 7.2093, 7.209, 7.2098, 7.2097, 7.2094, 7.2115, 7.2114, 7.2113, 7.212, 7.2119, 7.2108, 7.2108, 7.2106, 7.2104, 7.2104, 7.2101, 7.2115, 7.2105, 7.2112, 7.2111, 7.211, 7.2099, 7.2097, 7.2095, 7.2092, 7.2103, 7.21, 7.2097, 7.2104, 7.2103, 7.21, 7.2098, 7.2097, 7.2094, 7.2091, 7.2089, 7.2086, 7.2084, 7.2081, 7.208, 7.2068, 7.2067, 7.2064, 7.2062, 7.206, 7.2056, 7.2063, 7.2062, 7.2059, 7.2057, 7.2054, 7.2052, 7.2059, 7.2056, 7.2056, 7.2053, 7.2051, 7.2048, 7.2056, 7.206, 7.2072, 7.2076, 7.2083, 7.2081, 7.2093, 7.2085, 7.2083, 7.2081, 7.2078, 7.2076, 7.2073, 7.2073, 7.207, 7.2068, 7.2065, 7.2075, 7.2073, 7.2071, 7.2068, 7.2067, 7.2064, 7.2062, 7.2059, 7.2056, 7.2052, 7.2071, 7.2069, 7.2066, 7.2063, 7.206, 7.2088, 7.2094, 7.2091, 7.2108, 7.2107, 7.2104, 7.2106, 7.2103, 7.21, 7.2107, 7.2107, 7.2115, 7.2122, 7.2121, 7.2118, 7.2115, 7.2114, 7.2112, 7.2111, 7.2109, 7.2107, 7.2105, 7.2111, 7.2109, 7.2115, 7.2112, 7.2119, 7.2117, 7.2114, 7.212, 7.2118, 7.2116, 7.2115, 7.2122, 7.2119, 7.2116, 7.2113, 7.211, 7.2107, 7.2104, 7.2101, 7.2099, 7.2097, 7.2096, 7.2094, 7.2091, 7.2089, 7.2079, 7.2106, 7.2104, 7.2101, 7.2099, 7.2096, 7.2103, 7.2104, 7.2111, 7.2117, 7.2115, 7.2113, 7.2136, 7.2155, 7.2152, 7.2149, 7.2148, 7.2145, 7.2152, 7.2149, 7.2147, 7.2154, 7.2157, 7.2164, 7.2163, 7.2161, 7.2168, 7.2165, 7.2164, 7.2162, 7.216, 7.2167, 7.2174, 7.2172, 7.2169, 7.2179, 7.2177, 7.2175, 7.2164, 7.2162, 7.2159, 7.2157, 7.2156, 7.2153, 7.2151, 7.2149, 7.2147, 7.2144, 7.2153, 7.2151, 7.2148, 7.2145, 7.2151, 7.2158, 7.2157, 7.2154, 7.216, 7.2159, 7.2156, 7.2155, 7.2157, 7.2164, 7.2161, 7.2159, 7.2157, 7.2154, 7.2151, 7.2148, 7.2145, 7.2143, 7.214, 7.2146, 7.2158, 7.2157, 7.2154, 7.2153, 7.2159, 7.2159, 7.2157, 7.2156, 7.2153, 7.2171, 7.217, 7.2168, 7.2167, 7.2174, 7.218, 7.2178, 7.2175, 7.2182, 7.2181, 7.2179, 7.2179, 7.2177, 7.2184, 7.22, 7.2208, 7.2233, 7.2236, 7.2233, 7.223, 7.2228, 7.2226, 7.2223, 7.2242, 7.224, 7.2238, 7.2246, 7.2243, 7.2243, 7.2241, 7.2238, 7.2244, 7.225, 7.2247, 7.2244, 7.2241, 7.2239, 7.2236, 7.2242, 7.2239, 7.2245, 7.2243, 7.2241, 7.2238, 7.2244, 7.2241, 7.2238, 7.224, 7.224, 7.2238, 7.2237, 7.2234, 7.2233, 7.2231, 7.2229, 7.2228, 7.2235, 7.2232, 7.2249, 7.2247, 7.2246, 7.2243, 7.224, 7.2247, 7.2254, 7.2251, 7.2242, 7.2239, 7.2238, 7.2245, 7.2272, 7.2269, 7.2266, 7.2264, 7.2262, 7.226, 7.2257, 7.2255, 7.2252, 7.2249, 7.2248, 7.2247, 7.2255, 7.2252, 7.225, 7.2248, 7.2246, 7.2254, 7.2261, 7.2268, 7.2265, 7.2263, 7.2261, 7.2262, 7.2262, 7.226, 7.2258, 7.2256, 7.2254, 7.2262, 7.2262, 7.2259, 7.2257, 7.2255, 7.2253, 7.226, 7.2258, 7.2255, 7.2255, 7.2255, 7.2254, 7.2252, 7.2252, 7.2249, 7.2247, 7.2255, 7.2253, 7.2252, 7.225, 7.2257, 7.2256, 7.2254, 7.2251, 7.2251, 7.2249, 7.2257, 7.2255, 7.2252, 7.2251, 7.2259, 7.2267, 7.2265, 7.2273, 7.228, 7.2278, 7.2275, 7.2275, 7.2284, 7.2281, 7.2288, 7.2287, 7.2284, 7.2281, 7.2279, 7.2276, 7.2279, 7.2277, 7.2275, 7.2273, 7.227, 7.2268, 7.2266, 7.2273, 7.2281, 7.2278, 7.2275, 7.2275, 7.2282, 7.2289, 7.2287, 7.2294, 7.2291, 7.2288, 7.2295, 7.2293, 7.2291, 7.229, 7.2297, 7.2294, 7.2291, 7.2307, 7.2333, 7.233, 7.2327, 7.2334, 7.2339, 7.2337, 7.2334, 7.2331, 7.2345, 7.2343, 7.234, 7.2331, 7.2328, 7.2319, 7.2317, 7.2314, 7.2313, 7.2311, 7.2309, 7.2299, 7.2289, 7.228, 7.227, 7.2269, 7.2268, 7.2265, 7.2273, 7.2271, 7.2269, 7.2267, 7.2276, 7.2273, 7.2271, 7.227, 7.2268, 7.2257, 7.2255, 7.2252, 7.2249, 7.2247, 7.2244, 7.2251, 7.225, 7.224, 7.2237, 7.2235, 7.2232, 7.2231, 7.223, 7.2228, 7.2227, 7.2218, 7.2216, 7.2235, 7.2233, 7.2231, 7.2229, 7.2227, 7.2224, 7.2318, 7.2324, 7.2322, 7.2321, 7.2319, 7.2316, 7.2314, 7.2316, 7.2315, 7.2313, 7.2312, 7.2309, 7.2315, 7.2312, 7.2309, 7.2308, 7.2314, 7.2312, 7.231, 7.2308, 7.2307, 7.2308, 7.2306, 7.2305, 7.2305, 7.2321, 7.2318, 7.2315, 7.2313, 7.2303, 7.2302, 7.2301, 7.2298, 7.2296, 7.2293, 7.229, 7.2305, 7.2312, 7.2309, 7.2306, 7.2303, 7.23, 7.229, 7.2297, 7.2305, 7.2313, 7.231, 7.2316, 7.2322, 7.2328, 7.2325, 7.2323, 7.2322, 7.232, 7.2326, 7.2323, 7.2329, 7.2339, 7.2337, 7.2326, 7.2318, 7.2309, 7.2299, 7.2289, 7.2287, 7.2284, 7.2273, 7.2274, 7.2273, 7.227, 7.2267, 7.2264, 7.2261, 7.2259, 7.2265, 7.2264, 7.2263, 7.2262, 7.226, 7.2259, 7.2258, 7.2256, 7.2263, 7.2278, 7.2279, 7.2294, 7.2292, 7.229, 7.2288, 7.2286, 7.2302, 7.23, 7.2306, 7.2304, 7.231, 7.2309, 7.2309, 7.2315, 7.2321, 7.2331, 7.2337, 7.2342, 7.2357, 7.2355, 7.2352, 7.2359, 7.2366, 7.2363, 7.236, 7.2357, 7.2365, 7.2372, 7.2361, 7.236, 7.2367, 7.2365, 7.2362, 7.2359, 7.2358, 7.2356, 7.2356, 7.2364, 7.2372, 7.2369, 7.2367, 7.2367, 7.2375, 7.2371, 7.2368, 7.2357, 7.2355, 7.2353, 7.2344, 7.2341, 7.2339, 7.2337, 7.2335, 7.2332, 7.234, 7.2337, 7.2335, 7.2334, 7.2332, 7.2333, 7.2348, 7.2346, 7.2345, 7.2336, 7.2334, 7.2332, 7.2348, 7.2345, 7.2343, 7.2341, 7.2339, 7.2355, 7.2354, 7.2352, 7.2349, 7.2347, 7.2346, 7.2343, 7.2341, 7.2339, 7.2336, 7.2333, 7.234, 7.2337, 7.2344, 7.2342, 7.2349, 7.2346, 7.2343, 7.235, 7.2357, 7.2364, 7.2362, 7.2359, 7.2356, 7.2353, 7.235, 7.2348, 7.2349, 7.2346, 7.2343, 7.2342, 7.234, 7.234, 7.2347, 7.2353, 7.235, 7.2348, 7.2346, 7.2343, 7.2341, 7.2339, 7.2337, 7.2343, 7.2345, 7.2335, 7.2349, 7.2347, 7.2353, 7.235, 7.2347, 7.2346, 7.2343, 7.234, 7.2339, 7.2328, 7.2317, 7.2323, 7.2321, 7.2319, 7.2316, 7.2322, 7.2328, 7.2319, 7.2309, 7.2306, 7.2304, 7.2302, 7.2299, 7.2297, 7.2295, 7.2293, 7.2291, 7.2289, 7.2288, 7.2287, 7.2285, 7.2291, 7.2288, 7.2285, 7.2284, 7.2281, 7.2279, 7.2278, 7.2285, 7.2282, 7.2281, 7.2288, 7.2286, 7.2293, 7.229, 7.2289, 7.2287, 7.2294, 7.2293, 7.229, 7.2288, 7.2286, 7.2284, 7.229, 7.2287, 7.2284, 7.2274, 7.2272, 7.2269, 7.226, 7.2251, 7.2249, 7.2239, 7.2245, 7.2248, 7.2256, 7.2263, 7.2267, 7.2265, 7.2262, 7.2259, 7.2265, 7.2263, 7.226, 7.2266, 7.2263, 7.226, 7.2257, 7.2263, 7.2269, 7.2267, 7.2266, 7.2264, 7.227, 7.2275, 7.2272, 7.2269, 7.2275, 7.2272, 7.227, 7.2267, 7.2264, 7.2261, 7.2259, 7.2257, 7.2255, 7.2253, 7.225, 7.2248, 7.2247, 7.2245, 7.2242, 7.2241, 7.2239, 7.223, 7.222, 7.222, 7.2219, 7.2218, 7.2226, 7.2224, 7.2222, 7.2212, 7.2209, 7.2214, 7.2211, 7.2202, 7.2208, 7.2206, 7.2204, 7.2202, 7.2199, 7.2197, 7.2203, 7.2209, 7.2206, 7.2204, 7.2202, 7.2201, 7.22, 7.2191, 7.2189, 7.2187, 7.2184, 7.2191, 7.2188, 7.2186, 7.2202, 7.2201, 7.2208, 7.2208, 7.2206, 7.2204, 7.2202, 7.2199, 7.2196, 7.2193, 7.2191, 7.2188, 7.2186, 7.2184, 7.2183, 7.2181, 7.2187, 7.2185, 7.2185, 7.2177, 7.2175, 7.2181, 7.2179, 7.2178, 7.2178, 7.2176, 7.2182, 7.2188, 7.2194, 7.2192, 7.2192, 7.219, 7.2196, 7.2194, 7.2193, 7.2191, 7.2189, 7.2187, 7.2185, 7.2184, 7.219, 7.2187, 7.2185, 7.2191, 7.2197, 7.2194, 7.22, 7.2198, 7.2204, 7.221, 7.2207, 7.2205, 7.2202, 7.2199, 7.2196, 7.2195, 7.2201, 7.2208, 7.2207, 7.2204, 7.2202, 7.22, 7.22, 7.2198, 7.2195, 7.2192, 7.2192, 7.2198, 7.2197, 7.2203, 7.2201, 7.2199, 7.2197, 7.2195, 7.2195, 7.2193, 7.2199, 7.2197, 7.2196, 7.2193, 7.2193, 7.2193, 7.2191, 7.2189, 7.2187, 7.219, 7.2187, 7.2186, 7.2192, 7.2189, 7.2188, 7.2187, 7.2184, 7.2182, 7.2179, 7.2177, 7.2175, 7.2173, 7.2172, 7.2178, 7.2175, 7.2172, 7.217, 7.2167, 7.2173, 7.2173, 7.2179, 7.2176, 7.2181, 7.218, 7.2178, 7.2183, 7.2181, 7.2179, 7.2192, 7.2198, 7.2197, 7.2195, 7.2194, 7.22, 7.2206, 7.2204, 7.2203, 7.2202, 7.2208, 7.2208, 7.2205, 7.2204, 7.221, 7.2216, 7.2215, 7.2222, 7.222, 7.2218, 7.2218, 7.2216, 7.2223, 7.223, 7.2236, 7.2235, 7.2233, 7.223, 7.2228, 7.2233, 7.2231, 7.2228, 7.2234, 7.2231, 7.2228, 7.2225, 7.2223, 7.2221, 7.2219, 7.2216, 7.2214, 7.222, 7.2217, 7.2223, 7.2229, 7.2226, 7.2223, 7.2221, 7.2219, 7.2217, 7.2217, 7.2216, 7.2214, 7.2212, 7.2218, 7.2216, 7.2216, 7.2232, 7.2238, 7.2237, 7.2235, 7.2233, 7.223, 7.2229, 7.2235, 7.2232, 7.2229, 7.2227, 7.2225, 7.2223, 7.2221, 7.2219, 7.2225, 7.2224, 7.2222, 7.2228, 7.2225, 7.2222, 7.222, 7.2217, 7.2215, 7.2221, 7.2219, 7.2217, 7.2215, 7.2214, 7.2212, 7.2209, 7.2206, 7.2205, 7.2203, 7.2209, 7.2206, 7.2221, 7.2227, 7.2233, 7.223, 7.2227, 7.2226, 7.2225, 7.2225, 7.2222, 7.222, 7.2218, 7.2224, 7.2221, 7.222, 7.2218, 7.2216, 7.2213, 7.221, 7.2207, 7.2205, 7.2204, 7.2203, 7.2202, 7.22, 7.2198, 7.2196, 7.2194, 7.2191, 7.2189, 7.2195, 7.2194, 7.22, 7.2206, 7.2204, 7.221, 7.2208, 7.2206, 7.2213, 7.2219, 7.2242, 7.2248, 7.2246, 7.2243, 7.224, 7.224, 7.2238, 7.2236, 7.2233, 7.2239, 7.2236, 7.2242, 7.2241, 7.224, 7.2238, 7.2236, 7.2235, 7.2234, 7.224, 7.2239, 7.2237, 7.2234, 7.224, 7.2239, 7.2238, 7.2244, 7.2243, 7.224, 7.2241, 7.2247, 7.2245, 7.2243, 7.2241, 7.2238, 7.2237, 7.2235, 7.2233, 7.2231, 7.2229, 7.2226, 7.2224, 7.2221, 7.2218, 7.2216, 7.2214, 7.2212, 7.221, 7.2208, 7.2205, 7.2202, 7.22, 7.2198, 7.2204, 7.2201, 7.2215, 7.2221, 7.2218, 7.2216, 7.2213, 7.2219, 7.2225, 7.223, 7.2228, 7.2225, 7.2222, 7.2219, 7.2216, 7.2213, 7.2218, 7.2215, 7.2212, 7.221, 7.222, 7.2225, 7.2223, 7.2222, 7.2219, 7.2225, 7.2233, 7.2231, 7.2237, 7.2243, 7.2241, 7.2238, 7.2252, 7.2258, 7.2263, 7.2261, 7.2259, 7.2256, 7.2254, 7.2259, 7.2265, 7.2262, 7.2276, 7.2281, 7.2279, 7.2276, 7.2273, 7.227, 7.2268, 7.2265, 7.2262, 7.2259, 7.2265, 7.2262, 7.226, 7.2257, 7.2254, 7.2252, 7.2258, 7.2263, 7.2262, 7.226, 7.2251, 7.2248, 7.2253, 7.225, 7.2248, 7.2246, 7.2243, 7.2249, 7.2247, 7.2244, 7.2242, 7.2248, 7.2246, 7.2244, 7.225, 7.2249, 7.2248, 7.2245, 7.2244, 7.2244, 7.2243, 7.2241, 7.2239, 7.2245, 7.2243, 7.2241, 7.2247, 7.2252, 7.2249, 7.2247, 7.2245, 7.2243, 7.2241, 7.2247, 7.2245, 7.2243, 7.224, 7.2238, 7.2236, 7.2233, 7.2238, 7.2237, 7.2243, 7.2249, 7.2246, 7.2252, 7.2258, 7.2257, 7.2255, 7.227, 7.2268, 7.2265, 7.2262, 7.226, 7.2266, 7.2256, 7.2254, 7.2253, 7.2251, 7.2249, 7.2246, 7.2251, 7.228, 7.2286, 7.229, 7.2288, 7.228, 7.2278, 7.2275, 7.2272, 7.2269, 7.2283, 7.2284, 7.2308, 7.2306, 7.2311, 7.2308, 7.2314, 7.2312, 7.2309, 7.2314, 7.2319, 7.2324, 7.2322, 7.2328, 7.2333, 7.2338, 7.2343, 7.2341, 7.2339, 7.2337, 7.2335, 7.2344, 7.2341, 7.2339, 7.2337, 7.2338, 7.233, 7.2327, 7.2326, 7.2324, 7.2321, 7.2319, 7.2324, 7.2321, 7.2319, 7.2316, 7.2314, 7.2312, 7.2309, 7.2307, 7.2305, 7.2303, 7.2301, 7.2302, 7.23, 7.2297, 7.2294, 7.2291, 7.229, 7.2289, 7.2299, 7.2315, 7.2324, 7.233, 7.2328, 7.2325, 7.2322, 7.232, 7.2318, 7.2315, 7.2313, 7.2311, 7.2309, 7.2308, 7.2322, 7.2319, 7.2317, 7.2314, 7.2312, 7.2318, 7.2317, 7.2315, 7.2313, 7.231, 7.2307, 7.2306, 7.2303, 7.2301, 7.2307, 7.2314, 7.232, 7.2327, 7.2325, 7.233, 7.2329, 7.2326, 7.2336, 7.2334, 7.2331, 7.233, 7.2335, 7.234, 7.2339, 7.2337, 7.2336, 7.2333, 7.2333, 7.234, 7.2338, 7.2336, 7.2333, 7.2332, 7.2332, 7.2329, 7.2326, 7.2324, 7.2323, 7.2314, 7.232, 7.2318, 7.2316, 7.2321, 7.2318, 7.2315, 7.2313, 7.2322, 7.233, 7.2329, 7.233, 7.2338, 7.2336, 7.2345, 7.2344, 7.2349, 7.2354, 7.236]}
rtt5_3_7 = {'192.168.122.110': [5.7418, 5.5912, 5.7623, 5.8136, 6.8142, 5.9493, 6.7647, 5.6145, 7.7074, 10.9298, 7.6172, 5.9526, 7.2, 6.5827, 5.5602, 5.8513, 5.81, 6.8536, 6.0802, 17.602, 6.7866, 7.7755, 11.2736, 5.4832, 11.8182, 5.9073, 6.7189, 5.3635, 7.2784, 5.379, 5.2912, 11.4913, 11.5299, 10.8726, 5.9435, 5.8331, 5.3208, 5.4748, 11.6992, 6.9065, 5.5239, 5.7344, 11.2438, 18.1613, 5.6195, 12.1634, 6.2578, 22.3002, 5.311, 7.0944, 7.5758, 6.7163, 5.4159, 11.0042, 11.4937, 5.4042, 5.9385, 5.8849, 11.8179, 11.539, 7.1597, 5.379, 7.5817, 5.2736, 16.443, 7.0481, 5.4076, 5.45, 6.8381, 6.7081, 12.0151, 7.3781, 5.9516, 5.8839, 8.1282, 5.4452, 13.047, 5.3794, 5.6658, 12.0046, 7.4153, 6.7677, 6.2497, 10.8204, 5.4839, 6.7205, 5.7104, 5.5275, 5.2724, 5.8911, 5.3215, 6.9821, 8.559, 5.7766, 6.6798, 5.7213, 6.0017, 6.0022, 5.6901, 14.169, 7.2641, 5.5411, 11.831, 6.7291, 5.8498, 6.9916, 5.5454, 11.106, 7.19, 7.1571, 6.2933, 6.6957, 11.1473, 6.0964, 5.8696, 6.9008, 7.736, 5.4917, 11.9805, 5.4231, 5.5256, 5.373, 5.765, 5.7654, 5.4505, 10.8511, 5.6624, 5.4431, 7.2479, 11.4362, 5.4991, 5.6171, 11.3196, 5.8417, 5.393, 6.3946, 11.2491, 5.337, 5.415, 5.2719, 9.2359, 6.1848, 5.9154, 17.5953, 5.4929, 7.4434, 8.6834, 11.2009, 6.5482, 0.9754, 11.9412, 5.7795, 5.7061, 7.1058, 11.807, 12.6138, 5.3539, 5.2118, 5.8668, 8.0407, 5.7375, 5.8603, 12.6426, 6.2943, 7.7164, 10.8011, 11.2612, 11.3089, 5.383, 11.3721, 30.2, 5.708, 6.5193, 5.8839, 5.7106, 6.3088, 5.4991, 5.661, 5.7478, 10.6087, 6.9911, 6.8479, 5.9617, 5.7516, 5.3968, 5.5974, 6.8388, 6.3548, 21.2278, 5.6105, 7.062, 5.8208, 17.2422, 7.6184, 10.9956, 6.9187, 11.4303, 5.8017, 5.2738, 5.6026, 5.6942, 5.5709, 5.7378, 5.8072, 10.5624, 11.3566, 11.1203, 6.2106, 6.8407, 5.3704, 5.4088, 6.5238, 6.489, 8.3065, 7.0024, 1.0071, 10.8268, 5.4884, 5.5254, 8.5967, 11.0495, 11.0748, 5.6016, 5.5714, 5.9211, 5.6129, 6.6261, 6.8102, 6.5825, 17.5495, 5.7769, 5.6877, 11.132, 5.7285, 16.7601, 7.4415, 5.6131, 5.522, 7.7443, 5.5673, 6.1178, 11.0009, 10.5436, 5.7201, 7.4151, 5.5258, 5.5959, 7.2384, 5.6751, 16.2807, 11.4007, 5.3964, 6.4242, 7.3049, 5.4786, 6.6326, 7.1919, 5.5275, 6.1519, 6.6049, 6.0365, 6.0158, 7.045, 5.6663, 1.8182, 7.0906, 7.0586, 5.3859, 11.1737, 5.4119, 5.5752, 6.0337, 5.7766, 5.4593, 30.8173, 6.4254, 7.3693, 5.6705, 0.6154, 7.3366, 10.9227, 7.2227, 6.6149, 16.0146, 11.1823, 11.364, 5.4898, 7.0698, 5.7142, 6.3961, 11.4803, 5.4266, 5.7242, 5.4638, 5.9576, 7.7, 0.8557, 11.0607, 5.6114, 7.1723, 11.4491, 10.8805, 5.8744, 5.2636, 7.0059, 6.7978, 7.0403, 11.5914, 6.3066, 6.6798, 6.6686, 7.2031, 6.8548, 10.7169, 5.5342, 6.0618, 10.8116, 5.5482, 6.6886, 5.5013, 5.9843, 12.1019, 5.7216, 11.1966, 5.4545, 6.2807, 22.9719, 6.4881, 5.6856, 5.5254, 7.175, 5.6057, 8.5371, 5.9128, 5.4801, 11.6374, 6.0608, 1.8256, 5.4958, 12.4965, 5.7228, 5.5664, 10.494, 5.6648, 6.3374, 12.0685, 6.4294, 5.481, 7.0255, 5.7628, 5.5921, 5.5776, 7.1738, 11.4613, 6.0091, 12.0089, 5.4598, 10.2985, 6.8865, 11.5132, 5.981, 7.174, 7.3063, 5.5573, 5.8064, 5.4767, 2.3754, 1.3101, 6.8402, 6.8583, 5.3627, 9.0668], '192.168.122.116': [6.216, 5.6813, 6.1519, 5.6264, 16.3548, 6.8312, 6.9361, 5.4777, 11.0321, 5.7559, 11.9383, 5.8777, 5.5287, 5.2731, 6.753, 6.1119, 7.2286, 7.0581, 16.649, 5.8382, 5.5168, 10.9491, 5.4035, 5.4214, 5.5687, 7.6652, 11.0776, 6.8538, 11.0886, 5.8978, 6.3112, 6.3014, 5.4126, 6.2237, 10.5853, 5.919, 10.3533, 10.9162, 11.7607, 6.0871, 6.8052, 11.5182, 6.104, 5.722, 5.5659, 6.7904, 11.1268, 5.3473, 5.3897, 6.5091, 5.7421, 7.0274, 11.3978, 6.0103, 6.1162, 6.9284, 5.7847, 5.981, 5.4307, 12.2597, 7.1595, 5.5134, 5.9595, 10.488, 10.9036, 10.9611, 5.3332, 7.4203, 6.2861, 5.811, 6.2077, 7.1263, 6.2337, 5.729, 5.9085, 5.4502, 6.1448, 7.0486, 5.5673, 11.4028, 6.4509, 6.2296, 5.6634, 5.4302, 5.5616, 5.4994, 6.3832, 6.0358, 10.761, 5.4619, 10.9484, 5.6589, 11.3826, 11.3394, 6.8953, 5.7318, 5.6829, 5.1816, 5.3425, 5.4991, 6.5563, 6.0608, 5.5804, 5.7199, 10.4501, 10.9031, 5.6281, 6.2897, 6.4485, 6.6605, 5.7552, 5.5416, 5.7631, 40.4885, 5.9803, 6.7978, 6.8071, 22.315, 5.409, 5.9483, 6.8612, 5.9891, 6.7644, 6.783, 6.3529, 6.5448, 5.4414, 5.2922, 11.3931, 5.6753, 6.0577, 5.3864, 10.9446, 5.4319, 6.6347, 5.4369, 5.9743, 5.6903, 5.7526, 5.882, 5.8124, 5.8129, 6.7451, 5.3389, 7.2832, 5.6095, 6.9585, 6.3167, 5.9888, 0.9103, 11.1032, 11.3683, 6.3043, 6.861, 12.0127, 11.9112, 12.0702, 5.9018, 11.3966, 6.2799, 17.1914, 5.666, 21.8124, 11.2901, 5.7576, 5.549, 5.6279, 7.3855, 5.3768, 6.4294, 5.532, 5.9936, 6.3674, 11.2593, 5.5506, 11.112, 6.8645, 6.7275, 6.4547, 5.7244, 11.5461, 5.5125, 17.1847, 5.7936, 5.8708, 11.389, 5.5456, 5.4336, 10.8123, 7.2916, 6.7711, 5.8489, 6.2656, 16.5453, 5.7313, 7.0677, 5.6717, 10.9613, 5.7576, 11.2114, 6.4046, 6.5231, 6.2513, 11.9674, 11.0407, 11.3118, 16.5284, 6.0081, 6.4995, 6.4263, 5.2841, 6.3827, 5.3813, 11.0033, 22.4736, 11.8887, 11.2886, 5.4426, 5.939, 5.4901, 5.8551, 5.6243, 6.3825, 5.6431, 5.4741, 6.6059, 5.7518, 11.3318, 11.1015, 5.7535, 6.0043, 5.8279, 10.7601, 5.4657, 5.975, 5.6672, 5.5754, 6.8443, 5.7919, 5.625, 5.7113, 11.1432, 6.4065, 11.0292, 8.5962, 6.35, 6.273, 11.7998, 6.0387, 5.6286, 11.1685, 5.6834, 6.4235, 6.8674, 6.4013, 5.779, 5.394, 10.9668, 12.3765, 16.8364, 5.3957, 17.5536, 6.0606, 6.0425, 1.0397, 6.6884, 5.5888, 6.6731, 5.5988, 5.5385, 5.3682, 11.4405, 17.4673, 6.5899, 5.5494, 5.343, 6.8753, 5.6157, 16.3419, 5.7576, 6.2788, 6.4104, 6.1543, 5.4126, 5.7204, 11.193, 6.1748, 6.18, 5.7056, 5.9068, 11.5561, 10.8149, 6.3784, 7.0195, 11.873, 6.8901, 6.2952, 5.6469, 6.1886, 11.8244, 6.0999, 5.3852, 6.7391, 6.0637, 6.8183, 7.3712, 5.6927, 6.2187, 10.8292, 11.204, 5.9144, 5.882, 6.1252, 6.0973, 6.0225, 5.4183, 6.0189, 5.3015, 6.4974, 10.9811, 10.8593, 6.299, 7.22, 11.1675, 6.0983, 5.362, 5.2299, 5.9547, 11.8368, 7.472, 5.4321, 19.0353, 5.8923, 5.403, 5.6219, 12.5532, 11.0545, 6.4905, 6.2957, 11.3742, 6.3882, 10.9184, 5.6689, 5.3051, 11.2586, 7.0601, 6.3927, 16.7482, 6.6493, 6.4235, 6.4657, 12.6224, 10.6783, 5.775, 16.8424, 6.0129, 10.9315, 5.4367, 5.9118, 11.7278, 10.8495, 12.0196, 6.1953, 6.1107, 7.3748, 22.7888, 1.6785, 0.5362, 5.3549, 6.4311, 5.5668, 11.9424], '192.168.122.114': [10.9031, 11.5664, 10.9518, 5.6214, 5.8041, 5.5125, 6.0971, 5.4414, 10.8771, 11.4815, 5.2669, 10.6688, 6.3779, 6.7213, 11.7977, 6.6776, 6.1665, 5.6741, 10.9823, 1.5109, 5.5058, 5.6579, 6.9532, 10.9599, 7.6034, 6.9201, 6.6569, 11.5786, 5.5001, 12.6204, 11.0672, 11.4577, 6.7251, 5.9998, 5.6782, 5.5809, 5.3005, 10.8206, 5.2981, 17.0293, 11.1237, 5.7518, 5.6415, 6.2604, 5.6021, 5.4519, 5.5871, 5.6274, 6.6001, 6.8409, 6.969, 5.8279, 11.2758, 11.9972, 6.0947, 5.3663, 5.4011, 11.8561, 5.6002, 5.8088, 10.7033, 17.2269, 5.3499, 5.3923, 5.4638, 5.8937, 5.4607, 17.6828, 5.8377, 11.3044, 5.6679, 11.1251, 10.9928, 26.8269, 6.7902, 5.4581, 6.134, 11.6513, 5.537, 6.2802, 6.3729, 5.8947, 6.2342, 5.8503, 5.7216, 11.2495, 5.7788, 6.4244, 6.4802, 10.7617, 10.8581, 5.2049, 11.2762, 12.8372, 5.4688, 5.8925, 5.9094, 6.3875, 5.78, 5.6815, 7.9737, 6.5231, 8.1785, 6.3789, 5.3246, 5.748, 5.4901, 6.3441, 5.8601, 6.7606, 16.9299, 15.8, 5.3675, 6.767, 11.2867, 7.1023, 5.614, 10.8783, 5.4615, 5.482, 5.7585, 5.2743, 6.1584, 10.932, 10.864, 10.905, 6.1932, 5.3847, 5.5637, 5.8703, 6.0258, 10.7327, 5.5437, 10.9737, 6.2551, 5.5256, 6.8855, 5.9114, 5.9979, 5.6314, 5.5771, 5.3258, 5.8725, 10.6068, 7.4475, 6.7189, 28.0523, 5.2152, 5.7058, 6.5403, 6.006, 5.6176, 5.3415, 6.371, 6.8452, 11.6007, 6.0647, 6.0825, 6.3488, 5.8033, 5.636, 12.0718, 5.5845, 11.3583, 5.6703, 5.6295, 11.1306, 6.1595, 6.3851, 10.9184, 6.0976, 5.6672, 10.4206, 5.3046, 5.4238, 6.3941, 5.4419, 6.1512, 6.3381, 5.7688, 7.8802, 6.0396, 6.4504, 11.5125, 25.9848, 5.9292, 5.9831, 6.2494, 5.852, 7.3745, 11.3456, 11.7784, 6.5598, 17.2217, 5.2783, 5.9762, 10.8957, 10.9987, 10.4444, 5.5993, 11.2004, 5.8062, 6.1073, 7.0877, 10.8173, 11.3819, 17.0045, 11.4543, 11.1463, 6.525, 5.8472, 11.1196, 5.5635, 6.2337, 5.6171, 5.5089, 7.1239, 5.8186, 5.9078, 0.7417, 11.1837, 7.1104, 11.4551, 10.7677, 6.0511, 8.0519, 5.8353, 5.5656, 6.4692, 6.6185, 6.16, 5.2042, 5.8401, 11.0586, 5.626, 6.8784, 6.2971, 5.4672, 6.7306, 7.1175, 5.8334, 11.3616, 5.7595, 6.6719, 6.6531, 11.1542, 6.4104, 6.196, 6.1226, 6.0155, 6.7103, 11.2324, 10.4861, 5.4445, 6.505, 6.4635, 5.8198, 5.6329, 7.0586, 11.8961, 11.5089, 5.9555, 5.7678, 5.5344, 1.435, 6.254, 13.2563, 5.5842, 10.9031, 6.1932, 6.2408, 5.9581, 5.6884, 6.6209, 10.5026, 5.7805, 6.9482, 6.1011, 5.7356, 12.8975, 6.2904, 6.2952, 6.3379, 10.6854, 5.9757, 10.9677, 5.5068, 1.3182, 6.4189, 10.7729, 5.4607, 5.662, 6.4826, 5.7478, 5.7232, 11.9548, 0.8645, 5.8742, 11.3358, 10.989, 6.0308, 5.306, 5.4579, 10.9606, 6.8755, 12.8193, 5.5733, 11.9109, 5.3751, 7.5331, 6.13, 6.5992, 7.288, 5.4162, 5.3718, 6.8867, 5.3906, 6.223, 22.402, 5.2879, 11.1284, 7.3094, 6.0823, 5.2543, 5.7211, 10.9792, 6.3937, 5.4312, 7.1144, 11.6792, 7.2868, 5.842, 11.7245, 5.5041, 5.6791, 6.5742, 5.4877, 11.2717, 6.4096, 10.8447, 0.849, 10.8883, 10.9553, 5.2209, 5.8749, 11.0869, 5.7111, 11.2472, 5.6298, 11.2059, 6.4101, 6.3767, 5.9397, 6.3961, 12.0356, 11.0033, 10.8898, 11.0526, 11.2648, 6.5708, 10.7749, 7.0539, 5.7871, 5.9421, 6.9363, 6.3424, 1.7903, 0.6416, 10.9346, 11.2748, 11.6773, 12.8179], '192.168.122.113': [5.6868, 5.3084, 6.6319, 5.7895, 5.6329, 6.701, 5.584, 5.5737, 11.6305, 10.8993, 7.103, 6.0372, 5.5537, 6.9289, 13.2542, 5.9576, 5.5223, 5.8372, 6.943, 0.9937, 5.6937, 16.5586, 6.429, 5.5013, 5.6498, 5.8146, 6.1452, 6.3822, 10.9558, 5.3992, 11.4341, 11.5414, 5.8701, 6.1724, 6.351, 5.4796, 10.721, 6.9346, 5.4827, 10.7784, 5.8019, 5.8038, 6.3367, 5.4977, 11.2736, 11.0476, 11.2445, 5.5647, 11.0016, 5.8739, 11.4868, 5.5387, 5.5468, 13.4237, 6.2149, 10.9129, 5.8455, 10.4182, 11.797, 5.8455, 5.4331, 5.481, 5.9214, 5.3482, 11.1296, 5.2755, 6.398, 11.5507, 16.0899, 5.2559, 11.1871, 7.2346, 6.7916, 6.0351, 5.3606, 5.9965, 11.5702, 6.2802, 5.5015, 6.3045, 11.4088, 5.7175, 6.2058, 11.7114, 5.2521, 5.7049, 6.3686, 6.4893, 11.447, 11.0378, 7.6435, 6.2275, 11.2469, 11.1513, 11.404, 7.2887, 6.6838, 10.7729, 16.6698, 5.5549, 5.4896, 5.9648, 5.666, 6.9416, 6.3536, 12.9912, 5.5988, 6.5243, 11.4441, 5.4715, 0.6876, 5.6641, 5.8479, 6.8402, 5.7178, 10.8738, 6.1681, 5.4433, 6.2437, 6.2811, 5.9736, 5.6353, 16.372, 11.0989, 11.075, 6.3913, 6.4514, 5.9984, 6.9621, 6.5203, 11.0066, 6.5782, 6.1083, 11.411, 11.8518, 10.8862, 7.4401, 11.4796, 11.8539, 5.764, 10.7622, 11.2331, 6.5286, 5.4734, 6.5496, 5.8289, 6.4566, 6.2551, 6.2928, 5.6288, 6.4704, 16.0139, 17.1504, 6.9683, 6.0194, 16.4127, 22.0706, 17.4413, 5.9767, 6.3486, 5.8875, 5.6212, 5.9614, 5.409, 6.026, 5.59, 11.3883, 11.4307, 17.3185, 6.5196, 6.2647, 6.3815, 5.8782, 5.4135, 5.969, 6.4347, 11.1444, 10.8371, 5.8584, 11.4081, 5.6071, 16.8617, 10.7272, 10.9575, 6.3682, 5.9404, 11.4443, 10.9978, 5.3387, 6.2351, 5.5625, 5.4166, 5.5871, 6.4223, 10.6349, 6.7322, 6.0689, 5.5628, 5.8703, 5.8117, 5.6996, 11.1265, 6.16, 28.5983, 5.8534, 6.3033, 11.4424, 6.0005, 6.2542, 5.2917, 5.8594, 10.5739, 5.5943, 6.4955, 5.8317, 5.7843, 10.9928, 5.403, 7.0593, 0.664, 5.8265, 5.4927, 6.8812, 6.4151, 5.4908, 11.4543, 16.4399, 5.8324, 5.7278, 6.6757, 6.0663, 5.3673, 11.1845, 6.0689, 5.4877, 11.8833, 5.4417, 6.8815, 5.7786, 6.1247, 5.8258, 11.4627, 11.3444, 6.5451, 6.9764, 5.434, 5.4743, 5.8079, 5.5077, 10.7801, 0.8874, 6.4361, 5.296, 6.6998, 5.3372, 10.9968, 6.5618, 6.5463, 6.32, 6.7945, 5.8818, 10.7825, 7.225, 6.1839, 12.1679, 12.4755, 6.6805, 10.9401, 5.9199, 5.7349, 6.592, 12.7192, 5.362, 5.4224, 6.0389, 5.4321, 7.5016, 5.3635, 5.6696, 5.4545, 10.746, 11.5001, 5.3065, 5.3437, 5.2726, 5.9898, 5.4126, 1.1477, 5.3134, 5.4986, 5.841, 11.8852, 5.5194, 10.9091, 5.5075, 18.0783, 0.6781, 5.4424, 5.429, 5.7859, 6.1865, 5.388, 6.8626, 6.3474, 6.9685, 6.3252, 10.7238, 6.4156, 6.0661, 6.6092, 6.8543, 16.5091, 6.2206, 17.3028, 6.1226, 5.4913, 5.517, 5.5153, 6.4008, 5.3706, 6.7642, 6.1557, 11.1396, 5.8224, 6.3164, 5.4116, 5.2605, 10.6194, 5.9302, 7.6964, 7.6387, 11.5385, 5.5261, 6.1085, 6.6998, 11.1411, 5.1959, 13.9742, 10.9434, 11.3432, 7.7698, 6.4168, 6.0475, 5.8963, 6.7217, 5.5571, 11.2929, 15.9118, 11.9593, 6.4049, 11.0693, 6.366, 12.1486, 5.661, 6.2129, 6.2041, 16.2616, 6.259, 6.2733, 6.8326, 11.3366, 6.7275, 11.2216, 11.5855, 6.4054, 11.5452, 1.961, 0.6692, 5.4557, 11.1191, 6.0055, 5.7545], '192.168.122.112': [11.1682, 5.5051, 11.4298, 5.553, 5.3208, 5.7635, 5.3575, 5.6124, 6.5689, 5.6558, 7.1027, 11.0595, 5.4808, 10.8654, 6.777, 6.0601, 5.8117, 11.344, 6.15, 3.5248, 5.4963, 6.6192, 5.796, 10.8788, 5.796, 8.0986, 6.8352, 10.4513, 6.1119, 5.9981, 16.9849, 5.8117, 5.7292, 6.3896, 6.0718, 11.1439, 5.4517, 5.399, 6.0773, 5.8272, 5.9524, 17.5586, 5.7409, 5.5585, 11.3754, 5.5602, 5.3959, 5.5535, 6.3982, 6.0024, 6.0334, 6.2044, 6.2125, 12.2447, 6.8073, 6.9389, 11.2379, 5.8699, 5.8556, 5.3654, 11.1525, 5.3568, 5.3391, 10.3784, 5.9617, 11.0059, 6.5506, 12.4283, 5.7082, 10.8709, 5.4467, 6.9239, 6.4628, 11.965, 6.1052, 6.0277, 10.783, 10.9708, 5.6398, 6.9468, 6.2411, 6.2397, 5.8513, 5.7597, 5.3968, 5.3892, 10.8407, 10.8173, 11.1113, 10.9417, 11.0292, 6.1307, 12.8794, 5.7764, 6.398, 5.7416, 6.4571, 6.3097, 5.2013, 5.4674, 36.0093, 6.3105, 6.7997, 5.5382, 5.8284, 6.4924, 5.4941, 7.2474, 5.6167, 7.2684, 0.6182, 11.3413, 6.0015, 6.825, 6.1238, 6.2609, 1.5457, 11.1399, 5.3256, 6.4855, 23.1094, 10.7505, 10.8647, 11.7874, 6.0277, 5.7476, 5.2068, 10.9172, 5.722, 10.9782, 5.63, 6.7875, 6.6931, 5.7018, 5.358, 6.541, 5.5387, 11.3034, 6.1376, 5.5027, 10.7942, 6.875, 5.81, 10.7367, 5.698, 22.9304, 5.5716, 6.0711, 5.959, 6.1214, 11.2922, 11.6313, 5.6851, 6.5541, 5.7487, 6.9716, 5.6562, 5.4462, 5.8525, 7.1845, 17.0591, 17.4079, 6.0673, 6.5892, 7.0977, 5.7917, 12.567, 5.6858, 5.8799, 5.9283, 16.4685, 6.3598, 11.0219, 5.7397, 5.7948, 5.9712, 10.8855, 10.9458, 6.4845, 5.6837, 6.9287, 10.9091, 5.9965, 10.874, 11.0719, 7.6275, 5.2354, 6.5987, 5.2307, 5.2271, 11.375, 5.3234, 6.5041, 11.0083, 22.3899, 7.1034, 10.4954, 10.9792, 5.378, 11.843, 10.6583, 6.33, 5.6281, 6.011, 5.8382, 5.517, 11.8434, 6.9897, 5.7819, 10.8426, 0.8812, 6.7525, 11.2917, 6.1157, 5.6031, 11.3926, 11.23, 5.6157, 6.9525, 0.7479, 7.2491, 6.8934, 6.1638, 11.3225, 10.9286, 6.2668, 5.6481, 6.0792, 6.3179, 5.5406, 12.126, 6.2068, 11.9627, 11.0567, 11.3211, 5.6007, 6.3689, 6.9034, 7.1576, 5.2335, 5.7237, 6.3963, 11.4725, 16.9244, 10.5932, 11.8115, 5.6899, 5.877, 5.6977, 5.748, 0.8471, 6.4647, 5.271, 5.7914, 7.2386, 5.7261, 10.7887, 5.7318, 6.1831, 11.9271, 5.6839, 6.0198, 5.6956, 6.0451, 6.2463, 6.9788, 6.7651, 5.4085, 7.5438, 16.7279, 5.3241, 5.4219, 5.2664, 5.904, 5.9352, 5.4774, 6.6934, 10.987, 5.7256, 17.5037, 6.1684, 6.4526, 5.9984, 11.0357, 7.3524, 6.3622, 6.726, 2.1064, 5.6715, 5.8606, 5.3957, 23.7916, 5.7654, 5.8727, 5.2168, 5.6908, 0.7579, 11.2338, 6.7272, 10.9372, 6.7909, 5.9395, 6.2962, 10.8454, 5.3694, 5.6026, 5.4162, 6.5119, 11.3738, 5.5714, 5.4266, 5.4798, 6.9532, 5.5587, 6.608, 11.0195, 11.0242, 5.7189, 6.464, 6.7937, 10.8125, 7.7326, 5.9063, 6.8712, 5.5048, 5.6436, 5.9006, 5.3337, 7.8127, 6.8052, 18.2049, 6.9659, 6.1638, 5.4469, 5.6505, 22.2657, 6.0112, 5.5175, 5.7909, 10.6876, 6.4316, 10.9839, 7.4825, 5.9266, 7.0181, 6.8278, 10.7493, 5.4255, 5.9695, 10.8473, 11.0326, 11.3068, 11.9221, 5.7051, 6.4399, 6.3639, 11.1055, 10.8392, 5.3728, 5.7194, 6.7816, 5.8725, 5.6951, 5.5377, 5.6014, 12.5191, 2.1255, 0.6893, 5.3668, 5.8596, 6.175, 6.5114], '192.168.122.111': [6.6345, 6.1345, 6.3729, 7.261, 5.2731, 11.1215, 11.27, 5.594, 11.4608, 27.3635, 6.4099, 5.4297, 6.5155, 6.4731, 5.5912, 6.5651, 5.9199, 18.3983, 6.3841, 2.8131, 11.1773, 5.9786, 16.9294, 11.2877, 6.5246, 11.796, 5.3301, 5.7089, 5.9712, 23.0181, 11.096, 6.3722, 17.1824, 6.4294, 11.0197, 11.1296, 5.3082, 10.4997, 5.2042, 11.1148, 5.3852, 5.9419, 7.3678, 5.363, 11.3537, 5.9631, 5.2211, 5.5039, 6.3953, 5.3444, 12.0678, 6.7139, 6.1913, 5.9469, 5.3763, 10.8764, 11.2388, 6.6051, 6.0954, 16.7813, 5.9476, 5.2891, 6.5145, 10.4053, 5.492, 5.8062, 5.5833, 5.6622, 17.4685, 11.0044, 5.4612, 11.4181, 24.358, 10.9622, 11.3754, 5.6493, 6.15, 5.6856, 6.4421, 5.6918, 11.9996, 5.9552, 5.4173, 5.8146, 5.8181, 6.2189, 17.3972, 10.8864, 11.1234, 7.5855, 6.5067, 5.5256, 6.5122, 6.0201, 5.425, 12.0051, 5.8804, 5.3918, 5.8558, 5.8122, 5.9597, 5.4164, 19.8553, 6.2449, 6.2222, 6.8593, 10.7393, 6.0139, 6.4764, 6.839, 1.1322, 11.308, 6.7642, 11.1268, 6.0582, 10.9072, 6.6335, 6.4712, 12.1634, 5.9755, 5.7786, 21.5223, 5.2485, 6.9849, 6.072, 10.9022, 5.2955, 5.9011, 5.5103, 5.6365, 6.8648, 11.2667, 5.8486, 11.4312, 5.3663, 5.8577, 6.2287, 8.3051, 5.3303, 5.3377, 5.9204, 5.8939, 6.66, 6.1607, 6.443, 11.1046, 5.7039, 11.138, 6.6156, 10.8523, 11.2746, 11.4753, 10.8488, 5.3558, 6.1738, 11.3163, 5.9955, 5.9049, 11.4999, 6.8879, 6.0723, 7.0066, 5.7096, 11.641, 5.5873, 5.7375, 6.7115, 5.6176, 6.8018, 5.585, 5.7802, 5.8568, 10.4933, 5.4286, 16.042, 5.4142, 5.3203, 6.0227, 10.8521, 11.631, 5.631, 5.321, 5.3446, 5.43, 5.9102, 6.8872, 5.5501, 10.9708, 5.4729, 5.4355, 5.1756, 6.1605, 5.8086, 5.7037, 10.8449, 5.9984, 5.2519, 11.0745, 5.918, 5.2462, 5.619, 6.7461, 6.8197, 6.0282, 5.8889, 5.6586, 5.4984, 16.196, 5.8639, 6.4399, 0.7203, 5.8258, 6.4514, 6.0477, 6.566, 5.1823, 11.0316, 17.8201, 5.9121, 0.7136, 11.6415, 11.1032, 5.5616, 10.7911, 5.512, 11.519, 6.2084, 11.3115, 6.5296, 10.2863, 16.0427, 5.2853, 10.9529, 5.8048, 6.1698, 11.4539, 5.4581, 5.3978, 5.9166, 10.735, 5.4994, 6.5103, 11.7834, 10.9813, 10.9751, 6.5234, 11.2023, 11.3914, 11.4379, 5.8112, 0.7119, 5.6162, 6.4113, 5.7056, 10.4713, 6.3665, 11.2405, 5.4541, 11.622, 11.8814, 11.2131, 10.8385, 6.4104, 5.481, 21.9378, 5.6574, 6.8638, 5.4331, 11.2338, 6.3093, 11.2498, 6.4931, 10.7641, 6.3014, 5.2681, 10.7012, 5.6696, 5.9721, 6.1009, 5.6446, 7.2432, 6.4073, 5.4643, 5.2562, 5.765, 6.4545, 12.0897, 1.4639, 5.5518, 5.3215, 5.8801, 5.5707, 7.123, 11.1296, 5.7869, 11.4949, 6.4487, 5.388, 6.8591, 11.8008, 5.7652, 5.2509, 5.4469, 10.9112, 6.0425, 11.2166, 5.4004, 6.2778, 5.7395, 11.5163, 6.9625, 5.594, 6.6011, 6.2408, 6.618, 5.3225, 5.3413, 5.6376, 7.4029, 21.2684, 6.1805, 5.7323, 5.6312, 11.5707, 6.4867, 16.2802, 6.3066, 5.6565, 6.7551, 7.4124, 7.2184, 6.9749, 7.0655, 6.922, 10.9255, 11.4038, 5.3391, 10.7393, 10.8893, 10.8671, 6.8126, 5.7025, 5.3096, 5.2793, 5.6324, 5.3627, 5.4815, 5.769, 12.6433, 6.4793, 5.7907, 7.2279, 5.9752, 5.6522, 11.5063, 6.0449, 6.0046, 5.5757, 5.5163, 5.4588, 5.3062, 7.1051, 11.2276, 11.2698, 11.0755, 5.5482, 1.3607, 0.6292, 5.5237, 5.2774, 5.5358, 5.8711]}
cpu5_3_7 = [19.0, 30.3, 0.4, 1.0, 1.1, 0.6, 1.4, 1.6, 1.1, 1.4, 1.0, 0.2, 0.2, 0.7, 1.7, 0.0, 0.4, 1.4, 2.5, 1.6, 1.5, 4.2, 3.1, 0.6, 0.9, 0.5, 0.2, 0.3, 0.6, 0.5, 1.0, 1.8, 0.5, 1.6, 0.3, 0.4, 0.0, 0.0, 0.8, 1.1, 1.9, 3.1, 0.8, 0.8, 1.6, 1.3, 0.2, 0.6, 0.2, 1.2, 0.8, 0.3, 0.4, 0.5, 0.2, 0.4, 0.7, 1.6, 1.2, 0.1, 0.4, 0.1, 0.1, 1.4, 0.1, 0.6, 0.2, 0.8, 2.2, 0.9, 1.2, 0.9, 1.4, 5.6, 5.2, 0.2, 0.6, 0.6, 0.5, 0.4, 0.2, 0.5, 1.6, 1.2, 0.9, 0.9, 0.2, 1.0, 1.2, 0.6, 0.9, 0.3, 1.0, 0.5, 3.6, 4.1, 0.8, 0.5, 0.2, 0.5, 0.1, 0.5, 0.6, 1.0, 0.7, 1.3, 0.6, 0.6, 0.3, 0.1, 0.1, 0.1, 0.8, 0.8, 0.3, 0.6, 1.0, 1.5, 0.2, 0.2, 0.2, 1.2, 1.4, 0.1, 0.4, 0.2, 0.7, 0.5, 2.0, 3.4, 0.6, 0.8, 1.7, 0.3, 0.3, 0.5, 0.6, 0.5, 1.1, 1.1, 1.2, 0.9, 0.2, 0.4, 0.2, 0.6, 0.6, 2.5, 2.5, 0.8, 0.7, 0.1, 1.8, 2.1, 0.4, 1.5, 1.8, 1.8, 1.7, 0.4, 0.8, 0.5, 2.4, 1.1, 1.0, 1.1, 1.2, 2.4, 2.6, 1.2, 1.8, 1.8, 0.1, 0.2, 0.6, 0.3, 0.1, 4.7, 4.7, 0.4, 0.3, 0.7, 0.7, 1.0, 1.0, 0.8, 0.4, 1.4, 1.1, 1.1, 1.7, 1.0, 0.2, 1.2, 0.8, 1.3, 0.1, 1.0, 0.5, 0.8, 0.5, 0.6, 0.8, 1.2, 1.6, 1.1, 0.1, 1.1, 0.8, 0.7, 0.4, 0.5, 1.2, 0.6, 0.4, 0.1, 0.3, 0.8, 0.7, 0.4, 1.3, 1.2, 0.9, 0.5, 0.7, 0.1, 1.1, 0.3, 0.8, 0.4, 1.4, 1.1, 1.5, 0.6, 0.8, 2.1, 1.4, 1.4, 1.6, 1.7, 1.2, 0.4, 0.4, 1.4, 3.2, 3.7, 0.9, 0.0, 0.5, 0.3, 0.6, 0.5, 0.6, 0.1, 0.1, 0.2, 0.4, 0.0, 0.8, 0.1, 0.3, 0.8, 0.3, 0.4, 6.1, 7.2, 0.2, 0.7, 0.1, 0.1, 1.1, 0.0, 1.4, 0.0, 0.2, 5.6, 5.5, 1.9, 1.7, 1.5, 0.8, 2.1, 2.0, 0.8, 0.4, 2.2, 1.9, 0.3, 0.1, 0.6, 0.8, 4.3, 4.3, 1.4, 1.4, 0.1, 0.2, 1.9, 3.3, 0.7, 0.2, 1.1, 0.4, 0.6, 1.4, 1.5, 1.7, 1.2, 0.5, 1.4, 0.8, 1.7, 0.5, 0.2, 0.5, 0.5, 0.3, 0.7, 0.1, 0.9, 1.5, 0.4, 1.4, 0.4, 0.8, 1.3, 0.6, 1.6, 8.4, 6.4, 5.6, 4.9, 0.5, 0.3, 2.1, 2.4, 2.2, 0.3, 1.1, 2.4, 2.4, 2.7, 1.0, 2.3, 0.6, 3.1, 3.2, 1.1, 0.0, 0.2, 1.4, 3.1, 2.1, 0.0, 0.6, 0.3, 5.1, 3.2, 0.5, 1.4, 0.4, 0.2, 0.7, 1.0, 0.6, 0.5, 0.2, 2.0, 0.3, 0.6, 0.5, 1.1]
off_mec5_3_7 = 242
off_cloud5_3_7 = 264
inward_mec5_3_7 = 180
loc5_3_7 = 763
deadlock5_3_7 = [6]
memory5_3_7 = [0.2175, 0.218, 0.218, 0.2185, 0.2186, 0.2186, 0.2187, 0.2187, 0.2187, 0.2187, 0.2187, 0.2188, 0.2189, 0.2189, 0.2189, 0.219, 0.219, 0.219, 0.219, 0.219, 0.2191, 0.2191, 0.2191, 0.2192, 0.2192, 0.2192, 0.2193, 0.2193, 0.2193, 0.2195, 0.2195, 0.2195, 0.2195, 0.2195, 0.2195, 0.2196, 0.2196, 0.2196, 0.22, 0.2201, 0.2201, 0.2201, 0.2201, 0.2202, 0.2202, 0.2203, 0.2203, 0.2204, 0.2204, 0.2204, 0.2205, 0.2205, 0.2205, 0.2205, 0.2205, 0.2206, 0.2206, 0.2206, 0.2206, 0.2208, 0.2208, 0.2208, 0.2208, 0.2208, 0.2208, 0.2208, 0.2208, 0.2209, 0.2209, 0.2209, 0.2209, 0.2209, 0.221, 0.221, 0.221, 0.2211, 0.2212, 0.2212, 0.2212, 0.2212, 0.2212, 0.2212, 0.2212, 0.2212, 0.2212, 0.2212, 0.2212, 0.2212, 0.2212, 0.2213, 0.2213, 0.2213, 0.2213, 0.2214, 0.2214, 0.2215, 0.2215, 0.2215, 0.2215, 0.2217, 0.2217, 0.2218, 0.2218, 0.2218, 0.2218, 0.2218, 0.2219, 0.2219, 0.2221, 0.2221, 0.2221, 0.2222, 0.2222, 0.2223, 0.2223, 0.2223, 0.2223, 0.2223, 0.2223, 0.2223, 0.2223, 0.2223, 0.2223, 0.2223, 0.2223, 0.2223, 0.2223, 0.2224, 0.2224, 0.2224, 0.2225, 0.2225, 0.2225, 0.2225, 0.2225, 0.2225, 0.2227, 0.2228, 0.2229, 0.2229, 0.2229, 0.2229, 0.2229, 0.2229, 0.223, 0.223, 0.223, 0.223, 0.223, 0.223, 0.2231, 0.2231, 0.2232, 0.2232, 0.2232, 0.2232, 0.2232, 0.2232, 0.2234, 0.2234, 0.2235, 0.2235, 0.2235, 0.2235, 0.2235, 0.2235, 0.2236, 0.2236, 0.2236, 0.2236, 0.2236, 0.2236, 0.2237, 0.2237, 0.2238, 0.2238, 0.2238, 0.2238, 0.2238, 0.2238, 0.2238, 0.2238, 0.2239, 0.2239, 0.2239, 0.2239, 0.2239, 0.2239, 0.224, 0.224, 0.224, 0.224, 0.224, 0.224, 0.224, 0.224, 0.224, 0.2241, 0.2242, 0.2243, 0.2243, 0.2243, 0.2245, 0.2245, 0.2245, 0.2245, 0.2247, 0.2247, 0.2248, 0.2248, 0.2248, 0.2249, 0.2249, 0.2249, 0.2249, 0.2249, 0.2249, 0.2249, 0.2249, 0.2249, 0.2249, 0.225, 0.225, 0.225, 0.225, 0.225, 0.225, 0.2251, 0.2252, 0.2252, 0.2252, 0.2252, 0.2252, 0.2252, 0.2253, 0.2253, 0.2253, 0.2253, 0.2253, 0.2253, 0.2254, 0.2254, 0.2254, 0.2254, 0.2254, 0.2254, 0.2254, 0.2254, 0.2255, 0.2255, 0.2255, 0.2255, 0.2255, 0.2256, 0.2256, 0.2256, 0.2256, 0.2256, 0.2256, 0.2256, 0.2257, 0.2257, 0.2258, 0.2258, 0.2258, 0.2258, 0.2258, 0.2258, 0.2258, 0.2258, 0.2258, 0.2258, 0.2258, 0.2258, 0.2258, 0.2258, 0.2259, 0.2259, 0.2259, 0.2259, 0.2259, 0.2259, 0.2259, 0.2259, 0.226, 0.226, 0.226, 0.2262, 0.2263, 0.2263, 0.2263, 0.2263, 0.2263, 0.2263, 0.2263, 0.2264, 0.2265, 0.2265, 0.2265, 0.2265, 0.2265, 0.2265, 0.2265, 0.2265, 0.2266, 0.2266, 0.2266, 0.2266, 0.2266, 0.2266, 0.2266, 0.2266, 0.2266, 0.2266, 0.2267, 0.2267, 0.2267, 0.2268, 0.2268, 0.2268, 0.2268, 0.2268, 0.2268, 0.2268, 0.2268, 0.2268, 0.2269, 0.227, 0.227, 0.2271, 0.2271, 0.2275, 0.2278, 0.2278, 0.2279, 0.228, 0.228, 0.228, 0.228, 0.228, 0.228, 0.2281, 0.2281, 0.2281, 0.2281, 0.2281, 0.2281, 0.2281, 0.2281, 0.2281, 0.2281, 0.2281, 0.2281, 0.2281, 0.2282, 0.2282, 0.2282, 0.2282, 0.2282, 0.2283, 0.2283, 0.2283, 0.2283, 0.2283, 0.2283, 0.2283, 0.2283, 0.2285, 0.2285, 0.2285, 0.2285, 0.2286]
task_received5_3_7 = 1269
sent_t5_3_7 = {'124': 471, '125': 396, '126': 402}
cooperate5_3_7 = {'mec': 242, 'cloud': 264}
task_record5_3_7 = {}
outward_mec5_3_7 = 39
offload_check5_3_7 = []
timed_out_tasks5_3_7 = 0
|
insert_sensor_schema = {
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "insert-sensor-schema",
"description": "Schema for inserting new sensor readings",
"type": "object",
"properties": {
"temperature": {
"$id": "/properties/temperature",
"type": "number",
"title": "A temperature reading (in celsius)",
"examples": [23.7],
},
"humidity": {
"$id": "/properties/humidity",
"type": "number",
"title": "A humidity reading (in percentage)",
"examples": [46.79],
},
"pressure": {
"$id": "/properties/pressure",
"type": "number",
"title": "A pressure reading (in hPa)",
"default": 0,
"examples": [1010.6],
},
"luminosity": {
"$id": "/properties/luminosity",
"type": "integer",
"title": "A luminosity reading (in lux)",
"default": 0,
"examples": [200],
},
},
"required": ["temperature", "humidity", "pressure", "luminosity"],
}
|
insert_sensor_schema = {'$schema': 'http://json-schema.org/draft-07/schema#', 'title': 'insert-sensor-schema', 'description': 'Schema for inserting new sensor readings', 'type': 'object', 'properties': {'temperature': {'$id': '/properties/temperature', 'type': 'number', 'title': 'A temperature reading (in celsius)', 'examples': [23.7]}, 'humidity': {'$id': '/properties/humidity', 'type': 'number', 'title': 'A humidity reading (in percentage)', 'examples': [46.79]}, 'pressure': {'$id': '/properties/pressure', 'type': 'number', 'title': 'A pressure reading (in hPa)', 'default': 0, 'examples': [1010.6]}, 'luminosity': {'$id': '/properties/luminosity', 'type': 'integer', 'title': 'A luminosity reading (in lux)', 'default': 0, 'examples': [200]}}, 'required': ['temperature', 'humidity', 'pressure', 'luminosity']}
|
# Copyright (C) 2022 Google Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""starlark marcors to generate test suites."""
_TEMPLATE = """package {VAR_PACKAGE};
import org.junit.runners.Suite;
import org.junit.runner.RunWith;
@RunWith(Suite.class)
@Suite.SuiteClasses({{{VAR_CLASSES}}})
public class {VAR_NAME} {{}}
"""
def _impl(ctx):
classes = ",".join(sorted(ctx.attr.test_classes))
ctx.actions.write(
output = ctx.outputs.out,
content = _TEMPLATE.format(
VAR_PACKAGE = ctx.attr.package_name,
VAR_CLASSES = classes,
VAR_NAME = ctx.attr.name,
),
)
_gen_suite = rule(
attrs = {
"test_classes": attr.string_list(),
"package_name": attr.string(),
},
outputs = {"out": "%{name}.java"},
implementation = _impl,
)
def guice_test_suites(name, deps, srcs = None, args = [], suffix = "", sizes = None, jvm_flags = []):
"""
Generates tests for test file in srcs ending in "Test.java"
Args:
name: name of the test suite to generate
srcs: list of test source files, uses 'glob(["**/*Test.java"])' if not specified
deps: list of runtime dependencies requried to run the test
args: list of flags to pass to the test
jvm_flags: list of JVM flags to pass to the test
suffix: suffix to apend to the generated test name
sizes: not used, exists only so that the opensource guice_test_suites mirror exactly the internal one
"""
flags = []
flags.extend(jvm_flags)
# transform flags to JVM options used externally
for arg in args:
if arg.startswith("--"):
flags.append(arg.replace("--", "-D"))
else:
flags.append(arg)
package_name = native.package_name()
# strip the path prefix from package name so that we get the correct test class name
# "core/test/com/google/inject" becomes "com/google/inject"
# "extensions/service/test/com/google/inject/service" becomes "com/google/inject/service"
if package_name.startswith("core/test/") or package_name.startswith("extensions/"):
package_name = package_name.rpartition("/test/")[2]
test_files = srcs or native.glob(["**/*Test.java"])
test_classes = []
for src in test_files:
test_name = src.replace(".java", "")
test_classes.append((package_name + "/" + test_name + ".class").replace("/", "."))
suite_name = name + suffix
_gen_suite(
name = suite_name,
test_classes = test_classes,
package_name = package_name.replace("/", "."),
)
native.java_test(
name = "AllTestsSuite" + suffix,
test_class = (package_name + "/" + suite_name).replace("/", "."),
jvm_flags = flags,
srcs = [":" + suite_name],
deps = deps + [
"//third_party/java/junit",
],
)
|
"""starlark marcors to generate test suites."""
_template = 'package {VAR_PACKAGE};\nimport org.junit.runners.Suite;\nimport org.junit.runner.RunWith;\n\n@RunWith(Suite.class)\n@Suite.SuiteClasses({{{VAR_CLASSES}}})\npublic class {VAR_NAME} {{}}\n'
def _impl(ctx):
classes = ','.join(sorted(ctx.attr.test_classes))
ctx.actions.write(output=ctx.outputs.out, content=_TEMPLATE.format(VAR_PACKAGE=ctx.attr.package_name, VAR_CLASSES=classes, VAR_NAME=ctx.attr.name))
_gen_suite = rule(attrs={'test_classes': attr.string_list(), 'package_name': attr.string()}, outputs={'out': '%{name}.java'}, implementation=_impl)
def guice_test_suites(name, deps, srcs=None, args=[], suffix='', sizes=None, jvm_flags=[]):
"""
Generates tests for test file in srcs ending in "Test.java"
Args:
name: name of the test suite to generate
srcs: list of test source files, uses 'glob(["**/*Test.java"])' if not specified
deps: list of runtime dependencies requried to run the test
args: list of flags to pass to the test
jvm_flags: list of JVM flags to pass to the test
suffix: suffix to apend to the generated test name
sizes: not used, exists only so that the opensource guice_test_suites mirror exactly the internal one
"""
flags = []
flags.extend(jvm_flags)
for arg in args:
if arg.startswith('--'):
flags.append(arg.replace('--', '-D'))
else:
flags.append(arg)
package_name = native.package_name()
if package_name.startswith('core/test/') or package_name.startswith('extensions/'):
package_name = package_name.rpartition('/test/')[2]
test_files = srcs or native.glob(['**/*Test.java'])
test_classes = []
for src in test_files:
test_name = src.replace('.java', '')
test_classes.append((package_name + '/' + test_name + '.class').replace('/', '.'))
suite_name = name + suffix
_gen_suite(name=suite_name, test_classes=test_classes, package_name=package_name.replace('/', '.'))
native.java_test(name='AllTestsSuite' + suffix, test_class=(package_name + '/' + suite_name).replace('/', '.'), jvm_flags=flags, srcs=[':' + suite_name], deps=deps + ['//third_party/java/junit'])
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.